unofficial mirror of libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] elf: Also try DT_RUNPATH for internal dlopen [BZ #28455]
@ 2021-10-15 20:07 H.J. Lu via Libc-alpha
  2021-11-29 12:50 ` PING^1 " H.J. Lu via Libc-alpha
  2021-11-29 15:30 ` Carlos O'Donell via Libc-alpha
  0 siblings, 2 replies; 4+ messages in thread
From: H.J. Lu via Libc-alpha @ 2021-10-15 20:07 UTC (permalink / raw)
  To: libc-alpha

DT_RUNPATH is only used to find the immediate dependencies of the
executable or shared object containing the DT_RUNPATH entry.  The
glibc internal dlopen call should try the DT_RUNPATH of the executable.
This partially fixes BZ #28455.
---
 elf/Makefile         |  9 +++++++--
 elf/dl-load.c        | 30 ++++++++++++++++++++++--------
 elf/tst-audit14a.c   |  1 +
 nss/Makefile         |  3 +++
 nss/tst-nss-test1a.c |  1 +
 5 files changed, 34 insertions(+), 10 deletions(-)
 create mode 100644 elf/tst-audit14a.c
 create mode 100644 nss/tst-nss-test1a.c

diff --git a/elf/Makefile b/elf/Makefile
index eeef71b82a..739cd6c8ef 100644
--- a/elf/Makefile
+++ b/elf/Makefile
@@ -239,10 +239,10 @@ ifneq ($(selinux-enabled),1)
 tests-execstack-yes = tst-execstack tst-execstack-needed tst-execstack-prog
 endif
 ifeq ($(have-depaudit),yes)
-tests += tst-audit14 tst-audit15 tst-audit16
+tests += tst-audit14 tst-audit15 tst-audit16 tst-audit14a
 ifeq ($(run-built-tests),yes)
 tests-special += $(objpfx)tst-audit14-cmp.out $(objpfx)tst-audit15-cmp.out \
-		 $(objpfx)tst-audit16-cmp.out
+		 $(objpfx)tst-audit16-cmp.out $(objpfx)tst-audit14a-cmp.out
 endif
 endif
 endif
@@ -1479,6 +1479,8 @@ tst-auditmany-ENV = \
 LDFLAGS-tst-audit14 = -Wl,--audit=tst-auditlogmod-1.so
 $(objpfx)tst-auditlogmod-1.so: $(libsupport)
 $(objpfx)tst-audit14.out: $(objpfx)tst-auditlogmod-1.so
+LDFLAGS-tst-audit14a = -Wl,--audit=tst-auditlogmod-1.so,--enable-new-dtags
+$(objpfx)tst-audit14a.out: $(objpfx)tst-auditlogmod-1.so
 LDFLAGS-tst-audit15 = \
   -Wl,--audit=tst-auditlogmod-1.so,--depaudit=tst-auditlogmod-2.so
 $(objpfx)tst-auditlogmod-2.so: $(libsupport)
@@ -1505,6 +1507,9 @@ tst-audit17-ENV = LD_AUDIT=$(objpfx)tst-auditmod17.so
 $(objpfx)tst-audit14-cmp.out: tst-audit14.exp $(objpfx)tst-audit14.out
 	cmp $^ > $@; \
 	$(evaluate-test)
+$(objpfx)tst-audit14a-cmp.out: tst-audit14.exp $(objpfx)tst-audit14a.out
+	cmp $^ > $@; \
+	$(evaluate-test)
 $(objpfx)tst-audit15-cmp.out: tst-audit15.exp $(objpfx)tst-audit15.out
 	cmp $^ > $@; \
 	$(evaluate-test)
diff --git a/elf/dl-load.c b/elf/dl-load.c
index 18d3e8fe64..95f4d13c12 100644
--- a/elf/dl-load.c
+++ b/elf/dl-load.c
@@ -2162,15 +2162,29 @@ _dl_map_object (struct link_map *loader, const char *name,
 	      }
 
 	  /* If dynamically linked, try the DT_RPATH of the executable
-	     itself.  NB: we do this for lookups in any namespace.  */
+	     itself.  NB: we do this for lookups in any namespace.
+
+	     Also try DT_RUNPATH for glibc internal dlopen call.  */
 	  if (fd == -1 && !did_main_map
-	      && main_map != NULL && main_map->l_type != lt_loaded
-	      && cache_rpath (main_map, &main_map->l_rpath_dirs, DT_RPATH,
-			      "RPATH"))
-	    fd = open_path (name, namelen, mode,
-			    &main_map->l_rpath_dirs,
-			    &realname, &fb, loader ?: main_map, LA_SER_RUNPATH,
-			    &found_other_class);
+	      && main_map != NULL && main_map->l_type != lt_loaded)
+	    {
+	      struct r_search_path_struct l_rpath_dirs;
+	      struct r_search_path_struct *l_rpath_dirs_p = NULL;
+	      if (cache_rpath (main_map, &main_map->l_rpath_dirs,
+			       DT_RPATH, "RPATH"))
+		l_rpath_dirs_p = &main_map->l_rpath_dirs;
+	      else if (__glibc_unlikely (mode & __RTLD_DLOPEN))
+		{
+		  l_rpath_dirs.dirs = NULL;
+		  if (cache_rpath (main_map, &l_rpath_dirs, DT_RUNPATH,
+				   "RUNPATH"))
+		    l_rpath_dirs_p = &l_rpath_dirs;
+		}
+	      if (l_rpath_dirs_p)
+		fd = open_path (name, namelen, mode, l_rpath_dirs_p,
+				&realname, &fb, loader ?: main_map,
+				LA_SER_RUNPATH, &found_other_class);
+	    }
 	}
 
       /* Try the LD_LIBRARY_PATH environment variable.  */
diff --git a/elf/tst-audit14a.c b/elf/tst-audit14a.c
new file mode 100644
index 0000000000..c6232eacf2
--- /dev/null
+++ b/elf/tst-audit14a.c
@@ -0,0 +1 @@
+#include "tst-audit14.c"
diff --git a/nss/Makefile b/nss/Makefile
index bccf9f2806..cd99e04732 100644
--- a/nss/Makefile
+++ b/nss/Makefile
@@ -58,6 +58,7 @@ tests-static            = tst-field
 tests-internal		= tst-field
 tests			= test-netdb test-digits-dots tst-nss-getpwent bug17079 \
 			  tst-nss-test1 \
+			  tst-nss-test1a \
 			  tst-nss-test2 \
 			  tst-nss-test4 \
 			  tst-nss-test5
@@ -189,3 +190,5 @@ endif
 
 $(objpfx)tst-nss-files-alias-leak.out: $(objpfx)/libnss_files.so
 $(objpfx)tst-nss-files-alias-truncated.out: $(objpfx)/libnss_files.so
+
+LDFLAGS-tst-nss-test1a = -Wl,--enable-new-dtags
diff --git a/nss/tst-nss-test1a.c b/nss/tst-nss-test1a.c
new file mode 100644
index 0000000000..f1428259c8
--- /dev/null
+++ b/nss/tst-nss-test1a.c
@@ -0,0 +1 @@
+#include "tst-nss-test1.c"
-- 
2.31.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-12-03  3:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-15 20:07 [PATCH] elf: Also try DT_RUNPATH for internal dlopen [BZ #28455] H.J. Lu via Libc-alpha
2021-11-29 12:50 ` PING^1 " H.J. Lu via Libc-alpha
2021-11-29 15:30 ` Carlos O'Donell via Libc-alpha
2021-12-03  3:20   ` H.J. Lu via Libc-alpha

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).