blob: 19c1d9bf14f317520eb7afc113e78d46d4b10071 [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001From 81346b2f7735698078d5bf919a78b6c0269d6fee Mon Sep 17 00:00:00 2001
Patrick Williamsc124f4f2015-09-15 14:41:29 -05002From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 18 Mar 2015 01:48:24 +0000
Brad Bishopd7bf8c12018-02-25 22:55:05 -05004Subject: [PATCH 01/25] nativesdk-glibc: Look for host system ld.so.cache as
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005 well
6
7Upstream-Status: Inappropriate [embedded specific]
8
9The default lib search path order is:
10
11 1) LD_LIBRARY_PATH
12 2) RPATH from the binary
13 3) ld.so.cache
14 4) default search paths embedded in the linker
15
16For nativesdk binaries which are being used alongside binaries on a host system, we
17need the search paths to firstly search the shipped nativesdk libs but then also
18cover the host system. For example we want the host system's libGL and this may be
19in a non-standard location like /usr/lib/mesa. The only place the location is know
20about is in the ld.so.cache of the host system.
21
22Since nativesdk has a simple structure and doesn't need to use a cache itself, we
23repurpose the cache for use as a last resort in finding host system binaries. This
24means we need to switch the order of 3 and 4 above to make this work effectively.
25
26RP 14/10/2010
27
28Signed-off-by: Khem Raj <raj.khem@gmail.com>
29---
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050030 elf/dl-load.c | 16 ++++++++--------
31 1 file changed, 8 insertions(+), 8 deletions(-)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050032
33diff --git a/elf/dl-load.c b/elf/dl-load.c
Brad Bishopd7bf8c12018-02-25 22:55:05 -050034index c1b6d4ba0f..d7af9ebcbc 100644
Patrick Williamsc124f4f2015-09-15 14:41:29 -050035--- a/elf/dl-load.c
36+++ b/elf/dl-load.c
Brad Bishop6e60e8b2018-02-01 10:27:11 -050037@@ -2054,6 +2054,14 @@ _dl_map_object (struct link_map *loader, const char *name,
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050038 }
39 }
40
Patrick Williamsc124f4f2015-09-15 14:41:29 -050041+ /* try the default path. */
42+ if (fd == -1
43+ && ((l = loader ?: GL(dl_ns)[nsid]._ns_loaded) == NULL
44+ || __builtin_expect (!(l->l_flags_1 & DF_1_NODEFLIB), 1))
45+ && rtld_search_dirs.dirs != (void *) -1)
46+ fd = open_path (name, namelen, mode & __RTLD_SECURE, &rtld_search_dirs,
47+ &realname, &fb, l, LA_SER_DEFAULT, &found_other_class);
48+ /* Finally try ld.so.cache */
49 #ifdef USE_LDCONFIG
50 if (fd == -1
51 && (__glibc_likely ((mode & __RTLD_SECURE) == 0)
Brad Bishop6e60e8b2018-02-01 10:27:11 -050052@@ -2112,14 +2120,6 @@ _dl_map_object (struct link_map *loader, const char *name,
Patrick Williamsc124f4f2015-09-15 14:41:29 -050053 }
54 #endif
55
56- /* Finally, try the default path. */
57- if (fd == -1
58- && ((l = loader ?: GL(dl_ns)[nsid]._ns_loaded) == NULL
59- || __glibc_likely (!(l->l_flags_1 & DF_1_NODEFLIB)))
60- && rtld_search_dirs.dirs != (void *) -1)
61- fd = open_path (name, namelen, mode, &rtld_search_dirs,
62- &realname, &fb, l, LA_SER_DEFAULT, &found_other_class);
63-
64 /* Add another newline when we are tracing the library loading. */
65 if (__glibc_unlikely (GLRO(dl_debug_mask) & DL_DEBUG_LIBS))
66 _dl_debug_printf ("\n");
67--
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500682.13.2
Patrick Williamsc124f4f2015-09-15 14:41:29 -050069