1 /* Copyright (C) 1999-2021 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published
6 by the Free Software Foundation; version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, see <https://www.gnu.org/licenses/>. */
17 #define PROCINFO_CLASS static
30 #include <stdio_ext.h>
35 #include <sys/fcntl.h>
38 #include <sys/types.h>
44 #include <dl-hwcaps.h>
45 #include <dl-is_dso.h>
47 #include <dl-procinfo.h>
49 /* This subpath in search path entries is always supported and
50 included in the cache for backwards compatibility. */
51 #define TLS_SUBPATH "tls"
53 /* The MSB of the hwcap field is set for objects in TLS_SUBPATH
54 directories. There is always TLS support in glibc, so the dynamic
55 loader does not check the bit directly. But more hwcap bits make a
56 an object more preferred, so the bit still has meaning. */
57 #define TLS_HWCAP_BIT 63
60 # define LD_SO_CONF SYSCONFDIR "/ld.so.conf"
63 /* Get libc version number. */
66 #define PACKAGE _libc_intl_domainname
74 {"libc4", FLAG_LIBC4
},
75 {"libc5", FLAG_ELF_LIBC5
},
76 {"libc6", FLAG_ELF_LIBC6
},
77 {"glibc2", FLAG_ELF_LIBC6
}
81 /* List of directories to handle. */
88 const char *from_file
;
91 /* Non-NULL for subdirectories under a glibc-hwcaps subdirectory. */
92 struct glibc_hwcaps_subdirectory
*hwcaps
;
94 struct dir_entry
*next
;
97 /* The list is unsorted, contains no duplicates. Entries are added at
99 static struct dir_entry
*dir_entries
;
101 /* Flags for different options. */
103 static int opt_print_cache
;
108 /* Format to support. */
109 enum opt_format opt_format
= opt_format_new
;
112 static int opt_build_cache
= 1;
114 /* Enable symbolic link processing. If set, create or update symbolic
115 links, and remove stale symbolic links. */
116 static int opt_link
= 1;
118 /* Only process directories specified on the command line. */
119 static int opt_only_cline
;
121 /* Path to root for chroot. */
122 static char *opt_chroot
;
124 /* Manually link given shared libraries. */
125 static int opt_manual_link
;
127 /* Should we ignore an old auxiliary cache file? */
128 static int opt_ignore_aux_cache
;
130 /* Cache file to use. */
131 static char *cache_file
;
133 /* Configuration file. */
134 static const char *config_file
;
136 /* Mask to use for important hardware capabilities. */
137 static unsigned long int hwcap_mask
= HWCAP_IMPORTANT
;
139 /* Name and version of program. */
140 static void print_version (FILE *stream
, struct argp_state
*state
);
141 void (*argp_program_version_hook
) (FILE *, struct argp_state
*)
144 /* Function to print some extra text in the help message. */
145 static char *more_help (int key
, const char *text
, void *input
);
147 /* Definitions of arguments for argp functions. */
148 static const struct argp_option options
[] =
150 { "print-cache", 'p', NULL
, 0, N_("Print cache"), 0},
151 { "verbose", 'v', NULL
, 0, N_("Generate verbose messages"), 0},
152 { NULL
, 'N', NULL
, 0, N_("Don't build cache"), 0},
153 { NULL
, 'X', NULL
, 0, N_("Don't update symbolic links"), 0},
154 { NULL
, 'r', N_("ROOT"), 0, N_("Change to and use ROOT as root directory"), 0},
155 { NULL
, 'C', N_("CACHE"), 0, N_("Use CACHE as cache file"), 0},
156 { NULL
, 'f', N_("CONF"), 0, N_("Use CONF as configuration file"), 0},
157 { NULL
, 'n', NULL
, 0, N_("Only process directories specified on the command line. Don't build cache."), 0},
158 { NULL
, 'l', NULL
, 0, N_("Manually link individual libraries."), 0},
159 { "format", 'c', N_("FORMAT"), 0, N_("Format to use: new (default), old, or compat"), 0},
160 { "ignore-aux-cache", 'i', NULL
, 0, N_("Ignore auxiliary cache file"), 0},
161 { NULL
, 0, NULL
, 0, NULL
, 0 }
164 #define PROCINFO_CLASS static
165 #include <dl-procinfo.c>
167 /* Short description of program. */
168 static const char doc
[] = N_("Configure Dynamic Linker Run Time Bindings.");
170 /* Prototype for option handler. */
171 static error_t
parse_opt (int key
, char *arg
, struct argp_state
*state
);
173 /* Data structure to communicate with argp functions. */
174 static struct argp argp
=
176 options
, parse_opt
, NULL
, doc
, NULL
, more_help
, NULL
179 /* Check if string corresponds to an important hardware capability or
182 is_hwcap_platform (const char *name
)
184 int hwcap_idx
= _dl_string_hwcap (name
);
186 /* Is this a normal hwcap for the machine like "fpu?" */
187 if (hwcap_idx
!= -1 && ((1 << hwcap_idx
) & hwcap_mask
))
190 /* Is this a platform pseudo-hwcap like "i686?" */
191 hwcap_idx
= _dl_string_platform (name
);
195 /* Backwards-compatibility for the "tls" subdirectory. */
196 if (strcmp (name
, TLS_SUBPATH
) == 0)
202 /* Get hwcap (including platform) encoding of path. */
204 path_hwcap (const char *path
)
206 char *str
= xstrdup (path
);
217 /* Search pathname from the end and check for hwcap strings. */
220 ptr
= strrchr (str
, '/');
225 h
= _dl_string_hwcap (ptr
+ 1);
227 if (h
== (uint64_t) -1)
229 h
= _dl_string_platform (ptr
+ 1);
230 if (h
== (uint64_t) -1)
232 if (strcmp (ptr
+ 1, TLS_SUBPATH
) == 0)
240 /* Search the next part of the path. */
248 /* Handle program arguments. */
250 parse_opt (int key
, char *arg
, struct argp_state
*state
)
256 /* Ignore auxiliary cache since we use non-standard cache. */
257 opt_ignore_aux_cache
= 1;
263 opt_ignore_aux_cache
= 1;
288 if (strcmp (arg
, "old") == 0)
289 opt_format
= opt_format_old
;
290 else if (strcmp (arg
, "compat") == 0)
291 opt_format
= opt_format_compat
;
292 else if (strcmp (arg
, "new") == 0)
293 opt_format
= opt_format_new
;
296 return ARGP_ERR_UNKNOWN
;
302 /* Print bug-reporting information in the help message. */
304 more_help (int key
, const char *text
, void *input
)
309 case ARGP_KEY_HELP_EXTRA
:
310 /* We print some extra information. */
311 if (asprintf (&tp
, gettext ("\
312 For bug reporting instructions, please see:\n\
313 %s.\n"), REPORT_BUGS_TO
) < 0)
319 return (char *) text
;
322 /* Print the version information. */
324 print_version (FILE *stream
, struct argp_state
*state
)
326 fprintf (stream
, "ldconfig %s%s\n", PKGVERSION
, VERSION
);
327 fprintf (stream
, gettext ("\
328 Copyright (C) %s Free Software Foundation, Inc.\n\
329 This is free software; see the source for copying conditions. There is NO\n\
330 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
332 fprintf (stream
, gettext ("Written by %s.\n"),
336 /* Allocate a new subdirectory with full path PATH under ENTRY, using
337 inode data from *ST. */
338 static struct dir_entry
*
339 new_sub_entry (const struct dir_entry
*entry
, const char *path
,
340 const struct stat64
*st
)
342 struct dir_entry
*new_entry
= xmalloc (sizeof (struct dir_entry
));
343 new_entry
->from_file
= entry
->from_file
;
344 new_entry
->from_line
= entry
->from_line
;
345 new_entry
->path
= xstrdup (path
);
346 new_entry
->flag
= entry
->flag
;
347 new_entry
->hwcaps
= NULL
;
348 new_entry
->next
= NULL
;
349 new_entry
->ino
= st
->st_ino
;
350 new_entry
->dev
= st
->st_dev
;
354 /* Add a single directory entry. Return true if the directory is
355 actually added (because it is not a duplicate). */
357 add_single_dir (struct dir_entry
*entry
, int verbose
)
359 struct dir_entry
*ptr
, *prev
;
366 /* Check for duplicates. */
367 if (ptr
->ino
== entry
->ino
&& ptr
->dev
== entry
->dev
)
369 if (opt_verbose
&& verbose
)
371 error (0, 0, _("Path `%s' given more than once"), entry
->path
);
372 fprintf (stderr
, _("(from %s:%d and %s:%d)\n"),
373 entry
->from_file
, entry
->from_line
,
374 ptr
->from_file
, ptr
->from_line
);
376 /* Use the newer information. */
377 ptr
->flag
= entry
->flag
;
386 /* Is this the first entry? */
387 if (ptr
== NULL
&& dir_entries
== NULL
)
389 else if (ptr
== NULL
)
394 /* Check if PATH contains a "glibc-hwcaps" subdirectory. If so, queue
395 its subdirectories for glibc-hwcaps processing. */
397 add_glibc_hwcaps_subdirectories (struct dir_entry
*entry
, const char *path
)
399 /* glibc-hwcaps subdirectories do not nest. */
400 assert (entry
->hwcaps
== NULL
);
403 if (asprintf (&glibc_hwcaps
, "%s/" GLIBC_HWCAPS_SUBDIRECTORY
, path
) < 0)
404 error (EXIT_FAILURE
, errno
, _("Could not form glibc-hwcaps path"));
406 DIR *dir
= opendir (glibc_hwcaps
);
412 struct dirent64
*e
= readdir64 (dir
);
418 error (EXIT_FAILURE
, errno
, _("Listing directory %s"), path
);
421 /* Ignore hidden subdirectories, including "." and "..", and
422 regular files. File names containing a ':' cannot be
423 looked up by the dynamic loader, so skip those as
425 if (e
->d_name
[0] == '.' || e
->d_type
== DT_REG
426 || strchr (e
->d_name
, ':') != NULL
)
429 /* See if this entry eventually resolves to a directory. */
431 if (fstatat64 (dirfd (dir
), e
->d_name
, &st
, 0) < 0)
432 /* Ignore unreadable entries. */
435 if (S_ISDIR (st
.st_mode
))
437 /* This is a directory, so it needs to be scanned for
438 libraries, associated with the hwcaps implied by the
439 subdirectory name. */
441 if (asprintf (&new_path
, "%s/" GLIBC_HWCAPS_SUBDIRECTORY
"/%s",
442 /* Use non-canonicalized path here. */
443 entry
->path
, e
->d_name
) < 0)
444 error (EXIT_FAILURE
, errno
,
445 _("Could not form glibc-hwcaps path"));
446 struct dir_entry
*new_entry
= new_sub_entry (entry
, new_path
,
449 new_entry
->hwcaps
= new_glibc_hwcaps_subdirectory (e
->d_name
);
450 add_single_dir (new_entry
, 0);
460 /* Add one directory to the list of directories to process. */
462 add_dir_1 (const char *line
, const char *from_file
, int from_line
)
465 struct dir_entry
*entry
= xmalloc (sizeof (struct dir_entry
));
466 entry
->hwcaps
= NULL
;
469 entry
->from_file
= strdup (from_file
);
470 entry
->from_line
= from_line
;
472 /* Search for an '=' sign. */
473 entry
->path
= xstrdup (line
);
474 char *equal_sign
= strchr (entry
->path
, '=');
479 entry
->flag
= FLAG_ANY
;
480 for (i
= 0; i
< sizeof (lib_types
) / sizeof (lib_types
[0]); ++i
)
481 if (strcmp (equal_sign
, lib_types
[i
].name
) == 0)
483 entry
->flag
= lib_types
[i
].flag
;
486 if (entry
->flag
== FLAG_ANY
)
487 error (0, 0, _("%s is not a known library type"), equal_sign
);
491 entry
->flag
= FLAG_ANY
;
494 /* Canonify path: for now only remove leading and trailing
495 whitespace and the trailing slashes. */
496 i
= strlen (entry
->path
);
498 while (i
> 0 && isspace (entry
->path
[i
- 1]))
499 entry
->path
[--i
] = '\0';
501 while (i
> 0 && entry
->path
[i
- 1] == '/')
502 entry
->path
[--i
] = '\0';
511 char *path
= entry
->path
;
512 if (opt_chroot
!= NULL
)
513 path
= chroot_canon (opt_chroot
, path
);
515 struct stat64 stat_buf
;
516 if (path
== NULL
|| stat64 (path
, &stat_buf
))
519 error (0, errno
, _("Can't stat %s"), entry
->path
);
525 entry
->ino
= stat_buf
.st_ino
;
526 entry
->dev
= stat_buf
.st_dev
;
528 if (add_single_dir (entry
, 1))
529 /* Add glibc-hwcaps subdirectories if present. */
530 add_glibc_hwcaps_subdirectories (entry
, path
);
533 if (opt_chroot
!= NULL
)
538 add_dir (const char *line
)
540 add_dir_1 (line
, "<builtin>", 0);
544 chroot_stat (const char *real_path
, const char *path
, struct stat64
*st
)
550 return stat64 (real_path
, st
);
552 ret
= lstat64 (real_path
, st
);
553 if (ret
|| !S_ISLNK (st
->st_mode
))
556 canon_path
= chroot_canon (opt_chroot
, path
);
557 if (canon_path
== NULL
)
560 ret
= stat64 (canon_path
, st
);
565 /* Create a symbolic link from soname to libname in directory path. */
567 create_links (const char *real_path
, const char *path
, const char *libname
,
570 char *full_libname
, *full_soname
;
571 char *real_full_libname
, *real_full_soname
;
572 struct stat64 stat_lib
, stat_so
, lstat_so
;
575 /* XXX: The logics in this function should be simplified. */
577 /* Get complete path. */
578 full_libname
= alloca (strlen (path
) + strlen (libname
) + 2);
579 full_soname
= alloca (strlen (path
) + strlen (soname
) + 2);
580 sprintf (full_libname
, "%s/%s", path
, libname
);
581 sprintf (full_soname
, "%s/%s", path
, soname
);
582 if (opt_chroot
!= NULL
)
584 real_full_libname
= alloca (strlen (real_path
) + strlen (libname
) + 2);
585 real_full_soname
= alloca (strlen (real_path
) + strlen (soname
) + 2);
586 sprintf (real_full_libname
, "%s/%s", real_path
, libname
);
587 sprintf (real_full_soname
, "%s/%s", real_path
, soname
);
591 real_full_libname
= full_libname
;
592 real_full_soname
= full_soname
;
595 /* Does soname already exist and point to the right library? */
596 if (chroot_stat (real_full_soname
, full_soname
, &stat_so
) == 0)
598 if (chroot_stat (real_full_libname
, full_libname
, &stat_lib
))
600 error (0, 0, _("Can't stat %s\n"), full_libname
);
603 if (stat_lib
.st_dev
== stat_so
.st_dev
604 && stat_lib
.st_ino
== stat_so
.st_ino
)
605 /* Link is already correct. */
607 else if (lstat64 (full_soname
, &lstat_so
) == 0
608 && !S_ISLNK (lstat_so
.st_mode
))
610 error (0, 0, _("%s is not a symbolic link\n"), full_soname
);
615 else if (lstat64 (real_full_soname
, &lstat_so
) != 0
616 || !S_ISLNK (lstat_so
.st_mode
))
617 /* Unless it is a stale symlink, there is no need to remove. */
621 printf ("\t%s -> %s", soname
, libname
);
623 if (do_link
&& opt_link
)
625 /* Remove old link. */
627 if (unlink (real_full_soname
))
629 error (0, 0, _("Can't unlink %s"), full_soname
);
632 /* Create symbolic link. */
633 if (do_link
&& symlink (libname
, real_full_soname
))
635 error (0, 0, _("Can't link %s to %s"), full_soname
, libname
);
641 fputs (_(" (changed)\n"), stdout
);
643 fputs (_(" (SKIPPED)\n"), stdout
);
646 else if (opt_verbose
)
647 fputs ("\n", stdout
);
650 /* Manually link the given library. */
652 manual_link (char *library
)
659 struct stat64 stat_buf
;
661 unsigned int osversion
;
662 unsigned int isa_level
;
664 /* Prepare arguments for create_links call. Split library name in
665 directory and filename first. Since path is allocated, we've got
666 to be careful to free at the end. */
667 path
= xstrdup (library
);
668 libname
= strrchr (path
, '/');
672 /* Successfully split names. Check if path is just "/" to avoid
676 libname
= library
+ 1;
677 path
= xrealloc (path
, 2);
688 /* There's no path, construct one. */
690 path
= xrealloc (path
, 2);
694 if (opt_chroot
!= NULL
)
696 real_path
= chroot_canon (opt_chroot
, path
);
697 if (real_path
== NULL
)
699 error (0, errno
, _("Can't find %s"), path
);
703 real_library
= alloca (strlen (real_path
) + strlen (libname
) + 2);
704 sprintf (real_library
, "%s/%s", real_path
, libname
);
709 real_library
= library
;
712 /* Do some sanity checks first. */
713 if (lstat64 (real_library
, &stat_buf
))
715 error (0, errno
, _("Cannot lstat %s"), library
);
718 /* We don't want links here! */
719 else if (!S_ISREG (stat_buf
.st_mode
))
721 error (0, 0, _("Ignored file %s since it is not a regular file."),
726 if (process_file (real_library
, library
, libname
, &flag
, &osversion
,
727 &isa_level
, &soname
, 0, &stat_buf
))
729 error (0, 0, _("No link created since soname could not be found for %s"),
734 soname
= implicit_soname (libname
, flag
);
735 create_links (real_path
, path
, libname
, soname
);
739 if (path
!= real_path
)
744 /* Read a whole directory and search for libraries.
745 The purpose is two-fold:
746 - search for libraries which will be added to the cache
747 - create symbolic links to the soname for each library
749 This has to be done separatly for each directory.
751 To keep track of which libraries to add to the cache and which
752 links to create, we save a list of all libraries.
754 The algorithm is basically:
755 for all libraries in the directory do
756 get soname of library
757 if soname is already in list
758 if new library is newer, replace entry
759 otherwise ignore this library
760 otherwise add library to list
762 For example, if the two libraries libxy.so.1.1 and libxy.so.1.2
763 exist and both have the same soname, e.g. libxy.so, a symbolic link
764 is created from libxy.so.1.2 (the newer one) to libxy.so.
765 libxy.so.1.2 and libxy.so are added to the cache - but not
768 /* Information for one library. */
775 unsigned int osversion
;
776 unsigned int isa_level
;
777 struct dlib_entry
*next
;
782 search_dir (const struct dir_entry
*entry
)
785 if (entry
->hwcaps
== NULL
)
787 hwcap
= path_hwcap (entry
->path
);
791 printf ("%s: (hwcap: %#.16" PRIx64
")", entry
->path
, hwcap
);
793 printf ("%s:", entry
->path
);
800 printf ("%s: (hwcap: \"%s\")", entry
->path
,
801 glibc_hwcaps_subdirectory_name (entry
->hwcaps
));
804 printf (_(" (from %s:%d)\n"), entry
->from_file
, entry
->from_line
);
807 char *real_file_name
;
808 size_t real_file_name_len
;
809 size_t file_name_len
= PATH_MAX
;
810 char *file_name
= alloca (file_name_len
);
811 if (opt_chroot
!= NULL
)
813 dir_name
= chroot_canon (opt_chroot
, entry
->path
);
814 real_file_name_len
= PATH_MAX
;
815 real_file_name
= alloca (real_file_name_len
);
819 dir_name
= entry
->path
;
820 real_file_name_len
= 0;
821 real_file_name
= file_name
;
825 if (dir_name
== NULL
|| (dir
= opendir (dir_name
)) == NULL
)
828 error (0, errno
, _("Can't open directory %s"), entry
->path
);
829 if (opt_chroot
!= NULL
&& dir_name
!= NULL
)
834 struct dirent64
*direntry
;
835 struct dlib_entry
*dlibs
= NULL
;
836 while ((direntry
= readdir64 (dir
)) != NULL
)
839 /* We only look at links and regular files. */
840 if (direntry
->d_type
!= DT_UNKNOWN
841 && direntry
->d_type
!= DT_LNK
842 && direntry
->d_type
!= DT_REG
843 && direntry
->d_type
!= DT_DIR
)
845 /* Does this file look like a shared library or is it a hwcap
846 subdirectory (if not already processing a glibc-hwcaps
847 subdirectory)? The dynamic linker is also considered as
849 if (!_dl_is_dso (direntry
->d_name
)
850 && (direntry
->d_type
== DT_REG
851 || (entry
->hwcaps
== NULL
852 && !is_hwcap_platform (direntry
->d_name
))))
855 size_t len
= strlen (direntry
->d_name
);
856 /* Skip temporary files created by the prelink program. Files with
857 names like these are never really DSOs we want to look at. */
858 if (len
>= sizeof (".#prelink#") - 1)
860 if (strcmp (direntry
->d_name
+ len
- sizeof (".#prelink#") + 1,
863 if (len
>= sizeof (".#prelink#.XXXXXX") - 1
864 && memcmp (direntry
->d_name
+ len
- sizeof (".#prelink#.XXXXXX")
865 + 1, ".#prelink#.", sizeof (".#prelink#.") - 1) == 0)
868 len
+= strlen (entry
->path
) + 2;
869 if (len
> file_name_len
)
872 file_name
= alloca (file_name_len
);
874 real_file_name
= file_name
;
876 sprintf (file_name
, "%s/%s", entry
->path
, direntry
->d_name
);
877 if (opt_chroot
!= NULL
)
879 len
= strlen (dir_name
) + strlen (direntry
->d_name
) + 2;
880 if (len
> real_file_name_len
)
882 real_file_name_len
= len
;
883 real_file_name
= alloca (real_file_name_len
);
885 sprintf (real_file_name
, "%s/%s", dir_name
, direntry
->d_name
);
888 struct stat64 lstat_buf
;
889 /* We optimize and try to do the lstat call only if needed. */
890 if (direntry
->d_type
!= DT_UNKNOWN
)
891 lstat_buf
.st_mode
= DTTOIF (direntry
->d_type
);
893 if (__glibc_unlikely (lstat64 (real_file_name
, &lstat_buf
)))
895 error (0, errno
, _("Cannot lstat %s"), file_name
);
899 struct stat64 stat_buf
;
901 int is_link
= S_ISLNK (lstat_buf
.st_mode
);
904 /* In case of symlink, we check if the symlink refers to
906 char *target_name
= real_file_name
;
907 if (opt_chroot
!= NULL
)
909 target_name
= chroot_canon (opt_chroot
, file_name
);
910 if (target_name
== NULL
)
912 if (strstr (file_name
, ".so") == NULL
)
913 error (0, 0, _("Input file %s not found.\n"), file_name
);
917 if (__glibc_unlikely (stat64 (target_name
, &stat_buf
)))
920 error (0, errno
, _("Cannot stat %s"), file_name
);
922 /* Remove stale symlinks. */
923 if (opt_link
&& strstr (direntry
->d_name
, ".so."))
924 unlink (real_file_name
);
926 if (opt_chroot
!= NULL
)
932 if (opt_chroot
!= NULL
)
935 is_dir
= S_ISDIR (stat_buf
.st_mode
);
937 /* lstat_buf is later stored, update contents. */
938 lstat_buf
.st_dev
= stat_buf
.st_dev
;
939 lstat_buf
.st_ino
= stat_buf
.st_ino
;
940 lstat_buf
.st_size
= stat_buf
.st_size
;
941 lstat_buf
.st_ctime
= stat_buf
.st_ctime
;
944 is_dir
= S_ISDIR (lstat_buf
.st_mode
);
946 /* No descending into subdirectories if this directory is a
947 glibc-hwcaps subdirectory (which are not recursive). */
948 if (entry
->hwcaps
== NULL
949 && is_dir
&& is_hwcap_platform (direntry
->d_name
))
952 && direntry
->d_type
!= DT_UNKNOWN
953 && __builtin_expect (lstat64 (real_file_name
, &lstat_buf
), 0))
955 error (0, errno
, _("Cannot lstat %s"), file_name
);
959 /* Handle subdirectory later. */
960 struct dir_entry
*new_entry
= new_sub_entry (entry
, file_name
,
962 add_single_dir (new_entry
, 0);
965 else if (!S_ISREG (lstat_buf
.st_mode
) && !is_link
)
969 if (opt_chroot
!= NULL
&& is_link
)
971 real_name
= chroot_canon (opt_chroot
, file_name
);
972 if (real_name
== NULL
)
974 if (strstr (file_name
, ".so") == NULL
)
975 error (0, 0, _("Input file %s not found.\n"), file_name
);
980 real_name
= real_file_name
;
982 /* Call lstat64 if not done yet. */
984 && direntry
->d_type
!= DT_UNKNOWN
985 && __builtin_expect (lstat64 (real_file_name
, &lstat_buf
), 0))
987 error (0, errno
, _("Cannot lstat %s"), file_name
);
991 /* First search whether the auxiliary cache contains this
992 library already and it's not changed. */
994 unsigned int osversion
;
995 unsigned int isa_level
;
996 if (!search_aux_cache (&lstat_buf
, &flag
, &osversion
, &isa_level
,
999 if (process_file (real_name
, file_name
, direntry
->d_name
, &flag
,
1000 &osversion
, &isa_level
, &soname
, is_link
,
1003 if (real_name
!= real_file_name
)
1007 else if (opt_build_cache
)
1008 add_to_aux_cache (&lstat_buf
, flag
, osversion
, isa_level
,
1013 soname
= implicit_soname (direntry
->d_name
, flag
);
1015 /* A link may just point to itself. */
1018 /* If the path the link points to isn't its soname or it is not
1019 the .so symlink for ld(1), we treat it as a normal file.
1021 You should always do this:
1023 libfoo.so -> SONAME -> Arbitrary package-chosen name.
1025 e.g. libfoo.so -> libfoo.so.1 -> libfooimp.so.9.99.
1026 Given a SONAME of libfoo.so.1.
1028 You should *never* do this:
1030 libfoo.so -> libfooimp.so.9.99
1032 If you do, and your SONAME is libfoo.so.1, then libfoo.so
1033 fails to point at the SONAME. In that case ldconfig may consider
1034 libfoo.so as another implementation of SONAME and will create
1035 symlinks against it causing problems when you try to upgrade
1036 or downgrade. The problems will arise because ldconfig will,
1037 depending on directory ordering, creat symlinks against libfoo.so
1038 e.g. libfoo.so.1.2 -> libfoo.so, but when libfoo.so is removed
1039 (typically by the removal of a development pacakge not required
1040 for the runtime) it will break the libfoo.so.1.2 symlink and the
1041 application will fail to start. */
1042 const char *real_base_name
= basename (real_file_name
);
1044 if (strcmp (real_base_name
, soname
) != 0)
1046 len
= strlen (real_base_name
);
1047 if (len
< strlen (".so")
1048 || strcmp (real_base_name
+ len
- strlen (".so"), ".so") != 0
1049 || strncmp (real_base_name
, soname
, len
) != 0)
1054 if (real_name
!= real_file_name
)
1060 soname
= xstrdup (direntry
->d_name
);
1063 if (flag
== FLAG_ELF
1064 && (entry
->flag
== FLAG_ELF_LIBC5
1065 || entry
->flag
== FLAG_ELF_LIBC6
))
1068 /* Some sanity checks to print warnings. */
1071 if (flag
== FLAG_ELF_LIBC5
&& entry
->flag
!= FLAG_ELF_LIBC5
1072 && entry
->flag
!= FLAG_ANY
)
1073 error (0, 0, _("libc5 library %s in wrong directory"), file_name
);
1074 if (flag
== FLAG_ELF_LIBC6
&& entry
->flag
!= FLAG_ELF_LIBC6
1075 && entry
->flag
!= FLAG_ANY
)
1076 error (0, 0, _("libc6 library %s in wrong directory"), file_name
);
1077 if (flag
== FLAG_LIBC4
&& entry
->flag
!= FLAG_LIBC4
1078 && entry
->flag
!= FLAG_ANY
)
1079 error (0, 0, _("libc4 library %s in wrong directory"), file_name
);
1082 /* Add library to list. */
1083 struct dlib_entry
*dlib_ptr
;
1084 for (dlib_ptr
= dlibs
; dlib_ptr
!= NULL
; dlib_ptr
= dlib_ptr
->next
)
1086 /* Is soname already in list? */
1087 if (strcmp (dlib_ptr
->soname
, soname
) == 0)
1089 /* Prefer a file to a link, otherwise check which one
1091 if ((!is_link
&& dlib_ptr
->is_link
)
1092 || (is_link
== dlib_ptr
->is_link
1093 && _dl_cache_libcmp (dlib_ptr
->name
, direntry
->d_name
) < 0))
1095 /* It's newer - add it. */
1096 /* Flag should be the same - sanity check. */
1097 if (dlib_ptr
->flag
!= flag
)
1099 if (dlib_ptr
->flag
== FLAG_ELF
1100 && (flag
== FLAG_ELF_LIBC5
|| flag
== FLAG_ELF_LIBC6
))
1101 dlib_ptr
->flag
= flag
;
1102 else if ((dlib_ptr
->flag
== FLAG_ELF_LIBC5
1103 || dlib_ptr
->flag
== FLAG_ELF_LIBC6
)
1104 && flag
== FLAG_ELF
)
1105 dlib_ptr
->flag
= flag
;
1107 error (0, 0, _("libraries %s and %s in directory %s have same soname but different type."),
1108 dlib_ptr
->name
, direntry
->d_name
,
1111 free (dlib_ptr
->name
);
1112 dlib_ptr
->name
= xstrdup (direntry
->d_name
);
1113 dlib_ptr
->is_link
= is_link
;
1114 dlib_ptr
->osversion
= osversion
;
1115 dlib_ptr
->isa_level
= isa_level
;
1117 /* Don't add this library, abort loop. */
1118 /* Also free soname, since it's dynamically allocated. */
1123 /* Add the library if it's not already in. */
1124 if (dlib_ptr
== NULL
)
1126 dlib_ptr
= (struct dlib_entry
*)xmalloc (sizeof (struct dlib_entry
));
1127 dlib_ptr
->name
= xstrdup (direntry
->d_name
);
1128 dlib_ptr
->soname
= soname
;
1129 dlib_ptr
->flag
= flag
;
1130 dlib_ptr
->is_link
= is_link
;
1131 dlib_ptr
->osversion
= osversion
;
1132 dlib_ptr
->isa_level
= isa_level
;
1133 /* Add at head of list. */
1134 dlib_ptr
->next
= dlibs
;
1141 /* Now dlibs contains a list of all libs - add those to the cache
1142 and created all symbolic links. */
1143 struct dlib_entry
*dlib_ptr
;
1144 for (dlib_ptr
= dlibs
; dlib_ptr
!= NULL
; dlib_ptr
= dlib_ptr
->next
)
1146 /* The cached file name is the soname for non-glibc-hwcaps
1147 subdirectories (relying on symbolic links; this helps with
1148 library updates that change the file name), and the actual
1149 file for glibc-hwcaps subdirectories. */
1150 const char *filename
;
1151 if (entry
->hwcaps
== NULL
)
1153 /* Don't create links to links. */
1154 if (dlib_ptr
->is_link
== 0)
1155 create_links (dir_name
, entry
->path
, dlib_ptr
->name
,
1157 filename
= dlib_ptr
->soname
;
1161 /* Do not create links in glibc-hwcaps subdirectories, but
1162 still log the cache addition. */
1164 printf ("\t%s -> %s\n", dlib_ptr
->soname
, dlib_ptr
->name
);
1165 filename
= dlib_ptr
->name
;
1167 if (opt_build_cache
)
1168 add_to_cache (entry
->path
, filename
, dlib_ptr
->soname
,
1169 dlib_ptr
->flag
, dlib_ptr
->osversion
,
1170 dlib_ptr
->isa_level
, hwcap
, entry
->hwcaps
);
1173 /* Free all resources. */
1177 free (dlib_ptr
->soname
);
1178 free (dlib_ptr
->name
);
1179 dlibs
= dlibs
->next
;
1183 if (opt_chroot
!= NULL
&& dir_name
!= NULL
)
1187 /* Search through all libraries. */
1191 struct dir_entry
*entry
;
1193 for (entry
= dir_entries
; entry
!= NULL
; entry
= entry
->next
)
1196 /* Free all allocated memory. */
1199 entry
= dir_entries
;
1200 dir_entries
= dir_entries
->next
;
1207 static void parse_conf_include (const char *config_file
, unsigned int lineno
,
1208 bool do_chroot
, const char *pattern
);
1210 /* Parse configuration file. */
1212 parse_conf (const char *filename
, bool do_chroot
)
1218 unsigned int lineno
;
1220 if (do_chroot
&& opt_chroot
)
1222 canon
= chroot_canon (opt_chroot
, filename
);
1224 file
= fopen (canon
, "r");
1231 file
= fopen (filename
, "r");
1236 if (errno
!= ENOENT
)
1237 error (0, errno
, _("\
1238 Warning: ignoring configuration file that cannot be opened: %s"),
1240 if (canon
!= filename
)
1241 free ((char *) canon
);
1245 /* No threads use this stream. */
1246 __fsetlocking (file
, FSETLOCKING_BYCALLER
);
1248 if (canon
!= filename
)
1249 free ((char *) canon
);
1254 ssize_t n
= getline (&line
, &len
, file
);
1259 if (line
[n
- 1] == '\n')
1262 /* Because the file format does not know any form of quoting we
1263 can search forward for the next '#' character and if found
1264 make it terminating the line. */
1265 *strchrnul (line
, '#') = '\0';
1267 /* Remove leading whitespace. NUL is no whitespace character. */
1269 while (isspace (*cp
))
1272 /* If the line is blank it is ignored. */
1276 if (!strncmp (cp
, "include", 7) && isblank (cp
[7]))
1280 while ((dir
= strsep (&cp
, " \t")) != NULL
)
1282 parse_conf_include (filename
, lineno
, do_chroot
, dir
);
1284 else if (!strncasecmp (cp
, "hwcap", 5) && isblank (cp
[5]))
1285 error (0, 0, _("%s:%u: hwcap directive ignored"), filename
, lineno
);
1287 add_dir_1 (cp
, filename
, lineno
);
1289 while (!feof_unlocked (file
));
1291 /* Free buffer and close file. */
1296 /* Handle one word in an `include' line, a glob pattern of additional
1297 config files to read. */
1299 parse_conf_include (const char *config_file
, unsigned int lineno
,
1300 bool do_chroot
, const char *pattern
)
1302 if (opt_chroot
!= NULL
&& pattern
[0] != '/')
1303 error (EXIT_FAILURE
, 0,
1304 _("need absolute file name for configuration file when using -r"));
1307 if (pattern
[0] != '/' && strchr (config_file
, '/') != NULL
)
1309 if (asprintf (©
, "%s/%s", dirname (strdupa (config_file
)),
1311 error (EXIT_FAILURE
, 0, _("memory exhausted"));
1317 if (do_chroot
&& opt_chroot
)
1319 char *canon
= chroot_canon (opt_chroot
, pattern
);
1322 result
= glob64 (canon
, 0, NULL
, &gl
);
1326 result
= glob64 (pattern
, 0, NULL
, &gl
);
1331 for (size_t i
= 0; i
< gl
.gl_pathc
; ++i
)
1332 parse_conf (gl
.gl_pathv
[i
], false);
1344 error (0, errno
, _("%s:%u: cannot read directory %s"),
1345 config_file
, lineno
, pattern
);
1356 /* Honour LD_HWCAP_MASK. */
1360 char *mask
= getenv ("LD_HWCAP_MASK");
1363 hwcap_mask
= strtoul (mask
, NULL
, 0);
1368 main (int argc
, char **argv
)
1370 /* Set locale via LC_ALL. */
1371 setlocale (LC_ALL
, "");
1373 /* But keep the C collation. That way `include' directives using
1374 globbing patterns are processed in a locale-independent order. */
1375 setlocale (LC_COLLATE
, "C");
1377 /* Set the text message domain. */
1378 textdomain (_libc_intl_domainname
);
1380 /* Parse and process arguments. */
1382 argp_parse (&argp
, argc
, argv
, 0, &remaining
, NULL
);
1384 /* Remaining arguments are additional directories if opt_manual_link
1386 if (remaining
!= argc
&& !opt_manual_link
)
1389 for (i
= remaining
; i
< argc
; ++i
)
1390 if (opt_build_cache
&& argv
[i
][0] != '/')
1391 error (EXIT_FAILURE
, 0,
1392 _("relative path `%s' used to build cache"),
1395 add_dir_1 (argv
[i
], "<cmdline>", 0);
1400 if (opt_chroot
!= NULL
)
1402 /* Normalize the path a bit, we might need it for printing later. */
1403 char *endp
= rawmemchr (opt_chroot
, '\0');
1404 while (endp
> opt_chroot
&& endp
[-1] == '/')
1407 if (endp
== opt_chroot
)
1410 if (opt_chroot
!= NULL
)
1412 /* It is faster to use chroot if we can. */
1413 if (!chroot (opt_chroot
))
1416 error (EXIT_FAILURE
, errno
, _("Can't chdir to /"));
1422 if (cache_file
== NULL
)
1424 cache_file
= alloca (strlen (LD_SO_CACHE
) + 1);
1425 strcpy (cache_file
, LD_SO_CACHE
);
1428 if (config_file
== NULL
)
1429 config_file
= LD_SO_CONF
;
1431 if (opt_print_cache
)
1433 if (opt_chroot
!= NULL
)
1435 char *p
= chroot_canon (opt_chroot
, cache_file
);
1437 error (EXIT_FAILURE
, errno
, _("Can't open cache file %s\n"),
1441 print_cache (cache_file
);
1442 if (opt_chroot
!= NULL
)
1447 if (opt_chroot
!= NULL
)
1449 /* Canonicalize the directory name of cache_file, not cache_file,
1450 because we'll rename a temporary cache file to it. */
1451 char *p
= strrchr (cache_file
, '/');
1452 char *canon
= chroot_canon (opt_chroot
,
1453 p
? (*p
= '\0', cache_file
) : "/");
1456 error (EXIT_FAILURE
, errno
,
1457 _("Can't open cache file directory %s\n"),
1458 p
? cache_file
: "/");
1465 cache_file
= alloca (strlen (canon
) + strlen (p
) + 2);
1466 sprintf (cache_file
, "%s/%s", canon
, p
);
1470 if (opt_manual_link
)
1472 /* Link all given libraries manually. */
1475 for (i
= remaining
; i
< argc
; ++i
)
1476 manual_link (argv
[i
]);
1482 if (opt_build_cache
)
1485 if (!opt_only_cline
)
1487 parse_conf (config_file
, true);
1489 /* Always add the standard search paths. */
1490 add_system_dir (SLIBDIR
);
1491 if (strcmp (SLIBDIR
, LIBDIR
))
1492 add_system_dir (LIBDIR
);
1495 const char *aux_cache_file
= _PATH_LDCONFIG_AUX_CACHE
;
1496 if (opt_chroot
!= NULL
)
1497 aux_cache_file
= chroot_canon (opt_chroot
, aux_cache_file
);
1499 if (! opt_ignore_aux_cache
&& aux_cache_file
)
1500 load_aux_cache (aux_cache_file
);
1506 if (opt_build_cache
)
1508 save_cache (cache_file
);
1510 save_aux_cache (aux_cache_file
);