[PATCH] getcwd: Set errno to ERANGE for size == 1 (CVE-2021-3999)
authorSiddhesh Poyarekar <siddhesh@sourceware.org>
Fri, 21 Jan 2022 18:02:56 +0000 (23:32 +0530)
committerAdrian Bunk <bunk@debian.org>
Sat, 29 Jun 2024 10:27:34 +0000 (13:27 +0300)
No valid path returned by getcwd would fit into 1 byte, so reject the
size early and return NULL with errno set to ERANGE.  This change is
prompted by CVE-2021-3999, which describes a single byte buffer
underflow and overflow when all of the following conditions are met:

- The buffer size (i.e. the second argument of getcwd) is 1 byte
- The current working directory is too long
- '/' is also mounted on the current working directory

Sequence of events:

- In sysdeps/unix/sysv/linux/getcwd.c, the syscall returns ENAMETOOLONG
  because the linux kernel checks for name length before it checks
  buffer size

- The code falls back to the generic getcwd in sysdeps/posix

- In the generic func, the buf[0] is set to '\0' on line 250

- this while loop on line 262 is bypassed:

    while (!(thisdev == rootdev && thisino == rootino))

  since the rootfs (/) is bind mounted onto the directory and the flow
  goes on to line 449, where it puts a '/' in the byte before the
  buffer.

- Finally on line 458, it moves 2 bytes (the underflowed byte and the
  '\0') to the buf[0] and buf[1], resulting in a 1 byte buffer overflow.

- buf is returned on line 469 and errno is not set.

This resolves BZ #28769.

Reviewed-by: Andreas Schwab <schwab@linux-m68k.org>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Signed-off-by: Qualys Security Advisory <qsa@qualys.com>
Signed-off-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Backport to glibc 2.28 by Helmut Grohne:

There is no __getcwd_generic. Instead, __getcwd is directly vulnerable and no
ENAMETOOLONG is needed.

The test case is removed, because backporting the relevant support code is
non-trivial.

Gbp-Pq: Topic all
Gbp-Pq: Name git-CVE-2021-3999-getcwd-Set-errno-to-ERANGE-for-size-1.diff

sysdeps/posix/getcwd.c

index b53433a2dc77fafaed9e330eac0f672d650d80fb..8e1fc4084a37f5556639d709c9110ef5d92d9c7d 100644 (file)
@@ -239,6 +239,13 @@ __getcwd (char *buf, size_t size)
   int fd = AT_FDCWD;
 
   char *path;
+  /* A size of 1 byte is never useful.  */
+  if (size == 1)
+    {
+      __set_errno (ERANGE);
+      return NULL;
+    }
+
 #ifndef NO_ALLOCATION
   size_t allocated = size;
   if (size == 0)