1 /* Copyright (C) 1999, 2000, 2001, 2002, 2003
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Andreas Jaeger <aj@suse.de>, 1999.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
30 #include <sys/fcntl.h>
33 #include <sys/types.h>
40 char *lib
; /* Library name. */
41 char *path
; /* Path to find library. */
42 int flags
; /* Flags to indicate kind of library. */
43 unsigned int osversion
; /* Required OS version. */
44 uint64_t hwcap
; /* Important hardware capabilities. */
45 int bits_hwcap
; /* Number of bits set in hwcap. */
46 struct cache_entry
*next
; /* Next entry in list. */
49 /* List of all cache entries. */
50 static struct cache_entry
*entries
;
52 static const char *flag_descr
[] =
53 { "libc4", "ELF", "libc5", "libc6"};
55 /* Print a single entry. */
57 print_entry (const char *lib
, int flag
, unsigned int osversion
,
58 uint64_t hwcap
, const char *key
)
60 printf ("\t%s (", lib
);
61 switch (flag
& FLAG_TYPE_MASK
)
67 fputs (flag_descr
[flag
& FLAG_TYPE_MASK
], stdout
);
70 fputs (_("unknown"), stdout
);
73 switch (flag
& FLAG_REQUIRED_MASK
)
75 case FLAG_SPARC_LIB64
:
76 fputs (",64bit", stdout
);
79 fputs (",IA-64", stdout
);
81 case FLAG_X8664_LIB64
:
82 fputs (",x86-64", stdout
);
85 fputs(",64bit", stdout
);
87 case FLAG_POWERPC_LIB64
:
88 fputs(",64bit", stdout
);
90 case FLAG_MIPS64_LIBN32
:
91 fputs(",N32", stdout
);
93 case FLAG_MIPS64_LIBN64
:
94 fputs(",64bit", stdout
);
98 printf (",%d", flag
& FLAG_REQUIRED_MASK
);
102 printf (", hwcap: 0x%" PRIx64
, hwcap
);
105 static const char *const abi_tag_os
[] =
111 [4] = N_("Unknown OS")
113 #define MAXTAG (sizeof abi_tag_os / sizeof abi_tag_os[0] - 1)
114 unsigned int os
= osversion
>> 24;
116 printf (_(", OS ABI: %s %d.%d.%d"),
117 _(abi_tag_os
[os
> MAXTAG
? MAXTAG
: os
]),
118 (osversion
>> 16) & 0xff,
119 (osversion
>> 8) & 0xff,
122 printf (") => %s\n", key
);
126 /* Print the whole cache file, if a file contains the new cache format
127 hidden in the old one, print the contents of the new format. */
129 print_cache (const char *cache_name
)
135 struct cache_file
*cache
;
136 struct cache_file_new
*cache_new
= NULL
;
137 const char *cache_data
;
140 fd
= open (cache_name
, O_RDONLY
);
142 error (EXIT_FAILURE
, errno
, _("Can't open cache file %s\n"), cache_name
);
144 if (fstat64 (fd
, &st
) < 0
145 /* No need to map the file if it is empty. */
152 cache
= mmap (0, st
.st_size
, PROT_READ
, MAP_SHARED
, fd
, 0);
153 if (cache
== MAP_FAILED
)
154 error (EXIT_FAILURE
, errno
, _("mmap of cache file failed.\n"));
155 cache_size
= st
.st_size
;
157 if (cache_size
< sizeof (struct cache_file
))
158 error (EXIT_FAILURE
, 0, _("File is not a cache file.\n"));
160 if (memcmp (cache
->magic
, CACHEMAGIC
, sizeof CACHEMAGIC
- 1))
162 /* This can only be the new format without the old one. */
163 cache_new
= (struct cache_file_new
*) cache
;
165 if (memcmp (cache_new
->magic
, CACHEMAGIC_NEW
, sizeof CACHEMAGIC_NEW
- 1)
166 || memcmp (cache_new
->version
, CACHE_VERSION
,
167 sizeof CACHE_VERSION
- 1))
168 error (EXIT_FAILURE
, 0, _("File is not a cache file.\n"));
170 /* This is where the strings start. */
171 cache_data
= (const char *) cache_new
;
175 size_t offset
= ALIGN_CACHE (sizeof (struct cache_file
)
177 * sizeof (struct file_entry
)));
178 /* This is where the strings start. */
179 cache_data
= (const char *) &cache
->libs
[cache
->nlibs
];
181 /* Check for a new cache embedded in the old format. */
183 (offset
+ sizeof (struct cache_file_new
)))
186 cache_new
= (struct cache_file_new
*) ((void *)cache
+ offset
);
188 if (memcmp (cache_new
->magic
, CACHEMAGIC_NEW
,
189 sizeof CACHEMAGIC_NEW
- 1) == 0
190 && memcmp (cache_new
->version
, CACHE_VERSION
,
191 sizeof CACHE_VERSION
- 1) == 0)
193 cache_data
= (const char *) cache_new
;
201 printf (_("%d libs found in cache `%s'\n"), cache
->nlibs
, cache_name
);
203 /* Print everything. */
204 for (i
= 0; i
< cache
->nlibs
; i
++)
205 print_entry (cache_data
+ cache
->libs
[i
].key
,
206 cache
->libs
[i
].flags
, 0, 0,
207 cache_data
+ cache
->libs
[i
].value
);
209 else if (format
== 1)
211 printf (_("%d libs found in cache `%s'\n"),
212 cache_new
->nlibs
, cache_name
);
214 /* Print everything. */
215 for (i
= 0; i
< cache_new
->nlibs
; i
++)
216 print_entry (cache_data
+ cache_new
->libs
[i
].key
,
217 cache_new
->libs
[i
].flags
,
218 cache_new
->libs
[i
].osversion
,
219 cache_new
->libs
[i
].hwcap
,
220 cache_data
+ cache_new
->libs
[i
].value
);
223 munmap (cache
, cache_size
);
227 /* Initialize cache data structures. */
237 int compare (const struct cache_entry
*e1
, const struct cache_entry
*e2
)
241 /* We need to swap entries here to get the correct sort order. */
242 res
= _dl_cache_libcmp (e2
->lib
, e1
->lib
);
245 if (e1
->flags
< e2
->flags
)
247 else if (e1
->flags
> e2
->flags
)
249 /* Sort by most specific hwcap. */
250 else if (e2
->bits_hwcap
> e1
->bits_hwcap
)
252 else if (e2
->bits_hwcap
< e1
->bits_hwcap
)
254 else if (e2
->hwcap
> e1
->hwcap
)
256 else if (e2
->hwcap
< e1
->hwcap
)
258 if (e2
->osversion
> e1
->osversion
)
260 if (e2
->osversion
< e1
->osversion
)
266 /* Save the contents of the cache. */
268 save_cache (const char *cache_name
)
270 struct cache_entry
*entry
;
271 int fd
, idx_old
, idx_new
;
272 size_t total_strlen
, len
;
273 char *strings
, *str
, *temp_name
;
274 struct cache_file
*file_entries
= NULL
;
275 struct cache_file_new
*file_entries_new
= NULL
;
276 size_t file_entries_size
= 0;
277 size_t file_entries_new_size
= 0;
278 unsigned int str_offset
;
279 /* Number of cache entries. */
280 int cache_entry_count
= 0;
281 /* Number of normal cache entries. */
282 int cache_entry_old_count
= 0;
283 /* Pad for alignment of cache_file_new. */
286 /* The cache entries are sorted already, save them in this order. */
288 /* Count the length of all strings. */
289 /* The old format doesn't contain hwcap entries and doesn't contain
290 libraries in subdirectories with hwcaps entries. Count therefore
291 also all entries with hwcap == 0. */
293 for (entry
= entries
; entry
!= NULL
; entry
= entry
->next
)
295 /* Account the final NULs. */
296 total_strlen
+= strlen (entry
->lib
) + strlen (entry
->path
) + 2;
298 if (entry
->hwcap
== 0)
299 ++cache_entry_old_count
;
302 /* Create the on disk cache structure. */
303 /* First an array for all strings. */
304 strings
= (char *)xmalloc (total_strlen
);
308 /* struct cache_file_new is 64-bit aligned on some arches while
309 only 32-bit aligned on other arches. Duplicate last old
310 cache entry so that new cache in ld.so.cache can be used by
313 cache_entry_old_count
= (cache_entry_old_count
+ 1) & ~1;
315 /* And the list of all entries in the old format. */
316 file_entries_size
= sizeof (struct cache_file
)
317 + cache_entry_old_count
* sizeof (struct file_entry
);
318 file_entries
= (struct cache_file
*) xmalloc (file_entries_size
);
320 /* Fill in the header. */
321 memset (file_entries
, 0, sizeof (struct cache_file
));
322 memcpy (file_entries
->magic
, CACHEMAGIC
, sizeof CACHEMAGIC
- 1);
324 file_entries
->nlibs
= cache_entry_old_count
;
329 /* And the list of all entries in the new format. */
330 file_entries_new_size
= sizeof (struct cache_file_new
)
331 + cache_entry_count
* sizeof (struct file_entry_new
);
333 (struct cache_file_new
*) xmalloc (file_entries_new_size
);
335 /* Fill in the header. */
336 memset (file_entries_new
, 0, sizeof (struct cache_file_new
));
337 memcpy (file_entries_new
->magic
, CACHEMAGIC_NEW
,
338 sizeof CACHEMAGIC_NEW
- 1);
339 memcpy (file_entries_new
->version
, CACHE_VERSION
,
340 sizeof CACHE_VERSION
- 1);
342 file_entries_new
->nlibs
= cache_entry_count
;
343 file_entries_new
->len_strings
= total_strlen
;
346 pad
= ALIGN_CACHE (file_entries_size
) - file_entries_size
;
348 /* If we have both formats, we hide the new format in the strings
349 table, we have to adjust all string indices for this so that
350 old libc5/glibc 2 dynamic linkers just ignore them. */
352 str_offset
= file_entries_new_size
;
357 for (idx_old
= 0, idx_new
= 0, entry
= entries
; entry
!= NULL
;
358 entry
= entry
->next
, ++idx_new
)
360 /* First the library. */
361 if (opt_format
!= 2 && entry
->hwcap
== 0)
363 file_entries
->libs
[idx_old
].flags
= entry
->flags
;
364 /* XXX: Actually we can optimize here and remove duplicates. */
365 file_entries
->libs
[idx_old
].key
= str_offset
+ pad
;
369 /* We could subtract file_entries_new_size from str_offset -
370 not doing so makes the code easier, the string table
371 always begins at the beginning of the the new cache
373 file_entries_new
->libs
[idx_new
].flags
= entry
->flags
;
374 file_entries_new
->libs
[idx_new
].osversion
= entry
->osversion
;
375 file_entries_new
->libs
[idx_new
].hwcap
= entry
->hwcap
;
376 file_entries_new
->libs
[idx_new
].key
= str_offset
;
378 len
= strlen (entry
->lib
);
379 str
= stpcpy (str
, entry
->lib
);
380 /* Account the final NUL. */
382 str_offset
+= len
+ 1;
384 if (opt_format
!= 2 && entry
->hwcap
== 0)
385 file_entries
->libs
[idx_old
].value
= str_offset
+ pad
;
387 file_entries_new
->libs
[idx_new
].value
= str_offset
;
388 len
= strlen (entry
->path
);
389 str
= stpcpy (str
, entry
->path
);
390 /* Account the final NUL. */
392 str_offset
+= len
+ 1;
393 /* Ignore entries with hwcap for old format. */
394 if (entry
->hwcap
== 0)
398 /* Duplicate last old cache entry if needed. */
400 && idx_old
< cache_entry_old_count
)
401 file_entries
->libs
[idx_old
] = file_entries
->libs
[idx_old
- 1];
403 /* Write out the cache. */
405 /* Write cache first to a temporary file and rename it later. */
406 temp_name
= xmalloc (strlen (cache_name
) + 2);
407 sprintf (temp_name
, "%s~", cache_name
);
408 /* First remove an old copy if it exists. */
409 if (unlink (temp_name
) && errno
!= ENOENT
)
410 error (EXIT_FAILURE
, errno
, _("Can't remove old temporary cache file %s"),
414 fd
= open (temp_name
, O_CREAT
|O_WRONLY
|O_TRUNC
|O_NOFOLLOW
,
415 S_IROTH
|S_IRGRP
|S_IRUSR
|S_IWUSR
);
417 error (EXIT_FAILURE
, errno
, _("Can't create temporary cache file %s"),
420 /* Write contents. */
423 if (write (fd
, file_entries
, file_entries_size
)
424 != (ssize_t
)file_entries_size
)
425 error (EXIT_FAILURE
, errno
, _("Writing of cache data failed"));
433 if (write (fd
, zero
, pad
) != (ssize_t
)pad
)
434 error (EXIT_FAILURE
, errno
, _("Writing of cache data failed"));
436 if (write (fd
, file_entries_new
, file_entries_new_size
)
437 != (ssize_t
)file_entries_new_size
)
438 error (EXIT_FAILURE
, errno
, _("Writing of cache data failed"));
441 if (write (fd
, strings
, total_strlen
) != (ssize_t
)total_strlen
)
442 error (EXIT_FAILURE
, errno
, _("Writing of cache data failed."));
446 /* Make sure user can always read cache file */
447 if (chmod (temp_name
, S_IROTH
|S_IRGRP
|S_IRUSR
|S_IWUSR
))
448 error (EXIT_FAILURE
, errno
,
449 _("Changing access rights of %s to %#o failed"), temp_name
,
450 S_IROTH
|S_IRGRP
|S_IRUSR
|S_IWUSR
);
452 /* Move temporary to its final location. */
453 if (rename (temp_name
, cache_name
))
454 error (EXIT_FAILURE
, errno
, _("Renaming of %s to %s failed"), temp_name
,
457 /* Free all allocated memory. */
466 entries
= entries
->next
;
472 /* Add one library to the cache. */
474 add_to_cache (const char *path
, const char *lib
, int flags
,
475 unsigned int osversion
, uint64_t hwcap
)
477 struct cache_entry
*new_entry
, *ptr
, *prev
;
481 new_entry
= (struct cache_entry
*) xmalloc (sizeof (struct cache_entry
));
483 len
= strlen (lib
) + strlen (path
) + 2;
485 full_path
= (char *) xmalloc (len
);
486 snprintf (full_path
, len
, "%s/%s", path
, lib
);
488 new_entry
->lib
= xstrdup (lib
);
489 new_entry
->path
= full_path
;
490 new_entry
->flags
= flags
;
491 new_entry
->osversion
= osversion
;
492 new_entry
->hwcap
= hwcap
;
493 new_entry
->bits_hwcap
= 0;
495 /* Count the number of bits set in the masked value. */
496 for (i
= 0; (~((1ULL << i
) - 1) & hwcap
) != 0 && i
< 8 * sizeof (hwcap
); ++i
)
497 if ((hwcap
& (1ULL << i
)) != 0)
498 ++new_entry
->bits_hwcap
;
501 /* Keep the list sorted - search for right place to insert. */
506 if (compare (ptr
, new_entry
) > 0)
511 /* Is this the first entry? */
514 new_entry
->next
= entries
;
519 new_entry
->next
= prev
->next
;
520 prev
->next
= new_entry
;