forked from pool/glibc
* The <stdbit.h> header type-generic macros have been changed when using GCC 14.1 or later to use __builtin_stdc_bit_ceil etc. built-in functions * The GNU C Library now supports a feature test macro _ISOC23_SOURCE to enable features from the ISO C23 standard * The ISO C23 function families introduced in TS 18661-4:2015 are now supported in <math.h> * A new tunable, glibc.rtld.enable_secure, can be used to run a program as if it were a setuid process * On Linux, the epoll header was updated to include epoll ioctl definitions and the related structure added in Linux kernel 6.9 * The fortify functionality has been significantly enhanced for building programs with clang against the GNU C Library * Many functions have been added to the vector library for aarch64 * On x86, memset can now use non-temporal stores to improve the performance of large writes * Architectures which use a 32-bit seconds-since-epoch field in struct lastlog, struct utmp, struct utmpx (such as i386, powerpc64le, rv32, rv64, x86-64) switched from a signed to an unsigned type for that field * __rseq_size now denotes the size of the active rseq area (20 bytes initially), not the size of struct rseq (32 bytes initially). - arm-dl-start-user.patch, duplocale-global-locale.patch, elf-parse-tunables.patch, glibc-CVE-2024-33599-nscd-Stack-based-buffer-overflow-in-n.patch, glibc-CVE-2024-33600-nscd-Avoid-null-pointer-crashes-after.patch, glibc-CVE-2024-33600-nscd-Do-not-send-missing-not-found-re.patch, glibc-CVE-2024-33601-CVE-2024-33602-nscd-netgroup-Use-two.patch, iconv-iso-2022-cn-ext.patch, nscd-netgroup-cache-timeout.patch, s390-clone-error-clobber-r7.patch, sigisemptyset.patch, OBS-URL: https://build.opensuse.org/package/show/Base:System/glibc?expand=0&rev=719
41 lines
1.4 KiB
Diff
41 lines
1.4 KiB
Diff
From 63295e4fda1f6dab4bf7442706fe303bf283036c Mon Sep 17 00:00:00 2001
|
|
From: Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
|
Date: Mon, 5 Feb 2024 16:10:24 +0000
|
|
Subject: [PATCH] arm: Remove wrong ldr from _dl_start_user (BZ 31339)
|
|
|
|
The commit 49d877a80b29d3002887b084eec6676d9f5fec18 (arm: Remove
|
|
_dl_skip_args usage) removed the _SKIP_ARGS literal, which was
|
|
previously loader to r4 on loader _start. However, the cleanup did not
|
|
remove the following 'ldr r4, [sl, r4]' on _dl_start_user, used to check
|
|
to skip the arguments after ld self-relocations.
|
|
|
|
In my testing, the kernel initially set r4 to 0, which makes the
|
|
ldr instruction just read the _GLOBAL_OFFSET_TABLE_. However, since r4
|
|
is a callee-saved register; a different runtime might not zero
|
|
initialize it and thus trigger an invalid memory access.
|
|
|
|
Checked on arm-linux-gnu.
|
|
|
|
Reported-by: Adrian Ratiu <adrian.ratiu@collabora.com>
|
|
Reviewed-by: Szabolcs Nagy <szabolcs.nagy@arm.com>
|
|
(cherry picked from commit 1e25112dc0cb2515d27d8d178b1ecce778a9d37a)
|
|
---
|
|
sysdeps/arm/dl-machine.h | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
diff --git a/sysdeps/arm/dl-machine.h b/sysdeps/arm/dl-machine.h
|
|
index b857bbc868..dd1a0f6b6e 100644
|
|
--- a/sysdeps/arm/dl-machine.h
|
|
+++ b/sysdeps/arm/dl-machine.h
|
|
@@ -139,7 +139,6 @@ _start:\n\
|
|
_dl_start_user:\n\
|
|
adr r6, .L_GET_GOT\n\
|
|
add sl, sl, r6\n\
|
|
- ldr r4, [sl, r4]\n\
|
|
@ save the entry point in another register\n\
|
|
mov r6, r0\n\
|
|
@ get the original arg count\n\
|
|
--
|
|
2.43.0
|
|
|