446cf2
commit 27316f4a23efdc90bdfe4569a6c4b7e27941606e
446cf2
Author: Florian Weimer <fweimer@redhat.com>
446cf2
Date:   Thu Oct 8 10:57:10 2020 +0200
446cf2
446cf2
    elf: Record whether paths come from LD_LIBRARY_PATH or --library-path
446cf2
    
446cf2
    This allows more precise LD_DEBUG diagnostics.
446cf2
    
446cf2
    Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
446cf2
446cf2
diff --git a/elf/dl-load.c b/elf/dl-load.c
446cf2
index 2b4dd9a0f3e27b70..1403a2e9c04e9a16 100644
446cf2
--- a/elf/dl-load.c
446cf2
+++ b/elf/dl-load.c
446cf2
@@ -682,7 +682,7 @@ cache_rpath (struct link_map *l,
446cf2
 
446cf2
 
446cf2
 void
446cf2
-_dl_init_paths (const char *llp)
446cf2
+_dl_init_paths (const char *llp, const char *source)
446cf2
 {
446cf2
   size_t idx;
446cf2
   const char *strp;
446cf2
@@ -820,7 +820,7 @@ _dl_init_paths (const char *llp)
446cf2
 	}
446cf2
 
446cf2
       (void) fillin_rpath (llp_tmp, env_path_list.dirs, ":;",
446cf2
-			   "LD_LIBRARY_PATH", NULL, l);
446cf2
+			   source, NULL, l);
446cf2
 
446cf2
       if (env_path_list.dirs[0] == NULL)
446cf2
 	{
446cf2
diff --git a/elf/dl-main.h b/elf/dl-main.h
446cf2
index b01f433f9c8d9e1a..79c9c40056504f80 100644
446cf2
--- a/elf/dl-main.h
446cf2
+++ b/elf/dl-main.h
446cf2
@@ -74,6 +74,9 @@ struct dl_main_state
446cf2
   /* The library search path.  */
446cf2
   const char *library_path;
446cf2
 
446cf2
+  /* Where library_path comes from.  LD_LIBRARY_PATH or --library-path.  */
446cf2
+  const char *library_path_source;
446cf2
+
446cf2
   /* The list preloaded objects from LD_PRELOAD.  */
446cf2
   const char *preloadlist;
446cf2
 
446cf2
@@ -94,7 +97,7 @@ struct dl_main_state
446cf2
 static inline void
446cf2
 call_init_paths (const struct dl_main_state *state)
446cf2
 {
446cf2
-  _dl_init_paths (state->library_path);
446cf2
+  _dl_init_paths (state->library_path, state->library_path_source);
446cf2
 }
446cf2
 
446cf2
 /* Print ld.so usage information and exit.  */
446cf2
diff --git a/elf/dl-support.c b/elf/dl-support.c
446cf2
index ef5455b91c17ca30..fb9672367f8d6abd 100644
446cf2
--- a/elf/dl-support.c
446cf2
+++ b/elf/dl-support.c
446cf2
@@ -315,7 +315,7 @@ _dl_non_dynamic_init (void)
446cf2
 
446cf2
   /* Initialize the data structures for the search paths for shared
446cf2
      objects.  */
446cf2
-  _dl_init_paths (getenv ("LD_LIBRARY_PATH"));
446cf2
+  _dl_init_paths (getenv ("LD_LIBRARY_PATH"), "LD_LIBRARY_PATH");
446cf2
 
446cf2
   /* Remember the last search directory added at startup.  */
446cf2
   _dl_init_all_dirs = GL(dl_all_dirs);
446cf2
diff --git a/elf/rtld.c b/elf/rtld.c
446cf2
index a12a56b550bbc837..8e91cee41b62b894 100644
446cf2
--- a/elf/rtld.c
446cf2
+++ b/elf/rtld.c
446cf2
@@ -284,6 +284,7 @@ dl_main_state_init (struct dl_main_state *state)
446cf2
 {
446cf2
   audit_list_init (&state->audit_list);
446cf2
   state->library_path = NULL;
446cf2
+  state->library_path_source = NULL;
446cf2
   state->preloadlist = NULL;
446cf2
   state->preloadarg = NULL;
446cf2
   state->mode = rtld_mode_normal;
446cf2
@@ -1197,6 +1198,7 @@ dl_main (const ElfW(Phdr) *phdr,
446cf2
 		 && _dl_argc > 2)
446cf2
 	  {
446cf2
 	    state.library_path = _dl_argv[2];
446cf2
+	    state.library_path_source = "--library-path";
446cf2
 
446cf2
 	    _dl_skip_args += 2;
446cf2
 	    _dl_argc -= 2;
446cf2
@@ -2640,6 +2642,7 @@ process_envvars (struct dl_main_state *state)
446cf2
 	      && memcmp (envline, "LIBRARY_PATH", 12) == 0)
446cf2
 	    {
446cf2
 	      state->library_path = &envline[13];
446cf2
+	      state->library_path_source = "LD_LIBRARY_PATH";
446cf2
 	      break;
446cf2
 	    }
446cf2
 
446cf2
diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h
446cf2
index 4aa28b0229e0b339..aa006afafaf46dee 100644
446cf2
--- a/sysdeps/generic/ldsodefs.h
446cf2
+++ b/sysdeps/generic/ldsodefs.h
446cf2
@@ -1044,8 +1044,10 @@ rtld_hidden_proto (_dl_debug_state)
446cf2
 extern struct r_debug *_dl_debug_initialize (ElfW(Addr) ldbase, Lmid_t ns)
446cf2
      attribute_hidden;
446cf2
 
446cf2
-/* Initialize the basic data structure for the search paths.  */
446cf2
-extern void _dl_init_paths (const char *library_path) attribute_hidden;
446cf2
+/* Initialize the basic data structure for the search paths.  SOURCE
446cf2
+   is either "LD_LIBRARY_PATH" or "--library-path".  */
446cf2
+extern void _dl_init_paths (const char *library_path, const char *source)
446cf2
+  attribute_hidden;
446cf2
 
446cf2
 /* Gather the information needed to install the profiling tables and start
446cf2
    the timers.  */