1 /* Map in a shared object's segments from the file.
2 Copyright (C) 1995-2016 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
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.
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
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
28 #include <bits/wordsize.h>
30 #include <sys/param.h>
32 #include <sys/types.h>
33 #include "dynamic-link.h"
35 #include <stackinfo.h>
38 #include <stap-probe.h>
39 #include <libc-internal.h>
43 #include <dl-map-segments.h>
44 #include <dl-unmap-segments.h>
45 #include <dl-machine-reject-phdr.h>
46 #include <dl-sysdep-open.h>
50 #if BYTE_ORDER == BIG_ENDIAN
51 # define byteorder ELFDATA2MSB
52 #elif BYTE_ORDER == LITTLE_ENDIAN
53 # define byteorder ELFDATA2LSB
55 # error "Unknown BYTE_ORDER " BYTE_ORDER
56 # define byteorder ELFDATANONE
59 #define STRING(x) __STRING (x)
62 int __stack_prot attribute_hidden attribute_relro
63 #if _STACK_GROWS_DOWN && defined PROT_GROWSDOWN
65 #elif _STACK_GROWS_UP && defined PROT_GROWSUP
72 /* Type for the buffer we put the ELF header and hopefully the program
73 header. This buffer does not really have to be too large. In most
74 cases the program header follows the ELF header directly. If this
75 is not the case all bets are off and we can make the header
76 arbitrarily large and still won't get it read. This means the only
77 question is how large are the ELF and program header combined. The
78 ELF header 32-bit files is 52 bytes long and in 64-bit files is 64
79 bytes long. Each program header entry is again 32 and 56 bytes
80 long respectively. I.e., even with a file which has 10 program
81 header entries we only have to read 372B/624B respectively. Add to
82 this a bit of margin for program notes and reading 512B and 832B
83 for 32-bit and 64-bit files respecitvely is enough. If this
84 heuristic should really fail for some file the code in
85 `_dl_map_object_from_fd' knows how to recover. */
90 # define FILEBUF_SIZE 512
92 # define FILEBUF_SIZE 832
94 char buf
[FILEBUF_SIZE
] __attribute__ ((aligned (__alignof (ElfW(Ehdr
)))));
97 /* This is the decomposed LD_LIBRARY_PATH search path. */
98 static struct r_search_path_struct env_path_list attribute_relro
;
100 /* List of the hardware capabilities we might end up using. */
101 static const struct r_strlenpair
*capstr attribute_relro
;
102 static size_t ncapstr attribute_relro
;
103 static size_t max_capstrlen attribute_relro
;
106 /* Get the generated information about the trusted directories. */
107 #include "trusted-dirs.h"
109 static const char system_dirs
[] = SYSTEM_DIRS
;
110 static const size_t system_dirs_len
[] =
114 #define nsystem_dirs_len \
115 (sizeof (system_dirs_len) / sizeof (system_dirs_len[0]))
119 is_trusted_path (const char *path
, size_t len
)
121 const char *trun
= system_dirs
;
123 for (size_t idx
= 0; idx
< nsystem_dirs_len
; ++idx
)
125 if (len
== system_dirs_len
[idx
] && memcmp (trun
, path
, len
) == 0)
129 trun
+= system_dirs_len
[idx
] + 1;
137 is_trusted_path_normalize (const char *path
, size_t len
)
148 char *npath
= (char *) alloca (len
+ 2);
150 while (*path
!= '\0')
156 if (path
[2] == '.' && (path
[3] == '/' || path
[3] == '\0'))
158 while (wnp
> npath
&& *--wnp
!= '/')
163 else if (path
[2] == '/' || path
[2] == '\0')
170 if (wnp
> npath
&& wnp
[-1] == '/')
180 if (wnp
== npath
|| wnp
[-1] != '/')
183 const char *trun
= system_dirs
;
185 for (size_t idx
= 0; idx
< nsystem_dirs_len
; ++idx
)
187 if (wnp
- npath
>= system_dirs_len
[idx
]
188 && memcmp (trun
, npath
, system_dirs_len
[idx
]) == 0)
192 trun
+= system_dirs_len
[idx
] + 1;
200 is_dst (const char *start
, const char *name
, const char *str
,
201 int is_path
, int secure
)
204 bool is_curly
= false;
213 while (name
[len
] == str
[len
] && name
[len
] != '\0')
218 if (name
[len
] != '}')
221 /* Point again at the beginning of the name. */
223 /* Skip over closing curly brace and adjust for the --name. */
226 else if (name
[len
] != '\0' && name
[len
] != '/'
227 && (!is_path
|| name
[len
] != ':'))
230 if (__glibc_unlikely (secure
)
231 && ((name
[len
] != '\0' && name
[len
] != '/'
232 && (!is_path
|| name
[len
] != ':'))
233 || (name
!= start
+ 1 && (!is_path
|| name
[-2] != ':'))))
241 _dl_dst_count (const char *name
, int is_path
)
243 const char *const start
= name
;
250 /* $ORIGIN is not expanded for SUID/GUID programs (except if it
251 is $ORIGIN alone) and it must always appear first in path. */
253 if ((len
= is_dst (start
, name
, "ORIGIN", is_path
,
254 __libc_enable_secure
)) != 0
255 || (len
= is_dst (start
, name
, "PLATFORM", is_path
, 0)) != 0
256 || (len
= is_dst (start
, name
, "LIB", is_path
, 0)) != 0)
259 name
= strchr (name
+ len
, '$');
261 while (name
!= NULL
);
268 _dl_dst_substitute (struct link_map
*l
, const char *name
, char *result
,
271 const char *const start
= name
;
273 /* Now fill the result path. While copying over the string we keep
274 track of the start of the last path element. When we come across
275 a DST we copy over the value or (if the value is not available)
276 leave the entire path element out. */
278 char *last_elem
= result
;
279 bool check_for_trusted
= false;
283 if (__glibc_unlikely (*name
== '$'))
285 const char *repl
= NULL
;
289 if ((len
= is_dst (start
, name
, "ORIGIN", is_path
,
290 __libc_enable_secure
)) != 0)
293 check_for_trusted
= (__libc_enable_secure
294 && l
->l_type
== lt_executable
);
296 else if ((len
= is_dst (start
, name
, "PLATFORM", is_path
, 0)) != 0)
297 repl
= GLRO(dl_platform
);
298 else if ((len
= is_dst (start
, name
, "LIB", is_path
, 0)) != 0)
301 if (repl
!= NULL
&& repl
!= (const char *) -1)
303 wp
= __stpcpy (wp
, repl
);
308 /* We cannot use this path element, the value of the
309 replacement is unknown. */
312 while (*name
!= '\0' && (!is_path
|| *name
!= ':'))
314 /* Also skip following colon if this is the first rpath
315 element, but keep an empty element at the end. */
316 if (wp
== result
&& is_path
&& *name
== ':' && name
[1] != '\0')
320 /* No DST we recognize. */
326 if (is_path
&& *name
== ':')
328 /* In SUID/SGID programs, after $ORIGIN expansion the
329 normalized path must be rooted in one of the trusted
331 if (__glibc_unlikely (check_for_trusted
)
332 && !is_trusted_path_normalize (last_elem
, wp
- last_elem
))
337 check_for_trusted
= false;
341 while (*name
!= '\0');
343 /* In SUID/SGID programs, after $ORIGIN expansion the normalized
344 path must be rooted in one of the trusted directories. */
345 if (__glibc_unlikely (check_for_trusted
)
346 && !is_trusted_path_normalize (last_elem
, wp
- last_elem
))
355 /* Return copy of argument with all recognized dynamic string tokens
356 ($ORIGIN and $PLATFORM for now) replaced. On some platforms it
357 might not be possible to determine the path from which the object
358 belonging to the map is loaded. In this case the path element
359 containing $ORIGIN is left out. */
361 expand_dynamic_string_token (struct link_map
*l
, const char *s
, int is_path
)
363 /* We make two runs over the string. First we determine how large the
364 resulting string is and then we copy it over. Since this is no
365 frequently executed operation we are looking here not for performance
366 but rather for code size. */
371 /* Determine the number of DST elements. */
372 cnt
= DL_DST_COUNT (s
, is_path
);
374 /* If we do not have to replace anything simply copy the string. */
375 if (__glibc_likely (cnt
== 0))
378 /* Determine the length of the substituted string. */
379 total
= DL_DST_REQUIRED (l
, s
, strlen (s
), cnt
);
381 /* Allocate the necessary memory. */
382 result
= (char *) malloc (total
+ 1);
386 return _dl_dst_substitute (l
, s
, result
, is_path
);
390 /* Add `name' to the list of names for a particular shared object.
391 `name' is expected to have been allocated with malloc and will
392 be freed if the shared object already has this name.
393 Returns false if the object already had this name. */
396 add_name_to_object (struct link_map
*l
, const char *name
)
398 struct libname_list
*lnp
, *lastp
;
399 struct libname_list
*newname
;
403 for (lnp
= l
->l_libname
; lnp
!= NULL
; lastp
= lnp
, lnp
= lnp
->next
)
404 if (strcmp (name
, lnp
->name
) == 0)
407 name_len
= strlen (name
) + 1;
408 newname
= (struct libname_list
*) malloc (sizeof *newname
+ name_len
);
411 /* No more memory. */
412 _dl_signal_error (ENOMEM
, name
, NULL
, N_("cannot allocate name record"));
415 /* The object should have a libname set from _dl_new_object. */
416 assert (lastp
!= NULL
);
418 newname
->name
= memcpy (newname
+ 1, name
, name_len
);
419 newname
->next
= NULL
;
420 newname
->dont_free
= 0;
421 lastp
->next
= newname
;
424 /* Standard search directories. */
425 static struct r_search_path_struct rtld_search_dirs attribute_relro
;
427 static size_t max_dirnamelen
;
429 static struct r_search_path_elem
**
430 fillin_rpath (char *rpath
, struct r_search_path_elem
**result
, const char *sep
,
431 int check_trusted
, const char *what
, const char *where
,
438 while ((cp
= __strsep (&rpath
, sep
)) != NULL
)
440 struct r_search_path_elem
*dirp
;
442 to_free
= cp
= expand_dynamic_string_token (l
, cp
, 1);
444 size_t len
= strlen (cp
);
446 /* `strsep' can pass an empty string. This has to be
447 interpreted as `use the current directory'. */
450 static const char curwd
[] = "./";
454 /* Remove trailing slashes (except for "/"). */
455 while (len
> 1 && cp
[len
- 1] == '/')
458 /* Now add one if there is none so far. */
459 if (len
> 0 && cp
[len
- 1] != '/')
462 /* Make sure we don't use untrusted directories if we run SUID. */
463 if (__glibc_unlikely (check_trusted
) && !is_trusted_path (cp
, len
))
469 /* See if this directory is already known. */
470 for (dirp
= GL(dl_all_dirs
); dirp
!= NULL
; dirp
= dirp
->next
)
471 if (dirp
->dirnamelen
== len
&& memcmp (cp
, dirp
->dirname
, len
) == 0)
476 /* It is available, see whether it's on our own list. */
478 for (cnt
= 0; cnt
< nelems
; ++cnt
)
479 if (result
[cnt
] == dirp
)
483 result
[nelems
++] = dirp
;
488 enum r_dir_status init_val
;
489 size_t where_len
= where
? strlen (where
) + 1 : 0;
491 /* It's a new directory. Create an entry and add it. */
492 dirp
= (struct r_search_path_elem
*)
493 malloc (sizeof (*dirp
) + ncapstr
* sizeof (enum r_dir_status
)
494 + where_len
+ len
+ 1);
496 _dl_signal_error (ENOMEM
, NULL
, NULL
,
497 N_("cannot create cache for search path"));
499 dirp
->dirname
= ((char *) dirp
+ sizeof (*dirp
)
500 + ncapstr
* sizeof (enum r_dir_status
));
501 *((char *) __mempcpy ((char *) dirp
->dirname
, cp
, len
)) = '\0';
502 dirp
->dirnamelen
= len
;
504 if (len
> max_dirnamelen
)
505 max_dirnamelen
= len
;
507 /* We have to make sure all the relative directories are
508 never ignored. The current directory might change and
509 all our saved information would be void. */
510 init_val
= cp
[0] != '/' ? existing
: unknown
;
511 for (cnt
= 0; cnt
< ncapstr
; ++cnt
)
512 dirp
->status
[cnt
] = init_val
;
515 if (__glibc_likely (where
!= NULL
))
516 dirp
->where
= memcpy ((char *) dirp
+ sizeof (*dirp
) + len
+ 1
517 + (ncapstr
* sizeof (enum r_dir_status
)),
522 dirp
->next
= GL(dl_all_dirs
);
523 GL(dl_all_dirs
) = dirp
;
525 /* Put it in the result array. */
526 result
[nelems
++] = dirp
;
531 /* Terminate the array. */
532 result
[nelems
] = NULL
;
540 decompose_rpath (struct r_search_path_struct
*sps
,
541 const char *rpath
, struct link_map
*l
, const char *what
)
543 /* Make a copy we can work with. */
544 const char *where
= l
->l_name
;
547 struct r_search_path_elem
**result
;
549 /* Initialize to please the compiler. */
550 const char *errstring
= NULL
;
552 /* First see whether we must forget the RUNPATH and RPATH from this
554 if (__glibc_unlikely (GLRO(dl_inhibit_rpath
) != NULL
)
555 && !__libc_enable_secure
)
557 const char *inhp
= GLRO(dl_inhibit_rpath
);
561 const char *wp
= where
;
563 while (*inhp
== *wp
&& *wp
!= '\0')
569 if (*wp
== '\0' && (*inhp
== '\0' || *inhp
== ':'))
571 /* This object is on the list of objects for which the
572 RUNPATH and RPATH must not be used. */
573 sps
->dirs
= (void *) -1;
577 while (*inhp
!= '\0')
581 while (*inhp
!= '\0');
584 /* Make a writable copy. */
585 copy
= __strdup (rpath
);
588 errstring
= N_("cannot create RUNPATH/RPATH copy");
592 /* Ignore empty rpaths. */
596 sps
->dirs
= (struct r_search_path_elem
**) -1;
600 /* Count the number of necessary elements in the result array. */
602 for (cp
= copy
; *cp
!= '\0'; ++cp
)
606 /* Allocate room for the result. NELEMS + 1 is an upper limit for the
607 number of necessary entries. */
608 result
= (struct r_search_path_elem
**) malloc ((nelems
+ 1 + 1)
613 errstring
= N_("cannot create cache for search path");
615 _dl_signal_error (ENOMEM
, NULL
, NULL
, errstring
);
618 fillin_rpath (copy
, result
, ":", 0, what
, where
, l
);
620 /* Free the copied RPATH string. `fillin_rpath' make own copies if
625 /* The caller will change this value if we haven't used a real malloc. */
630 /* Make sure cached path information is stored in *SP
631 and return true if there are any paths to search there. */
633 cache_rpath (struct link_map
*l
,
634 struct r_search_path_struct
*sp
,
638 if (sp
->dirs
== (void *) -1)
641 if (sp
->dirs
!= NULL
)
644 if (l
->l_info
[tag
] == NULL
)
646 /* There is no path. */
647 sp
->dirs
= (void *) -1;
651 /* Make sure the cache information is available. */
652 return decompose_rpath (sp
, (const char *) (D_PTR (l
, l_info
[DT_STRTAB
])
653 + l
->l_info
[tag
]->d_un
.d_val
),
660 _dl_init_paths (const char *llp
)
664 struct r_search_path_elem
*pelem
, **aelem
;
666 struct link_map
__attribute__ ((unused
)) *l
= NULL
;
667 /* Initialize to please the compiler. */
668 const char *errstring
= NULL
;
670 /* Fill in the information about the application's RPATH and the
671 directories addressed by the LD_LIBRARY_PATH environment variable. */
673 /* Get the capabilities. */
674 capstr
= _dl_important_hwcaps (GLRO(dl_platform
), GLRO(dl_platformlen
),
675 &ncapstr
, &max_capstrlen
);
677 /* First set up the rest of the default search directory entries. */
678 aelem
= rtld_search_dirs
.dirs
= (struct r_search_path_elem
**)
679 malloc ((nsystem_dirs_len
+ 1) * sizeof (struct r_search_path_elem
*));
680 if (rtld_search_dirs
.dirs
== NULL
)
682 errstring
= N_("cannot create search path array");
684 _dl_signal_error (ENOMEM
, NULL
, NULL
, errstring
);
687 round_size
= ((2 * sizeof (struct r_search_path_elem
) - 1
688 + ncapstr
* sizeof (enum r_dir_status
))
689 / sizeof (struct r_search_path_elem
));
691 rtld_search_dirs
.dirs
[0] = (struct r_search_path_elem
*)
692 malloc ((sizeof (system_dirs
) / sizeof (system_dirs
[0]))
693 * round_size
* sizeof (struct r_search_path_elem
));
694 if (rtld_search_dirs
.dirs
[0] == NULL
)
696 errstring
= N_("cannot create cache for search path");
700 rtld_search_dirs
.malloced
= 0;
701 pelem
= GL(dl_all_dirs
) = rtld_search_dirs
.dirs
[0];
711 pelem
->what
= "system search path";
714 pelem
->dirname
= strp
;
715 pelem
->dirnamelen
= system_dirs_len
[idx
];
716 strp
+= system_dirs_len
[idx
] + 1;
718 /* System paths must be absolute. */
719 assert (pelem
->dirname
[0] == '/');
720 for (cnt
= 0; cnt
< ncapstr
; ++cnt
)
721 pelem
->status
[cnt
] = unknown
;
723 pelem
->next
= (++idx
== nsystem_dirs_len
? NULL
: (pelem
+ round_size
));
727 while (idx
< nsystem_dirs_len
);
729 max_dirnamelen
= SYSTEM_DIRS_MAX_LEN
;
733 /* This points to the map of the main object. */
734 l
= GL(dl_ns
)[LM_ID_BASE
]._ns_loaded
;
737 assert (l
->l_type
!= lt_loaded
);
739 if (l
->l_info
[DT_RUNPATH
])
741 /* Allocate room for the search path and fill in information
743 decompose_rpath (&l
->l_runpath_dirs
,
744 (const void *) (D_PTR (l
, l_info
[DT_STRTAB
])
745 + l
->l_info
[DT_RUNPATH
]->d_un
.d_val
),
747 /* During rtld init the memory is allocated by the stub malloc,
748 prevent any attempt to free it by the normal malloc. */
749 l
->l_runpath_dirs
.malloced
= 0;
751 /* The RPATH is ignored. */
752 l
->l_rpath_dirs
.dirs
= (void *) -1;
756 l
->l_runpath_dirs
.dirs
= (void *) -1;
758 if (l
->l_info
[DT_RPATH
])
760 /* Allocate room for the search path and fill in information
762 decompose_rpath (&l
->l_rpath_dirs
,
763 (const void *) (D_PTR (l
, l_info
[DT_STRTAB
])
764 + l
->l_info
[DT_RPATH
]->d_un
.d_val
),
766 /* During rtld init the memory is allocated by the stub
767 malloc, prevent any attempt to free it by the normal
769 l
->l_rpath_dirs
.malloced
= 0;
772 l
->l_rpath_dirs
.dirs
= (void *) -1;
777 if (llp
!= NULL
&& *llp
!= '\0')
780 const char *cp
= llp
;
785 size_t cnt
= DL_DST_COUNT (llp
, 1);
786 if (__glibc_likely (cnt
== 0))
787 llp_tmp
= strdupa (llp
);
790 /* Determine the length of the substituted string. */
791 size_t total
= DL_DST_REQUIRED (l
, llp
, strlen (llp
), cnt
);
793 /* Allocate the necessary memory. */
794 llp_tmp
= (char *) alloca (total
+ 1);
795 llp_tmp
= _dl_dst_substitute (l
, llp
, llp_tmp
, 1);
798 llp_tmp
= strdupa (llp
);
801 /* Decompose the LD_LIBRARY_PATH contents. First determine how many
806 if (*cp
== ':' || *cp
== ';')
811 env_path_list
.dirs
= (struct r_search_path_elem
**)
812 malloc ((nllp
+ 1) * sizeof (struct r_search_path_elem
*));
813 if (env_path_list
.dirs
== NULL
)
815 errstring
= N_("cannot create cache for search path");
819 (void) fillin_rpath (llp_tmp
, env_path_list
.dirs
, ":;",
820 __libc_enable_secure
, "LD_LIBRARY_PATH",
823 if (env_path_list
.dirs
[0] == NULL
)
825 free (env_path_list
.dirs
);
826 env_path_list
.dirs
= (void *) -1;
829 env_path_list
.malloced
= 0;
832 env_path_list
.dirs
= (void *) -1;
837 __attribute__ ((noreturn
, noinline
))
838 lose (int code
, int fd
, const char *name
, char *realname
, struct link_map
*l
,
839 const char *msg
, struct r_debug
*r
, Lmid_t nsid
)
841 /* The file might already be closed. */
844 if (l
!= NULL
&& l
->l_origin
!= (char *) -1l)
845 free ((char *) l
->l_origin
);
851 r
->r_state
= RT_CONSISTENT
;
853 LIBC_PROBE (map_failed
, 2, nsid
, r
);
856 _dl_signal_error (code
, name
, NULL
, msg
);
860 /* Map in the shared object NAME, actually located in REALNAME, and already
863 #ifndef EXTERNAL_MAP_FROM_FD
867 _dl_map_object_from_fd (const char *name
, const char *origname
, int fd
,
868 struct filebuf
*fbp
, char *realname
,
869 struct link_map
*loader
, int l_type
, int mode
,
870 void **stack_endp
, Lmid_t nsid
)
872 struct link_map
*l
= NULL
;
873 const ElfW(Ehdr
) *header
;
874 const ElfW(Phdr
) *phdr
;
875 const ElfW(Phdr
) *ph
;
878 /* Initialize to keep the compiler happy. */
879 const char *errstring
= NULL
;
881 struct r_debug
*r
= _dl_debug_initialize (0, nsid
);
882 bool make_consistent
= false;
884 /* Get file information. */
886 if (__glibc_unlikely (!_dl_get_file_id (fd
, &id
)))
888 errstring
= N_("cannot stat shared object");
892 lose (errval
, fd
, name
, realname
, l
, errstring
,
893 make_consistent
? r
: NULL
, nsid
);
896 /* Look again to see if the real name matched another already loaded. */
897 for (l
= GL(dl_ns
)[nsid
]._ns_loaded
; l
!= NULL
; l
= l
->l_next
)
898 if (!l
->l_removed
&& _dl_file_id_match_p (&l
->l_file_id
, &id
))
900 /* The object is already loaded.
901 Just bump its reference count and return it. */
904 /* If the name is not in the list of names for this object add
907 add_name_to_object (l
, name
);
913 /* When loading into a namespace other than the base one we must
914 avoid loading ld.so since there can only be one copy. Ever. */
915 if (__glibc_unlikely (nsid
!= LM_ID_BASE
)
916 && (_dl_file_id_match_p (&id
, &GL(dl_rtld_map
).l_file_id
)
917 || _dl_name_match_p (name
, &GL(dl_rtld_map
))))
919 /* This is indeed ld.so. Create a new link_map which refers to
920 the real one for almost everything. */
921 l
= _dl_new_object (realname
, name
, l_type
, loader
, mode
, nsid
);
925 /* Refer to the real descriptor. */
926 l
->l_real
= &GL(dl_rtld_map
);
928 /* No need to bump the refcount of the real object, ld.so will
929 never be unloaded. */
932 /* Add the map for the mirrored object to the object list. */
933 _dl_add_to_namespace_list (l
, nsid
);
939 if (mode
& RTLD_NOLOAD
)
941 /* We are not supposed to load the object unless it is already
942 loaded. So return now. */
948 /* Print debugging message. */
949 if (__glibc_unlikely (GLRO(dl_debug_mask
) & DL_DEBUG_FILES
))
950 _dl_debug_printf ("file=%s [%lu]; generating link map\n", name
, nsid
);
952 /* This is the ELF header. We read it in `open_verify'. */
953 header
= (void *) fbp
->buf
;
957 if (_dl_zerofd
== -1)
959 _dl_zerofd
= _dl_sysdep_open_zero_fill ();
960 if (_dl_zerofd
== -1)
964 _dl_signal_error (errno
, NULL
, NULL
,
965 N_("cannot open zero fill device"));
970 /* Signal that we are going to add new objects. */
971 if (r
->r_state
== RT_CONSISTENT
)
974 /* Auditing checkpoint: we are going to add new objects. */
975 if ((mode
& __RTLD_AUDIT
) == 0
976 && __glibc_unlikely (GLRO(dl_naudit
) > 0))
978 struct link_map
*head
= GL(dl_ns
)[nsid
]._ns_loaded
;
979 /* Do not call the functions for any auditing object. */
980 if (head
->l_auditing
== 0)
982 struct audit_ifaces
*afct
= GLRO(dl_audit
);
983 for (unsigned int cnt
= 0; cnt
< GLRO(dl_naudit
); ++cnt
)
985 if (afct
->activity
!= NULL
)
986 afct
->activity (&head
->l_audit
[cnt
].cookie
, LA_ACT_ADD
);
994 /* Notify the debugger we have added some objects. We need to
995 call _dl_debug_initialize in a static program in case dynamic
996 linking has not been used before. */
999 LIBC_PROBE (map_start
, 2, nsid
, r
);
1000 make_consistent
= true;
1003 assert (r
->r_state
== RT_ADD
);
1005 /* Enter the new object in the list of loaded objects. */
1006 l
= _dl_new_object (realname
, name
, l_type
, loader
, mode
, nsid
);
1007 if (__glibc_unlikely (l
== NULL
))
1012 errstring
= N_("cannot create shared object descriptor");
1013 goto call_lose_errno
;
1016 /* Extract the remaining details we need from the ELF header
1017 and then read in the program header table. */
1018 l
->l_entry
= header
->e_entry
;
1019 type
= header
->e_type
;
1020 l
->l_phnum
= header
->e_phnum
;
1022 maplength
= header
->e_phnum
* sizeof (ElfW(Phdr
));
1023 if (header
->e_phoff
+ maplength
<= (size_t) fbp
->len
)
1024 phdr
= (void *) (fbp
->buf
+ header
->e_phoff
);
1027 phdr
= alloca (maplength
);
1028 __lseek (fd
, header
->e_phoff
, SEEK_SET
);
1029 if ((size_t) __libc_read (fd
, (void *) phdr
, maplength
) != maplength
)
1031 errstring
= N_("cannot read file data");
1032 goto call_lose_errno
;
1036 /* On most platforms presume that PT_GNU_STACK is absent and the stack is
1037 * executable. Other platforms default to a nonexecutable stack and don't
1038 * need PT_GNU_STACK to do so. */
1039 uint_fast16_t stack_flags
= DEFAULT_STACK_PERMS
;
1042 /* Scan the program header table, collecting its load commands. */
1043 struct loadcmd loadcmds
[l
->l_phnum
];
1044 size_t nloadcmds
= 0;
1045 bool has_holes
= false;
1047 /* The struct is initialized to zero so this is not necessary:
1051 for (ph
= phdr
; ph
< &phdr
[l
->l_phnum
]; ++ph
)
1054 /* These entries tell us where to find things once the file's
1055 segments are mapped in. We record the addresses it says
1056 verbatim, and later correct for the run-time load address. */
1058 l
->l_ld
= (void *) ph
->p_vaddr
;
1059 l
->l_ldnum
= ph
->p_memsz
/ sizeof (ElfW(Dyn
));
1063 l
->l_phdr
= (void *) ph
->p_vaddr
;
1067 /* A load command tells us to map in part of the file.
1068 We record the load commands and process them all later. */
1069 if (__glibc_unlikely ((ph
->p_align
& (GLRO(dl_pagesize
) - 1)) != 0))
1071 errstring
= N_("ELF load command alignment not page-aligned");
1074 if (__glibc_unlikely (((ph
->p_vaddr
- ph
->p_offset
)
1075 & (ph
->p_align
- 1)) != 0))
1078 = N_("ELF load command address/offset not properly aligned");
1082 struct loadcmd
*c
= &loadcmds
[nloadcmds
++];
1083 c
->mapstart
= ALIGN_DOWN (ph
->p_vaddr
, GLRO(dl_pagesize
));
1084 c
->mapend
= ALIGN_UP (ph
->p_vaddr
+ ph
->p_filesz
, GLRO(dl_pagesize
));
1085 c
->dataend
= ph
->p_vaddr
+ ph
->p_filesz
;
1086 c
->allocend
= ph
->p_vaddr
+ ph
->p_memsz
;
1087 c
->mapoff
= ALIGN_DOWN (ph
->p_offset
, GLRO(dl_pagesize
));
1089 /* Determine whether there is a gap between the last segment
1091 if (nloadcmds
> 1 && c
[-1].mapend
!= c
->mapstart
)
1094 /* Optimize a common case. */
1095 #if (PF_R | PF_W | PF_X) == 7 && (PROT_READ | PROT_WRITE | PROT_EXEC) == 7
1096 c
->prot
= (PF_TO_PROT
1097 >> ((ph
->p_flags
& (PF_R
| PF_W
| PF_X
)) * 4)) & 0xf;
1100 if (ph
->p_flags
& PF_R
)
1101 c
->prot
|= PROT_READ
;
1102 if (ph
->p_flags
& PF_W
)
1103 c
->prot
|= PROT_WRITE
;
1104 if (ph
->p_flags
& PF_X
)
1105 c
->prot
|= PROT_EXEC
;
1110 if (ph
->p_memsz
== 0)
1111 /* Nothing to do for an empty segment. */
1114 l
->l_tls_blocksize
= ph
->p_memsz
;
1115 l
->l_tls_align
= ph
->p_align
;
1116 if (ph
->p_align
== 0)
1117 l
->l_tls_firstbyte_offset
= 0;
1119 l
->l_tls_firstbyte_offset
= ph
->p_vaddr
& (ph
->p_align
- 1);
1120 l
->l_tls_initimage_size
= ph
->p_filesz
;
1121 /* Since we don't know the load address yet only store the
1122 offset. We will adjust it later. */
1123 l
->l_tls_initimage
= (void *) ph
->p_vaddr
;
1125 /* If not loading the initial set of shared libraries,
1126 check whether we should permit loading a TLS segment. */
1127 if (__glibc_likely (l
->l_type
== lt_library
)
1128 /* If GL(dl_tls_dtv_slotinfo_list) == NULL, then rtld.c did
1129 not set up TLS data structures, so don't use them now. */
1130 || __glibc_likely (GL(dl_tls_dtv_slotinfo_list
) != NULL
))
1132 /* Assign the next available module ID. */
1133 l
->l_tls_modid
= _dl_next_tls_modid ();
1138 /* We are loading the executable itself when the dynamic
1139 linker was executed directly. The setup will happen
1140 later. Otherwise, the TLS data structures are already
1141 initialized, and we assigned a TLS modid above. */
1142 assert (l
->l_prev
== NULL
|| (mode
& __RTLD_AUDIT
) != 0);
1144 assert (false && "TLS not initialized in static application");
1149 stack_flags
= ph
->p_flags
;
1153 l
->l_relro_addr
= ph
->p_vaddr
;
1154 l
->l_relro_size
= ph
->p_memsz
;
1158 if (__glibc_unlikely (nloadcmds
== 0))
1160 /* This only happens for a bogus object that will be caught with
1161 another error below. But we don't want to go through the
1162 calculations below using NLOADCMDS - 1. */
1163 errstring
= N_("object file has no loadable segments");
1167 if (__glibc_unlikely (type
!= ET_DYN
)
1168 && __glibc_unlikely ((mode
& __RTLD_OPENEXEC
) == 0))
1170 /* This object is loaded at a fixed address. This must never
1171 happen for objects loaded with dlopen. */
1172 errstring
= N_("cannot dynamically load executable");
1176 /* Length of the sections to be loaded. */
1177 maplength
= loadcmds
[nloadcmds
- 1].allocend
- loadcmds
[0].mapstart
;
1179 /* Now process the load commands and map segments into memory.
1180 This is responsible for filling in:
1181 l_map_start, l_map_end, l_addr, l_contiguous, l_text_end, l_phdr
1183 errstring
= _dl_map_segments (l
, fd
, header
, type
, loadcmds
, nloadcmds
,
1184 maplength
, has_holes
, loader
);
1185 if (__glibc_unlikely (errstring
!= NULL
))
1191 if (__glibc_unlikely (type
== ET_DYN
))
1193 errstring
= N_("object file has no dynamic section");
1198 l
->l_ld
= (ElfW(Dyn
) *) ((ElfW(Addr
)) l
->l_ld
+ l
->l_addr
);
1200 elf_get_dynamic_info (l
, NULL
);
1202 /* Make sure we are not dlopen'ing an object that has the
1203 DF_1_NOOPEN flag set. */
1204 if (__glibc_unlikely (l
->l_flags_1
& DF_1_NOOPEN
)
1205 && (mode
& __RTLD_DLOPEN
))
1207 /* We are not supposed to load this object. Free all resources. */
1208 _dl_unmap_segments (l
);
1210 if (!l
->l_libname
->dont_free
)
1211 free (l
->l_libname
);
1213 if (l
->l_phdr_allocated
)
1214 free ((void *) l
->l_phdr
);
1216 errstring
= N_("shared object cannot be dlopen()ed");
1220 if (l
->l_phdr
== NULL
)
1222 /* The program header is not contained in any of the segments.
1223 We have to allocate memory ourself and copy it over from out
1225 ElfW(Phdr
) *newp
= (ElfW(Phdr
) *) malloc (header
->e_phnum
1226 * sizeof (ElfW(Phdr
)));
1229 errstring
= N_("cannot allocate memory for program header");
1230 goto call_lose_errno
;
1233 l
->l_phdr
= memcpy (newp
, phdr
,
1234 (header
->e_phnum
* sizeof (ElfW(Phdr
))));
1235 l
->l_phdr_allocated
= 1;
1238 /* Adjust the PT_PHDR value by the runtime load address. */
1239 l
->l_phdr
= (ElfW(Phdr
) *) ((ElfW(Addr
)) l
->l_phdr
+ l
->l_addr
);
1241 if (__glibc_unlikely ((stack_flags
&~ GL(dl_stack_flags
)) & PF_X
))
1243 if (__glibc_unlikely (__check_caller (RETURN_ADDRESS (0), allow_ldso
) != 0))
1245 errstring
= N_("invalid caller");
1249 /* The stack is presently not executable, but this module
1250 requires that it be executable. We must change the
1251 protection of the variable which contains the flags used in
1252 the mprotect calls. */
1254 if ((mode
& (__RTLD_DLOPEN
| __RTLD_AUDIT
)) == __RTLD_DLOPEN
)
1256 const uintptr_t p
= (uintptr_t) &__stack_prot
& -GLRO(dl_pagesize
);
1257 const size_t s
= (uintptr_t) (&__stack_prot
+ 1) - p
;
1259 struct link_map
*const m
= &GL(dl_rtld_map
);
1260 const uintptr_t relro_end
= ((m
->l_addr
+ m
->l_relro_addr
1262 & -GLRO(dl_pagesize
));
1263 if (__glibc_likely (p
+ s
<= relro_end
))
1265 /* The variable lies in the region protected by RELRO. */
1266 if (__mprotect ((void *) p
, s
, PROT_READ
|PROT_WRITE
) < 0)
1268 errstring
= N_("cannot change memory protections");
1269 goto call_lose_errno
;
1271 __stack_prot
|= PROT_READ
|PROT_WRITE
|PROT_EXEC
;
1272 __mprotect ((void *) p
, s
, PROT_READ
);
1275 __stack_prot
|= PROT_READ
|PROT_WRITE
|PROT_EXEC
;
1279 __stack_prot
|= PROT_READ
|PROT_WRITE
|PROT_EXEC
;
1281 #ifdef check_consistency
1282 check_consistency ();
1285 errval
= (*GL(dl_make_stack_executable_hook
)) (stack_endp
);
1289 cannot enable executable stack as shared object requires");
1294 /* Adjust the address of the TLS initialization image. */
1295 if (l
->l_tls_initimage
!= NULL
)
1296 l
->l_tls_initimage
= (char *) l
->l_tls_initimage
+ l
->l_addr
;
1298 /* We are done mapping in the file. We no longer need the descriptor. */
1299 if (__glibc_unlikely (__close (fd
) != 0))
1301 errstring
= N_("cannot close file descriptor");
1302 goto call_lose_errno
;
1304 /* Signal that we closed the file. */
1307 /* If this is ET_EXEC, we should have loaded it as lt_executable. */
1308 assert (type
!= ET_EXEC
|| l
->l_type
== lt_executable
);
1310 l
->l_entry
+= l
->l_addr
;
1312 if (__glibc_unlikely (GLRO(dl_debug_mask
) & DL_DEBUG_FILES
))
1313 _dl_debug_printf ("\
1314 dynamic: 0x%0*lx base: 0x%0*lx size: 0x%0*Zx\n\
1315 entry: 0x%0*lx phdr: 0x%0*lx phnum: %*u\n\n",
1316 (int) sizeof (void *) * 2,
1317 (unsigned long int) l
->l_ld
,
1318 (int) sizeof (void *) * 2,
1319 (unsigned long int) l
->l_addr
,
1320 (int) sizeof (void *) * 2, maplength
,
1321 (int) sizeof (void *) * 2,
1322 (unsigned long int) l
->l_entry
,
1323 (int) sizeof (void *) * 2,
1324 (unsigned long int) l
->l_phdr
,
1325 (int) sizeof (void *) * 2, l
->l_phnum
);
1327 /* Set up the symbol hash table. */
1330 /* If this object has DT_SYMBOLIC set modify now its scope. We don't
1331 have to do this for the main map. */
1332 if ((mode
& RTLD_DEEPBIND
) == 0
1333 && __glibc_unlikely (l
->l_info
[DT_SYMBOLIC
] != NULL
)
1334 && &l
->l_searchlist
!= l
->l_scope
[0])
1336 /* Create an appropriate searchlist. It contains only this map.
1337 This is the definition of DT_SYMBOLIC in SysVr4. */
1338 l
->l_symbolic_searchlist
.r_list
[0] = l
;
1339 l
->l_symbolic_searchlist
.r_nlist
= 1;
1341 /* Now move the existing entries one back. */
1342 memmove (&l
->l_scope
[1], &l
->l_scope
[0],
1343 (l
->l_scope_max
- 1) * sizeof (l
->l_scope
[0]));
1345 /* Now add the new entry. */
1346 l
->l_scope
[0] = &l
->l_symbolic_searchlist
;
1349 /* Remember whether this object must be initialized first. */
1350 if (l
->l_flags_1
& DF_1_INITFIRST
)
1351 GL(dl_initfirst
) = l
;
1353 /* Finally the file information. */
1357 /* When auditing is used the recorded names might not include the
1358 name by which the DSO is actually known. Add that as well. */
1359 if (__glibc_unlikely (origname
!= NULL
))
1360 add_name_to_object (l
, origname
);
1362 /* Audit modules only exist when linking is dynamic so ORIGNAME
1363 cannot be non-NULL. */
1364 assert (origname
== NULL
);
1367 /* When we profile the SONAME might be needed for something else but
1368 loading. Add it right away. */
1369 if (__glibc_unlikely (GLRO(dl_profile
) != NULL
)
1370 && l
->l_info
[DT_SONAME
] != NULL
)
1371 add_name_to_object (l
, ((const char *) D_PTR (l
, l_info
[DT_STRTAB
])
1372 + l
->l_info
[DT_SONAME
]->d_un
.d_val
));
1374 #ifdef DL_AFTER_LOAD
1378 /* Now that the object is fully initialized add it to the object list. */
1379 _dl_add_to_namespace_list (l
, nsid
);
1382 /* Auditing checkpoint: we have a new object. */
1383 if (__glibc_unlikely (GLRO(dl_naudit
) > 0)
1384 && !GL(dl_ns
)[l
->l_ns
]._ns_loaded
->l_auditing
)
1386 struct audit_ifaces
*afct
= GLRO(dl_audit
);
1387 for (unsigned int cnt
= 0; cnt
< GLRO(dl_naudit
); ++cnt
)
1389 if (afct
->objopen
!= NULL
)
1391 l
->l_audit
[cnt
].bindflags
1392 = afct
->objopen (l
, nsid
, &l
->l_audit
[cnt
].cookie
);
1394 l
->l_audit_any_plt
|= l
->l_audit
[cnt
].bindflags
!= 0;
1405 /* Print search path. */
1407 print_search_path (struct r_search_path_elem
**list
,
1408 const char *what
, const char *name
)
1410 char buf
[max_dirnamelen
+ max_capstrlen
];
1413 _dl_debug_printf (" search path=");
1415 while (*list
!= NULL
&& (*list
)->what
== what
) /* Yes, ==. */
1417 char *endp
= __mempcpy (buf
, (*list
)->dirname
, (*list
)->dirnamelen
);
1420 for (cnt
= 0; cnt
< ncapstr
; ++cnt
)
1421 if ((*list
)->status
[cnt
] != nonexisting
)
1423 char *cp
= __mempcpy (endp
, capstr
[cnt
].str
, capstr
[cnt
].len
);
1424 if (cp
== buf
|| (cp
== buf
+ 1 && buf
[0] == '/'))
1429 _dl_debug_printf_c (first
? "%s" : ":%s", buf
);
1437 _dl_debug_printf_c ("\t\t(%s from file %s)\n", what
,
1438 DSO_FILENAME (name
));
1440 _dl_debug_printf_c ("\t\t(%s)\n", what
);
1443 /* Open a file and verify it is an ELF file for this architecture. We
1444 ignore only ELF files for other architectures. Non-ELF files and
1445 ELF files with different header information cause fatal errors since
1446 this could mean there is something wrong in the installation and the
1447 user might want to know about this.
1449 If FD is not -1, then the file is already open and FD refers to it.
1450 In that case, FD is consumed for both successful and error returns. */
1452 open_verify (const char *name
, int fd
,
1453 struct filebuf
*fbp
, struct link_map
*loader
,
1454 int whatcode
, int mode
, bool *found_other_class
, bool free_name
)
1456 /* This is the expected ELF header. */
1457 #define ELF32_CLASS ELFCLASS32
1458 #define ELF64_CLASS ELFCLASS64
1459 #ifndef VALID_ELF_HEADER
1460 # define VALID_ELF_HEADER(hdr,exp,size) (memcmp (hdr, exp, size) == 0)
1461 # define VALID_ELF_OSABI(osabi) (osabi == ELFOSABI_SYSV)
1462 # define VALID_ELF_ABIVERSION(osabi,ver) (ver == 0)
1463 #elif defined MORE_ELF_HEADER_DATA
1464 MORE_ELF_HEADER_DATA
;
1466 static const unsigned char expected
[EI_NIDENT
] =
1468 [EI_MAG0
] = ELFMAG0
,
1469 [EI_MAG1
] = ELFMAG1
,
1470 [EI_MAG2
] = ELFMAG2
,
1471 [EI_MAG3
] = ELFMAG3
,
1472 [EI_CLASS
] = ELFW(CLASS
),
1473 [EI_DATA
] = byteorder
,
1474 [EI_VERSION
] = EV_CURRENT
,
1475 [EI_OSABI
] = ELFOSABI_SYSV
,
1480 ElfW(Word
) vendorlen
;
1484 } expected_note
= { 4, 16, 1, "GNU" };
1485 /* Initialize it to make the compiler happy. */
1486 const char *errstring
= NULL
;
1490 /* Give the auditing libraries a chance. */
1491 if (__glibc_unlikely (GLRO(dl_naudit
) > 0) && whatcode
!= 0
1492 && loader
->l_auditing
== 0)
1494 const char *original_name
= name
;
1495 struct audit_ifaces
*afct
= GLRO(dl_audit
);
1496 for (unsigned int cnt
= 0; cnt
< GLRO(dl_naudit
); ++cnt
)
1498 if (afct
->objsearch
!= NULL
)
1500 name
= afct
->objsearch (name
, &loader
->l_audit
[cnt
].cookie
,
1503 /* Ignore the path. */
1510 if (fd
!= -1 && name
!= original_name
&& strcmp (name
, original_name
))
1512 /* An audit library changed what we're supposed to open,
1513 so FD no longer matches it. */
1521 /* Open the file. We always open files read-only. */
1522 fd
= __open (name
, O_RDONLY
| O_CLOEXEC
);
1527 ElfW(Phdr
) *phdr
, *ph
;
1528 ElfW(Word
) *abi_note
;
1529 unsigned int osversion
;
1532 /* We successfully opened the file. Now verify it is a file
1536 assert (sizeof (fbp
->buf
) > sizeof (ElfW(Ehdr
)));
1537 /* Read in the header. */
1540 ssize_t retlen
= __libc_read (fd
, fbp
->buf
+ fbp
->len
,
1541 sizeof (fbp
->buf
) - fbp
->len
);
1546 while (__glibc_unlikely (fbp
->len
< sizeof (ElfW(Ehdr
))));
1548 /* This is where the ELF header is loaded. */
1549 ehdr
= (ElfW(Ehdr
) *) fbp
->buf
;
1551 /* Now run the tests. */
1552 if (__glibc_unlikely (fbp
->len
< (ssize_t
) sizeof (ElfW(Ehdr
))))
1555 errstring
= (errval
== 0
1556 ? N_("file too short") : N_("cannot read file data"));
1560 char *realname
= (char *) name
;
1561 name
= strdupa (realname
);
1564 lose (errval
, fd
, name
, NULL
, NULL
, errstring
, NULL
, 0);
1567 /* See whether the ELF header is what we expect. */
1568 if (__glibc_unlikely (! VALID_ELF_HEADER (ehdr
->e_ident
, expected
,
1570 || !VALID_ELF_ABIVERSION (ehdr
->e_ident
[EI_OSABI
],
1571 ehdr
->e_ident
[EI_ABIVERSION
])
1572 || memcmp (&ehdr
->e_ident
[EI_PAD
],
1574 EI_NIDENT
- EI_PAD
) != 0))
1576 /* Something is wrong. */
1577 const Elf32_Word
*magp
= (const void *) ehdr
->e_ident
;
1579 #if BYTE_ORDER == LITTLE_ENDIAN
1580 ((ELFMAG0
<< (EI_MAG0
* 8)) |
1581 (ELFMAG1
<< (EI_MAG1
* 8)) |
1582 (ELFMAG2
<< (EI_MAG2
* 8)) |
1583 (ELFMAG3
<< (EI_MAG3
* 8)))
1585 ((ELFMAG0
<< (EI_MAG3
* 8)) |
1586 (ELFMAG1
<< (EI_MAG2
* 8)) |
1587 (ELFMAG2
<< (EI_MAG1
* 8)) |
1588 (ELFMAG3
<< (EI_MAG0
* 8)))
1591 errstring
= N_("invalid ELF header");
1592 else if (ehdr
->e_ident
[EI_CLASS
] != ELFW(CLASS
))
1594 /* This is not a fatal error. On architectures where
1595 32-bit and 64-bit binaries can be run this might
1597 *found_other_class
= true;
1600 else if (ehdr
->e_ident
[EI_DATA
] != byteorder
)
1602 if (BYTE_ORDER
== BIG_ENDIAN
)
1603 errstring
= N_("ELF file data encoding not big-endian");
1605 errstring
= N_("ELF file data encoding not little-endian");
1607 else if (ehdr
->e_ident
[EI_VERSION
] != EV_CURRENT
)
1609 = N_("ELF file version ident does not match current one");
1610 /* XXX We should be able so set system specific versions which are
1612 else if (!VALID_ELF_OSABI (ehdr
->e_ident
[EI_OSABI
]))
1613 errstring
= N_("ELF file OS ABI invalid");
1614 else if (!VALID_ELF_ABIVERSION (ehdr
->e_ident
[EI_OSABI
],
1615 ehdr
->e_ident
[EI_ABIVERSION
]))
1616 errstring
= N_("ELF file ABI version invalid");
1617 else if (memcmp (&ehdr
->e_ident
[EI_PAD
], &expected
[EI_PAD
],
1618 EI_NIDENT
- EI_PAD
) != 0)
1619 errstring
= N_("nonzero padding in e_ident");
1621 /* Otherwise we don't know what went wrong. */
1622 errstring
= N_("internal error");
1627 if (__glibc_unlikely (ehdr
->e_version
!= EV_CURRENT
))
1629 errstring
= N_("ELF file version does not match current one");
1632 if (! __glibc_likely (elf_machine_matches_host (ehdr
)))
1634 else if (__glibc_unlikely (ehdr
->e_type
!= ET_DYN
1635 && ehdr
->e_type
!= ET_EXEC
))
1637 errstring
= N_("only ET_DYN and ET_EXEC can be loaded");
1640 else if (__glibc_unlikely (ehdr
->e_type
== ET_EXEC
1641 && (mode
& __RTLD_OPENEXEC
) == 0))
1643 /* BZ #16634. It is an error to dlopen ET_EXEC (unless
1644 __RTLD_OPENEXEC is explicitly set). We return error here
1645 so that code in _dl_map_object_from_fd does not try to set
1646 l_tls_modid for this module. */
1648 errstring
= N_("cannot dynamically load executable");
1651 else if (__glibc_unlikely (ehdr
->e_phentsize
!= sizeof (ElfW(Phdr
))))
1653 errstring
= N_("ELF file's phentsize not the expected size");
1657 maplength
= ehdr
->e_phnum
* sizeof (ElfW(Phdr
));
1658 if (ehdr
->e_phoff
+ maplength
<= (size_t) fbp
->len
)
1659 phdr
= (void *) (fbp
->buf
+ ehdr
->e_phoff
);
1662 phdr
= alloca (maplength
);
1663 __lseek (fd
, ehdr
->e_phoff
, SEEK_SET
);
1664 if ((size_t) __libc_read (fd
, (void *) phdr
, maplength
) != maplength
)
1668 errstring
= N_("cannot read file data");
1673 if (__glibc_unlikely (elf_machine_reject_phdr_p
1674 (phdr
, ehdr
->e_phnum
, fbp
->buf
, fbp
->len
,
1678 /* Check .note.ABI-tag if present. */
1679 for (ph
= phdr
; ph
< &phdr
[ehdr
->e_phnum
]; ++ph
)
1680 if (ph
->p_type
== PT_NOTE
&& ph
->p_filesz
>= 32 && ph
->p_align
>= 4)
1682 ElfW(Addr
) size
= ph
->p_filesz
;
1684 if (ph
->p_offset
+ size
<= (size_t) fbp
->len
)
1685 abi_note
= (void *) (fbp
->buf
+ ph
->p_offset
);
1688 abi_note
= alloca (size
);
1689 __lseek (fd
, ph
->p_offset
, SEEK_SET
);
1690 if (__libc_read (fd
, (void *) abi_note
, size
) != size
)
1694 while (memcmp (abi_note
, &expected_note
, sizeof (expected_note
)))
1696 #define ROUND(len) (((len) + sizeof (ElfW(Word)) - 1) & -sizeof (ElfW(Word)))
1697 ElfW(Addr
) note_size
= 3 * sizeof (ElfW(Word
))
1698 + ROUND (abi_note
[0])
1699 + ROUND (abi_note
[1]);
1701 if (size
- 32 < note_size
)
1707 abi_note
= (void *) abi_note
+ note_size
;
1713 osversion
= (abi_note
[5] & 0xff) * 65536
1714 + (abi_note
[6] & 0xff) * 256
1715 + (abi_note
[7] & 0xff);
1716 if (abi_note
[4] != __ABI_TAG_OS
1717 || (GLRO(dl_osversion
) && GLRO(dl_osversion
) < osversion
))
1721 __set_errno (ENOENT
);
1732 /* Try to open NAME in one of the directories in *DIRSP.
1733 Return the fd, or -1. If successful, fill in *REALNAME
1734 with the malloc'd full directory name. If it turns out
1735 that none of the directories in *DIRSP exists, *DIRSP is
1736 replaced with (void *) -1, and the old value is free()d
1737 if MAY_FREE_DIRS is true. */
1740 open_path (const char *name
, size_t namelen
, int mode
,
1741 struct r_search_path_struct
*sps
, char **realname
,
1742 struct filebuf
*fbp
, struct link_map
*loader
, int whatcode
,
1743 bool *found_other_class
)
1745 struct r_search_path_elem
**dirs
= sps
->dirs
;
1748 const char *current_what
= NULL
;
1751 if (__glibc_unlikely (dirs
== NULL
))
1752 /* We're called before _dl_init_paths when loading the main executable
1753 given on the command line when rtld is run directly. */
1756 buf
= alloca (max_dirnamelen
+ max_capstrlen
+ namelen
);
1759 struct r_search_path_elem
*this_dir
= *dirs
;
1766 /* If we are debugging the search for libraries print the path
1767 now if it hasn't happened now. */
1768 if (__glibc_unlikely (GLRO(dl_debug_mask
) & DL_DEBUG_LIBS
)
1769 && current_what
!= this_dir
->what
)
1771 current_what
= this_dir
->what
;
1772 print_search_path (dirs
, current_what
, this_dir
->where
);
1775 edp
= (char *) __mempcpy (buf
, this_dir
->dirname
, this_dir
->dirnamelen
);
1776 for (cnt
= 0; fd
== -1 && cnt
< ncapstr
; ++cnt
)
1778 /* Skip this directory if we know it does not exist. */
1779 if (this_dir
->status
[cnt
] == nonexisting
)
1783 ((char *) __mempcpy (__mempcpy (edp
, capstr
[cnt
].str
,
1788 /* Print name we try if this is wanted. */
1789 if (__glibc_unlikely (GLRO(dl_debug_mask
) & DL_DEBUG_LIBS
))
1790 _dl_debug_printf (" trying file=%s\n", buf
);
1792 fd
= open_verify (buf
, -1, fbp
, loader
, whatcode
, mode
,
1793 found_other_class
, false);
1794 if (this_dir
->status
[cnt
] == unknown
)
1797 this_dir
->status
[cnt
] = existing
;
1798 /* Do not update the directory information when loading
1799 auditing code. We must try to disturb the program as
1800 little as possible. */
1801 else if (loader
== NULL
1802 || GL(dl_ns
)[loader
->l_ns
]._ns_loaded
->l_auditing
== 0)
1804 /* We failed to open machine dependent library. Let's
1805 test whether there is any directory at all. */
1808 buf
[buflen
- namelen
- 1] = '\0';
1810 if (__xstat64 (_STAT_VER
, buf
, &st
) != 0
1811 || ! S_ISDIR (st
.st_mode
))
1812 /* The directory does not exist or it is no directory. */
1813 this_dir
->status
[cnt
] = nonexisting
;
1815 this_dir
->status
[cnt
] = existing
;
1819 /* Remember whether we found any existing directory. */
1820 here_any
|= this_dir
->status
[cnt
] != nonexisting
;
1822 if (fd
!= -1 && __glibc_unlikely (mode
& __RTLD_SECURE
)
1823 && __libc_enable_secure
)
1825 /* This is an extra security effort to make sure nobody can
1826 preload broken shared objects which are in the trusted
1827 directories and so exploit the bugs. */
1830 if (__fxstat64 (_STAT_VER
, fd
, &st
) != 0
1831 || (st
.st_mode
& S_ISUID
) == 0)
1833 /* The shared object cannot be tested for being SUID
1834 or this bit is not set. In this case we must not
1838 /* We simply ignore the file, signal this by setting
1839 the error value which would have been set by `open'. */
1847 *realname
= (char *) malloc (buflen
);
1848 if (*realname
!= NULL
)
1850 memcpy (*realname
, buf
, buflen
);
1855 /* No memory for the name, we certainly won't be able
1856 to load and link it. */
1861 if (here_any
&& (err
= errno
) != ENOENT
&& err
!= EACCES
)
1862 /* The file exists and is readable, but something went wrong. */
1865 /* Remember whether we found anything. */
1868 while (*++dirs
!= NULL
);
1870 /* Remove the whole path if none of the directories exists. */
1871 if (__glibc_unlikely (! any
))
1873 /* Paths which were allocated using the minimal malloc() in ld.so
1874 must not be freed using the general free() in libc. */
1878 /* rtld_search_dirs and env_path_list are attribute_relro, therefore
1879 avoid writing into it. */
1880 if (sps
!= &rtld_search_dirs
&& sps
!= &env_path_list
)
1881 sps
->dirs
= (void *) -1;
1887 /* Map in the shared object file NAME. */
1891 _dl_map_object (struct link_map
*loader
, const char *name
,
1892 int type
, int trace_mode
, int mode
, Lmid_t nsid
)
1895 const char *origname
= NULL
;
1902 assert (nsid
< GL(dl_nns
));
1904 /* Look for this name among those already loaded. */
1905 for (l
= GL(dl_ns
)[nsid
]._ns_loaded
; l
; l
= l
->l_next
)
1907 /* If the requested name matches the soname of a loaded object,
1908 use that object. Elide this check for names that have not
1910 if (__glibc_unlikely ((l
->l_faked
| l
->l_removed
) != 0))
1912 if (!_dl_name_match_p (name
, l
))
1916 if (__glibc_likely (l
->l_soname_added
)
1917 || l
->l_info
[DT_SONAME
] == NULL
)
1920 soname
= ((const char *) D_PTR (l
, l_info
[DT_STRTAB
])
1921 + l
->l_info
[DT_SONAME
]->d_un
.d_val
);
1922 if (strcmp (name
, soname
) != 0)
1925 /* We have a match on a new name -- cache it. */
1926 add_name_to_object (l
, soname
);
1927 l
->l_soname_added
= 1;
1930 /* We have a match. */
1934 /* Display information if we are debugging. */
1935 if (__glibc_unlikely (GLRO(dl_debug_mask
) & DL_DEBUG_FILES
)
1937 _dl_debug_printf ((mode
& __RTLD_CALLMAP
) == 0
1938 ? "\nfile=%s [%lu]; needed by %s [%lu]\n"
1939 : "\nfile=%s [%lu]; dynamically loaded by %s [%lu]\n",
1940 name
, nsid
, DSO_FILENAME (loader
->l_name
), loader
->l_ns
);
1943 /* Give the auditing libraries a chance to change the name before we
1945 if (__glibc_unlikely (GLRO(dl_naudit
) > 0)
1946 && (loader
== NULL
|| loader
->l_auditing
== 0))
1948 struct audit_ifaces
*afct
= GLRO(dl_audit
);
1949 for (unsigned int cnt
= 0; cnt
< GLRO(dl_naudit
); ++cnt
)
1951 if (afct
->objsearch
!= NULL
)
1953 const char *before
= name
;
1954 name
= afct
->objsearch (name
, &loader
->l_audit
[cnt
].cookie
,
1958 /* Do not try anything further. */
1962 if (before
!= name
&& strcmp (before
, name
) != 0)
1964 if (__glibc_unlikely (GLRO(dl_debug_mask
) & DL_DEBUG_FILES
))
1965 _dl_debug_printf ("audit changed filename %s -> %s\n",
1968 if (origname
== NULL
)
1978 /* Will be true if we found a DSO which is of the other ELF class. */
1979 bool found_other_class
= false;
1981 if (strchr (name
, '/') == NULL
)
1983 /* Search for NAME in several places. */
1985 size_t namelen
= strlen (name
) + 1;
1987 if (__glibc_unlikely (GLRO(dl_debug_mask
) & DL_DEBUG_LIBS
))
1988 _dl_debug_printf ("find library=%s [%lu]; searching\n", name
, nsid
);
1992 /* When the object has the RUNPATH information we don't use any
1994 if (loader
== NULL
|| loader
->l_info
[DT_RUNPATH
] == NULL
)
1996 /* This is the executable's map (if there is one). Make sure that
1997 we do not look at it twice. */
1998 struct link_map
*main_map
= GL(dl_ns
)[LM_ID_BASE
]._ns_loaded
;
1999 bool did_main_map
= false;
2001 /* First try the DT_RPATH of the dependent object that caused NAME
2002 to be loaded. Then that object's dependent, and on up. */
2003 for (l
= loader
; l
; l
= l
->l_loader
)
2004 if (cache_rpath (l
, &l
->l_rpath_dirs
, DT_RPATH
, "RPATH"))
2006 fd
= open_path (name
, namelen
, mode
,
2008 &realname
, &fb
, loader
, LA_SER_RUNPATH
,
2009 &found_other_class
);
2013 did_main_map
|= l
== main_map
;
2016 /* If dynamically linked, try the DT_RPATH of the executable
2017 itself. NB: we do this for lookups in any namespace. */
2018 if (fd
== -1 && !did_main_map
2019 && main_map
!= NULL
&& main_map
->l_type
!= lt_loaded
2020 && cache_rpath (main_map
, &main_map
->l_rpath_dirs
, DT_RPATH
,
2022 fd
= open_path (name
, namelen
, mode
,
2023 &main_map
->l_rpath_dirs
,
2024 &realname
, &fb
, loader
?: main_map
, LA_SER_RUNPATH
,
2025 &found_other_class
);
2028 /* Try the LD_LIBRARY_PATH environment variable. */
2029 if (fd
== -1 && env_path_list
.dirs
!= (void *) -1)
2030 fd
= open_path (name
, namelen
, mode
, &env_path_list
,
2032 loader
?: GL(dl_ns
)[LM_ID_BASE
]._ns_loaded
,
2033 LA_SER_LIBPATH
, &found_other_class
);
2035 /* Look at the RUNPATH information for this binary. */
2036 if (fd
== -1 && loader
!= NULL
2037 && cache_rpath (loader
, &loader
->l_runpath_dirs
,
2038 DT_RUNPATH
, "RUNPATH"))
2039 fd
= open_path (name
, namelen
, mode
,
2040 &loader
->l_runpath_dirs
, &realname
, &fb
, loader
,
2041 LA_SER_RUNPATH
, &found_other_class
);
2045 realname
= _dl_sysdep_open_object (name
, namelen
, &fd
);
2046 if (realname
!= NULL
)
2048 fd
= open_verify (realname
, fd
,
2049 &fb
, loader
?: GL(dl_ns
)[nsid
]._ns_loaded
,
2050 LA_SER_CONFIG
, mode
, &found_other_class
,
2059 && (__glibc_likely ((mode
& __RTLD_SECURE
) == 0)
2060 || ! __libc_enable_secure
)
2061 && __glibc_likely (GLRO(dl_inhibit_cache
) == 0))
2063 /* Check the list of libraries in the file /etc/ld.so.cache,
2064 for compatibility with Linux's ldconfig program. */
2065 char *cached
= _dl_load_cache_lookup (name
);
2069 // XXX Correct to unconditionally default to namespace 0?
2071 ?: GL(dl_ns
)[LM_ID_BASE
]._ns_loaded
2077 /* If the loader has the DF_1_NODEFLIB flag set we must not
2078 use a cache entry from any of these directories. */
2079 if (__glibc_unlikely (l
->l_flags_1
& DF_1_NODEFLIB
))
2081 const char *dirp
= system_dirs
;
2082 unsigned int cnt
= 0;
2086 if (memcmp (cached
, dirp
, system_dirs_len
[cnt
]) == 0)
2088 /* The prefix matches. Don't use the entry. */
2094 dirp
+= system_dirs_len
[cnt
] + 1;
2097 while (cnt
< nsystem_dirs_len
);
2102 fd
= open_verify (cached
, -1,
2103 &fb
, loader
?: GL(dl_ns
)[nsid
]._ns_loaded
,
2104 LA_SER_CONFIG
, mode
, &found_other_class
,
2106 if (__glibc_likely (fd
!= -1))
2115 /* Finally, try the default path. */
2117 && ((l
= loader
?: GL(dl_ns
)[nsid
]._ns_loaded
) == NULL
2118 || __glibc_likely (!(l
->l_flags_1
& DF_1_NODEFLIB
)))
2119 && rtld_search_dirs
.dirs
!= (void *) -1)
2120 fd
= open_path (name
, namelen
, mode
, &rtld_search_dirs
,
2121 &realname
, &fb
, l
, LA_SER_DEFAULT
, &found_other_class
);
2123 /* Add another newline when we are tracing the library loading. */
2124 if (__glibc_unlikely (GLRO(dl_debug_mask
) & DL_DEBUG_LIBS
))
2125 _dl_debug_printf ("\n");
2129 /* The path may contain dynamic string tokens. */
2131 ? expand_dynamic_string_token (loader
, name
, 0)
2133 if (realname
== NULL
)
2137 fd
= open_verify (realname
, -1, &fb
,
2138 loader
?: GL(dl_ns
)[nsid
]._ns_loaded
, 0, mode
,
2139 &found_other_class
, true);
2140 if (__glibc_unlikely (fd
== -1))
2148 /* In case the LOADER information has only been provided to get to
2149 the appropriate RUNPATH/RPATH information we do not need it
2151 if (mode
& __RTLD_CALLMAP
)
2154 if (__glibc_unlikely (fd
== -1))
2157 && __glibc_likely ((GLRO(dl_debug_mask
) & DL_DEBUG_PRELINK
) == 0))
2159 /* We haven't found an appropriate library. But since we
2160 are only interested in the list of libraries this isn't
2161 so severe. Fake an entry with all the information we
2163 static const Elf_Symndx dummy_bucket
= STN_UNDEF
;
2165 /* Allocate a new object map. */
2166 if ((name_copy
= __strdup (name
)) == NULL
2167 || (l
= _dl_new_object (name_copy
, name
, type
, loader
,
2168 mode
, nsid
)) == NULL
)
2171 _dl_signal_error (ENOMEM
, name
, NULL
,
2172 N_("cannot create shared object descriptor"));
2174 /* Signal that this is a faked entry. */
2176 /* Since the descriptor is initialized with zero we do not
2178 l->l_reserved = 0; */
2179 l
->l_buckets
= &dummy_bucket
;
2183 /* Enter the object in the object list. */
2184 _dl_add_to_namespace_list (l
, nsid
);
2188 else if (found_other_class
)
2189 _dl_signal_error (0, name
, NULL
,
2190 ELFW(CLASS
) == ELFCLASS32
2191 ? N_("wrong ELF class: ELFCLASS64")
2192 : N_("wrong ELF class: ELFCLASS32"));
2194 _dl_signal_error (errno
, name
, NULL
,
2195 N_("cannot open shared object file"));
2198 void *stack_end
= __libc_stack_end
;
2199 return _dl_map_object_from_fd (name
, origname
, fd
, &fb
, realname
, loader
,
2200 type
, mode
, &stack_end
, nsid
);
2203 struct add_path_state
2212 add_path (struct add_path_state
*p
, const struct r_search_path_struct
*sps
,
2215 if (sps
->dirs
!= (void *) -1)
2217 struct r_search_path_elem
**dirs
= sps
->dirs
;
2220 const struct r_search_path_elem
*const r
= *dirs
++;
2224 p
->si
->dls_size
+= MAX (2, r
->dirnamelen
);
2228 Dl_serpath
*const sp
= &p
->si
->dls_serpath
[p
->idx
++];
2229 sp
->dls_name
= p
->allocptr
;
2230 if (r
->dirnamelen
< 2)
2231 *p
->allocptr
++ = r
->dirnamelen
? '/' : '.';
2233 p
->allocptr
= __mempcpy (p
->allocptr
,
2234 r
->dirname
, r
->dirnamelen
- 1);
2235 *p
->allocptr
++ = '\0';
2236 sp
->dls_flags
= flags
;
2239 while (*dirs
!= NULL
);
2245 _dl_rtld_di_serinfo (struct link_map
*loader
, Dl_serinfo
*si
, bool counting
)
2253 struct add_path_state p
=
2255 .counting
= counting
,
2258 .allocptr
= (char *) &si
->dls_serpath
[si
->dls_cnt
]
2261 # define add_path(p, sps, flags) add_path(p, sps, 0) /* XXX */
2263 /* When the object has the RUNPATH information we don't use any RPATHs. */
2264 if (loader
->l_info
[DT_RUNPATH
] == NULL
)
2266 /* First try the DT_RPATH of the dependent object that caused NAME
2267 to be loaded. Then that object's dependent, and on up. */
2269 struct link_map
*l
= loader
;
2272 if (cache_rpath (l
, &l
->l_rpath_dirs
, DT_RPATH
, "RPATH"))
2273 add_path (&p
, &l
->l_rpath_dirs
, XXX_RPATH
);
2278 /* If dynamically linked, try the DT_RPATH of the executable itself. */
2279 if (loader
->l_ns
== LM_ID_BASE
)
2281 l
= GL(dl_ns
)[LM_ID_BASE
]._ns_loaded
;
2282 if (l
!= NULL
&& l
->l_type
!= lt_loaded
&& l
!= loader
)
2283 if (cache_rpath (l
, &l
->l_rpath_dirs
, DT_RPATH
, "RPATH"))
2284 add_path (&p
, &l
->l_rpath_dirs
, XXX_RPATH
);
2288 /* Try the LD_LIBRARY_PATH environment variable. */
2289 add_path (&p
, &env_path_list
, XXX_ENV
);
2291 /* Look at the RUNPATH information for this binary. */
2292 if (cache_rpath (loader
, &loader
->l_runpath_dirs
, DT_RUNPATH
, "RUNPATH"))
2293 add_path (&p
, &loader
->l_runpath_dirs
, XXX_RUNPATH
);
2296 Here is where ld.so.cache gets checked, but we don't have
2297 a way to indicate that in the results for Dl_serinfo. */
2299 /* Finally, try the default path. */
2300 if (!(loader
->l_flags_1
& DF_1_NODEFLIB
))
2301 add_path (&p
, &rtld_search_dirs
, XXX_default
);
2304 /* Count the struct size before the string area, which we didn't
2305 know before we completed dls_cnt. */
2306 si
->dls_size
+= (char *) &si
->dls_serpath
[si
->dls_cnt
] - (char *) si
;