2
0
mirror of git://sourceware.org/git/glibc.git synced 2025-04-18 14:30:43 +08:00

linux: Update the mremap C implementation [BZ ]

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 .

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)
This commit is contained in:
H.J. Lu 2024-07-24 14:05:13 -07:00 committed by Florian Weimer
parent 45cfbf015f
commit ab482a557d
2 changed files with 14 additions and 1 deletions
NEWS
sysdeps/unix/sysv/linux

1
NEWS

@ -101,6 +101,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
Version 2.36

@ -20,6 +20,12 @@
#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 *);