|
|
179894 |
From 332421312576bd7095e70589154af99b124dd2d1 Mon Sep 17 00:00:00 2001
|
|
|
179894 |
From: Carlos O'Donell <carlos@redhat.com>
|
|
|
179894 |
Date: Fri, 12 Mar 2021 16:44:47 +0100
|
|
|
179894 |
Subject: elf: Always set l in _dl_init_paths (bug 23462)
|
|
|
179894 |
|
|
|
179894 |
After d1d5471579eb0426671bf94f2d71e61dfb204c30 ("Remove dead
|
|
|
179894 |
DL_DST_REQ_STATIC code.") we always setup the link map l to make the
|
|
|
179894 |
static and shared cases the same. The bug is that in elf/dl-load.c
|
|
|
179894 |
(_dl_init_paths) we conditionally set l only in the #ifdef SHARED
|
|
|
179894 |
case, but unconditionally use it later. The simple solution is to
|
|
|
179894 |
remove the #ifdef SHARED conditional, because it's no longer needed,
|
|
|
179894 |
and unconditionally setup l for both the static and shared cases. A
|
|
|
179894 |
regression test is added to run a static binary with
|
|
|
179894 |
LD_LIBRARY_PATH='$ORIGIN' which crashes before the fix and runs after
|
|
|
179894 |
the fix.
|
|
|
179894 |
|
|
|
179894 |
Co-Authored-By: Florian Weimer <fweimer@redhat.com>
|
|
|
179894 |
|
|
|
179894 |
diff --git a/elf/Makefile b/elf/Makefile
|
|
|
179894 |
--- a/elf/Makefile 2021-11-02 16:28:14.720143774 -0400
|
|
|
179894 |
+++ b/elf/Makefile 2021-11-02 18:42:38.763843571 -0400
|
|
|
179894 |
@@ -151,7 +151,8 @@ endif
|
|
|
179894 |
tests-static-normal := tst-leaks1-static tst-array1-static tst-array5-static \
|
|
|
179894 |
tst-dl-iter-static \
|
|
|
179894 |
tst-tlsalign-static tst-tlsalign-extern-static \
|
|
|
179894 |
- tst-linkall-static tst-env-setuid tst-env-setuid-tunables
|
|
|
179894 |
+ tst-linkall-static tst-env-setuid tst-env-setuid-tunables \
|
|
|
179894 |
+ tst-dst-static
|
|
|
179894 |
tests-static-internal := tst-tls1-static tst-tls2-static \
|
|
|
179894 |
tst-ptrguard1-static tst-stackguard1-static \
|
|
|
179894 |
tst-tls1-static-non-pie tst-libc_dlvsym-static
|
|
|
179894 |
@@ -1811,3 +1812,5 @@ $(objpfx)tst-glibc-hwcaps-mask.out: \
|
|
|
179894 |
# Generic dependency for sysdeps implementation of
|
|
|
179894 |
# tst-glibc-hwcaps-cache.
|
|
|
179894 |
$(objpfx)tst-glibc-hwcaps-cache.out: $(objpfx)tst-glibc-hwcaps
|
|
|
179894 |
+
|
|
|
179894 |
+tst-dst-static-ENV = LD_LIBRARY_PATH='$$ORIGIN'
|
|
|
179894 |
diff --git a/elf/dl-load.c b/elf/dl-load.c
|
|
|
179894 |
index 9e2089cfaa..376a2e64d6 100644
|
|
|
179894 |
--- a/elf/dl-load.c
|
|
|
179894 |
+++ b/elf/dl-load.c
|
|
|
179894 |
@@ -758,50 +758,45 @@ _dl_init_paths (const char *llp, const char *source,
|
|
|
179894 |
max_dirnamelen = SYSTEM_DIRS_MAX_LEN;
|
|
|
179894 |
*aelem = NULL;
|
|
|
179894 |
|
|
|
179894 |
-#ifdef SHARED
|
|
|
179894 |
/* This points to the map of the main object. */
|
|
|
179894 |
l = GL(dl_ns)[LM_ID_BASE]._ns_loaded;
|
|
|
179894 |
- if (l != NULL)
|
|
|
179894 |
+ assert (l->l_type != lt_loaded);
|
|
|
179894 |
+
|
|
|
179894 |
+ if (l->l_info[DT_RUNPATH])
|
|
|
179894 |
+ {
|
|
|
179894 |
+ /* Allocate room for the search path and fill in information
|
|
|
179894 |
+ from RUNPATH. */
|
|
|
179894 |
+ decompose_rpath (&l->l_runpath_dirs,
|
|
|
179894 |
+ (const void *) (D_PTR (l, l_info[DT_STRTAB])
|
|
|
179894 |
+ + l->l_info[DT_RUNPATH]->d_un.d_val),
|
|
|
179894 |
+ l, "RUNPATH");
|
|
|
179894 |
+ /* During rtld init the memory is allocated by the stub malloc,
|
|
|
179894 |
+ prevent any attempt to free it by the normal malloc. */
|
|
|
179894 |
+ l->l_runpath_dirs.malloced = 0;
|
|
|
179894 |
+
|
|
|
179894 |
+ /* The RPATH is ignored. */
|
|
|
179894 |
+ l->l_rpath_dirs.dirs = (void *) -1;
|
|
|
179894 |
+ }
|
|
|
179894 |
+ else
|
|
|
179894 |
{
|
|
|
179894 |
- assert (l->l_type != lt_loaded);
|
|
|
179894 |
+ l->l_runpath_dirs.dirs = (void *) -1;
|
|
|
179894 |
|
|
|
179894 |
- if (l->l_info[DT_RUNPATH])
|
|
|
179894 |
+ if (l->l_info[DT_RPATH])
|
|
|
179894 |
{
|
|
|
179894 |
/* Allocate room for the search path and fill in information
|
|
|
179894 |
- from RUNPATH. */
|
|
|
179894 |
- decompose_rpath (&l->l_runpath_dirs,
|
|
|
179894 |
+ from RPATH. */
|
|
|
179894 |
+ decompose_rpath (&l->l_rpath_dirs,
|
|
|
179894 |
(const void *) (D_PTR (l, l_info[DT_STRTAB])
|
|
|
179894 |
- + l->l_info[DT_RUNPATH]->d_un.d_val),
|
|
|
179894 |
- l, "RUNPATH");
|
|
|
179894 |
- /* During rtld init the memory is allocated by the stub malloc,
|
|
|
179894 |
- prevent any attempt to free it by the normal malloc. */
|
|
|
179894 |
- l->l_runpath_dirs.malloced = 0;
|
|
|
179894 |
-
|
|
|
179894 |
- /* The RPATH is ignored. */
|
|
|
179894 |
- l->l_rpath_dirs.dirs = (void *) -1;
|
|
|
179894 |
+ + l->l_info[DT_RPATH]->d_un.d_val),
|
|
|
179894 |
+ l, "RPATH");
|
|
|
179894 |
+ /* During rtld init the memory is allocated by the stub
|
|
|
179894 |
+ malloc, prevent any attempt to free it by the normal
|
|
|
179894 |
+ malloc. */
|
|
|
179894 |
+ l->l_rpath_dirs.malloced = 0;
|
|
|
179894 |
}
|
|
|
179894 |
else
|
|
|
179894 |
- {
|
|
|
179894 |
- l->l_runpath_dirs.dirs = (void *) -1;
|
|
|
179894 |
-
|
|
|
179894 |
- if (l->l_info[DT_RPATH])
|
|
|
179894 |
- {
|
|
|
179894 |
- /* Allocate room for the search path and fill in information
|
|
|
179894 |
- from RPATH. */
|
|
|
179894 |
- decompose_rpath (&l->l_rpath_dirs,
|
|
|
179894 |
- (const void *) (D_PTR (l, l_info[DT_STRTAB])
|
|
|
179894 |
- + l->l_info[DT_RPATH]->d_un.d_val),
|
|
|
179894 |
- l, "RPATH");
|
|
|
179894 |
- /* During rtld init the memory is allocated by the stub
|
|
|
179894 |
- malloc, prevent any attempt to free it by the normal
|
|
|
179894 |
- malloc. */
|
|
|
179894 |
- l->l_rpath_dirs.malloced = 0;
|
|
|
179894 |
- }
|
|
|
179894 |
- else
|
|
|
179894 |
- l->l_rpath_dirs.dirs = (void *) -1;
|
|
|
179894 |
- }
|
|
|
179894 |
+ l->l_rpath_dirs.dirs = (void *) -1;
|
|
|
179894 |
}
|
|
|
179894 |
-#endif /* SHARED */
|
|
|
179894 |
|
|
|
179894 |
if (llp != NULL && *llp != '\0')
|
|
|
179894 |
{
|
|
|
179894 |
diff --git a/elf/tst-dst-static.c b/elf/tst-dst-static.c
|
|
|
179894 |
new file mode 100644
|
|
|
179894 |
index 0000000000..56eb371c96
|
|
|
179894 |
--- /dev/null
|
|
|
179894 |
+++ b/elf/tst-dst-static.c
|
|
|
179894 |
@@ -0,0 +1,32 @@
|
|
|
179894 |
+/* Test DST expansion for static binaries doesn't carsh. Bug 23462.
|
|
|
179894 |
+ Copyright (C) 2021 Free Software Foundation, Inc.
|
|
|
179894 |
+ This file is part of the GNU C Library.
|
|
|
179894 |
+
|
|
|
179894 |
+ The GNU C Library is free software; you can redistribute it and/or
|
|
|
179894 |
+ modify it under the terms of the GNU Lesser General Public
|
|
|
179894 |
+ License as published by the Free Software Foundation; either
|
|
|
179894 |
+ version 2.1 of the License, or (at your option) any later version.
|
|
|
179894 |
+
|
|
|
179894 |
+ The GNU C Library is distributed in the hope that it will be useful,
|
|
|
179894 |
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
179894 |
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
179894 |
+ Lesser General Public License for more details.
|
|
|
179894 |
+
|
|
|
179894 |
+ You should have received a copy of the GNU Lesser General Public
|
|
|
179894 |
+ License along with the GNU C Library; if not, see
|
|
|
179894 |
+ <https://www.gnu.org/licenses/>. */
|
|
|
179894 |
+
|
|
|
179894 |
+/* The purpose of this test is to exercise the code in elf/dl-loac.c
|
|
|
179894 |
+ (_dl_init_paths) or thereabout and ensure that static binaries
|
|
|
179894 |
+ don't crash when expanding DSTs.
|
|
|
179894 |
+
|
|
|
179894 |
+ If the dynamic loader code linked into the static binary cannot
|
|
|
179894 |
+ handle expanding the DSTs e.g. null-deref on an incomplete link
|
|
|
179894 |
+ map, then it will crash before reaching main, so the test harness
|
|
|
179894 |
+ is unnecessary. */
|
|
|
179894 |
+
|
|
|
179894 |
+int
|
|
|
179894 |
+main (void)
|
|
|
179894 |
+{
|
|
|
179894 |
+ return 0;
|
|
|
179894 |
+}
|