]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/dl-load.c
2.5-18.1
[thirdparty/glibc.git] / elf / dl-load.c
CommitLineData
0a54e401 1/* Map in a shared object's segments from the file.
0ecb606c 2 Copyright (C) 1995-2005, 2006, 2007 Free Software Foundation, Inc.
afd4eb37 3 This file is part of the GNU C Library.
d66e34cd 4
afd4eb37 5 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
d66e34cd 9
afd4eb37
UD
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13 Lesser General Public License for more details.
d66e34cd 14
41bdb6e2
AJ
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
d66e34cd 19
14e9dd67 20#include <elf.h>
0a54e401
UD
21#include <errno.h>
22#include <fcntl.h>
8e17ea58 23#include <libintl.h>
379d4ec4 24#include <stdbool.h>
0a54e401 25#include <stdlib.h>
d66e34cd 26#include <string.h>
d66e34cd 27#include <unistd.h>
a42195db 28#include <ldsodefs.h>
ca97fb53 29#include <bits/wordsize.h>
0a54e401 30#include <sys/mman.h>
f8f7e090 31#include <sys/param.h>
0a54e401
UD
32#include <sys/stat.h>
33#include <sys/types.h>
d66e34cd 34#include "dynamic-link.h"
a986484f 35#include <abi-tag.h>
664e7d93 36#include <stackinfo.h>
703ccc12 37#include <caller.h>
0ecb606c 38#include <sysdep.h>
d66e34cd 39
dc5efe83 40#include <dl-dst.h>
d66e34cd 41
9b8a44cd
RM
42/* On some systems, no flag bits are given to specify file mapping. */
43#ifndef MAP_FILE
fcf70d41 44# define MAP_FILE 0
9b8a44cd
RM
45#endif
46
47/* The right way to map in the shared library files is MAP_COPY, which
48 makes a virtual copy of the data at the time of the mmap call; this
49 guarantees the mapped pages will be consistent even if the file is
50 overwritten. Some losing VM systems like Linux's lack MAP_COPY. All we
51 get is MAP_PRIVATE, which copies each page when it is modified; this
52 means if the file is overwritten, we may at some point get some pages
0ecb606c 53 from the new version after starting with pages from the old version.
9b8a44cd 54
0ecb606c
JJ
55 To make up for the lack and avoid the overwriting problem,
56 what Linux does have is MAP_DENYWRITE. This prevents anyone
57 from modifying the file while we have it mapped. */
58#ifndef MAP_COPY
59# ifdef MAP_DENYWRITE
60# define MAP_COPY (MAP_PRIVATE | MAP_DENYWRITE)
61# else
62# define MAP_COPY MAP_PRIVATE
63# endif
1773d1ba
UD
64#endif
65
f21acc89
UD
66/* Some systems link their relocatable objects for another base address
67 than 0. We want to know the base address for these such that we can
68 subtract this address from the segment addresses during mapping.
69 This results in a more efficient address space usage. Defaults to
70 zero for almost all systems. */
71#ifndef MAP_BASE_ADDR
fcf70d41 72# define MAP_BASE_ADDR(l) 0
f21acc89
UD
73#endif
74
9b8a44cd 75
d66e34cd
RM
76#include <endian.h>
77#if BYTE_ORDER == BIG_ENDIAN
fcf70d41 78# define byteorder ELFDATA2MSB
d66e34cd 79#elif BYTE_ORDER == LITTLE_ENDIAN
fcf70d41 80# define byteorder ELFDATA2LSB
d66e34cd 81#else
fcf70d41
UD
82# error "Unknown BYTE_ORDER " BYTE_ORDER
83# define byteorder ELFDATANONE
d66e34cd
RM
84#endif
85
14e9dd67 86#define STRING(x) __STRING (x)
d66e34cd 87
2064087b
RM
88#ifdef MAP_ANON
89/* The fd is not examined when using MAP_ANON. */
fcf70d41 90# define ANONFD -1
2064087b 91#else
d66e34cd 92int _dl_zerofd = -1;
fcf70d41 93# define ANONFD _dl_zerofd
2064087b
RM
94#endif
95
4cca6b86
UD
96/* Handle situations where we have a preferred location in memory for
97 the shared objects. */
98#ifdef ELF_PREFERRED_ADDRESS_DATA
99ELF_PREFERRED_ADDRESS_DATA;
100#endif
101#ifndef ELF_PREFERRED_ADDRESS
fcf70d41 102# define ELF_PREFERRED_ADDRESS(loader, maplength, mapstartpref) (mapstartpref)
4cca6b86
UD
103#endif
104#ifndef ELF_FIXED_ADDRESS
fcf70d41 105# define ELF_FIXED_ADDRESS(loader, mapstart) ((void) 0)
4cca6b86
UD
106#endif
107
dcca3fe2 108
664e7d93 109int __stack_prot attribute_hidden attribute_relro
44828b9d 110#if _STACK_GROWS_DOWN && defined PROT_GROWSDOWN
0ecb606c 111 = PROT_GROWSDOWN;
44828b9d 112#elif _STACK_GROWS_UP && defined PROT_GROWSUP
0ecb606c
JJ
113 = PROT_GROWSUP;
114#else
115 = 0;
664e7d93
UD
116#endif
117
dcca3fe2 118
a35e137a
UD
119/* Type for the buffer we put the ELF header and hopefully the program
120 header. This buffer does not really have to be too large. In most
121 cases the program header follows the ELF header directly. If this
6fffb9a2
UD
122 is not the case all bets are off and we can make the header
123 arbitrarily large and still won't get it read. This means the only
124 question is how large are the ELF and program header combined. The
125 ELF header 32-bit files is 52 bytes long and in 64-bit files is 64
126 bytes long. Each program header entry is again 32 and 56 bytes
0ecb606c
JJ
127 long respectively. I.e., even with a file which has 10 program
128 header entries we only have to read 372B/624B respectively. Add to
129 this a bit of margin for program notes and reading 512B and 832B
130 for 32-bit and 64-bit files respecitvely is enough. If this
131 heuristic should really fail for some file the code in
132 `_dl_map_object_from_fd' knows how to recover. */
a35e137a
UD
133struct filebuf
134{
135 ssize_t len;
868b9d6a 136#if __WORDSIZE == 32
ca97fb53
UD
137# define FILEBUF_SIZE 512
138#else
0ecb606c 139# define FILEBUF_SIZE 832
ca97fb53 140#endif
6fffb9a2 141 char buf[FILEBUF_SIZE] __attribute__ ((aligned (__alignof (ElfW(Ehdr)))));
a35e137a
UD
142};
143
7ef90c15 144/* This is the decomposed LD_LIBRARY_PATH search path. */
392a6b52 145static struct r_search_path_struct env_path_list attribute_relro;
40a55d20 146
12264bd7 147/* List of the hardware capabilities we might end up using. */
392a6b52
UD
148static const struct r_strlenpair *capstr attribute_relro;
149static size_t ncapstr attribute_relro;
150static size_t max_capstrlen attribute_relro;
12264bd7 151
40a55d20 152
ab7eb292
UD
153/* Get the generated information about the trusted directories. */
154#include "trusted-dirs.h"
155
156static const char system_dirs[] = SYSTEM_DIRS;
157static const size_t system_dirs_len[] =
158{
159 SYSTEM_DIRS_LEN
160};
4a6d1198
UD
161#define nsystem_dirs_len \
162 (sizeof (system_dirs_len) / sizeof (system_dirs_len[0]))
ab7eb292 163
32c85e43 164
706074a5
UD
165/* Local version of `strdup' function. */
166static inline char *
167local_strdup (const char *s)
168{
169 size_t len = strlen (s) + 1;
170 void *new = malloc (len);
171
172 if (new == NULL)
173 return NULL;
174
175 return (char *) memcpy (new, s, len);
176}
177
dc5efe83 178
6d5d3ae3 179static size_t
379d4ec4 180is_dst (const char *start, const char *name, const char *str,
d43c8c5f 181 int is_path, int secure)
6d5d3ae3
UD
182{
183 size_t len;
379d4ec4 184 bool is_curly = false;
6d5d3ae3 185
379d4ec4
UD
186 if (name[0] == '{')
187 {
188 is_curly = true;
189 ++name;
190 }
191
192 len = 0;
193 while (name[len] == str[len] && name[len] != '\0')
194 ++len;
195
196 if (is_curly)
197 {
198 if (name[len] != '}')
199 return 0;
200
201 /* Point again at the beginning of the name. */
202 --name;
203 /* Skip over closing curly brace and adjust for the --name. */
204 len += 2;
205 }
206 else if (name[len] != '\0' && name[len] != '/'
207 && (!is_path || name[len] != ':'))
6d5d3ae3
UD
208 return 0;
209
210 if (__builtin_expect (secure, 0)
379d4ec4 211 && ((name[len] != '\0' && (!is_path || name[len] != ':'))
6d5d3ae3
UD
212 || (name != start + 1 && (!is_path || name[-2] != ':'))))
213 return 0;
214
215 return len;
216}
217
218
dc5efe83
UD
219size_t
220_dl_dst_count (const char *name, int is_path)
f787edde 221{
2864e767 222 const char *const start = name;
f787edde 223 size_t cnt = 0;
f787edde 224
dc5efe83 225 do
f787edde 226 {
379d4ec4 227 size_t len;
f787edde 228
32463b1a 229 /* $ORIGIN is not expanded for SUID/GUID programs (except if it
379d4ec4
UD
230 is $ORIGIN alone) and it must always appear first in path. */
231 ++name;
232 if ((len = is_dst (start, name, "ORIGIN", is_path,
e6caf4e1 233 INTUSE(__libc_enable_secure))) != 0
27af5372
RM
234 || (len = is_dst (start, name, "PLATFORM", is_path, 0)) != 0
235 || (len = is_dst (start, name, "LIB", is_path, 0)) != 0)
f787edde
UD
236 ++cnt;
237
dc5efe83 238 name = strchr (name + len, '$');
f787edde 239 }
dc5efe83 240 while (name != NULL);
f787edde 241
dc5efe83
UD
242 return cnt;
243}
f787edde 244
f787edde 245
dc5efe83
UD
246char *
247_dl_dst_substitute (struct link_map *l, const char *name, char *result,
248 int is_path)
249{
2864e767 250 const char *const start = name;
dc5efe83 251 char *last_elem, *wp;
f787edde
UD
252
253 /* Now fill the result path. While copying over the string we keep
254 track of the start of the last path element. When we come accross
255 a DST we copy over the value or (if the value is not available)
256 leave the entire path element out. */
257 last_elem = wp = result;
dc5efe83 258
f787edde
UD
259 do
260 {
39b3385d 261 if (__builtin_expect (*name == '$', 0))
f787edde 262 {
2541eda0 263 const char *repl = NULL;
379d4ec4 264 size_t len;
2541eda0 265
379d4ec4
UD
266 ++name;
267 if ((len = is_dst (start, name, "ORIGIN", is_path,
e6caf4e1 268 INTUSE(__libc_enable_secure))) != 0)
0ecb606c
JJ
269 {
270#ifndef SHARED
271 if (l == NULL)
272 repl = _dl_get_origin ();
273 else
274#endif
275 repl = l->l_origin;
276 }
27af5372 277 else if ((len = is_dst (start, name, "PLATFORM", is_path, 0)) != 0)
afdca0f2 278 repl = GLRO(dl_platform);
27af5372
RM
279 else if ((len = is_dst (start, name, "LIB", is_path, 0)) != 0)
280 repl = DL_DST_LIB;
2541eda0 281
2541eda0
UD
282 if (repl != NULL && repl != (const char *) -1)
283 {
284 wp = __stpcpy (wp, repl);
285 name += len;
286 }
287 else if (len > 1)
f787edde 288 {
2541eda0
UD
289 /* We cannot use this path element, the value of the
290 replacement is unknown. */
291 wp = last_elem;
292 name += len;
293 while (*name != '\0' && (!is_path || *name != ':'))
294 ++name;
f787edde
UD
295 }
296 else
27aa0631 297 /* No DST we recognize. */
379d4ec4 298 *wp++ = '$';
f787edde 299 }
2541eda0 300 else
f787edde 301 {
dc5efe83 302 *wp++ = *name++;
2541eda0
UD
303 if (is_path && *name == ':')
304 last_elem = wp;
f787edde 305 }
f787edde 306 }
dc5efe83 307 while (*name != '\0');
f787edde
UD
308
309 *wp = '\0';
310
311 return result;
312}
313
dc5efe83
UD
314
315/* Return copy of argument with all recognized dynamic string tokens
316 ($ORIGIN and $PLATFORM for now) replaced. On some platforms it
317 might not be possible to determine the path from which the object
318 belonging to the map is loaded. In this case the path element
319 containing $ORIGIN is left out. */
320static char *
321expand_dynamic_string_token (struct link_map *l, const char *s)
322{
323 /* We make two runs over the string. First we determine how large the
324 resulting string is and then we copy it over. Since this is now
325 frequently executed operation we are looking here not for performance
326 but rather for code size. */
327 size_t cnt;
328 size_t total;
329 char *result;
330
2864e767 331 /* Determine the number of DST elements. */
dc5efe83
UD
332 cnt = DL_DST_COUNT (s, 1);
333
334 /* If we do not have to replace anything simply copy the string. */
55c91021 335 if (__builtin_expect (cnt, 0) == 0)
dc5efe83
UD
336 return local_strdup (s);
337
338 /* Determine the length of the substituted string. */
339 total = DL_DST_REQUIRED (l, s, strlen (s), cnt);
340
341 /* Allocate the necessary memory. */
342 result = (char *) malloc (total + 1);
343 if (result == NULL)
344 return NULL;
345
154d10bd 346 return _dl_dst_substitute (l, s, result, 1);
dc5efe83
UD
347}
348
349
0413b54c
UD
350/* Add `name' to the list of names for a particular shared object.
351 `name' is expected to have been allocated with malloc and will
352 be freed if the shared object already has this name.
353 Returns false if the object already had this name. */
76156ea1 354static void
12264bd7 355internal_function
76156ea1 356add_name_to_object (struct link_map *l, const char *name)
0a54e401 357{
0413b54c
UD
358 struct libname_list *lnp, *lastp;
359 struct libname_list *newname;
76156ea1 360 size_t name_len;
0413b54c
UD
361
362 lastp = NULL;
363 for (lnp = l->l_libname; lnp != NULL; lastp = lnp, lnp = lnp->next)
364 if (strcmp (name, lnp->name) == 0)
76156ea1 365 return;
0413b54c 366
76156ea1 367 name_len = strlen (name) + 1;
839be784 368 newname = (struct libname_list *) malloc (sizeof *newname + name_len);
0413b54c 369 if (newname == NULL)
da832465
UD
370 {
371 /* No more memory. */
154d10bd 372 _dl_signal_error (ENOMEM, name, NULL, N_("cannot allocate name record"));
76156ea1 373 return;
da832465 374 }
0413b54c
UD
375 /* The object should have a libname set from _dl_new_object. */
376 assert (lastp != NULL);
377
76156ea1 378 newname->name = memcpy (newname + 1, name, name_len);
0413b54c 379 newname->next = NULL;
752a2a50 380 newname->dont_free = 0;
0413b54c 381 lastp->next = newname;
0413b54c
UD
382}
383
12264bd7 384/* Standard search directories. */
392a6b52 385static struct r_search_path_struct rtld_search_dirs attribute_relro;
0a54e401 386
a658675d 387static size_t max_dirnamelen;
0a54e401 388
dd9423a6 389static struct r_search_path_elem **
0a54e401 390fillin_rpath (char *rpath, struct r_search_path_elem **result, const char *sep,
ab7eb292 391 int check_trusted, const char *what, const char *where)
0a54e401
UD
392{
393 char *cp;
394 size_t nelems = 0;
395
396 while ((cp = __strsep (&rpath, sep)) != NULL)
397 {
398 struct r_search_path_elem *dirp;
399 size_t len = strlen (cp);
12264bd7 400
af3878df
UD
401 /* `strsep' can pass an empty string. This has to be
402 interpreted as `use the current directory'. */
12264bd7 403 if (len == 0)
af3878df 404 {
ab7eb292
UD
405 static const char curwd[] = "./";
406 cp = (char *) curwd;
af3878df 407 }
12264bd7 408
143e2b96 409 /* Remove trailing slashes (except for "/"). */
0a54e401
UD
410 while (len > 1 && cp[len - 1] == '/')
411 --len;
412
ab7eb292
UD
413 /* Now add one if there is none so far. */
414 if (len > 0 && cp[len - 1] != '/')
415 cp[len++] = '/';
416
07ba7349
UD
417 /* Make sure we don't use untrusted directories if we run SUID. */
418 if (__builtin_expect (check_trusted, 0))
419 {
420 const char *trun = system_dirs;
421 size_t idx;
422 int unsecure = 1;
423
424 /* All trusted directories must be complete names. */
425 if (cp[0] == '/')
426 {
427 for (idx = 0; idx < nsystem_dirs_len; ++idx)
428 {
429 if (len == system_dirs_len[idx]
430 && memcmp (trun, cp, len) == 0)
431 {
432 /* Found it. */
433 unsecure = 0;
434 break;
435 }
436
437 trun += system_dirs_len[idx] + 1;
438 }
439 }
440
441 if (unsecure)
442 /* Simply drop this directory. */
443 continue;
444 }
445
0a54e401 446 /* See if this directory is already known. */
d6b5d570 447 for (dirp = GL(dl_all_dirs); dirp != NULL; dirp = dirp->next)
12264bd7 448 if (dirp->dirnamelen == len && memcmp (cp, dirp->dirname, len) == 0)
0a54e401
UD
449 break;
450
451 if (dirp != NULL)
452 {
12264bd7 453 /* It is available, see whether it's on our own list. */
0a54e401
UD
454 size_t cnt;
455 for (cnt = 0; cnt < nelems; ++cnt)
456 if (result[cnt] == dirp)
457 break;
458
459 if (cnt == nelems)
460 result[nelems++] = dirp;
461 }
462 else
463 {
12264bd7 464 size_t cnt;
839be784 465 enum r_dir_status init_val;
4a6d1198 466 size_t where_len = where ? strlen (where) + 1 : 0;
12264bd7 467
0a54e401 468 /* It's a new directory. Create an entry and add it. */
12264bd7 469 dirp = (struct r_search_path_elem *)
32ee8d95 470 malloc (sizeof (*dirp) + ncapstr * sizeof (enum r_dir_status)
f55727ca 471 + where_len + len + 1);
0a54e401 472 if (dirp == NULL)
154d10bd
UD
473 _dl_signal_error (ENOMEM, NULL, NULL,
474 N_("cannot create cache for search path"));
0a54e401 475
f55727ca
UD
476 dirp->dirname = ((char *) dirp + sizeof (*dirp)
477 + ncapstr * sizeof (enum r_dir_status));
104d0bd3 478 *((char *) __mempcpy ((char *) dirp->dirname, cp, len)) = '\0';
0a54e401 479 dirp->dirnamelen = len;
12264bd7
UD
480
481 if (len > max_dirnamelen)
482 max_dirnamelen = len;
483
07ba7349
UD
484 /* We have to make sure all the relative directories are
485 never ignored. The current directory might change and
486 all our saved information would be void. */
487 init_val = cp[0] != '/' ? existing : unknown;
839be784
UD
488 for (cnt = 0; cnt < ncapstr; ++cnt)
489 dirp->status[cnt] = init_val;
0a54e401 490
b5efde2f 491 dirp->what = what;
4a6d1198 492 if (__builtin_expect (where != NULL, 1))
f55727ca 493 dirp->where = memcpy ((char *) dirp + sizeof (*dirp) + len + 1
d6b5d570 494 + (ncapstr * sizeof (enum r_dir_status)),
4a6d1198
UD
495 where, where_len);
496 else
497 dirp->where = NULL;
b5efde2f 498
d6b5d570
UD
499 dirp->next = GL(dl_all_dirs);
500 GL(dl_all_dirs) = dirp;
0a54e401
UD
501
502 /* Put it in the result array. */
503 result[nelems++] = dirp;
504 }
505 }
506
507 /* Terminate the array. */
508 result[nelems] = NULL;
509
510 return result;
511}
512
513
0ecb606c 514static bool
12264bd7 515internal_function
f55727ca
UD
516decompose_rpath (struct r_search_path_struct *sps,
517 const char *rpath, struct link_map *l, const char *what)
0a54e401
UD
518{
519 /* Make a copy we can work with. */
f787edde 520 const char *where = l->l_name;
310930c1 521 char *copy;
0a54e401
UD
522 char *cp;
523 struct r_search_path_elem **result;
310930c1 524 size_t nelems;
39b3385d
UD
525 /* Initialize to please the compiler. */
526 const char *errstring = NULL;
310930c1 527
fcf70d41
UD
528 /* First see whether we must forget the RUNPATH and RPATH from this
529 object. */
afdca0f2 530 if (__builtin_expect (GLRO(dl_inhibit_rpath) != NULL, 0)
e6caf4e1 531 && !INTUSE(__libc_enable_secure))
310930c1 532 {
afdca0f2 533 const char *inhp = GLRO(dl_inhibit_rpath);
9710f75d
UD
534
535 do
310930c1 536 {
9710f75d
UD
537 const char *wp = where;
538
539 while (*inhp == *wp && *wp != '\0')
540 {
541 ++inhp;
542 ++wp;
543 }
544
545 if (*wp == '\0' && (*inhp == '\0' || *inhp == ':'))
310930c1 546 {
fcf70d41
UD
547 /* This object is on the list of objects for which the
548 RUNPATH and RPATH must not be used. */
0ecb606c
JJ
549 sps->dirs = (void *) -1;
550 return false;
310930c1 551 }
9710f75d
UD
552
553 while (*inhp != '\0')
554 if (*inhp++ == ':')
555 break;
310930c1 556 }
9710f75d 557 while (*inhp != '\0');
310930c1 558 }
0a54e401 559
f787edde
UD
560 /* Make a writable copy. At the same time expand possible dynamic
561 string tokens. */
562 copy = expand_dynamic_string_token (l, rpath);
563 if (copy == NULL)
39b3385d
UD
564 {
565 errstring = N_("cannot create RUNPATH/RPATH copy");
566 goto signal_error;
567 }
f787edde 568
310930c1 569 /* Count the number of necessary elements in the result array. */
310930c1 570 nelems = 0;
0a54e401
UD
571 for (cp = copy; *cp != '\0'; ++cp)
572 if (*cp == ':')
573 ++nelems;
574
7ef90c15
UD
575 /* Allocate room for the result. NELEMS + 1 is an upper limit for the
576 number of necessary entries. */
577 result = (struct r_search_path_elem **) malloc ((nelems + 1 + 1)
0a54e401
UD
578 * sizeof (*result));
579 if (result == NULL)
0ecb606c
JJ
580 {
581 errstring = N_("cannot create cache for search path");
582 signal_error:
583 _dl_signal_error (ENOMEM, NULL, NULL, errstring);
584 }
0a54e401 585
f55727ca
UD
586 fillin_rpath (copy, result, ":", 0, what, where);
587
588 /* Free the copied RPATH string. `fillin_rpath' make own copies if
589 necessary. */
590 free (copy);
591
592 sps->dirs = result;
593 /* The caller will change this value if we haven't used a real malloc. */
594 sps->malloced = 1;
0ecb606c 595 return true;
0a54e401
UD
596}
597
45e4762c
RM
598/* Make sure cached path information is stored in *SP
599 and return true if there are any paths to search there. */
25337753 600static bool
45e4762c
RM
601cache_rpath (struct link_map *l,
602 struct r_search_path_struct *sp,
603 int tag,
604 const char *what)
605{
606 if (sp->dirs == (void *) -1)
607 return false;
608
609 if (sp->dirs != NULL)
610 return true;
611
612 if (l->l_info[tag] == NULL)
613 {
614 /* There is no path. */
615 sp->dirs = (void *) -1;
616 return false;
617 }
618
619 /* Make sure the cache information is available. */
0ecb606c
JJ
620 return decompose_rpath (sp, (const char *) (D_PTR (l, l_info[DT_STRTAB])
621 + l->l_info[tag]->d_un.d_val),
622 l, what);
45e4762c
RM
623}
624
0a54e401
UD
625
626void
d0fc4041 627internal_function
880f421f 628_dl_init_paths (const char *llp)
0a54e401 629{
ab7eb292
UD
630 size_t idx;
631 const char *strp;
12264bd7
UD
632 struct r_search_path_elem *pelem, **aelem;
633 size_t round_size;
b5567b2a 634#ifdef SHARED
c94a8080
UD
635 struct link_map *l;
636#endif
39b3385d
UD
637 /* Initialize to please the compiler. */
638 const char *errstring = NULL;
0a54e401 639
7ef90c15
UD
640 /* Fill in the information about the application's RPATH and the
641 directories addressed by the LD_LIBRARY_PATH environment variable. */
0a54e401 642
4317f9e1 643 /* Get the capabilities. */
afdca0f2 644 capstr = _dl_important_hwcaps (GLRO(dl_platform), GLRO(dl_platformlen),
12264bd7
UD
645 &ncapstr, &max_capstrlen);
646
647 /* First set up the rest of the default search directory entries. */
f55727ca 648 aelem = rtld_search_dirs.dirs = (struct r_search_path_elem **)
4a6d1198 649 malloc ((nsystem_dirs_len + 1) * sizeof (struct r_search_path_elem *));
f55727ca 650 if (rtld_search_dirs.dirs == NULL)
39b3385d
UD
651 {
652 errstring = N_("cannot create search path array");
653 signal_error:
154d10bd 654 _dl_signal_error (ENOMEM, NULL, NULL, errstring);
39b3385d 655 }
12264bd7
UD
656
657 round_size = ((2 * sizeof (struct r_search_path_elem) - 1
658 + ncapstr * sizeof (enum r_dir_status))
659 / sizeof (struct r_search_path_elem));
660
f55727ca 661 rtld_search_dirs.dirs[0] = (struct r_search_path_elem *)
228589d2 662 malloc ((sizeof (system_dirs) / sizeof (system_dirs[0]))
12264bd7 663 * round_size * sizeof (struct r_search_path_elem));
f55727ca 664 if (rtld_search_dirs.dirs[0] == NULL)
39b3385d
UD
665 {
666 errstring = N_("cannot create cache for search path");
667 goto signal_error;
668 }
12264bd7 669
f55727ca 670 rtld_search_dirs.malloced = 0;
d6b5d570 671 pelem = GL(dl_all_dirs) = rtld_search_dirs.dirs[0];
ab7eb292
UD
672 strp = system_dirs;
673 idx = 0;
674
675 do
12264bd7
UD
676 {
677 size_t cnt;
678
679 *aelem++ = pelem;
680
12264bd7
UD
681 pelem->what = "system search path";
682 pelem->where = NULL;
683
ab7eb292
UD
684 pelem->dirname = strp;
685 pelem->dirnamelen = system_dirs_len[idx];
686 strp += system_dirs_len[idx] + 1;
12264bd7 687
f55727ca
UD
688 /* System paths must be absolute. */
689 assert (pelem->dirname[0] == '/');
690 for (cnt = 0; cnt < ncapstr; ++cnt)
691 pelem->status[cnt] = unknown;
ab7eb292 692
4a6d1198 693 pelem->next = (++idx == nsystem_dirs_len ? NULL : (pelem + round_size));
ab7eb292
UD
694
695 pelem += round_size;
12264bd7 696 }
4a6d1198 697 while (idx < nsystem_dirs_len);
ab7eb292
UD
698
699 max_dirnamelen = SYSTEM_DIRS_MAX_LEN;
12264bd7 700 *aelem = NULL;
4317f9e1 701
b5567b2a 702#ifdef SHARED
81e0cb2d 703 /* This points to the map of the main object. */
c0f62c56 704 l = GL(dl_ns)[LM_ID_BASE]._ns_loaded;
011ce8ed
UD
705 if (l != NULL)
706 {
011ce8ed 707 assert (l->l_type != lt_loaded);
40a55d20 708
fcf70d41
UD
709 if (l->l_info[DT_RUNPATH])
710 {
711 /* Allocate room for the search path and fill in information
712 from RUNPATH. */
f55727ca
UD
713 decompose_rpath (&l->l_runpath_dirs,
714 (const void *) (D_PTR (l, l_info[DT_STRTAB])
715 + l->l_info[DT_RUNPATH]->d_un.d_val),
716 l, "RUNPATH");
fcf70d41
UD
717
718 /* The RPATH is ignored. */
f55727ca 719 l->l_rpath_dirs.dirs = (void *) -1;
fcf70d41 720 }
011ce8ed 721 else
fcf70d41 722 {
f55727ca 723 l->l_runpath_dirs.dirs = (void *) -1;
fcf70d41
UD
724
725 if (l->l_info[DT_RPATH])
f55727ca
UD
726 {
727 /* Allocate room for the search path and fill in information
728 from RPATH. */
729 decompose_rpath (&l->l_rpath_dirs,
730 (const void *) (D_PTR (l, l_info[DT_STRTAB])
fcf70d41
UD
731 + l->l_info[DT_RPATH]->d_un.d_val),
732 l, "RPATH");
f55727ca
UD
733 l->l_rpath_dirs.malloced = 0;
734 }
fcf70d41 735 else
f55727ca 736 l->l_rpath_dirs.dirs = (void *) -1;
fcf70d41 737 }
0a54e401 738 }
b5567b2a 739#endif /* SHARED */
7ef90c15
UD
740
741 if (llp != NULL && *llp != '\0')
0a54e401 742 {
7ef90c15
UD
743 size_t nllp;
744 const char *cp = llp;
0ecb606c
JJ
745 char *llp_tmp;
746
747#ifdef SHARED
748 /* Expand DSTs. */
749 size_t cnt = DL_DST_COUNT (llp, 1);
750 if (__builtin_expect (cnt == 0, 1))
751 llp_tmp = strdupa (llp);
752 else
753 {
754 /* Determine the length of the substituted string. */
755 size_t total = DL_DST_REQUIRED (l, llp, strlen (llp), cnt);
756
757 /* Allocate the necessary memory. */
758 llp_tmp = (char *) alloca (total + 1);
759 llp_tmp = _dl_dst_substitute (l, llp, llp_tmp, 1);
760 }
761#else
762 llp_tmp = strdupa (llp);
763#endif
011ce8ed 764
7ef90c15
UD
765 /* Decompose the LD_LIBRARY_PATH contents. First determine how many
766 elements it has. */
767 nllp = 1;
768 while (*cp)
0a54e401 769 {
7ef90c15
UD
770 if (*cp == ':' || *cp == ';')
771 ++nllp;
772 ++cp;
011ce8ed 773 }
7ef90c15 774
f55727ca 775 env_path_list.dirs = (struct r_search_path_elem **)
7ef90c15 776 malloc ((nllp + 1) * sizeof (struct r_search_path_elem *));
f55727ca 777 if (env_path_list.dirs == NULL)
39b3385d
UD
778 {
779 errstring = N_("cannot create cache for search path");
780 goto signal_error;
781 }
7ef90c15 782
b0ed91ae 783 (void) fillin_rpath (llp_tmp, env_path_list.dirs, ":;",
e6caf4e1
UD
784 INTUSE(__libc_enable_secure), "LD_LIBRARY_PATH",
785 NULL);
6a7c9bb4 786
f55727ca 787 if (env_path_list.dirs[0] == NULL)
6a7c9bb4 788 {
f55727ca
UD
789 free (env_path_list.dirs);
790 env_path_list.dirs = (void *) -1;
6a7c9bb4 791 }
f55727ca
UD
792
793 env_path_list.malloced = 0;
81e0cb2d 794 }
152e7964 795 else
f55727ca
UD
796 env_path_list.dirs = (void *) -1;
797
798 /* Remember the last search directory added at startup. */
c31e278f 799 GLRO(dl_init_all_dirs) = GL(dl_all_dirs);
0a54e401
UD
800}
801
802
a6291c3d 803static void
a481b13c 804__attribute__ ((noreturn, noinline))
126b06f9 805lose (int code, int fd, const char *name, char *realname, struct link_map *l,
0ecb606c 806 const char *msg, struct r_debug *r)
126b06f9 807{
fb0356b9 808 /* The file might already be closed. */
a481b13c
UD
809 if (fd != -1)
810 (void) __close (fd);
126b06f9
UD
811 if (l != NULL)
812 {
813 /* Remove the stillborn object from the list and free it. */
8bbd5f84 814 assert (l->l_next == NULL);
8bbd5f84 815 if (l->l_prev == NULL)
1a640298
RM
816 /* No other module loaded. This happens only in the static library,
817 or in rtld under --verify. */
c0f62c56 818 GL(dl_ns)[l->l_ns]._ns_loaded = NULL;
8bbd5f84 819 else
8bbd5f84 820 l->l_prev->l_next = NULL;
c0f62c56 821 --GL(dl_ns)[l->l_ns]._ns_nloaded;
126b06f9
UD
822 free (l);
823 }
824 free (realname);
0ecb606c
JJ
825
826 if (r != NULL)
827 {
828 r->r_state = RT_CONSISTENT;
829 _dl_debug_state ();
830 }
831
154d10bd 832 _dl_signal_error (code, name, NULL, msg);
126b06f9
UD
833}
834
835
ea03559a
RM
836/* Map in the shared object NAME, actually located in REALNAME, and already
837 opened on FD. */
838
f787edde
UD
839#ifndef EXTERNAL_MAP_FROM_FD
840static
841#endif
ea03559a 842struct link_map *
a35e137a
UD
843_dl_map_object_from_fd (const char *name, int fd, struct filebuf *fbp,
844 char *realname, struct link_map *loader, int l_type,
c0f62c56 845 int mode, void **stack_endp, Lmid_t nsid)
ea03559a 846{
622586fb 847 struct link_map *l = NULL;
266180eb
RM
848 const ElfW(Ehdr) *header;
849 const ElfW(Phdr) *phdr;
850 const ElfW(Phdr) *ph;
8193034b 851 size_t maplength;
b122c703 852 int type;
5763742f 853 struct stat64 st;
39b3385d
UD
854 /* Initialize to keep the compiler happy. */
855 const char *errstring = NULL;
856 int errval = 0;
0ecb606c
JJ
857 struct r_debug *r = _dl_debug_initialize (0, nsid);
858 bool make_consistent = false;
61e0617a
UD
859
860 /* Get file information. */
39b3385d
UD
861 if (__builtin_expect (__fxstat64 (_STAT_VER, fd, &st) < 0, 0))
862 {
863 errstring = N_("cannot stat shared object");
864 call_lose_errno:
865 errval = errno;
866 call_lose:
0ecb606c
JJ
867 lose (errval, fd, name, realname, l, errstring,
868 make_consistent ? r : NULL);
39b3385d 869 }
d66e34cd
RM
870
871 /* Look again to see if the real name matched another already loaded. */
c0f62c56 872 for (l = GL(dl_ns)[nsid]._ns_loaded; l; l = l->l_next)
0ecb606c 873 if (l->l_removed == 0 && l->l_ino == st.st_ino && l->l_dev == st.st_dev)
d66e34cd
RM
874 {
875 /* The object is already loaded.
876 Just bump its reference count and return it. */
266180eb 877 __close (fd);
c84142e8
UD
878
879 /* If the name is not in the list of names for this object add
880 it. */
ea03559a 881 free (realname);
0413b54c 882 add_name_to_object (l, name);
8699e7b1 883
d66e34cd
RM
884 return l;
885 }
886
c0f62c56
UD
887#ifdef SHARED
888 /* When loading into a namespace other than the base one we must
889 avoid loading ld.so since there can only be one copy. Ever. */
890 if (__builtin_expect (nsid != LM_ID_BASE, 0)
891 && ((st.st_ino == GL(dl_rtld_map).l_ino
892 && st.st_dev == GL(dl_rtld_map).l_dev)
893 || _dl_name_match_p (name, &GL(dl_rtld_map))))
894 {
895 /* This is indeed ld.so. Create a new link_map which refers to
896 the real one for almost everything. */
897 l = _dl_new_object (realname, name, l_type, loader, mode, nsid);
898 if (l == NULL)
899 goto fail_new;
900
901 /* Refer to the real descriptor. */
902 l->l_real = &GL(dl_rtld_map);
903
904 /* No need to bump the refcount of the real object, ld.so will
905 never be unloaded. */
906 __close (fd);
907
908 return l;
909 }
910#endif
911
2f54c82d 912 if (mode & RTLD_NOLOAD)
bf8b3e74
UD
913 /* We are not supposed to load the object unless it is already
914 loaded. So return now. */
915 return NULL;
916
8193034b 917 /* Print debugging message. */
afdca0f2 918 if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_FILES, 0))
c0f62c56 919 _dl_debug_printf ("file=%s [%lu]; generating link map\n", name, nsid);
8193034b 920
a35e137a
UD
921 /* This is the ELF header. We read it in `open_verify'. */
922 header = (void *) fbp->buf;
d66e34cd 923
2064087b 924#ifndef MAP_ANON
126b06f9 925# define MAP_ANON 0
d66e34cd
RM
926 if (_dl_zerofd == -1)
927 {
928 _dl_zerofd = _dl_sysdep_open_zero_fill ();
929 if (_dl_zerofd == -1)
ba79d61b
RM
930 {
931 __close (fd);
154d10bd
UD
932 _dl_signal_error (errno, NULL, NULL,
933 N_("cannot open zero fill device"));
ba79d61b 934 }
d66e34cd 935 }
2064087b 936#endif
d66e34cd 937
0ecb606c
JJ
938 /* Signal that we are going to add new objects. */
939 if (r->r_state == RT_CONSISTENT)
940 {
941#ifdef SHARED
942 /* Auditing checkpoint: we are going to add new objects. */
943 if (__builtin_expect (GLRO(dl_naudit) > 0, 0))
944 {
945 struct link_map *head = GL(dl_ns)[nsid]._ns_loaded;
946 /* Do not call the functions for any auditing object. */
947 if (head->l_auditing == 0)
948 {
949 struct audit_ifaces *afct = GLRO(dl_audit);
950 for (unsigned int cnt = 0; cnt < GLRO(dl_naudit); ++cnt)
951 {
952 if (afct->activity != NULL)
953 afct->activity (&head->l_audit[cnt].cookie, LA_ACT_ADD);
954
955 afct = afct->next;
956 }
957 }
958 }
959#endif
960
961 /* Notify the debugger we have added some objects. We need to
962 call _dl_debug_initialize in a static program in case dynamic
963 linking has not been used before. */
964 r->r_state = RT_ADD;
965 _dl_debug_state ();
966 make_consistent = true;
967 }
968 else
969 assert (r->r_state == RT_ADD);
970
ba79d61b 971 /* Enter the new object in the list of loaded objects. */
c0f62c56
UD
972 l = _dl_new_object (realname, name, l_type, loader, mode, nsid);
973 if (__builtin_expect (l == NULL, 0))
39b3385d 974 {
7cb92a99 975#ifdef SHARED
c0f62c56 976 fail_new:
7cb92a99 977#endif
39b3385d
UD
978 errstring = N_("cannot create shared object descriptor");
979 goto call_lose_errno;
980 }
ba79d61b 981
b122c703 982 /* Extract the remaining details we need from the ELF header
32c85e43 983 and then read in the program header table. */
b122c703
RM
984 l->l_entry = header->e_entry;
985 type = header->e_type;
986 l->l_phnum = header->e_phnum;
32c85e43
UD
987
988 maplength = header->e_phnum * sizeof (ElfW(Phdr));
6dd67bd5 989 if (header->e_phoff + maplength <= (size_t) fbp->len)
a35e137a 990 phdr = (void *) (fbp->buf + header->e_phoff);
32c85e43
UD
991 else
992 {
993 phdr = alloca (maplength);
0e15c4b6 994 __lseek (fd, header->e_phoff, SEEK_SET);
6dd67bd5 995 if ((size_t) __libc_read (fd, (void *) phdr, maplength) != maplength)
39b3385d
UD
996 {
997 errstring = N_("cannot read file data");
998 goto call_lose_errno;
999 }
32c85e43 1000 }
879bf2e6 1001
ecdeaac0
RM
1002 /* Presumed absent PT_GNU_STACK. */
1003 uint_fast16_t stack_flags = PF_R|PF_W|PF_X;
1004
b122c703
RM
1005 {
1006 /* Scan the program header table, collecting its load commands. */
1007 struct loadcmd
1008 {
266180eb 1009 ElfW(Addr) mapstart, mapend, dataend, allocend;
b122c703
RM
1010 off_t mapoff;
1011 int prot;
1012 } loadcmds[l->l_phnum], *c;
1013 size_t nloadcmds = 0;
6fffb9a2 1014 bool has_holes = false;
d66e34cd 1015
126b06f9 1016 /* The struct is initialized to zero so this is not necessary:
d66e34cd 1017 l->l_ld = 0;
b122c703 1018 l->l_phdr = 0;
126b06f9 1019 l->l_addr = 0; */
d66e34cd
RM
1020 for (ph = phdr; ph < &phdr[l->l_phnum]; ++ph)
1021 switch (ph->p_type)
1022 {
1023 /* These entries tell us where to find things once the file's
1024 segments are mapped in. We record the addresses it says
1025 verbatim, and later correct for the run-time load address. */
1026 case PT_DYNAMIC:
1027 l->l_ld = (void *) ph->p_vaddr;
dacc8ffa 1028 l->l_ldnum = ph->p_memsz / sizeof (ElfW(Dyn));
d66e34cd 1029 break;
39b3385d 1030
d66e34cd
RM
1031 case PT_PHDR:
1032 l->l_phdr = (void *) ph->p_vaddr;
1033 break;
1034
1035 case PT_LOAD:
b122c703
RM
1036 /* A load command tells us to map in part of the file.
1037 We record the load commands and process them all later. */
afdca0f2 1038 if (__builtin_expect ((ph->p_align & (GLRO(dl_pagesize) - 1)) != 0,
fd77c361 1039 0))
39b3385d
UD
1040 {
1041 errstring = N_("ELF load command alignment not page-aligned");
1042 goto call_lose;
1043 }
fd77c361
UD
1044 if (__builtin_expect (((ph->p_vaddr - ph->p_offset)
1045 & (ph->p_align - 1)) != 0, 0))
39b3385d
UD
1046 {
1047 errstring
1048 = N_("ELF load command address/offset not properly aligned");
1049 goto call_lose;
1050 }
1051
cc12f2a4 1052 c = &loadcmds[nloadcmds++];
410828e4 1053 c->mapstart = ph->p_vaddr & ~(GLRO(dl_pagesize) - 1);
afdca0f2
UD
1054 c->mapend = ((ph->p_vaddr + ph->p_filesz + GLRO(dl_pagesize) - 1)
1055 & ~(GLRO(dl_pagesize) - 1));
cc12f2a4
UD
1056 c->dataend = ph->p_vaddr + ph->p_filesz;
1057 c->allocend = ph->p_vaddr + ph->p_memsz;
410828e4 1058 c->mapoff = ph->p_offset & ~(GLRO(dl_pagesize) - 1);
cc12f2a4 1059
6fffb9a2
UD
1060 /* Determine whether there is a gap between the last segment
1061 and this one. */
1062 if (nloadcmds > 1 && c[-1].mapend != c->mapstart)
1063 has_holes = true;
1064
cc12f2a4 1065 /* Optimize a common case. */
94a758fe 1066#if (PF_R | PF_W | PF_X) == 7 && (PROT_READ | PROT_WRITE | PROT_EXEC) == 7
cc12f2a4
UD
1067 c->prot = (PF_TO_PROT
1068 >> ((ph->p_flags & (PF_R | PF_W | PF_X)) * 4)) & 0xf;
94a758fe 1069#else
cc12f2a4
UD
1070 c->prot = 0;
1071 if (ph->p_flags & PF_R)
1072 c->prot |= PROT_READ;
1073 if (ph->p_flags & PF_W)
1074 c->prot |= PROT_WRITE;
1075 if (ph->p_flags & PF_X)
1076 c->prot |= PROT_EXEC;
94a758fe 1077#endif
55c91021 1078 break;
96f208a4 1079
96f208a4 1080 case PT_TLS:
807bce82 1081#ifdef USE_TLS
2d148689
RM
1082 if (ph->p_memsz == 0)
1083 /* Nothing to do for an empty segment. */
1084 break;
1085
216455bc
RM
1086 l->l_tls_blocksize = ph->p_memsz;
1087 l->l_tls_align = ph->p_align;
99fe3b0e
UD
1088 if (ph->p_align == 0)
1089 l->l_tls_firstbyte_offset = 0;
1090 else
1091 l->l_tls_firstbyte_offset = ph->p_vaddr & (ph->p_align - 1);
216455bc
RM
1092 l->l_tls_initimage_size = ph->p_filesz;
1093 /* Since we don't know the load address yet only store the
1094 offset. We will adjust it later. */
1095 l->l_tls_initimage = (void *) ph->p_vaddr;
1096
2d148689
RM
1097 /* If not loading the initial set of shared libraries,
1098 check whether we should permit loading a TLS segment. */
216455bc 1099 if (__builtin_expect (l->l_type == lt_library, 1)
850dcfca
UD
1100 /* If GL(dl_tls_dtv_slotinfo_list) == NULL, then rtld.c did
1101 not set up TLS data structures, so don't use them now. */
1102 || __builtin_expect (GL(dl_tls_dtv_slotinfo_list) != NULL, 1))
96f208a4 1103 {
aed283dd
UD
1104 /* Assign the next available module ID. */
1105 l->l_tls_modid = _dl_next_tls_modid ();
2d148689 1106 break;
96f208a4 1107 }
2d148689 1108
216455bc 1109# ifdef SHARED
0ecb606c 1110 if (l->l_prev == NULL || (mode & __RTLD_AUDIT) != 0)
2d148689
RM
1111 /* We are loading the executable itself when the dynamic linker
1112 was executed directly. The setup will happen later. */
1113 break;
216455bc
RM
1114
1115 /* In a static binary there is no way to tell if we dynamically
1116 loaded libpthread. */
1117 if (GL(dl_error_catch_tsd) == &_dl_initial_error_catch_tsd)
1118# endif
1119 {
1120 /* We have not yet loaded libpthread.
1121 We can do the TLS setup right now! */
1122
1123 void *tcb;
1124
1125 /* The first call allocates TLS bookkeeping data structures.
1126 Then we allocate the TCB for the initial thread. */
1127 if (__builtin_expect (_dl_tls_setup (), 0)
1128 || __builtin_expect ((tcb = _dl_allocate_tls (NULL)) == NULL,
1129 0))
1130 {
1131 errval = ENOMEM;
1132 errstring = N_("\
1133cannot allocate TLS data structures for initial thread");
1134 goto call_lose;
1135 }
1136
1137 /* Now we install the TCB in the thread register. */
fde89ad0
RM
1138 errstring = TLS_INIT_TP (tcb, 0);
1139 if (__builtin_expect (errstring == NULL, 1))
216455bc
RM
1140 {
1141 /* Now we are all good. */
1142 l->l_tls_modid = ++GL(dl_tls_max_dtv_idx);
1143 break;
1144 }
1145
1146 /* The kernel is too old or somesuch. */
fde89ad0 1147 errval = 0;
216455bc 1148 _dl_deallocate_tls (tcb, 1);
fde89ad0 1149 goto call_lose;
216455bc 1150 }
2d148689
RM
1151#endif
1152
807bce82
UD
1153 /* Uh-oh, the binary expects TLS support but we cannot
1154 provide it. */
2430d57a
RM
1155 errval = 0;
1156 errstring = N_("cannot handle TLS data");
1157 goto call_lose;
807bce82 1158 break;
ecdeaac0
RM
1159
1160 case PT_GNU_STACK:
1161 stack_flags = ph->p_flags;
1162 break;
ed20b3d9
UD
1163
1164 case PT_GNU_RELRO:
1165 l->l_relro_addr = ph->p_vaddr;
1166 l->l_relro_size = ph->p_memsz;
1167 break;
b122c703 1168 }
d66e34cd 1169
d8a5edc2
RM
1170 if (__builtin_expect (nloadcmds == 0, 0))
1171 {
1172 /* This only happens for a bogus object that will be caught with
1173 another error below. But we don't want to go through the
1174 calculations below using NLOADCMDS - 1. */
1175 errstring = N_("object file has no loadable segments");
1176 goto call_lose;
1177 }
1178
b122c703
RM
1179 /* Now process the load commands and map segments into memory. */
1180 c = loadcmds;
1181
8193034b
UD
1182 /* Length of the sections to be loaded. */
1183 maplength = loadcmds[nloadcmds - 1].allocend - c->mapstart;
1184
9987236e 1185 if (__builtin_expect (type, ET_DYN) == ET_DYN)
b122c703
RM
1186 {
1187 /* This is a position-independent shared object. We can let the
1188 kernel map it anywhere it likes, but we must have space for all
1189 the segments in their specified positions relative to the first.
1190 So we map the first segment without MAP_FIXED, but with its
22930c9b
RM
1191 extent increased to cover all the segments. Then we remove
1192 access from excess portion, and there is known sufficient space
4cca6b86
UD
1193 there to remap from the later segments.
1194
1195 As a refinement, sometimes we have an address that we would
1196 prefer to map such objects at; but this is only a preference,
1197 the OS can do whatever it likes. */
4cca6b86 1198 ElfW(Addr) mappref;
97fd3a30 1199 mappref = (ELF_PREFERRED_ADDRESS (loader, maplength,
afdca0f2 1200 c->mapstart & GLRO(dl_use_load_bias))
f21acc89 1201 - MAP_BASE_ADDR (l));
c0282c06
UD
1202
1203 /* Remember which part of the address space this object uses. */
39b3385d 1204 l->l_map_start = (ElfW(Addr)) __mmap ((void *) mappref, maplength,
1773d1ba 1205 c->prot,
0ecb606c 1206 MAP_COPY|MAP_FILE,
39b3385d 1207 fd, c->mapoff);
fd77c361 1208 if (__builtin_expect ((void *) l->l_map_start == MAP_FAILED, 0))
39b3385d
UD
1209 {
1210 map_error:
1211 errstring = N_("failed to map segment from shared object");
1212 goto call_lose_errno;
1213 }
1214
c0282c06 1215 l->l_map_end = l->l_map_start + maplength;
c77ec56d 1216 l->l_addr = l->l_map_start - c->mapstart;
b122c703 1217
6fffb9a2
UD
1218 if (has_holes)
1219 /* Change protection on the excess portion to disallow all access;
1220 the portions we do not remap later will be inaccessible as if
1221 unallocated. Then jump into the normal segment-mapping loop to
1222 handle the portion of the segment past the end of the file
1223 mapping. */
3fb035f6 1224 __mprotect ((caddr_t) (l->l_addr + c->mapend),
0ecb606c 1225 loadcmds[nloadcmds - 1].mapstart - c->mapend,
6fffb9a2 1226 PROT_NONE);
052b6a6c 1227
0ecb606c
JJ
1228 l->l_contiguous = 1;
1229
b122c703
RM
1230 goto postmap;
1231 }
48da1092 1232
efec5079
UD
1233 /* This object is loaded at a fixed address. This must never
1234 happen for objects loaded with dlopen(). */
1235 if (__builtin_expect ((mode & __RTLD_OPENEXEC) == 0, 0))
1236 {
1237 errstring = N_("cannot dynamically load executable");
1238 goto call_lose;
4cca6b86 1239 }
b122c703 1240
efec5079
UD
1241 /* Notify ELF_PREFERRED_ADDRESS that we have to load this one
1242 fixed. */
1243 ELF_FIXED_ADDRESS (loader, c->mapstart);
1244
1245
052b6a6c
UD
1246 /* Remember which part of the address space this object uses. */
1247 l->l_map_start = c->mapstart + l->l_addr;
1248 l->l_map_end = l->l_map_start + maplength;
0ecb606c 1249 l->l_contiguous = !has_holes;
052b6a6c 1250
b122c703
RM
1251 while (c < &loadcmds[nloadcmds])
1252 {
39b3385d
UD
1253 if (c->mapend > c->mapstart
1254 /* Map the segment contents from the file. */
1255 && (__mmap ((void *) (l->l_addr + c->mapstart),
1256 c->mapend - c->mapstart, c->prot,
0ecb606c 1257 MAP_FIXED|MAP_COPY|MAP_FILE,
1773d1ba 1258 fd, c->mapoff)
39b3385d
UD
1259 == MAP_FAILED))
1260 goto map_error;
b122c703
RM
1261
1262 postmap:
eec8b6ca
UD
1263 if (c->prot & PROT_EXEC)
1264 l->l_text_end = l->l_addr + c->mapend;
1265
7bcaca43 1266 if (l->l_phdr == 0
6dd67bd5
UD
1267 && (ElfW(Off)) c->mapoff <= header->e_phoff
1268 && ((size_t) (c->mapend - c->mapstart + c->mapoff)
7bcaca43
UD
1269 >= header->e_phoff + header->e_phnum * sizeof (ElfW(Phdr))))
1270 /* Found the program header in this segment. */
1271 l->l_phdr = (void *) (c->mapstart + header->e_phoff - c->mapoff);
1272
b122c703
RM
1273 if (c->allocend > c->dataend)
1274 {
1275 /* Extra zero pages should appear at the end of this segment,
1276 after the data mapped from the file. */
266180eb 1277 ElfW(Addr) zero, zeroend, zeropage;
b122c703
RM
1278
1279 zero = l->l_addr + c->dataend;
1280 zeroend = l->l_addr + c->allocend;
afdca0f2
UD
1281 zeropage = ((zero + GLRO(dl_pagesize) - 1)
1282 & ~(GLRO(dl_pagesize) - 1));
d66e34cd 1283
b122c703
RM
1284 if (zeroend < zeropage)
1285 /* All the extra data is in the last page of the segment.
1286 We can just zero it. */
1287 zeropage = zeroend;
1288
1289 if (zeropage > zero)
d66e34cd 1290 {
b122c703 1291 /* Zero the final part of the last page of the segment. */
6fffb9a2 1292 if (__builtin_expect ((c->prot & PROT_WRITE) == 0, 0))
d66e34cd 1293 {
b122c703 1294 /* Dag nab it. */
afdca0f2
UD
1295 if (__mprotect ((caddr_t) (zero
1296 & ~(GLRO(dl_pagesize) - 1)),
1297 GLRO(dl_pagesize), c->prot|PROT_WRITE) < 0)
39b3385d
UD
1298 {
1299 errstring = N_("cannot change memory protections");
1300 goto call_lose_errno;
1301 }
d66e34cd 1302 }
55c91021 1303 memset ((void *) zero, '\0', zeropage - zero);
6fffb9a2 1304 if (__builtin_expect ((c->prot & PROT_WRITE) == 0, 0))
afdca0f2
UD
1305 __mprotect ((caddr_t) (zero & ~(GLRO(dl_pagesize) - 1)),
1306 GLRO(dl_pagesize), c->prot);
b122c703 1307 }
d66e34cd 1308
b122c703
RM
1309 if (zeroend > zeropage)
1310 {
1311 /* Map the remaining zero pages in from the zero fill FD. */
1312 caddr_t mapat;
266180eb
RM
1313 mapat = __mmap ((caddr_t) zeropage, zeroend - zeropage,
1314 c->prot, MAP_ANON|MAP_PRIVATE|MAP_FIXED,
2064087b 1315 ANONFD, 0);
fd77c361 1316 if (__builtin_expect (mapat == MAP_FAILED, 0))
39b3385d
UD
1317 {
1318 errstring = N_("cannot map zero-fill pages");
1319 goto call_lose_errno;
1320 }
d66e34cd
RM
1321 }
1322 }
d66e34cd 1323
b122c703 1324 ++c;
879bf2e6 1325 }
b122c703 1326 }
d66e34cd 1327
b122c703
RM
1328 if (l->l_ld == 0)
1329 {
fd77c361 1330 if (__builtin_expect (type == ET_DYN, 0))
39b3385d
UD
1331 {
1332 errstring = N_("object file has no dynamic section");
1333 goto call_lose;
1334 }
b122c703
RM
1335 }
1336 else
14755b91 1337 l->l_ld = (ElfW(Dyn) *) ((ElfW(Addr)) l->l_ld + l->l_addr);
879bf2e6 1338
479aa8ec 1339 elf_get_dynamic_info (l, NULL);
2f54c82d 1340
efec5079
UD
1341 /* Make sure we are not dlopen'ing an object that has the
1342 DF_1_NOOPEN flag set. */
2430d57a 1343 if (__builtin_expect (l->l_flags_1 & DF_1_NOOPEN, 0)
2f54c82d
UD
1344 && (mode & __RTLD_DLOPEN))
1345 {
2f54c82d
UD
1346 /* We are not supposed to load this object. Free all resources. */
1347 __munmap ((void *) l->l_map_start, l->l_map_end - l->l_map_start);
1348
11810621
UD
1349 if (!l->l_libname->dont_free)
1350 free (l->l_libname);
2f54c82d
UD
1351
1352 if (l->l_phdr_allocated)
1353 free ((void *) l->l_phdr);
1354
fb0356b9
UD
1355 errstring = N_("shared object cannot be dlopen()ed");
1356 goto call_lose;
2f54c82d
UD
1357 }
1358
efec5079
UD
1359 if (l->l_phdr == NULL)
1360 {
1361 /* The program header is not contained in any of the segments.
1362 We have to allocate memory ourself and copy it over from out
1363 temporary place. */
1364 ElfW(Phdr) *newp = (ElfW(Phdr) *) malloc (header->e_phnum
1365 * sizeof (ElfW(Phdr)));
1366 if (newp == NULL)
1367 {
1368 errstring = N_("cannot allocate memory for program header");
1369 goto call_lose_errno;
1370 }
1371
1372 l->l_phdr = memcpy (newp, phdr,
1373 (header->e_phnum * sizeof (ElfW(Phdr))));
1374 l->l_phdr_allocated = 1;
1375 }
1376 else
1377 /* Adjust the PT_PHDR value by the runtime load address. */
1378 l->l_phdr = (ElfW(Phdr) *) ((ElfW(Addr)) l->l_phdr + l->l_addr);
1379
dcca3fe2
UD
1380 if (__builtin_expect ((stack_flags &~ GL(dl_stack_flags)) & PF_X, 0))
1381 {
0ecb606c
JJ
1382 if (__builtin_expect (__check_caller (RETURN_ADDRESS (0), allow_ldso),
1383 0) != 0)
1384 {
1385 errstring = N_("invalid caller");
1386 goto call_lose;
1387 }
1388
dcca3fe2
UD
1389 /* The stack is presently not executable, but this module
1390 requires that it be executable. We must change the
1391 protection of the variable which contains the flags used in
1392 the mprotect calls. */
0ecb606c
JJ
1393#if defined HAVE_Z_RELRO && defined SHARED
1394 if ((mode & (__RTLD_DLOPEN | __RTLD_AUDIT)) == __RTLD_DLOPEN)
dcca3fe2 1395 {
0ecb606c
JJ
1396 const uintptr_t p = (uintptr_t) &__stack_prot & -GLRO(dl_pagesize);
1397 const size_t s = (uintptr_t) (&__stack_prot + 1) - p;
1398
1399 struct link_map *const m = &GL(dl_rtld_map);
1400 const uintptr_t relro_end = ((m->l_addr + m->l_relro_addr
1401 + m->l_relro_size)
1402 & -GLRO(dl_pagesize));
1403 if (__builtin_expect (p + s <= relro_end, 1))
1404 {
1405 /* The variable lies in the region protected by RELRO. */
1406 __mprotect ((void *) p, s, PROT_READ|PROT_WRITE);
1407 __stack_prot |= PROT_READ|PROT_WRITE|PROT_EXEC;
1408 __mprotect ((void *) p, s, PROT_READ);
1409 }
1410 else
1411 __stack_prot |= PROT_READ|PROT_WRITE|PROT_EXEC;
dcca3fe2
UD
1412 }
1413 else
1414#endif
0ecb606c
JJ
1415 __stack_prot |= PROT_READ|PROT_WRITE|PROT_EXEC;
1416
1417#ifdef check_consistency
1418 check_consistency ();
1419#endif
dcca3fe2
UD
1420
1421 errval = (*GL(dl_make_stack_executable_hook)) (stack_endp);
1422 if (errval)
1423 {
1424 errstring = N_("\
1425cannot enable executable stack as shared object requires");
1426 goto call_lose;
1427 }
1428 }
1429
efec5079
UD
1430#ifdef USE_TLS
1431 /* Adjust the address of the TLS initialization image. */
1432 if (l->l_tls_initimage != NULL)
1433 l->l_tls_initimage = (char *) l->l_tls_initimage + l->l_addr;
1434#endif
1435
1436 /* We are done mapping in the file. We no longer need the descriptor. */
1437 if (__builtin_expect (__close (fd) != 0, 0))
1438 {
1439 errstring = N_("cannot close file descriptor");
1440 goto call_lose_errno;
1441 }
1442 /* Signal that we closed the file. */
1443 fd = -1;
1444
1445 if (l->l_type == lt_library && type == ET_EXEC)
1446 l->l_type = lt_executable;
1447
1448 l->l_entry += l->l_addr;
1449
1450 if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_FILES, 0))
1451 _dl_debug_printf ("\
1452 dynamic: 0x%0*lx base: 0x%0*lx size: 0x%0*Zx\n\
1453 entry: 0x%0*lx phdr: 0x%0*lx phnum: %*u\n\n",
1454 (int) sizeof (void *) * 2,
1455 (unsigned long int) l->l_ld,
1456 (int) sizeof (void *) * 2,
1457 (unsigned long int) l->l_addr,
1458 (int) sizeof (void *) * 2, maplength,
1459 (int) sizeof (void *) * 2,
1460 (unsigned long int) l->l_entry,
1461 (int) sizeof (void *) * 2,
1462 (unsigned long int) l->l_phdr,
1463 (int) sizeof (void *) * 2, l->l_phnum);
1464
1465 /* Set up the symbol hash table. */
1466 _dl_setup_hash (l);
d66e34cd 1467
be935610
UD
1468 /* If this object has DT_SYMBOLIC set modify now its scope. We don't
1469 have to do this for the main map. */
1fc07491
UD
1470 if ((mode & RTLD_DEEPBIND) == 0
1471 && __builtin_expect (l->l_info[DT_SYMBOLIC] != NULL, 0)
c1d32f33 1472 && &l->l_searchlist != l->l_scope[0])
be935610
UD
1473 {
1474 /* Create an appropriate searchlist. It contains only this map.
1fc07491 1475 This is the definition of DT_SYMBOLIC in SysVr4. */
be935610
UD
1476 l->l_symbolic_searchlist.r_list =
1477 (struct link_map **) malloc (sizeof (struct link_map *));
1478
1479 if (l->l_symbolic_searchlist.r_list == NULL)
39b3385d
UD
1480 {
1481 errstring = N_("cannot create searchlist");
1482 goto call_lose_errno;
1483 }
be935610
UD
1484
1485 l->l_symbolic_searchlist.r_list[0] = l;
1486 l->l_symbolic_searchlist.r_nlist = 1;
be935610
UD
1487
1488 /* Now move the existing entries one back. */
1489 memmove (&l->l_scope[1], &l->l_scope[0],
9596d0dd 1490 (l->l_scope_max - 1) * sizeof (l->l_scope[0]));
be935610
UD
1491
1492 /* Now add the new entry. */
1493 l->l_scope[0] = &l->l_symbolic_searchlist;
1494 }
1495
5d916713 1496 /* Remember whether this object must be initialized first. */
39b3385d 1497 if (l->l_flags_1 & DF_1_INITFIRST)
d6b5d570 1498 GL(dl_initfirst) = l;
5d916713 1499
61e0617a
UD
1500 /* Finally the file information. */
1501 l->l_dev = st.st_dev;
1502 l->l_ino = st.st_ino;
1503
51f38e87
UD
1504 /* When we profile the SONAME might be needed for something else but
1505 loading. Add it right away. */
afdca0f2 1506 if (__builtin_expect (GLRO(dl_profile) != NULL, 0)
51f38e87
UD
1507 && l->l_info[DT_SONAME] != NULL)
1508 add_name_to_object (l, ((const char *) D_PTR (l, l_info[DT_STRTAB])
1509 + l->l_info[DT_SONAME]->d_un.d_val));
1510
0ecb606c
JJ
1511#ifdef SHARED
1512 /* Auditing checkpoint: we have a new object. */
1513 if (__builtin_expect (GLRO(dl_naudit) > 0, 0)
1514 && !GL(dl_ns)[l->l_ns]._ns_loaded->l_auditing)
1515 {
1516 struct audit_ifaces *afct = GLRO(dl_audit);
1517 for (unsigned int cnt = 0; cnt < GLRO(dl_naudit); ++cnt)
1518 {
1519 if (afct->objopen != NULL)
1520 {
1521 l->l_audit[cnt].bindflags
1522 = afct->objopen (l, nsid, &l->l_audit[cnt].cookie);
1523
1524 l->l_audit_any_plt |= l->l_audit[cnt].bindflags != 0;
1525 }
1526
1527 afct = afct->next;
1528 }
1529 }
1530#endif
1531
d66e34cd
RM
1532 return l;
1533}
ba79d61b 1534\f
b5efde2f
UD
1535/* Print search path. */
1536static void
1537print_search_path (struct r_search_path_elem **list,
1538 const char *what, const char *name)
1539{
12264bd7 1540 char buf[max_dirnamelen + max_capstrlen];
b5efde2f
UD
1541 int first = 1;
1542
154d10bd 1543 _dl_debug_printf (" search path=");
b5efde2f
UD
1544
1545 while (*list != NULL && (*list)->what == what) /* Yes, ==. */
1546 {
12264bd7
UD
1547 char *endp = __mempcpy (buf, (*list)->dirname, (*list)->dirnamelen);
1548 size_t cnt;
1549
1550 for (cnt = 0; cnt < ncapstr; ++cnt)
1551 if ((*list)->status[cnt] != nonexisting)
1552 {
1553 char *cp = __mempcpy (endp, capstr[cnt].str, capstr[cnt].len);
143e2b96
UD
1554 if (cp == buf || (cp == buf + 1 && buf[0] == '/'))
1555 cp[0] = '\0';
1556 else
1557 cp[-1] = '\0';
fb0356b9
UD
1558
1559 _dl_debug_printf_c (first ? "%s" : ":%s", buf);
1560 first = 0;
12264bd7 1561 }
b5efde2f 1562
b5efde2f
UD
1563 ++list;
1564 }
1565
1566 if (name != NULL)
35fc382a 1567 _dl_debug_printf_c ("\t\t(%s from file %s)\n", what,
e6caf4e1 1568 name[0] ? name : rtld_progname);
b5efde2f 1569 else
35fc382a 1570 _dl_debug_printf_c ("\t\t(%s)\n", what);
b5efde2f
UD
1571}
1572\f
a35e137a
UD
1573/* Open a file and verify it is an ELF file for this architecture. We
1574 ignore only ELF files for other architectures. Non-ELF files and
1575 ELF files with different header information cause fatal errors since
1576 this could mean there is something wrong in the installation and the
1577 user might want to know about this. */
1578static int
0ecb606c
JJ
1579open_verify (const char *name, struct filebuf *fbp, struct link_map *loader,
1580 int whatcode, bool *found_other_class, bool free_name)
a35e137a
UD
1581{
1582 /* This is the expected ELF header. */
1583#define ELF32_CLASS ELFCLASS32
1584#define ELF64_CLASS ELFCLASS64
1585#ifndef VALID_ELF_HEADER
1586# define VALID_ELF_HEADER(hdr,exp,size) (memcmp (hdr, exp, size) == 0)
1587# define VALID_ELF_OSABI(osabi) (osabi == ELFOSABI_SYSV)
1588# define VALID_ELF_ABIVERSION(ver) (ver == 0)
1589#endif
1590 static const unsigned char expected[EI_PAD] =
1591 {
1592 [EI_MAG0] = ELFMAG0,
1593 [EI_MAG1] = ELFMAG1,
1594 [EI_MAG2] = ELFMAG2,
1595 [EI_MAG3] = ELFMAG3,
1596 [EI_CLASS] = ELFW(CLASS),
1597 [EI_DATA] = byteorder,
1598 [EI_VERSION] = EV_CURRENT,
1599 [EI_OSABI] = ELFOSABI_SYSV,
1600 [EI_ABIVERSION] = 0
1601 };
39b3385d
UD
1602 static const struct
1603 {
1604 ElfW(Word) vendorlen;
1605 ElfW(Word) datalen;
1606 ElfW(Word) type;
55c91021 1607 char vendor[4];
a986484f 1608 } expected_note = { 4, 16, 1, "GNU" };
39b3385d
UD
1609 /* Initialize it to make the compiler happy. */
1610 const char *errstring = NULL;
1611 int errval = 0;
a35e137a 1612
0ecb606c
JJ
1613#ifdef SHARED
1614 /* Give the auditing libraries a chance. */
1615 if (__builtin_expect (GLRO(dl_naudit) > 0, 0) && whatcode != 0
1616 && loader->l_auditing == 0)
1617 {
1618 struct audit_ifaces *afct = GLRO(dl_audit);
1619 for (unsigned int cnt = 0; cnt < GLRO(dl_naudit); ++cnt)
1620 {
1621 if (afct->objsearch != NULL)
1622 {
1623 name = afct->objsearch (name, &loader->l_audit[cnt].cookie,
1624 whatcode);
1625 if (name == NULL)
1626 /* Ignore the path. */
1627 return -1;
1628 }
1629
1630 afct = afct->next;
1631 }
1632 }
1633#endif
1634
a35e137a 1635 /* Open the file. We always open files read-only. */
0ecb606c 1636 int fd = __open (name, O_RDONLY);
a35e137a
UD
1637 if (fd != -1)
1638 {
1639 ElfW(Ehdr) *ehdr;
a986484f
UD
1640 ElfW(Phdr) *phdr, *ph;
1641 ElfW(Word) *abi_note, abi_note_buf[8];
1642 unsigned int osversion;
1643 size_t maplength;
a35e137a
UD
1644
1645 /* We successfully openened the file. Now verify it is a file
1646 we can use. */
1647 __set_errno (0);
1648 fbp->len = __libc_read (fd, fbp->buf, sizeof (fbp->buf));
1649
1650 /* This is where the ELF header is loaded. */
1651 assert (sizeof (fbp->buf) > sizeof (ElfW(Ehdr)));
1652 ehdr = (ElfW(Ehdr) *) fbp->buf;
1653
1654 /* Now run the tests. */
1655 if (__builtin_expect (fbp->len < (ssize_t) sizeof (ElfW(Ehdr)), 0))
39b3385d
UD
1656 {
1657 errval = errno;
1658 errstring = (errval == 0
1659 ? N_("file too short") : N_("cannot read file data"));
1660 call_lose:
0ecb606c
JJ
1661 if (free_name)
1662 {
1663 char *realname = (char *) name;
1664 name = strdupa (realname);
1665 free (realname);
1666 }
1667 lose (errval, fd, name, NULL, NULL, errstring, NULL);
39b3385d 1668 }
a35e137a
UD
1669
1670 /* See whether the ELF header is what we expect. */
1671 if (__builtin_expect (! VALID_ELF_HEADER (ehdr->e_ident, expected,
1672 EI_PAD), 0))
1673 {
1674 /* Something is wrong. */
1675 if (*(Elf32_Word *) &ehdr->e_ident !=
1676#if BYTE_ORDER == LITTLE_ENDIAN
1677 ((ELFMAG0 << (EI_MAG0 * 8)) |
1678 (ELFMAG1 << (EI_MAG1 * 8)) |
1679 (ELFMAG2 << (EI_MAG2 * 8)) |
1680 (ELFMAG3 << (EI_MAG3 * 8)))
1681#else
1682 ((ELFMAG0 << (EI_MAG3 * 8)) |
1683 (ELFMAG1 << (EI_MAG2 * 8)) |
1684 (ELFMAG2 << (EI_MAG1 * 8)) |
1685 (ELFMAG3 << (EI_MAG0 * 8)))
1686#endif
1687 )
39b3385d
UD
1688 errstring = N_("invalid ELF header");
1689 else if (ehdr->e_ident[EI_CLASS] != ELFW(CLASS))
0ecb606c
JJ
1690 {
1691 /* This is not a fatal error. On architectures where
1692 32-bit and 64-bit binaries can be run this might
1693 happen. */
1694 *found_other_class = true;
1695 goto close_and_out;
1696 }
39b3385d 1697 else if (ehdr->e_ident[EI_DATA] != byteorder)
a35e137a
UD
1698 {
1699 if (BYTE_ORDER == BIG_ENDIAN)
39b3385d 1700 errstring = N_("ELF file data encoding not big-endian");
a35e137a 1701 else
39b3385d 1702 errstring = N_("ELF file data encoding not little-endian");
a35e137a 1703 }
39b3385d
UD
1704 else if (ehdr->e_ident[EI_VERSION] != EV_CURRENT)
1705 errstring
1706 = N_("ELF file version ident does not match current one");
a35e137a
UD
1707 /* XXX We should be able so set system specific versions which are
1708 allowed here. */
39b3385d
UD
1709 else if (!VALID_ELF_OSABI (ehdr->e_ident[EI_OSABI]))
1710 errstring = N_("ELF file OS ABI invalid");
1711 else if (!VALID_ELF_ABIVERSION (ehdr->e_ident[EI_ABIVERSION]))
1712 errstring = N_("ELF file ABI version invalid");
1713 else
1714 /* Otherwise we don't know what went wrong. */
1715 errstring = N_("internal error");
1716
1717 goto call_lose;
a35e137a
UD
1718 }
1719
1720 if (__builtin_expect (ehdr->e_version, EV_CURRENT) != EV_CURRENT)
39b3385d
UD
1721 {
1722 errstring = N_("ELF file version does not match current one");
1723 goto call_lose;
1724 }
a35e137a 1725 if (! __builtin_expect (elf_machine_matches_host (ehdr), 1))
a986484f 1726 goto close_and_out;
9987236e
UD
1727 else if (__builtin_expect (ehdr->e_type, ET_DYN) != ET_DYN
1728 && __builtin_expect (ehdr->e_type, ET_EXEC) != ET_EXEC)
39b3385d
UD
1729 {
1730 errstring = N_("only ET_DYN and ET_EXEC can be loaded");
1731 goto call_lose;
1732 }
5ce98c3f
UD
1733 else if (__builtin_expect (ehdr->e_phentsize, sizeof (ElfW(Phdr)))
1734 != sizeof (ElfW(Phdr)))
1735 {
1736 errstring = N_("ELF file's phentsize not the expected size");
1737 goto call_lose;
1738 }
a986484f
UD
1739
1740 maplength = ehdr->e_phnum * sizeof (ElfW(Phdr));
6dd67bd5 1741 if (ehdr->e_phoff + maplength <= (size_t) fbp->len)
a986484f
UD
1742 phdr = (void *) (fbp->buf + ehdr->e_phoff);
1743 else
1744 {
1745 phdr = alloca (maplength);
0e15c4b6 1746 __lseek (fd, ehdr->e_phoff, SEEK_SET);
6dd67bd5 1747 if ((size_t) __libc_read (fd, (void *) phdr, maplength) != maplength)
39b3385d
UD
1748 {
1749 read_error:
1750 errval = errno;
1751 errstring = N_("cannot read file data");
1752 goto call_lose;
1753 }
a986484f
UD
1754 }
1755
1756 /* Check .note.ABI-tag if present. */
1757 for (ph = phdr; ph < &phdr[ehdr->e_phnum]; ++ph)
1758 if (ph->p_type == PT_NOTE && ph->p_filesz == 32 && ph->p_align >= 4)
1759 {
6dd67bd5 1760 if (ph->p_offset + 32 <= (size_t) fbp->len)
a986484f
UD
1761 abi_note = (void *) (fbp->buf + ph->p_offset);
1762 else
1763 {
0e15c4b6 1764 __lseek (fd, ph->p_offset, SEEK_SET);
a986484f 1765 if (__libc_read (fd, (void *) abi_note_buf, 32) != 32)
39b3385d
UD
1766 goto read_error;
1767
a986484f
UD
1768 abi_note = abi_note_buf;
1769 }
1770
1771 if (memcmp (abi_note, &expected_note, sizeof (expected_note)))
1772 continue;
1773
55c91021
UD
1774 osversion = (abi_note[5] & 0xff) * 65536
1775 + (abi_note[6] & 0xff) * 256
1776 + (abi_note[7] & 0xff);
1777 if (abi_note[4] != __ABI_TAG_OS
afdca0f2 1778 || (GLRO(dl_osversion) && GLRO(dl_osversion) < osversion))
a986484f
UD
1779 {
1780 close_and_out:
1781 __close (fd);
1782 __set_errno (ENOENT);
1783 fd = -1;
1784 }
1785
1786 break;
1787 }
a35e137a
UD
1788 }
1789
1790 return fd;
1791}
1792\f
04ea3b0f 1793/* Try to open NAME in one of the directories in *DIRSP.
ba79d61b 1794 Return the fd, or -1. If successful, fill in *REALNAME
04ea3b0f
UD
1795 with the malloc'd full directory name. If it turns out
1796 that none of the directories in *DIRSP exists, *DIRSP is
1797 replaced with (void *) -1, and the old value is free()d
1798 if MAY_FREE_DIRS is true. */
ba79d61b
RM
1799
1800static int
c6222ab9 1801open_path (const char *name, size_t namelen, int preloaded,
a35e137a 1802 struct r_search_path_struct *sps, char **realname,
0ecb606c
JJ
1803 struct filebuf *fbp, struct link_map *loader, int whatcode,
1804 bool *found_other_class)
ba79d61b 1805{
f55727ca 1806 struct r_search_path_elem **dirs = sps->dirs;
ba79d61b 1807 char *buf;
0a54e401 1808 int fd = -1;
b5efde2f 1809 const char *current_what = NULL;
152e7964 1810 int any = 0;
ba79d61b 1811
0ecb606c
JJ
1812 if (__builtin_expect (dirs == NULL, 0))
1813 /* We're called before _dl_init_paths when loading the main executable
1814 given on the command line when rtld is run directly. */
1815 return -1;
1816
5431ece5 1817 buf = alloca (max_dirnamelen + max_capstrlen + namelen);
ba79d61b
RM
1818 do
1819 {
0a54e401
UD
1820 struct r_search_path_elem *this_dir = *dirs;
1821 size_t buflen = 0;
12264bd7 1822 size_t cnt;
b0b67c47 1823 char *edp;
f5858039 1824 int here_any = 0;
55c91021 1825 int err;
ba79d61b 1826
b5efde2f
UD
1827 /* If we are debugging the search for libraries print the path
1828 now if it hasn't happened now. */
afdca0f2 1829 if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_LIBS, 0)
cf197e41 1830 && current_what != this_dir->what)
b5efde2f
UD
1831 {
1832 current_what = this_dir->what;
1833 print_search_path (dirs, current_what, this_dir->where);
1834 }
1835
b0b67c47 1836 edp = (char *) __mempcpy (buf, this_dir->dirname, this_dir->dirnamelen);
12264bd7 1837 for (cnt = 0; fd == -1 && cnt < ncapstr; ++cnt)
fd26970f 1838 {
12264bd7
UD
1839 /* Skip this directory if we know it does not exist. */
1840 if (this_dir->status[cnt] == nonexisting)
1841 continue;
0a54e401 1842
12264bd7 1843 buflen =
d6b5d570
UD
1844 ((char *) __mempcpy (__mempcpy (edp, capstr[cnt].str,
1845 capstr[cnt].len),
12264bd7
UD
1846 name, namelen)
1847 - buf);
1848
1849 /* Print name we try if this is wanted. */
afdca0f2 1850 if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_LIBS, 0))
154d10bd 1851 _dl_debug_printf (" trying file=%s\n", buf);
b5efde2f 1852
0ecb606c
JJ
1853 fd = open_verify (buf, fbp, loader, whatcode, found_other_class,
1854 false);
12264bd7 1855 if (this_dir->status[cnt] == unknown)
6e4c40ba
UD
1856 {
1857 if (fd != -1)
1858 this_dir->status[cnt] = existing;
0ecb606c
JJ
1859 /* Do not update the directory information when loading
1860 auditing code. We must try to disturb the program as
1861 little as possible. */
1862 else if (loader == NULL
1863 || GL(dl_ns)[loader->l_ns]._ns_loaded->l_auditing == 0)
6e4c40ba
UD
1864 {
1865 /* We failed to open machine dependent library. Let's
1866 test whether there is any directory at all. */
5763742f 1867 struct stat64 st;
6e4c40ba
UD
1868
1869 buf[buflen - namelen - 1] = '\0';
1870
5763742f 1871 if (__xstat64 (_STAT_VER, buf, &st) != 0
6e4c40ba
UD
1872 || ! S_ISDIR (st.st_mode))
1873 /* The directory does not exist or it is no directory. */
1874 this_dir->status[cnt] = nonexisting;
1875 else
1876 this_dir->status[cnt] = existing;
1877 }
1878 }
fd26970f 1879
152e7964 1880 /* Remember whether we found any existing directory. */
0ecb606c 1881 here_any |= this_dir->status[cnt] != nonexisting;
152e7964 1882
55c91021 1883 if (fd != -1 && __builtin_expect (preloaded, 0)
e6caf4e1 1884 && INTUSE(__libc_enable_secure))
c6222ab9
UD
1885 {
1886 /* This is an extra security effort to make sure nobody can
1887 preload broken shared objects which are in the trusted
1888 directories and so exploit the bugs. */
5763742f 1889 struct stat64 st;
c6222ab9 1890
5763742f 1891 if (__fxstat64 (_STAT_VER, fd, &st) != 0
c6222ab9
UD
1892 || (st.st_mode & S_ISUID) == 0)
1893 {
1894 /* The shared object cannot be tested for being SUID
1895 or this bit is not set. In this case we must not
1896 use this object. */
1897 __close (fd);
1898 fd = -1;
1899 /* We simply ignore the file, signal this by setting
1900 the error value which would have been set by `open'. */
1901 errno = ENOENT;
1902 }
1903 }
ba79d61b
RM
1904 }
1905
ba79d61b
RM
1906 if (fd != -1)
1907 {
2f653c01 1908 *realname = (char *) malloc (buflen);
c6222ab9 1909 if (*realname != NULL)
ba79d61b
RM
1910 {
1911 memcpy (*realname, buf, buflen);
1912 return fd;
1913 }
1914 else
1915 {
1916 /* No memory for the name, we certainly won't be able
1917 to load and link it. */
1918 __close (fd);
1919 return -1;
1920 }
1921 }
55c91021 1922 if (here_any && (err = errno) != ENOENT && err != EACCES)
ba79d61b
RM
1923 /* The file exists and is readable, but something went wrong. */
1924 return -1;
f5858039
UD
1925
1926 /* Remember whether we found anything. */
1927 any |= here_any;
ba79d61b 1928 }
0a54e401 1929 while (*++dirs != NULL);
ba79d61b 1930
152e7964 1931 /* Remove the whole path if none of the directories exists. */
55c91021 1932 if (__builtin_expect (! any, 0))
152e7964 1933 {
04ea3b0f
UD
1934 /* Paths which were allocated using the minimal malloc() in ld.so
1935 must not be freed using the general free() in libc. */
f55727ca
UD
1936 if (sps->malloced)
1937 free (sps->dirs);
0ecb606c
JJ
1938#ifdef HAVE_Z_RELRO
1939 /* rtld_search_dirs is attribute_relro, therefore avoid writing
1940 into it. */
1941 if (sps != &rtld_search_dirs)
1942#endif
1943 sps->dirs = (void *) -1;
152e7964
UD
1944 }
1945
ba79d61b
RM
1946 return -1;
1947}
1948
1949/* Map in the shared object file NAME. */
1950
1951struct link_map *
d0fc4041 1952internal_function
c6222ab9 1953_dl_map_object (struct link_map *loader, const char *name, int preloaded,
c0f62c56 1954 int type, int trace_mode, int mode, Lmid_t nsid)
ba79d61b
RM
1955{
1956 int fd;
1957 char *realname;
14bab8de 1958 char *name_copy;
ba79d61b 1959 struct link_map *l;
a35e137a 1960 struct filebuf fb;
ba79d61b 1961
c0f62c56
UD
1962 assert (nsid >= 0);
1963 assert (nsid < DL_NNS);
1964
ba79d61b 1965 /* Look for this name among those already loaded. */
c0f62c56 1966 for (l = GL(dl_ns)[nsid]._ns_loaded; l; l = l->l_next)
f41c8091
UD
1967 {
1968 /* If the requested name matches the soname of a loaded object,
1969 use that object. Elide this check for names that have not
1970 yet been opened. */
0ecb606c
JJ
1971 if (__builtin_expect (l->l_faked, 0) != 0
1972 || __builtin_expect (l->l_removed, 0) != 0)
f41c8091
UD
1973 continue;
1974 if (!_dl_name_match_p (name, l))
1975 {
1976 const char *soname;
1977
c91bc73e
UD
1978 if (__builtin_expect (l->l_soname_added, 1)
1979 || l->l_info[DT_SONAME] == NULL)
f41c8091
UD
1980 continue;
1981
8699e7b1
UD
1982 soname = ((const char *) D_PTR (l, l_info[DT_STRTAB])
1983 + l->l_info[DT_SONAME]->d_un.d_val);
f41c8091
UD
1984 if (strcmp (name, soname) != 0)
1985 continue;
1986
1987 /* We have a match on a new name -- cache it. */
76156ea1 1988 add_name_to_object (l, soname);
c91bc73e 1989 l->l_soname_added = 1;
f41c8091
UD
1990 }
1991
42c4f32a 1992 /* We have a match. */
f41c8091
UD
1993 return l;
1994 }
ba79d61b 1995
8193034b 1996 /* Display information if we are debugging. */
afdca0f2 1997 if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_FILES, 0)
7969407a 1998 && loader != NULL)
c0f62c56 1999 _dl_debug_printf ("\nfile=%s [%lu]; needed by %s [%lu]\n", name, nsid,
e6caf4e1 2000 loader->l_name[0]
c0f62c56 2001 ? loader->l_name : rtld_progname, loader->l_ns);
8193034b 2002
0ecb606c
JJ
2003#ifdef SHARED
2004 /* Give the auditing libraries a chance to change the name before we
2005 try anything. */
2006 if (__builtin_expect (GLRO(dl_naudit) > 0, 0)
2007 && (loader == NULL || loader->l_auditing == 0))
2008 {
2009 struct audit_ifaces *afct = GLRO(dl_audit);
2010 for (unsigned int cnt = 0; cnt < GLRO(dl_naudit); ++cnt)
2011 {
2012 if (afct->objsearch != NULL)
2013 {
2014 name = afct->objsearch (name, &loader->l_audit[cnt].cookie,
2015 LA_SER_ORIG);
2016 if (name == NULL)
2017 {
2018 /* Do not try anything further. */
2019 fd = -1;
2020 goto no_file;
2021 }
2022 }
2023
2024 afct = afct->next;
2025 }
2026 }
2027#endif
2028
2029 /* Will be true if we found a DSO which is of the other ELF class. */
2030 bool found_other_class = false;
2031
ba79d61b
RM
2032 if (strchr (name, '/') == NULL)
2033 {
2034 /* Search for NAME in several places. */
2035
2036 size_t namelen = strlen (name) + 1;
2037
afdca0f2 2038 if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_LIBS, 0))
c0f62c56 2039 _dl_debug_printf ("find library=%s [%lu]; searching\n", name, nsid);
b5efde2f 2040
ba79d61b 2041 fd = -1;
a23db8e4 2042
fcf70d41
UD
2043 /* When the object has the RUNPATH information we don't use any
2044 RPATHs. */
4c540916 2045 if (loader == NULL || loader->l_info[DT_RUNPATH] == NULL)
fcf70d41 2046 {
0ecb606c
JJ
2047 /* This is the executable's map (if there is one). Make sure that
2048 we do not look at it twice. */
2049 struct link_map *main_map = GL(dl_ns)[LM_ID_BASE]._ns_loaded;
2050 bool did_main_map = false;
2051
fcf70d41
UD
2052 /* First try the DT_RPATH of the dependent object that caused NAME
2053 to be loaded. Then that object's dependent, and on up. */
0ecb606c 2054 for (l = loader; l; l = l->l_loader)
45e4762c 2055 if (cache_rpath (l, &l->l_rpath_dirs, DT_RPATH, "RPATH"))
0ecb606c
JJ
2056 {
2057 fd = open_path (name, namelen, preloaded, &l->l_rpath_dirs,
2058 &realname, &fb, loader, LA_SER_RUNPATH,
2059 &found_other_class);
2060 if (fd != -1)
2061 break;
2062
2063 did_main_map |= l == main_map;
2064 }
0a54e401 2065
fcf70d41 2066 /* If dynamically linked, try the DT_RPATH of the executable
c0f62c56 2067 itself. NB: we do this for lookups in any namespace. */
0ecb606c
JJ
2068 if (fd == -1 && !did_main_map
2069 && main_map != NULL && main_map->l_type != lt_loaded
2070 && cache_rpath (main_map, &main_map->l_rpath_dirs, DT_RPATH,
2071 "RPATH"))
2072 fd = open_path (name, namelen, preloaded, &main_map->l_rpath_dirs,
2073 &realname, &fb, loader ?: main_map, LA_SER_RUNPATH,
2074 &found_other_class);
fcf70d41 2075 }
fd26970f 2076
7ef90c15 2077 /* Try the LD_LIBRARY_PATH environment variable. */
f55727ca
UD
2078 if (fd == -1 && env_path_list.dirs != (void *) -1)
2079 fd = open_path (name, namelen, preloaded, &env_path_list,
0ecb606c
JJ
2080 &realname, &fb,
2081 loader ?: GL(dl_ns)[LM_ID_BASE]._ns_loaded,
2082 LA_SER_LIBPATH, &found_other_class);
40a55d20 2083
45e4762c
RM
2084 /* Look at the RUNPATH information for this binary. */
2085 if (fd == -1 && loader != NULL
2086 && cache_rpath (loader, &loader->l_runpath_dirs,
2087 DT_RUNPATH, "RUNPATH"))
2088 fd = open_path (name, namelen, preloaded,
0ecb606c
JJ
2089 &loader->l_runpath_dirs, &realname, &fb, loader,
2090 LA_SER_RUNPATH, &found_other_class);
fcf70d41 2091
55c91021 2092 if (fd == -1
e6caf4e1
UD
2093 && (__builtin_expect (! preloaded, 1)
2094 || ! INTUSE(__libc_enable_secure)))
f18edac3
RM
2095 {
2096 /* Check the list of libraries in the file /etc/ld.so.cache,
2097 for compatibility with Linux's ldconfig program. */
f18edac3 2098 const char *cached = _dl_load_cache_lookup (name);
0f6b172f 2099
2f653c01
UD
2100 if (cached != NULL)
2101 {
0f6b172f 2102#ifdef SHARED
c0f62c56
UD
2103 // XXX Correct to unconditionally default to namespace 0?
2104 l = loader ?: GL(dl_ns)[LM_ID_BASE]._ns_loaded;
0f6b172f 2105#else
2f653c01 2106 l = loader;
0f6b172f
UD
2107#endif
2108
266bb989
UD
2109 /* If the loader has the DF_1_NODEFLIB flag set we must not
2110 use a cache entry from any of these directories. */
2f653c01
UD
2111 if (
2112#ifndef SHARED
2113 /* 'l' is always != NULL for dynamically linked objects. */
2114 l != NULL &&
2115#endif
2116 __builtin_expect (l->l_flags_1 & DF_1_NODEFLIB, 0))
266bb989
UD
2117 {
2118 const char *dirp = system_dirs;
2e47aff5 2119 unsigned int cnt = 0;
266bb989
UD
2120
2121 do
2122 {
2123 if (memcmp (cached, dirp, system_dirs_len[cnt]) == 0)
2124 {
2125 /* The prefix matches. Don't use the entry. */
2126 cached = NULL;
2127 break;
2128 }
2129
2130 dirp += system_dirs_len[cnt] + 1;
2131 ++cnt;
2132 }
4a6d1198 2133 while (cnt < nsystem_dirs_len);
266bb989
UD
2134 }
2135
2f653c01 2136 if (cached != NULL)
f18edac3 2137 {
0ecb606c
JJ
2138 fd = open_verify (cached,
2139 &fb, loader ?: GL(dl_ns)[nsid]._ns_loaded,
2140 LA_SER_CONFIG, &found_other_class, false);
2f653c01 2141 if (__builtin_expect (fd != -1, 1))
f18edac3 2142 {
266bb989
UD
2143 realname = local_strdup (cached);
2144 if (realname == NULL)
2145 {
2146 __close (fd);
2147 fd = -1;
2148 }
f18edac3
RM
2149 }
2150 }
2151 }
2152 }
0a54e401 2153
a23db8e4 2154 /* Finally, try the default path. */
266bb989 2155 if (fd == -1
c0f62c56 2156 && ((l = loader ?: GL(dl_ns)[nsid]._ns_loaded) == NULL
db2ebcef 2157 || __builtin_expect (!(l->l_flags_1 & DF_1_NODEFLIB), 1))
f55727ca
UD
2158 && rtld_search_dirs.dirs != (void *) -1)
2159 fd = open_path (name, namelen, preloaded, &rtld_search_dirs,
0ecb606c 2160 &realname, &fb, l, LA_SER_DEFAULT, &found_other_class);
b5efde2f 2161
fd77c361 2162 /* Add another newline when we are tracing the library loading. */
afdca0f2 2163 if (__builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_LIBS, 0))
154d10bd 2164 _dl_debug_printf ("\n");
ba79d61b
RM
2165 }
2166 else
2167 {
f787edde
UD
2168 /* The path may contain dynamic string tokens. */
2169 realname = (loader
2170 ? expand_dynamic_string_token (loader, name)
2171 : local_strdup (name));
2172 if (realname == NULL)
2173 fd = -1;
2174 else
ba79d61b 2175 {
0ecb606c
JJ
2176 fd = open_verify (realname, &fb,
2177 loader ?: GL(dl_ns)[nsid]._ns_loaded, 0,
2178 &found_other_class, true);
55c91021 2179 if (__builtin_expect (fd, 0) == -1)
f787edde 2180 free (realname);
ba79d61b
RM
2181 }
2182 }
2183
0ecb606c
JJ
2184#ifdef SHARED
2185 no_file:
2186#endif
c14e9135
UD
2187 /* In case the LOADER information has only been provided to get to
2188 the appropriate RUNPATH/RPATH information we do not need it
2189 anymore. */
2190 if (mode & __RTLD_CALLMAP)
2191 loader = NULL;
2192
55c91021 2193 if (__builtin_expect (fd, 0) == -1)
46ec036d 2194 {
32e6df36 2195 if (trace_mode
afdca0f2 2196 && __builtin_expect (GLRO(dl_debug_mask) & DL_DEBUG_PRELINK, 0) == 0)
46ec036d
UD
2197 {
2198 /* We haven't found an appropriate library. But since we
2199 are only interested in the list of libraries this isn't
2200 so severe. Fake an entry with all the information we
1ef32c3d 2201 have. */
a1eca9f3 2202 static const Elf_Symndx dummy_bucket = STN_UNDEF;
46ec036d
UD
2203
2204 /* Enter the new object in the list of loaded objects. */
2205 if ((name_copy = local_strdup (name)) == NULL
1fc07491 2206 || (l = _dl_new_object (name_copy, name, type, loader,
c0f62c56 2207 mode, nsid)) == NULL)
0ecb606c
JJ
2208 {
2209 free (name_copy);
2210 _dl_signal_error (ENOMEM, name, NULL,
2211 N_("cannot create shared object descriptor"));
2212 }
a881e0a0
UD
2213 /* Signal that this is a faked entry. */
2214 l->l_faked = 1;
2215 /* Since the descriptor is initialized with zero we do not
126b06f9 2216 have do this here.
126b06f9 2217 l->l_reserved = 0; */
fd26970f
UD
2218 l->l_buckets = &dummy_bucket;
2219 l->l_nbuckets = 1;
2220 l->l_relocated = 1;
2221
2222 return l;
46ec036d 2223 }
0ecb606c
JJ
2224 else if (found_other_class)
2225 _dl_signal_error (0, name, NULL,
2226 ELFW(CLASS) == ELFCLASS32
2227 ? N_("wrong ELF class: ELFCLASS64")
2228 : N_("wrong ELF class: ELFCLASS32"));
46ec036d 2229 else
154d10bd
UD
2230 _dl_signal_error (errno, name, NULL,
2231 N_("cannot open shared object file"));
46ec036d 2232 }
ba79d61b 2233
d1fc817e
UD
2234 void *stack_end = __libc_stack_end;
2235 return _dl_map_object_from_fd (name, fd, &fb, realname, loader, type, mode,
c0f62c56 2236 &stack_end, nsid);
ba79d61b 2237}
154d10bd 2238
45e4762c
RM
2239
2240void
2241internal_function
2242_dl_rtld_di_serinfo (struct link_map *loader, Dl_serinfo *si, bool counting)
2243{
2244 if (counting)
2245 {
2246 si->dls_cnt = 0;
2247 si->dls_size = 0;
2248 }
2249
2250 unsigned int idx = 0;
2251 char *allocptr = (char *) &si->dls_serpath[si->dls_cnt];
dd9423a6 2252 void add_path (const struct r_search_path_struct *sps, unsigned int flags)
45e4762c
RM
2253# define add_path(sps, flags) add_path(sps, 0) /* XXX */
2254 {
2255 if (sps->dirs != (void *) -1)
2256 {
2257 struct r_search_path_elem **dirs = sps->dirs;
2258 do
2259 {
2260 const struct r_search_path_elem *const r = *dirs++;
2261 if (counting)
2262 {
2263 si->dls_cnt++;
2264 si->dls_size += r->dirnamelen;
2265 }
2266 else
2267 {
2268 Dl_serpath *const sp = &si->dls_serpath[idx++];
2269 sp->dls_name = allocptr;
2270 allocptr = __mempcpy (allocptr,
2271 r->dirname, r->dirnamelen - 1);
2272 *allocptr++ = '\0';
2273 sp->dls_flags = flags;
2274 }
2275 }
2276 while (*dirs != NULL);
2277 }
2278 }
2279
2280 /* When the object has the RUNPATH information we don't use any RPATHs. */
2281 if (loader->l_info[DT_RUNPATH] == NULL)
2282 {
2283 /* First try the DT_RPATH of the dependent object that caused NAME
2284 to be loaded. Then that object's dependent, and on up. */
2285
2286 struct link_map *l = loader;
2287 do
2288 {
2289 if (cache_rpath (l, &l->l_rpath_dirs, DT_RPATH, "RPATH"))
2290 add_path (&l->l_rpath_dirs, XXX_RPATH);
2291 l = l->l_loader;
2292 }
2293 while (l != NULL);
2294
2295 /* If dynamically linked, try the DT_RPATH of the executable itself. */
c0f62c56
UD
2296 if (loader->l_ns == LM_ID_BASE)
2297 {
2298 l = GL(dl_ns)[LM_ID_BASE]._ns_loaded;
2299 if (l != NULL && l->l_type != lt_loaded && l != loader)
2300 if (cache_rpath (l, &l->l_rpath_dirs, DT_RPATH, "RPATH"))
2301 add_path (&l->l_rpath_dirs, XXX_RPATH);
2302 }
45e4762c
RM
2303 }
2304
2305 /* Try the LD_LIBRARY_PATH environment variable. */
2306 add_path (&env_path_list, XXX_ENV);
2307
2308 /* Look at the RUNPATH information for this binary. */
2309 if (cache_rpath (loader, &loader->l_runpath_dirs, DT_RUNPATH, "RUNPATH"))
2310 add_path (&loader->l_runpath_dirs, XXX_RUNPATH);
2311
2312 /* XXX
2313 Here is where ld.so.cache gets checked, but we don't have
2314 a way to indicate that in the results for Dl_serinfo. */
2315
2316 /* Finally, try the default path. */
2317 if (!(loader->l_flags_1 & DF_1_NODEFLIB))
2318 add_path (&rtld_search_dirs, XXX_default);
2319
2320 if (counting)
2321 /* Count the struct size before the string area, which we didn't
2322 know before we completed dls_cnt. */
2323 si->dls_size += (char *) &si->dls_serpath[si->dls_cnt] - (char *) si;
2324}