Compare commits
No commits in common. 'c9' and 'i9c-beta' have entirely different histories.
@ -1,3 +1 @@
|
||||
7c3b8890a6346793b6334cc5f2fea5d437d307b8 SOURCES/glibc-2.34.tar.xz
|
||||
47cf1a27ae2e86b37e44c49f6bf4630a1adabd9a SOURCES/glibc-c-utf8-locale-2.patch
|
||||
6022f103e5596ad229f22bc966327d71208f7016 SOURCES/glibc-upstream-2.34-373.patch
|
||||
7c3b8890a6346793b6334cc5f2fea5d437d307b8 SOURCES/glibc-2.34.tar.xz
|
||||
|
@ -0,0 +1,369 @@
|
||||
From 317f1c0a8a71a862b1e600ff5386b08e02cf4b95 Mon Sep 17 00:00:00 2001
|
||||
From: "H.J. Lu" <hjl.tools@gmail.com>
|
||||
Date: Thu, 26 Jan 2023 08:26:18 -0800
|
||||
Subject: [PATCH] x86-64: Add glibc.cpu.prefer_map_32bit_exec [BZ #28656]
|
||||
Content-type: text/plain; charset=UTF-8
|
||||
|
||||
Crossing 2GB boundaries with indirect calls and jumps can use more
|
||||
branch prediction resources on Intel Golden Cove CPU (see the
|
||||
"Misprediction for Branches >2GB" section in Intel 64 and IA-32
|
||||
Architectures Optimization Reference Manual.) There is visible
|
||||
performance improvement on workloads with many PLT calls when executable
|
||||
and shared libraries are mmapped below 2GB. Add the Prefer_MAP_32BIT_EXEC
|
||||
bit so that mmap will try to map executable or denywrite pages in shared
|
||||
libraries with MAP_32BIT first.
|
||||
|
||||
NB: Prefer_MAP_32BIT_EXEC reduces bits available for address space
|
||||
layout randomization (ASLR), which is always disabled for SUID programs
|
||||
and can only be enabled by the tunable, glibc.cpu.prefer_map_32bit_exec,
|
||||
or the environment variable, LD_PREFER_MAP_32BIT_EXEC. This works only
|
||||
between shared libraries or between shared libraries and executables with
|
||||
addresses below 2GB. PIEs are usually loaded at a random address above
|
||||
4GB by the kernel.
|
||||
|
||||
Conflicts:
|
||||
manual/tunables.texi
|
||||
(line numbers)
|
||||
sysdeps/unix/sysv/linux/x86_64/64/dl-tunables.list
|
||||
(merged local @order list)
|
||||
sysdeps/x86/cpu-features.c
|
||||
(line numbers)
|
||||
|
||||
---
|
||||
manual/tunables.texi | 33 ++++++++++----
|
||||
sysdeps/unix/sysv/linux/x86_64/64/Makefile | 25 +++++++++++
|
||||
.../sysv/linux/x86_64/64/dl-tunables.list | 29 +++++++++++++
|
||||
.../unix/sysv/linux/x86_64/64/mmap_internal.h | 43 +++++++++++++++++++
|
||||
.../sysv/linux/x86_64/64/tst-map-32bit-1a.c | 34 +++++++++++++++
|
||||
.../sysv/linux/x86_64/64/tst-map-32bit-1b.c | 1 +
|
||||
.../sysv/linux/x86_64/64/tst-map-32bit-mod.c | 33 ++++++++++++++
|
||||
sysdeps/x86/cpu-features.c | 15 +++++++
|
||||
...cpu-features-preferred_feature_index_1.def | 1 +
|
||||
9 files changed, 205 insertions(+), 9 deletions(-)
|
||||
create mode 100644 sysdeps/unix/sysv/linux/x86_64/64/dl-tunables.list
|
||||
create mode 100644 sysdeps/unix/sysv/linux/x86_64/64/mmap_internal.h
|
||||
create mode 100644 sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-1a.c
|
||||
create mode 100644 sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-1b.c
|
||||
create mode 100644 sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-mod.c
|
||||
|
||||
diff --git a/manual/tunables.texi b/manual/tunables.texi
|
||||
index 0be7231e36..c76c5c53cd 100644
|
||||
--- a/manual/tunables.texi
|
||||
+++ b/manual/tunables.texi
|
||||
@@ -35,27 +35,32 @@ tunables with minimum and maximum values:
|
||||
@example
|
||||
$ /lib64/ld-linux-x86-64.so.2 --list-tunables
|
||||
glibc.rtld.nns: 0x4 (min: 0x1, max: 0x10)
|
||||
-glibc.elision.skip_lock_after_retries: 3 (min: -2147483648, max: 2147483647)
|
||||
+glibc.elision.skip_lock_after_retries: 3 (min: 0, max: 2147483647)
|
||||
glibc.malloc.trim_threshold: 0x0 (min: 0x0, max: 0xffffffffffffffff)
|
||||
glibc.malloc.perturb: 0 (min: 0, max: 255)
|
||||
glibc.cpu.x86_shared_cache_size: 0x100000 (min: 0x0, max: 0xffffffffffffffff)
|
||||
+glibc.pthread.rseq: 1 (min: 0, max: 1)
|
||||
+glibc.cpu.prefer_map_32bit_exec: 0 (min: 0, max: 1)
|
||||
glibc.mem.tagging: 0 (min: 0, max: 255)
|
||||
-glibc.elision.tries: 3 (min: -2147483648, max: 2147483647)
|
||||
+glibc.elision.tries: 3 (min: 0, max: 2147483647)
|
||||
glibc.elision.enable: 0 (min: 0, max: 1)
|
||||
-glibc.cpu.x86_rep_movsb_threshold: 0x1000 (min: 0x100, max: 0xffffffffffffffff)
|
||||
+glibc.malloc.hugetlb: 0x0 (min: 0x0, max: 0xffffffffffffffff)
|
||||
+glibc.cpu.x86_rep_movsb_threshold: 0x2000 (min: 0x100, max: 0xffffffffffffffff)
|
||||
glibc.malloc.mxfast: 0x0 (min: 0x0, max: 0xffffffffffffffff)
|
||||
-glibc.elision.skip_lock_busy: 3 (min: -2147483648, max: 2147483647)
|
||||
-glibc.malloc.top_pad: 0x0 (min: 0x0, max: 0xffffffffffffffff)
|
||||
+glibc.rtld.dynamic_sort: 2 (min: 1, max: 2)
|
||||
+glibc.elision.skip_lock_busy: 3 (min: 0, max: 2147483647)
|
||||
+glibc.malloc.top_pad: 0x20000 (min: 0x0, max: 0xffffffffffffffff)
|
||||
glibc.cpu.x86_rep_stosb_threshold: 0x800 (min: 0x1, max: 0xffffffffffffffff)
|
||||
-glibc.cpu.x86_non_temporal_threshold: 0xc0000 (min: 0x4040, max: 0x0fffffffffffffff)
|
||||
+glibc.cpu.x86_non_temporal_threshold: 0xc0000 (min: 0x4040, max: 0xfffffffffffffff)
|
||||
glibc.cpu.x86_shstk:
|
||||
+glibc.pthread.stack_cache_size: 0x2800000 (min: 0x0, max: 0xffffffffffffffff)
|
||||
glibc.cpu.hwcap_mask: 0x6 (min: 0x0, max: 0xffffffffffffffff)
|
||||
-glibc.malloc.mmap_max: 0 (min: -2147483648, max: 2147483647)
|
||||
-glibc.elision.skip_trylock_internal_abort: 3 (min: -2147483648, max: 2147483647)
|
||||
+glibc.malloc.mmap_max: 0 (min: 0, max: 2147483647)
|
||||
+glibc.elision.skip_trylock_internal_abort: 3 (min: 0, max: 2147483647)
|
||||
glibc.malloc.tcache_unsorted_limit: 0x0 (min: 0x0, max: 0xffffffffffffffff)
|
||||
glibc.cpu.x86_ibt:
|
||||
glibc.cpu.hwcaps:
|
||||
-glibc.elision.skip_lock_internal_abort: 3 (min: -2147483648, max: 2147483647)
|
||||
+glibc.elision.skip_lock_internal_abort: 3 (min: 0, max: 2147483647)
|
||||
glibc.malloc.arena_max: 0x0 (min: 0x1, max: 0xffffffffffffffff)
|
||||
glibc.malloc.mmap_threshold: 0x0 (min: 0x0, max: 0xffffffffffffffff)
|
||||
glibc.cpu.x86_data_cache_size: 0x8000 (min: 0x0, max: 0xffffffffffffffff)
|
||||
@@ -569,6 +574,16 @@ instead.
|
||||
This tunable is specific to i386 and x86-64.
|
||||
@end deftp
|
||||
|
||||
+@deftp Tunable glibc.cpu.prefer_map_32bit_exec
|
||||
+When this tunable is set to \code{1}, shared libraries of non-setuid
|
||||
+programs will be loaded below 2GB with MAP_32BIT.
|
||||
+
|
||||
+Note that the @env{LD_PREFER_MAP_32BIT_EXEC} environment is an alias of
|
||||
+this tunable.
|
||||
+
|
||||
+This tunable is specific to 64-bit x86-64.
|
||||
+@end deftp
|
||||
+
|
||||
@node Memory Related Tunables
|
||||
@section Memory Related Tunables
|
||||
@cindex memory related tunables
|
||||
diff --git a/sysdeps/unix/sysv/linux/x86_64/64/Makefile b/sysdeps/unix/sysv/linux/x86_64/64/Makefile
|
||||
index a7b6dc5a53..8ff4f27786 100644
|
||||
--- a/sysdeps/unix/sysv/linux/x86_64/64/Makefile
|
||||
+++ b/sysdeps/unix/sysv/linux/x86_64/64/Makefile
|
||||
@@ -1,2 +1,27 @@
|
||||
# The default ABI is 64.
|
||||
default-abi := 64
|
||||
+
|
||||
+ifeq ($(subdir),elf)
|
||||
+ifneq ($(have-tunables),no)
|
||||
+
|
||||
+tests-map-32bit = \
|
||||
+ tst-map-32bit-1a \
|
||||
+ tst-map-32bit-1b \
|
||||
+# tests-map-32bit
|
||||
+tst-map-32bit-1a-no-pie = yes
|
||||
+tst-map-32bit-1b-no-pie = yes
|
||||
+tests += $(tests-map-32bit)
|
||||
+
|
||||
+modules-map-32bit = \
|
||||
+ tst-map-32bit-mod \
|
||||
+# modules-map-32bit
|
||||
+modules-names += $(modules-map-32bit)
|
||||
+
|
||||
+$(objpfx)tst-map-32bit-mod.so: $(libsupport)
|
||||
+tst-map-32bit-1a-ENV = LD_PREFER_MAP_32BIT_EXEC=1
|
||||
+$(objpfx)tst-map-32bit-1a: $(objpfx)tst-map-32bit-mod.so
|
||||
+tst-map-32bit-1b-ENV = GLIBC_TUNABLES=glibc.cpu.prefer_map_32bit_exec=1
|
||||
+$(objpfx)tst-map-32bit-1b: $(objpfx)tst-map-32bit-mod.so
|
||||
+
|
||||
+endif
|
||||
+endif
|
||||
diff -rup a/sysdeps/unix/sysv/linux/x86_64/64/dl-tunables.list b/sysdeps/unix/sysv/linux/x86_64/64/dl-tunables.list
|
||||
--- a/sysdeps/unix/sysv/linux/x86_64/64/dl-tunables.list 2024-03-06 17:52:50.968514369 -0500
|
||||
+++ b/sysdeps/unix/sysv/linux/x86_64/64/dl-tunables.list 2024-03-06 17:55:48.778264896 -0500
|
||||
@@ -1,3 +1,33 @@
|
||||
+# x86-64 specific tunables.
|
||||
+# Copyright (C) 2023 Free Software Foundation, Inc.
|
||||
+# This file is part of the GNU C Library.
|
||||
+
|
||||
+# The GNU C Library is free software; you can redistribute it and/or
|
||||
+# modify it under the terms of the GNU Lesser General Public
|
||||
+# License as published by the Free Software Foundation; either
|
||||
+# version 2.1 of the License, or (at your option) any later version.
|
||||
+
|
||||
+# The GNU C Library is distributed in the hope that it will be useful,
|
||||
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
+# Lesser General Public License for more details.
|
||||
+
|
||||
+# You should have received a copy of the GNU Lesser General Public
|
||||
+# License along with the GNU C Library; if not, see
|
||||
+# <https://www.gnu.org/licenses/>.
|
||||
+
|
||||
+glibc {
|
||||
+ cpu {
|
||||
+ prefer_map_32bit_exec {
|
||||
+ type: INT_32
|
||||
+ minval: 0
|
||||
+ maxval: 1
|
||||
+ env_alias: LD_PREFER_MAP_32BIT_EXEC
|
||||
+ security_level: SXID_IGNORE
|
||||
+ }
|
||||
+ }
|
||||
+}
|
||||
+
|
||||
# Order of tunables in RHEL 9.1.z.
|
||||
@order glibc.rtld.nns
|
||||
@order glibc.elision.skip_lock_after_retries
|
||||
@@ -35,3 +65,5 @@
|
||||
@order glibc.malloc.check
|
||||
@order glibc.gmon.minarcs
|
||||
@order glibc.gmon.maxarcs
|
||||
+# Order of tunables in RHEL 9.5.z
|
||||
+@order glibc.cpu.prefer_map_32bit_exec
|
||||
diff --git a/sysdeps/unix/sysv/linux/x86_64/64/mmap_internal.h b/sysdeps/unix/sysv/linux/x86_64/64/mmap_internal.h
|
||||
new file mode 100644
|
||||
index 0000000000..33dec3f805
|
||||
--- /dev/null
|
||||
+++ b/sysdeps/unix/sysv/linux/x86_64/64/mmap_internal.h
|
||||
@@ -0,0 +1,43 @@
|
||||
+/* Linux mmap system call. x86-64 version.
|
||||
+ Copyright (C) 2015-2023 Free Software Foundation, Inc.
|
||||
+
|
||||
+ This file is part of the GNU C Library.
|
||||
+
|
||||
+ The GNU C Library is free software; you can redistribute it and/or
|
||||
+ modify it under the terms of the GNU Lesser General Public License as
|
||||
+ published by the Free Software Foundation; either version 2.1 of the
|
||||
+ License, or (at your option) any later version.
|
||||
+
|
||||
+ The GNU C Library is distributed in the hope that it will be useful,
|
||||
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
+ Lesser General Public License for more details.
|
||||
+
|
||||
+ You should have received a copy of the GNU Lesser General Public
|
||||
+ License along with the GNU C Library; if not, see
|
||||
+ <https://www.gnu.org/licenses/>. */
|
||||
+
|
||||
+#ifndef MMAP_X86_64_INTERNAL_H
|
||||
+#define MMAP_X86_64_INTERNAL_H
|
||||
+
|
||||
+#include <ldsodefs.h>
|
||||
+
|
||||
+/* If the Prefer_MAP_32BIT_EXEC bit is set, try to map executable or
|
||||
+ denywrite pages with MAP_32BIT first. */
|
||||
+#define MMAP_PREPARE(addr, len, prot, flags, fd, offset) \
|
||||
+ if ((addr) == NULL \
|
||||
+ && (((prot) & PROT_EXEC) != 0 \
|
||||
+ || ((flags) & MAP_DENYWRITE) != 0) \
|
||||
+ && HAS_ARCH_FEATURE (Prefer_MAP_32BIT_EXEC)) \
|
||||
+ { \
|
||||
+ void *ret = (void*) INLINE_SYSCALL_CALL (mmap, (addr), (len), \
|
||||
+ (prot), \
|
||||
+ (flags) | MAP_32BIT, \
|
||||
+ (fd), (offset)); \
|
||||
+ if (ret != MAP_FAILED) \
|
||||
+ return ret; \
|
||||
+ }
|
||||
+
|
||||
+#include_next <mmap_internal.h>
|
||||
+
|
||||
+#endif
|
||||
diff --git a/sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-1a.c b/sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-1a.c
|
||||
new file mode 100644
|
||||
index 0000000000..abc396589e
|
||||
--- /dev/null
|
||||
+++ b/sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-1a.c
|
||||
@@ -0,0 +1,34 @@
|
||||
+/* Check that LD_PREFER_MAP_32BIT_EXEC works in PDE and shared library.
|
||||
+ Copyright (C) 2023 Free Software Foundation, Inc.
|
||||
+ This file is part of the GNU C Library.
|
||||
+
|
||||
+ The GNU C Library is free software; you can redistribute it and/or
|
||||
+ modify it under the terms of the GNU Lesser General Public
|
||||
+ License as published by the Free Software Foundation; either
|
||||
+ version 2.1 of the License, or (at your option) any later version.
|
||||
+
|
||||
+ The GNU C Library is distributed in the hope that it will be useful,
|
||||
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
+ Lesser General Public License for more details.
|
||||
+
|
||||
+ You should have received a copy of the GNU Lesser General Public
|
||||
+ License along with the GNU C Library; if not, see
|
||||
+ <https://www.gnu.org/licenses/>. */
|
||||
+
|
||||
+#include <stdio.h>
|
||||
+#include <stdint.h>
|
||||
+#include <support/check.h>
|
||||
+
|
||||
+extern void dso_check_map_32bit (void);
|
||||
+
|
||||
+static int
|
||||
+do_test (void)
|
||||
+{
|
||||
+ printf ("do_test: %p\n", do_test);
|
||||
+ TEST_VERIFY ((uintptr_t) do_test < 0xffffffffUL);
|
||||
+ dso_check_map_32bit ();
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+#include <support/test-driver.c>
|
||||
diff --git a/sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-1b.c b/sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-1b.c
|
||||
new file mode 100644
|
||||
index 0000000000..34ab01c773
|
||||
--- /dev/null
|
||||
+++ b/sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-1b.c
|
||||
@@ -0,0 +1 @@
|
||||
+#include "tst-map-32bit-1a.c"
|
||||
diff --git a/sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-mod.c b/sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-mod.c
|
||||
new file mode 100644
|
||||
index 0000000000..78d4b6133c
|
||||
--- /dev/null
|
||||
+++ b/sysdeps/unix/sysv/linux/x86_64/64/tst-map-32bit-mod.c
|
||||
@@ -0,0 +1,33 @@
|
||||
+/* Check that LD_PREFER_MAP_32BIT_EXEC works in shared library.
|
||||
+ Copyright (C) 2023 Free Software Foundation, Inc.
|
||||
+ This file is part of the GNU C Library.
|
||||
+
|
||||
+ The GNU C Library is free software; you can redistribute it and/or
|
||||
+ modify it under the terms of the GNU Lesser General Public
|
||||
+ License as published by the Free Software Foundation; either
|
||||
+ version 2.1 of the License, or (at your option) any later version.
|
||||
+
|
||||
+ The GNU C Library is distributed in the hope that it will be useful,
|
||||
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
+ Lesser General Public License for more details.
|
||||
+
|
||||
+ You should have received a copy of the GNU Lesser General Public
|
||||
+ License along with the GNU C Library; if not, see
|
||||
+ <https://www.gnu.org/licenses/>. */
|
||||
+
|
||||
+#include <stdio.h>
|
||||
+#include <stdint.h>
|
||||
+#include <support/check.h>
|
||||
+
|
||||
+static void
|
||||
+dso_do_test (void)
|
||||
+{
|
||||
+}
|
||||
+
|
||||
+void
|
||||
+dso_check_map_32bit (void)
|
||||
+{
|
||||
+ printf ("dso_do_test: %p\n", dso_do_test);
|
||||
+ TEST_VERIFY ((uintptr_t) dso_do_test < 0xffffffffUL);
|
||||
+}
|
||||
diff --git a/sysdeps/x86/cpu-features.c b/sysdeps/x86/cpu-features.c
|
||||
index a2197ed211..822688e21f 100644
|
||||
--- a/sysdeps/x86/cpu-features.c
|
||||
+++ b/sysdeps/x86/cpu-features.c
|
||||
@@ -27,6 +27,16 @@
|
||||
extern void TUNABLE_CALLBACK (set_hwcaps) (tunable_val_t *)
|
||||
attribute_hidden;
|
||||
|
||||
+# ifdef __LP64__
|
||||
+static void
|
||||
+TUNABLE_CALLBACK (set_prefer_map_32bit_exec) (tunable_val_t *valp)
|
||||
+{
|
||||
+ if (valp->numval)
|
||||
+ GLRO(dl_x86_cpu_features).preferred[index_arch_Prefer_MAP_32BIT_EXEC]
|
||||
+ |= bit_arch_Prefer_MAP_32BIT_EXEC;
|
||||
+}
|
||||
+# endif
|
||||
+
|
||||
# if CET_ENABLED
|
||||
extern void TUNABLE_CALLBACK (set_x86_ibt) (tunable_val_t *)
|
||||
attribute_hidden;
|
||||
@@ -949,6 +959,11 @@ no_cpuid:
|
||||
#if HAVE_TUNABLES
|
||||
TUNABLE_GET (hwcaps, tunable_val_t *, TUNABLE_CALLBACK (set_hwcaps));
|
||||
|
||||
+# ifdef __LP64__
|
||||
+ TUNABLE_GET (prefer_map_32bit_exec, tunable_val_t *,
|
||||
+ TUNABLE_CALLBACK (set_prefer_map_32bit_exec));
|
||||
+# endif
|
||||
+
|
||||
bool disable_xsave_features = false;
|
||||
|
||||
if (!CPU_FEATURE_USABLE_P (cpu_features, OSXSAVE))
|
||||
diff --git a/sysdeps/x86/include/cpu-features-preferred_feature_index_1.def b/sysdeps/x86/include/cpu-features-preferred_feature_index_1.def
|
||||
index e45f9cb159..d20c5b3196 100644
|
||||
--- a/sysdeps/x86/include/cpu-features-preferred_feature_index_1.def
|
||||
+++ b/sysdeps/x86/include/cpu-features-preferred_feature_index_1.def
|
||||
@@ -26,6 +26,7 @@ BIT (I586)
|
||||
BIT (I686)
|
||||
BIT (Slow_SSE4_2)
|
||||
BIT (AVX_Fast_Unaligned_Load)
|
||||
+BIT (Prefer_MAP_32BIT_EXEC)
|
||||
BIT (Prefer_No_VZEROUPPER)
|
||||
BIT (Prefer_ERMS)
|
||||
BIT (Prefer_No_AVX512)
|
||||
--
|
||||
2.39.3
|
||||
|
@ -0,0 +1,29 @@
|
||||
From 188ecdb7774145050a6e167a277f45f03dac5fe8 Mon Sep 17 00:00:00 2001
|
||||
From: "H.J. Lu" <hjl.tools@gmail.com>
|
||||
Date: Wed, 22 Feb 2023 20:04:26 -0800
|
||||
Subject: [PATCH] tunables.texi: Change \code{1} to @code{1}
|
||||
Content-type: text/plain; charset=UTF-8
|
||||
|
||||
Update
|
||||
|
||||
317f1c0a8a x86-64: Add glibc.cpu.prefer_map_32bit_exec [BZ #28656]
|
||||
---
|
||||
manual/tunables.texi | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/manual/tunables.texi b/manual/tunables.texi
|
||||
index c76c5c53cd..70dd2264c5 100644
|
||||
--- a/manual/tunables.texi
|
||||
+++ b/manual/tunables.texi
|
||||
@@ -589,7 +589,7 @@ This tunable is specific to i386 and x86-64.
|
||||
@end deftp
|
||||
|
||||
@deftp Tunable glibc.cpu.prefer_map_32bit_exec
|
||||
-When this tunable is set to \code{1}, shared libraries of non-setuid
|
||||
+When this tunable is set to @code{1}, shared libraries of non-setuid
|
||||
programs will be loaded below 2GB with MAP_32BIT.
|
||||
|
||||
Note that the @env{LD_PREFER_MAP_32BIT_EXEC} environment is an alias of
|
||||
--
|
||||
2.39.3
|
||||
|
@ -0,0 +1,73 @@
|
||||
commit 85860ad6eaf4c9739318f6b2a1ff7c2fa6b12ab5
|
||||
Author: Florian Weimer <fweimer@redhat.com>
|
||||
Date: Mon Aug 15 16:45:40 2022 +0200
|
||||
|
||||
malloc: Do not use MAP_NORESERVE to allocate heap segments
|
||||
|
||||
Address space for heap segments is reserved in a mmap call with
|
||||
MAP_ANONYMOUS | MAP_PRIVATE and protection flags PROT_NONE. This
|
||||
reservation does not count against the RSS limit of the process or
|
||||
system. Backing memory is allocated using mprotect in alloc_new_heap
|
||||
and grow_heap, and at this point, the allocator expects the kernel
|
||||
to provide memory (subject to memory overcommit).
|
||||
|
||||
The SIGSEGV that might generate due to MAP_NORESERVE (according to
|
||||
the mmap manual page) does not seem to occur in practice, it's always
|
||||
SIGKILL from the OOM killer. Even if there is a way that SIGSEGV
|
||||
could be generated, it is confusing to applications that this only
|
||||
happens for secondary heaps, not for large mmap-based allocations,
|
||||
and not for the main arena.
|
||||
|
||||
Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
|
||||
|
||||
Conflicts:
|
||||
malloc/arena.c
|
||||
(huge page support was added upstream)
|
||||
|
||||
diff --git a/malloc/arena.c b/malloc/arena.c
|
||||
index 667484630ed0afa5..2852783355d3d869 100644
|
||||
--- a/malloc/arena.c
|
||||
+++ b/malloc/arena.c
|
||||
@@ -466,8 +466,7 @@ new_heap (size_t size, size_t top_pad)
|
||||
p2 = MAP_FAILED;
|
||||
if (aligned_heap_area)
|
||||
{
|
||||
- p2 = (char *) MMAP (aligned_heap_area, HEAP_MAX_SIZE, PROT_NONE,
|
||||
- MAP_NORESERVE);
|
||||
+ p2 = (char *) MMAP (aligned_heap_area, HEAP_MAX_SIZE, PROT_NONE, 0);
|
||||
aligned_heap_area = NULL;
|
||||
if (p2 != MAP_FAILED && ((unsigned long) p2 & (HEAP_MAX_SIZE - 1)))
|
||||
{
|
||||
@@ -477,7 +476,7 @@ new_heap (size_t size, size_t top_pad)
|
||||
}
|
||||
if (p2 == MAP_FAILED)
|
||||
{
|
||||
- p1 = (char *) MMAP (0, HEAP_MAX_SIZE << 1, PROT_NONE, MAP_NORESERVE);
|
||||
+ p1 = (char *) MMAP (0, HEAP_MAX_SIZE << 1, PROT_NONE, 0);
|
||||
if (p1 != MAP_FAILED)
|
||||
{
|
||||
p2 = (char *) (((unsigned long) p1 + (HEAP_MAX_SIZE - 1))
|
||||
@@ -493,7 +492,7 @@ new_heap (size_t size, size_t top_pad)
|
||||
{
|
||||
/* Try to take the chance that an allocation of only HEAP_MAX_SIZE
|
||||
is already aligned. */
|
||||
- p2 = (char *) MMAP (0, HEAP_MAX_SIZE, PROT_NONE, MAP_NORESERVE);
|
||||
+ p2 = (char *) MMAP (0, HEAP_MAX_SIZE, PROT_NONE, 0);
|
||||
if (p2 == MAP_FAILED)
|
||||
return 0;
|
||||
|
||||
diff --git a/malloc/malloc.c b/malloc/malloc.c
|
||||
index 375f50f5db13e234..fe80b8239756a7c9 100644
|
||||
--- a/malloc/malloc.c
|
||||
+++ b/malloc/malloc.c
|
||||
@@ -1112,10 +1112,6 @@ static mchunkptr mremap_chunk(mchunkptr p, size_t new_size);
|
||||
# define MAP_ANONYMOUS MAP_ANON
|
||||
#endif
|
||||
|
||||
-#ifndef MAP_NORESERVE
|
||||
-# define MAP_NORESERVE 0
|
||||
-#endif
|
||||
-
|
||||
#define MMAP(addr, size, prot, flags) \
|
||||
__mmap((addr), (size), (prot), (flags)|MAP_ANONYMOUS|MAP_PRIVATE, -1, 0)
|
||||
|
@ -0,0 +1,229 @@
|
||||
commit f21962ddfc8bb23e92597da1f98e313dbde11cc1
|
||||
Author: Florian Weimer <fweimer@redhat.com>
|
||||
Date: Fri Aug 25 14:15:28 2023 +0200
|
||||
|
||||
manual: Document ld.so --list-diagnostics output
|
||||
|
||||
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
||||
|
||||
diff --git a/manual/dynlink.texi b/manual/dynlink.texi
|
||||
index 45bf5a5b55..df41c56bfc 100644
|
||||
--- a/manual/dynlink.texi
|
||||
+++ b/manual/dynlink.texi
|
||||
@@ -13,9 +13,216 @@ as plugins) later at run time.
|
||||
Dynamic linkers are sometimes called @dfn{dynamic loaders}.
|
||||
|
||||
@menu
|
||||
+* Dynamic Linker Invocation:: Explicit invocation of the dynamic linker.
|
||||
* Dynamic Linker Introspection:: Interfaces for querying mapping information.
|
||||
@end menu
|
||||
|
||||
+@node Dynamic Linker Invocation
|
||||
+
|
||||
+@cindex program interpreter
|
||||
+When a dynamically linked program starts, the operating system
|
||||
+automatically loads the dynamic linker along with the program.
|
||||
+@Theglibc{} also supports invoking the dynamic linker explicitly to
|
||||
+launch a program. This command uses the implied dynamic linker
|
||||
+(also sometimes called the @dfn{program interpreter}):
|
||||
+
|
||||
+@smallexample
|
||||
+sh -c 'echo "Hello, world!"'
|
||||
+@end smallexample
|
||||
+
|
||||
+This command specifies the dynamic linker explicitly:
|
||||
+
|
||||
+@smallexample
|
||||
+ld.so /bin/sh -c 'echo "Hello, world!"'
|
||||
+@end smallexample
|
||||
+
|
||||
+Note that @command{ld.so} does not search the @env{PATH} environment
|
||||
+variable, so the full file name of the executable needs to be specified.
|
||||
+
|
||||
+The @command{ld.so} program supports various options. Options start
|
||||
+@samp{--} and need to come before the program that is being launched.
|
||||
+Some of the supported options are listed below.
|
||||
+
|
||||
+@table @code
|
||||
+@item --list-diagnostics
|
||||
+Print system diagnostic information in a machine-readable format.
|
||||
+@xref{Dynamic Linker Diagnostics}.
|
||||
+@end table
|
||||
+
|
||||
+@menu
|
||||
+* Dynamic Linker Diagnostics:: Obtaining system diagnostic information.
|
||||
+@end menu
|
||||
+
|
||||
+@node Dynamic Linker Diagnostics
|
||||
+@section Dynamic Linker Diagnostics
|
||||
+@cindex diagnostics (dynamic linker)
|
||||
+
|
||||
+The @samp{ld.so --list-diagnostics} produces machine-readable
|
||||
+diagnostics output. This output contains system data that affects the
|
||||
+behavior of @theglibc{}, and potentially application behavior as well.
|
||||
+
|
||||
+The exact set of diagnostic items can change between releases of
|
||||
+@theglibc{}. The output format itself is not expected to change
|
||||
+radically.
|
||||
+
|
||||
+The following table shows some example lines that can be written by the
|
||||
+diagnostics command.
|
||||
+
|
||||
+@table @code
|
||||
+@item dl_pagesize=0x1000
|
||||
+The system page size is 4096 bytes.
|
||||
+
|
||||
+@item env[0x14]="LANG=en_US.UTF-8"
|
||||
+This item indicates that the 21st environment variable at process
|
||||
+startup contains a setting for @code{LANG}.
|
||||
+
|
||||
+@item env_filtered[0x22]="DISPLAY"
|
||||
+The 35th environment variable is @code{DISPLAY}. Its value is not
|
||||
+included in the output for privacy reasons because it is not recognized
|
||||
+as harmless by the diagnostics code.
|
||||
+
|
||||
+@item path.prefix="/usr"
|
||||
+This means that @theglibc{} was configured with @code{--prefix=/usr}.
|
||||
+
|
||||
+@item path.system_dirs[0x0]="/lib64/"
|
||||
+@itemx path.system_dirs[0x1]="/usr/lib64/"
|
||||
+The built-in dynamic linker search path contains two directories,
|
||||
+@code{/lib64} and @code{/usr/lib64}.
|
||||
+@end table
|
||||
+
|
||||
+@subsection Dynamic Linker Diagnostics Output Format
|
||||
+
|
||||
+As seen above, diagnostic lines assign values (integers or strings) to a
|
||||
+sequence of labeled subscripts, separated by @samp{.}. Some subscripts
|
||||
+have integer indices associated with them. The subscript indices are
|
||||
+not necessarily contiguous or small, so an associative array should be
|
||||
+used to store them. Currently, all integers fit into the 64-bit
|
||||
+unsigned integer range. Every access path to a value has a fixed type
|
||||
+(string or integer) independent of subscript index values. Likewise,
|
||||
+whether a subscript is indexed does not depend on previous indices (but
|
||||
+may depend on previous subscript labels).
|
||||
+
|
||||
+A syntax description in ABNF (RFC 5234) follows. Note that
|
||||
+@code{%x30-39} denotes the range of decimal digits. Diagnostic output
|
||||
+lines are expected to match the @code{line} production.
|
||||
+
|
||||
+@c ABNF-START
|
||||
+@smallexample
|
||||
+HEXDIG = %x30-39 / %x61-6f ; lowercase a-f only
|
||||
+ALPHA = %x41-5a / %x61-7a / %x7f ; letters and underscore
|
||||
+ALPHA-NUMERIC = ALPHA / %x30-39 / "_"
|
||||
+DQUOTE = %x22 ; "
|
||||
+
|
||||
+; Numbers are always hexadecimal and use a 0x prefix.
|
||||
+hex-value-prefix = %x30 %x78
|
||||
+hex-value = hex-value-prefix 1*HEXDIG
|
||||
+
|
||||
+; Strings use octal escape sequences and \\, \".
|
||||
+string-char = %x20-21 / %x23-5c / %x5d-7e ; printable but not "\
|
||||
+string-quoted-octal = %x30-33 2*2%x30-37
|
||||
+string-quoted = "\" ("\" / DQUOTE / string-quoted-octal)
|
||||
+string-value = DQUOTE *(string-char / string-quoted) DQUOTE
|
||||
+
|
||||
+value = hex-value / string-value
|
||||
+
|
||||
+label = ALPHA *ALPHA-NUMERIC
|
||||
+index = "[" hex-value "]"
|
||||
+subscript = label [index]
|
||||
+
|
||||
+line = subscript *("." subscript) "=" value
|
||||
+@end smallexample
|
||||
+
|
||||
+@subsection Dynamic Linker Diagnostics Values
|
||||
+
|
||||
+As mentioned above, the set of diagnostics may change between
|
||||
+@theglibc{} releases. Nevertheless, the following table documents a few
|
||||
+common diagnostic items. All numbers are in hexadecimal, with a
|
||||
+@samp{0x} prefix.
|
||||
+
|
||||
+@table @code
|
||||
+@item dl_dst_lib=@var{string}
|
||||
+The @code{$LIB} dynamic string token expands to @var{string}.
|
||||
+
|
||||
+@cindex HWCAP (diagnostics)
|
||||
+@item dl_hwcap=@var{integer}
|
||||
+@itemx dl_hwcap2=@var{integer}
|
||||
+The HWCAP and HWCAP2 values, as returned for @code{getauxval}, and as
|
||||
+used in other places depending on the architecture.
|
||||
+
|
||||
+@cindex page size (diagnostics)
|
||||
+@item dl_pagesize=@var{integer}
|
||||
+The system page size is @var{integer} bytes.
|
||||
+
|
||||
+@item dl_platform=@var{string}
|
||||
+The @code{$PLATFORM} dynamic string token expands to @var{string}.
|
||||
+
|
||||
+@item dso.libc=@var{string}
|
||||
+This is the soname of the shared @code{libc} object that is part of
|
||||
+@theglibc{}. On most architectures, this is @code{libc.so.6}.
|
||||
+
|
||||
+@item env[@var{index}]=@var{string}
|
||||
+@itemx env_filtered[@var{index}]=@var{string}
|
||||
+An environment variable from the process environment. The integer
|
||||
+@var{index} is the array index in the environment array. Variables
|
||||
+under @code{env} include the variable value after the @samp{=} (assuming
|
||||
+that it was present), variables under @code{env_filtered} do not.
|
||||
+
|
||||
+@item path.prefix=@var{string}
|
||||
+This indicates that @theglibc{} was configured using
|
||||
+@samp{--prefix=@var{string}}.
|
||||
+
|
||||
+@item path.sysconfdir=@var{string}
|
||||
+@Theglibc{} was configured (perhaps implicitly) with
|
||||
+@samp{--sysconfdir=@var{string}} (typically @code{/etc}).
|
||||
+
|
||||
+@item path.system_dirs[@var{index}]=@var{string}
|
||||
+These items list the elements of the built-in array that describes the
|
||||
+default library search path. The value @var{string} is a directory file
|
||||
+name with a trailing @samp{/}.
|
||||
+
|
||||
+@item path.rtld=@var{string}
|
||||
+This string indicates the application binary interface (ABI) file name
|
||||
+of the run-time dynamic linker.
|
||||
+
|
||||
+@item version.release="stable"
|
||||
+@itemx version.release="development"
|
||||
+The value @code{"stable"} indicates that this build of @theglibc{} is
|
||||
+from a release branch. Releases labeled as @code{"development"} are
|
||||
+unreleased development versions.
|
||||
+
|
||||
+@cindex version (diagnostics)
|
||||
+@item version.version="@var{major}.@var{minor}"
|
||||
+@itemx version.version="@var{major}.@var{minor}.9000"
|
||||
+@Theglibc{} version. Development releases end in @samp{.9000}.
|
||||
+
|
||||
+@cindex auxiliary vector (diagnostics)
|
||||
+@item auxv[@var{index}].a_type=@var{type}
|
||||
+@itemx auxv[@var{index}].a_val=@var{integer}
|
||||
+@itemx auxv[@var{index}].a_val_string=@var{string}
|
||||
+An entry in the auxiliary vector (specific to Linux). The values
|
||||
+@var{type} (an integer) and @var{integer} correspond to the members of
|
||||
+@code{struct auxv}. If the value is a string, @code{a_val_string} is
|
||||
+used instead of @code{a_val}, so that values have consistent types.
|
||||
+
|
||||
+The @code{AT_HWCAP} and @code{AT_HWCAP2} values in this output do not
|
||||
+reflect adjustment by @theglibc{}.
|
||||
+
|
||||
+@item uname.sysname=@var{string}
|
||||
+@itemx uname.nodename=@var{string}
|
||||
+@itemx uname.release=@var{string}
|
||||
+@itemx uname.version=@var{string}
|
||||
+@itemx uname.machine=@var{string}
|
||||
+@itemx uname.domain=@var{string}
|
||||
+These Linux-specific items show the values of @code{struct utsname}, as
|
||||
+reported by the @code{uname} function. @xref{Platform Type}.
|
||||
+
|
||||
+@cindex CPUID (diagnostics)
|
||||
+@item x86.cpu_features.@dots{}
|
||||
+These items are specific to the i386 and x86-64 architectures. They
|
||||
+reflect supported CPU features and information on cache geometry, mostly
|
||||
+collected using the @code{CPUID} instruction.
|
||||
+@end table
|
||||
+
|
||||
@node Dynamic Linker Introspection
|
||||
@section Dynamic Linker Introspection
|
||||
|
@ -0,0 +1,74 @@
|
||||
commit d99609a3eb8bc96c3af841fd35294a679e0fea7f
|
||||
Author: Florian Weimer <fweimer@redhat.com>
|
||||
Date: Wed Sep 6 18:37:21 2023 +0200
|
||||
|
||||
manual: Fix ld.so diagnostics menu/section structure
|
||||
|
||||
And shorten the section/node names a bit, so that the menu
|
||||
entries become easier to read.
|
||||
|
||||
Texinfo 6.5 fails to process the previous structure:
|
||||
|
||||
./dynlink.texi:56: warning: node `Dynamic Linker Introspection' is
|
||||
next for `Dynamic Linker Diagnostics' in sectioning but not in menu
|
||||
./dynlink.texi:56: warning: node up `Dynamic Linker Diagnostics'
|
||||
in menu `Dynamic Linker Invocation' and
|
||||
in sectioning `Dynamic Linker' differ
|
||||
./dynlink.texi:1: node `Dynamic Linker' lacks menu item for
|
||||
`Dynamic Linker Diagnostics' despite being its Up target
|
||||
./dynlink.texi:226: warning: node prev `Dynamic Linker Introspection' in menu `Dynamic Linker Invocation'
|
||||
and in sectioning `Dynamic Linker Diagnostics' differ
|
||||
|
||||
Texinfo 7.0.2 does not report an error.
|
||||
|
||||
This fixes commit f21962ddfc8bb23e92597da1f98e313dbde11cc1
|
||||
("manual: Document ld.so --list-diagnostics output").
|
||||
|
||||
Reviewed-by: Szabolcs Nagy <szabolcs.nagy@arm.com>
|
||||
|
||||
diff --git a/manual/dynlink.texi b/manual/dynlink.texi
|
||||
index df41c56bfc..06a6c15533 100644
|
||||
--- a/manual/dynlink.texi
|
||||
+++ b/manual/dynlink.texi
|
||||
@@ -18,6 +18,7 @@ Dynamic linkers are sometimes called @dfn{dynamic loaders}.
|
||||
@end menu
|
||||
|
||||
@node Dynamic Linker Invocation
|
||||
+@section Dynamic Linker Invocation
|
||||
|
||||
@cindex program interpreter
|
||||
When a dynamically linked program starts, the operating system
|
||||
@@ -54,7 +55,7 @@ Print system diagnostic information in a machine-readable format.
|
||||
@end menu
|
||||
|
||||
@node Dynamic Linker Diagnostics
|
||||
-@section Dynamic Linker Diagnostics
|
||||
+@subsection Dynamic Linker Diagnostics
|
||||
@cindex diagnostics (dynamic linker)
|
||||
|
||||
The @samp{ld.so --list-diagnostics} produces machine-readable
|
||||
@@ -90,7 +91,13 @@ The built-in dynamic linker search path contains two directories,
|
||||
@code{/lib64} and @code{/usr/lib64}.
|
||||
@end table
|
||||
|
||||
-@subsection Dynamic Linker Diagnostics Output Format
|
||||
+@menu
|
||||
+* Dynamic Linker Diagnostics Format:: Format of ld.so output.
|
||||
+* Dynamic Linker Diagnostics Values:: Data contain in ld.so output.
|
||||
+@end menu
|
||||
+
|
||||
+@node Dynamic Linker Diagnostics Format
|
||||
+@subsubsection Dynamic Linker Diagnostics Format
|
||||
|
||||
As seen above, diagnostic lines assign values (integers or strings) to a
|
||||
sequence of labeled subscripts, separated by @samp{.}. Some subscripts
|
||||
@@ -132,7 +139,8 @@ subscript = label [index]
|
||||
line = subscript *("." subscript) "=" value
|
||||
@end smallexample
|
||||
|
||||
-@subsection Dynamic Linker Diagnostics Values
|
||||
+@node Dynamic Linker Diagnostics Values
|
||||
+@subsubsection Dynamic Linker Diagnostics Values
|
||||
|
||||
As mentioned above, the set of diagnostics may change between
|
||||
@theglibc{} releases. Nevertheless, the following table documents a few
|
@ -0,0 +1,144 @@
|
||||
commit f8d8b1b1e6d3b8b93f224efc796b7ea083fdb83f
|
||||
Author: Florian Weimer <fweimer@redhat.com>
|
||||
Date: Mon Apr 8 16:48:55 2024 +0200
|
||||
|
||||
aarch64: Enhanced CPU diagnostics for ld.so
|
||||
|
||||
This prints some information from struct cpu_features, and the midr_el1
|
||||
and dczid_el0 system register contents on every CPU.
|
||||
|
||||
Reviewed-by: Szabolcs Nagy <szabolcs.nagy@arm.com>
|
||||
|
||||
Modified for RHEL by: Patsy Griffin <patsy@redhat.com>
|
||||
Diagnostics for the cpu_features mops and prefer_sve_ifuncs are not
|
||||
currently supported on aarch64.
|
||||
|
||||
diff -Nrup a/manual/dynlink.texi b/manual/dynlink.texi
|
||||
--- a/manual/dynlink.texi 2024-05-31 20:55:08.238959456 -0400
|
||||
+++ b/manual/dynlink.texi 2024-05-31 20:55:41.298121623 -0400
|
||||
@@ -224,6 +224,40 @@ reflect adjustment by @theglibc{}.
|
||||
These Linux-specific items show the values of @code{struct utsname}, as
|
||||
reported by the @code{uname} function. @xref{Platform Type}.
|
||||
|
||||
+@item aarch64.cpu_features.@dots{}
|
||||
+These items are specific to the AArch64 architectures. They report data
|
||||
+@theglibc{} uses to activate conditionally supported features such as
|
||||
+BTI and MTE, and to select alternative function implementations.
|
||||
+
|
||||
+@item aarch64.processor[@var{index}].@dots{}
|
||||
+These are additional items for the AArch64 architecture and are
|
||||
+described below.
|
||||
+
|
||||
+@item aarch64.processor[@var{index}].requested=@var{kernel-cpu}
|
||||
+The kernel is told to run the subsequent probing on the CPU numbered
|
||||
+@var{kernel-cpu}. The values @var{kernel-cpu} and @var{index} can be
|
||||
+distinct if there are gaps in the process CPU affinity mask. This line
|
||||
+is not included if CPU affinity mask information is not available.
|
||||
+
|
||||
+@item aarch64.processor[@var{index}].observed=@var{kernel-cpu}
|
||||
+This line reports the kernel CPU number @var{kernel-cpu} on which the
|
||||
+probing code initially ran. If the CPU number cannot be obtained,
|
||||
+this line is not printed.
|
||||
+
|
||||
+@item aarch64.processor[@var{index}].observed_node=@var{node}
|
||||
+This reports the observed NUMA node number, as reported by the
|
||||
+@code{getcpu} system call. If this information cannot be obtained, this
|
||||
+line is not printed.
|
||||
+
|
||||
+@item aarch64.processor[@var{index}].midr_el1=@var{value}
|
||||
+The value of the @code{midr_el1} system register on the processor
|
||||
+@var{index}. This line is only printed if the kernel indicates that
|
||||
+this system register is supported.
|
||||
+
|
||||
+@item aarch64.processor[@var{index}].dczid_el0=@var{value}
|
||||
+The value of the @code{dczid_el0} system register on the processor
|
||||
+@var{index}.
|
||||
+
|
||||
@cindex CPUID (diagnostics)
|
||||
@item x86.cpu_features.@dots{}
|
||||
These items are specific to the i386 and x86-64 architectures. They
|
||||
diff -Nrup a/sysdeps/aarch64/dl-diagnostics-cpu.c b/sysdeps/aarch64/dl-diagnostics-cpu.c
|
||||
--- a/sysdeps/aarch64/dl-diagnostics-cpu.c 1969-12-31 19:00:00.000000000 -0500
|
||||
+++ b/sysdeps/aarch64/dl-diagnostics-cpu.c 2024-05-31 20:57:23.536623129 -0400
|
||||
@@ -0,0 +1,81 @@
|
||||
+/* Print CPU diagnostics data in ld.so. AArch64 version.
|
||||
+ Copyright (C) 2021-2024 Free Software Foundation, Inc.
|
||||
+ This file is part of the GNU C Library.
|
||||
+
|
||||
+ The GNU C Library is free software; you can redistribute it and/or
|
||||
+ modify it under the terms of the GNU Lesser General Public
|
||||
+ License as published by the Free Software Foundation; either
|
||||
+ version 2.1 of the License, or (at your option) any later version.
|
||||
+
|
||||
+ The GNU C Library is distributed in the hope that it will be useful,
|
||||
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
+ Lesser General Public License for more details.
|
||||
+
|
||||
+ You should have received a copy of the GNU Lesser General Public
|
||||
+ License along with the GNU C Library; if not, see
|
||||
+ <https://www.gnu.org/licenses/>. */
|
||||
+
|
||||
+#include <dl-diagnostics.h>
|
||||
+
|
||||
+#include <cpu-features.h>
|
||||
+#include <dl-iterate_cpu.h>
|
||||
+#include <ldsodefs.h>
|
||||
+#include <sys/auxv.h>
|
||||
+
|
||||
+static void
|
||||
+print_cpu_features_value (const char *label, uint64_t value)
|
||||
+{
|
||||
+ _dl_printf ("aarch64.cpu_features.");
|
||||
+ _dl_diagnostics_print_labeled_value (label, value);
|
||||
+}
|
||||
+
|
||||
+static void
|
||||
+print_per_cpu_value (const struct dl_iterate_cpu *dic,
|
||||
+ const char *label, uint64_t value)
|
||||
+{
|
||||
+ _dl_printf ("aarch64.processor[0x%x].", dic->processor_index);
|
||||
+ _dl_diagnostics_print_labeled_value (label, value);
|
||||
+}
|
||||
+
|
||||
+void
|
||||
+_dl_diagnostics_cpu (void)
|
||||
+{
|
||||
+ print_cpu_features_value ("bti", GLRO (dl_aarch64_cpu_features).bti);
|
||||
+ print_cpu_features_value ("midr_el1",
|
||||
+ GLRO (dl_aarch64_cpu_features).midr_el1);
|
||||
+ print_cpu_features_value ("mte_state",
|
||||
+ GLRO (dl_aarch64_cpu_features).mte_state);
|
||||
+ print_cpu_features_value ("sve", GLRO (dl_aarch64_cpu_features).sve);
|
||||
+ print_cpu_features_value ("zva_size",
|
||||
+ GLRO (dl_aarch64_cpu_features).zva_size);
|
||||
+
|
||||
+ struct dl_iterate_cpu dic;
|
||||
+ _dl_iterate_cpu_init (&dic);
|
||||
+
|
||||
+ while (_dl_iterate_cpu_next (&dic))
|
||||
+ {
|
||||
+ if (dic.requested_cpu >= 0)
|
||||
+ _dl_printf ("aarch64.processor[0x%x].requested=0x%x\n",
|
||||
+ dic.processor_index, dic.requested_cpu);
|
||||
+ if (dic.actual_cpu >= 0)
|
||||
+ _dl_printf ("aarch64.processor[0x%x].observed=0x%x\n",
|
||||
+ dic.processor_index, dic.actual_cpu);
|
||||
+ if (dic.actual_node >= 0)
|
||||
+ _dl_printf ("aarch64.processor[0x%x].observed_node=0x%x\n",
|
||||
+ dic.processor_index, dic.actual_node);
|
||||
+
|
||||
+ if (GLRO (dl_hwcap) & HWCAP_CPUID)
|
||||
+ {
|
||||
+ uint64_t midr_el1;
|
||||
+ asm ("mrs %0, midr_el1" : "=r" (midr_el1));
|
||||
+ print_per_cpu_value (&dic, "midr_el1", midr_el1);
|
||||
+ }
|
||||
+
|
||||
+ {
|
||||
+ uint64_t dczid_el0;
|
||||
+ asm ("mrs %0, dczid_el0" : "=r" (dczid_el0));
|
||||
+ print_per_cpu_value (&dic, "dczid_el0", dczid_el0);
|
||||
+ }
|
||||
+ }
|
||||
+}
|
@ -0,0 +1,510 @@
|
||||
commit 7a430f40c46acfa7ce4c3bff193b278c190b2efc
|
||||
Author: Florian Weimer <fweimer@redhat.com>
|
||||
Date: Mon Apr 8 16:48:55 2024 +0200
|
||||
|
||||
x86: Add generic CPUID data dumper to ld.so --list-diagnostics
|
||||
|
||||
This is surprisingly difficult to implement if the goal is to produce
|
||||
reasonably sized output. With the current approaches to output
|
||||
compression (suppressing zeros and repeated results between CPUs,
|
||||
folding ranges of identical subleaves, dealing with the %ecx
|
||||
reflection issue), the output is less than 600 KiB even for systems
|
||||
with 256 logical CPUs.
|
||||
|
||||
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
|
||||
|
||||
diff -Nrup a/manual/dynlink.texi b/manual/dynlink.texi
|
||||
--- a/manual/dynlink.texi 2024-06-03 08:42:17.011026573 -0400
|
||||
+++ b/manual/dynlink.texi 2024-06-03 08:55:18.607771972 -0400
|
||||
@@ -262,7 +262,90 @@ The value of the @code{dczid_el0} system
|
||||
@item x86.cpu_features.@dots{}
|
||||
These items are specific to the i386 and x86-64 architectures. They
|
||||
reflect supported CPU features and information on cache geometry, mostly
|
||||
-collected using the @code{CPUID} instruction.
|
||||
+collected using the CPUID instruction.
|
||||
+
|
||||
+@item x86.processor[@var{index}].@dots{}
|
||||
+These are additional items for the i386 and x86-64 architectures, as
|
||||
+described below. They mostly contain raw data from the CPUID
|
||||
+instruction. The probes are performed for each active CPU for the
|
||||
+@code{ld.so} process, and data for different probed CPUs receives a
|
||||
+uniqe @var{index} value. Some CPUID data is expected to differ from CPU
|
||||
+core to CPU core. In some cases, CPUs are not correctly initialized and
|
||||
+indicate the presence of different feature sets.
|
||||
+
|
||||
+@item x86.processor[@var{index}].requested=@var{kernel-cpu}
|
||||
+The kernel is told to run the subsequent probing on the CPU numbered
|
||||
+@var{kernel-cpu}. The values @var{kernel-cpu} and @var{index} can be
|
||||
+distinct if there are gaps in the process CPU affinity mask. This line
|
||||
+is not included if CPU affinity mask information is not available.
|
||||
+
|
||||
+@item x86.processor[@var{index}].observed=@var{kernel-cpu}
|
||||
+This line reports the kernel CPU number @var{kernel-cpu} on which the
|
||||
+probing code initially ran. If the CPU number cannot be obtained,
|
||||
+this line is not printed.
|
||||
+
|
||||
+@item x86.processor[@var{index}].observed_node=@var{node}
|
||||
+This reports the observed NUMA node number, as reported by the
|
||||
+@code{getcpu} system call. If this information cannot be obtained, this
|
||||
+line is not printed.
|
||||
+
|
||||
+@item x86.processor[@var{index}].cpuid_leaves=@var{count}
|
||||
+This line indicates that @var{count} distinct CPUID leaves were
|
||||
+encountered. (This reflects internal @code{ld.so} storage space, it
|
||||
+does not directly correspond to @code{CPUID} enumeration ranges.)
|
||||
+
|
||||
+@item x86.processor[@var{index}].ecx_limit=@var{value}
|
||||
+The CPUID data extraction code uses a brute-force approach to enumerate
|
||||
+subleaves (see the @samp{.subleaf_eax} lines below). The last
|
||||
+@code{%rcx} value used in a CPUID query on this probed CPU was
|
||||
+@var{value}.
|
||||
+
|
||||
+@item x86.processor[@var{index}].cpuid.eax[@var{query_eax}].eax=@var{eax}
|
||||
+@itemx x86.processor[@var{index}].cpuid.eax[@var{query_eax}].ebx=@var{ebx}
|
||||
+@itemx x86.processor[@var{index}].cpuid.eax[@var{query_eax}].ecx=@var{ecx}
|
||||
+@itemx x86.processor[@var{index}].cpuid.eax[@var{query_eax}].edx=@var{edx}
|
||||
+These lines report the register contents after executing the CPUID
|
||||
+instruction with @samp{%rax == @var{query_eax}} and @samp{%rcx == 0} (a
|
||||
+@dfn{leaf}). For the first probed CPU (with a zero @var{index}), only
|
||||
+leaves with non-zero register contents are reported. For subsequent
|
||||
+CPUs, only leaves whose register contents differs from the previously
|
||||
+probed CPUs (with @var{index} one less) are reported.
|
||||
+
|
||||
+Basic and extended leaves are reported using the same syntax. This
|
||||
+means there is a large jump in @var{query_eax} for the first reported
|
||||
+extended leaf.
|
||||
+
|
||||
+@item x86.processor[@var{index}].cpuid.subleaf_eax[@var{query_eax}].ecx[@var{query_ecx}].eax=@var{eax}
|
||||
+@itemx x86.processor[@var{index}].cpuid.subleaf_eax[@var{query_eax}].ecx[@var{query_ecx}].ebx=@var{ebx}
|
||||
+@itemx x86.processor[@var{index}].cpuid.subleaf_eax[@var{query_eax}].ecx[@var{query_ecx}].ecx=@var{ecx}
|
||||
+@itemx x86.processor[@var{index}].cpuid.subleaf_eax[@var{query_eax}].ecx[@var{query_ecx}].edx=@var{edx}
|
||||
+This is similar to the leaves above, but for a @dfn{subleaf}. For
|
||||
+subleaves, the CPUID instruction is executed with @samp{%rax ==
|
||||
+@var{query_eax}} and @samp{%rcx == @var{query_ecx}}, so the result
|
||||
+depends on both register values. The same rules about filtering zero
|
||||
+and identical results apply.
|
||||
+
|
||||
+@item x86.processor[@var{index}].cpuid.subleaf_eax[@var{query_eax}].ecx[@var{query_ecx}].until_ecx=@var{ecx_limit}
|
||||
+Some CPUID results are the same regardless the @var{query_ecx} value.
|
||||
+If this situation is detected, a line with the @samp{.until_ecx}
|
||||
+selector ins included, and this indicates that the CPUID register
|
||||
+contents is the same for @code{%rcx} values between @var{query_ecx}
|
||||
+and @var{ecx_limit} (inclusive).
|
||||
+
|
||||
+@item x86.processor[@var{index}].cpuid.subleaf_eax[@var{query_eax}].ecx[@var{query_ecx}].ecx_query_mask=0xff
|
||||
+This line indicates that in an @samp{.until_ecx} range, the CPUID
|
||||
+instruction preserved the lowested 8 bits of the input @code{%rcx} in
|
||||
+the output @code{%rcx} registers. Otherwise, the subleaves in the range
|
||||
+have identical values. This special treatment is necessary to report
|
||||
+compact range information in case such copying occurs (because the
|
||||
+subleaves would otherwise be all different).
|
||||
+
|
||||
+@item x86.processor[@var{index}].xgetbv.ecx[@var{query_ecx}]=@var{result}
|
||||
+This line shows the 64-bit @var{result} value in the @code{%rdx:%rax}
|
||||
+register pair after executing the XGETBV instruction with @code{%rcx}
|
||||
+set to @var{query_ecx}. Zero values and values matching the previously
|
||||
+probed CPU are omitted. Nothing is printed if the system does not
|
||||
+support the XGETBV instruction.
|
||||
@end table
|
||||
|
||||
@node Dynamic Linker Introspection
|
||||
diff -Nrup a/sysdeps/x86/dl-diagnostics-cpu.c b/sysdeps/x86/dl-diagnostics-cpu.c
|
||||
--- a/sysdeps/x86/dl-diagnostics-cpu.c 2024-06-03 08:42:16.825025689 -0400
|
||||
+++ b/sysdeps/x86/dl-diagnostics-cpu.c 2024-06-03 09:49:47.528510916 -0400
|
||||
@@ -17,7 +17,18 @@
|
||||
<https://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <dl-diagnostics.h>
|
||||
+
|
||||
+#include <array_length.h>
|
||||
+#include <cpu-features.h>
|
||||
+#include <cpuid.h>
|
||||
+#include <dl-iterate_cpu.h>
|
||||
#include <ldsodefs.h>
|
||||
+#include <stdbool.h>
|
||||
+#include <string.h>
|
||||
+#include <sysdep.h>
|
||||
+
|
||||
+/* The generic CPUID dumping code. */
|
||||
+static void _dl_diagnostics_cpuid (void);
|
||||
|
||||
static void
|
||||
print_cpu_features_value (const char *label, uint64_t value)
|
||||
@@ -119,4 +130,377 @@ _dl_diagnostics_cpu (void)
|
||||
"last cpu_features field has been printed");
|
||||
print_cpu_features_value ("cachesize_non_temporal_divisor",
|
||||
__rtld_global_ro_cachesize_non_temporal_divisor);
|
||||
+
|
||||
+ _dl_diagnostics_cpuid ();
|
||||
+}
|
||||
+
|
||||
+/* The following code implements a generic CPUID dumper that tries to
|
||||
+ gather CPUID data without knowing about CPUID implementation
|
||||
+ details. */
|
||||
+
|
||||
+/* Register arguments to CPUID. Multiple ECX subleaf values yielding
|
||||
+ the same result are combined, to shorten the output. Both
|
||||
+ identical matches (EAX to EDX are the same) and matches where EAX,
|
||||
+ EBX, EDX, and ECX are equal except in the lower byte, which must
|
||||
+ match the query ECX value. The latter is needed to compress ranges
|
||||
+ on CPUs which preserve the lowest byte in ECX if an unknown leaf is
|
||||
+ queried. */
|
||||
+struct cpuid_query
|
||||
+{
|
||||
+ unsigned int eax;
|
||||
+ unsigned ecx_first;
|
||||
+ unsigned ecx_last;
|
||||
+ bool ecx_preserves_query_byte;
|
||||
+};
|
||||
+
|
||||
+/* Single integer value that can be used for sorting/ordering
|
||||
+ comparisons. Uses Q->eax and Q->ecx_first only because ecx_last is
|
||||
+ always greater than the previous ecx_first value and less than the
|
||||
+ subsequent one. */
|
||||
+static inline unsigned long long int
|
||||
+cpuid_query_combined (struct cpuid_query *q)
|
||||
+{
|
||||
+ /* ecx can be -1 (that is, ~0U). If this happens, this the only ecx
|
||||
+ value for this eax value, so the ordering does not matter. */
|
||||
+ return ((unsigned long long int) q->eax << 32) | (unsigned int) q->ecx_first;
|
||||
+};
|
||||
+
|
||||
+/* Used for differential reporting of zero/non-zero values. */
|
||||
+static const struct cpuid_registers cpuid_registers_zero;
|
||||
+
|
||||
+/* Register arguments to CPUID paired with the results that came back. */
|
||||
+struct cpuid_query_result
|
||||
+{
|
||||
+ struct cpuid_query q;
|
||||
+ struct cpuid_registers r;
|
||||
+};
|
||||
+
|
||||
+/* During a first enumeration pass, we try to collect data for
|
||||
+ cpuid_initial_subleaf_limit subleaves per leaf/EAX value. If we run
|
||||
+ out of space, we try once more with applying the lower limit. */
|
||||
+enum { cpuid_main_leaf_limit = 128 };
|
||||
+enum { cpuid_initial_subleaf_limit = 512 };
|
||||
+enum { cpuid_subleaf_limit = 32 };
|
||||
+
|
||||
+/* Offset of the extended leaf area. */
|
||||
+enum {cpuid_extended_leaf_offset = 0x80000000 };
|
||||
+
|
||||
+/* Collected CPUID data. Everything is stored in a statically sized
|
||||
+ array that is sized so that the second pass will collect some data
|
||||
+ for all leaves, after the limit is applied. On the second pass,
|
||||
+ ecx_limit is set to cpuid_subleaf_limit. */
|
||||
+struct cpuid_collected_data
|
||||
+{
|
||||
+ unsigned int used;
|
||||
+ unsigned int ecx_limit;
|
||||
+ uint64_t xgetbv_ecx_0;
|
||||
+ struct cpuid_query_result qr[cpuid_main_leaf_limit
|
||||
+ * 2 * cpuid_subleaf_limit];
|
||||
+};
|
||||
+
|
||||
+/* Fill in the result of a CPUID query. Returns true if there is
|
||||
+ room, false if nothing could be stored. */
|
||||
+static bool
|
||||
+_dl_diagnostics_cpuid_store (struct cpuid_collected_data *ccd,
|
||||
+ unsigned eax, int ecx)
|
||||
+{
|
||||
+ if (ccd->used >= array_length (ccd->qr))
|
||||
+ return false;
|
||||
+
|
||||
+ /* Tentatively fill in the next value. */
|
||||
+ __cpuid_count (eax, ecx,
|
||||
+ ccd->qr[ccd->used].r.eax,
|
||||
+ ccd->qr[ccd->used].r.ebx,
|
||||
+ ccd->qr[ccd->used].r.ecx,
|
||||
+ ccd->qr[ccd->used].r.edx);
|
||||
+
|
||||
+ /* If the ECX subleaf is next subleaf after the previous one (for
|
||||
+ the same leaf), and the values are the same, merge the result
|
||||
+ with the already-stored one. Do this before skipping zero
|
||||
+ leaves, which avoids artifiacts for ECX == 256 queries. */
|
||||
+ if (ccd->used > 0
|
||||
+ && ccd->qr[ccd->used - 1].q.eax == eax
|
||||
+ && ccd->qr[ccd->used - 1].q.ecx_last + 1 == ecx)
|
||||
+ {
|
||||
+ /* Exact match of the previous result. Ignore the value of
|
||||
+ ecx_preserves_query_byte if this is a singleton range so far
|
||||
+ because we can treat ECX as fixed if the same value repeats. */
|
||||
+ if ((!ccd->qr[ccd->used - 1].q.ecx_preserves_query_byte
|
||||
+ || (ccd->qr[ccd->used - 1].q.ecx_first
|
||||
+ == ccd->qr[ccd->used - 1].q.ecx_last))
|
||||
+ && memcmp (&ccd->qr[ccd->used - 1].r, &ccd->qr[ccd->used].r,
|
||||
+ sizeof (ccd->qr[ccd->used].r)) == 0)
|
||||
+ {
|
||||
+ ccd->qr[ccd->used - 1].q.ecx_last = ecx;
|
||||
+ /* ECX is now fixed because the same value has been observed
|
||||
+ twice, even if we had a low-byte match before. */
|
||||
+ ccd->qr[ccd->used - 1].q.ecx_preserves_query_byte = false;
|
||||
+ return true;
|
||||
+ }
|
||||
+ /* Match except for the low byte in ECX, which must match the
|
||||
+ incoming ECX value. */
|
||||
+ if (ccd->qr[ccd->used - 1].q.ecx_preserves_query_byte
|
||||
+ && (ecx & 0xff) == (ccd->qr[ccd->used].r.ecx & 0xff)
|
||||
+ && ccd->qr[ccd->used].r.eax == ccd->qr[ccd->used - 1].r.eax
|
||||
+ && ccd->qr[ccd->used].r.ebx == ccd->qr[ccd->used - 1].r.ebx
|
||||
+ && ((ccd->qr[ccd->used].r.ecx & 0xffffff00)
|
||||
+ == (ccd->qr[ccd->used - 1].r.ecx & 0xffffff00))
|
||||
+ && ccd->qr[ccd->used].r.edx == ccd->qr[ccd->used - 1].r.edx)
|
||||
+ {
|
||||
+ ccd->qr[ccd->used - 1].q.ecx_last = ecx;
|
||||
+ return true;
|
||||
+ }
|
||||
+ }
|
||||
+
|
||||
+ /* Do not store zero results. All-zero values usually mean that the
|
||||
+ subleaf is unsupported. */
|
||||
+ if (ccd->qr[ccd->used].r.eax == 0
|
||||
+ && ccd->qr[ccd->used].r.ebx == 0
|
||||
+ && ccd->qr[ccd->used].r.ecx == 0
|
||||
+ && ccd->qr[ccd->used].r.edx == 0)
|
||||
+ return true;
|
||||
+
|
||||
+ /* The result needs to be stored. Fill in the query parameters and
|
||||
+ consume the storage. */
|
||||
+ ccd->qr[ccd->used].q.eax = eax;
|
||||
+ ccd->qr[ccd->used].q.ecx_first = ecx;
|
||||
+ ccd->qr[ccd->used].q.ecx_last = ecx;
|
||||
+ ccd->qr[ccd->used].q.ecx_preserves_query_byte
|
||||
+ = (ecx & 0xff) == (ccd->qr[ccd->used].r.ecx & 0xff);
|
||||
+ ++ccd->used;
|
||||
+ return true;
|
||||
+}
|
||||
+
|
||||
+/* Collected CPUID data into *CCD. If LIMIT, apply per-leaf limits to
|
||||
+ avoid exceeding the pre-allocated space. Return true if all data
|
||||
+ could be stored, false if the retrying without a limit is
|
||||
+ requested. */
|
||||
+static bool
|
||||
+_dl_diagnostics_cpuid_collect_1 (struct cpuid_collected_data *ccd, bool limit)
|
||||
+{
|
||||
+ ccd->used = 0;
|
||||
+ ccd->ecx_limit
|
||||
+ = (limit ? cpuid_subleaf_limit : cpuid_initial_subleaf_limit) - 1;
|
||||
+ _dl_diagnostics_cpuid_store (ccd, 0x00, 0x00);
|
||||
+ if (ccd->used == 0)
|
||||
+ /* CPUID reported all 0. Should not happen. */
|
||||
+ return true;
|
||||
+ unsigned int maximum_leaf = ccd->qr[0x00].r.eax;
|
||||
+ if (limit && maximum_leaf >= cpuid_main_leaf_limit)
|
||||
+ maximum_leaf = cpuid_main_leaf_limit - 1;
|
||||
+
|
||||
+ for (unsigned int eax = 1; eax <= maximum_leaf; ++eax)
|
||||
+ {
|
||||
+ for (unsigned int ecx = 0; ecx <= ccd->ecx_limit; ++ecx)
|
||||
+ if (!_dl_diagnostics_cpuid_store (ccd, eax, ecx))
|
||||
+ return false;
|
||||
+ }
|
||||
+
|
||||
+ if (!_dl_diagnostics_cpuid_store (ccd, cpuid_extended_leaf_offset, 0x00))
|
||||
+ return false;
|
||||
+ maximum_leaf = ccd->qr[ccd->used - 1].r.eax;
|
||||
+ if (maximum_leaf < cpuid_extended_leaf_offset)
|
||||
+ /* No extended CPUID information. */
|
||||
+ return true;
|
||||
+ if (limit
|
||||
+ && maximum_leaf - cpuid_extended_leaf_offset >= cpuid_main_leaf_limit)
|
||||
+ maximum_leaf = cpuid_extended_leaf_offset + cpuid_main_leaf_limit - 1;
|
||||
+ for (unsigned int eax = cpuid_extended_leaf_offset + 1;
|
||||
+ eax <= maximum_leaf; ++eax)
|
||||
+ {
|
||||
+ for (unsigned int ecx = 0; ecx <= ccd->ecx_limit; ++ecx)
|
||||
+ if (!_dl_diagnostics_cpuid_store (ccd, eax, ecx))
|
||||
+ return false;
|
||||
+ }
|
||||
+ return true;
|
||||
+}
|
||||
+
|
||||
+/* Call _dl_diagnostics_cpuid_collect_1 twice if necessary, the
|
||||
+ second time with the limit applied. */
|
||||
+static void
|
||||
+_dl_diagnostics_cpuid_collect (struct cpuid_collected_data *ccd)
|
||||
+{
|
||||
+ if (!_dl_diagnostics_cpuid_collect_1 (ccd, false))
|
||||
+ _dl_diagnostics_cpuid_collect_1 (ccd, true);
|
||||
+
|
||||
+ /* Re-use the result of the official feature probing here. */
|
||||
+ const struct cpu_features *cpu_features = __get_cpu_features ();
|
||||
+ if (CPU_FEATURES_CPU_P (cpu_features, OSXSAVE))
|
||||
+ {
|
||||
+ unsigned int xcrlow;
|
||||
+ unsigned int xcrhigh;
|
||||
+ asm ("xgetbv" : "=a" (xcrlow), "=d" (xcrhigh) : "c" (0));
|
||||
+ ccd->xgetbv_ecx_0 = ((uint64_t) xcrhigh << 32) + xcrlow;
|
||||
+ }
|
||||
+ else
|
||||
+ ccd->xgetbv_ecx_0 = 0;
|
||||
+}
|
||||
+
|
||||
+/* Print a CPUID register value (passed as REG_VALUE) if it differs
|
||||
+ from the expected REG_REFERENCE value. PROCESSOR_INDEX is the
|
||||
+ process sequence number (always starting at zero; not a kernel ID). */
|
||||
+static void
|
||||
+_dl_diagnostics_cpuid_print_reg (unsigned int processor_index,
|
||||
+ const struct cpuid_query *q,
|
||||
+ const char *reg_label, unsigned int reg_value,
|
||||
+ bool subleaf)
|
||||
+{
|
||||
+ if (subleaf)
|
||||
+ _dl_printf ("x86.processor[0x%x].cpuid.subleaf_eax[0x%x]"
|
||||
+ ".ecx[0x%x].%s=0x%x\n",
|
||||
+ processor_index, q->eax, q->ecx_first, reg_label, reg_value);
|
||||
+ else
|
||||
+ _dl_printf ("x86.processor[0x%x].cpuid.eax[0x%x].%s=0x%x\n",
|
||||
+ processor_index, q->eax, reg_label, reg_value);
|
||||
+}
|
||||
+
|
||||
+/* Print CPUID result values in *RESULT for the query in
|
||||
+ CCD->qr[CCD_IDX]. PROCESSOR_INDEX is the process sequence number
|
||||
+ (always starting at zero; not a kernel ID). */
|
||||
+static void
|
||||
+_dl_diagnostics_cpuid_print_query (unsigned int processor_index,
|
||||
+ struct cpuid_collected_data *ccd,
|
||||
+ unsigned int ccd_idx,
|
||||
+ const struct cpuid_registers *result)
|
||||
+{
|
||||
+ /* Treat this as a value if subleaves if ecx isn't zero (maybe
|
||||
+ within the [ecx_fist, ecx_last] range), or if eax matches its
|
||||
+ neighbors. If the range is [0, ecx_limit], then the subleaves
|
||||
+ are not distinct (independently of ecx_preserves_query_byte),
|
||||
+ so do not report them separately. */
|
||||
+ struct cpuid_query *q = &ccd->qr[ccd_idx].q;
|
||||
+ bool subleaf = (q->ecx_first > 0
|
||||
+ || (q->ecx_first != q->ecx_last
|
||||
+ && !(q->ecx_first == 0 && q->ecx_last == ccd->ecx_limit))
|
||||
+ || (ccd_idx > 0 && q->eax == ccd->qr[ccd_idx - 1].q.eax)
|
||||
+ || (ccd_idx + 1 < ccd->used
|
||||
+ && q->eax == ccd->qr[ccd_idx + 1].q.eax));
|
||||
+ _dl_diagnostics_cpuid_print_reg (processor_index, q, "eax", result->eax,
|
||||
+ subleaf);
|
||||
+ _dl_diagnostics_cpuid_print_reg (processor_index, q, "ebx", result->ebx,
|
||||
+ subleaf);
|
||||
+ _dl_diagnostics_cpuid_print_reg (processor_index, q, "ecx", result->ecx,
|
||||
+ subleaf);
|
||||
+ _dl_diagnostics_cpuid_print_reg (processor_index, q, "edx", result->edx,
|
||||
+ subleaf);
|
||||
+
|
||||
+ if (subleaf && q->ecx_first != q->ecx_last)
|
||||
+ {
|
||||
+ _dl_printf ("x86.processor[0x%x].cpuid.subleaf_eax[0x%x]"
|
||||
+ ".ecx[0x%x].until_ecx=0x%x\n",
|
||||
+ processor_index, q->eax, q->ecx_first, q->ecx_last);
|
||||
+ if (q->ecx_preserves_query_byte)
|
||||
+ _dl_printf ("x86.processor[0x%x].cpuid.subleaf_eax[0x%x]"
|
||||
+ ".ecx[0x%x].ecx_query_mask=0xff\n",
|
||||
+ processor_index, q->eax, q->ecx_first);
|
||||
+ }
|
||||
+}
|
||||
+
|
||||
+/* Perform differential reporting of the data in *CURRENT against
|
||||
+ *BASE. REQUESTED_CPU is the kernel CPU ID the thread was
|
||||
+ configured to run on, or -1 if no configuration was possible.
|
||||
+ PROCESSOR_INDEX is the process sequence number (always starting at
|
||||
+ zero; not a kernel ID). */
|
||||
+static void
|
||||
+_dl_diagnostics_cpuid_report (struct dl_iterate_cpu *dci,
|
||||
+ struct cpuid_collected_data *current,
|
||||
+ struct cpuid_collected_data *base)
|
||||
+{
|
||||
+ if (dci->requested_cpu >= 0)
|
||||
+ _dl_printf ("x86.processor[0x%x].requested=0x%x\n",
|
||||
+ dci->processor_index, dci->requested_cpu);
|
||||
+ if (dci->actual_cpu >= 0)
|
||||
+ _dl_printf ("x86.processor[0x%x].observed=0x%x\n",
|
||||
+ dci->processor_index, dci->actual_cpu);
|
||||
+ if (dci->actual_node >= 0)
|
||||
+ _dl_printf ("x86.processor[0x%x].observed_node=0x%x\n",
|
||||
+ dci->processor_index, dci->actual_node);
|
||||
+
|
||||
+ _dl_printf ("x86.processor[0x%x].cpuid_leaves=0x%x\n",
|
||||
+ dci->processor_index, current->used);
|
||||
+ _dl_printf ("x86.processor[0x%x].ecx_limit=0x%x\n",
|
||||
+ dci->processor_index, current->ecx_limit);
|
||||
+
|
||||
+ unsigned int base_idx = 0;
|
||||
+ for (unsigned int current_idx = 0; current_idx < current->used;
|
||||
+ ++current_idx)
|
||||
+ {
|
||||
+ /* Report missing data on the current CPU as 0. */
|
||||
+ unsigned long long int current_query
|
||||
+ = cpuid_query_combined (¤t->qr[current_idx].q);
|
||||
+ while (base_idx < base->used
|
||||
+ && cpuid_query_combined (&base->qr[base_idx].q) < current_query)
|
||||
+ {
|
||||
+ _dl_diagnostics_cpuid_print_query (dci->processor_index,
|
||||
+ base, base_idx,
|
||||
+ &cpuid_registers_zero);
|
||||
+ ++base_idx;
|
||||
+ }
|
||||
+
|
||||
+ if (base_idx < base->used
|
||||
+ && cpuid_query_combined (&base->qr[base_idx].q) == current_query)
|
||||
+ {
|
||||
+ _Static_assert (sizeof (struct cpuid_registers) == 4 * 4,
|
||||
+ "no padding in struct cpuid_registers");
|
||||
+ if (current->qr[current_idx].q.ecx_last
|
||||
+ != base->qr[base_idx].q.ecx_last
|
||||
+ || memcmp (¤t->qr[current_idx].r,
|
||||
+ &base->qr[base_idx].r,
|
||||
+ sizeof (struct cpuid_registers)) != 0)
|
||||
+ /* The ECX range or the values have changed. Show the
|
||||
+ new values. */
|
||||
+ _dl_diagnostics_cpuid_print_query (dci->processor_index,
|
||||
+ current, current_idx,
|
||||
+ ¤t->qr[current_idx].r);
|
||||
+ ++base_idx;
|
||||
+ }
|
||||
+ else
|
||||
+ /* Data is absent in the base reference. Report the new data. */
|
||||
+ _dl_diagnostics_cpuid_print_query (dci->processor_index,
|
||||
+ current, current_idx,
|
||||
+ ¤t->qr[current_idx].r);
|
||||
+ }
|
||||
+
|
||||
+ if (current->xgetbv_ecx_0 != base->xgetbv_ecx_0)
|
||||
+ {
|
||||
+ /* Re-use the 64-bit printing routine. */
|
||||
+ _dl_printf ("x86.processor[0x%x].", dci->processor_index);
|
||||
+ _dl_diagnostics_print_labeled_value ("xgetbv.ecx[0x0]",
|
||||
+ current->xgetbv_ecx_0);
|
||||
+ }
|
||||
+}
|
||||
+
|
||||
+static void
|
||||
+_dl_diagnostics_cpuid (void)
|
||||
+{
|
||||
+#if !HAS_CPUID
|
||||
+ /* CPUID is not supported, so there is nothing to dump. */
|
||||
+ if (__get_cpuid_max (0, 0) == 0)
|
||||
+ return;
|
||||
+#endif
|
||||
+
|
||||
+ struct dl_iterate_cpu dic;
|
||||
+ _dl_iterate_cpu_init (&dic);
|
||||
+
|
||||
+ /* Two copies of the data are used. Data is written to the index
|
||||
+ (dic.processor_index & 1). The previous version against which the
|
||||
+ data dump is reported is at index !(processor_index & 1). */
|
||||
+ struct cpuid_collected_data ccd[2];
|
||||
+
|
||||
+ /* The initial data is presumed to be all zero. Zero results are
|
||||
+ not recorded. */
|
||||
+ ccd[1].used = 0;
|
||||
+ ccd[1].xgetbv_ecx_0 = 0;
|
||||
+
|
||||
+ /* Run the CPUID probing on a specific CPU. There are expected
|
||||
+ differences for encoding core IDs and topology information in
|
||||
+ CPUID output, but some firmware/kernel bugs also may result in
|
||||
+ asymmetric data across CPUs in some cases. */
|
||||
+ while (_dl_iterate_cpu_next (&dic))
|
||||
+ {
|
||||
+ _dl_diagnostics_cpuid_collect (&ccd[dic.processor_index & 1]);
|
||||
+ _dl_diagnostics_cpuid_report
|
||||
+ (&dic, &ccd[dic.processor_index & 1],
|
||||
+ &ccd[!(dic.processor_index & 1)]);
|
||||
+ }
|
||||
}
|
@ -0,0 +1,262 @@
|
||||
commit 5653ccd847f0cd3a98906e44c97c71d68652d326
|
||||
Author: Florian Weimer <fweimer@redhat.com>
|
||||
Date: Mon Apr 8 16:48:55 2024 +0200
|
||||
|
||||
elf: Add CPU iteration support for future use in ld.so diagnostics
|
||||
|
||||
Reviewed-by: Szabolcs Nagy <szabolcs.nagy@arm.com>
|
||||
|
||||
diff --git a/elf/dl-iterate_cpu.h b/elf/dl-iterate_cpu.h
|
||||
new file mode 100644
|
||||
index 0000000000..60db167b13
|
||||
--- /dev/null
|
||||
+++ b/elf/dl-iterate_cpu.h
|
||||
@@ -0,0 +1,136 @@
|
||||
+/* Iterate over all CPUs, for CPU-specific diagnostics.
|
||||
+ Copyright (C) 2024 Free Software Foundation, Inc.
|
||||
+ This file is part of the GNU C Library.
|
||||
+
|
||||
+ The GNU C Library is free software; you can redistribute it and/or
|
||||
+ modify it under the terms of the GNU Lesser General Public
|
||||
+ License as published by the Free Software Foundation; either
|
||||
+ version 2.1 of the License, or (at your option) any later version.
|
||||
+
|
||||
+ The GNU C Library is distributed in the hope that it will be useful,
|
||||
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
+ Lesser General Public License for more details.
|
||||
+
|
||||
+ You should have received a copy of the GNU Lesser General Public
|
||||
+ License along with the GNU C Library; if not, see
|
||||
+ <https://www.gnu.org/licenses/>. */
|
||||
+
|
||||
+#ifndef DL_ITERATE_CPU_H
|
||||
+#define DL_ITERATE_CPU_H
|
||||
+
|
||||
+#include <dl-affinity.h>
|
||||
+#include <stdbool.h>
|
||||
+
|
||||
+struct dl_iterate_cpu
|
||||
+{
|
||||
+ /* Sequential iteration count, starting at 0. */
|
||||
+ unsigned int processor_index;
|
||||
+
|
||||
+ /* Requested CPU. Can be -1 if affinity could not be set. */
|
||||
+ int requested_cpu;
|
||||
+
|
||||
+ /* Observed current CPU. -1 if unavailable. */
|
||||
+ int actual_cpu;
|
||||
+
|
||||
+ /* Observed node ID for the CPU. -1 if unavailable. */
|
||||
+ int actual_node;
|
||||
+
|
||||
+ /* Internal fields to implement the iteration. */
|
||||
+
|
||||
+ /* Affinity as obtained by _dl_iterate_cpu_init, using
|
||||
+ _dl_getaffinity. Space for 8,192 CPUs. */
|
||||
+ unsigned long int mask_reference[8192 / sizeof (unsigned long int) / 8];
|
||||
+
|
||||
+ /* This array is used by _dl_setaffinity calls. */
|
||||
+ unsigned long int mask_request[8192 / sizeof (unsigned long int) / 8];
|
||||
+
|
||||
+ /* Return value from the initial _dl_getaffinity call. */
|
||||
+ int length_reference;
|
||||
+};
|
||||
+
|
||||
+static void
|
||||
+_dl_iterate_cpu_init (struct dl_iterate_cpu *dic)
|
||||
+{
|
||||
+ dic->length_reference
|
||||
+ = _dl_getaffinity (dic->mask_reference, sizeof (dic->mask_reference));
|
||||
+ /* Prepare for the first _dl_iterate_cpu_next call. */
|
||||
+ dic->processor_index = -1;
|
||||
+ dic->requested_cpu = -1;
|
||||
+}
|
||||
+
|
||||
+static bool
|
||||
+_dl_iterate_cpu_next (struct dl_iterate_cpu *dic)
|
||||
+{
|
||||
+ ++dic->processor_index;
|
||||
+
|
||||
+ if (dic->length_reference > 0)
|
||||
+ {
|
||||
+ /* Search for the next CPU to switch to. */
|
||||
+ while (true)
|
||||
+ {
|
||||
+ ++dic->requested_cpu;
|
||||
+
|
||||
+ /* Array index and bit number within the array. */
|
||||
+ unsigned int long_index
|
||||
+ = dic->requested_cpu / sizeof (unsigned long int) / 8;
|
||||
+ unsigned int bit_index
|
||||
+ = dic->requested_cpu % (sizeof (unsigned long int) * 8);
|
||||
+
|
||||
+ if (long_index * sizeof (unsigned long int) >= dic->length_reference)
|
||||
+ /* All possible CPUs have been covered. */
|
||||
+ return false;
|
||||
+
|
||||
+ unsigned long int bit = 1UL << bit_index;
|
||||
+ if (dic->mask_reference[long_index] & bit)
|
||||
+ {
|
||||
+ /* The CPU is available. Try to select it. */
|
||||
+ dic->mask_request[long_index] = bit;
|
||||
+ if (_dl_setaffinity (dic->mask_request,
|
||||
+ (long_index + 1)
|
||||
+ * sizeof (unsigned long int)) < 0)
|
||||
+ {
|
||||
+ /* Record that we could not perform a CPU request. */
|
||||
+ dic->length_reference = -1;
|
||||
+
|
||||
+ if (dic->processor_index > 0)
|
||||
+ /* We already reported something. There is no need to
|
||||
+ continue because the new data is probably not useful. */
|
||||
+ return false;
|
||||
+ }
|
||||
+
|
||||
+ /* Clear the bit in case the next iteration switches to the
|
||||
+ next long value. */
|
||||
+ dic->mask_request[long_index] = 0;
|
||||
+
|
||||
+ /* We found a CPU to run on. */
|
||||
+ break;
|
||||
+ }
|
||||
+ }
|
||||
+ }
|
||||
+ else
|
||||
+ {
|
||||
+ /* No way to set CPU affinity. Iterate just once. */
|
||||
+ if (dic->processor_index > 0)
|
||||
+ return false;
|
||||
+ }
|
||||
+
|
||||
+ /* Fill in the actual CPU information. CPU pinning may not actually
|
||||
+ be effective, depending on the container host. */
|
||||
+ unsigned int cpu, node;
|
||||
+ if (_dl_getcpu (&cpu, &node) < 0)
|
||||
+ {
|
||||
+ /* No CPU information available. */
|
||||
+ dic->actual_cpu = -1;
|
||||
+ dic->actual_node = -1;
|
||||
+ }
|
||||
+ else
|
||||
+ {
|
||||
+ dic->actual_cpu = cpu;
|
||||
+ dic->actual_node = node;
|
||||
+ }
|
||||
+
|
||||
+ return true;
|
||||
+}
|
||||
+
|
||||
+#endif /* DL_ITERATE_CPU_H */
|
||||
diff --git a/sysdeps/generic/dl-affinity.h b/sysdeps/generic/dl-affinity.h
|
||||
new file mode 100644
|
||||
index 0000000000..d117f737e9
|
||||
--- /dev/null
|
||||
+++ b/sysdeps/generic/dl-affinity.h
|
||||
@@ -0,0 +1,54 @@
|
||||
+/* CPU affinity handling for the dynamic linker. Stub version.
|
||||
+ Copyright (C) 2024 Free Software Foundation, Inc.
|
||||
+ This file is part of the GNU C Library.
|
||||
+
|
||||
+ The GNU C Library is free software; you can redistribute it and/or
|
||||
+ modify it under the terms of the GNU Lesser General Public
|
||||
+ License as published by the Free Software Foundation; either
|
||||
+ version 2.1 of the License, or (at your option) any later version.
|
||||
+
|
||||
+ The GNU C Library is distributed in the hope that it will be useful,
|
||||
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
+ Lesser General Public License for more details.
|
||||
+
|
||||
+ You should have received a copy of the GNU Lesser General Public
|
||||
+ License along with the GNU C Library; if not, see
|
||||
+ <https://www.gnu.org/licenses/>. */
|
||||
+
|
||||
+#ifndef DL_AFFINITY_H
|
||||
+#define DL_AFFINITY_H
|
||||
+
|
||||
+#include <errno.h>
|
||||
+#include <stddef.h>
|
||||
+
|
||||
+/* On success, write the current CPU ID to *CPU, and the current node
|
||||
+ ID to *NODE, and return 0. Return a negative error code on
|
||||
+ failure. */
|
||||
+static inline int
|
||||
+_dl_getcpu (unsigned int *cpu, unsigned int *node)
|
||||
+{
|
||||
+ return -ENOSYS;
|
||||
+}
|
||||
+
|
||||
+/* On success, write CPU ID affinity bits for the current thread to
|
||||
+ *BITS, which must be SIZE bytes long, and return the number of
|
||||
+ bytes updated, a multiple of sizeof (unsigned long int). On
|
||||
+ failure, return a negative error code. */
|
||||
+static int
|
||||
+_dl_getaffinity (unsigned long int *bits, size_t size)
|
||||
+{
|
||||
+ return -ENOSYS;
|
||||
+}
|
||||
+
|
||||
+/* Set the CPU affinity mask for the current thread to *BITS, using
|
||||
+ the SIZE bytes from that array, which should be a multiple of
|
||||
+ sizeof (unsigned long int). Return 0 on success, and a negative
|
||||
+ error code on failure. */
|
||||
+static int
|
||||
+_dl_setaffinity (const unsigned long int *bits, size_t size)
|
||||
+{
|
||||
+ return -ENOSYS;
|
||||
+}
|
||||
+
|
||||
+#endif /* DL_AFFINITY_H */
|
||||
diff --git a/sysdeps/unix/sysv/linux/dl-affinity.h b/sysdeps/unix/sysv/linux/dl-affinity.h
|
||||
new file mode 100644
|
||||
index 0000000000..bbfede7750
|
||||
--- /dev/null
|
||||
+++ b/sysdeps/unix/sysv/linux/dl-affinity.h
|
||||
@@ -0,0 +1,46 @@
|
||||
+/* CPU affinity handling for the dynamic linker. Linux version.
|
||||
+ Copyright (C) 2024 Free Software Foundation, Inc.
|
||||
+ This file is part of the GNU C Library.
|
||||
+
|
||||
+ The GNU C Library is free software; you can redistribute it and/or
|
||||
+ modify it under the terms of the GNU Lesser General Public
|
||||
+ License as published by the Free Software Foundation; either
|
||||
+ version 2.1 of the License, or (at your option) any later version.
|
||||
+
|
||||
+ The GNU C Library is distributed in the hope that it will be useful,
|
||||
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
+ Lesser General Public License for more details.
|
||||
+
|
||||
+ You should have received a copy of the GNU Lesser General Public
|
||||
+ License along with the GNU C Library; if not, see
|
||||
+ <https://www.gnu.org/licenses/>. */
|
||||
+
|
||||
+/* See sysdeps/generic/dl-affinity.h for documentation of these interfaces. */
|
||||
+
|
||||
+#ifndef DL_AFFINITY_H
|
||||
+#define DL_AFFINITY_H
|
||||
+
|
||||
+#include <sysdep.h>
|
||||
+#include <stddef.h>
|
||||
+#include <unistd.h>
|
||||
+
|
||||
+static inline int
|
||||
+_dl_getcpu (unsigned int *cpu, unsigned int *node)
|
||||
+{
|
||||
+ return INTERNAL_SYSCALL_CALL (getcpu, cpu, node);
|
||||
+}
|
||||
+
|
||||
+static int
|
||||
+_dl_getaffinity (unsigned long int *bits, size_t size)
|
||||
+{
|
||||
+ return INTERNAL_SYSCALL_CALL (sched_getaffinity, /* TID */ 0, size, bits);
|
||||
+}
|
||||
+
|
||||
+static int
|
||||
+_dl_setaffinity (const unsigned long int *bits, size_t size)
|
||||
+{
|
||||
+ return INTERNAL_SYSCALL_CALL (sched_setaffinity, /* TID */ 0, size, bits);
|
||||
+}
|
||||
+
|
||||
+#endif /* DL_AFFINITY_H */
|
@ -0,0 +1,140 @@
|
||||
commit 6a04404521ac4119ae36827eeb288ea84eee7cf6
|
||||
Author: Florian Weimer <fweimer@redhat.com>
|
||||
Date: Sat Feb 17 09:17:04 2024 +0100
|
||||
|
||||
Linux: Switch back to assembly syscall wrapper for prctl (bug 29770)
|
||||
|
||||
Commit ff026950e280bc3e9487b41b460fb31bc5b57721 ("Add a C wrapper for
|
||||
prctl [BZ #25896]") replaced the assembler wrapper with a C function.
|
||||
However, on powerpc64le-linux-gnu, the C variadic function
|
||||
implementation requires extra work in the caller to set up the
|
||||
parameter save area. Calling a function that needs a parameter save
|
||||
area without one (because the prototype used indicates the function is
|
||||
not variadic) corrupts the caller's stack. The Linux manual pages
|
||||
project documents prctl as a non-variadic function. This has resulted
|
||||
in various projects over the years using non-variadic prototypes,
|
||||
including the sanitizer libraries in LLVm and GCC (GCC PR 113728).
|
||||
|
||||
This commit switches back to the assembler implementation on most
|
||||
targets and only keeps the C implementation for x86-64 x32.
|
||||
|
||||
Also add the __prctl_time64 alias from commit
|
||||
b39ffab860cd743a82c91946619f1b8158b0b65e ("Linux: Add time64 alias for
|
||||
prctl") to sysdeps/unix/sysv/linux/syscalls.list; it was not yet
|
||||
present in commit ff026950e280bc3e9487b41b460fb31bc5b57721.
|
||||
|
||||
This restores the old ABI on powerpc64le-linux-gnu, thus fixing
|
||||
bug 29770.
|
||||
|
||||
Reviewed-By: Simon Chopin <simon.chopin@canonical.com>
|
||||
|
||||
Resolved conflicts:
|
||||
sysdeps/unix/sysv/linux/syscalls.list
|
||||
sysdeps/unix/sysv/linux/x86_64/x32/prctl.c
|
||||
|
||||
diff -Nrup a/sysdeps/unix/sysv/linux/prctl.c b/sysdeps/unix/sysv/linux/prctl.c
|
||||
--- a/sysdeps/unix/sysv/linux/prctl.c 2021-08-01 21:33:43.000000000 -0400
|
||||
+++ b/sysdeps/unix/sysv/linux/prctl.c 1969-12-31 19:00:00.000000000 -0500
|
||||
@@ -1,45 +0,0 @@
|
||||
-/* prctl - Linux specific syscall.
|
||||
- Copyright (C) 2020-2021 Free Software Foundation, Inc.
|
||||
- This file is part of the GNU C Library.
|
||||
-
|
||||
- The GNU C Library is free software; you can redistribute it and/or
|
||||
- modify it under the terms of the GNU Lesser General Public
|
||||
- License as published by the Free Software Foundation; either
|
||||
- version 2.1 of the License, or (at your option) any later version.
|
||||
-
|
||||
- The GNU C Library is distributed in the hope that it will be useful,
|
||||
- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
- Lesser General Public License for more details.
|
||||
-
|
||||
- You should have received a copy of the GNU Lesser General Public
|
||||
- License along with the GNU C Library; if not, see
|
||||
- <https://www.gnu.org/licenses/>. */
|
||||
-
|
||||
-#include <sysdep.h>
|
||||
-#include <stdarg.h>
|
||||
-#include <sys/prctl.h>
|
||||
-
|
||||
-/* Unconditionally read all potential arguments. This may pass
|
||||
- garbage values to the kernel, but avoids the need for teaching
|
||||
- glibc the argument counts of individual options (including ones
|
||||
- that are added to the kernel in the future). */
|
||||
-
|
||||
-int
|
||||
-__prctl (int option, ...)
|
||||
-{
|
||||
- va_list arg;
|
||||
- va_start (arg, option);
|
||||
- unsigned long int arg2 = va_arg (arg, unsigned long int);
|
||||
- unsigned long int arg3 = va_arg (arg, unsigned long int);
|
||||
- unsigned long int arg4 = va_arg (arg, unsigned long int);
|
||||
- unsigned long int arg5 = va_arg (arg, unsigned long int);
|
||||
- va_end (arg);
|
||||
- return INLINE_SYSCALL_CALL (prctl, option, arg2, arg3, arg4, arg5);
|
||||
-}
|
||||
-
|
||||
-libc_hidden_def (__prctl)
|
||||
-weak_alias (__prctl, prctl)
|
||||
-#if __TIMESIZE != 64
|
||||
-weak_alias (__prctl, __prctl_time64)
|
||||
-#endif
|
||||
diff -Nrup a/sysdeps/unix/sysv/linux/syscalls.list b/sysdeps/unix/sysv/linux/syscalls.list
|
||||
--- a/sysdeps/unix/sysv/linux/syscalls.list 2021-08-01 21:33:43.000000000 -0400
|
||||
+++ b/sysdeps/unix/sysv/linux/syscalls.list 2024-02-27 14:33:01.594782897 -0500
|
||||
@@ -41,6 +41,7 @@ munlockall - munlockall i: munlockall
|
||||
nfsservctl EXTRA nfsservctl i:ipp __compat_nfsservctl nfsservctl@GLIBC_2.0:GLIBC_2.28
|
||||
pipe - pipe i:f __pipe pipe
|
||||
pipe2 - pipe2 i:fi __pipe2 pipe2
|
||||
+prctl EXTRA prctl i:iiiii __prctl prctl __prctl_time64
|
||||
pivot_root EXTRA pivot_root i:ss pivot_root
|
||||
query_module EXTRA query_module i:sipip __compat_query_module query_module@GLIBC_2.0:GLIBC_2.23
|
||||
quotactl EXTRA quotactl i:isip quotactl
|
||||
diff -Nrup a/sysdeps/unix/sysv/linux/x86_64/x32/prctl.c b/sysdeps/unix/sysv/linux/x86_64/x32/prctl.c
|
||||
--- a/sysdeps/unix/sysv/linux/x86_64/x32/prctl.c 1969-12-31 19:00:00.000000000 -0500
|
||||
+++ b/sysdeps/unix/sysv/linux/x86_64/x32/prctl.c 2024-02-27 14:35:03.388602623 -0500
|
||||
@@ -0,0 +1,42 @@
|
||||
+/* prctl - Linux specific syscall. x86-64 x32 version.
|
||||
+ Copyright (C) 2020-2021 Free Software Foundation, Inc.
|
||||
+ This file is part of the GNU C Library.
|
||||
+
|
||||
+ The GNU C Library is free software; you can redistribute it and/or
|
||||
+ modify it under the terms of the GNU Lesser General Public
|
||||
+ License as published by the Free Software Foundation; either
|
||||
+ version 2.1 of the License, or (at your option) any later version.
|
||||
+
|
||||
+ The GNU C Library is distributed in the hope that it will be useful,
|
||||
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
+ Lesser General Public License for more details.
|
||||
+
|
||||
+ You should have received a copy of the GNU Lesser General Public
|
||||
+ License along with the GNU C Library; if not, see
|
||||
+ <https://www.gnu.org/licenses/>. */
|
||||
+
|
||||
+#include <sysdep.h>
|
||||
+#include <stdarg.h>
|
||||
+#include <sys/prctl.h>
|
||||
+
|
||||
+/* Unconditionally read all potential arguments. This may pass
|
||||
+ garbage values to the kernel, but avoids the need for teaching
|
||||
+ glibc the argument counts of individual options (including ones
|
||||
+ that are added to the kernel in the future). */
|
||||
+
|
||||
+int
|
||||
+__prctl (int option, ...)
|
||||
+{
|
||||
+ va_list arg;
|
||||
+ va_start (arg, option);
|
||||
+ unsigned long int arg2 = va_arg (arg, unsigned long int);
|
||||
+ unsigned long int arg3 = va_arg (arg, unsigned long int);
|
||||
+ unsigned long int arg4 = va_arg (arg, unsigned long int);
|
||||
+ unsigned long int arg5 = va_arg (arg, unsigned long int);
|
||||
+ va_end (arg);
|
||||
+ return INLINE_SYSCALL_CALL (prctl, option, arg2, arg3, arg4, arg5);
|
||||
+}
|
||||
+
|
||||
+libc_hidden_def (__prctl)
|
||||
+weak_alias (__prctl, prctl)
|
@ -0,0 +1,88 @@
|
||||
From dfb05f8e704edac70db38c4c8ee700769d91a413 Mon Sep 17 00:00:00 2001
|
||||
From: "H.J. Lu" <hjl.tools@gmail.com>
|
||||
Date: Fri, 16 Feb 2024 07:17:10 -0800
|
||||
Subject: [PATCH] x86-64: Save APX registers in ld.so trampoline
|
||||
Content-type: text/plain; charset=UTF-8
|
||||
|
||||
Add APX registers to STATE_SAVE_MASK so that APX registers are saved in
|
||||
ld.so trampoline. This fixes BZ #31371.
|
||||
|
||||
Also update STATE_SAVE_OFFSET and STATE_SAVE_MASK for i386 which will
|
||||
be used by i386 _dl_tlsdesc_dynamic.
|
||||
Reviewed-by: Noah Goldstein <goldstein.w.n@gmail.com>
|
||||
|
||||
Conflicts:
|
||||
sysdeps/x86/sysdep.h
|
||||
(rebased for context and line numbers)
|
||||
---
|
||||
sysdeps/x86/sysdep.h | 52 +++++++++++++++++++++++++++++++++++++++-----
|
||||
1 file changed, 46 insertions(+), 6 deletions(-)
|
||||
|
||||
diff --git a/sysdeps/x86/sysdep.h b/sysdeps/x86/sysdep.h
|
||||
index 85d0a8c943..837fd28734 100644
|
||||
--- a/sysdeps/x86/sysdep.h
|
||||
+++ b/sysdeps/x86/sysdep.h
|
||||
@@ -48,14 +48,54 @@
|
||||
# define SHSTK_ENABLED 0
|
||||
#endif
|
||||
|
||||
+/* The extended state feature IDs in the state component bitmap. */
|
||||
+#define X86_XSTATE_X87_ID 0
|
||||
+#define X86_XSTATE_SSE_ID 1
|
||||
+#define X86_XSTATE_AVX_ID 2
|
||||
+#define X86_XSTATE_BNDREGS_ID 3
|
||||
+#define X86_XSTATE_BNDCFG_ID 4
|
||||
+#define X86_XSTATE_K_ID 5
|
||||
+#define X86_XSTATE_ZMM_H_ID 6
|
||||
+#define X86_XSTATE_ZMM_ID 7
|
||||
+#define X86_XSTATE_PKRU_ID 9
|
||||
+#define X86_XSTATE_TILECFG_ID 17
|
||||
+#define X86_XSTATE_TILEDATA_ID 18
|
||||
+#define X86_XSTATE_APX_F_ID 19
|
||||
+
|
||||
+#ifdef __x86_64__
|
||||
/* Offset for fxsave/xsave area used by _dl_runtime_resolve. Also need
|
||||
space to preserve RCX, RDX, RSI, RDI, R8, R9 and RAX. It must be
|
||||
- aligned to 16 bytes for fxsave and 64 bytes for xsave. */
|
||||
-#define STATE_SAVE_OFFSET (8 * 7 + 8)
|
||||
-
|
||||
-/* Save SSE, AVX, AVX512, mask and bound registers. */
|
||||
-#define STATE_SAVE_MASK \
|
||||
- ((1 << 1) | (1 << 2) | (1 << 3) | (1 << 5) | (1 << 6) | (1 << 7))
|
||||
+ aligned to 16 bytes for fxsave and 64 bytes for xsave.
|
||||
+
|
||||
+ NB: Is is non-zero because of the 128-byte red-zone. Some registers
|
||||
+ are saved on stack without adjusting stack pointer first. When we
|
||||
+ update stack pointer to allocate more space, we need to take the
|
||||
+ red-zone into account. */
|
||||
+# define STATE_SAVE_OFFSET (8 * 7 + 8)
|
||||
+
|
||||
+/* Save SSE, AVX, AVX512, mask, bound and APX registers. Bound and APX
|
||||
+ registers are mutually exclusive. */
|
||||
+# define STATE_SAVE_MASK \
|
||||
+ ((1 << X86_XSTATE_SSE_ID) \
|
||||
+ | (1 << X86_XSTATE_AVX_ID) \
|
||||
+ | (1 << X86_XSTATE_BNDREGS_ID) \
|
||||
+ | (1 << X86_XSTATE_K_ID) \
|
||||
+ | (1 << X86_XSTATE_ZMM_H_ID) \
|
||||
+ | (1 << X86_XSTATE_ZMM_ID) \
|
||||
+ | (1 << X86_XSTATE_APX_F_ID))
|
||||
+#else
|
||||
+/* Offset for fxsave/xsave area used by _dl_tlsdesc_dynamic. Since i386
|
||||
+ doesn't have red-zone, use 0 here. */
|
||||
+# define STATE_SAVE_OFFSET 0
|
||||
+
|
||||
+/* Save SSE, AVX, AXV512, mask and bound registers. */
|
||||
+# define STATE_SAVE_MASK \
|
||||
+ ((1 << X86_XSTATE_SSE_ID) \
|
||||
+ | (1 << X86_XSTATE_AVX_ID) \
|
||||
+ | (1 << X86_XSTATE_BNDREGS_ID) \
|
||||
+ | (1 << X86_XSTATE_K_ID) \
|
||||
+ | (1 << X86_XSTATE_ZMM_H_ID))
|
||||
+#endif
|
||||
|
||||
/* Constants for bits in __x86_string_control: */
|
||||
|
||||
--
|
||||
2.39.3
|
||||
|
@ -0,0 +1,109 @@
|
||||
commit 127fc56152347d73cb7c1c283e60e1cb1f15e9f9
|
||||
Author: sayan paul <saypaul@redhat.com>
|
||||
Date: Wed May 29 15:31:04 2024 +0530
|
||||
|
||||
malloc: New test to check malloc alternate path using memory obstruction
|
||||
|
||||
The test aims to ensure that malloc uses the alternate path to
|
||||
allocate memory when sbrk() or brk() fails.To achieve this,
|
||||
the test first creates an obstruction at current program break,
|
||||
tests that obstruction with a failing sbrk(), then checks if malloc
|
||||
is still returning a valid ptr thus inferring that malloc() used
|
||||
mmap() instead of brk() or sbrk() to allocate the memory.
|
||||
Reviewed-by: Arjun Shankar <arjun@redhat.com>
|
||||
Reviewed-by: Zack Weinberg <zack@owlfolio.org>
|
||||
|
||||
Conflicts:
|
||||
malloc/Makefile
|
||||
(usual tests conflict)
|
||||
|
||||
diff --git a/malloc/Makefile b/malloc/Makefile
|
||||
index 9b70831d383cb522..cb4e027d28b179f0 100644
|
||||
--- a/malloc/Makefile
|
||||
+++ b/malloc/Makefile
|
||||
@@ -43,6 +43,7 @@ tests := mallocbug tst-malloc tst-valloc tst-calloc tst-obstack \
|
||||
tst-tcfree1 tst-tcfree2 tst-tcfree3 \
|
||||
tst-safe-linking \
|
||||
tst-mallocalign1 \
|
||||
+ tst-malloc-alternate-path \
|
||||
|
||||
tests-static := \
|
||||
tst-interpose-static-nothread \
|
||||
diff --git a/malloc/tst-malloc-alternate-path.c b/malloc/tst-malloc-alternate-path.c
|
||||
new file mode 100644
|
||||
index 0000000000000000..43ae916815d6ff47
|
||||
--- /dev/null
|
||||
+++ b/malloc/tst-malloc-alternate-path.c
|
||||
@@ -0,0 +1,72 @@
|
||||
+/* Test that malloc uses mmap when sbrk or brk fails.
|
||||
+ Copyright (C) 2024 Free Software Foundation, Inc.
|
||||
+ This file is part of the GNU C Library.
|
||||
+
|
||||
+ The GNU C Library is free software; you can redistribute it and/or
|
||||
+ modify it under the terms of the GNU Lesser General Public
|
||||
+ License as published by the Free Software Foundation; either
|
||||
+ version 2.1 of the License, or (at your option) any later version.
|
||||
+
|
||||
+ The GNU C Library is distributed in the hope that it will be useful,
|
||||
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
+ Lesser General Public License for more details.
|
||||
+
|
||||
+ You should have received a copy of the GNU Lesser General Public
|
||||
+ License along with the GNU C Library; if not, see
|
||||
+ <https://www.gnu.org/licenses/>. */
|
||||
+
|
||||
+/* This test sets up an obstruction to ensure that brk/sbrk fails to
|
||||
+ grow the heap, then verifies that malloc uses mmap for allocations
|
||||
+ instead. */
|
||||
+
|
||||
+#include <unistd.h>
|
||||
+#include <sys/mman.h>
|
||||
+#include <stdlib.h>
|
||||
+#include <libc-pointer-arith.h>
|
||||
+#include <support/check.h>
|
||||
+#include <stddef.h>
|
||||
+#include <stdalign.h>
|
||||
+
|
||||
+#define LARGE_SIZE (10 * (1 << 20)) // 10 MB
|
||||
+static long page_size;
|
||||
+
|
||||
+static int
|
||||
+do_test (void)
|
||||
+{
|
||||
+ /* Get current program break. */
|
||||
+ void *current_brk = sbrk (0);
|
||||
+
|
||||
+ page_size = sysconf (_SC_PAGESIZE);
|
||||
+
|
||||
+ /* Round up to the next page boundary. */
|
||||
+ void *next_page_boundary = PTR_ALIGN_UP (current_brk, page_size);
|
||||
+
|
||||
+ /* Place a mapping using mmap at the next page boundary. */
|
||||
+ void *obstruction_addr
|
||||
+ = mmap (next_page_boundary, page_size, PROT_READ,
|
||||
+ MAP_PRIVATE | MAP_ANONYMOUS | MAP_FIXED, -1, 0);
|
||||
+
|
||||
+ /* Check if memory obstruction is set up correctly. */
|
||||
+ TEST_VERIFY_EXIT (obstruction_addr == next_page_boundary);
|
||||
+
|
||||
+ /* Try to extend the heap beyond the obstruction using sbrk */
|
||||
+ int *ptr = sbrk (page_size);
|
||||
+ TEST_VERIFY_EXIT (ptr == (void *) -1);
|
||||
+
|
||||
+ /* Attempt multiple small allocations using malloc. */
|
||||
+ for (size_t i = 0; i < page_size / alignof (max_align_t); i++)
|
||||
+ {
|
||||
+ TEST_VERIFY (malloc (alignof (max_align_t)));
|
||||
+ }
|
||||
+
|
||||
+ /* Attempt to allocate a large block of memory using malloc. */
|
||||
+ TEST_VERIFY_EXIT (malloc (LARGE_SIZE) != NULL);
|
||||
+
|
||||
+ /* Check if malloc changed current program break. */
|
||||
+ TEST_VERIFY_EXIT (current_brk == sbrk (0));
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+#include <support/test-driver.c>
|
@ -0,0 +1,26 @@
|
||||
From a07e000e82cb71238259e674529c37c12dc7d423 Mon Sep 17 00:00:00 2001
|
||||
From: DJ Delorie <dj@redhat.com>
|
||||
Date: Fri, 10 May 2024 17:34:29 -0400
|
||||
Subject: manual: add dup3
|
||||
|
||||
Reviewed-by: Florian Weimer <fweimer@redhat.com>
|
||||
|
||||
diff --git a/manual/llio.texi b/manual/llio.texi
|
||||
index fae49d1433..fe1807a849 100644
|
||||
--- a/manual/llio.texi
|
||||
+++ b/manual/llio.texi
|
||||
@@ -3415,6 +3415,14 @@ middle of calling @code{dup2} at which @var{new} is closed and not yet a
|
||||
duplicate of @var{old}.
|
||||
@end deftypefun
|
||||
|
||||
+@deftypefun int dup3 (int @var{old}, int @var{new}, int @var{flags})
|
||||
+@standards{Linux, unistd.h}
|
||||
+@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
|
||||
+This function is the same as @code{dup2} but creates the new
|
||||
+descriptor as if it had been opened with flags @var{flags}. The only
|
||||
+allowed flag is @code{O_CLOEXEC}.
|
||||
+@end deftypefun
|
||||
+
|
||||
@deftypevr Macro int F_DUPFD
|
||||
@standards{POSIX.1, fcntl.h}
|
||||
This macro is used as the @var{command} argument to @code{fcntl}, to
|
@ -0,0 +1,341 @@
|
||||
From 6c0be74305745c8f78bcfb69442c8c379459d99b Mon Sep 17 00:00:00 2001
|
||||
From: DJ Delorie <dj@redhat.com>
|
||||
Date: Mon, 8 Jul 2024 17:52:15 -0400
|
||||
Subject: manual: add syscalls
|
||||
|
||||
The purpose of this patch is to add some system calls that (1) aren't
|
||||
otherwise documented, and (2) are merely redirected to the kernel, so
|
||||
can refer to their documentation; and define a standard way of doing
|
||||
so in the future. A more detailed explaination of how system calls
|
||||
are wrapped is added along with reference to the Linux Man-Pages
|
||||
project.
|
||||
|
||||
Default version of man-pages is in configure.ac but can be overridden
|
||||
by --with-man-pages=X.Y
|
||||
|
||||
Reviewed-by: Alejandro Colomar <alx@kernel.org>
|
||||
|
||||
diff --git a/config.make.in b/config.make.in
|
||||
index 55e8b7563b..36096881b7 100644
|
||||
--- a/config.make.in
|
||||
+++ b/config.make.in
|
||||
@@ -101,6 +101,7 @@ build-hardcoded-path-in-tests= @hardcode
|
||||
build-pt-chown = @build_pt_chown@
|
||||
have-tunables = @have_tunables@
|
||||
pthread-in-libc = @pthread_in_libc@
|
||||
+man-pages-version = @man_pages_version@
|
||||
|
||||
# Build tools.
|
||||
CC = @CC@
|
||||
diff --git a/configure b/configure
|
||||
index 55e8b7563b..36096881b7 100644
|
||||
--- a/configure 2024-07-17 15:45:55.033649362 -0400
|
||||
+++ b/configure 2024-07-17 15:47:44.281886629 -0400
|
||||
@@ -681,6 +681,7 @@ force_install
|
||||
bindnow
|
||||
hardcoded_path_in_tests
|
||||
enable_timezone_tools
|
||||
+man_pages_version
|
||||
rtld_early_cflags
|
||||
extra_nonshared_cflags
|
||||
use_default_link
|
||||
@@ -763,6 +764,7 @@ with_headers
|
||||
with_default_link
|
||||
with_nonshared_cflags
|
||||
with_rtld_early_cflags
|
||||
+with_man_pages
|
||||
enable_sanity_checks
|
||||
enable_shared
|
||||
enable_profile
|
||||
@@ -1483,6 +1485,8 @@ Optional Packages:
|
||||
build nonshared libraries with additional CFLAGS
|
||||
--with-rtld-early-cflags=CFLAGS
|
||||
build early initialization with additional CFLAGS
|
||||
+ --with-man-pages=VERSION
|
||||
+ tie manual to a specific man-pages version
|
||||
--with-cpu=CPU select code for CPU variant
|
||||
|
||||
Some influential environment variables:
|
||||
@@ -3396,6 +3400,15 @@ fi
|
||||
|
||||
|
||||
|
||||
+man_pages_version=6.9.1
|
||||
+
|
||||
+
|
||||
+# Check whether --with-man-pages was given.
|
||||
+if test "${with_man_pages+set}" = set; then :
|
||||
+ withval=$with_man_pages; man_pages_version=$withval
|
||||
+fi
|
||||
+
|
||||
+
|
||||
|
||||
# Check whether --enable-sanity-checks was given.
|
||||
if test "${enable_sanity_checks+set}" = set; then :
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index e48957f318..9cbc0bf68f 100644
|
||||
--- a/configure.ac 2024-07-17 15:45:52.181538742 -0400
|
||||
+++ b/configure.ac 2024-07-17 15:46:29.885001095 -0400
|
||||
@@ -169,6 +169,15 @@ AC_ARG_WITH([rtld-early-cflags],
|
||||
[rtld_early_cflags=])
|
||||
AC_SUBST(rtld_early_cflags)
|
||||
|
||||
+man_pages_version=6.9.1
|
||||
+
|
||||
+AC_ARG_WITH([man-pages],
|
||||
+ AS_HELP_STRING([--with-man-pages=VERSION],
|
||||
+ [tie manual to a specific man-pages version]),
|
||||
+ [man_pages_version=$withval],
|
||||
+ [])
|
||||
+AC_SUBST(man_pages_version)
|
||||
+
|
||||
AC_ARG_ENABLE([sanity-checks],
|
||||
AS_HELP_STRING([--disable-sanity-checks],
|
||||
[really do not use threads (should not be used except in special situations) @<:@default=yes@:>@]),
|
||||
diff --git a/manual/Makefile b/manual/Makefile
|
||||
index b5fda4a7ae..a6c05db540 100644
|
||||
--- a/manual/Makefile
|
||||
+++ b/manual/Makefile
|
||||
@@ -117,6 +117,7 @@ $(objpfx)stamp-pkgvers: $(common-objpfx)config.make
|
||||
echo "@set PKGVERSION_DEFAULT" >> $(objpfx)pkgvers-tmp; \
|
||||
fi
|
||||
echo "@set REPORT_BUGS_TO $(REPORT_BUGS_TEXI)" >> $(objpfx)pkgvers-tmp
|
||||
+ echo "@set man_pages_version $(man-pages-version)" >> $(objpfx)pkgvers-tmp; \
|
||||
echo "@end ifclear" >> $(objpfx)pkgvers-tmp
|
||||
$(move-if-change) $(objpfx)pkgvers-tmp $(objpfx)pkgvers.texi
|
||||
touch $@
|
||||
diff --git a/manual/intro.texi b/manual/intro.texi
|
||||
index ff43c5a7fb..879c1b38d9 100644
|
||||
--- a/manual/intro.texi
|
||||
+++ b/manual/intro.texi
|
||||
@@ -85,6 +85,7 @@ standards each function or symbol comes from.
|
||||
* Berkeley Unix:: BSD and SunOS.
|
||||
* SVID:: The System V Interface Description.
|
||||
* XPG:: The X/Open Portability Guide.
|
||||
+* Linux Kernel:: The Linux kernel.
|
||||
@end menu
|
||||
|
||||
@node ISO C, POSIX, , Standards and Portability
|
||||
@@ -941,7 +942,7 @@ inter-process communication and shared memory, the @code{hsearch} and
|
||||
@code{drand48} families of functions, @code{fmtmsg} and several of the
|
||||
mathematical functions.
|
||||
|
||||
-@node XPG, , SVID, Standards and Portability
|
||||
+@node XPG, Linux Kernel, SVID, Standards and Portability
|
||||
@subsection XPG (The X/Open Portability Guide)
|
||||
|
||||
The X/Open Portability Guide, published by the X/Open Company, Ltd., is
|
||||
@@ -960,6 +961,20 @@ fulfilling the XPG standard with the Unix extensions is a
|
||||
precondition for getting the Unix brand chances are good that the
|
||||
functionality is available on commercial systems.
|
||||
|
||||
+@node Linux Kernel, , XPG, Standards and Portability
|
||||
+@subsection Linux (The Linux Kernel)
|
||||
+
|
||||
+@Theglibc{} includes by reference the Linux man-pages
|
||||
+@value{man_pages_version} documentation to document the listed
|
||||
+syscalls for the Linux kernel. For reference purposes only the latest
|
||||
+@uref{https://www.kernel.org/doc/man-pages/,Linux man-pages Project}
|
||||
+documentation can be accessed from the
|
||||
+@uref{https://www.kernel.org,Linux kernel} website. Where the syscall
|
||||
+has more specific documentation in this manual that more specific
|
||||
+documentation is considered authoritative.
|
||||
+
|
||||
+Additional details on the Linux system call interface can be found in
|
||||
+@xref{System Calls}.
|
||||
|
||||
@node Using the Library, Roadmap to the Manual, Standards and Portability, Introduction
|
||||
@section Using the Library
|
||||
diff --git a/manual/llio.texi b/manual/llio.texi
|
||||
index 78c7c79913..6f0a48609b 100644
|
||||
--- a/manual/llio.texi
|
||||
+++ b/manual/llio.texi
|
||||
@@ -65,6 +65,7 @@ directly.)
|
||||
* Interrupt Input:: Getting an asynchronous signal when
|
||||
input arrives.
|
||||
* IOCTLs:: Generic I/O Control operations.
|
||||
+* Other Low-Level I/O APIs:: Other low-level-I/O-related functions.
|
||||
@end menu
|
||||
|
||||
|
||||
@@ -2324,6 +2325,8 @@ file descriptor, or until the timeout period expires.
|
||||
There is another example showing the use of @code{select} to multiplex
|
||||
input from multiple sockets in @ref{Server Example}.
|
||||
|
||||
+For an alternate interface to this functionality, see @code{poll}
|
||||
+(@pxref{Other Low-Level I/O APIs}).
|
||||
|
||||
@node Synchronizing I/O
|
||||
@section Synchronizing I/O operations
|
||||
@@ -3407,7 +3410,9 @@ require additional arguments to be supplied. These additional arguments
|
||||
and the return value and error conditions are given in the detailed
|
||||
descriptions of the individual commands.
|
||||
|
||||
-Briefly, here is a list of what the various commands are.
|
||||
+Briefly, here is a list of what the various commands are. For an
|
||||
+exhaustive list of kernel-specific options, please see @xref{System
|
||||
+Calls}.
|
||||
|
||||
@vtable @code
|
||||
@item F_DUPFD
|
||||
@@ -4743,5 +4748,28 @@ Most IOCTLs are OS-specific and/or only used in special system utilities,
|
||||
and are thus beyond the scope of this document. For an example of the use
|
||||
of an IOCTL, see @ref{Out-of-Band Data}.
|
||||
|
||||
-@c FIXME this is undocumented:
|
||||
-@c dup3
|
||||
+@node Other Low-Level I/O APIs
|
||||
+@section Other low-level-I/O-related functions
|
||||
+
|
||||
+@deftp {Data Type} {struct pollfd}
|
||||
+@standards{POSIX.1,poll.h}
|
||||
+@end deftp
|
||||
+
|
||||
+@deftp {Data Type} {struct epoll_event}
|
||||
+@standards{Linux,sys/epoll.h}
|
||||
+@end deftp
|
||||
+
|
||||
+@deftypefun int poll (struct pollfd *@var{fds}, nfds_t @var{nfds}, int @var{timeout})
|
||||
+
|
||||
+@manpagefunctionstub{poll,2}
|
||||
+@end deftypefun
|
||||
+
|
||||
+@deftypefun int epoll_create(int @var{size})
|
||||
+
|
||||
+@manpagefunctionstub{epoll_create,2}
|
||||
+@end deftypefun
|
||||
+
|
||||
+@deftypefun int epoll_wait(int @var{epfd}, struct epoll_event *@var{events}, int @var{maxevents}, int @var{timeout})
|
||||
+
|
||||
+@manpagefunctionstub{epoll_wait,2}
|
||||
+@end deftypefun
|
||||
diff --git a/manual/macros.texi b/manual/macros.texi
|
||||
index 4a2e22f473..579da3fb81 100644
|
||||
--- a/manual/macros.texi
|
||||
+++ b/manual/macros.texi
|
||||
@@ -282,4 +282,11 @@ cwd\comments\
|
||||
@macro standardsx {element, standard, header}
|
||||
@end macro
|
||||
|
||||
+@macro manpagefunctionstub {func,sec}
|
||||
+This documentation is a stub. For additional information on this
|
||||
+function, consult the manual page
|
||||
+@url{https://man7.org/linux/man-pages/man\sec\/\func\.\sec\.html}.
|
||||
+@xref{Linux Kernel}.
|
||||
+@end macro
|
||||
+
|
||||
@end ifclear
|
||||
diff --git a/manual/socket.texi b/manual/socket.texi
|
||||
index f0e35d9e13..8708cbb07c 100644
|
||||
--- a/manual/socket.texi
|
||||
+++ b/manual/socket.texi
|
||||
@@ -41,6 +41,7 @@ aren't documented either so far.
|
||||
is to make it work with Inetd.
|
||||
* Socket Options:: Miscellaneous low-level socket options.
|
||||
* Networks Database:: Accessing the database of network names.
|
||||
+* Other Socket APIs:: Other socket-related functions.
|
||||
@end menu
|
||||
|
||||
@node Socket Concepts
|
||||
@@ -3134,38 +3135,8 @@ You can use plain @code{recv} (@pxref{Receiving Data}) instead of
|
||||
treat all possible senders alike). Even @code{read} can be used if
|
||||
you don't want to specify @var{flags} (@pxref{I/O Primitives}).
|
||||
|
||||
-@ignore
|
||||
-@c sendmsg and recvmsg are like readv and writev in that they
|
||||
-@c use a series of buffers. It's not clear this is worth
|
||||
-@c supporting or that we support them.
|
||||
-@c !!! they can do more; it is hairy
|
||||
-
|
||||
-@deftp {Data Type} {struct msghdr}
|
||||
-@standards{BSD, sys/socket.h}
|
||||
-@end deftp
|
||||
-
|
||||
-@deftypefun ssize_t sendmsg (int @var{socket}, const struct msghdr *@var{message}, int @var{flags})
|
||||
-@standards{BSD, sys/socket.h}
|
||||
-@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
|
||||
-
|
||||
-This function is defined as a cancellation point in multi-threaded
|
||||
-programs, so one has to be prepared for this and make sure that
|
||||
-allocated resources (like memory, files descriptors, semaphores or
|
||||
-whatever) are freed even if the thread is cancel.
|
||||
-@c @xref{pthread_cleanup_push}, for a method how to do this.
|
||||
-@end deftypefun
|
||||
-
|
||||
-@deftypefun ssize_t recvmsg (int @var{socket}, struct msghdr *@var{message}, int @var{flags})
|
||||
-@standards{BSD, sys/socket.h}
|
||||
-@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}}
|
||||
-
|
||||
-This function is defined as a cancellation point in multi-threaded
|
||||
-programs, so one has to be prepared for this and make sure that
|
||||
-allocated resources (like memory, files descriptors, semaphores or
|
||||
-whatever) are freed even if the thread is canceled.
|
||||
-@c @xref{pthread_cleanup_push}, for a method how to do this.
|
||||
-@end deftypefun
|
||||
-@end ignore
|
||||
+If you need more flexibility and/or control over sending and receiving
|
||||
+packets, see @code{sendmsg} and @code{recvmsg} (@pxref{Other Socket APIs}).
|
||||
|
||||
@node Datagram Example
|
||||
@subsection Datagram Socket Example
|
||||
@@ -3664,3 +3635,20 @@ returns a null pointer if there are no more entries.
|
||||
@c libc_lock_unlock @aculock
|
||||
This function closes the networks database.
|
||||
@end deftypefun
|
||||
+
|
||||
+@node Other Socket APIs
|
||||
+@section Other Socket APIs
|
||||
+
|
||||
+@deftp {Data Type} {struct msghdr}
|
||||
+@standards{BSD, sys/socket.h}
|
||||
+@end deftp
|
||||
+
|
||||
+@deftypefun ssize_t sendmsg (int @var{socket}, const struct msghdr *@var{message}, int @var{flags})
|
||||
+
|
||||
+@manpagefunctionstub{sendmsg,2}
|
||||
+@end deftypefun
|
||||
+
|
||||
+@deftypefun ssize_t recvmsg (int @var{socket}, struct msghdr *@var{message}, int @var{flags})
|
||||
+
|
||||
+@manpagefunctionstub{recvmsg,2}
|
||||
+@end deftypefun
|
||||
diff --git a/manual/startup.texi b/manual/startup.texi
|
||||
index 224dd98c1e..747beed4d9 100644
|
||||
--- a/manual/startup.texi
|
||||
+++ b/manual/startup.texi
|
||||
@@ -689,7 +689,25 @@ you don't need to know about it because you can just use @theglibc{}'s
|
||||
@code{chmod} function.
|
||||
|
||||
@cindex kernel call
|
||||
-System calls are sometimes called kernel calls.
|
||||
+System calls are sometimes called syscalls or kernel calls, and this
|
||||
+interface is mostly a purely mechanical translation from the kernel's
|
||||
+ABI to the C ABI. For the set of syscalls where we do not guarantee
|
||||
+POSIX Thread cancellation the wrappers only organize the incoming
|
||||
+arguments from the C calling convention to the calling convention of
|
||||
+the target kernel. For the set of syscalls where we provided POSIX
|
||||
+Thread cancellation the wrappers set some internal state in the
|
||||
+library to support cancellation, but this does not impact the
|
||||
+behaviour of the syscall provided by the kernel.
|
||||
+
|
||||
+In some cases, if @theglibc{} detects that a system call has been
|
||||
+superseded by a more capable one, the wrapper may map the old call to
|
||||
+the new one. For example, @code{dup2} is implemented via @code{dup3}
|
||||
+by passing an additional empty flags argument, and @code{open} calls
|
||||
+@code{openat} passing the additional @code{AT_FDCWD}. Sometimes even
|
||||
+more is done, such as converting between 32-bit and 64-bit time
|
||||
+values. In general, though, such processing is only to make the
|
||||
+system call better match the C ABI, rather than change its
|
||||
+functionality.
|
||||
|
||||
However, there are times when you want to make a system call explicitly,
|
||||
and for that, @theglibc{} provides the @code{syscall} function.
|
||||
@@ -711,6 +729,8 @@ we won't describe it here either because anyone who is coding
|
||||
library source code as a specification of the interface between them
|
||||
anyway.
|
||||
|
||||
+@code{syscall} does not provide cancellation logic, even if the system
|
||||
+call you're calling is listed as cancellable above.
|
||||
|
||||
@code{syscall} is declared in @file{unistd.h}.
|
||||
|
@ -0,0 +1,188 @@
|
||||
From a4c3f5f46e850c977cda81c251036475aab8313c Mon Sep 17 00:00:00 2001
|
||||
From: Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
||||
Date: Thu, 23 Nov 2023 14:29:14 -0300
|
||||
Subject: [PATCH] elf: Add a way to check if tunable is set (BZ 27069)
|
||||
Content-type: text/plain; charset=UTF-8
|
||||
|
||||
The patch adds two new macros, TUNABLE_GET_DEFAULT and TUNABLE_IS_INITIALIZED,
|
||||
here the former get the default value with a signature similar to
|
||||
TUNABLE_GET, while the later returns whether the tunable was set by
|
||||
the environment variable.
|
||||
|
||||
Checked on x86_64-linux-gnu.
|
||||
Reviewed-by: DJ Delorie <dj@redhat.com>
|
||||
Tested-by: Zhangfei Gao <zhangfei.gao@linaro.org>
|
||||
|
||||
Conflicts:
|
||||
elf/Versions
|
||||
(removed to preserve ABI)
|
||||
elf/dl-tunable-types.h
|
||||
(line numbers)
|
||||
scripts/gen-tunables.awk
|
||||
(account for missing TUNABLE_SECLEVEL patch)
|
||||
|
||||
---
|
||||
elf/dl-tunable-types.h | 1 +
|
||||
elf/dl-tunables.c | 40 ++++++++++++++++++++++++++++++++++++++++
|
||||
elf/dl-tunables.h | 28 ++++++++++++++++++++++++++++
|
||||
elf/dl-tunables.list | 1 +
|
||||
scripts/gen-tunables.awk | 4 ++--
|
||||
6 files changed, 73 insertions(+), 2 deletions(-)
|
||||
|
||||
diff -rup a/elf/dl-tunable-types.h b/elf/dl-tunable-types.h
|
||||
--- a/elf/dl-tunable-types.h 2021-08-01 21:33:43.000000000 -0400
|
||||
+++ b/elf/dl-tunable-types.h 2024-03-26 18:23:22.211504813 -0400
|
||||
@@ -61,6 +61,7 @@ struct _tunable
|
||||
{
|
||||
const char name[TUNABLE_NAME_MAX]; /* Internal name of the tunable. */
|
||||
tunable_type_t type; /* Data type of the tunable. */
|
||||
+ const tunable_val_t def; /* The value. */
|
||||
tunable_val_t val; /* The value. */
|
||||
bool initialized; /* Flag to indicate that the tunable is
|
||||
initialized. */
|
||||
diff -rup a/elf/dl-tunables.c b/elf/dl-tunables.c
|
||||
--- a/elf/dl-tunables.c 2024-03-26 18:21:10.090681748 -0400
|
||||
+++ b/elf/dl-tunables.c 2024-03-26 18:23:22.214504923 -0400
|
||||
@@ -152,6 +152,13 @@ tunable_initialize (tunable_t *cur, cons
|
||||
do_tunable_update_val (cur, &val, NULL, NULL);
|
||||
}
|
||||
|
||||
+bool
|
||||
+__tunable_is_initialized (tunable_id_t id)
|
||||
+{
|
||||
+ return tunable_list[id].initialized;
|
||||
+}
|
||||
+rtld_hidden_def (__tunable_is_initialized)
|
||||
+
|
||||
void
|
||||
__tunable_set_val (tunable_id_t id, tunable_val_t *valp, tunable_num_t *minp,
|
||||
tunable_num_t *maxp)
|
||||
@@ -399,6 +406,39 @@ __tunables_print (void)
|
||||
}
|
||||
}
|
||||
|
||||
+void
|
||||
+__tunable_get_default (tunable_id_t id, void *valp)
|
||||
+{
|
||||
+ tunable_t *cur = &tunable_list[id];
|
||||
+
|
||||
+ switch (cur->type.type_code)
|
||||
+ {
|
||||
+ case TUNABLE_TYPE_UINT_64:
|
||||
+ {
|
||||
+ *((uint64_t *) valp) = (uint64_t) cur->def.numval;
|
||||
+ break;
|
||||
+ }
|
||||
+ case TUNABLE_TYPE_INT_32:
|
||||
+ {
|
||||
+ *((int32_t *) valp) = (int32_t) cur->def.numval;
|
||||
+ break;
|
||||
+ }
|
||||
+ case TUNABLE_TYPE_SIZE_T:
|
||||
+ {
|
||||
+ *((size_t *) valp) = (size_t) cur->def.numval;
|
||||
+ break;
|
||||
+ }
|
||||
+ case TUNABLE_TYPE_STRING:
|
||||
+ {
|
||||
+ *((const char **)valp) = cur->def.strval;
|
||||
+ break;
|
||||
+ }
|
||||
+ default:
|
||||
+ __builtin_unreachable ();
|
||||
+ }
|
||||
+}
|
||||
+rtld_hidden_def (__tunable_get_default)
|
||||
+
|
||||
/* Set the tunable value. This is called by the module that the tunable exists
|
||||
in. */
|
||||
void
|
||||
diff -rup a/elf/dl-tunables.h b/elf/dl-tunables.h
|
||||
--- a/elf/dl-tunables.h 2021-08-01 21:33:43.000000000 -0400
|
||||
+++ b/elf/dl-tunables.h 2024-03-26 18:23:22.217505032 -0400
|
||||
@@ -53,18 +53,26 @@ typedef void (*tunable_callback_t) (tuna
|
||||
|
||||
extern void __tunables_init (char **);
|
||||
extern void __tunables_print (void);
|
||||
+extern bool __tunable_is_initialized (tunable_id_t);
|
||||
extern void __tunable_get_val (tunable_id_t, void *, tunable_callback_t);
|
||||
extern void __tunable_set_val (tunable_id_t, tunable_val_t *, tunable_num_t *,
|
||||
tunable_num_t *);
|
||||
+extern void __tunable_get_default (tunable_id_t id, void *valp);
|
||||
rtld_hidden_proto (__tunables_init)
|
||||
rtld_hidden_proto (__tunables_print)
|
||||
+rtld_hidden_proto (__tunable_is_initialized)
|
||||
rtld_hidden_proto (__tunable_get_val)
|
||||
rtld_hidden_proto (__tunable_set_val)
|
||||
+rtld_hidden_proto (__tunable_get_default)
|
||||
|
||||
/* Define TUNABLE_GET and TUNABLE_SET in short form if TOP_NAMESPACE and
|
||||
TUNABLE_NAMESPACE are defined. This is useful shorthand to get and set
|
||||
tunables within a module. */
|
||||
#if defined TOP_NAMESPACE && defined TUNABLE_NAMESPACE
|
||||
+# define TUNABLE_IS_INITIALIZED(__id) \
|
||||
+ TUNABLE_IS_INITIALIZED_FULL(TOP_NAMESPACE, TUNABLE_NAMESPACE, __id)
|
||||
+# define TUNABLE_GET_DEFAULT(__id, __type) \
|
||||
+ TUNABLE_GET_DEFAULT_FULL(TOP_NAMESPACE, TUNABLE_NAMESPACE,__id, __type)
|
||||
# define TUNABLE_GET(__id, __type, __cb) \
|
||||
TUNABLE_GET_FULL (TOP_NAMESPACE, TUNABLE_NAMESPACE, __id, __type, __cb)
|
||||
# define TUNABLE_SET(__id, __val) \
|
||||
@@ -73,6 +81,10 @@ rtld_hidden_proto (__tunable_set_val)
|
||||
TUNABLE_SET_WITH_BOUNDS_FULL (TOP_NAMESPACE, TUNABLE_NAMESPACE, __id, \
|
||||
__val, __min, __max)
|
||||
#else
|
||||
+# define TUNABLE_IS_INITIALIZED(__top, __ns, __id) \
|
||||
+ TUNABLE_IS_INITIALIZED_FULL(__top, __ns, __id)
|
||||
+# define TUNABLE_GET_DEFAULT(__top, __ns, __type) \
|
||||
+ TUNABLE_GET_DEFAULT_FULL(__top, __ns, __id, __type)
|
||||
# define TUNABLE_GET(__top, __ns, __id, __type, __cb) \
|
||||
TUNABLE_GET_FULL (__top, __ns, __id, __type, __cb)
|
||||
# define TUNABLE_SET(__top, __ns, __id, __val) \
|
||||
@@ -81,6 +93,22 @@ rtld_hidden_proto (__tunable_set_val)
|
||||
TUNABLE_SET_WITH_BOUNDS_FULL (__top, __ns, __id, __val, __min, __max)
|
||||
#endif
|
||||
|
||||
+/* Return whether the tunable was initialized by the environment variable. */
|
||||
+#define TUNABLE_IS_INITIALIZED_FULL(__top, __ns, __id) \
|
||||
+({ \
|
||||
+ tunable_id_t id = TUNABLE_ENUM_NAME (__top, __ns, __id); \
|
||||
+ __tunable_is_initialized (id); \
|
||||
+})
|
||||
+
|
||||
+/* Return the default value of the tunable. */
|
||||
+#define TUNABLE_GET_DEFAULT_FULL(__top, __ns, __id, __type) \
|
||||
+({ \
|
||||
+ tunable_id_t id = TUNABLE_ENUM_NAME (__top, __ns, __id); \
|
||||
+ __type __ret; \
|
||||
+ __tunable_get_default (id, &__ret); \
|
||||
+ __ret; \
|
||||
+})
|
||||
+
|
||||
/* Get and return a tunable value. If the tunable was set externally and __CB
|
||||
is defined then call __CB before returning the value. */
|
||||
# define TUNABLE_GET_FULL(__top, __ns, __id, __type, __cb) \
|
||||
diff -rup a/elf/dl-tunables.list b/elf/dl-tunables.list
|
||||
--- a/elf/dl-tunables.list 2024-03-26 18:21:09.664666196 -0400
|
||||
+++ b/elf/dl-tunables.list 2024-03-26 18:23:22.220505142 -0400
|
||||
@@ -20,6 +20,7 @@
|
||||
# type: Defaults to STRING
|
||||
# minval: Optional minimum acceptable value
|
||||
# maxval: Optional maximum acceptable value
|
||||
+# default: Optional default value (if not specified it will be 0 or "")
|
||||
# env_alias: An alias environment variable
|
||||
# security_level: Specify security level of the tunable for AT_SECURE binaries.
|
||||
# Valid values are:
|
||||
diff -rup a/scripts/gen-tunables.awk b/scripts/gen-tunables.awk
|
||||
--- a/scripts/gen-tunables.awk 2024-03-26 18:21:09.523661049 -0400
|
||||
+++ b/scripts/gen-tunables.awk 2024-03-26 18:34:45.385462341 -0400
|
||||
@@ -236,8 +236,8 @@ END {
|
||||
n = indices[2];
|
||||
m = indices[3];
|
||||
printf (" {TUNABLE_NAME_S(%s, %s, %s)", t, n, m)
|
||||
- printf (", {TUNABLE_TYPE_%s, %s, %s}, {%s}, NULL, TUNABLE_SECLEVEL_%s, %s},\n",
|
||||
- types[t,n,m], minvals[t,n,m], maxvals[t,n,m],
|
||||
+ printf (", {TUNABLE_TYPE_%s, %s, %s}, {%s}, {%s}, NULL, TUNABLE_SECLEVEL_%s, %s},\n",
|
||||
+ types[t,n,m], minvals[t,n,m], maxvals[t,n,m],default_val[t,n,m],
|
||||
default_val[t,n,m], security_level[t,n,m], env_alias[t,n,m]);
|
||||
}
|
||||
print "};"
|
@ -0,0 +1,155 @@
|
||||
From 0c0d39fe4aeb0f69b26e76337c5dfd5530d5d44e Mon Sep 17 00:00:00 2001
|
||||
From: Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
||||
Date: Thu, 8 Feb 2024 10:08:38 -0300
|
||||
Subject: [PATCH] x86: Fix Zen3/Zen4 ERMS selection (BZ 30994)
|
||||
Content-type: text/plain; charset=UTF-8
|
||||
|
||||
The REP MOVSB usage on memcpy/memmove does not show much performance
|
||||
improvement on Zen3/Zen4 cores compared to the vectorized loops. Also,
|
||||
as from BZ 30994, if the source is aligned and the destination is not
|
||||
the performance can be 20x slower.
|
||||
|
||||
The performance difference is noticeable with small buffer sizes, closer
|
||||
to the lower bounds limits when memcpy/memmove starts to use ERMS. The
|
||||
performance of REP MOVSB is similar to vectorized instruction on the
|
||||
size limit (the L2 cache). Also, there is no drawback to multiple cores
|
||||
sharing the cache.
|
||||
|
||||
Checked on x86_64-linux-gnu on Zen3.
|
||||
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
|
||||
|
||||
Conflicts:
|
||||
sysdeps/x86/dl-cacheinfo.h
|
||||
(tweaked for changed context)
|
||||
|
||||
---
|
||||
sysdeps/x86/dl-cacheinfo.h | 38 ++++++++++++++++++--------------------
|
||||
1 file changed, 18 insertions(+), 20 deletions(-)
|
||||
|
||||
diff --git a/sysdeps/x86/dl-cacheinfo.h b/sysdeps/x86/dl-cacheinfo.h
|
||||
index d5101615e3..f34d12846c 100644
|
||||
--- a/sysdeps/x86/dl-cacheinfo.h
|
||||
+++ b/sysdeps/x86/dl-cacheinfo.h
|
||||
@@ -791,7 +791,6 @@ dl_init_cacheinfo (struct cpu_features *cpu_features)
|
||||
long int data = -1;
|
||||
long int shared = -1;
|
||||
long int shared_per_thread = -1;
|
||||
- long int core = -1;
|
||||
unsigned int threads = 0;
|
||||
unsigned long int level1_icache_size = -1;
|
||||
unsigned long int level1_icache_linesize = -1;
|
||||
@@ -809,7 +808,6 @@ dl_init_cacheinfo (struct cpu_features *cpu_features)
|
||||
if (cpu_features->basic.kind == arch_kind_intel)
|
||||
{
|
||||
data = handle_intel (_SC_LEVEL1_DCACHE_SIZE, cpu_features);
|
||||
- core = handle_intel (_SC_LEVEL2_CACHE_SIZE, cpu_features);
|
||||
shared = handle_intel (_SC_LEVEL3_CACHE_SIZE, cpu_features);
|
||||
shared_per_thread = shared;
|
||||
|
||||
@@ -822,7 +820,8 @@ dl_init_cacheinfo (struct cpu_features *cpu_features)
|
||||
= handle_intel (_SC_LEVEL1_DCACHE_ASSOC, cpu_features);
|
||||
level1_dcache_linesize
|
||||
= handle_intel (_SC_LEVEL1_DCACHE_LINESIZE, cpu_features);
|
||||
- level2_cache_size = core;
|
||||
+ level2_cache_size
|
||||
+ = handle_intel (_SC_LEVEL2_CACHE_SIZE, cpu_features);
|
||||
level2_cache_assoc
|
||||
= handle_intel (_SC_LEVEL2_CACHE_ASSOC, cpu_features);
|
||||
level2_cache_linesize
|
||||
@@ -835,12 +834,12 @@ dl_init_cacheinfo (struct cpu_features *cpu_features)
|
||||
level4_cache_size
|
||||
= handle_intel (_SC_LEVEL4_CACHE_SIZE, cpu_features);
|
||||
|
||||
- get_common_cache_info (&shared, &shared_per_thread, &threads, core);
|
||||
+ get_common_cache_info (&shared, &shared_per_thread, &threads,
|
||||
+ level2_cache_size);
|
||||
}
|
||||
else if (cpu_features->basic.kind == arch_kind_zhaoxin)
|
||||
{
|
||||
data = handle_zhaoxin (_SC_LEVEL1_DCACHE_SIZE);
|
||||
- core = handle_zhaoxin (_SC_LEVEL2_CACHE_SIZE);
|
||||
shared = handle_zhaoxin (_SC_LEVEL3_CACHE_SIZE);
|
||||
shared_per_thread = shared;
|
||||
|
||||
@@ -849,19 +848,19 @@ dl_init_cacheinfo (struct cpu_features *cpu_features)
|
||||
level1_dcache_size = data;
|
||||
level1_dcache_assoc = handle_zhaoxin (_SC_LEVEL1_DCACHE_ASSOC);
|
||||
level1_dcache_linesize = handle_zhaoxin (_SC_LEVEL1_DCACHE_LINESIZE);
|
||||
- level2_cache_size = core;
|
||||
+ level2_cache_size = handle_zhaoxin (_SC_LEVEL2_CACHE_SIZE);
|
||||
level2_cache_assoc = handle_zhaoxin (_SC_LEVEL2_CACHE_ASSOC);
|
||||
level2_cache_linesize = handle_zhaoxin (_SC_LEVEL2_CACHE_LINESIZE);
|
||||
level3_cache_size = shared;
|
||||
level3_cache_assoc = handle_zhaoxin (_SC_LEVEL3_CACHE_ASSOC);
|
||||
level3_cache_linesize = handle_zhaoxin (_SC_LEVEL3_CACHE_LINESIZE);
|
||||
|
||||
- get_common_cache_info (&shared, &shared_per_thread, &threads, core);
|
||||
+ get_common_cache_info (&shared, &shared_per_thread, &threads,
|
||||
+ level2_cache_size);
|
||||
}
|
||||
else if (cpu_features->basic.kind == arch_kind_amd)
|
||||
{
|
||||
data = handle_amd (_SC_LEVEL1_DCACHE_SIZE);
|
||||
- core = handle_amd (_SC_LEVEL2_CACHE_SIZE);
|
||||
shared = handle_amd (_SC_LEVEL3_CACHE_SIZE);
|
||||
|
||||
level1_icache_size = handle_amd (_SC_LEVEL1_ICACHE_SIZE);
|
||||
@@ -869,7 +868,7 @@ dl_init_cacheinfo (struct cpu_features *cpu_features)
|
||||
level1_dcache_size = data;
|
||||
level1_dcache_assoc = handle_amd (_SC_LEVEL1_DCACHE_ASSOC);
|
||||
level1_dcache_linesize = handle_amd (_SC_LEVEL1_DCACHE_LINESIZE);
|
||||
- level2_cache_size = core;
|
||||
+ level2_cache_size = handle_amd (_SC_LEVEL2_CACHE_SIZE);;
|
||||
level2_cache_assoc = handle_amd (_SC_LEVEL2_CACHE_ASSOC);
|
||||
level2_cache_linesize = handle_amd (_SC_LEVEL2_CACHE_LINESIZE);
|
||||
level3_cache_size = shared;
|
||||
@@ -880,12 +879,12 @@ dl_init_cacheinfo (struct cpu_features *cpu_features)
|
||||
if (shared <= 0)
|
||||
{
|
||||
/* No shared L3 cache. All we have is the L2 cache. */
|
||||
- shared = core;
|
||||
+ shared = level2_cache_size;
|
||||
}
|
||||
else if (cpu_features->basic.family < 0x17)
|
||||
{
|
||||
/* Account for exclusive L2 and L3 caches. */
|
||||
- shared += core;
|
||||
+ shared += level2_cache_size;
|
||||
}
|
||||
|
||||
shared_per_thread = shared;
|
||||
@@ -987,6 +986,12 @@ dl_init_cacheinfo (struct cpu_features *cpu_features)
|
||||
if (CPU_FEATURE_USABLE_P (cpu_features, FSRM))
|
||||
rep_movsb_threshold = 2112;
|
||||
|
||||
+ /* For AMD CPUs that support ERMS (Zen3+), REP MOVSB is in a lot of
|
||||
+ cases slower than the vectorized path (and for some alignments,
|
||||
+ it is really slow, check BZ #30994). */
|
||||
+ if (cpu_features->basic.kind == arch_kind_amd)
|
||||
+ rep_movsb_threshold = non_temporal_threshold;
|
||||
+
|
||||
/* The default threshold to use Enhanced REP STOSB. */
|
||||
unsigned long int rep_stosb_threshold = 2048;
|
||||
|
||||
@@ -1028,15 +1033,8 @@ dl_init_cacheinfo (struct cpu_features *cpu_features)
|
||||
#endif
|
||||
|
||||
unsigned long int rep_movsb_stop_threshold;
|
||||
- /* ERMS feature is implemented from AMD Zen3 architecture and it is
|
||||
- performing poorly for data above L2 cache size. Henceforth, adding
|
||||
- an upper bound threshold parameter to limit the usage of Enhanced
|
||||
- REP MOVSB operations and setting its value to L2 cache size. */
|
||||
- if (cpu_features->basic.kind == arch_kind_amd)
|
||||
- rep_movsb_stop_threshold = core;
|
||||
/* Setting the upper bound of ERMS to the computed value of
|
||||
- non-temporal threshold for architectures other than AMD. */
|
||||
- else
|
||||
- rep_movsb_stop_threshold = non_temporal_threshold;
|
||||
+ non-temporal threshold for all architectures. */
|
||||
+ rep_movsb_stop_threshold = non_temporal_threshold;
|
||||
|
||||
cpu_features->data_cache_size = data;
|
||||
cpu_features->shared_cache_size = shared;
|
||||
--
|
||||
2.39.3
|
||||
|
@ -0,0 +1,34 @@
|
||||
From 272708884cb750f12f5c74a00e6620c19dc6d567 Mon Sep 17 00:00:00 2001
|
||||
From: Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
||||
Date: Thu, 8 Feb 2024 10:08:39 -0300
|
||||
Subject: [PATCH] x86: Do not prefer ERMS for memset on Zen3+
|
||||
Content-type: text/plain; charset=UTF-8
|
||||
|
||||
For AMD Zen3+ architecture, the performance of the vectorized loop is
|
||||
slightly better than ERMS.
|
||||
|
||||
Checked on x86_64-linux-gnu on Zen3.
|
||||
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
|
||||
---
|
||||
sysdeps/x86/dl-cacheinfo.h | 5 +++++
|
||||
1 file changed, 5 insertions(+)
|
||||
|
||||
diff --git a/sysdeps/x86/dl-cacheinfo.h b/sysdeps/x86/dl-cacheinfo.h
|
||||
index f34d12846c..5a98f70364 100644
|
||||
--- a/sysdeps/x86/dl-cacheinfo.h
|
||||
+++ b/sysdeps/x86/dl-cacheinfo.h
|
||||
@@ -1021,6 +1021,11 @@ dl_init_cacheinfo (struct cpu_features *cpu_features)
|
||||
minimum value is fixed. */
|
||||
rep_stosb_threshold = TUNABLE_GET (x86_rep_stosb_threshold,
|
||||
long int, NULL);
|
||||
+ if (cpu_features->basic.kind == arch_kind_amd
|
||||
+ && !TUNABLE_IS_INITIALIZED (x86_rep_stosb_threshold))
|
||||
+ /* For AMD Zen3+ architecture, the performance of the vectorized loop is
|
||||
+ slightly better than ERMS. */
|
||||
+ rep_stosb_threshold = SIZE_MAX;
|
||||
|
||||
TUNABLE_SET_WITH_BOUNDS (x86_data_cache_size, data, 0, SIZE_MAX);
|
||||
TUNABLE_SET_WITH_BOUNDS (x86_shared_cache_size, shared, 0, SIZE_MAX);
|
||||
--
|
||||
2.39.3
|
||||
|
@ -0,0 +1,29 @@
|
||||
From 491e55beab7457ed310a4a47496f4a333c5d1032 Mon Sep 17 00:00:00 2001
|
||||
From: Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
||||
Date: Thu, 8 Feb 2024 10:08:40 -0300
|
||||
Subject: [PATCH] x86: Expand the comment on when REP STOSB is used on memset
|
||||
Content-type: text/plain; charset=UTF-8
|
||||
|
||||
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
|
||||
---
|
||||
sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S | 4 +++-
|
||||
1 file changed, 3 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S b/sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S
|
||||
index 9984c3ca0f..97839a2248 100644
|
||||
--- a/sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S
|
||||
+++ b/sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S
|
||||
@@ -21,7 +21,9 @@
|
||||
2. If size is less than VEC, use integer register stores.
|
||||
3. If size is from VEC_SIZE to 2 * VEC_SIZE, use 2 VEC stores.
|
||||
4. If size is from 2 * VEC_SIZE to 4 * VEC_SIZE, use 4 VEC stores.
|
||||
- 5. If size is more to 4 * VEC_SIZE, align to 4 * VEC_SIZE with
|
||||
+ 5. On machines ERMS feature, if size is greater or equal than
|
||||
+ __x86_rep_stosb_threshold then REP STOSB will be used.
|
||||
+ 6. If size is more to 4 * VEC_SIZE, align to 4 * VEC_SIZE with
|
||||
4 VEC stores and store 4 * VEC at a time until done. */
|
||||
|
||||
#include <sysdep.h>
|
||||
--
|
||||
2.39.3
|
||||
|
@ -0,0 +1,205 @@
|
||||
From dce754b1553b86fc6352636f1fa490a85b7cf0ff Mon Sep 17 00:00:00 2001
|
||||
From: DJ Delorie <dj@redhat.com>
|
||||
Date: Fri, 10 May 2024 14:52:09 -0400
|
||||
Subject: Update mmap() flags and errors lists
|
||||
|
||||
Extend the list of MAP_* macros to include all macros available
|
||||
to the average program (gcc -E -dM | grep MAP_*)
|
||||
|
||||
Extend the list of errno codes.
|
||||
|
||||
Reviewed-by: Florian Weimer <fweimer@redhat.com>
|
||||
|
||||
diff --git a/manual/llio.texi b/manual/llio.texi
|
||||
index fe1807a849..78c7c79913 100644
|
||||
--- a/manual/llio.texi
|
||||
+++ b/manual/llio.texi
|
||||
@@ -1573,10 +1573,15 @@ permitted. They include @code{PROT_READ}, @code{PROT_WRITE}, and
|
||||
of address space for future use. The @code{mprotect} function can be
|
||||
used to change the protection flags. @xref{Memory Protection}.
|
||||
|
||||
-@var{flags} contains flags that control the nature of the map.
|
||||
-One of @code{MAP_SHARED} or @code{MAP_PRIVATE} must be specified.
|
||||
+The @var{flags} parameter contains flags that control the nature of
|
||||
+the map. One of @code{MAP_SHARED}, @code{MAP_SHARED_VALIDATE}, or
|
||||
+@code{MAP_PRIVATE} must be specified. Additional flags may be bitwise
|
||||
+OR'd to further define the mapping.
|
||||
|
||||
-They include:
|
||||
+Note that, aside from @code{MAP_PRIVATE} and @code{MAP_SHARED}, not
|
||||
+all flags are supported on all versions of all operating systems.
|
||||
+Consult the kernel-specific documentation for details. The flags
|
||||
+include:
|
||||
|
||||
@vtable @code
|
||||
@item MAP_PRIVATE
|
||||
@@ -1598,9 +1603,19 @@ Note that actual writing may take place at any time. You need to use
|
||||
@code{msync}, described below, if it is important that other processes
|
||||
using conventional I/O get a consistent view of the file.
|
||||
|
||||
+@item MAP_SHARED_VALIDATE
|
||||
+Similar to @code{MAP_SHARED} except that additional flags will be
|
||||
+validated by the kernel, and the call will fail if an unrecognized
|
||||
+flag is provided. With @code{MAP_SHARED} using a flag on a kernel
|
||||
+that doesn't support it causes the flag to be ignored.
|
||||
+@code{MAP_SHARED_VALIDATE} should be used when the behavior of all
|
||||
+flags is required.
|
||||
+
|
||||
@item MAP_FIXED
|
||||
This forces the system to use the exact mapping address specified in
|
||||
-@var{address} and fail if it can't.
|
||||
+@var{address} and fail if it can't. Note that if the new mapping
|
||||
+would overlap an existing mapping, the overlapping portion of the
|
||||
+existing map is unmapped.
|
||||
|
||||
@c One of these is official - the other is obviously an obsolete synonym
|
||||
@c Which is which?
|
||||
@@ -1641,10 +1656,73 @@ The @code{MAP_HUGETLB} flag is specific to Linux.
|
||||
@c There is a mechanism to select different hugepage sizes; see
|
||||
@c include/uapi/asm-generic/hugetlb_encode.h in the kernel sources.
|
||||
|
||||
-@c Linux has some other MAP_ options, which I have not discussed here.
|
||||
-@c MAP_DENYWRITE, MAP_EXECUTABLE and MAP_GROWSDOWN don't seem applicable to
|
||||
-@c user programs (and I don't understand the last two). MAP_LOCKED does
|
||||
-@c not appear to be implemented.
|
||||
+@item MAP_32BIT
|
||||
+Require addresses that can be accessed with a signed 32 bit pointer,
|
||||
+i.e., within the first 2 GiB. Ignored if MAP_FIXED is specified.
|
||||
+
|
||||
+@item MAP_DENYWRITE
|
||||
+@itemx MAP_EXECUTABLE
|
||||
+@itemx MAP_FILE
|
||||
+
|
||||
+Provided for compatibility. Ignored by the Linux kernel.
|
||||
+
|
||||
+@item MAP_FIXED_NOREPLACE
|
||||
+Similar to @code{MAP_FIXED} except the call will fail with
|
||||
+@code{EEXIST} if the new mapping would overwrite an existing mapping.
|
||||
+To test for support for this flag, specify MAP_FIXED_NOREPLACE without
|
||||
+MAP_FIXED, and (if the call was successful) check the actual address
|
||||
+returned. If it does not match the address passed, then this flag is
|
||||
+not supported.
|
||||
+
|
||||
+@item MAP_GROWSDOWN
|
||||
+This flag is used to make stacks, and is typically only needed inside
|
||||
+the program loader to set up the main stack for the running process.
|
||||
+The mapping is created according to the other flags, except an
|
||||
+additional page just prior to the mapping is marked as a ``guard
|
||||
+page''. If a write is attempted inside this guard page, that page is
|
||||
+mapped, the mapping is extended, and a new guard page is created.
|
||||
+Thus, the mapping continues to grow towards lower addresses until it
|
||||
+encounters some other mapping.
|
||||
+
|
||||
+Note that accessing memory beyond the guard page will not trigger this
|
||||
+feature. In gcc, use @code{-fstack-clash-protection} to ensure the
|
||||
+guard page is always touched.
|
||||
+
|
||||
+@item MAP_LOCKED
|
||||
+A hint that requests that mapped pages are locked in memory (i.e. not
|
||||
+paged out). Note that this is a request and not a requirement; use
|
||||
+@code{mlock} if locking is required.
|
||||
+
|
||||
+@item MAP_POPULATE
|
||||
+@itemx MAP_NONBLOCK
|
||||
+@code{MAP_POPULATE} is a hint that requests that the kernel read-ahead
|
||||
+a file-backed mapping, causing pages to be mapped before they're
|
||||
+needed. @code{MAP_NONBLOCK} is a hint that requests that the kernel
|
||||
+@emph{not} attempt such except for pages are already in memory. Note
|
||||
+that neither of these hints affects future paging activity, use
|
||||
+@code{mlock} if such needs to be controlled.
|
||||
+
|
||||
+@item MAP_NORESERVE
|
||||
+Asks the kernel to not reserve physical backing (i.e. space in a swap
|
||||
+device) for a mapping. This would be useful for, for example, a very
|
||||
+large but sparsely used mapping which need not be limited in total
|
||||
+length by available RAM, but with very few mapped pages. Note that
|
||||
+writes to such a mapping may cause a @code{SIGSEGV} if the system is
|
||||
+unable to map a page due to lack of resources.
|
||||
+
|
||||
+On Linux, this flag's behavior may be overwridden by
|
||||
+@file{/proc/sys/vm/overcommit_memory} as documented in the proc(5) man
|
||||
+page.
|
||||
+
|
||||
+@item MAP_STACK
|
||||
+Ensures that the resulting mapping is suitable for use as a program
|
||||
+stack. For example, the use of huge pages might be precluded.
|
||||
+
|
||||
+@item MAP_SYNC
|
||||
+This is a special flag for DAX devices, which tells the kernel to
|
||||
+write dirty metadata out whenever dirty data is written out. Unlike
|
||||
+most other flags, this one will fail unless @code{MAP_SHARED_VALIDATE}
|
||||
+is also given.
|
||||
|
||||
@end vtable
|
||||
|
||||
@@ -1655,6 +1733,24 @@ Possible errors include:
|
||||
|
||||
@table @code
|
||||
|
||||
+@item EACCES
|
||||
+
|
||||
+@var{filedes} was not open for the type of access specified in @var{protect}.
|
||||
+
|
||||
+@item EAGAIN
|
||||
+
|
||||
+The system has temporarily run out of resources.
|
||||
+
|
||||
+@item EBADF
|
||||
+
|
||||
+The @var{fd} passed is invalid, and a valid file descriptor is
|
||||
+required (i.e. MAP_ANONYMOUS was not specified).
|
||||
+
|
||||
+@item EEXIST
|
||||
+
|
||||
+@code{MAP_FIXED_NOREPLACE} was specified and an existing mapping was
|
||||
+found overlapping the requested address range.
|
||||
+
|
||||
@item EINVAL
|
||||
|
||||
Either @var{address} was unusable (because it is not a multiple of the
|
||||
@@ -1663,23 +1759,37 @@ applicable page size), or inconsistent @var{flags} were given.
|
||||
If @code{MAP_HUGETLB} was specified, the file or system does not support
|
||||
large page sizes.
|
||||
|
||||
-@item EACCES
|
||||
+@item ENODEV
|
||||
|
||||
-@var{filedes} was not open for the type of access specified in @var{protect}.
|
||||
+This file is of a type that doesn't support mapping, the process has
|
||||
+exceeded its data space limit, or the map request would exceed the
|
||||
+process's virtual address space.
|
||||
|
||||
@item ENOMEM
|
||||
|
||||
-Either there is not enough memory for the operation, or the process is
|
||||
-out of address space.
|
||||
-
|
||||
-@item ENODEV
|
||||
-
|
||||
-This file is of a type that doesn't support mapping.
|
||||
+There is not enough memory for the operation, the process is out of
|
||||
+address space, or there are too many mappings. On Linux, the maximum
|
||||
+number of mappings can be controlled via
|
||||
+@file{/proc/sys/vm/max_map_count} or, if your OS supports it, via
|
||||
+the @code{vm.max_map_count} @code{sysctl} setting.
|
||||
|
||||
@item ENOEXEC
|
||||
|
||||
The file is on a filesystem that doesn't support mapping.
|
||||
|
||||
+@item EPERM
|
||||
+
|
||||
+@code{PROT_EXEC} was requested but the file is on a filesystem that
|
||||
+was mounted with execution denied, a file seal prevented the mapping,
|
||||
+or the caller set MAP_HUDETLB but does not have the required
|
||||
+priviledges.
|
||||
+
|
||||
+@item EOVERFLOW
|
||||
+
|
||||
+Either the offset into the file plus the length of the mapping causes
|
||||
+internal page counts to overflow, or the offset requested exceeds the
|
||||
+length of the file.
|
||||
+
|
||||
@c On Linux, EAGAIN will appear if the file has a conflicting mandatory lock.
|
||||
@c However mandatory locks are not discussed in this manual.
|
||||
@c
|
@ -0,0 +1,142 @@
|
||||
commit 3a83f79024cc023a74c3892a1673542e8e972485
|
||||
Author: Sergey Kolosov <skolosov@redhat.com>
|
||||
Date: Wed Apr 10 17:58:05 2024 +0200
|
||||
|
||||
socket: Add new test for connect
|
||||
|
||||
This commit adds a simple bind/accept/connect test for an IPv4 TCP
|
||||
connection to a local process via the loopback interface.
|
||||
|
||||
Reviewed-by: Arjun Shankar <arjun@redhat.com>
|
||||
|
||||
diff -Nrup a/socket/Makefile b/socket/Makefile
|
||||
--- a/socket/Makefile 2024-05-19 21:52:59.775055152 -0400
|
||||
+++ b/socket/Makefile 2024-05-19 22:05:27.717703460 -0400
|
||||
@@ -33,8 +33,9 @@ routines := accept bind connect getpeern
|
||||
|
||||
tests := \
|
||||
tst-accept4 \
|
||||
- tst-sockopt \
|
||||
tst-cmsghdr \
|
||||
+ tst-connect \
|
||||
+ tst-sockopt \
|
||||
# tests
|
||||
|
||||
tests-internal := \
|
||||
diff -Nrup a/socket/tst-connect.c b/socket/tst-connect.c
|
||||
--- a/socket/tst-connect.c 1969-12-31 19:00:00.000000000 -0500
|
||||
+++ b/socket/tst-connect.c 2024-05-19 21:58:22.069058144 -0400
|
||||
@@ -0,0 +1,113 @@
|
||||
+/* Test the connect function.
|
||||
+ Copyright (C) 2024 Free Software Foundation, Inc.
|
||||
+ This file is part of the GNU C Library.
|
||||
+
|
||||
+ The GNU C Library is free software; you can redistribute it and/or
|
||||
+ modify it under the terms of the GNU Lesser General Public
|
||||
+ License as published by the Free Software Foundation; either
|
||||
+ version 2.1 of the License, or (at your option) any later version.
|
||||
+
|
||||
+ The GNU C Library is distributed in the hope that it will be useful,
|
||||
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
+ Lesser General Public License for more details.
|
||||
+
|
||||
+ You should have received a copy of the GNU Lesser General Public
|
||||
+ License along with the GNU C Library; if not, see
|
||||
+ <https://www.gnu.org/licenses/>. */
|
||||
+
|
||||
+#include <arpa/inet.h>
|
||||
+#include <errno.h>
|
||||
+#include <fcntl.h>
|
||||
+#include <signal.h>
|
||||
+#include <stdbool.h>
|
||||
+#include <support/check.h>
|
||||
+#include <support/xsocket.h>
|
||||
+#include <support/xunistd.h>
|
||||
+#include <sys/socket.h>
|
||||
+#include <stdio.h>
|
||||
+
|
||||
+static struct sockaddr_in server_address;
|
||||
+
|
||||
+int
|
||||
+open_socket_inet_tcp (void)
|
||||
+{
|
||||
+ int fd = socket (AF_INET, SOCK_STREAM, IPPROTO_TCP);
|
||||
+ if (fd < 0)
|
||||
+ {
|
||||
+ if (errno == EAFNOSUPPORT)
|
||||
+ FAIL_UNSUPPORTED ("The host does not support IPv4");
|
||||
+ else
|
||||
+ FAIL_EXIT1 ("socket (AF_INET, SOCK_STREAM, IPPROTO_TCP): %m\n");
|
||||
+ }
|
||||
+ return fd;
|
||||
+}
|
||||
+
|
||||
+static pid_t
|
||||
+start_server (void)
|
||||
+{
|
||||
+ server_address.sin_family = AF_INET;
|
||||
+ server_address.sin_port = 0;
|
||||
+ server_address.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
|
||||
+
|
||||
+ int server_sock = open_socket_inet_tcp ();
|
||||
+
|
||||
+ xbind (server_sock, (struct sockaddr *) &server_address,
|
||||
+ sizeof (server_address));
|
||||
+
|
||||
+ socklen_t sa_len = sizeof (server_address);
|
||||
+ xgetsockname (server_sock, (struct sockaddr *) &server_address, &sa_len);
|
||||
+ xlisten (server_sock, 5);
|
||||
+
|
||||
+ pid_t my_pid = xfork ();
|
||||
+ if (my_pid > 0)
|
||||
+ {
|
||||
+ xclose (server_sock);
|
||||
+ return my_pid;
|
||||
+ }
|
||||
+
|
||||
+ struct sockaddr_in client_address;
|
||||
+ socklen_t ca_len = sizeof (server_address);
|
||||
+ int client_sock = xaccept (server_sock, (struct sockaddr *) &client_address,
|
||||
+ &ca_len);
|
||||
+ printf ("socket accepted %d\n", client_sock);
|
||||
+
|
||||
+ _exit (0);
|
||||
+}
|
||||
+
|
||||
+static int
|
||||
+do_test (void)
|
||||
+{
|
||||
+ pid_t serv_pid;
|
||||
+ struct sockaddr_in peer;
|
||||
+ socklen_t peer_len;
|
||||
+
|
||||
+ serv_pid = start_server ();
|
||||
+ int client_sock = open_socket_inet_tcp ();
|
||||
+ xconnect (client_sock, (const struct sockaddr *) &server_address,
|
||||
+ sizeof (server_address));
|
||||
+
|
||||
+ /* A second connect with same arguments should fail with EISCONN. */
|
||||
+ int result = connect (client_sock,
|
||||
+ (const struct sockaddr *) &server_address,
|
||||
+ sizeof (server_address));
|
||||
+ if (result == 0 || errno != EISCONN)
|
||||
+ FAIL_EXIT1 ("Second connect (%d), should fail with EISCONN: %m",
|
||||
+ client_sock);
|
||||
+
|
||||
+ peer_len = sizeof (peer);
|
||||
+ xgetpeername (client_sock, (struct sockaddr *) &peer, &peer_len);
|
||||
+ TEST_COMPARE (peer_len, sizeof (peer));
|
||||
+ TEST_COMPARE (peer.sin_port, server_address.sin_port);
|
||||
+ TEST_COMPARE_BLOB (&peer.sin_addr, sizeof (peer.sin_addr),
|
||||
+ &server_address.sin_addr,
|
||||
+ sizeof (server_address.sin_addr));
|
||||
+
|
||||
+ int status;
|
||||
+ xwaitpid (serv_pid, &status, 0);
|
||||
+ TEST_COMPARE (status, 0);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+#include <support/test-driver.c>
|
@ -0,0 +1,66 @@
|
||||
commit 6687a6e3f962759536a8019d31c68c1009ccd6eb
|
||||
Author: Sergey Kolosov <skolosov@redhat.com>
|
||||
Date: Wed Apr 10 17:58:04 2024 +0200
|
||||
|
||||
libsupport: Add xgetpeername
|
||||
|
||||
The patch adds redirections for getpeername.
|
||||
|
||||
Reviewed-by: Arjun Shankar <arjun@redhat.com>
|
||||
|
||||
diff -Nrup a/support/Makefile b/support/Makefile
|
||||
--- a/support/Makefile 2024-05-19 23:27:12.379362736 -0400
|
||||
+++ b/support/Makefile 2024-05-19 23:29:28.668182089 -0400
|
||||
@@ -126,6 +126,7 @@ libsupport-routines = \
|
||||
xfork \
|
||||
xftruncate \
|
||||
xgetline \
|
||||
+ xgetpeername \
|
||||
xgetsockname \
|
||||
xlisten \
|
||||
xlseek \
|
||||
diff -Nrup a/support/xgetpeername.c b/support/xgetpeername.c
|
||||
--- a/support/xgetpeername.c 1969-12-31 19:00:00.000000000 -0500
|
||||
+++ b/support/xgetpeername.c 2024-05-19 23:30:31.852561947 -0400
|
||||
@@ -0,0 +1,30 @@
|
||||
+/* getpeername with error checking.
|
||||
+ Copyright (C) 2024 Free Software Foundation, Inc.
|
||||
+ This file is part of the GNU C Library.
|
||||
+
|
||||
+ The GNU C Library is free software; you can redistribute it and/or
|
||||
+ modify it under the terms of the GNU Lesser General Public
|
||||
+ License as published by the Free Software Foundation; either
|
||||
+ version 2.1 of the License, or (at your option) any later version.
|
||||
+
|
||||
+ The GNU C Library is distributed in the hope that it will be useful,
|
||||
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
+ Lesser General Public License for more details.
|
||||
+
|
||||
+ You should have received a copy of the GNU Lesser General Public
|
||||
+ License along with the GNU C Library; if not, see
|
||||
+ <https://www.gnu.org/licenses/>. */
|
||||
+
|
||||
+#include <support/xsocket.h>
|
||||
+
|
||||
+#include <stdio.h>
|
||||
+#include <stdlib.h>
|
||||
+#include <support/check.h>
|
||||
+
|
||||
+void
|
||||
+xgetpeername (int fd, struct sockaddr *sa, socklen_t *plen)
|
||||
+{
|
||||
+ if (getpeername (fd, sa, plen) != 0)
|
||||
+ FAIL_EXIT1 ("getpeername (%d): %m", fd);
|
||||
+}
|
||||
diff -Nrup a/support/xsocket.h b/support/xsocket.h
|
||||
--- a/support/xsocket.h 2021-08-01 21:33:43.000000000 -0400
|
||||
+++ b/support/xsocket.h 2024-05-19 23:31:24.541878715 -0400
|
||||
@@ -26,6 +26,7 @@
|
||||
int xsocket (int, int, int);
|
||||
void xsetsockopt (int, int, int, const void *, socklen_t);
|
||||
void xgetsockname (int, struct sockaddr *, socklen_t *);
|
||||
+void xgetpeername (int, struct sockaddr *, socklen_t *);
|
||||
void xconnect (int, const struct sockaddr *, socklen_t);
|
||||
void xbind (int, const struct sockaddr *, socklen_t);
|
||||
void xlisten (int, int);
|
@ -0,0 +1,30 @@
|
||||
commit 4bbca1a44691a6e9adcee5c6798a707b626bc331
|
||||
Author: Florian Weimer <fweimer@redhat.com>
|
||||
Date: Thu May 2 17:06:19 2024 +0200
|
||||
|
||||
nscd: Use time_t for return type of addgetnetgrentX
|
||||
|
||||
Using int may give false results for future dates (timeouts after the
|
||||
year 2028).
|
||||
|
||||
Fixes commit 04a21e050d64a1193a6daab872bca2528bda44b ("CVE-2024-33601,
|
||||
CVE-2024-33602: nscd: netgroup: Use two buffers in addgetnetgrentX
|
||||
(bug 31680)").
|
||||
|
||||
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
|
||||
|
||||
diff --git a/nscd/netgroupcache.c b/nscd/netgroupcache.c
|
||||
index 4b35498e3f..5fdcf4204e 100644
|
||||
--- a/nscd/netgroupcache.c
|
||||
+++ b/nscd/netgroupcache.c
|
||||
@@ -680,8 +680,8 @@ readdinnetgr (struct database_dyn *db, struct hashentry *he,
|
||||
.key_len = he->len
|
||||
};
|
||||
|
||||
- int timeout = addinnetgrX (db, -1, &req, db->data + he->key, he->owner,
|
||||
- he, dh);
|
||||
+ time_t timeout = addinnetgrX (db, -1, &req, db->data + he->key, he->owner,
|
||||
+ he, dh);
|
||||
if (timeout < 0)
|
||||
timeout = 0;
|
||||
return timeout;
|
@ -0,0 +1,593 @@
|
||||
commit df11c05be91fda5ef490c76fd0d4a53821750116
|
||||
Author: Joseph Myers <josmyers@redhat.com>
|
||||
Date: Wed Jan 17 15:38:54 2024 +0000
|
||||
|
||||
Update syscall lists for Linux 6.7
|
||||
|
||||
Linux 6.7 adds the futex_requeue, futex_wait and futex_wake syscalls,
|
||||
and enables map_shadow_stack for architectures previously missing it.
|
||||
Update syscall-names.list and regenerate the arch-syscall.h headers
|
||||
with build-many-glibcs.py update-syscalls.
|
||||
|
||||
Tested with build-many-glibcs.py.
|
||||
|
||||
Modified for RHEL by: Patsy Griffin <patsy@redhat.com>
|
||||
|
||||
diff --git a/sysdeps/unix/sysv/linux/aarch64/arch-syscall.h b/sysdeps/unix/sysv/linux/aarch64/arch-syscall.h
|
||||
index 746991aa2f..1713897f85 100644
|
||||
--- a/sysdeps/unix/sysv/linux/aarch64/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/aarch64/arch-syscall.h
|
||||
@@ -64,7 +64,10 @@
|
||||
#define __NR_fsync 82
|
||||
#define __NR_ftruncate 46
|
||||
#define __NR_futex 98
|
||||
+#define __NR_futex_requeue 456
|
||||
+#define __NR_futex_wait 455
|
||||
#define __NR_futex_waitv 449
|
||||
+#define __NR_futex_wake 454
|
||||
#define __NR_get_mempolicy 236
|
||||
#define __NR_get_robust_list 100
|
||||
#define __NR_getcpu 168
|
||||
@@ -126,6 +129,7 @@
|
||||
#define __NR_lseek 62
|
||||
#define __NR_lsetxattr 6
|
||||
#define __NR_madvise 233
|
||||
+#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 235
|
||||
#define __NR_membarrier 283
|
||||
#define __NR_memfd_create 279
|
||||
diff --git a/sysdeps/unix/sysv/linux/alpha/arch-syscall.h b/sysdeps/unix/sysv/linux/alpha/arch-syscall.h
|
||||
index 32efe51267..5457d2d8ae 100644
|
||||
--- a/sysdeps/unix/sysv/linux/alpha/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/alpha/arch-syscall.h
|
||||
@@ -80,7 +80,10 @@
|
||||
#define __NR_fsync 95
|
||||
#define __NR_ftruncate 130
|
||||
#define __NR_futex 394
|
||||
+#define __NR_futex_requeue 566
|
||||
+#define __NR_futex_wait 565
|
||||
#define __NR_futex_waitv 559
|
||||
+#define __NR_futex_wake 564
|
||||
#define __NR_futimesat 454
|
||||
#define __NR_get_kernel_syms 309
|
||||
#define __NR_get_mempolicy 430
|
||||
@@ -156,6 +159,7 @@
|
||||
#define __NR_lstat 68
|
||||
#define __NR_lstat64 426
|
||||
#define __NR_madvise 75
|
||||
+#define __NR_map_shadow_stack 563
|
||||
#define __NR_mbind 429
|
||||
#define __NR_membarrier 517
|
||||
#define __NR_memfd_create 512
|
||||
diff --git a/sysdeps/unix/sysv/linux/arc/arch-syscall.h b/sysdeps/unix/sysv/linux/arc/arch-syscall.h
|
||||
index 1d2879e877..a66471c83a 100644
|
||||
--- a/sysdeps/unix/sysv/linux/arc/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/arc/arch-syscall.h
|
||||
@@ -66,8 +66,11 @@
|
||||
#define __NR_fstatfs64 44
|
||||
#define __NR_fsync 82
|
||||
#define __NR_ftruncate64 46
|
||||
+#define __NR_futex_requeue 456
|
||||
#define __NR_futex_time64 422
|
||||
+#define __NR_futex_wait 455
|
||||
#define __NR_futex_waitv 449
|
||||
+#define __NR_futex_wake 454
|
||||
#define __NR_get_mempolicy 236
|
||||
#define __NR_get_robust_list 100
|
||||
#define __NR_getcpu 168
|
||||
@@ -130,6 +133,7 @@
|
||||
#define __NR_lremovexattr 15
|
||||
#define __NR_lsetxattr 6
|
||||
#define __NR_madvise 233
|
||||
+#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 235
|
||||
#define __NR_membarrier 283
|
||||
#define __NR_memfd_create 279
|
||||
diff --git a/sysdeps/unix/sysv/linux/arm/arch-syscall.h b/sysdeps/unix/sysv/linux/arm/arch-syscall.h
|
||||
index 6711981e78..74a57f4520 100644
|
||||
--- a/sysdeps/unix/sysv/linux/arm/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/arm/arch-syscall.h
|
||||
@@ -91,8 +91,11 @@
|
||||
#define __NR_ftruncate 93
|
||||
#define __NR_ftruncate64 194
|
||||
#define __NR_futex 240
|
||||
+#define __NR_futex_requeue 456
|
||||
#define __NR_futex_time64 422
|
||||
+#define __NR_futex_wait 455
|
||||
#define __NR_futex_waitv 449
|
||||
+#define __NR_futex_wake 454
|
||||
#define __NR_futimesat 326
|
||||
#define __NR_get_mempolicy 320
|
||||
#define __NR_get_robust_list 339
|
||||
@@ -170,6 +173,7 @@
|
||||
#define __NR_lstat 107
|
||||
#define __NR_lstat64 196
|
||||
#define __NR_madvise 220
|
||||
+#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 319
|
||||
#define __NR_membarrier 389
|
||||
#define __NR_memfd_create 385
|
||||
diff --git a/sysdeps/unix/sysv/linux/csky/arch-syscall.h b/sysdeps/unix/sysv/linux/csky/arch-syscall.h
|
||||
index 92d9a703ea..ba7632e018 100644
|
||||
--- a/sysdeps/unix/sysv/linux/csky/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/csky/arch-syscall.h
|
||||
@@ -71,8 +71,11 @@
|
||||
#define __NR_fsync 82
|
||||
#define __NR_ftruncate64 46
|
||||
#define __NR_futex 98
|
||||
+#define __NR_futex_requeue 456
|
||||
#define __NR_futex_time64 422
|
||||
+#define __NR_futex_wait 455
|
||||
#define __NR_futex_waitv 449
|
||||
+#define __NR_futex_wake 454
|
||||
#define __NR_get_mempolicy 236
|
||||
#define __NR_get_robust_list 100
|
||||
#define __NR_getcpu 168
|
||||
@@ -135,6 +138,7 @@
|
||||
#define __NR_lremovexattr 15
|
||||
#define __NR_lsetxattr 6
|
||||
#define __NR_madvise 233
|
||||
+#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 235
|
||||
#define __NR_membarrier 283
|
||||
#define __NR_memfd_create 279
|
||||
diff --git a/sysdeps/unix/sysv/linux/hppa/arch-syscall.h b/sysdeps/unix/sysv/linux/hppa/arch-syscall.h
|
||||
index fbac124b70..483706de9b 100644
|
||||
--- a/sysdeps/unix/sysv/linux/hppa/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/hppa/arch-syscall.h
|
||||
@@ -89,8 +89,11 @@
|
||||
#define __NR_ftruncate 93
|
||||
#define __NR_ftruncate64 200
|
||||
#define __NR_futex 210
|
||||
+#define __NR_futex_requeue 456
|
||||
#define __NR_futex_time64 422
|
||||
+#define __NR_futex_wait 455
|
||||
#define __NR_futex_waitv 449
|
||||
+#define __NR_futex_wake 454
|
||||
#define __NR_futimesat 279
|
||||
#define __NR_get_mempolicy 261
|
||||
#define __NR_get_robust_list 290
|
||||
@@ -161,6 +164,7 @@
|
||||
#define __NR_lstat 84
|
||||
#define __NR_lstat64 198
|
||||
#define __NR_madvise 119
|
||||
+#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 260
|
||||
#define __NR_membarrier 343
|
||||
#define __NR_memfd_create 340
|
||||
diff --git a/sysdeps/unix/sysv/linux/i386/arch-syscall.h b/sysdeps/unix/sysv/linux/i386/arch-syscall.h
|
||||
index 8961788a96..21c1308bb3 100644
|
||||
--- a/sysdeps/unix/sysv/linux/i386/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/i386/arch-syscall.h
|
||||
@@ -95,8 +95,11 @@
|
||||
#define __NR_ftruncate 93
|
||||
#define __NR_ftruncate64 194
|
||||
#define __NR_futex 240
|
||||
+#define __NR_futex_requeue 456
|
||||
#define __NR_futex_time64 422
|
||||
+#define __NR_futex_wait 455
|
||||
#define __NR_futex_waitv 449
|
||||
+#define __NR_futex_wake 454
|
||||
#define __NR_futimesat 299
|
||||
#define __NR_get_kernel_syms 130
|
||||
#define __NR_get_mempolicy 275
|
||||
@@ -183,6 +186,7 @@
|
||||
#define __NR_lstat 107
|
||||
#define __NR_lstat64 196
|
||||
#define __NR_madvise 219
|
||||
+#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 274
|
||||
#define __NR_membarrier 375
|
||||
#define __NR_memfd_create 356
|
||||
diff --git a/sysdeps/unix/sysv/linux/m68k/arch-syscall.h b/sysdeps/unix/sysv/linux/m68k/arch-syscall.h
|
||||
index 2053d5d392..6d788e3440 100644
|
||||
--- a/sysdeps/unix/sysv/linux/m68k/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/m68k/arch-syscall.h
|
||||
@@ -94,8 +94,11 @@
|
||||
#define __NR_ftruncate 93
|
||||
#define __NR_ftruncate64 194
|
||||
#define __NR_futex 235
|
||||
+#define __NR_futex_requeue 456
|
||||
#define __NR_futex_time64 422
|
||||
+#define __NR_futex_wait 455
|
||||
#define __NR_futex_waitv 449
|
||||
+#define __NR_futex_wake 454
|
||||
#define __NR_futimesat 292
|
||||
#define __NR_get_kernel_syms 130
|
||||
#define __NR_get_mempolicy 269
|
||||
@@ -177,6 +180,7 @@
|
||||
#define __NR_lstat 107
|
||||
#define __NR_lstat64 196
|
||||
#define __NR_madvise 238
|
||||
+#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 268
|
||||
#define __NR_membarrier 374
|
||||
#define __NR_memfd_create 353
|
||||
diff --git a/sysdeps/unix/sysv/linux/microblaze/arch-syscall.h b/sysdeps/unix/sysv/linux/microblaze/arch-syscall.h
|
||||
index 6865b1693c..91e1630f7b 100644
|
||||
--- a/sysdeps/unix/sysv/linux/microblaze/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/microblaze/arch-syscall.h
|
||||
@@ -95,8 +95,11 @@
|
||||
#define __NR_ftruncate 93
|
||||
#define __NR_ftruncate64 194
|
||||
#define __NR_futex 240
|
||||
+#define __NR_futex_requeue 456
|
||||
#define __NR_futex_time64 422
|
||||
+#define __NR_futex_wait 455
|
||||
#define __NR_futex_waitv 449
|
||||
+#define __NR_futex_wake 454
|
||||
#define __NR_futimesat 299
|
||||
#define __NR_get_kernel_syms 130
|
||||
#define __NR_get_mempolicy 275
|
||||
@@ -183,6 +186,7 @@
|
||||
#define __NR_lstat 107
|
||||
#define __NR_lstat64 196
|
||||
#define __NR_madvise 219
|
||||
+#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 274
|
||||
#define __NR_membarrier 390
|
||||
#define __NR_memfd_create 386
|
||||
diff --git a/sysdeps/unix/sysv/linux/mips/mips32/arch-syscall.h b/sysdeps/unix/sysv/linux/mips/mips32/arch-syscall.h
|
||||
index b13ace8e1c..d75af97467 100644
|
||||
--- a/sysdeps/unix/sysv/linux/mips/mips32/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/mips/mips32/arch-syscall.h
|
||||
@@ -94,8 +94,11 @@
|
||||
#define __NR_ftruncate 4093
|
||||
#define __NR_ftruncate64 4212
|
||||
#define __NR_futex 4238
|
||||
+#define __NR_futex_requeue 4456
|
||||
#define __NR_futex_time64 4422
|
||||
+#define __NR_futex_wait 4455
|
||||
#define __NR_futex_waitv 4449
|
||||
+#define __NR_futex_wake 4454
|
||||
#define __NR_futimesat 4292
|
||||
#define __NR_get_kernel_syms 4130
|
||||
#define __NR_get_mempolicy 4269
|
||||
@@ -173,6 +176,7 @@
|
||||
#define __NR_lstat 4107
|
||||
#define __NR_lstat64 4214
|
||||
#define __NR_madvise 4218
|
||||
+#define __NR_map_shadow_stack 4453
|
||||
#define __NR_mbind 4268
|
||||
#define __NR_membarrier 4358
|
||||
#define __NR_memfd_create 4354
|
||||
diff --git a/sysdeps/unix/sysv/linux/mips/mips64/n32/arch-syscall.h b/sysdeps/unix/sysv/linux/mips/mips64/n32/arch-syscall.h
|
||||
index b7a7c0dfa7..05bf7d251d 100644
|
||||
--- a/sysdeps/unix/sysv/linux/mips/mips64/n32/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/mips/mips64/n32/arch-syscall.h
|
||||
@@ -87,8 +87,11 @@
|
||||
#define __NR_fsync 6072
|
||||
#define __NR_ftruncate 6075
|
||||
#define __NR_futex 6194
|
||||
+#define __NR_futex_requeue 6456
|
||||
#define __NR_futex_time64 6422
|
||||
+#define __NR_futex_wait 6455
|
||||
#define __NR_futex_waitv 6449
|
||||
+#define __NR_futex_wake 6454
|
||||
#define __NR_futimesat 6255
|
||||
#define __NR_get_kernel_syms 6170
|
||||
#define __NR_get_mempolicy 6232
|
||||
@@ -159,6 +162,7 @@
|
||||
#define __NR_lsetxattr 6181
|
||||
#define __NR_lstat 6006
|
||||
#define __NR_madvise 6027
|
||||
+#define __NR_map_shadow_stack 6453
|
||||
#define __NR_mbind 6231
|
||||
#define __NR_membarrier 6322
|
||||
#define __NR_memfd_create 6318
|
||||
diff --git a/sysdeps/unix/sysv/linux/mips/mips64/n64/arch-syscall.h b/sysdeps/unix/sysv/linux/mips/mips64/n64/arch-syscall.h
|
||||
index e5d7f91f48..41ffaf3255 100644
|
||||
--- a/sysdeps/unix/sysv/linux/mips/mips64/n64/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/mips/mips64/n64/arch-syscall.h
|
||||
@@ -80,7 +80,10 @@
|
||||
#define __NR_fsync 5072
|
||||
#define __NR_ftruncate 5075
|
||||
#define __NR_futex 5194
|
||||
+#define __NR_futex_requeue 5456
|
||||
+#define __NR_futex_wait 5455
|
||||
#define __NR_futex_waitv 5449
|
||||
+#define __NR_futex_wake 5454
|
||||
#define __NR_futimesat 5251
|
||||
#define __NR_get_kernel_syms 5170
|
||||
#define __NR_get_mempolicy 5228
|
||||
@@ -150,6 +153,7 @@
|
||||
#define __NR_lsetxattr 5181
|
||||
#define __NR_lstat 5006
|
||||
#define __NR_madvise 5027
|
||||
+#define __NR_map_shadow_stack 5453
|
||||
#define __NR_mbind 5227
|
||||
#define __NR_membarrier 5318
|
||||
#define __NR_memfd_create 5314
|
||||
diff --git a/sysdeps/unix/sysv/linux/nios2/arch-syscall.h b/sysdeps/unix/sysv/linux/nios2/arch-syscall.h
|
||||
index 89950cc33a..d94e7e9ee9 100644
|
||||
--- a/sysdeps/unix/sysv/linux/nios2/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/nios2/arch-syscall.h
|
||||
@@ -70,8 +70,11 @@
|
||||
#define __NR_fsync 82
|
||||
#define __NR_ftruncate64 46
|
||||
#define __NR_futex 98
|
||||
+#define __NR_futex_requeue 456
|
||||
#define __NR_futex_time64 422
|
||||
+#define __NR_futex_wait 455
|
||||
#define __NR_futex_waitv 449
|
||||
+#define __NR_futex_wake 454
|
||||
#define __NR_get_mempolicy 236
|
||||
#define __NR_get_robust_list 100
|
||||
#define __NR_getcpu 168
|
||||
@@ -134,6 +137,7 @@
|
||||
#define __NR_lremovexattr 15
|
||||
#define __NR_lsetxattr 6
|
||||
#define __NR_madvise 233
|
||||
+#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 235
|
||||
#define __NR_membarrier 283
|
||||
#define __NR_memfd_create 279
|
||||
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/arch-syscall.h b/sysdeps/unix/sysv/linux/powerpc/powerpc32/arch-syscall.h
|
||||
index 64683bcb76..b5522e8889 100644
|
||||
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/arch-syscall.h
|
||||
@@ -93,8 +93,11 @@
|
||||
#define __NR_ftruncate 93
|
||||
#define __NR_ftruncate64 194
|
||||
#define __NR_futex 221
|
||||
+#define __NR_futex_requeue 456
|
||||
#define __NR_futex_time64 422
|
||||
+#define __NR_futex_wait 455
|
||||
#define __NR_futex_waitv 449
|
||||
+#define __NR_futex_wake 454
|
||||
#define __NR_futimesat 290
|
||||
#define __NR_get_kernel_syms 130
|
||||
#define __NR_get_mempolicy 260
|
||||
@@ -173,6 +176,7 @@
|
||||
#define __NR_lstat 107
|
||||
#define __NR_lstat64 196
|
||||
#define __NR_madvise 205
|
||||
+#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 259
|
||||
#define __NR_membarrier 365
|
||||
#define __NR_memfd_create 360
|
||||
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/arch-syscall.h b/sysdeps/unix/sysv/linux/powerpc/powerpc64/arch-syscall.h
|
||||
index af1bbf32e8..162d782ae6 100644
|
||||
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/arch-syscall.h
|
||||
@@ -83,7 +83,10 @@
|
||||
#define __NR_ftime 35
|
||||
#define __NR_ftruncate 93
|
||||
#define __NR_futex 221
|
||||
+#define __NR_futex_requeue 456
|
||||
+#define __NR_futex_wait 455
|
||||
#define __NR_futex_waitv 449
|
||||
+#define __NR_futex_wake 454
|
||||
#define __NR_futimesat 290
|
||||
#define __NR_get_kernel_syms 130
|
||||
#define __NR_get_mempolicy 260
|
||||
@@ -160,6 +163,7 @@
|
||||
#define __NR_lsetxattr 210
|
||||
#define __NR_lstat 107
|
||||
#define __NR_madvise 205
|
||||
+#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 259
|
||||
#define __NR_membarrier 365
|
||||
#define __NR_memfd_create 360
|
||||
diff --git a/sysdeps/unix/sysv/linux/riscv/rv32/arch-syscall.h b/sysdeps/unix/sysv/linux/riscv/rv32/arch-syscall.h
|
||||
index 56e3088cbf..013222e5de 100644
|
||||
--- a/sysdeps/unix/sysv/linux/riscv/rv32/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/riscv/rv32/arch-syscall.h
|
||||
@@ -61,8 +61,11 @@
|
||||
#define __NR_fstatfs64 44
|
||||
#define __NR_fsync 82
|
||||
#define __NR_ftruncate64 46
|
||||
+#define __NR_futex_requeue 456
|
||||
#define __NR_futex_time64 422
|
||||
+#define __NR_futex_wait 455
|
||||
#define __NR_futex_waitv 449
|
||||
+#define __NR_futex_wake 454
|
||||
#define __NR_get_mempolicy 236
|
||||
#define __NR_get_robust_list 100
|
||||
#define __NR_getcpu 168
|
||||
@@ -121,6 +124,7 @@
|
||||
#define __NR_lremovexattr 15
|
||||
#define __NR_lsetxattr 6
|
||||
#define __NR_madvise 233
|
||||
+#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 235
|
||||
#define __NR_membarrier 283
|
||||
#define __NR_memfd_create 279
|
||||
diff --git a/sysdeps/unix/sysv/linux/riscv/rv64/arch-syscall.h b/sysdeps/unix/sysv/linux/riscv/rv64/arch-syscall.h
|
||||
index 508161b47a..d03dad8200 100644
|
||||
--- a/sysdeps/unix/sysv/linux/riscv/rv64/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/riscv/rv64/arch-syscall.h
|
||||
@@ -64,7 +64,10 @@
|
||||
#define __NR_fsync 82
|
||||
#define __NR_ftruncate 46
|
||||
#define __NR_futex 98
|
||||
+#define __NR_futex_requeue 456
|
||||
+#define __NR_futex_wait 455
|
||||
#define __NR_futex_waitv 449
|
||||
+#define __NR_futex_wake 454
|
||||
#define __NR_get_mempolicy 236
|
||||
#define __NR_get_robust_list 100
|
||||
#define __NR_getcpu 168
|
||||
@@ -126,6 +129,7 @@
|
||||
#define __NR_lseek 62
|
||||
#define __NR_lsetxattr 6
|
||||
#define __NR_madvise 233
|
||||
+#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 235
|
||||
#define __NR_membarrier 283
|
||||
#define __NR_memfd_create 279
|
||||
diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/arch-syscall.h b/sysdeps/unix/sysv/linux/s390/s390-32/arch-syscall.h
|
||||
index 1498ebf42e..98e6b68b31 100644
|
||||
--- a/sysdeps/unix/sysv/linux/s390/s390-32/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/s390/s390-32/arch-syscall.h
|
||||
@@ -92,8 +92,11 @@
|
||||
#define __NR_ftruncate 93
|
||||
#define __NR_ftruncate64 194
|
||||
#define __NR_futex 238
|
||||
+#define __NR_futex_requeue 456
|
||||
#define __NR_futex_time64 422
|
||||
+#define __NR_futex_wait 455
|
||||
#define __NR_futex_waitv 449
|
||||
+#define __NR_futex_wake 454
|
||||
#define __NR_futimesat 292
|
||||
#define __NR_get_kernel_syms 130
|
||||
#define __NR_get_mempolicy 269
|
||||
@@ -177,6 +180,7 @@
|
||||
#define __NR_lstat 107
|
||||
#define __NR_lstat64 196
|
||||
#define __NR_madvise 219
|
||||
+#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 268
|
||||
#define __NR_membarrier 356
|
||||
#define __NR_memfd_create 350
|
||||
diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/arch-syscall.h b/sysdeps/unix/sysv/linux/s390/s390-64/arch-syscall.h
|
||||
index 624d71b56d..951fbd7c97 100644
|
||||
--- a/sysdeps/unix/sysv/linux/s390/s390-64/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/s390/s390-64/arch-syscall.h
|
||||
@@ -78,7 +78,10 @@
|
||||
#define __NR_fsync 118
|
||||
#define __NR_ftruncate 93
|
||||
#define __NR_futex 238
|
||||
+#define __NR_futex_requeue 456
|
||||
+#define __NR_futex_wait 455
|
||||
#define __NR_futex_waitv 449
|
||||
+#define __NR_futex_wake 454
|
||||
#define __NR_futimesat 292
|
||||
#define __NR_get_kernel_syms 130
|
||||
#define __NR_get_mempolicy 269
|
||||
@@ -151,6 +154,7 @@
|
||||
#define __NR_lsetxattr 225
|
||||
#define __NR_lstat 107
|
||||
#define __NR_madvise 219
|
||||
+#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 268
|
||||
#define __NR_membarrier 356
|
||||
#define __NR_memfd_create 350
|
||||
diff --git a/sysdeps/unix/sysv/linux/sh/arch-syscall.h b/sysdeps/unix/sysv/linux/sh/arch-syscall.h
|
||||
index 37211f5f8c..6b4418bcae 100644
|
||||
--- a/sysdeps/unix/sysv/linux/sh/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/sh/arch-syscall.h
|
||||
@@ -91,8 +91,11 @@
|
||||
#define __NR_ftruncate 93
|
||||
#define __NR_ftruncate64 194
|
||||
#define __NR_futex 240
|
||||
+#define __NR_futex_requeue 456
|
||||
#define __NR_futex_time64 422
|
||||
+#define __NR_futex_wait 455
|
||||
#define __NR_futex_waitv 449
|
||||
+#define __NR_futex_wake 454
|
||||
#define __NR_futimesat 299
|
||||
#define __NR_get_mempolicy 275
|
||||
#define __NR_get_robust_list 312
|
||||
@@ -170,6 +173,7 @@
|
||||
#define __NR_lstat 107
|
||||
#define __NR_lstat64 196
|
||||
#define __NR_madvise 219
|
||||
+#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 274
|
||||
#define __NR_membarrier 378
|
||||
#define __NR_memfd_create 374
|
||||
diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/arch-syscall.h b/sysdeps/unix/sysv/linux/sparc/sparc32/arch-syscall.h
|
||||
index 8093abcc9c..4f9460b1a3 100644
|
||||
--- a/sysdeps/unix/sysv/linux/sparc/sparc32/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/sparc/sparc32/arch-syscall.h
|
||||
@@ -93,8 +93,11 @@
|
||||
#define __NR_ftruncate 130
|
||||
#define __NR_ftruncate64 84
|
||||
#define __NR_futex 142
|
||||
+#define __NR_futex_requeue 456
|
||||
#define __NR_futex_time64 422
|
||||
+#define __NR_futex_wait 455
|
||||
#define __NR_futex_waitv 449
|
||||
+#define __NR_futex_wake 454
|
||||
#define __NR_futimesat 288
|
||||
#define __NR_get_kernel_syms 223
|
||||
#define __NR_get_mempolicy 304
|
||||
@@ -175,6 +178,7 @@
|
||||
#define __NR_lstat 40
|
||||
#define __NR_lstat64 132
|
||||
#define __NR_madvise 75
|
||||
+#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 303
|
||||
#define __NR_membarrier 351
|
||||
#define __NR_memfd_create 348
|
||||
diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/arch-syscall.h b/sysdeps/unix/sysv/linux/sparc/sparc64/arch-syscall.h
|
||||
index d25ccfb571..129ce50646 100644
|
||||
--- a/sysdeps/unix/sysv/linux/sparc/sparc64/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/sparc/sparc64/arch-syscall.h
|
||||
@@ -84,7 +84,10 @@
|
||||
#define __NR_fsync 95
|
||||
#define __NR_ftruncate 130
|
||||
#define __NR_futex 142
|
||||
+#define __NR_futex_requeue 456
|
||||
+#define __NR_futex_wait 455
|
||||
#define __NR_futex_waitv 449
|
||||
+#define __NR_futex_wake 454
|
||||
#define __NR_futimesat 288
|
||||
#define __NR_get_kernel_syms 223
|
||||
#define __NR_get_mempolicy 304
|
||||
@@ -158,6 +161,7 @@
|
||||
#define __NR_lstat 40
|
||||
#define __NR_lstat64 132
|
||||
#define __NR_madvise 75
|
||||
+#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 303
|
||||
#define __NR_membarrier 351
|
||||
#define __NR_memfd_create 348
|
||||
diff --git a/sysdeps/unix/sysv/linux/syscall-names.list b/sysdeps/unix/sysv/linux/syscall-names.list
|
||||
index c039d5c37f..aac065e7b3 100644
|
||||
--- a/sysdeps/unix/sysv/linux/syscall-names.list
|
||||
+++ b/sysdeps/unix/sysv/linux/syscall-names.list
|
||||
@@ -21,8 +21,8 @@
|
||||
# This file can list all potential system calls. The names are only
|
||||
# used if the installed kernel headers also provide them.
|
||||
|
||||
-# The list of system calls is current as of Linux 6.6.
|
||||
-kernel 6.6
|
||||
+# The list of system calls is current as of Linux 6.7.
|
||||
+kernel 6.7
|
||||
|
||||
FAST_atomic_update
|
||||
FAST_cmpxchg
|
||||
@@ -147,8 +147,11 @@ ftime
|
||||
ftruncate
|
||||
ftruncate64
|
||||
futex
|
||||
+futex_requeue
|
||||
futex_time64
|
||||
+futex_wait
|
||||
futex_waitv
|
||||
+futex_wake
|
||||
futimesat
|
||||
get_kernel_syms
|
||||
get_mempolicy
|
||||
diff --git a/sysdeps/unix/sysv/linux/x86_64/64/arch-syscall.h b/sysdeps/unix/sysv/linux/x86_64/64/arch-syscall.h
|
||||
index 5e4c9e901c..4fa5b942c5 100644
|
||||
--- a/sysdeps/unix/sysv/linux/x86_64/64/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/x86_64/64/arch-syscall.h
|
||||
@@ -80,7 +80,10 @@
|
||||
#define __NR_fsync 74
|
||||
#define __NR_ftruncate 77
|
||||
#define __NR_futex 202
|
||||
+#define __NR_futex_requeue 456
|
||||
+#define __NR_futex_wait 455
|
||||
#define __NR_futex_waitv 449
|
||||
+#define __NR_futex_wake 454
|
||||
#define __NR_futimesat 261
|
||||
#define __NR_get_kernel_syms 177
|
||||
#define __NR_get_mempolicy 239
|
||||
diff --git a/sysdeps/unix/sysv/linux/x86_64/x32/arch-syscall.h b/sysdeps/unix/sysv/linux/x86_64/x32/arch-syscall.h
|
||||
index dd5e196272..b9db8bc5be 100644
|
||||
--- a/sysdeps/unix/sysv/linux/x86_64/x32/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/x86_64/x32/arch-syscall.h
|
||||
@@ -76,7 +76,10 @@
|
||||
#define __NR_fsync 1073741898
|
||||
#define __NR_ftruncate 1073741901
|
||||
#define __NR_futex 1073742026
|
||||
+#define __NR_futex_requeue 1073742280
|
||||
+#define __NR_futex_wait 1073742279
|
||||
#define __NR_futex_waitv 1073742273
|
||||
+#define __NR_futex_wake 1073742278
|
||||
#define __NR_futimesat 1073742085
|
||||
#define __NR_get_mempolicy 1073742063
|
||||
#define __NR_get_robust_list 1073742355
|
@ -0,0 +1,756 @@
|
||||
commit 3de2f8755c6c036dcd0b1f4acd6bcdefe0e775c0
|
||||
Author: Joseph Myers <josmyers@redhat.com>
|
||||
Date: Wed Mar 13 13:57:56 2024 +0000
|
||||
|
||||
Update syscall lists for Linux 6.8
|
||||
|
||||
Linux 6.8 adds five new syscalls. Update syscall-names.list and
|
||||
regenerate the arch-syscall.h headers with build-many-glibcs.py
|
||||
update-syscalls.
|
||||
|
||||
Tested with build-many-glibcs.py.
|
||||
|
||||
Modified for RHEL by: Patsy Griffin <patsy@redhat.com>
|
||||
|
||||
diff --git a/sysdeps/unix/sysv/linux/aarch64/arch-syscall.h b/sysdeps/unix/sysv/linux/aarch64/arch-syscall.h
|
||||
index 1713897f85..7ee8a2167a 100644
|
||||
--- a/sysdeps/unix/sysv/linux/aarch64/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/aarch64/arch-syscall.h
|
||||
@@ -122,12 +122,16 @@
|
||||
#define __NR_lgetxattr 9
|
||||
#define __NR_linkat 37
|
||||
#define __NR_listen 201
|
||||
+#define __NR_listmount 458
|
||||
#define __NR_listxattr 11
|
||||
#define __NR_llistxattr 12
|
||||
#define __NR_lookup_dcookie 18
|
||||
#define __NR_lremovexattr 15
|
||||
#define __NR_lseek 62
|
||||
#define __NR_lsetxattr 6
|
||||
+#define __NR_lsm_get_self_attr 459
|
||||
+#define __NR_lsm_list_modules 461
|
||||
+#define __NR_lsm_set_self_attr 460
|
||||
#define __NR_madvise 233
|
||||
#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 235
|
||||
@@ -276,6 +280,7 @@
|
||||
#define __NR_socketpair 199
|
||||
#define __NR_splice 76
|
||||
#define __NR_statfs 43
|
||||
+#define __NR_statmount 457
|
||||
#define __NR_statx 291
|
||||
#define __NR_swapoff 225
|
||||
#define __NR_swapon 224
|
||||
diff --git a/sysdeps/unix/sysv/linux/alpha/arch-syscall.h b/sysdeps/unix/sysv/linux/alpha/arch-syscall.h
|
||||
index 5457d2d8ae..0f4ea7670b 100644
|
||||
--- a/sysdeps/unix/sysv/linux/alpha/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/alpha/arch-syscall.h
|
||||
@@ -150,12 +150,16 @@
|
||||
#define __NR_link 9
|
||||
#define __NR_linkat 458
|
||||
#define __NR_listen 106
|
||||
+#define __NR_listmount 568
|
||||
#define __NR_listxattr 388
|
||||
#define __NR_llistxattr 389
|
||||
#define __NR_lookup_dcookie 406
|
||||
#define __NR_lremovexattr 392
|
||||
#define __NR_lseek 19
|
||||
#define __NR_lsetxattr 383
|
||||
+#define __NR_lsm_get_self_attr 569
|
||||
+#define __NR_lsm_list_modules 571
|
||||
+#define __NR_lsm_set_self_attr 570
|
||||
#define __NR_lstat 68
|
||||
#define __NR_lstat64 426
|
||||
#define __NR_madvise 75
|
||||
@@ -441,6 +445,7 @@
|
||||
#define __NR_stat64 425
|
||||
#define __NR_statfs 328
|
||||
#define __NR_statfs64 528
|
||||
+#define __NR_statmount 567
|
||||
#define __NR_statx 522
|
||||
#define __NR_swapoff 304
|
||||
#define __NR_swapon 322
|
||||
diff --git a/sysdeps/unix/sysv/linux/arc/arch-syscall.h b/sysdeps/unix/sysv/linux/arc/arch-syscall.h
|
||||
index a66471c83a..90359482a8 100644
|
||||
--- a/sysdeps/unix/sysv/linux/arc/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/arc/arch-syscall.h
|
||||
@@ -126,12 +126,16 @@
|
||||
#define __NR_lgetxattr 9
|
||||
#define __NR_linkat 37
|
||||
#define __NR_listen 201
|
||||
+#define __NR_listmount 458
|
||||
#define __NR_listxattr 11
|
||||
#define __NR_llistxattr 12
|
||||
#define __NR_llseek 62
|
||||
#define __NR_lookup_dcookie 18
|
||||
#define __NR_lremovexattr 15
|
||||
#define __NR_lsetxattr 6
|
||||
+#define __NR_lsm_get_self_attr 459
|
||||
+#define __NR_lsm_list_modules 461
|
||||
+#define __NR_lsm_set_self_attr 460
|
||||
#define __NR_madvise 233
|
||||
#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 235
|
||||
@@ -278,6 +282,7 @@
|
||||
#define __NR_socketpair 199
|
||||
#define __NR_splice 76
|
||||
#define __NR_statfs64 43
|
||||
+#define __NR_statmount 457
|
||||
#define __NR_statx 291
|
||||
#define __NR_swapoff 225
|
||||
#define __NR_swapon 224
|
||||
diff --git a/sysdeps/unix/sysv/linux/arm/arch-syscall.h b/sysdeps/unix/sysv/linux/arm/arch-syscall.h
|
||||
index 74a57f4520..4930167a03 100644
|
||||
--- a/sysdeps/unix/sysv/linux/arm/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/arm/arch-syscall.h
|
||||
@@ -164,12 +164,16 @@
|
||||
#define __NR_link 9
|
||||
#define __NR_linkat 330
|
||||
#define __NR_listen 284
|
||||
+#define __NR_listmount 458
|
||||
#define __NR_listxattr 232
|
||||
#define __NR_llistxattr 233
|
||||
#define __NR_lookup_dcookie 249
|
||||
#define __NR_lremovexattr 236
|
||||
#define __NR_lseek 19
|
||||
#define __NR_lsetxattr 227
|
||||
+#define __NR_lsm_get_self_attr 459
|
||||
+#define __NR_lsm_list_modules 461
|
||||
+#define __NR_lsm_set_self_attr 460
|
||||
#define __NR_lstat 107
|
||||
#define __NR_lstat64 196
|
||||
#define __NR_madvise 220
|
||||
@@ -361,6 +365,7 @@
|
||||
#define __NR_stat64 195
|
||||
#define __NR_statfs 99
|
||||
#define __NR_statfs64 266
|
||||
+#define __NR_statmount 457
|
||||
#define __NR_statx 397
|
||||
#define __NR_swapoff 115
|
||||
#define __NR_swapon 87
|
||||
diff --git a/sysdeps/unix/sysv/linux/csky/arch-syscall.h b/sysdeps/unix/sysv/linux/csky/arch-syscall.h
|
||||
index ba7632e018..3f16a29f57 100644
|
||||
--- a/sysdeps/unix/sysv/linux/csky/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/csky/arch-syscall.h
|
||||
@@ -131,12 +131,16 @@
|
||||
#define __NR_lgetxattr 9
|
||||
#define __NR_linkat 37
|
||||
#define __NR_listen 201
|
||||
+#define __NR_listmount 458
|
||||
#define __NR_listxattr 11
|
||||
#define __NR_llistxattr 12
|
||||
#define __NR_llseek 62
|
||||
#define __NR_lookup_dcookie 18
|
||||
#define __NR_lremovexattr 15
|
||||
#define __NR_lsetxattr 6
|
||||
+#define __NR_lsm_get_self_attr 459
|
||||
+#define __NR_lsm_list_modules 461
|
||||
+#define __NR_lsm_set_self_attr 460
|
||||
#define __NR_madvise 233
|
||||
#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 235
|
||||
@@ -291,6 +295,7 @@
|
||||
#define __NR_socketpair 199
|
||||
#define __NR_splice 76
|
||||
#define __NR_statfs64 43
|
||||
+#define __NR_statmount 457
|
||||
#define __NR_statx 291
|
||||
#define __NR_swapoff 225
|
||||
#define __NR_swapon 224
|
||||
diff --git a/sysdeps/unix/sysv/linux/hppa/arch-syscall.h b/sysdeps/unix/sysv/linux/hppa/arch-syscall.h
|
||||
index 483706de9b..a1b2c819d6 100644
|
||||
--- a/sysdeps/unix/sysv/linux/hppa/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/hppa/arch-syscall.h
|
||||
@@ -155,12 +155,16 @@
|
||||
#define __NR_link 9
|
||||
#define __NR_linkat 283
|
||||
#define __NR_listen 32
|
||||
+#define __NR_listmount 458
|
||||
#define __NR_listxattr 244
|
||||
#define __NR_llistxattr 245
|
||||
#define __NR_lookup_dcookie 223
|
||||
#define __NR_lremovexattr 248
|
||||
#define __NR_lseek 19
|
||||
#define __NR_lsetxattr 239
|
||||
+#define __NR_lsm_get_self_attr 459
|
||||
+#define __NR_lsm_list_modules 461
|
||||
+#define __NR_lsm_set_self_attr 460
|
||||
#define __NR_lstat 84
|
||||
#define __NR_lstat64 198
|
||||
#define __NR_madvise 119
|
||||
@@ -339,6 +343,7 @@
|
||||
#define __NR_stat64 101
|
||||
#define __NR_statfs 99
|
||||
#define __NR_statfs64 298
|
||||
+#define __NR_statmount 457
|
||||
#define __NR_statx 349
|
||||
#define __NR_stime 25
|
||||
#define __NR_swapoff 115
|
||||
diff --git a/sysdeps/unix/sysv/linux/i386/arch-syscall.h b/sysdeps/unix/sysv/linux/i386/arch-syscall.h
|
||||
index 21c1308bb3..cc775432d6 100644
|
||||
--- a/sysdeps/unix/sysv/linux/i386/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/i386/arch-syscall.h
|
||||
@@ -176,6 +176,7 @@
|
||||
#define __NR_link 9
|
||||
#define __NR_linkat 303
|
||||
#define __NR_listen 363
|
||||
+#define __NR_listmount 458
|
||||
#define __NR_listxattr 232
|
||||
#define __NR_llistxattr 233
|
||||
#define __NR_lock 53
|
||||
@@ -183,6 +184,9 @@
|
||||
#define __NR_lremovexattr 236
|
||||
#define __NR_lseek 19
|
||||
#define __NR_lsetxattr 227
|
||||
+#define __NR_lsm_get_self_attr 459
|
||||
+#define __NR_lsm_list_modules 461
|
||||
+#define __NR_lsm_set_self_attr 460
|
||||
#define __NR_lstat 107
|
||||
#define __NR_lstat64 196
|
||||
#define __NR_madvise 219
|
||||
@@ -386,6 +390,7 @@
|
||||
#define __NR_stat64 195
|
||||
#define __NR_statfs 99
|
||||
#define __NR_statfs64 268
|
||||
+#define __NR_statmount 457
|
||||
#define __NR_statx 383
|
||||
#define __NR_stime 25
|
||||
#define __NR_stty 31
|
||||
diff --git a/sysdeps/unix/sysv/linux/m68k/arch-syscall.h b/sysdeps/unix/sysv/linux/m68k/arch-syscall.h
|
||||
index 6d788e3440..79f277dd5b 100644
|
||||
--- a/sysdeps/unix/sysv/linux/m68k/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/m68k/arch-syscall.h
|
||||
@@ -171,12 +171,16 @@
|
||||
#define __NR_link 9
|
||||
#define __NR_linkat 296
|
||||
#define __NR_listen 360
|
||||
+#define __NR_listmount 458
|
||||
#define __NR_listxattr 229
|
||||
#define __NR_llistxattr 230
|
||||
#define __NR_lookup_dcookie 248
|
||||
#define __NR_lremovexattr 233
|
||||
#define __NR_lseek 19
|
||||
#define __NR_lsetxattr 224
|
||||
+#define __NR_lsm_get_self_attr 459
|
||||
+#define __NR_lsm_list_modules 461
|
||||
+#define __NR_lsm_set_self_attr 460
|
||||
#define __NR_lstat 107
|
||||
#define __NR_lstat64 196
|
||||
#define __NR_madvise 238
|
||||
@@ -373,6 +377,7 @@
|
||||
#define __NR_stat64 195
|
||||
#define __NR_statfs 99
|
||||
#define __NR_statfs64 263
|
||||
+#define __NR_statmount 457
|
||||
#define __NR_statx 379
|
||||
#define __NR_stime 25
|
||||
#define __NR_swapoff 115
|
||||
diff --git a/sysdeps/unix/sysv/linux/microblaze/arch-syscall.h b/sysdeps/unix/sysv/linux/microblaze/arch-syscall.h
|
||||
index 91e1630f7b..779d5d5d70 100644
|
||||
--- a/sysdeps/unix/sysv/linux/microblaze/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/microblaze/arch-syscall.h
|
||||
@@ -176,6 +176,7 @@
|
||||
#define __NR_link 9
|
||||
#define __NR_linkat 303
|
||||
#define __NR_listen 348
|
||||
+#define __NR_listmount 458
|
||||
#define __NR_listxattr 232
|
||||
#define __NR_llistxattr 233
|
||||
#define __NR_lock 53
|
||||
@@ -183,6 +184,9 @@
|
||||
#define __NR_lremovexattr 236
|
||||
#define __NR_lseek 19
|
||||
#define __NR_lsetxattr 227
|
||||
+#define __NR_lsm_get_self_attr 459
|
||||
+#define __NR_lsm_list_modules 461
|
||||
+#define __NR_lsm_set_self_attr 460
|
||||
#define __NR_lstat 107
|
||||
#define __NR_lstat64 196
|
||||
#define __NR_madvise 219
|
||||
@@ -389,6 +393,7 @@
|
||||
#define __NR_stat64 195
|
||||
#define __NR_statfs 99
|
||||
#define __NR_statfs64 268
|
||||
+#define __NR_statmount 457
|
||||
#define __NR_statx 398
|
||||
#define __NR_stime 25
|
||||
#define __NR_stty 31
|
||||
diff --git a/sysdeps/unix/sysv/linux/mips/mips32/arch-syscall.h b/sysdeps/unix/sysv/linux/mips/mips32/arch-syscall.h
|
||||
index d75af97467..86ffd5ce84 100644
|
||||
--- a/sysdeps/unix/sysv/linux/mips/mips32/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/mips/mips32/arch-syscall.h
|
||||
@@ -166,6 +166,7 @@
|
||||
#define __NR_link 4009
|
||||
#define __NR_linkat 4296
|
||||
#define __NR_listen 4174
|
||||
+#define __NR_listmount 4458
|
||||
#define __NR_listxattr 4230
|
||||
#define __NR_llistxattr 4231
|
||||
#define __NR_lock 4053
|
||||
@@ -173,6 +174,9 @@
|
||||
#define __NR_lremovexattr 4234
|
||||
#define __NR_lseek 4019
|
||||
#define __NR_lsetxattr 4225
|
||||
+#define __NR_lsm_get_self_attr 4459
|
||||
+#define __NR_lsm_list_modules 4461
|
||||
+#define __NR_lsm_set_self_attr 4460
|
||||
#define __NR_lstat 4107
|
||||
#define __NR_lstat64 4214
|
||||
#define __NR_madvise 4218
|
||||
@@ -362,6 +366,7 @@
|
||||
#define __NR_stat64 4213
|
||||
#define __NR_statfs 4099
|
||||
#define __NR_statfs64 4255
|
||||
+#define __NR_statmount 4457
|
||||
#define __NR_statx 4366
|
||||
#define __NR_stime 4025
|
||||
#define __NR_stty 4031
|
||||
diff --git a/sysdeps/unix/sysv/linux/mips/mips64/n32/arch-syscall.h b/sysdeps/unix/sysv/linux/mips/mips64/n32/arch-syscall.h
|
||||
index 05bf7d251d..5d37a686e5 100644
|
||||
--- a/sysdeps/unix/sysv/linux/mips/mips64/n32/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/mips/mips64/n32/arch-syscall.h
|
||||
@@ -154,12 +154,16 @@
|
||||
#define __NR_link 6084
|
||||
#define __NR_linkat 6259
|
||||
#define __NR_listen 6049
|
||||
+#define __NR_listmount 6458
|
||||
#define __NR_listxattr 6186
|
||||
#define __NR_llistxattr 6187
|
||||
#define __NR_lookup_dcookie 6206
|
||||
#define __NR_lremovexattr 6190
|
||||
#define __NR_lseek 6008
|
||||
#define __NR_lsetxattr 6181
|
||||
+#define __NR_lsm_get_self_attr 6459
|
||||
+#define __NR_lsm_list_modules 6461
|
||||
+#define __NR_lsm_set_self_attr 6460
|
||||
#define __NR_lstat 6006
|
||||
#define __NR_madvise 6027
|
||||
#define __NR_map_shadow_stack 6453
|
||||
@@ -332,6 +336,7 @@
|
||||
#define __NR_stat 6004
|
||||
#define __NR_statfs 6134
|
||||
#define __NR_statfs64 6217
|
||||
+#define __NR_statmount 6457
|
||||
#define __NR_statx 6330
|
||||
#define __NR_swapoff 6163
|
||||
#define __NR_swapon 6162
|
||||
diff --git a/sysdeps/unix/sysv/linux/mips/mips64/n64/arch-syscall.h b/sysdeps/unix/sysv/linux/mips/mips64/n64/arch-syscall.h
|
||||
index 41ffaf3255..9b1e846e76 100644
|
||||
--- a/sysdeps/unix/sysv/linux/mips/mips64/n64/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/mips/mips64/n64/arch-syscall.h
|
||||
@@ -145,12 +145,16 @@
|
||||
#define __NR_link 5084
|
||||
#define __NR_linkat 5255
|
||||
#define __NR_listen 5049
|
||||
+#define __NR_listmount 5458
|
||||
#define __NR_listxattr 5186
|
||||
#define __NR_llistxattr 5187
|
||||
#define __NR_lookup_dcookie 5206
|
||||
#define __NR_lremovexattr 5190
|
||||
#define __NR_lseek 5008
|
||||
#define __NR_lsetxattr 5181
|
||||
+#define __NR_lsm_get_self_attr 5459
|
||||
+#define __NR_lsm_list_modules 5461
|
||||
+#define __NR_lsm_set_self_attr 5460
|
||||
#define __NR_lstat 5006
|
||||
#define __NR_madvise 5027
|
||||
#define __NR_map_shadow_stack 5453
|
||||
@@ -313,6 +317,7 @@
|
||||
#define __NR_splice 5263
|
||||
#define __NR_stat 5004
|
||||
#define __NR_statfs 5134
|
||||
+#define __NR_statmount 5457
|
||||
#define __NR_statx 5326
|
||||
#define __NR_swapoff 5163
|
||||
#define __NR_swapon 5162
|
||||
diff --git a/sysdeps/unix/sysv/linux/nios2/arch-syscall.h b/sysdeps/unix/sysv/linux/nios2/arch-syscall.h
|
||||
index d94e7e9ee9..abbc9ab6b0 100644
|
||||
--- a/sysdeps/unix/sysv/linux/nios2/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/nios2/arch-syscall.h
|
||||
@@ -130,12 +130,16 @@
|
||||
#define __NR_lgetxattr 9
|
||||
#define __NR_linkat 37
|
||||
#define __NR_listen 201
|
||||
+#define __NR_listmount 458
|
||||
#define __NR_listxattr 11
|
||||
#define __NR_llistxattr 12
|
||||
#define __NR_llseek 62
|
||||
#define __NR_lookup_dcookie 18
|
||||
#define __NR_lremovexattr 15
|
||||
#define __NR_lsetxattr 6
|
||||
+#define __NR_lsm_get_self_attr 459
|
||||
+#define __NR_lsm_list_modules 461
|
||||
+#define __NR_lsm_set_self_attr 460
|
||||
#define __NR_madvise 233
|
||||
#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 235
|
||||
@@ -290,6 +294,7 @@
|
||||
#define __NR_socketpair 199
|
||||
#define __NR_splice 76
|
||||
#define __NR_statfs64 43
|
||||
+#define __NR_statmount 457
|
||||
#define __NR_statx 291
|
||||
#define __NR_swapoff 225
|
||||
#define __NR_swapon 224
|
||||
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc32/arch-syscall.h b/sysdeps/unix/sysv/linux/powerpc/powerpc32/arch-syscall.h
|
||||
index b5522e8889..af0d2b121e 100644
|
||||
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc32/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc32/arch-syscall.h
|
||||
@@ -166,6 +166,7 @@
|
||||
#define __NR_link 9
|
||||
#define __NR_linkat 294
|
||||
#define __NR_listen 329
|
||||
+#define __NR_listmount 458
|
||||
#define __NR_listxattr 215
|
||||
#define __NR_llistxattr 216
|
||||
#define __NR_lock 53
|
||||
@@ -173,6 +174,9 @@
|
||||
#define __NR_lremovexattr 219
|
||||
#define __NR_lseek 19
|
||||
#define __NR_lsetxattr 210
|
||||
+#define __NR_lsm_get_self_attr 459
|
||||
+#define __NR_lsm_list_modules 461
|
||||
+#define __NR_lsm_set_self_attr 460
|
||||
#define __NR_lstat 107
|
||||
#define __NR_lstat64 196
|
||||
#define __NR_madvise 205
|
||||
@@ -374,6 +378,7 @@
|
||||
#define __NR_stat64 195
|
||||
#define __NR_statfs 99
|
||||
#define __NR_statfs64 252
|
||||
+#define __NR_statmount 457
|
||||
#define __NR_statx 383
|
||||
#define __NR_stime 25
|
||||
#define __NR_stty 31
|
||||
diff --git a/sysdeps/unix/sysv/linux/powerpc/powerpc64/arch-syscall.h b/sysdeps/unix/sysv/linux/powerpc/powerpc64/arch-syscall.h
|
||||
index 162d782ae6..a4c70aa7fe 100644
|
||||
--- a/sysdeps/unix/sysv/linux/powerpc/powerpc64/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/powerpc/powerpc64/arch-syscall.h
|
||||
@@ -154,6 +154,7 @@
|
||||
#define __NR_link 9
|
||||
#define __NR_linkat 294
|
||||
#define __NR_listen 329
|
||||
+#define __NR_listmount 458
|
||||
#define __NR_listxattr 215
|
||||
#define __NR_llistxattr 216
|
||||
#define __NR_lock 53
|
||||
@@ -161,6 +162,9 @@
|
||||
#define __NR_lremovexattr 219
|
||||
#define __NR_lseek 19
|
||||
#define __NR_lsetxattr 210
|
||||
+#define __NR_lsm_get_self_attr 459
|
||||
+#define __NR_lsm_list_modules 461
|
||||
+#define __NR_lsm_set_self_attr 460
|
||||
#define __NR_lstat 107
|
||||
#define __NR_madvise 205
|
||||
#define __NR_map_shadow_stack 453
|
||||
@@ -352,6 +356,7 @@
|
||||
#define __NR_stat 106
|
||||
#define __NR_statfs 99
|
||||
#define __NR_statfs64 252
|
||||
+#define __NR_statmount 457
|
||||
#define __NR_statx 383
|
||||
#define __NR_stime 25
|
||||
#define __NR_stty 31
|
||||
diff --git a/sysdeps/unix/sysv/linux/riscv/rv32/arch-syscall.h b/sysdeps/unix/sysv/linux/riscv/rv32/arch-syscall.h
|
||||
index 013222e5de..7315d164d6 100644
|
||||
--- a/sysdeps/unix/sysv/linux/riscv/rv32/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/riscv/rv32/arch-syscall.h
|
||||
@@ -117,12 +117,16 @@
|
||||
#define __NR_lgetxattr 9
|
||||
#define __NR_linkat 37
|
||||
#define __NR_listen 201
|
||||
+#define __NR_listmount 458
|
||||
#define __NR_listxattr 11
|
||||
#define __NR_llistxattr 12
|
||||
#define __NR_llseek 62
|
||||
#define __NR_lookup_dcookie 18
|
||||
#define __NR_lremovexattr 15
|
||||
#define __NR_lsetxattr 6
|
||||
+#define __NR_lsm_get_self_attr 459
|
||||
+#define __NR_lsm_list_modules 461
|
||||
+#define __NR_lsm_set_self_attr 460
|
||||
#define __NR_madvise 233
|
||||
#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 235
|
||||
@@ -268,6 +272,7 @@
|
||||
#define __NR_socketpair 199
|
||||
#define __NR_splice 76
|
||||
#define __NR_statfs64 43
|
||||
+#define __NR_statmount 457
|
||||
#define __NR_statx 291
|
||||
#define __NR_swapoff 225
|
||||
#define __NR_swapon 224
|
||||
diff --git a/sysdeps/unix/sysv/linux/riscv/rv64/arch-syscall.h b/sysdeps/unix/sysv/linux/riscv/rv64/arch-syscall.h
|
||||
index d03dad8200..31a1130db9 100644
|
||||
--- a/sysdeps/unix/sysv/linux/riscv/rv64/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/riscv/rv64/arch-syscall.h
|
||||
@@ -122,12 +122,16 @@
|
||||
#define __NR_lgetxattr 9
|
||||
#define __NR_linkat 37
|
||||
#define __NR_listen 201
|
||||
+#define __NR_listmount 458
|
||||
#define __NR_listxattr 11
|
||||
#define __NR_llistxattr 12
|
||||
#define __NR_lookup_dcookie 18
|
||||
#define __NR_lremovexattr 15
|
||||
#define __NR_lseek 62
|
||||
#define __NR_lsetxattr 6
|
||||
+#define __NR_lsm_get_self_attr 459
|
||||
+#define __NR_lsm_list_modules 461
|
||||
+#define __NR_lsm_set_self_attr 460
|
||||
#define __NR_madvise 233
|
||||
#define __NR_map_shadow_stack 453
|
||||
#define __NR_mbind 235
|
||||
@@ -277,6 +281,7 @@
|
||||
#define __NR_socketpair 199
|
||||
#define __NR_splice 76
|
||||
#define __NR_statfs 43
|
||||
+#define __NR_statmount 457
|
||||
#define __NR_statx 291
|
||||
#define __NR_swapoff 225
|
||||
#define __NR_swapon 224
|
||||
diff --git a/sysdeps/unix/sysv/linux/s390/s390-32/arch-syscall.h b/sysdeps/unix/sysv/linux/s390/s390-32/arch-syscall.h
|
||||
index 98e6b68b31..cf8569304d 100644
|
||||
--- a/sysdeps/unix/sysv/linux/s390/s390-32/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/s390/s390-32/arch-syscall.h
|
||||
@@ -171,12 +171,16 @@
|
||||
#define __NR_link 9
|
||||
#define __NR_linkat 296
|
||||
#define __NR_listen 363
|
||||
+#define __NR_listmount 458
|
||||
#define __NR_listxattr 230
|
||||
#define __NR_llistxattr 231
|
||||
#define __NR_lookup_dcookie 110
|
||||
#define __NR_lremovexattr 234
|
||||
#define __NR_lseek 19
|
||||
#define __NR_lsetxattr 225
|
||||
+#define __NR_lsm_get_self_attr 459
|
||||
+#define __NR_lsm_list_modules 461
|
||||
+#define __NR_lsm_set_self_attr 460
|
||||
#define __NR_lstat 107
|
||||
#define __NR_lstat64 196
|
||||
#define __NR_madvise 219
|
||||
@@ -372,6 +376,7 @@
|
||||
#define __NR_stat64 195
|
||||
#define __NR_statfs 99
|
||||
#define __NR_statfs64 265
|
||||
+#define __NR_statmount 457
|
||||
#define __NR_statx 379
|
||||
#define __NR_stime 25
|
||||
#define __NR_swapoff 115
|
||||
diff --git a/sysdeps/unix/sysv/linux/s390/s390-64/arch-syscall.h b/sysdeps/unix/sysv/linux/s390/s390-64/arch-syscall.h
|
||||
index 951fbd7c97..f3536ed03f 100644
|
||||
--- a/sysdeps/unix/sysv/linux/s390/s390-64/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/s390/s390-64/arch-syscall.h
|
||||
@@ -146,12 +146,16 @@
|
||||
#define __NR_link 9
|
||||
#define __NR_linkat 296
|
||||
#define __NR_listen 363
|
||||
+#define __NR_listmount 458
|
||||
#define __NR_listxattr 230
|
||||
#define __NR_llistxattr 231
|
||||
#define __NR_lookup_dcookie 110
|
||||
#define __NR_lremovexattr 234
|
||||
#define __NR_lseek 19
|
||||
#define __NR_lsetxattr 225
|
||||
+#define __NR_lsm_get_self_attr 459
|
||||
+#define __NR_lsm_list_modules 461
|
||||
+#define __NR_lsm_set_self_attr 460
|
||||
#define __NR_lstat 107
|
||||
#define __NR_madvise 219
|
||||
#define __NR_map_shadow_stack 453
|
||||
@@ -329,6 +333,7 @@
|
||||
#define __NR_stat 106
|
||||
#define __NR_statfs 99
|
||||
#define __NR_statfs64 265
|
||||
+#define __NR_statmount 457
|
||||
#define __NR_statx 379
|
||||
#define __NR_swapoff 115
|
||||
#define __NR_swapon 87
|
||||
diff --git a/sysdeps/unix/sysv/linux/sh/arch-syscall.h b/sysdeps/unix/sysv/linux/sh/arch-syscall.h
|
||||
index 6b4418bcae..0c88bf10c7 100644
|
||||
--- a/sysdeps/unix/sysv/linux/sh/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/sh/arch-syscall.h
|
||||
@@ -164,12 +164,16 @@
|
||||
#define __NR_link 9
|
||||
#define __NR_linkat 303
|
||||
#define __NR_listen 343
|
||||
+#define __NR_listmount 458
|
||||
#define __NR_listxattr 232
|
||||
#define __NR_llistxattr 233
|
||||
#define __NR_lookup_dcookie 253
|
||||
#define __NR_lremovexattr 236
|
||||
#define __NR_lseek 19
|
||||
#define __NR_lsetxattr 227
|
||||
+#define __NR_lsm_get_self_attr 459
|
||||
+#define __NR_lsm_list_modules 461
|
||||
+#define __NR_lsm_set_self_attr 460
|
||||
#define __NR_lstat 107
|
||||
#define __NR_lstat64 196
|
||||
#define __NR_madvise 219
|
||||
@@ -365,6 +369,7 @@
|
||||
#define __NR_stat64 195
|
||||
#define __NR_statfs 99
|
||||
#define __NR_statfs64 268
|
||||
+#define __NR_statmount 457
|
||||
#define __NR_statx 383
|
||||
#define __NR_stime 25
|
||||
#define __NR_swapoff 115
|
||||
diff --git a/sysdeps/unix/sysv/linux/sparc/sparc32/arch-syscall.h b/sysdeps/unix/sysv/linux/sparc/sparc32/arch-syscall.h
|
||||
index 4f9460b1a3..19fa614624 100644
|
||||
--- a/sysdeps/unix/sysv/linux/sparc/sparc32/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/sparc/sparc32/arch-syscall.h
|
||||
@@ -169,12 +169,16 @@
|
||||
#define __NR_link 9
|
||||
#define __NR_linkat 292
|
||||
#define __NR_listen 354
|
||||
+#define __NR_listmount 458
|
||||
#define __NR_listxattr 178
|
||||
#define __NR_llistxattr 179
|
||||
#define __NR_lookup_dcookie 208
|
||||
#define __NR_lremovexattr 182
|
||||
#define __NR_lseek 19
|
||||
#define __NR_lsetxattr 170
|
||||
+#define __NR_lsm_get_self_attr 459
|
||||
+#define __NR_lsm_list_modules 461
|
||||
+#define __NR_lsm_set_self_attr 460
|
||||
#define __NR_lstat 40
|
||||
#define __NR_lstat64 132
|
||||
#define __NR_madvise 75
|
||||
@@ -370,6 +374,7 @@
|
||||
#define __NR_stat64 139
|
||||
#define __NR_statfs 157
|
||||
#define __NR_statfs64 234
|
||||
+#define __NR_statmount 457
|
||||
#define __NR_statx 360
|
||||
#define __NR_stime 233
|
||||
#define __NR_swapoff 213
|
||||
diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/arch-syscall.h b/sysdeps/unix/sysv/linux/sparc/sparc64/arch-syscall.h
|
||||
index 129ce50646..18516f20cb 100644
|
||||
--- a/sysdeps/unix/sysv/linux/sparc/sparc64/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/sparc/sparc64/arch-syscall.h
|
||||
@@ -152,12 +152,16 @@
|
||||
#define __NR_link 9
|
||||
#define __NR_linkat 292
|
||||
#define __NR_listen 354
|
||||
+#define __NR_listmount 458
|
||||
#define __NR_listxattr 178
|
||||
#define __NR_llistxattr 179
|
||||
#define __NR_lookup_dcookie 208
|
||||
#define __NR_lremovexattr 182
|
||||
#define __NR_lseek 19
|
||||
#define __NR_lsetxattr 170
|
||||
+#define __NR_lsm_get_self_attr 459
|
||||
+#define __NR_lsm_list_modules 461
|
||||
+#define __NR_lsm_set_self_attr 460
|
||||
#define __NR_lstat 40
|
||||
#define __NR_lstat64 132
|
||||
#define __NR_madvise 75
|
||||
@@ -339,6 +343,7 @@
|
||||
#define __NR_stat64 139
|
||||
#define __NR_statfs 157
|
||||
#define __NR_statfs64 234
|
||||
+#define __NR_statmount 457
|
||||
#define __NR_statx 360
|
||||
#define __NR_stime 233
|
||||
#define __NR_swapoff 213
|
||||
diff --git a/sysdeps/unix/sysv/linux/syscall-names.list b/sysdeps/unix/sysv/linux/syscall-names.list
|
||||
index aac065e7b3..6557bcfde4 100644
|
||||
--- a/sysdeps/unix/sysv/linux/syscall-names.list
|
||||
+++ b/sysdeps/unix/sysv/linux/syscall-names.list
|
||||
@@ -21,8 +21,8 @@
|
||||
# This file can list all potential system calls. The names are only
|
||||
# used if the installed kernel headers also provide them.
|
||||
|
||||
-# The list of system calls is current as of Linux 6.7.
|
||||
-kernel 6.7
|
||||
+# The list of system calls is current as of Linux 6.8.
|
||||
+kernel 6.8
|
||||
|
||||
FAST_atomic_update
|
||||
FAST_cmpxchg
|
||||
@@ -239,6 +239,7 @@ lgetxattr
|
||||
link
|
||||
linkat
|
||||
listen
|
||||
+listmount
|
||||
listxattr
|
||||
llistxattr
|
||||
llseek
|
||||
@@ -247,6 +248,9 @@ lookup_dcookie
|
||||
lremovexattr
|
||||
lseek
|
||||
lsetxattr
|
||||
+lsm_get_self_attr
|
||||
+lsm_list_modules
|
||||
+lsm_set_self_attr
|
||||
lstat
|
||||
lstat64
|
||||
madvise
|
||||
@@ -593,6 +597,7 @@ stat
|
||||
stat64
|
||||
statfs
|
||||
statfs64
|
||||
+statmount
|
||||
statx
|
||||
stime
|
||||
stty
|
||||
diff --git a/sysdeps/unix/sysv/linux/x86_64/64/arch-syscall.h b/sysdeps/unix/sysv/linux/x86_64/64/arch-syscall.h
|
||||
index 4fa5b942c5..b122216013 100644
|
||||
--- a/sysdeps/unix/sysv/linux/x86_64/64/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/x86_64/64/arch-syscall.h
|
||||
@@ -149,12 +149,16 @@
|
||||
#define __NR_link 86
|
||||
#define __NR_linkat 265
|
||||
#define __NR_listen 50
|
||||
+#define __NR_listmount 458
|
||||
#define __NR_listxattr 194
|
||||
#define __NR_llistxattr 195
|
||||
#define __NR_lookup_dcookie 212
|
||||
#define __NR_lremovexattr 198
|
||||
#define __NR_lseek 8
|
||||
#define __NR_lsetxattr 189
|
||||
+#define __NR_lsm_get_self_attr 459
|
||||
+#define __NR_lsm_list_modules 461
|
||||
+#define __NR_lsm_set_self_attr 460
|
||||
#define __NR_lstat 6
|
||||
#define __NR_madvise 28
|
||||
#define __NR_map_shadow_stack 453
|
||||
@@ -321,6 +325,7 @@
|
||||
#define __NR_splice 275
|
||||
#define __NR_stat 4
|
||||
#define __NR_statfs 137
|
||||
+#define __NR_statmount 457
|
||||
#define __NR_statx 332
|
||||
#define __NR_swapoff 168
|
||||
#define __NR_swapon 167
|
||||
diff --git a/sysdeps/unix/sysv/linux/x86_64/x32/arch-syscall.h b/sysdeps/unix/sysv/linux/x86_64/x32/arch-syscall.h
|
||||
index b9db8bc5be..3040a47d72 100644
|
||||
--- a/sysdeps/unix/sysv/linux/x86_64/x32/arch-syscall.h
|
||||
+++ b/sysdeps/unix/sysv/linux/x86_64/x32/arch-syscall.h
|
||||
@@ -143,12 +143,16 @@
|
||||
#define __NR_link 1073741910
|
||||
#define __NR_linkat 1073742089
|
||||
#define __NR_listen 1073741874
|
||||
+#define __NR_listmount 1073742282
|
||||
#define __NR_listxattr 1073742018
|
||||
#define __NR_llistxattr 1073742019
|
||||
#define __NR_lookup_dcookie 1073742036
|
||||
#define __NR_lremovexattr 1073742022
|
||||
#define __NR_lseek 1073741832
|
||||
#define __NR_lsetxattr 1073742013
|
||||
+#define __NR_lsm_get_self_attr 1073742283
|
||||
+#define __NR_lsm_list_modules 1073742285
|
||||
+#define __NR_lsm_set_self_attr 1073742284
|
||||
#define __NR_lstat 1073741830
|
||||
#define __NR_madvise 1073741852
|
||||
#define __NR_mbind 1073742061
|
||||
@@ -312,6 +316,7 @@
|
||||
#define __NR_splice 1073742099
|
||||
#define __NR_stat 1073741828
|
||||
#define __NR_statfs 1073741961
|
||||
+#define __NR_statmount 1073742281
|
||||
#define __NR_statx 1073742156
|
||||
#define __NR_swapoff 1073741992
|
||||
#define __NR_swapon 1073741991
|
@ -0,0 +1,28 @@
|
||||
commit cf0ca8d52e1653d4aa4311a4649af8dc541ce6b4
|
||||
Author: Joseph Myers <josmyers@redhat.com>
|
||||
Date: Mon May 20 13:10:31 2024 +0000
|
||||
|
||||
Update syscall lists for Linux 6.9
|
||||
|
||||
Linux 6.9 has no new syscalls. Update the version number in
|
||||
syscall-names.list to reflect that it is still current for 6.9.
|
||||
|
||||
Tested with build-many-glibcs.py.
|
||||
|
||||
Modified for RHEL by: Patsy Griffin <patsy@redhat.com>
|
||||
|
||||
diff --git a/sysdeps/unix/sysv/linux/syscall-names.list b/sysdeps/unix/sysv/linux/syscall-names.list
|
||||
index 6557bcfde4..672d39eaad 100644
|
||||
--- a/sysdeps/unix/sysv/linux/syscall-names.list
|
||||
+++ b/sysdeps/unix/sysv/linux/syscall-names.list
|
||||
@@ -21,8 +21,8 @@
|
||||
# This file can list all potential system calls. The names are only
|
||||
# used if the installed kernel headers also provide them.
|
||||
|
||||
-# The list of system calls is current as of Linux 6.8.
|
||||
-kernel 6.8
|
||||
+# The list of system calls is current as of Linux 6.9.
|
||||
+kernel 6.9
|
||||
|
||||
FAST_atomic_update
|
||||
FAST_cmpxchg
|
@ -0,0 +1,26 @@
|
||||
From cb8c78b2ffa0b77ae453b2d328d7e2fe5186ef2a Mon Sep 17 00:00:00 2001
|
||||
From: Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
||||
Date: Tue, 31 Oct 2023 13:32:35 -0300
|
||||
Subject: linux: Add MMAP_ABOVE4G from Linux 6.6 to sys/mman.h
|
||||
|
||||
x86 added the flag (29f890d1050fc099f) for CET enabled.
|
||||
|
||||
Also update tst-mman-consts.py test.
|
||||
|
||||
Conflicts:
|
||||
sysdeps/unix/sysv/linux/tst-mman-consts.py
|
||||
(removed patch to keep alerting about kernel differences)
|
||||
sysdeps/unix/sysv/linux/x86/bits/mman.h
|
||||
(adapted to missing __USE_MISC conditional upstream)
|
||||
|
||||
diff -rup a/sysdeps/unix/sysv/linux/x86/bits/mman.h b/sysdeps/unix/sysv/linux/x86/bits/mman.h
|
||||
--- a/sysdeps/unix/sysv/linux/x86/bits/mman.h 2021-08-01 21:33:43.000000000 -0400
|
||||
+++ b/sysdeps/unix/sysv/linux/x86/bits/mman.h 2024-05-29 14:03:12.426182715 -0400
|
||||
@@ -26,6 +26,7 @@
|
||||
/* Other flags. */
|
||||
#ifdef __USE_MISC
|
||||
# define MAP_32BIT 0x40 /* Only give out 32-bit addresses. */
|
||||
+# define MAP_ABOVE4G 0x80 /* Only map above 4GB. */
|
||||
#endif
|
||||
|
||||
#include <bits/mman-map-flags-generic.h>
|
@ -0,0 +1,44 @@
|
||||
commit 0e16db440cc73d2cdd94e439c0efa1ec43d92b2a
|
||||
Author: Florian Weimer <fweimer@redhat.com>
|
||||
Date: Tue Aug 13 15:52:34 2024 +0200
|
||||
|
||||
manual: Document generic printf error codes
|
||||
|
||||
Describe EOVERFLOW, ENOMEN, EILSEQ.
|
||||
|
||||
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
|
||||
|
||||
diff --git a/manual/stdio.texi b/manual/stdio.texi
|
||||
index 567f6780011f9db1..41298b87a4a6c7d9 100644
|
||||
--- a/manual/stdio.texi
|
||||
+++ b/manual/stdio.texi
|
||||
@@ -2318,6 +2318,29 @@ the easiest way to make sure you have all the right prototypes is to
|
||||
just include @file{stdio.h}.
|
||||
@pindex stdio.h
|
||||
|
||||
+The @code{printf} family shares the error codes listed below.
|
||||
+Individual functions may report additional @code{errno} values if they
|
||||
+fail.
|
||||
+
|
||||
+@table @code
|
||||
+@item EOVERFLOW
|
||||
+The number of written bytes would have exceeded @code{INT_MAX}, and thus
|
||||
+could not be represented in the return type @code{int}.
|
||||
+
|
||||
+@item ENOMEM
|
||||
+The function could not allocate memory during processing. Long argument
|
||||
+lists and certain floating point conversions may require memory
|
||||
+allocation, as does initialization of an output stream upon first use.
|
||||
+
|
||||
+@item EILSEQ
|
||||
+POSIX specifies this error code should be used if a wide character is
|
||||
+encountered that does not have a matching valid character. @Theglibc{}
|
||||
+always performs transliteration, using a replacement character if
|
||||
+necessary, so this error condition cannot occur on output. However,
|
||||
+@theglibc{} uses @code{EILSEQ} to indicate that an input character
|
||||
+sequence (wide or multi-byte) could not be converted successfully.
|
||||
+@end table
|
||||
+
|
||||
@deftypefun int printf (const char *@var{template}, @dots{})
|
||||
@standards{ISO, stdio.h}
|
||||
@safety{@prelim{}@mtsafe{@mtslocale{}}@asunsafe{@asucorrupt{} @ascuheap{}}@acunsafe{@acsmem{} @aculock{} @acucorrupt{}}}
|
@ -0,0 +1,53 @@
|
||||
commit 2be0572f3a41d5d5a8bb3b2b04244b7c01ac0f58
|
||||
Author: Florian Weimer <fweimer@redhat.com>
|
||||
Date: Tue Aug 13 15:52:34 2024 +0200
|
||||
|
||||
manual: Document dprintf and vdprintf
|
||||
|
||||
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
|
||||
|
||||
diff --git a/manual/stdio.texi b/manual/stdio.texi
|
||||
index 41298b87a4a6c7d9..d3d855fc62b8768b 100644
|
||||
--- a/manual/stdio.texi
|
||||
+++ b/manual/stdio.texi
|
||||
@@ -2483,6 +2483,26 @@ store the result in which case @code{-1} is returned. This was
|
||||
changed in order to comply with the @w{ISO C99} standard.
|
||||
@end deftypefun
|
||||
|
||||
+@deftypefun dprintf (int @var{fd}, @var{template}, ...)
|
||||
+@standards{POSIX, stdio.h}
|
||||
+@safety{@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
|
||||
+This function formats its arguments according to @var{template} and
|
||||
+writes the result to the file descriptor @var{fd}, using the
|
||||
+@code{write} function. It returns the number of bytes written, or a
|
||||
+negative value if there was an error. In the error case, @code{errno}
|
||||
+is set appropriately. The possible @code{errno} values depend on the
|
||||
+type of the file descriptor @var{fd}, in addition to the general
|
||||
+@code{printf} error codes.
|
||||
+
|
||||
+The number of calls to @code{write} is unspecified, and some @code{write}
|
||||
+calls may have happened even if @code{dprintf} returns with an error.
|
||||
+
|
||||
+@strong{Portability Note:} POSIX does not require that this function is
|
||||
+async-signal-safe, and @theglibc{} implementation is not. However, some
|
||||
+other systems offer this function as an async-signal-safe alternative to
|
||||
+@code{fprintf}. @xref{POSIX Safety Concepts}.
|
||||
+@end deftypefun
|
||||
+
|
||||
@node Dynamic Output
|
||||
@subsection Dynamically Allocating Formatted Output
|
||||
|
||||
@@ -2696,6 +2716,13 @@ The @code{obstack_vprintf} function is the equivalent of
|
||||
as for @code{vprintf}.@refill
|
||||
@end deftypefun
|
||||
|
||||
+@deftypefun int vdprintf (int @var{fd}, const char *@var{template}, va_list @var{ap})
|
||||
+@standards{POSIX, stdio.h}
|
||||
+@safety{@mtsafe{@mtslocale{}}@asunsafe{@ascuheap{}}@acunsafe{@acsmem{}}}
|
||||
+The @code{vdprintf} is the equivalent of @code{dprintf}, but processes
|
||||
+an argument list.
|
||||
+@end deftypefun
|
||||
+
|
||||
Here's an example showing how you might use @code{vfprintf}. This is a
|
||||
function that prints error messages to the stream @code{stderr}, along
|
||||
with a prefix indicating the name of the program
|
@ -0,0 +1,50 @@
|
||||
commit 10de4a47ef3f481592e3c62eb07bcda23e9fde4d
|
||||
Author: Arjun Shankar <arjun@redhat.com>
|
||||
Date: Mon Jul 29 14:30:59 2024 +0200
|
||||
|
||||
manual/stdio: Clarify putc and putwc
|
||||
|
||||
The manual entry for `putc' described what "most systems" do instead of
|
||||
describing the glibc implementation and its guarantees. This commit
|
||||
fixes that by warning that putc may be implemented as a macro that
|
||||
double-evaluates `stream', and removing the performance claim.
|
||||
|
||||
Even though the current `putc' implementation does not double-evaluate
|
||||
`stream', offering this obscure guarantee as an extension to what
|
||||
POSIX allows does not seem very useful.
|
||||
|
||||
The entry for `putwc' is also edited to bring it in line with `putc'.
|
||||
Reviewed-by: Florian Weimer <fweimer@redhat.com>
|
||||
|
||||
diff --git a/manual/stdio.texi b/manual/stdio.texi
|
||||
index fd7ed0cedc7c1a59..0c9a7ce4a9df4c05 100644
|
||||
--- a/manual/stdio.texi
|
||||
+++ b/manual/stdio.texi
|
||||
@@ -903,21 +903,21 @@ This function is a GNU extension.
|
||||
@deftypefun int putc (int @var{c}, FILE *@var{stream})
|
||||
@standards{ISO, stdio.h}
|
||||
@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{} @aculock{}}}
|
||||
-This is just like @code{fputc}, except that most systems implement it as
|
||||
+This is just like @code{fputc}, except that it may be implemented as
|
||||
a macro, making it faster. One consequence is that it may evaluate the
|
||||
@var{stream} argument more than once, which is an exception to the
|
||||
-general rule for macros. @code{putc} is usually the best function to
|
||||
-use for writing a single character.
|
||||
+general rule for macros. Therefore, @var{stream} should never be an
|
||||
+expression with side-effects.
|
||||
@end deftypefun
|
||||
|
||||
@deftypefun wint_t putwc (wchar_t @var{wc}, FILE *@var{stream})
|
||||
@standards{ISO, wchar.h}
|
||||
@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{} @aculock{}}}
|
||||
-This is just like @code{fputwc}, except that it can be implement as
|
||||
+This is just like @code{fputwc}, except that it may be implemented as
|
||||
a macro, making it faster. One consequence is that it may evaluate the
|
||||
@var{stream} argument more than once, which is an exception to the
|
||||
-general rule for macros. @code{putwc} is usually the best function to
|
||||
-use for writing a single wide character.
|
||||
+general rule for macros. Therefore, @var{stream} should never be an
|
||||
+expression with side-effects.
|
||||
@end deftypefun
|
||||
|
||||
@deftypefun int putc_unlocked (int @var{c}, FILE *@var{stream})
|
@ -0,0 +1,71 @@
|
||||
commit 942670c81dc8071dd75d6213e771daa5d2084cb6
|
||||
Author: Arjun Shankar <arjun@redhat.com>
|
||||
Date: Tue Jul 30 11:37:57 2024 +0200
|
||||
|
||||
manual/stdio: Further clarify putc, putwc, getc, and getwc
|
||||
|
||||
This is a follow-up to 10de4a47ef3f481592e3c62eb07bcda23e9fde4d that
|
||||
reworded the manual entries for putc and putwc and removed any
|
||||
performance claims.
|
||||
|
||||
This commit further clarifies these entries and brings getc and getwc in
|
||||
line with the descriptions of putc and putwc, removing any performance
|
||||
claims from them as well.
|
||||
Reviewed-by: Florian Weimer <fweimer@redhat.com>
|
||||
|
||||
diff --git a/manual/stdio.texi b/manual/stdio.texi
|
||||
index 0c9a7ce4a9df4c05..567f6780011f9db1 100644
|
||||
--- a/manual/stdio.texi
|
||||
+++ b/manual/stdio.texi
|
||||
@@ -904,20 +904,16 @@ This function is a GNU extension.
|
||||
@standards{ISO, stdio.h}
|
||||
@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{} @aculock{}}}
|
||||
This is just like @code{fputc}, except that it may be implemented as
|
||||
-a macro, making it faster. One consequence is that it may evaluate the
|
||||
-@var{stream} argument more than once, which is an exception to the
|
||||
-general rule for macros. Therefore, @var{stream} should never be an
|
||||
-expression with side-effects.
|
||||
+a macro and may evaluate the @var{stream} argument more than once.
|
||||
+Therefore, @var{stream} should never be an expression with side-effects.
|
||||
@end deftypefun
|
||||
|
||||
@deftypefun wint_t putwc (wchar_t @var{wc}, FILE *@var{stream})
|
||||
@standards{ISO, wchar.h}
|
||||
@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@acucorrupt{} @aculock{}}}
|
||||
This is just like @code{fputwc}, except that it may be implemented as
|
||||
-a macro, making it faster. One consequence is that it may evaluate the
|
||||
-@var{stream} argument more than once, which is an exception to the
|
||||
-general rule for macros. Therefore, @var{stream} should never be an
|
||||
-expression with side-effects.
|
||||
+a macro and may evaluate the @var{stream} argument more than once.
|
||||
+Therefore, @var{stream} should never be an expression with side-effects.
|
||||
@end deftypefun
|
||||
|
||||
@deftypefun int putc_unlocked (int @var{c}, FILE *@var{stream})
|
||||
@@ -1110,20 +1106,17 @@ This function is a GNU extension.
|
||||
@deftypefun int getc (FILE *@var{stream})
|
||||
@standards{ISO, stdio.h}
|
||||
@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
|
||||
-This is just like @code{fgetc}, except that it is permissible (and
|
||||
-typical) for it to be implemented as a macro that evaluates the
|
||||
-@var{stream} argument more than once. @code{getc} is often highly
|
||||
-optimized, so it is usually the best function to use to read a single
|
||||
-character.
|
||||
+This is just like @code{fgetc}, except that it may be implemented as
|
||||
+a macro and may evaluate the @var{stream} argument more than once.
|
||||
+Therefore, @var{stream} should never be an expression with side-effects.
|
||||
@end deftypefun
|
||||
|
||||
@deftypefun wint_t getwc (FILE *@var{stream})
|
||||
@standards{ISO, wchar.h}
|
||||
@safety{@prelim{}@mtsafe{}@asunsafe{@asucorrupt{}}@acunsafe{@aculock{} @acucorrupt{}}}
|
||||
-This is just like @code{fgetwc}, except that it is permissible for it to
|
||||
-be implemented as a macro that evaluates the @var{stream} argument more
|
||||
-than once. @code{getwc} can be highly optimized, so it is usually the
|
||||
-best function to use to read a single wide character.
|
||||
+This is just like @code{fgetwc}, except that it may be implemented as
|
||||
+a macro and may evaluate the @var{stream} argument more than once.
|
||||
+Therefore, @var{stream} should never be an expression with side-effects.
|
||||
@end deftypefun
|
||||
|
||||
@deftypefun int getc_unlocked (FILE *@var{stream})
|
@ -0,0 +1,240 @@
|
||||
commit 3395157ff2b0657d70c36169156f67440205c8bf
|
||||
Author: Joe Simmons-Talbott <josimmon@redhat.com>
|
||||
Date: Tue May 14 14:36:50 2024 +0000
|
||||
|
||||
malloc: Improve aligned_alloc and calloc test coverage.
|
||||
|
||||
Add a DSO (malloc/tst-aligned_alloc-lib.so) that can be used during
|
||||
testing to interpose malloc with a call that randomly uses either
|
||||
aligned_alloc, __libc_malloc, or __libc_calloc in the place of malloc.
|
||||
Use LD_PRELOAD with the DSO to mirror malloc/tst-malloc.c testing as an
|
||||
example in malloc/tst-malloc-random.c. Add malloc/tst-aligned-alloc-random.c
|
||||
as another example that does a number of malloc calls with randomly sized,
|
||||
but limited to 0xffff, requests.
|
||||
|
||||
The intention is to be able to utilize existing malloc testing to ensure
|
||||
that similar allocation APIs are also exposed to the same rigors.
|
||||
|
||||
Reviewed-by: DJ Delorie <dj@redhat.com>
|
||||
|
||||
Conflicts:
|
||||
malloc/Makefile
|
||||
(usual tests conflict)
|
||||
|
||||
diff --git a/malloc/Makefile b/malloc/Makefile
|
||||
index cb4e027d28b179f0..e0fb433a15bad2c2 100644
|
||||
--- a/malloc/Makefile
|
||||
+++ b/malloc/Makefile
|
||||
@@ -44,6 +44,8 @@ tests := mallocbug tst-malloc tst-valloc tst-calloc tst-obstack \
|
||||
tst-safe-linking \
|
||||
tst-mallocalign1 \
|
||||
tst-malloc-alternate-path \
|
||||
+ tst-aligned-alloc-random \
|
||||
+ tst-malloc-random \
|
||||
|
||||
tests-static := \
|
||||
tst-interpose-static-nothread \
|
||||
@@ -123,6 +125,7 @@ extra-libs-others = $(extra-libs)
|
||||
|
||||
# Helper objects for some tests.
|
||||
extra-tests-objs += \
|
||||
+ tst-aligned_alloc-lib.so \
|
||||
tst-interpose-aux-nothread.o \
|
||||
tst-interpose-aux-thread.o \
|
||||
|
||||
@@ -130,6 +133,9 @@ test-extras = \
|
||||
tst-interpose-aux-nothread \
|
||||
tst-interpose-aux-thread \
|
||||
|
||||
+modules-names = \
|
||||
+ tst-aligned_alloc-lib
|
||||
+
|
||||
libmemusage-routines = memusage
|
||||
libmemusage-inhibit-o = $(filter-out .os,$(object-suffixes))
|
||||
|
||||
@@ -328,3 +334,9 @@ tst-mallocstate-malloc-check-ENV = LD_PRELOAD=$(objpfx)libc_malloc_debug.so
|
||||
# libc_malloc_debug.so.
|
||||
$(objpfx)tst-mallocstate: $(objpfx)libc_malloc_debug.so
|
||||
$(objpfx)tst-mallocstate-malloc-check: $(objpfx)libc_malloc_debug.so
|
||||
+
|
||||
+$(objpfx)tst-aligned-alloc-random.out: $(objpfx)tst-aligned_alloc-lib.so
|
||||
+$(objpfx)tst-malloc-random.out: $(objpfx)tst-aligned_alloc-lib.so
|
||||
+
|
||||
+tst-aligned-alloc-random-ENV = LD_PRELOAD=$(objpfx)tst-aligned_alloc-lib.so
|
||||
+tst-malloc-random-ENV = LD_PRELOAD=$(objpfx)tst-aligned_alloc-lib.so
|
||||
diff --git a/malloc/tst-aligned-alloc-random.c b/malloc/tst-aligned-alloc-random.c
|
||||
new file mode 100644
|
||||
index 0000000000000000..f2825ce38f04e04e
|
||||
--- /dev/null
|
||||
+++ b/malloc/tst-aligned-alloc-random.c
|
||||
@@ -0,0 +1,43 @@
|
||||
+/* Test for randomized malloc that calls aligned_alloc
|
||||
+ Copyright (C) 2024 Free Software Foundation, Inc.
|
||||
+ This file is part of the GNU C Library.
|
||||
+
|
||||
+ The GNU C Library is free software; you can redistribute it and/or
|
||||
+ modify it under the terms of the GNU Lesser General Public
|
||||
+ License as published by the Free Software Foundation; either
|
||||
+ version 2.1 of the License, or (at your option) any later version.
|
||||
+
|
||||
+ The GNU C Library is distributed in the hope that it will be useful,
|
||||
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
+ Lesser General Public License for more details.
|
||||
+
|
||||
+ You should have received a copy of the GNU Lesser General Public
|
||||
+ License along with the GNU C Library; if not, see
|
||||
+ <https://www.gnu.org/licenses/>. */
|
||||
+
|
||||
+#include <stdlib.h>
|
||||
+#include <support/check.h>
|
||||
+#include <time.h>
|
||||
+
|
||||
+static int
|
||||
+do_test (void)
|
||||
+{
|
||||
+ void *p1;
|
||||
+ int i;
|
||||
+
|
||||
+ srandom (time (NULL));
|
||||
+
|
||||
+ for (i = 0; i < 1024; i++)
|
||||
+ {
|
||||
+ size_t size = random () & 0xffff;
|
||||
+
|
||||
+ p1 = malloc (size);
|
||||
+ TEST_VERIFY (p1 != NULL);
|
||||
+ }
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+
|
||||
+#include <support/test-driver.c>
|
||||
diff --git a/malloc/tst-aligned_alloc-lib.c b/malloc/tst-aligned_alloc-lib.c
|
||||
new file mode 100644
|
||||
index 0000000000000000..0205df5acf6297a5
|
||||
--- /dev/null
|
||||
+++ b/malloc/tst-aligned_alloc-lib.c
|
||||
@@ -0,0 +1,72 @@
|
||||
+/* Module used for improved aligned_alloc testing.
|
||||
+ Copyright (C) 2024 Free Software Foundation, Inc.
|
||||
+ Copyright The GNU Toolchain Authors.
|
||||
+ This file is part of the GNU C Library.
|
||||
+
|
||||
+ The GNU C Library is free software; you can redistribute it and/or
|
||||
+ modify it under the terms of the GNU Lesser General Public License as
|
||||
+ published by the Free Software Foundation; either version 2.1 of the
|
||||
+ License, or (at your option) any later version.
|
||||
+
|
||||
+ The GNU C Library is distributed in the hope that it will be useful,
|
||||
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
+ Lesser General Public License for more details.
|
||||
+
|
||||
+ You should have received a copy of the GNU Lesser General Public
|
||||
+ License along with the GNU C Library; see the file COPYING.LIB. If
|
||||
+ not, see <https://www.gnu.org/licenses/>. */
|
||||
+
|
||||
+#include <array_length.h>
|
||||
+#include <libc-symbols.h>
|
||||
+#include <stdlib.h>
|
||||
+
|
||||
+extern void *__libc_malloc (size_t size);
|
||||
+extern void *__libc_calloc (size_t n, size_t size);
|
||||
+
|
||||
+int aligned_alloc_count = 0;
|
||||
+int libc_malloc_count = 0;
|
||||
+int libc_calloc_count = 0;
|
||||
+
|
||||
+/* Get a random alignment value. Biased towards the smaller values. Must be
|
||||
+ a power of 2. */
|
||||
+static size_t get_random_alignment (void)
|
||||
+{
|
||||
+ size_t aligns[] = {
|
||||
+ 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384
|
||||
+ };
|
||||
+
|
||||
+ return aligns[random () % array_length (aligns)];
|
||||
+}
|
||||
+
|
||||
+static void *get_random_alloc (size_t size)
|
||||
+{
|
||||
+ void *retval;
|
||||
+ size_t align;
|
||||
+
|
||||
+ switch (random() % 3)
|
||||
+ {
|
||||
+ case 1:
|
||||
+ align = get_random_alignment ();
|
||||
+ retval = aligned_alloc (align, size);
|
||||
+ aligned_alloc_count++;
|
||||
+ break;
|
||||
+ case 2:
|
||||
+ retval = __libc_calloc (1, size);
|
||||
+ libc_calloc_count++;
|
||||
+ break;
|
||||
+ default:
|
||||
+ retval = __libc_malloc (size);
|
||||
+ libc_malloc_count++;
|
||||
+ break;
|
||||
+ }
|
||||
+
|
||||
+ return retval;
|
||||
+}
|
||||
+
|
||||
+
|
||||
+void * __random_malloc (size_t size)
|
||||
+{
|
||||
+ return get_random_alloc (size);
|
||||
+}
|
||||
+strong_alias (__random_malloc, malloc)
|
||||
diff --git a/malloc/tst-malloc-random.c b/malloc/tst-malloc-random.c
|
||||
new file mode 100644
|
||||
index 0000000000000000..762b70c918cc6004
|
||||
--- /dev/null
|
||||
+++ b/malloc/tst-malloc-random.c
|
||||
@@ -0,0 +1,20 @@
|
||||
+/* Test malloc with random calls to aligned_alloc and calloc.
|
||||
+
|
||||
+ Copyright (C) 2024 Free Software Foundation, Inc.
|
||||
+ This file is part of the GNU C Library.
|
||||
+
|
||||
+ The GNU C Library is free software; you can redistribute it and/or
|
||||
+ modify it under the terms of the GNU Lesser General Public
|
||||
+ License as published by the Free Software Foundation; either
|
||||
+ version 2.1 of the License, or (at your option) any later version.
|
||||
+
|
||||
+ The GNU C Library is distributed in the hope that it will be useful,
|
||||
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
+ Lesser General Public License for more details.
|
||||
+
|
||||
+ You should have received a copy of the GNU Lesser General Public
|
||||
+ License along with the GNU C Library; if not, see
|
||||
+ <https://www.gnu.org/licenses/>. */
|
||||
+
|
||||
+#include "tst-malloc.c"
|
||||
diff --git a/malloc/tst-malloc.c b/malloc/tst-malloc.c
|
||||
index a587cbded66039fb..98be3ee254d75d4e 100644
|
||||
--- a/malloc/tst-malloc.c
|
||||
+++ b/malloc/tst-malloc.c
|
||||
@@ -19,7 +19,9 @@
|
||||
#include <errno.h>
|
||||
#include <malloc.h>
|
||||
#include <stdio.h>
|
||||
+#include <stdlib.h>
|
||||
#include <libc-diag.h>
|
||||
+#include <time.h>
|
||||
|
||||
static int errors = 0;
|
||||
|
||||
@@ -36,6 +38,8 @@ do_test (void)
|
||||
void *p, *q;
|
||||
int save;
|
||||
|
||||
+ srandom (time (NULL));
|
||||
+
|
||||
errno = 0;
|
||||
|
||||
DIAG_PUSH_NEEDS_COMMENT;
|
@ -0,0 +1,86 @@
|
||||
commit 9a27b566b2048f599048f2f4afe1cce06c4ef43d
|
||||
Author: Miguel Martín <mmartinv@redhat.com>
|
||||
Date: Tue Jul 16 17:14:56 2024 +0200
|
||||
|
||||
malloc: avoid global locks in tst-aligned_alloc-lib.c
|
||||
|
||||
Make sure the DSO used by aligned_alloc/calloc/malloc tests does not get
|
||||
a global lock on multithreaded tests.
|
||||
Reviewed-by: Arjun Shankar <arjun@redhat.com>
|
||||
|
||||
diff --git a/malloc/tst-aligned_alloc-lib.c b/malloc/tst-aligned_alloc-lib.c
|
||||
index 0205df5acf6297a5..9ef1f839c101a6ae 100644
|
||||
--- a/malloc/tst-aligned_alloc-lib.c
|
||||
+++ b/malloc/tst-aligned_alloc-lib.c
|
||||
@@ -17,37 +17,38 @@
|
||||
License along with the GNU C Library; see the file COPYING.LIB. If
|
||||
not, see <https://www.gnu.org/licenses/>. */
|
||||
|
||||
-#include <array_length.h>
|
||||
#include <libc-symbols.h>
|
||||
#include <stdlib.h>
|
||||
+#include <time.h>
|
||||
|
||||
extern void *__libc_malloc (size_t size);
|
||||
extern void *__libc_calloc (size_t n, size_t size);
|
||||
|
||||
+__thread unsigned int seed = 0;
|
||||
+
|
||||
int aligned_alloc_count = 0;
|
||||
int libc_malloc_count = 0;
|
||||
int libc_calloc_count = 0;
|
||||
|
||||
-/* Get a random alignment value. Biased towards the smaller values. Must be
|
||||
- a power of 2. */
|
||||
-static size_t get_random_alignment (void)
|
||||
-{
|
||||
- size_t aligns[] = {
|
||||
- 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384
|
||||
- };
|
||||
-
|
||||
- return aligns[random () % array_length (aligns)];
|
||||
-}
|
||||
-
|
||||
-static void *get_random_alloc (size_t size)
|
||||
+static void *
|
||||
+get_random_alloc (size_t size)
|
||||
{
|
||||
void *retval;
|
||||
size_t align;
|
||||
+ struct timespec tp;
|
||||
+
|
||||
+ if (seed == 0)
|
||||
+ {
|
||||
+ clock_gettime (CLOCK_REALTIME, &tp);
|
||||
+ seed = tp.tv_nsec;
|
||||
+ }
|
||||
|
||||
- switch (random() % 3)
|
||||
- {
|
||||
+ switch (rand_r (&seed) % 3)
|
||||
+ {
|
||||
case 1:
|
||||
- align = get_random_alignment ();
|
||||
+ /* Get a random alignment value. Biased towards the smaller
|
||||
+ * values up to 16384. Must be a power of 2. */
|
||||
+ align = 1 << rand_r (&seed) % 15;
|
||||
retval = aligned_alloc (align, size);
|
||||
aligned_alloc_count++;
|
||||
break;
|
||||
@@ -59,13 +60,13 @@ static void *get_random_alloc (size_t size)
|
||||
retval = __libc_malloc (size);
|
||||
libc_malloc_count++;
|
||||
break;
|
||||
- }
|
||||
+ }
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
||||
-
|
||||
-void * __random_malloc (size_t size)
|
||||
+void *
|
||||
+__random_malloc (size_t size)
|
||||
{
|
||||
return get_random_alloc (size);
|
||||
}
|
@ -0,0 +1,251 @@
|
||||
commit b0fbcb7d0051a68baf26b2aed51a8a31c34d68e5
|
||||
Author: Miguel Martín <mmartinv@redhat.com>
|
||||
Date: Tue Jul 16 17:14:57 2024 +0200
|
||||
|
||||
malloc: add multi-threaded tests for aligned_alloc/calloc/malloc
|
||||
|
||||
Improve aligned_alloc/calloc/malloc test coverage by adding
|
||||
multi-threaded tests with random memory allocations and with/without
|
||||
cross-thread memory deallocations.
|
||||
|
||||
Perform a number of memory allocation calls with random sizes limited
|
||||
to 0xffff.
|
||||
|
||||
Use the existing DSO ('malloc/tst-aligned_alloc-lib.c') to randomize
|
||||
allocator selection.
|
||||
|
||||
The multi-threaded allocation/deallocation is staged as described below:
|
||||
|
||||
- Stage 1: Half of the threads will be allocating memory and the
|
||||
other half will be waiting for them to finish the allocation.
|
||||
- Stage 2: Half of the threads will be allocating memory and the
|
||||
other half will be deallocating memory.
|
||||
- Stage 3: Half of the threads will be deallocating memory and the
|
||||
second half waiting on them to finish.
|
||||
|
||||
Add 'malloc/tst-aligned-alloc-random-thread.c' where each thread will
|
||||
deallocate only the memory that was previously allocated by itself.
|
||||
|
||||
Add 'malloc/tst-aligned-alloc-random-thread-cross.c' where each thread
|
||||
will deallocate memory that was previously allocated by another thread.
|
||||
|
||||
The intention is to be able to utilize existing malloc testing to ensure
|
||||
that similar allocation APIs are also exposed to the same rigors.
|
||||
Reviewed-by: Arjun Shankar <arjun@redhat.com>
|
||||
|
||||
Conflicts:
|
||||
malloc/Makefile
|
||||
(usual tests conflict)
|
||||
|
||||
diff --git a/malloc/Makefile b/malloc/Makefile
|
||||
index e0fb433a15bad2c2..9dc068f6b3a69caa 100644
|
||||
--- a/malloc/Makefile
|
||||
+++ b/malloc/Makefile
|
||||
@@ -46,6 +46,8 @@ tests := mallocbug tst-malloc tst-valloc tst-calloc tst-obstack \
|
||||
tst-malloc-alternate-path \
|
||||
tst-aligned-alloc-random \
|
||||
tst-malloc-random \
|
||||
+ tst-aligned-alloc-random-thread \
|
||||
+ tst-aligned-alloc-random-thread-cross \
|
||||
|
||||
tests-static := \
|
||||
tst-interpose-static-nothread \
|
||||
@@ -96,7 +98,9 @@ tests-exclude-mcheck = tst-mallocstate \
|
||||
tst-malloc-thread-fail \
|
||||
tst-malloc-usable-tunables \
|
||||
tst-malloc_info \
|
||||
- tst-compathooks-off tst-compathooks-on
|
||||
+ tst-compathooks-off tst-compathooks-on \
|
||||
+ tst-aligned-alloc-random-thread \
|
||||
+ tst-aligned-alloc-random-thread-cross \
|
||||
|
||||
tests-mcheck = $(filter-out $(tests-exclude-mcheck) $(tests-static), $(tests))
|
||||
endif
|
||||
@@ -336,7 +340,11 @@ $(objpfx)tst-mallocstate: $(objpfx)libc_malloc_debug.so
|
||||
$(objpfx)tst-mallocstate-malloc-check: $(objpfx)libc_malloc_debug.so
|
||||
|
||||
$(objpfx)tst-aligned-alloc-random.out: $(objpfx)tst-aligned_alloc-lib.so
|
||||
+$(objpfx)tst-aligned-alloc-random-thread.out: $(objpfx)tst-aligned_alloc-lib.so
|
||||
+$(objpfx)tst-aligned-alloc-random-thread-cross.out: $(objpfx)tst-aligned_alloc-lib.so
|
||||
$(objpfx)tst-malloc-random.out: $(objpfx)tst-aligned_alloc-lib.so
|
||||
|
||||
tst-aligned-alloc-random-ENV = LD_PRELOAD=$(objpfx)tst-aligned_alloc-lib.so
|
||||
+tst-aligned-alloc-random-thread-ENV = LD_PRELOAD=$(objpfx)tst-aligned_alloc-lib.so
|
||||
+tst-aligned-alloc-random-thread-cross-ENV = LD_PRELOAD=$(objpfx)tst-aligned_alloc-lib.so
|
||||
tst-malloc-random-ENV = LD_PRELOAD=$(objpfx)tst-aligned_alloc-lib.so
|
||||
diff --git a/malloc/tst-aligned-alloc-random-thread-cross.c b/malloc/tst-aligned-alloc-random-thread-cross.c
|
||||
new file mode 100644
|
||||
index 0000000000000000..360ecc56ee7c8c06
|
||||
--- /dev/null
|
||||
+++ b/malloc/tst-aligned-alloc-random-thread-cross.c
|
||||
@@ -0,0 +1,19 @@
|
||||
+/* multi-threaded memory allocation and cross-thread deallocation test.
|
||||
+ Copyright (C) 2024 Free Software Foundation, Inc.
|
||||
+ This file is part of the GNU C Library.
|
||||
+
|
||||
+ The GNU C Library is free software; you can redistribute it and/or
|
||||
+ modify it under the terms of the GNU Lesser General Public License as
|
||||
+ published by the Free Software Foundation; either version 2.1 of the
|
||||
+ License, or (at your option) any later version.
|
||||
+
|
||||
+ The GNU C Library is distributed in the hope that it will be useful,
|
||||
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
+ Lesser General Public License for more details.
|
||||
+
|
||||
+ You should have received a copy of the GNU Lesser General Public
|
||||
+ License along with the GNU C Library; see the file COPYING.LIB. If
|
||||
+ not, see <https://www.gnu.org/licenses/>. */
|
||||
+#define CROSS_THREAD_DEALLOC
|
||||
+#include "tst-aligned-alloc-random-thread.c"
|
||||
diff --git a/malloc/tst-aligned-alloc-random-thread.c b/malloc/tst-aligned-alloc-random-thread.c
|
||||
new file mode 100644
|
||||
index 0000000000000000..e95f79250abec85e
|
||||
--- /dev/null
|
||||
+++ b/malloc/tst-aligned-alloc-random-thread.c
|
||||
@@ -0,0 +1,145 @@
|
||||
+/* multi-threaded memory allocation/deallocation test.
|
||||
+ Copyright (C) 2024 Free Software Foundation, Inc.
|
||||
+ This file is part of the GNU C Library.
|
||||
+
|
||||
+ The GNU C Library is free software; you can redistribute it and/or
|
||||
+ modify it under the terms of the GNU Lesser General Public License as
|
||||
+ published by the Free Software Foundation; either version 2.1 of the
|
||||
+ License, or (at your option) any later version.
|
||||
+
|
||||
+ The GNU C Library is distributed in the hope that it will be useful,
|
||||
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
+ Lesser General Public License for more details.
|
||||
+
|
||||
+ You should have received a copy of the GNU Lesser General Public
|
||||
+ License along with the GNU C Library; see the file COPYING.LIB. If
|
||||
+ not, see <https://www.gnu.org/licenses/>. */
|
||||
+
|
||||
+#include <stdio.h>
|
||||
+#include <stdlib.h>
|
||||
+#include <string.h>
|
||||
+#include <support/check.h>
|
||||
+#include <support/support.h>
|
||||
+#include <support/xthread.h>
|
||||
+#include <support/test-driver.h>
|
||||
+#include <sys/sysinfo.h>
|
||||
+#include <unistd.h>
|
||||
+
|
||||
+#ifndef ITERATIONS
|
||||
+# define ITERATIONS 16
|
||||
+#endif
|
||||
+
|
||||
+#ifndef NUM_THREADS
|
||||
+# define NUM_THREADS 8
|
||||
+#endif
|
||||
+
|
||||
+#ifndef NUM_ALLOCATIONS
|
||||
+# define NUM_ALLOCATIONS 2048
|
||||
+#endif
|
||||
+
|
||||
+static pthread_barrier_t barrier;
|
||||
+
|
||||
+__thread unsigned int seed;
|
||||
+
|
||||
+typedef struct
|
||||
+{
|
||||
+ int id;
|
||||
+ pthread_t thread;
|
||||
+} thread;
|
||||
+
|
||||
+thread threads[NUM_THREADS];
|
||||
+
|
||||
+void *allocations[NUM_THREADS][NUM_ALLOCATIONS];
|
||||
+
|
||||
+void
|
||||
+run_thread_dealloc (int id)
|
||||
+{
|
||||
+ for (int i = 0; i < NUM_ALLOCATIONS; i++)
|
||||
+ {
|
||||
+ free (allocations[id][i]);
|
||||
+ allocations[id][i] = NULL;
|
||||
+ }
|
||||
+}
|
||||
+
|
||||
+void
|
||||
+run_thread_alloc (int id)
|
||||
+{
|
||||
+ size_t msb, size;
|
||||
+ for (int i = 0; i < NUM_ALLOCATIONS; i++)
|
||||
+ {
|
||||
+ msb = 1 << rand_r (&seed) % 16;
|
||||
+ size = msb + rand_r (&seed) % msb;
|
||||
+ allocations[id][i] = malloc (size);
|
||||
+ TEST_VERIFY_EXIT (allocations[id][i] != NULL);
|
||||
+ }
|
||||
+}
|
||||
+
|
||||
+void *
|
||||
+run_allocations (void *arg)
|
||||
+{
|
||||
+ int id = *((int *) arg);
|
||||
+ seed = time (NULL) + id;
|
||||
+
|
||||
+ /* Stage 1: First half o the threads allocating memory and the second
|
||||
+ * half waiting for them to finish
|
||||
+ */
|
||||
+ if (id < NUM_THREADS / 2)
|
||||
+ run_thread_alloc (id);
|
||||
+
|
||||
+ xpthread_barrier_wait (&barrier);
|
||||
+
|
||||
+ /* Stage 2: Half of the threads allocationg memory and the other
|
||||
+ * half deallocating:
|
||||
+ * - In the non cross-thread dealloc scenario the first half will be
|
||||
+ * deallocating the memory allocated by themselves in stage 1 and the
|
||||
+ * second half will be allocating memory.
|
||||
+ * - In the cross-thread dealloc scenario the first half will continue
|
||||
+ * to allocate memory and the second half will deallocate the memory
|
||||
+ * allocated by the first half in stage 1.
|
||||
+ */
|
||||
+ if (id < NUM_THREADS / 2)
|
||||
+#ifndef CROSS_THREAD_DEALLOC
|
||||
+ run_thread_dealloc (id);
|
||||
+#else
|
||||
+ run_thread_alloc (id + NUM_THREADS / 2);
|
||||
+#endif
|
||||
+ else
|
||||
+#ifndef CROSS_THREAD_DEALLOC
|
||||
+ run_thread_alloc (id);
|
||||
+#else
|
||||
+ run_thread_dealloc (id - NUM_THREADS / 2);
|
||||
+#endif
|
||||
+
|
||||
+ xpthread_barrier_wait (&barrier);
|
||||
+
|
||||
+ // Stage 3: Second half of the threads deallocating and the first half
|
||||
+ // waiting for them to finish.
|
||||
+ if (id >= NUM_THREADS / 2)
|
||||
+ run_thread_dealloc (id);
|
||||
+
|
||||
+ return NULL;
|
||||
+}
|
||||
+
|
||||
+static int
|
||||
+do_test (void)
|
||||
+{
|
||||
+ xpthread_barrier_init (&barrier, NULL, NUM_THREADS);
|
||||
+
|
||||
+ for (int i = 0; i < ITERATIONS; i++)
|
||||
+ {
|
||||
+ for (int t = 0; t < NUM_THREADS; t++)
|
||||
+ {
|
||||
+ threads[t].id = t;
|
||||
+ threads[t].thread
|
||||
+ = xpthread_create (NULL, run_allocations, &threads[t].id);
|
||||
+ }
|
||||
+
|
||||
+ for (int t = 0; t < NUM_THREADS; t++)
|
||||
+ xpthread_join (threads[t].thread);
|
||||
+ }
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+#include <support/test-driver.c>
|
@ -0,0 +1,121 @@
|
||||
commit a09183aed7bb8ace211e042b2e6e982bcc004957
|
||||
Author: Andreas Schwab <schwab@suse.de>
|
||||
Date: Mon Dec 19 12:40:45 2022 +0100
|
||||
|
||||
getdelim: ensure error indicator is set on error (bug 29917)
|
||||
|
||||
POSIX requires that getdelim and getline set the error indicator on the
|
||||
stream when an error occured, in addition to setting errno.
|
||||
|
||||
Conflicts:
|
||||
libio/Makefile - Manual merge for the newly added test
|
||||
|
||||
diff --git a/libio/Makefile b/libio/Makefile
|
||||
index 64398ab1ee..9c69a85c87 100644
|
||||
--- a/libio/Makefile
|
||||
+++ b/libio/Makefile
|
||||
@@ -66,7 +66,7 @@ tests = tst_swprintf tst_wprintf tst_swscanf tst_wscanf tst_getwc tst_putwc \
|
||||
tst-fwrite-error tst-ftell-partial-wide tst-ftell-active-handler \
|
||||
tst-ftell-append tst-fputws tst-bz22415 tst-fgetc-after-eof \
|
||||
tst-sprintf-ub tst-sprintf-chk-ub tst-bz24051 tst-bz24153 \
|
||||
- tst-wfile-sync
|
||||
+ tst-wfile-sync tst-getdelim
|
||||
|
||||
tests-internal = tst-vtables tst-vtables-interposed
|
||||
|
||||
diff --git a/libio/iogetdelim.c b/libio/iogetdelim.c
|
||||
index b6c4c07b45..591526e9c1 100644
|
||||
--- a/libio/iogetdelim.c
|
||||
+++ b/libio/iogetdelim.c
|
||||
@@ -43,11 +43,6 @@ __getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp)
|
||||
ssize_t cur_len = 0;
|
||||
ssize_t len;
|
||||
|
||||
- if (lineptr == NULL || n == NULL)
|
||||
- {
|
||||
- __set_errno (EINVAL);
|
||||
- return -1;
|
||||
- }
|
||||
CHECK_FILE (fp, -1);
|
||||
_IO_acquire_lock (fp);
|
||||
if (_IO_ferror_unlocked (fp))
|
||||
@@ -56,12 +51,21 @@ __getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp)
|
||||
goto unlock_return;
|
||||
}
|
||||
|
||||
+ if (lineptr == NULL || n == NULL)
|
||||
+ {
|
||||
+ __set_errno (EINVAL);
|
||||
+ fseterr_unlocked (fp);
|
||||
+ result = -1;
|
||||
+ goto unlock_return;
|
||||
+ }
|
||||
+
|
||||
if (*lineptr == NULL || *n == 0)
|
||||
{
|
||||
*n = 120;
|
||||
*lineptr = (char *) malloc (*n);
|
||||
if (*lineptr == NULL)
|
||||
{
|
||||
+ fseterr_unlocked (fp);
|
||||
result = -1;
|
||||
goto unlock_return;
|
||||
}
|
||||
@@ -88,6 +92,7 @@ __getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp)
|
||||
if (__glibc_unlikely (len >= SSIZE_MAX - cur_len))
|
||||
{
|
||||
__set_errno (EOVERFLOW);
|
||||
+ fseterr_unlocked (fp);
|
||||
result = -1;
|
||||
goto unlock_return;
|
||||
}
|
||||
@@ -102,6 +107,7 @@ __getdelim (char **lineptr, size_t *n, int delimiter, FILE *fp)
|
||||
new_lineptr = (char *) realloc (*lineptr, needed);
|
||||
if (new_lineptr == NULL)
|
||||
{
|
||||
+ fseterr_unlocked (fp);
|
||||
result = -1;
|
||||
goto unlock_return;
|
||||
}
|
||||
diff --git a/libio/tst-getdelim.c b/libio/tst-getdelim.c
|
||||
new file mode 100644
|
||||
index 0000000000..4443732669
|
||||
--- /dev/null
|
||||
+++ b/libio/tst-getdelim.c
|
||||
@@ -0,0 +1,36 @@
|
||||
+/* Check that getdelim sets error indicator on error (BZ #29917)
|
||||
+
|
||||
+ Copyright (C) 2023 Free Software Foundation, Inc.
|
||||
+ This file is part of the GNU C Library.
|
||||
+
|
||||
+ The GNU C Library is free software; you can redistribute it and/or
|
||||
+ modify it under the terms of the GNU Lesser General Public
|
||||
+ License as published by the Free Software Foundation; either
|
||||
+ version 2.1 of the License, or (at your option) any later version.
|
||||
+
|
||||
+ The GNU C Library is distributed in the hope that it will be useful,
|
||||
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
+ Lesser General Public License for more details.
|
||||
+
|
||||
+ You should have received a copy of the GNU Lesser General Public
|
||||
+ License along with the GNU C Library; if not, see
|
||||
+ <https://www.gnu.org/licenses/>. */
|
||||
+
|
||||
+#include <stdio.h>
|
||||
+#include <errno.h>
|
||||
+
|
||||
+#include <support/check.h>
|
||||
+
|
||||
+static int
|
||||
+do_test (void)
|
||||
+{
|
||||
+ clearerr (stdin);
|
||||
+ TEST_VERIFY (getdelim (0, 0, '\n', stdin) == -1);
|
||||
+ TEST_VERIFY (ferror (stdin) != 0);
|
||||
+ TEST_VERIFY (errno == EINVAL);
|
||||
+
|
||||
+ return 0;
|
||||
+}
|
||||
+
|
||||
+#include <support/test-driver.c>
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Loading…
Reference in new issue