public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Siddhesh Poyarekar <siddhesh@sourceware.org>
To: libc-alpha@sourceware.org
Cc: eggert@cs.ucla.edu, adhemerval.zanella@linaro.org, fweimer@redhat.com
Subject: [PATCH v3 0/3] Fixes for CVE-2021-3998 and CVE-2021-3999
Date: Thu, 20 Jan 2022 15:02:49 +0530	[thread overview]
Message-ID: <20220120093252.1911498-1-siddhesh@sourceware.org> (raw)
In-Reply-To: <20220119082147.3352868-1-siddhesh@sourceware.org>

Add functions to make directory trees with paths longer than PATH_MAX
and use them to test fixes for CVE-2021-3998 and CVE-2021-3999.

Tested on x86_64 and i686.

Changes from v2:
- Adjusted test infrastructure to bail out if the filesystem does not support
  creating directory trees greater than PATH_MAX.

Changes from v1:
- Try reducing directory name size to meet lower limits of some fuse
  filesystems
- Fixed review comments
- Credited Qualys in NEWS
- Use x* functions wherever possible
- Drop size check in linux getcwd implementation and rely only on the
  posix one to flag the error
- Fix formatting issues I had missed before.

Siddhesh Poyarekar (3):
  support: Add helpers to create paths longer than PATH_MAX
  realpath: Set errno to ENAMETOOLONG for result larger than PATH_MAX
    [BZ #28770]
  getcwd: Set errno to ERANGE for size == 1 (CVE-2021-3999)

 NEWS                                          |  10 +
 stdlib/Makefile                               |   1 +
 stdlib/canonicalize.c                         |  12 +-
 stdlib/tst-realpath-toolong.c                 |  49 ++++
 support/temp_file.c                           | 159 +++++++++++-
 support/temp_file.h                           |   9 +
 sysdeps/posix/getcwd.c                        |   7 +
 sysdeps/unix/sysv/linux/Makefile              |   7 +-
 .../unix/sysv/linux/tst-getcwd-smallbuff.c    | 245 ++++++++++++++++++
 9 files changed, 487 insertions(+), 12 deletions(-)
 create mode 100644 stdlib/tst-realpath-toolong.c
 create mode 100644 sysdeps/unix/sysv/linux/tst-getcwd-smallbuff.c

-- 
2.34.1


  parent reply	other threads:[~2022-01-20  9:33 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-19  8:21 [PATCH v2 " Siddhesh Poyarekar
2022-01-19  8:21 ` [PATCH v2 1/3] support: Add helpers to create paths longer than PATH_MAX Siddhesh Poyarekar
2022-01-19 10:13   ` Siddhesh Poyarekar
2022-01-20 14:47     ` Cristian Rodríguez
2022-01-20 14:56       ` Florian Weimer
2022-01-20 15:17         ` Cristian Rodríguez
2022-01-20 14:57       ` Siddhesh Poyarekar
2022-01-19  8:21 ` [PATCH v2 2/3] realpath: Set errno to ENAMETOOLONG for result larger than PATH_MAX (CVE-2021-3998) Siddhesh Poyarekar
2022-01-19  8:21 ` [PATCH v2 3/3] getcwd: Set errno to ERANGE for size == 1 (CVE-2021-3999) Siddhesh Poyarekar
2022-01-20  9:32 ` Siddhesh Poyarekar [this message]
2022-01-20  9:32   ` [PATCH v3 1/3] support: Add helpers to create paths longer than PATH_MAX Siddhesh Poyarekar
2022-01-21 16:27     ` Adhemerval Zanella
2022-01-20  9:32   ` [PATCH v3 2/3] realpath: Set errno to ENAMETOOLONG for result larger than PATH_MAX [BZ #28770] Siddhesh Poyarekar
2022-01-21 23:22     ` Joseph Myers
2022-01-22  3:47       ` Siddhesh Poyarekar
2022-01-22 14:45       ` [PATCH] tst-realpath-toolong: Fix hurd build Siddhesh Poyarekar
2022-01-23  0:36         ` Samuel Thibault
2022-01-23 15:19           ` Siddhesh Poyarekar
2022-01-23 15:33             ` Samuel Thibault
2022-01-24  6:00               ` [committed v2] " Siddhesh Poyarekar
2022-01-24 13:45     ` [PATCH v3 2/3] realpath: Set errno to ENAMETOOLONG for result larger than PATH_MAX [BZ #28770] Andreas Schwab
2022-01-24 14:25       ` Siddhesh Poyarekar
2022-01-24 14:48         ` Andreas Schwab
2022-01-24 14:59           ` Siddhesh Poyarekar
2022-01-24 15:28             ` Andreas Schwab
2022-01-24 16:08               ` [committed] realpath: Avoid overwriting preexisting error (CVE-2021-3998) Siddhesh Poyarekar
2022-01-20  9:32   ` [PATCH v3 3/3] getcwd: Set errno to ERANGE for size == 1 (CVE-2021-3999) Siddhesh Poyarekar
2022-01-20 13:32     ` Andreas Schwab
2022-01-21 16:41     ` Adhemerval Zanella
2022-01-21 17:26       ` Siddhesh Poyarekar
2022-01-21 17:31         ` Adhemerval Zanella
2022-01-21 17:38       ` [PATCH v4] " Siddhesh Poyarekar
2022-01-21 17:59         ` Andreas Schwab
2022-01-21 18:02           ` Siddhesh Poyarekar
2022-01-21 18:04       ` [PATCH v5] " Siddhesh Poyarekar
2022-01-24  6:03         ` Siddhesh Poyarekar

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220120093252.1911498-1-siddhesh@sourceware.org \
    --to=siddhesh@sourceware.org \
    --cc=adhemerval.zanella@linaro.org \
    --cc=eggert@cs.ucla.edu \
    --cc=fweimer@redhat.com \
    --cc=libc-alpha@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).