]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
linux: Update the mremap C implementation [BZ #31968]
authorH.J. Lu <hjl.tools@gmail.com>
Wed, 24 Jul 2024 21:05:13 +0000 (14:05 -0700)
committerFlorian Weimer <fweimer@redhat.com>
Thu, 1 Aug 2024 12:41:48 +0000 (14:41 +0200)
Update the mremap C implementation to support the optional argument for
MREMAP_DONTUNMAP added in Linux 5.7 since it may not always be correct
to implement a variadic function as a non-variadic function on all Linux
targets.  Return MAP_FAILED and set errno to EINVAL for unknown flag bits.
This fixes BZ #31968.

Note: A test must be added when a new flag bit is introduced.

Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
(cherry picked from commit 6c40cb0e9f893d49dc7caee580a055de53562206)

NEWS
sysdeps/unix/sysv/linux/mremap.c

diff --git a/NEWS b/NEWS
index 3b252c96b409b0913facd8293d53d80be540a1a6..5172049eb2a2cafdb088b019055d0aeadc58d3e2 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -55,6 +55,7 @@ The following bugs are resolved with this release:
   [31476] resolv: Track single-request fallback via _res._flags
   [31890] resolv: Allow short error responses to match any DNS query
   [31965] rseq extension mechanism does not work as intended
+  [31968] mremap implementation in C does not handle arguments correctly
 
 \f
 Version 2.38
index 0ad5da86a2bffe4bb73797b60c41529f86690c7e..05ed8febfaeccfed8a335518ac5f60dce00d4b7a 100644 (file)
 #include <sysdep.h>
 #include <stdarg.h>
 #include <stddef.h>
+#include <errno.h>
+
+#define MREMAP_KNOWN_BITS \
+  (MREMAP_MAYMOVE \
+   | MREMAP_FIXED \
+   | MREMAP_DONTUNMAP)
 
 void *
 __mremap (void *addr, size_t old_len, size_t new_len, int flags, ...)
@@ -27,7 +33,13 @@ __mremap (void *addr, size_t old_len, size_t new_len, int flags, ...)
   va_list va;
   void *new_addr = NULL;
 
-  if (flags & MREMAP_FIXED)
+  if (flags & ~(MREMAP_KNOWN_BITS))
+    {
+      __set_errno (EINVAL);
+      return MAP_FAILED;
+    }
+
+  if (flags & (MREMAP_FIXED | MREMAP_DONTUNMAP))
     {
       va_start (va, flags);
       new_addr = va_arg (va, void *);