1 /* Copyright (C) 1999-2007, 2008 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Andreas Jaeger <aj@suse.de>, 1999.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; version 2 of the License, or
8 (at your option) any later version.
10 This program 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
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software Foundation,
17 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19 #define PROCINFO_CLASS static
31 #include <stdio_ext.h>
35 #include <sys/fcntl.h>
38 #include <sys/types.h>
45 #include <dl-procinfo.h>
47 #ifdef _DL_FIRST_PLATFORM
48 # define _DL_FIRST_EXTRA (_DL_FIRST_PLATFORM + _DL_PLATFORMS_COUNT)
50 # define _DL_FIRST_EXTRA _DL_HWCAP_COUNT
54 # define LD_SO_CONF SYSCONFDIR "/ld.so.conf"
57 /* Get libc version number. */
60 #define PACKAGE _libc_intl_domainname
68 {"libc4", FLAG_LIBC4
},
69 {"libc5", FLAG_ELF_LIBC5
},
70 {"libc6", FLAG_ELF_LIBC6
},
71 {"glibc2", FLAG_ELF_LIBC6
}
75 /* List of directories to handle. */
82 struct dir_entry
*next
;
85 /* The list is unsorted, contains no duplicates. Entries are added at
87 static struct dir_entry
*dir_entries
;
89 /* Flags for different options. */
91 static int opt_print_cache
;
96 /* Format to support. */
97 /* 0: only libc5/glibc2; 1: both; 2: only glibc 2.2. */
101 static int opt_build_cache
= 1;
103 /* Generate links. */
104 static int opt_link
= 1;
106 /* Only process directories specified on the command line. */
107 static int opt_only_cline
;
109 /* Path to root for chroot. */
110 static char *opt_chroot
;
112 /* Manually link given shared libraries. */
113 static int opt_manual_link
;
115 /* Should we ignore an old auxiliary cache file? */
116 static int opt_ignore_aux_cache
;
118 /* Cache file to use. */
119 static char *cache_file
;
121 /* Configuration file. */
122 static const char *config_file
;
124 /* Mask to use for important hardware capabilities. */
125 static unsigned long int hwcap_mask
= HWCAP_IMPORTANT
;
127 /* Configuration-defined capabilities defined in kernel vDSOs. */
128 static const char *hwcap_extra
[64 - _DL_FIRST_EXTRA
];
130 /* Name and version of program. */
131 static void print_version (FILE *stream
, struct argp_state
*state
);
132 void (*argp_program_version_hook
) (FILE *, struct argp_state
*)
135 /* Definitions of arguments for argp functions. */
136 static const struct argp_option options
[] =
138 { "print-cache", 'p', NULL
, 0, N_("Print cache"), 0},
139 { "verbose", 'v', NULL
, 0, N_("Generate verbose messages"), 0},
140 { NULL
, 'N', NULL
, 0, N_("Don't build cache"), 0},
141 { NULL
, 'X', NULL
, 0, N_("Don't generate links"), 0},
142 { NULL
, 'r', N_("ROOT"), 0, N_("Change to and use ROOT as root directory"), 0},
143 { NULL
, 'C', N_("CACHE"), 0, N_("Use CACHE as cache file"), 0},
144 { NULL
, 'f', N_("CONF"), 0, N_("Use CONF as configuration file"), 0},
145 { NULL
, 'n', NULL
, 0, N_("Only process directories specified on the command line. Don't build cache."), 0},
146 { NULL
, 'l', NULL
, 0, N_("Manually link individual libraries."), 0},
147 { "format", 'c', N_("FORMAT"), 0, N_("Format to use: new, old or compat (default)"), 0},
148 { "ignore-aux-cache", 'i', NULL
, 0, N_("Ignore auxiliary cache file"), 0},
149 { NULL
, 0, NULL
, 0, NULL
, 0 }
152 #define PROCINFO_CLASS static
153 #include <dl-procinfo.c>
155 /* Short description of program. */
156 static const char doc
[] = N_("Configure Dynamic Linker Run Time Bindings.");
158 /* Prototype for option handler. */
159 static error_t
parse_opt (int key
, char *arg
, struct argp_state
*state
);
161 /* Data structure to communicate with argp functions. */
162 static struct argp argp
=
164 options
, parse_opt
, NULL
, doc
, NULL
, NULL
, NULL
167 /* Check if string corresponds to an important hardware capability or
170 is_hwcap_platform (const char *name
)
172 int hwcap_idx
= _dl_string_hwcap (name
);
174 if (hwcap_idx
!= -1 && ((1 << hwcap_idx
) & hwcap_mask
))
177 hwcap_idx
= _dl_string_platform (name
);
181 for (hwcap_idx
= _DL_FIRST_EXTRA
; hwcap_idx
< 64; ++hwcap_idx
)
182 if (hwcap_extra
[hwcap_idx
- _DL_FIRST_EXTRA
] != NULL
183 && !strcmp (name
, hwcap_extra
[hwcap_idx
- _DL_FIRST_EXTRA
]))
189 /* Get hwcap (including platform) encoding of path. */
191 path_hwcap (const char *path
)
193 char *str
= xstrdup (path
);
204 /* Search pathname from the end and check for hwcap strings. */
207 ptr
= strrchr (str
, '/');
212 h
= _dl_string_hwcap (ptr
+ 1);
214 if (h
== (uint64_t) -1)
216 h
= _dl_string_platform (ptr
+ 1);
217 if (h
== (uint64_t) -1)
219 for (h
= _DL_FIRST_EXTRA
; h
< 64; ++h
)
220 if (hwcap_extra
[h
- _DL_FIRST_EXTRA
] != NULL
221 && !strcmp (ptr
+ 1, hwcap_extra
[h
- _DL_FIRST_EXTRA
]))
229 /* Search the next part of the path. */
237 /* Handle program arguments. */
239 parse_opt (int key
, char *arg
, struct argp_state
*state
)
245 /* Ignore auxiliary cache since we use non-standard cache. */
246 opt_ignore_aux_cache
= 1;
252 opt_ignore_aux_cache
= 1;
277 if (strcmp (arg
, "old") == 0)
279 else if (strcmp (arg
, "compat") == 0)
281 else if (strcmp (arg
, "new") == 0)
285 return ARGP_ERR_UNKNOWN
;
291 /* Print the version information. */
293 print_version (FILE *stream
, struct argp_state
*state
)
295 fprintf (stream
, "ldconfig (GNU %s) %s\n", PACKAGE
, VERSION
);
296 fprintf (stream
, gettext ("\
297 Copyright (C) %s Free Software Foundation, Inc.\n\
298 This is free software; see the source for copying conditions. There is NO\n\
299 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\
301 fprintf (stream
, gettext ("Written by %s.\n"),
305 /* Add a single directory entry. */
307 add_single_dir (struct dir_entry
*entry
, int verbose
)
309 struct dir_entry
*ptr
, *prev
;
315 /* Check for duplicates. */
316 if (ptr
->ino
== entry
->ino
&& ptr
->dev
== entry
->dev
)
318 if (opt_verbose
&& verbose
)
319 error (0, 0, _("Path `%s' given more than once"), entry
->path
);
320 /* Use the newer information. */
321 ptr
->flag
= entry
->flag
;
329 /* Is this the first entry? */
330 if (ptr
== NULL
&& dir_entries
== NULL
)
332 else if (ptr
== NULL
)
336 /* Add one directory to the list of directories to process. */
338 add_dir (const char *line
)
341 struct dir_entry
*entry
= xmalloc (sizeof (struct dir_entry
));
344 /* Search for an '=' sign. */
345 entry
->path
= xstrdup (line
);
346 char *equal_sign
= strchr (entry
->path
, '=');
351 entry
->flag
= FLAG_ANY
;
352 for (i
= 0; i
< sizeof (lib_types
) / sizeof (lib_types
[0]); ++i
)
353 if (strcmp (equal_sign
, lib_types
[i
].name
) == 0)
355 entry
->flag
= lib_types
[i
].flag
;
358 if (entry
->flag
== FLAG_ANY
)
359 error (0, 0, _("%s is not a known library type"), equal_sign
);
363 entry
->flag
= FLAG_ANY
;
366 /* Canonify path: for now only remove leading and trailing
367 whitespace and the trailing slashes slashes. */
368 i
= strlen (entry
->path
) - 1;
370 while (isspace (entry
->path
[i
]) && i
> 0)
371 entry
->path
[i
--] = '\0';
373 while (entry
->path
[i
] == '/' && i
> 0)
374 entry
->path
[i
--] = '\0';
376 char *path
= entry
->path
;
378 path
= chroot_canon (opt_chroot
, path
);
380 struct stat64 stat_buf
;
381 if (path
== NULL
|| stat64 (path
, &stat_buf
))
384 error (0, errno
, _("Can't stat %s"), entry
->path
);
390 entry
->ino
= stat_buf
.st_ino
;
391 entry
->dev
= stat_buf
.st_dev
;
393 add_single_dir (entry
, 1);
402 chroot_stat (const char *real_path
, const char *path
, struct stat64
*st
)
408 return stat64 (real_path
, st
);
410 ret
= lstat64 (real_path
, st
);
411 if (ret
|| !S_ISLNK (st
->st_mode
))
414 canon_path
= chroot_canon (opt_chroot
, path
);
415 if (canon_path
== NULL
)
418 ret
= stat64 (canon_path
, st
);
423 /* Create a symbolic link from soname to libname in directory path. */
425 create_links (const char *real_path
, const char *path
, const char *libname
,
428 char *full_libname
, *full_soname
;
429 char *real_full_libname
, *real_full_soname
;
430 struct stat64 stat_lib
, stat_so
, lstat_so
;
433 /* XXX: The logics in this function should be simplified. */
435 /* Get complete path. */
436 full_libname
= alloca (strlen (path
) + strlen (libname
) + 2);
437 full_soname
= alloca (strlen (path
) + strlen (soname
) + 2);
438 sprintf (full_libname
, "%s/%s", path
, libname
);
439 sprintf (full_soname
, "%s/%s", path
, soname
);
442 real_full_libname
= alloca (strlen (real_path
) + strlen (libname
) + 2);
443 real_full_soname
= alloca (strlen (real_path
) + strlen (soname
) + 2);
444 sprintf (real_full_libname
, "%s/%s", real_path
, libname
);
445 sprintf (real_full_soname
, "%s/%s", real_path
, soname
);
449 real_full_libname
= full_libname
;
450 real_full_soname
= full_soname
;
453 /* Does soname already exist and point to the right library? */
454 if (chroot_stat (real_full_soname
, full_soname
, &stat_so
) == 0)
456 if (chroot_stat (real_full_libname
, full_libname
, &stat_lib
))
458 error (0, 0, _("Can't stat %s\n"), full_libname
);
461 if (stat_lib
.st_dev
== stat_so
.st_dev
462 && stat_lib
.st_ino
== stat_so
.st_ino
)
463 /* Link is already correct. */
465 else if (lstat64 (full_soname
, &lstat_so
) == 0
466 && !S_ISLNK (lstat_so
.st_mode
))
468 error (0, 0, _("%s is not a symbolic link\n"), full_soname
);
473 else if (lstat64 (real_full_soname
, &lstat_so
) != 0
474 || !S_ISLNK (lstat_so
.st_mode
))
475 /* Unless it is a stale symlink, there is no need to remove. */
479 printf ("\t%s -> %s", soname
, libname
);
481 if (do_link
&& opt_link
)
483 /* Remove old link. */
485 if (unlink (real_full_soname
))
487 error (0, 0, _("Can't unlink %s"), full_soname
);
490 /* Create symbolic link. */
491 if (do_link
&& symlink (libname
, real_full_soname
))
493 error (0, 0, _("Can't link %s to %s"), full_soname
, libname
);
499 fputs (_(" (changed)\n"), stdout
);
501 fputs (_(" (SKIPPED)\n"), stdout
);
504 else if (opt_verbose
)
505 fputs ("\n", stdout
);
508 /* Manually link the given library. */
510 manual_link (char *library
)
517 struct stat64 stat_buf
;
519 unsigned int osversion
;
521 /* Prepare arguments for create_links call. Split library name in
522 directory and filename first. Since path is allocated, we've got
523 to be careful to free at the end. */
524 path
= xstrdup (library
);
525 libname
= strrchr (path
, '/');
529 /* Successfully split names. Check if path is just "/" to avoid
533 libname
= library
+ 1;
534 path
= xrealloc (path
, 2);
545 /* There's no path, construct one. */
547 path
= xrealloc (path
, 2);
553 real_path
= chroot_canon (opt_chroot
, path
);
554 if (real_path
== NULL
)
556 error (0, errno
, _("Can't find %s"), path
);
560 real_library
= alloca (strlen (real_path
) + strlen (libname
) + 2);
561 sprintf (real_library
, "%s/%s", real_path
, libname
);
566 real_library
= library
;
569 /* Do some sanity checks first. */
570 if (lstat64 (real_library
, &stat_buf
))
572 error (0, errno
, _("Cannot lstat %s"), library
);
576 /* We don't want links here! */
577 else if (!S_ISREG (stat_buf
.st_mode
))
579 error (0, 0, _("Ignored file %s since it is not a regular file."),
585 if (process_file (real_library
, library
, libname
, &flag
, &osversion
,
586 &soname
, 0, &stat_buf
))
588 error (0, 0, _("No link created since soname could not be found for %s"),
594 soname
= implicit_soname (libname
, flag
);
595 create_links (real_path
, path
, libname
, soname
);
601 /* Read a whole directory and search for libraries.
602 The purpose is two-fold:
603 - search for libraries which will be added to the cache
604 - create symbolic links to the soname for each library
606 This has to be done separatly for each directory.
608 To keep track of which libraries to add to the cache and which
609 links to create, we save a list of all libraries.
611 The algorithm is basically:
612 for all libraries in the directory do
613 get soname of library
614 if soname is already in list
615 if new library is newer, replace entry
616 otherwise ignore this library
617 otherwise add library to list
619 For example, if the two libraries libxy.so.1.1 and libxy.so.1.2
620 exist and both have the same soname, e.g. libxy.so, a symbolic link
621 is created from libxy.so.1.2 (the newer one) to libxy.so.
622 libxy.so.1.2 and libxy.so are added to the cache - but not
625 /* Information for one library. */
632 unsigned int osversion
;
633 struct dlib_entry
*next
;
638 search_dir (const struct dir_entry
*entry
)
640 uint64_t hwcap
= path_hwcap (entry
->path
);
644 printf ("%s: (hwcap: %#.16" PRIx64
")\n", entry
->path
, hwcap
);
646 printf ("%s:\n", entry
->path
);
650 char *real_file_name
;
651 size_t real_file_name_len
;
652 size_t file_name_len
= PATH_MAX
;
653 char *file_name
= alloca (file_name_len
);
656 dir_name
= chroot_canon (opt_chroot
, entry
->path
);
657 real_file_name_len
= PATH_MAX
;
658 real_file_name
= alloca (real_file_name_len
);
662 dir_name
= entry
->path
;
663 real_file_name_len
= 0;
664 real_file_name
= file_name
;
668 if (dir_name
== NULL
|| (dir
= opendir (dir_name
)) == NULL
)
671 error (0, errno
, _("Can't open directory %s"), entry
->path
);
672 if (opt_chroot
&& dir_name
)
677 struct dirent64
*direntry
;
678 struct dlib_entry
*dlibs
= NULL
;
679 while ((direntry
= readdir64 (dir
)) != NULL
)
682 #ifdef _DIRENT_HAVE_D_TYPE
683 /* We only look at links and regular files. */
684 if (direntry
->d_type
!= DT_UNKNOWN
685 && direntry
->d_type
!= DT_LNK
686 && direntry
->d_type
!= DT_REG
687 && direntry
->d_type
!= DT_DIR
)
689 #endif /* _DIRENT_HAVE_D_TYPE */
690 /* Does this file look like a shared library or is it a hwcap
691 subdirectory? The dynamic linker is also considered as
693 if (((strncmp (direntry
->d_name
, "lib", 3) != 0
694 && strncmp (direntry
->d_name
, "ld-", 3) != 0)
695 || strstr (direntry
->d_name
, ".so") == NULL
)
697 #ifdef _DIRENT_HAVE_D_TYPE
698 direntry
->d_type
== DT_REG
||
700 !is_hwcap_platform (direntry
->d_name
)))
703 size_t len
= strlen (direntry
->d_name
);
704 /* Skip temporary files created by the prelink program. Files with
705 names like these are never really DSOs we want to look at. */
706 if (len
>= sizeof (".#prelink#") - 1)
708 if (strcmp (direntry
->d_name
+ len
- sizeof (".#prelink#") + 1,
711 if (len
>= sizeof (".#prelink#.XXXXXX") - 1
712 && memcmp (direntry
->d_name
+ len
- sizeof (".#prelink#.XXXXXX")
713 + 1, ".#prelink#.", sizeof (".#prelink#.") - 1) == 0)
716 len
+= strlen (entry
->path
) + 2;
717 if (len
> file_name_len
)
720 file_name
= alloca (file_name_len
);
722 real_file_name
= file_name
;
724 sprintf (file_name
, "%s/%s", entry
->path
, direntry
->d_name
);
727 len
= strlen (dir_name
) + strlen (direntry
->d_name
) + 2;
728 if (len
> real_file_name_len
)
730 real_file_name_len
= len
;
731 real_file_name
= alloca (real_file_name_len
);
733 sprintf (real_file_name
, "%s/%s", dir_name
, direntry
->d_name
);
736 struct stat64 lstat_buf
;
737 #ifdef _DIRENT_HAVE_D_TYPE
738 /* We optimize and try to do the lstat call only if needed. */
739 if (direntry
->d_type
!= DT_UNKNOWN
)
740 lstat_buf
.st_mode
= DTTOIF (direntry
->d_type
);
743 if (__builtin_expect (lstat64 (real_file_name
, &lstat_buf
), 0))
745 error (0, errno
, _("Cannot lstat %s"), file_name
);
749 struct stat64 stat_buf
;
751 int is_link
= S_ISLNK (lstat_buf
.st_mode
);
754 /* In case of symlink, we check if the symlink refers to
756 if (__builtin_expect (stat64 (real_file_name
, &stat_buf
), 0))
759 error (0, errno
, _("Cannot stat %s"), file_name
);
761 /* Remove stale symlinks. */
762 if (strstr (direntry
->d_name
, ".so."))
763 unlink (real_file_name
);
766 is_dir
= S_ISDIR (stat_buf
.st_mode
);
768 /* lstat_buf is later stored, update contents. */
769 lstat_buf
.st_dev
= stat_buf
.st_dev
;
770 lstat_buf
.st_ino
= stat_buf
.st_ino
;
771 lstat_buf
.st_size
= stat_buf
.st_size
;
772 lstat_buf
.st_ctime
= stat_buf
.st_ctime
;
775 is_dir
= S_ISDIR (lstat_buf
.st_mode
);
777 if (is_dir
&& is_hwcap_platform (direntry
->d_name
))
779 /* Handle subdirectory later. */
780 struct dir_entry
*new_entry
;
782 new_entry
= xmalloc (sizeof (struct dir_entry
));
783 new_entry
->path
= xstrdup (file_name
);
784 new_entry
->flag
= entry
->flag
;
785 new_entry
->next
= NULL
;
786 #ifdef _DIRENT_HAVE_D_TYPE
787 /* We have filled in lstat only #ifndef
788 _DIRENT_HAVE_D_TYPE. Fill it in if needed. */
790 && direntry
->d_type
!= DT_UNKNOWN
791 && __builtin_expect (lstat64 (real_file_name
, &lstat_buf
), 0))
793 error (0, errno
, _("Cannot lstat %s"), file_name
);
794 free (new_entry
->path
);
799 new_entry
->ino
= lstat_buf
.st_ino
;
800 new_entry
->dev
= lstat_buf
.st_dev
;
801 add_single_dir (new_entry
, 0);
804 else if (!S_ISREG (lstat_buf
.st_mode
) && !is_link
)
808 if (opt_chroot
&& is_link
)
810 real_name
= chroot_canon (opt_chroot
, file_name
);
811 if (real_name
== NULL
)
813 if (strstr (file_name
, ".so") == NULL
)
814 error (0, 0, _("Input file %s not found.\n"), file_name
);
819 real_name
= real_file_name
;
821 #ifdef _DIRENT_HAVE_D_TYPE
822 /* Call lstat64 if not done yet. */
824 && direntry
->d_type
!= DT_UNKNOWN
825 && __builtin_expect (lstat64 (real_file_name
, &lstat_buf
), 0))
827 error (0, errno
, _("Cannot lstat %s"), file_name
);
832 /* First search whether the auxiliary cache contains this
833 library already and it's not changed. */
835 unsigned int osversion
;
836 if (!search_aux_cache (&lstat_buf
, &flag
, &osversion
, &soname
))
838 if (process_file (real_name
, file_name
, direntry
->d_name
, &flag
,
839 &osversion
, &soname
, is_link
, &lstat_buf
))
841 if (real_name
!= real_file_name
)
845 else if (opt_build_cache
)
846 add_to_aux_cache (&lstat_buf
, flag
, osversion
, soname
);
850 soname
= implicit_soname (direntry
->d_name
, flag
);
852 /* A link may just point to itself. */
855 /* If the path the link points to isn't its soname and it is not
856 .so symlink for ld(1) only, we treat it as a normal file. */
857 const char *real_base_name
= basename (real_file_name
);
859 if (strcmp (real_base_name
, soname
) != 0)
861 len
= strlen (real_base_name
);
862 if (len
< strlen (".so")
863 || strcmp (real_base_name
+ len
- strlen (".so"), ".so") != 0
864 || strncmp (real_base_name
, soname
, len
) != 0)
869 if (real_name
!= real_file_name
)
875 soname
= xstrdup (direntry
->d_name
);
879 && (entry
->flag
== FLAG_ELF_LIBC5
880 || entry
->flag
== FLAG_ELF_LIBC6
))
883 /* Some sanity checks to print warnings. */
886 if (flag
== FLAG_ELF_LIBC5
&& entry
->flag
!= FLAG_ELF_LIBC5
887 && entry
->flag
!= FLAG_ANY
)
888 error (0, 0, _("libc5 library %s in wrong directory"), file_name
);
889 if (flag
== FLAG_ELF_LIBC6
&& entry
->flag
!= FLAG_ELF_LIBC6
890 && entry
->flag
!= FLAG_ANY
)
891 error (0, 0, _("libc6 library %s in wrong directory"), file_name
);
892 if (flag
== FLAG_LIBC4
&& entry
->flag
!= FLAG_LIBC4
893 && entry
->flag
!= FLAG_ANY
)
894 error (0, 0, _("libc4 library %s in wrong directory"), file_name
);
897 /* Add library to list. */
898 struct dlib_entry
*dlib_ptr
;
899 for (dlib_ptr
= dlibs
; dlib_ptr
!= NULL
; dlib_ptr
= dlib_ptr
->next
)
901 /* Is soname already in list? */
902 if (strcmp (dlib_ptr
->soname
, soname
) == 0)
904 /* Prefer a file to a link, otherwise check which one
906 if ((!is_link
&& dlib_ptr
->is_link
)
907 || (is_link
== dlib_ptr
->is_link
908 && _dl_cache_libcmp (dlib_ptr
->name
, direntry
->d_name
) < 0))
910 /* It's newer - add it. */
911 /* Flag should be the same - sanity check. */
912 if (dlib_ptr
->flag
!= flag
)
914 if (dlib_ptr
->flag
== FLAG_ELF
915 && (flag
== FLAG_ELF_LIBC5
|| flag
== FLAG_ELF_LIBC6
))
916 dlib_ptr
->flag
= flag
;
917 else if ((dlib_ptr
->flag
== FLAG_ELF_LIBC5
918 || dlib_ptr
->flag
== FLAG_ELF_LIBC6
)
920 dlib_ptr
->flag
= flag
;
922 error (0, 0, _("libraries %s and %s in directory %s have same soname but different type."),
923 dlib_ptr
->name
, direntry
->d_name
,
926 free (dlib_ptr
->name
);
927 dlib_ptr
->name
= xstrdup (direntry
->d_name
);
928 dlib_ptr
->is_link
= is_link
;
929 dlib_ptr
->osversion
= osversion
;
931 /* Don't add this library, abort loop. */
932 /* Also free soname, since it's dynamically allocated. */
937 /* Add the library if it's not already in. */
938 if (dlib_ptr
== NULL
)
940 dlib_ptr
= (struct dlib_entry
*)xmalloc (sizeof (struct dlib_entry
));
941 dlib_ptr
->name
= xstrdup (direntry
->d_name
);
942 dlib_ptr
->soname
= soname
;
943 dlib_ptr
->flag
= flag
;
944 dlib_ptr
->is_link
= is_link
;
945 dlib_ptr
->osversion
= osversion
;
946 /* Add at head of list. */
947 dlib_ptr
->next
= dlibs
;
954 /* Now dlibs contains a list of all libs - add those to the cache
955 and created all symbolic links. */
956 struct dlib_entry
*dlib_ptr
;
957 for (dlib_ptr
= dlibs
; dlib_ptr
!= NULL
; dlib_ptr
= dlib_ptr
->next
)
959 /* Don't create links to links. */
960 if (dlib_ptr
->is_link
== 0)
961 create_links (dir_name
, entry
->path
, dlib_ptr
->name
,
964 add_to_cache (entry
->path
, dlib_ptr
->soname
, dlib_ptr
->flag
,
965 dlib_ptr
->osversion
, hwcap
);
968 /* Free all resources. */
972 free (dlib_ptr
->soname
);
973 free (dlib_ptr
->name
);
978 if (opt_chroot
&& dir_name
)
982 /* Search through all libraries. */
986 struct dir_entry
*entry
;
988 for (entry
= dir_entries
; entry
!= NULL
; entry
= entry
->next
)
991 /* Free all allocated memory. */
995 dir_entries
= dir_entries
->next
;
1002 static void parse_conf_include (const char *config_file
, unsigned int lineno
,
1003 bool do_chroot
, const char *pattern
);
1005 /* Parse configuration file. */
1007 parse_conf (const char *filename
, bool do_chroot
)
1013 unsigned int lineno
;
1015 if (do_chroot
&& opt_chroot
)
1017 canon
= chroot_canon (opt_chroot
, filename
);
1019 file
= fopen (canon
, "r");
1026 file
= fopen (filename
, "r");
1031 error (0, errno
, _("Can't open configuration file %s"), canon
);
1032 if (canon
!= filename
)
1033 free ((char *) canon
);
1037 /* No threads use this stream. */
1038 __fsetlocking (file
, FSETLOCKING_BYCALLER
);
1040 if (canon
!= filename
)
1041 free ((char *) canon
);
1046 ssize_t n
= getline (&line
, &len
, file
);
1051 if (line
[n
- 1] == '\n')
1054 /* Because the file format does not know any form of quoting we
1055 can search forward for the next '#' character and if found
1056 make it terminating the line. */
1057 *strchrnul (line
, '#') = '\0';
1059 /* Remove leading whitespace. NUL is no whitespace character. */
1061 while (isspace (*cp
))
1064 /* If the line is blank it is ignored. */
1068 if (!strncmp (cp
, "include", 7) && isblank (cp
[7]))
1072 while ((dir
= strsep (&cp
, " \t")) != NULL
)
1074 parse_conf_include (filename
, lineno
, do_chroot
, dir
);
1076 else if (!strncasecmp (cp
, "hwcap", 5) && isblank (cp
[5]))
1079 char *p
, *name
= NULL
;
1080 unsigned long int n
= strtoul (cp
, &cp
, 0);
1081 if (cp
!= NULL
&& isblank (*cp
))
1082 while ((p
= strsep (&cp
, " \t")) != NULL
)
1095 error (EXIT_FAILURE
, 0, _("%s:%u: bad syntax in hwcap line"),
1099 if (n
>= (64 - _DL_FIRST_EXTRA
))
1100 error (EXIT_FAILURE
, 0,
1101 _("%s:%u: hwcap index %lu above maximum %u"),
1102 filename
, lineno
, n
, 64 - _DL_FIRST_EXTRA
- 1);
1103 if (hwcap_extra
[n
] == NULL
)
1105 for (unsigned long int h
= 0; h
< (64 - _DL_FIRST_EXTRA
); ++h
)
1106 if (hwcap_extra
[h
] != NULL
&& !strcmp (name
, hwcap_extra
[h
]))
1107 error (EXIT_FAILURE
, 0,
1108 _("%s:%u: hwcap index %lu already defined as %s"),
1109 filename
, lineno
, h
, name
);
1110 hwcap_extra
[n
] = xstrdup (name
);
1114 if (strcmp (name
, hwcap_extra
[n
]))
1115 error (EXIT_FAILURE
, 0,
1116 _("%s:%u: hwcap index %lu already defined as %s"),
1117 filename
, lineno
, n
, hwcap_extra
[n
]);
1119 error (0, 0, _("%s:%u: duplicate hwcap %lu %s"),
1120 filename
, lineno
, n
, name
);
1126 while (!feof_unlocked (file
));
1128 /* Free buffer and close file. */
1133 /* Handle one word in an `include' line, a glob pattern of additional
1134 config files to read. */
1136 parse_conf_include (const char *config_file
, unsigned int lineno
,
1137 bool do_chroot
, const char *pattern
)
1139 if (opt_chroot
&& pattern
[0] != '/')
1140 error (EXIT_FAILURE
, 0,
1141 _("need absolute file name for configuration file when using -r"));
1144 if (pattern
[0] != '/' && strchr (config_file
, '/') != NULL
)
1146 if (asprintf (©
, "%s/%s", dirname (strdupa (config_file
)),
1148 error (EXIT_FAILURE
, 0, _("memory exhausted"));
1154 if (do_chroot
&& opt_chroot
)
1156 char *canon
= chroot_canon (opt_chroot
, pattern
);
1157 result
= glob64 (canon
?: pattern
, 0, NULL
, &gl
);
1161 result
= glob64 (pattern
, 0, NULL
, &gl
);
1166 for (size_t i
= 0; i
< gl
.gl_pathc
; ++i
)
1167 parse_conf (gl
.gl_pathv
[i
], false);
1178 error (0, errno
, _("%s:%u: cannot read directory %s"),
1179 config_file
, lineno
, pattern
);
1190 /* Honour LD_HWCAP_MASK. */
1194 char *mask
= getenv ("LD_HWCAP_MASK");
1197 hwcap_mask
= strtoul (mask
, NULL
, 0);
1202 main (int argc
, char **argv
)
1204 /* Set locale via LC_ALL. */
1205 setlocale (LC_ALL
, "");
1207 /* Set the text message domain. */
1208 textdomain (_libc_intl_domainname
);
1210 /* Parse and process arguments. */
1212 argp_parse (&argp
, argc
, argv
, 0, &remaining
, NULL
);
1214 /* Remaining arguments are additional directories if opt_manual_link
1216 if (remaining
!= argc
&& !opt_manual_link
)
1219 for (i
= remaining
; i
< argc
; ++i
)
1220 if (opt_build_cache
&& argv
[i
][0] != '/')
1221 error (EXIT_FAILURE
, 0,
1222 _("relative path `%s' used to build cache"),
1228 hwcap_extra
[63 - _DL_FIRST_EXTRA
] = "tls";
1234 /* Normalize the path a bit, we might need it for printing later. */
1235 char *endp
= rawmemchr (opt_chroot
, '\0');
1236 while (endp
> opt_chroot
&& endp
[-1] == '/')
1239 if (endp
== opt_chroot
)
1244 /* It is faster to use chroot if we can. */
1245 if (!chroot (opt_chroot
))
1248 error (EXIT_FAILURE
, errno
, _("Can't chdir to /"));
1254 if (cache_file
== NULL
)
1256 cache_file
= alloca (strlen (LD_SO_CACHE
) + 1);
1257 strcpy (cache_file
, LD_SO_CACHE
);
1260 if (config_file
== NULL
)
1261 config_file
= LD_SO_CONF
;
1263 if (opt_print_cache
)
1267 char *p
= chroot_canon (opt_chroot
, cache_file
);
1269 error (EXIT_FAILURE
, errno
, _("Can't open cache file %s\n"),
1273 print_cache (cache_file
);
1281 /* Canonicalize the directory name of cache_file, not cache_file,
1282 because we'll rename a temporary cache file to it. */
1283 char *p
= strrchr (cache_file
, '/');
1284 char *canon
= chroot_canon (opt_chroot
,
1285 p
? (*p
= '\0', cache_file
) : "/");
1289 error (EXIT_FAILURE
, errno
,
1290 _("Can't open cache file directory %s\n"),
1291 p
? cache_file
: "/");
1299 cache_file
= alloca (strlen (canon
) + strlen (p
) + 2);
1300 sprintf (cache_file
, "%s/%s", canon
, p
);
1304 if (opt_manual_link
)
1306 /* Link all given libraries manually. */
1309 for (i
= remaining
; i
< argc
; ++i
)
1310 manual_link (argv
[i
]);
1316 if (opt_build_cache
)
1319 if (!opt_only_cline
)
1321 parse_conf (config_file
, true);
1323 /* Always add the standard search paths. */
1324 add_system_dir (SLIBDIR
);
1325 if (strcmp (SLIBDIR
, LIBDIR
))
1326 add_system_dir (LIBDIR
);
1329 if (! opt_ignore_aux_cache
)
1330 load_aux_cache (_PATH_LDCONFIG_AUX_CACHE
);
1336 if (opt_build_cache
)
1338 save_cache (cache_file
);
1339 save_aux_cache (_PATH_LDCONFIG_AUX_CACHE
);