Update copyright notices with scripts/update-copyrights
[glibc.git] / locale / programs / locarchive.c
blobcdd99602c2e1dea4dea37cdd1da9cc329a36902f
1 /* Copyright (C) 2002-2014 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
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, see <http://www.gnu.org/licenses/>. */
18 #ifdef HAVE_CONFIG_H
19 # include <config.h>
20 #endif
22 #include <assert.h>
23 #include <dirent.h>
24 #include <errno.h>
25 #include <error.h>
26 #include <fcntl.h>
27 #include <inttypes.h>
28 #include <libintl.h>
29 #include <locale.h>
30 #include <stdbool.h>
31 #include <stdio.h>
32 #include <stdio_ext.h>
33 #include <stdlib.h>
34 #include <string.h>
35 #include <time.h>
36 #include <unistd.h>
37 #include <stdint.h>
38 #include <sys/mman.h>
39 #include <sys/param.h>
40 #include <sys/shm.h>
41 #include <sys/stat.h>
43 #include <libc-internal.h>
44 #include <libc-mmap.h>
45 #include "../../crypt/md5.h"
46 #include "../localeinfo.h"
47 #include "../locarchive.h"
48 #include "localedef.h"
49 #include "locfile.h"
51 /* Define the hash function. We define the function as static inline.
52 We must change the name so as not to conflict with simple-hash.h. */
53 #define compute_hashval static archive_hashval
54 #define hashval_t uint32_t
55 #include "hashval.h"
56 #undef compute_hashval
58 extern const char *output_prefix;
60 #define ARCHIVE_NAME LOCALEDIR "/locale-archive"
62 static const char *locnames[] =
64 #define DEFINE_CATEGORY(category, category_name, items, a) \
65 [category] = category_name,
66 #include "categories.def"
67 #undef DEFINE_CATEGORY
71 /* Size of the initial archive header. */
72 #define INITIAL_NUM_NAMES 900
73 #define INITIAL_SIZE_STRINGS 7500
74 #define INITIAL_NUM_LOCREC 420
75 #define INITIAL_NUM_SUMS 2000
78 /* Get and set values (possibly endian-swapped) in structures mapped
79 from or written directly to locale archives. */
80 #define GET(FIELD) maybe_swap_uint32 (FIELD)
81 #define SET(FIELD, VALUE) ((FIELD) = maybe_swap_uint32 (VALUE))
82 #define INC(FIELD, INCREMENT) SET (FIELD, GET (FIELD) + (INCREMENT))
85 /* Size of the reserved address space area. */
86 #define RESERVE_MMAP_SIZE 512 * 1024 * 1024
88 /* To prepare for enlargements of the mmaped area reserve some address
89 space. On some machines, being a file mapping rather than an anonymous
90 mapping affects the address selection. So do this mapping from the
91 actual file, even though it's only a dummy to reserve address space. */
92 static void *
93 prepare_address_space (int fd, size_t total, size_t *reserved, int *xflags,
94 void **mmap_base, size_t *mmap_len)
96 if (total < RESERVE_MMAP_SIZE)
98 void *p = mmap64 (NULL, RESERVE_MMAP_SIZE, PROT_NONE, MAP_SHARED, fd, 0);
99 if (p != MAP_FAILED)
101 void *aligned_p = PTR_ALIGN_UP (p, MAP_FIXED_ALIGNMENT);
102 size_t align_adjust = aligned_p - p;
103 *mmap_base = p;
104 *mmap_len = RESERVE_MMAP_SIZE;
105 assert (align_adjust < RESERVE_MMAP_SIZE);
106 *reserved = RESERVE_MMAP_SIZE - align_adjust;
107 *xflags = MAP_FIXED;
108 return aligned_p;
112 *reserved = total;
113 *xflags = 0;
114 *mmap_base = NULL;
115 *mmap_len = 0;
116 return NULL;
120 static void
121 create_archive (const char *archivefname, struct locarhandle *ah)
123 int fd;
124 char fname[strlen (archivefname) + sizeof (".XXXXXX")];
125 struct locarhead head;
126 size_t total;
128 strcpy (stpcpy (fname, archivefname), ".XXXXXX");
130 /* Create a temporary file in the correct directory. */
131 fd = mkstemp (fname);
132 if (fd == -1)
133 error (EXIT_FAILURE, errno, _("cannot create temporary file: %s"), fname);
135 /* Create the initial content of the archive. */
136 SET (head.magic, AR_MAGIC);
137 SET (head.serial, 0);
138 SET (head.namehash_offset, sizeof (struct locarhead));
139 SET (head.namehash_used, 0);
140 SET (head.namehash_size, next_prime (INITIAL_NUM_NAMES));
142 SET (head.string_offset,
143 (GET (head.namehash_offset)
144 + GET (head.namehash_size) * sizeof (struct namehashent)));
145 SET (head.string_used, 0);
146 SET (head.string_size, INITIAL_SIZE_STRINGS);
148 SET (head.locrectab_offset,
149 GET (head.string_offset) + GET (head.string_size));
150 SET (head.locrectab_used, 0);
151 SET (head.locrectab_size, INITIAL_NUM_LOCREC);
153 SET (head.sumhash_offset,
154 (GET (head.locrectab_offset)
155 + GET (head.locrectab_size) * sizeof (struct locrecent)));
156 SET (head.sumhash_used, 0);
157 SET (head.sumhash_size, next_prime (INITIAL_NUM_SUMS));
159 total = (GET (head.sumhash_offset)
160 + GET (head.sumhash_size) * sizeof (struct sumhashent));
162 /* Write out the header and create room for the other data structures. */
163 if (TEMP_FAILURE_RETRY (write (fd, &head, sizeof (head))) != sizeof (head))
165 int errval = errno;
166 unlink (fname);
167 error (EXIT_FAILURE, errval, _("cannot initialize archive file"));
170 if (ftruncate64 (fd, total) != 0)
172 int errval = errno;
173 unlink (fname);
174 error (EXIT_FAILURE, errval, _("cannot resize archive file"));
177 size_t reserved, mmap_len;
178 int xflags;
179 void *mmap_base;
180 void *p = prepare_address_space (fd, total, &reserved, &xflags, &mmap_base,
181 &mmap_len);
183 /* Map the header and all the administration data structures. */
184 p = mmap64 (p, total, PROT_READ | PROT_WRITE, MAP_SHARED | xflags, fd, 0);
185 if (p == MAP_FAILED)
187 int errval = errno;
188 unlink (fname);
189 error (EXIT_FAILURE, errval, _("cannot map archive header"));
192 /* Now try to rename it. We don't use the rename function since
193 this would overwrite a file which has been created in
194 parallel. */
195 if (link (fname, archivefname) == -1)
197 int errval = errno;
199 /* We cannot use the just created file. */
200 close (fd);
201 unlink (fname);
203 if (errval == EEXIST)
205 /* There is already an archive. Must have been a localedef run
206 which happened in parallel. Simply open this file then. */
207 open_archive (ah, false);
208 return;
211 error (EXIT_FAILURE, errval, _("failed to create new locale archive"));
214 /* Remove the temporary name. */
215 unlink (fname);
217 /* Make the file globally readable. */
218 if (fchmod (fd, S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH) == -1)
220 int errval = errno;
221 unlink (archivefname);
222 error (EXIT_FAILURE, errval,
223 _("cannot change mode of new locale archive"));
226 ah->fname = NULL;
227 ah->fd = fd;
228 ah->mmap_base = mmap_base;
229 ah->mmap_len = mmap_len;
230 ah->addr = p;
231 ah->mmaped = total;
232 ah->reserved = reserved;
236 /* This structure and qsort comparator function are used below to sort an
237 old archive's locrec table in order of data position in the file. */
238 struct oldlocrecent
240 unsigned int cnt;
241 struct locrecent *locrec;
244 static int
245 oldlocrecentcmp (const void *a, const void *b)
247 struct locrecent *la = ((const struct oldlocrecent *) a)->locrec;
248 struct locrecent *lb = ((const struct oldlocrecent *) b)->locrec;
249 uint32_t start_a = -1, end_a = 0;
250 uint32_t start_b = -1, end_b = 0;
251 int cnt;
253 for (cnt = 0; cnt < __LC_LAST; ++cnt)
254 if (cnt != LC_ALL)
256 if (GET (la->record[cnt].offset) < start_a)
257 start_a = GET (la->record[cnt].offset);
258 if (GET (la->record[cnt].offset) + GET (la->record[cnt].len) > end_a)
259 end_a = GET (la->record[cnt].offset) + GET (la->record[cnt].len);
261 assert (start_a != (uint32_t)-1);
262 assert (end_a != 0);
264 for (cnt = 0; cnt < __LC_LAST; ++cnt)
265 if (cnt != LC_ALL)
267 if (GET (lb->record[cnt].offset) < start_b)
268 start_b = GET (lb->record[cnt].offset);
269 if (GET (lb->record[cnt].offset) + GET (lb->record[cnt].len) > end_b)
270 end_b = GET (lb->record[cnt].offset) + GET (lb->record[cnt].len);
272 assert (start_b != (uint32_t)-1);
273 assert (end_b != 0);
275 if (start_a != start_b)
276 return (int)start_a - (int)start_b;
277 return (int)end_a - (int)end_b;
281 /* forward decls for below */
282 static uint32_t add_locale (struct locarhandle *ah, const char *name,
283 locale_data_t data, bool replace);
284 static void add_alias (struct locarhandle *ah, const char *alias,
285 bool replace, const char *oldname,
286 uint32_t *locrec_offset_p);
289 static bool
290 file_data_available_p (struct locarhandle *ah, uint32_t offset, uint32_t size)
292 if (offset < ah->mmaped && offset + size <= ah->mmaped)
293 return true;
295 struct stat64 st;
296 if (fstat64 (ah->fd, &st) != 0)
297 return false;
299 if (st.st_size > ah->reserved)
300 return false;
302 size_t start = ALIGN_DOWN (ah->mmaped, MAP_FIXED_ALIGNMENT);
303 void *p = mmap64 (ah->addr + start, st.st_size - start,
304 PROT_READ | PROT_WRITE, MAP_SHARED | MAP_FIXED,
305 ah->fd, start);
306 if (p == MAP_FAILED)
308 ah->mmaped = start;
309 return false;
312 ah->mmaped = st.st_size;
313 return true;
317 static int
318 compare_from_file (struct locarhandle *ah, void *p1, uint32_t offset2,
319 uint32_t size)
321 void *p2 = xmalloc (size);
322 if (pread (ah->fd, p2, size, offset2) != size)
323 WITH_CUR_LOCALE (error (4, errno,
324 _("cannot read data from locale archive")));
326 int res = memcmp (p1, p2, size);
327 free (p2);
328 return res;
332 static void
333 enlarge_archive (struct locarhandle *ah, const struct locarhead *head)
335 struct stat64 st;
336 int fd;
337 struct locarhead newhead;
338 size_t total;
339 unsigned int cnt, loccnt;
340 struct namehashent *oldnamehashtab;
341 struct locarhandle new_ah;
342 size_t prefix_len = output_prefix ? strlen (output_prefix) : 0;
343 char archivefname[prefix_len + sizeof (ARCHIVE_NAME)];
344 char fname[prefix_len + sizeof (ARCHIVE_NAME) + sizeof (".XXXXXX") - 1];
346 if (output_prefix)
347 memcpy (archivefname, output_prefix, prefix_len);
348 strcpy (archivefname + prefix_len, ARCHIVE_NAME);
349 strcpy (stpcpy (fname, archivefname), ".XXXXXX");
351 /* Not all of the old file has to be mapped. Change this now this
352 we will have to access the whole content. */
353 if (fstat64 (ah->fd, &st) != 0)
354 enomap:
355 error (EXIT_FAILURE, errno, _("cannot map locale archive file"));
357 if (st.st_size < ah->reserved)
358 ah->addr = mmap64 (ah->addr, st.st_size, PROT_READ | PROT_WRITE,
359 MAP_SHARED | MAP_FIXED, ah->fd, 0);
360 else
362 if (ah->mmap_base)
363 munmap (ah->mmap_base, ah->mmap_len);
364 else
365 munmap (ah->addr, ah->reserved);
366 ah->addr = mmap64 (NULL, st.st_size, PROT_READ | PROT_WRITE,
367 MAP_SHARED, ah->fd, 0);
368 ah->reserved = st.st_size;
369 ah->mmap_base = NULL;
370 ah->mmap_len = 0;
371 head = ah->addr;
373 if (ah->addr == MAP_FAILED)
374 goto enomap;
375 ah->mmaped = st.st_size;
377 /* Create a temporary file in the correct directory. */
378 fd = mkstemp (fname);
379 if (fd == -1)
380 error (EXIT_FAILURE, errno, _("cannot create temporary file: %s"), fname);
382 /* Copy the existing head information. */
383 newhead = *head;
385 /* Create the new archive header. The sizes of the various tables
386 should be double from what is currently used. */
387 SET (newhead.namehash_size,
388 MAX (next_prime (2 * GET (newhead.namehash_used)),
389 GET (newhead.namehash_size)));
390 if (verbose)
391 printf ("name: size: %u, used: %d, new: size: %u\n",
392 GET (head->namehash_size),
393 GET (head->namehash_used), GET (newhead.namehash_size));
395 SET (newhead.string_offset, (GET (newhead.namehash_offset)
396 + (GET (newhead.namehash_size)
397 * sizeof (struct namehashent))));
398 /* Keep the string table size aligned to 4 bytes, so that
399 all the struct { uint32_t } types following are happy. */
400 SET (newhead.string_size, MAX ((2 * GET (newhead.string_used) + 3) & -4,
401 GET (newhead.string_size)));
403 SET (newhead.locrectab_offset,
404 GET (newhead.string_offset) + GET (newhead.string_size));
405 SET (newhead.locrectab_size, MAX (2 * GET (newhead.locrectab_used),
406 GET (newhead.locrectab_size)));
408 SET (newhead.sumhash_offset, (GET (newhead.locrectab_offset)
409 + (GET (newhead.locrectab_size)
410 * sizeof (struct locrecent))));
411 SET (newhead.sumhash_size,
412 MAX (next_prime (2 * GET (newhead.sumhash_used)),
413 GET (newhead.sumhash_size)));
415 total = (GET (newhead.sumhash_offset)
416 + GET (newhead.sumhash_size) * sizeof (struct sumhashent));
418 /* The new file is empty now. */
419 SET (newhead.namehash_used, 0);
420 SET (newhead.string_used, 0);
421 SET (newhead.locrectab_used, 0);
422 SET (newhead.sumhash_used, 0);
424 /* Write out the header and create room for the other data structures. */
425 if (TEMP_FAILURE_RETRY (write (fd, &newhead, sizeof (newhead)))
426 != sizeof (newhead))
428 int errval = errno;
429 unlink (fname);
430 error (EXIT_FAILURE, errval, _("cannot initialize archive file"));
433 if (ftruncate64 (fd, total) != 0)
435 int errval = errno;
436 unlink (fname);
437 error (EXIT_FAILURE, errval, _("cannot resize archive file"));
440 size_t reserved, mmap_len;
441 int xflags;
442 void *mmap_base;
443 void *p = prepare_address_space (fd, total, &reserved, &xflags, &mmap_base,
444 &mmap_len);
446 /* Map the header and all the administration data structures. */
447 p = mmap64 (p, total, PROT_READ | PROT_WRITE, MAP_SHARED | xflags, fd, 0);
448 if (p == MAP_FAILED)
450 int errval = errno;
451 unlink (fname);
452 error (EXIT_FAILURE, errval, _("cannot map archive header"));
455 /* Lock the new file. */
456 if (lockf64 (fd, F_LOCK, total) != 0)
458 int errval = errno;
459 unlink (fname);
460 error (EXIT_FAILURE, errval, _("cannot lock new archive"));
463 new_ah.mmaped = total;
464 new_ah.mmap_base = mmap_base;
465 new_ah.mmap_len = mmap_len;
466 new_ah.addr = p;
467 new_ah.fd = fd;
468 new_ah.reserved = reserved;
470 /* Walk through the hash name hash table to find out what data is
471 still referenced and transfer it into the new file. */
472 oldnamehashtab = (struct namehashent *) ((char *) ah->addr
473 + GET (head->namehash_offset));
475 /* Sort the old locrec table in order of data position. */
476 struct oldlocrecent oldlocrecarray[GET (head->namehash_size)];
477 for (cnt = 0, loccnt = 0; cnt < GET (head->namehash_size); ++cnt)
478 if (GET (oldnamehashtab[cnt].locrec_offset) != 0)
480 oldlocrecarray[loccnt].cnt = cnt;
481 oldlocrecarray[loccnt++].locrec
482 = (struct locrecent *) ((char *) ah->addr
483 + GET (oldnamehashtab[cnt].locrec_offset));
485 qsort (oldlocrecarray, loccnt, sizeof (struct oldlocrecent),
486 oldlocrecentcmp);
488 uint32_t last_locrec_offset = 0;
489 for (cnt = 0; cnt < loccnt; ++cnt)
491 /* Insert this entry in the new hash table. */
492 locale_data_t old_data;
493 unsigned int idx;
494 struct locrecent *oldlocrec = oldlocrecarray[cnt].locrec;
496 for (idx = 0; idx < __LC_LAST; ++idx)
497 if (idx != LC_ALL)
499 old_data[idx].size = GET (oldlocrec->record[idx].len);
500 old_data[idx].addr
501 = ((char *) ah->addr + GET (oldlocrec->record[idx].offset));
503 __md5_buffer (old_data[idx].addr, old_data[idx].size,
504 old_data[idx].sum);
507 if (cnt > 0 && oldlocrecarray[cnt - 1].locrec == oldlocrec)
509 const char *oldname
510 = ((char *) ah->addr
511 + GET (oldnamehashtab[oldlocrecarray[cnt
512 - 1].cnt].name_offset));
514 add_alias
515 (&new_ah,
516 ((char *) ah->addr
517 + GET (oldnamehashtab[oldlocrecarray[cnt].cnt].name_offset)),
518 0, oldname, &last_locrec_offset);
519 continue;
522 last_locrec_offset =
523 add_locale
524 (&new_ah,
525 ((char *) ah->addr
526 + GET (oldnamehashtab[oldlocrecarray[cnt].cnt].name_offset)),
527 old_data, 0);
528 if (last_locrec_offset == 0)
529 error (EXIT_FAILURE, 0, _("cannot extend locale archive file"));
532 /* Make the file globally readable. */
533 if (fchmod (fd, S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH) == -1)
535 int errval = errno;
536 unlink (fname);
537 error (EXIT_FAILURE, errval,
538 _("cannot change mode of resized locale archive"));
541 /* Rename the new file. */
542 if (rename (fname, archivefname) != 0)
544 int errval = errno;
545 unlink (fname);
546 error (EXIT_FAILURE, errval, _("cannot rename new archive"));
549 /* Close the old file. */
550 close_archive (ah);
552 /* Add the information for the new one. */
553 *ah = new_ah;
557 void
558 open_archive (struct locarhandle *ah, bool readonly)
560 struct stat64 st;
561 struct stat64 st2;
562 int fd;
563 struct locarhead head;
564 int retry = 0;
565 size_t prefix_len = output_prefix ? strlen (output_prefix) : 0;
566 char default_fname[prefix_len + sizeof (ARCHIVE_NAME)];
567 const char *archivefname = ah->fname;
569 /* If ah has a non-NULL fname open that otherwise open the default. */
570 if (archivefname == NULL)
572 archivefname = default_fname;
573 if (output_prefix)
574 memcpy (default_fname, output_prefix, prefix_len);
575 strcpy (default_fname + prefix_len, ARCHIVE_NAME);
578 while (1)
580 /* Open the archive. We must have exclusive write access. */
581 fd = open64 (archivefname, readonly ? O_RDONLY : O_RDWR);
582 if (fd == -1)
584 /* Maybe the file does not yet exist? If we are opening
585 the default locale archive we ignore the failure and
586 list an empty archive, otherwise we print an error
587 and exit. */
588 if (errno == ENOENT && archivefname == default_fname)
590 if (readonly)
592 static const struct locarhead nullhead =
594 .namehash_used = 0,
595 .namehash_offset = 0,
596 .namehash_size = 0
599 ah->addr = (void *) &nullhead;
600 ah->fd = -1;
602 else
603 create_archive (archivefname, ah);
605 return;
607 else
608 error (EXIT_FAILURE, errno, _("cannot open locale archive \"%s\""),
609 archivefname);
612 if (fstat64 (fd, &st) < 0)
613 error (EXIT_FAILURE, errno, _("cannot stat locale archive \"%s\""),
614 archivefname);
616 if (!readonly && lockf64 (fd, F_LOCK, sizeof (struct locarhead)) == -1)
618 close (fd);
620 if (retry++ < max_locarchive_open_retry)
622 struct timespec req;
624 /* Wait for a bit. */
625 req.tv_sec = 0;
626 req.tv_nsec = 1000000 * (random () % 500 + 1);
627 (void) nanosleep (&req, NULL);
629 continue;
632 error (EXIT_FAILURE, errno, _("cannot lock locale archive \"%s\""),
633 archivefname);
636 /* One more check. Maybe another process replaced the archive file
637 with a new, larger one since we opened the file. */
638 if (stat64 (archivefname, &st2) == -1
639 || st.st_dev != st2.st_dev
640 || st.st_ino != st2.st_ino)
642 (void) lockf64 (fd, F_ULOCK, sizeof (struct locarhead));
643 close (fd);
644 continue;
647 /* Leave the loop. */
648 break;
651 /* Read the header. */
652 if (TEMP_FAILURE_RETRY (read (fd, &head, sizeof (head))) != sizeof (head))
654 (void) lockf64 (fd, F_ULOCK, sizeof (struct locarhead));
655 error (EXIT_FAILURE, errno, _("cannot read archive header"));
658 ah->fd = fd;
659 ah->mmaped = st.st_size;
661 size_t reserved, mmap_len;
662 int xflags;
663 void *mmap_base;
664 void *p = prepare_address_space (fd, st.st_size, &reserved, &xflags,
665 &mmap_base, &mmap_len);
667 /* Map the entire file. We might need to compare the category data
668 in the file with the newly added data. */
669 ah->addr = mmap64 (p, st.st_size, PROT_READ | (readonly ? 0 : PROT_WRITE),
670 MAP_SHARED | xflags, fd, 0);
671 if (ah->addr == MAP_FAILED)
673 (void) lockf64 (fd, F_ULOCK, sizeof (struct locarhead));
674 error (EXIT_FAILURE, errno, _("cannot map archive header"));
676 ah->reserved = reserved;
677 ah->mmap_base = mmap_base;
678 ah->mmap_len = mmap_len;
682 void
683 close_archive (struct locarhandle *ah)
685 if (ah->fd != -1)
687 if (ah->mmap_base)
688 munmap (ah->mmap_base, ah->mmap_len);
689 else
690 munmap (ah->addr, ah->reserved);
691 close (ah->fd);
695 #include "../../intl/explodename.c"
696 #include "../../intl/l10nflist.c"
698 static struct namehashent *
699 insert_name (struct locarhandle *ah,
700 const char *name, size_t name_len, bool replace)
702 const struct locarhead *const head = ah->addr;
703 struct namehashent *namehashtab
704 = (struct namehashent *) ((char *) ah->addr
705 + GET (head->namehash_offset));
706 unsigned int insert_idx, idx, incr;
708 /* Hash value of the locale name. */
709 uint32_t hval = archive_hashval (name, name_len);
711 insert_idx = -1;
712 idx = hval % GET (head->namehash_size);
713 incr = 1 + hval % (GET (head->namehash_size) - 2);
715 /* If the name_offset field is zero this means this is a
716 deleted entry and therefore no entry can be found. */
717 while (GET (namehashtab[idx].name_offset) != 0)
719 if (GET (namehashtab[idx].hashval) == hval
720 && (strcmp (name,
721 (char *) ah->addr + GET (namehashtab[idx].name_offset))
722 == 0))
724 /* Found the entry. */
725 if (GET (namehashtab[idx].locrec_offset) != 0 && ! replace)
727 if (! be_quiet)
728 error (0, 0, _("locale '%s' already exists"), name);
729 return NULL;
732 break;
735 if (GET (namehashtab[idx].hashval) == hval && ! be_quiet)
737 error (0, 0, "hash collision (%u) %s, %s",
738 hval, name,
739 (char *) ah->addr + GET (namehashtab[idx].name_offset));
742 /* Remember the first place we can insert the new entry. */
743 if (GET (namehashtab[idx].locrec_offset) == 0 && insert_idx == -1)
744 insert_idx = idx;
746 idx += incr;
747 if (idx >= GET (head->namehash_size))
748 idx -= GET (head->namehash_size);
751 /* Add as early as possible. */
752 if (insert_idx != -1)
753 idx = insert_idx;
755 SET (namehashtab[idx].hashval, hval); /* no-op if replacing an old entry. */
756 return &namehashtab[idx];
759 static void
760 add_alias (struct locarhandle *ah, const char *alias, bool replace,
761 const char *oldname, uint32_t *locrec_offset_p)
763 uint32_t locrec_offset = *locrec_offset_p;
764 struct locarhead *head = ah->addr;
765 const size_t name_len = strlen (alias);
766 struct namehashent *namehashent = insert_name (ah, alias, strlen (alias),
767 replace);
768 if (namehashent == NULL && ! replace)
769 return;
771 if (GET (namehashent->name_offset) == 0)
773 /* We are adding a new hash entry for this alias.
774 Determine whether we have to resize the file. */
775 if (GET (head->string_used) + name_len + 1 > GET (head->string_size)
776 || (100 * GET (head->namehash_used)
777 > 75 * GET (head->namehash_size)))
779 /* The current archive is not large enough. */
780 enlarge_archive (ah, head);
782 /* The locrecent might have moved, so we have to look up
783 the old name afresh. */
784 namehashent = insert_name (ah, oldname, strlen (oldname), true);
785 assert (GET (namehashent->name_offset) != 0);
786 assert (GET (namehashent->locrec_offset) != 0);
787 *locrec_offset_p = GET (namehashent->locrec_offset);
789 /* Tail call to try the whole thing again. */
790 add_alias (ah, alias, replace, oldname, locrec_offset_p);
791 return;
794 /* Add the name string. */
795 memcpy (ah->addr + GET (head->string_offset) + GET (head->string_used),
796 alias, name_len + 1);
797 SET (namehashent->name_offset,
798 GET (head->string_offset) + GET (head->string_used));
799 INC (head->string_used, name_len + 1);
801 INC (head->namehash_used, 1);
804 if (GET (namehashent->locrec_offset) != 0)
806 /* Replacing an existing entry.
807 Mark that we are no longer using the old locrecent. */
808 struct locrecent *locrecent
809 = (struct locrecent *) ((char *) ah->addr
810 + GET (namehashent->locrec_offset));
811 INC (locrecent->refs, -1);
814 /* Point this entry at the locrecent installed for the main name. */
815 SET (namehashent->locrec_offset, locrec_offset);
818 static int /* qsort comparator used below */
819 cmpcategorysize (const void *a, const void *b)
821 if (*(const void **) a == NULL)
822 return 1;
823 if (*(const void **) b == NULL)
824 return -1;
825 return ((*(const struct locale_category_data **) a)->size
826 - (*(const struct locale_category_data **) b)->size);
829 /* Check the content of the archive for duplicates. Add the content
830 of the files if necessary. Returns the locrec_offset. */
831 static uint32_t
832 add_locale (struct locarhandle *ah,
833 const char *name, locale_data_t data, bool replace)
835 /* First look for the name. If it already exists and we are not
836 supposed to replace it don't do anything. If it does not exist
837 we have to allocate a new locale record. */
838 size_t name_len = strlen (name);
839 uint32_t file_offsets[__LC_LAST];
840 unsigned int num_new_offsets = 0;
841 struct sumhashent *sumhashtab;
842 uint32_t hval;
843 unsigned int cnt, idx;
844 struct locarhead *head;
845 struct namehashent *namehashent;
846 unsigned int incr;
847 struct locrecent *locrecent;
848 off64_t lastoffset;
849 char *ptr;
850 struct locale_category_data *size_order[__LC_LAST];
851 /* Page size alignment is a minor optimization for locality; use a
852 common value here rather than making the localedef output depend
853 on the page size of the system on which localedef is run. See
854 <https://sourceware.org/glibc/wiki/Development_Todo/Master#Locale_archive_alignment>
855 for more discussion. */
856 const size_t pagesz = 4096;
857 int small_mask;
859 head = ah->addr;
860 sumhashtab = (struct sumhashent *) ((char *) ah->addr
861 + GET (head->sumhash_offset));
863 memset (file_offsets, 0, sizeof (file_offsets));
865 size_order[LC_ALL] = NULL;
866 for (cnt = 0; cnt < __LC_LAST; ++cnt)
867 if (cnt != LC_ALL)
868 size_order[cnt] = &data[cnt];
870 /* Sort the array in ascending order of data size. */
871 qsort (size_order, __LC_LAST, sizeof size_order[0], cmpcategorysize);
873 small_mask = 0;
874 data[LC_ALL].size = 0;
875 for (cnt = 0; cnt < __LC_LAST; ++cnt)
876 if (size_order[cnt] != NULL)
878 const size_t rounded_size = (size_order[cnt]->size + 15) & -16;
879 if (data[LC_ALL].size + rounded_size > 2 * pagesz)
881 /* This category makes the small-categories block
882 stop being small, so this is the end of the road. */
884 size_order[cnt++] = NULL;
885 while (cnt < __LC_LAST);
886 break;
888 data[LC_ALL].size += rounded_size;
889 small_mask |= 1 << (size_order[cnt] - data);
892 /* Copy the data for all the small categories into the LC_ALL
893 pseudo-category. */
895 data[LC_ALL].addr = alloca (data[LC_ALL].size);
896 memset (data[LC_ALL].addr, 0, data[LC_ALL].size);
898 ptr = data[LC_ALL].addr;
899 for (cnt = 0; cnt < __LC_LAST; ++cnt)
900 if (small_mask & (1 << cnt))
902 memcpy (ptr, data[cnt].addr, data[cnt].size);
903 ptr += (data[cnt].size + 15) & -16;
905 __md5_buffer (data[LC_ALL].addr, data[LC_ALL].size, data[LC_ALL].sum);
907 /* For each locale category data set determine whether the same data
908 is already somewhere in the archive. */
909 for (cnt = 0; cnt < __LC_LAST; ++cnt)
910 if (small_mask == 0 ? cnt != LC_ALL : !(small_mask & (1 << cnt)))
912 ++num_new_offsets;
914 /* Compute the hash value of the checksum to determine a
915 starting point for the search in the MD5 hash value
916 table. */
917 hval = archive_hashval (data[cnt].sum, 16);
919 idx = hval % GET (head->sumhash_size);
920 incr = 1 + hval % (GET (head->sumhash_size) - 2);
922 while (GET (sumhashtab[idx].file_offset) != 0)
924 if (memcmp (data[cnt].sum, sumhashtab[idx].sum, 16) == 0)
926 /* Check the content, there could be a collision of
927 the hash sum.
929 Unfortunately the sumhashent record does not include
930 the size of the stored data. So we have to search for
931 it. */
932 locrecent
933 = (struct locrecent *) ((char *) ah->addr
934 + GET (head->locrectab_offset));
935 size_t iloc;
936 for (iloc = 0; iloc < GET (head->locrectab_used); ++iloc)
937 if (GET (locrecent[iloc].refs) != 0
938 && (GET (locrecent[iloc].record[cnt].offset)
939 == GET (sumhashtab[idx].file_offset)))
940 break;
942 if (iloc != GET (head->locrectab_used)
943 && data[cnt].size == GET (locrecent[iloc].record[cnt].len)
944 /* We have to compare the content. Either we can
945 have the data mmaped or we have to read from
946 the file. */
947 && (file_data_available_p
948 (ah, GET (sumhashtab[idx].file_offset),
949 data[cnt].size)
950 ? memcmp (data[cnt].addr,
951 (char *) ah->addr
952 + GET (sumhashtab[idx].file_offset),
953 data[cnt].size) == 0
954 : compare_from_file (ah, data[cnt].addr,
955 GET (sumhashtab[idx].file_offset),
956 data[cnt].size) == 0))
958 /* Found it. */
959 file_offsets[cnt] = GET (sumhashtab[idx].file_offset);
960 --num_new_offsets;
961 break;
965 idx += incr;
966 if (idx >= GET (head->sumhash_size))
967 idx -= GET (head->sumhash_size);
971 /* Find a slot for the locale name in the hash table. */
972 namehashent = insert_name (ah, name, name_len, replace);
973 if (namehashent == NULL) /* Already exists and !REPLACE. */
974 return 0;
976 /* Determine whether we have to resize the file. */
977 if ((100 * (GET (head->sumhash_used) + num_new_offsets)
978 > 75 * GET (head->sumhash_size))
979 || (GET (namehashent->locrec_offset) == 0
980 && (GET (head->locrectab_used) == GET (head->locrectab_size)
981 || (GET (head->string_used) + name_len + 1
982 > GET (head->string_size))
983 || (100 * GET (head->namehash_used)
984 > 75 * GET (head->namehash_size)))))
986 /* The current archive is not large enough. */
987 enlarge_archive (ah, head);
988 return add_locale (ah, name, data, replace);
991 /* Add the locale data which is not yet in the archive. */
992 for (cnt = 0, lastoffset = 0; cnt < __LC_LAST; ++cnt)
993 if ((small_mask == 0 ? cnt != LC_ALL : !(small_mask & (1 << cnt)))
994 && file_offsets[cnt] == 0)
996 /* The data for this section is not yet available in the
997 archive. Append it. */
998 off64_t lastpos;
999 uint32_t md5hval;
1001 lastpos = lseek64 (ah->fd, 0, SEEK_END);
1002 if (lastpos == (off64_t) -1)
1003 error (EXIT_FAILURE, errno, _("cannot add to locale archive"));
1005 /* If block of small categories would cross page boundary,
1006 align it unless it immediately follows a large category. */
1007 if (cnt == LC_ALL && lastoffset != lastpos
1008 && ((((lastpos & (pagesz - 1)) + data[cnt].size + pagesz - 1)
1009 & -pagesz)
1010 > ((data[cnt].size + pagesz - 1) & -pagesz)))
1012 size_t sz = pagesz - (lastpos & (pagesz - 1));
1013 char *zeros = alloca (sz);
1015 memset (zeros, 0, sz);
1016 if (TEMP_FAILURE_RETRY (write (ah->fd, zeros, sz) != sz))
1017 error (EXIT_FAILURE, errno,
1018 _("cannot add to locale archive"));
1020 lastpos += sz;
1023 /* Align all data to a 16 byte boundary. */
1024 if ((lastpos & 15) != 0)
1026 static const char zeros[15] = { 0, };
1028 if (TEMP_FAILURE_RETRY (write (ah->fd, zeros, 16 - (lastpos & 15)))
1029 != 16 - (lastpos & 15))
1030 error (EXIT_FAILURE, errno, _("cannot add to locale archive"));
1032 lastpos += 16 - (lastpos & 15);
1035 /* Remember the position. */
1036 file_offsets[cnt] = lastpos;
1037 lastoffset = lastpos + data[cnt].size;
1039 /* Write the data. */
1040 if (TEMP_FAILURE_RETRY (write (ah->fd, data[cnt].addr, data[cnt].size))
1041 != data[cnt].size)
1042 error (EXIT_FAILURE, errno, _("cannot add to locale archive"));
1044 /* Add the hash value to the hash table. */
1045 md5hval = archive_hashval (data[cnt].sum, 16);
1047 idx = md5hval % GET (head->sumhash_size);
1048 incr = 1 + md5hval % (GET (head->sumhash_size) - 2);
1050 while (GET (sumhashtab[idx].file_offset) != 0)
1052 idx += incr;
1053 if (idx >= GET (head->sumhash_size))
1054 idx -= GET (head->sumhash_size);
1057 memcpy (sumhashtab[idx].sum, data[cnt].sum, 16);
1058 SET (sumhashtab[idx].file_offset, file_offsets[cnt]);
1060 INC (head->sumhash_used, 1);
1063 lastoffset = file_offsets[LC_ALL];
1064 for (cnt = 0; cnt < __LC_LAST; ++cnt)
1065 if (small_mask & (1 << cnt))
1067 file_offsets[cnt] = lastoffset;
1068 lastoffset += (data[cnt].size + 15) & -16;
1071 if (GET (namehashent->name_offset) == 0)
1073 /* Add the name string. */
1074 memcpy ((char *) ah->addr + GET (head->string_offset)
1075 + GET (head->string_used),
1076 name, name_len + 1);
1077 SET (namehashent->name_offset,
1078 GET (head->string_offset) + GET (head->string_used));
1079 INC (head->string_used, name_len + 1);
1080 INC (head->namehash_used, 1);
1083 if (GET (namehashent->locrec_offset == 0))
1085 /* Allocate a name location record. */
1086 SET (namehashent->locrec_offset, (GET (head->locrectab_offset)
1087 + (GET (head->locrectab_used)
1088 * sizeof (struct locrecent))));
1089 INC (head->locrectab_used, 1);
1090 locrecent = (struct locrecent *) ((char *) ah->addr
1091 + GET (namehashent->locrec_offset));
1092 SET (locrecent->refs, 1);
1094 else
1096 /* If there are other aliases pointing to this locrecent,
1097 we still need a new one. If not, reuse the old one. */
1099 locrecent = (struct locrecent *) ((char *) ah->addr
1100 + GET (namehashent->locrec_offset));
1101 if (GET (locrecent->refs) > 1)
1103 INC (locrecent->refs, -1);
1104 SET (namehashent->locrec_offset, (GET (head->locrectab_offset)
1105 + (GET (head->locrectab_used)
1106 * sizeof (struct locrecent))));
1107 INC (head->locrectab_used, 1);
1108 locrecent
1109 = (struct locrecent *) ((char *) ah->addr
1110 + GET (namehashent->locrec_offset));
1111 SET (locrecent->refs, 1);
1115 /* Fill in the table with the locations of the locale data. */
1116 for (cnt = 0; cnt < __LC_LAST; ++cnt)
1118 SET (locrecent->record[cnt].offset, file_offsets[cnt]);
1119 SET (locrecent->record[cnt].len, data[cnt].size);
1122 return GET (namehashent->locrec_offset);
1126 /* Check the content of the archive for duplicates. Add the content
1127 of the files if necessary. Add all the names, possibly overwriting
1128 old files. */
1130 add_locale_to_archive (ah, name, data, replace)
1131 struct locarhandle *ah;
1132 const char *name;
1133 locale_data_t data;
1134 bool replace;
1136 char *normalized_name = NULL;
1137 uint32_t locrec_offset;
1139 /* First analyze the name to decide how to archive it. */
1140 const char *language;
1141 const char *modifier;
1142 const char *territory;
1143 const char *codeset;
1144 const char *normalized_codeset;
1145 int mask = _nl_explode_name (strdupa (name),
1146 &language, &modifier, &territory,
1147 &codeset, &normalized_codeset);
1148 if (mask == -1)
1149 return -1;
1151 if (mask & XPG_NORM_CODESET)
1152 /* This name contains a codeset in unnormalized form.
1153 We will store it in the archive with a normalized name. */
1154 asprintf (&normalized_name, "%s%s%s.%s%s%s",
1155 language, territory == NULL ? "" : "_", territory ?: "",
1156 (mask & XPG_NORM_CODESET) ? normalized_codeset : codeset,
1157 modifier == NULL ? "" : "@", modifier ?: "");
1159 /* This call does the main work. */
1160 locrec_offset = add_locale (ah, normalized_name ?: name, data, replace);
1161 if (locrec_offset == 0)
1163 free (normalized_name);
1164 if (mask & XPG_NORM_CODESET)
1165 free ((char *) normalized_codeset);
1166 return -1;
1169 if ((mask & XPG_CODESET) == 0)
1171 /* This name lacks a codeset, so determine the locale's codeset and
1172 add an alias for its name with normalized codeset appended. */
1174 const struct
1176 unsigned int magic;
1177 unsigned int nstrings;
1178 unsigned int strindex[0];
1179 } *filedata = data[LC_CTYPE].addr;
1180 codeset = (char *) filedata
1181 + maybe_swap_uint32 (filedata->strindex[_NL_ITEM_INDEX
1182 (_NL_CTYPE_CODESET_NAME)]);
1183 char *normalized_codeset_name = NULL;
1185 normalized_codeset = _nl_normalize_codeset (codeset, strlen (codeset));
1186 mask |= XPG_NORM_CODESET;
1188 asprintf (&normalized_codeset_name, "%s%s%s.%s%s%s",
1189 language, territory == NULL ? "" : "_", territory ?: "",
1190 normalized_codeset,
1191 modifier == NULL ? "" : "@", modifier ?: "");
1193 add_alias (ah, normalized_codeset_name, replace,
1194 normalized_name ?: name, &locrec_offset);
1195 free (normalized_codeset_name);
1198 /* Now read the locale.alias files looking for lines whose
1199 right hand side matches our name after normalization. */
1200 int result = 0;
1201 if (alias_file != NULL)
1203 FILE *fp;
1204 fp = fopen (alias_file, "rm");
1205 if (fp == NULL)
1206 error (1, errno, _("locale alias file `%s' not found"),
1207 alias_file);
1209 /* No threads present. */
1210 __fsetlocking (fp, FSETLOCKING_BYCALLER);
1212 while (! feof_unlocked (fp))
1214 /* It is a reasonable approach to use a fix buffer here
1215 because
1216 a) we are only interested in the first two fields
1217 b) these fields must be usable as file names and so must
1218 not be that long */
1219 char buf[BUFSIZ];
1220 char *alias;
1221 char *value;
1222 char *cp;
1224 if (fgets_unlocked (buf, BUFSIZ, fp) == NULL)
1225 /* EOF reached. */
1226 break;
1228 cp = buf;
1229 /* Ignore leading white space. */
1230 while (isspace (cp[0]) && cp[0] != '\n')
1231 ++cp;
1233 /* A leading '#' signals a comment line. */
1234 if (cp[0] != '\0' && cp[0] != '#' && cp[0] != '\n')
1236 alias = cp++;
1237 while (cp[0] != '\0' && !isspace (cp[0]))
1238 ++cp;
1239 /* Terminate alias name. */
1240 if (cp[0] != '\0')
1241 *cp++ = '\0';
1243 /* Now look for the beginning of the value. */
1244 while (isspace (cp[0]))
1245 ++cp;
1247 if (cp[0] != '\0')
1249 value = cp++;
1250 while (cp[0] != '\0' && !isspace (cp[0]))
1251 ++cp;
1252 /* Terminate value. */
1253 if (cp[0] == '\n')
1255 /* This has to be done to make the following
1256 test for the end of line possible. We are
1257 looking for the terminating '\n' which do not
1258 overwrite here. */
1259 *cp++ = '\0';
1260 *cp = '\n';
1262 else if (cp[0] != '\0')
1263 *cp++ = '\0';
1265 /* Does this alias refer to our locale? We will
1266 normalize the right hand side and compare the
1267 elements of the normalized form. */
1269 const char *rhs_language;
1270 const char *rhs_modifier;
1271 const char *rhs_territory;
1272 const char *rhs_codeset;
1273 const char *rhs_normalized_codeset;
1274 int rhs_mask = _nl_explode_name (value,
1275 &rhs_language,
1276 &rhs_modifier,
1277 &rhs_territory,
1278 &rhs_codeset,
1279 &rhs_normalized_codeset);
1280 if (rhs_mask == -1)
1282 result = -1;
1283 goto out;
1285 if (!strcmp (language, rhs_language)
1286 && ((rhs_mask & XPG_CODESET)
1287 /* He has a codeset, it must match normalized. */
1288 ? !strcmp ((mask & XPG_NORM_CODESET)
1289 ? normalized_codeset : codeset,
1290 (rhs_mask & XPG_NORM_CODESET)
1291 ? rhs_normalized_codeset : rhs_codeset)
1292 /* He has no codeset, we must also have none. */
1293 : (mask & XPG_CODESET) == 0)
1294 /* Codeset (or lack thereof) matches. */
1295 && !strcmp (territory ?: "", rhs_territory ?: "")
1296 && !strcmp (modifier ?: "", rhs_modifier ?: ""))
1297 /* We have a winner. */
1298 add_alias (ah, alias, replace,
1299 normalized_name ?: name, &locrec_offset);
1300 if (rhs_mask & XPG_NORM_CODESET)
1301 free ((char *) rhs_normalized_codeset);
1306 /* Possibly not the whole line fits into the buffer.
1307 Ignore the rest of the line. */
1308 while (strchr (cp, '\n') == NULL)
1310 cp = buf;
1311 if (fgets_unlocked (buf, BUFSIZ, fp) == NULL)
1312 /* Make sure the inner loop will be left. The outer
1313 loop will exit at the `feof' test. */
1314 *cp = '\n';
1318 out:
1319 fclose (fp);
1322 free (normalized_name);
1324 if (mask & XPG_NORM_CODESET)
1325 free ((char *) normalized_codeset);
1327 return result;
1332 add_locales_to_archive (nlist, list, replace)
1333 size_t nlist;
1334 char *list[];
1335 bool replace;
1337 struct locarhandle ah;
1338 int result = 0;
1340 /* Open the archive. This call never returns if we cannot
1341 successfully open the archive. */
1342 ah.fname = NULL;
1343 open_archive (&ah, false);
1345 while (nlist-- > 0)
1347 const char *fname = *list++;
1348 size_t fnamelen = strlen (fname);
1349 struct stat64 st;
1350 DIR *dirp;
1351 struct dirent64 *d;
1352 int seen;
1353 locale_data_t data;
1354 int cnt;
1356 if (! be_quiet)
1357 printf (_("Adding %s\n"), fname);
1359 /* First see whether this really is a directory and whether it
1360 contains all the require locale category files. */
1361 if (stat64 (fname, &st) < 0)
1363 error (0, 0, _("stat of \"%s\" failed: %s: ignored"), fname,
1364 strerror (errno));
1365 continue;
1367 if (!S_ISDIR (st.st_mode))
1369 error (0, 0, _("\"%s\" is no directory; ignored"), fname);
1370 continue;
1373 dirp = opendir (fname);
1374 if (dirp == NULL)
1376 error (0, 0, _("cannot open directory \"%s\": %s: ignored"),
1377 fname, strerror (errno));
1378 continue;
1381 seen = 0;
1382 while ((d = readdir64 (dirp)) != NULL)
1384 for (cnt = 0; cnt < __LC_LAST; ++cnt)
1385 if (cnt != LC_ALL)
1386 if (strcmp (d->d_name, locnames[cnt]) == 0)
1388 unsigned char d_type;
1390 /* We have an object of the required name. If it's
1391 a directory we have to look at a file with the
1392 prefix "SYS_". Otherwise we have found what we
1393 are looking for. */
1394 #ifdef _DIRENT_HAVE_D_TYPE
1395 d_type = d->d_type;
1397 if (d_type != DT_REG)
1398 #endif
1400 char fullname[fnamelen + 2 * strlen (d->d_name) + 7];
1402 #ifdef _DIRENT_HAVE_D_TYPE
1403 if (d_type == DT_UNKNOWN)
1404 #endif
1406 strcpy (stpcpy (stpcpy (fullname, fname), "/"),
1407 d->d_name);
1409 if (stat64 (fullname, &st) == -1)
1410 /* We cannot stat the file, ignore it. */
1411 break;
1413 d_type = IFTODT (st.st_mode);
1416 if (d_type == DT_DIR)
1418 /* We have to do more tests. The file is a
1419 directory and it therefore must contain a
1420 regular file with the same name except a
1421 "SYS_" prefix. */
1422 char *t = stpcpy (stpcpy (fullname, fname), "/");
1423 strcpy (stpcpy (stpcpy (t, d->d_name), "/SYS_"),
1424 d->d_name);
1426 if (stat64 (fullname, &st) == -1)
1427 /* There is no SYS_* file or we cannot
1428 access it. */
1429 break;
1431 d_type = IFTODT (st.st_mode);
1435 /* If we found a regular file (eventually after
1436 following a symlink) we are successful. */
1437 if (d_type == DT_REG)
1438 ++seen;
1439 break;
1443 closedir (dirp);
1445 if (seen != __LC_LAST - 1)
1447 /* We don't have all locale category files. Ignore the name. */
1448 error (0, 0, _("incomplete set of locale files in \"%s\""),
1449 fname);
1450 continue;
1453 /* Add the files to the archive. To do this we first compute
1454 sizes and the MD5 sums of all the files. */
1455 for (cnt = 0; cnt < __LC_LAST; ++cnt)
1456 if (cnt != LC_ALL)
1458 char fullname[fnamelen + 2 * strlen (locnames[cnt]) + 7];
1459 int fd;
1461 strcpy (stpcpy (stpcpy (fullname, fname), "/"), locnames[cnt]);
1462 fd = open64 (fullname, O_RDONLY);
1463 if (fd == -1 || fstat64 (fd, &st) == -1)
1465 /* Cannot read the file. */
1466 if (fd != -1)
1467 close (fd);
1468 break;
1471 if (S_ISDIR (st.st_mode))
1473 char *t;
1474 close (fd);
1475 t = stpcpy (stpcpy (fullname, fname), "/");
1476 strcpy (stpcpy (stpcpy (t, locnames[cnt]), "/SYS_"),
1477 locnames[cnt]);
1479 fd = open64 (fullname, O_RDONLY);
1480 if (fd == -1 || fstat64 (fd, &st) == -1
1481 || !S_ISREG (st.st_mode))
1483 if (fd != -1)
1484 close (fd);
1485 break;
1489 /* Map the file. */
1490 data[cnt].addr = mmap64 (NULL, st.st_size, PROT_READ, MAP_SHARED,
1491 fd, 0);
1492 if (data[cnt].addr == MAP_FAILED)
1494 /* Cannot map it. */
1495 close (fd);
1496 break;
1499 data[cnt].size = st.st_size;
1500 __md5_buffer (data[cnt].addr, st.st_size, data[cnt].sum);
1502 /* We don't need the file descriptor anymore. */
1503 close (fd);
1506 if (cnt != __LC_LAST)
1508 while (cnt-- > 0)
1509 if (cnt != LC_ALL)
1510 munmap (data[cnt].addr, data[cnt].size);
1512 error (0, 0, _("cannot read all files in \"%s\": ignored"), fname);
1514 continue;
1517 result |= add_locale_to_archive (&ah, basename (fname), data, replace);
1519 for (cnt = 0; cnt < __LC_LAST; ++cnt)
1520 if (cnt != LC_ALL)
1521 munmap (data[cnt].addr, data[cnt].size);
1524 /* We are done. */
1525 close_archive (&ah);
1527 return result;
1532 delete_locales_from_archive (nlist, list)
1533 size_t nlist;
1534 char *list[];
1536 struct locarhandle ah;
1537 struct locarhead *head;
1538 struct namehashent *namehashtab;
1540 /* Open the archive. This call never returns if we cannot
1541 successfully open the archive. */
1542 ah.fname = NULL;
1543 open_archive (&ah, false);
1545 head = ah.addr;
1546 namehashtab = (struct namehashent *) ((char *) ah.addr
1547 + GET (head->namehash_offset));
1549 while (nlist-- > 0)
1551 const char *locname = *list++;
1552 uint32_t hval;
1553 unsigned int idx;
1554 unsigned int incr;
1556 /* Search for this locale in the archive. */
1557 hval = archive_hashval (locname, strlen (locname));
1559 idx = hval % GET (head->namehash_size);
1560 incr = 1 + hval % (GET (head->namehash_size) - 2);
1562 /* If the name_offset field is zero this means this is no
1563 deleted entry and therefore no entry can be found. */
1564 while (GET (namehashtab[idx].name_offset) != 0)
1566 if (GET (namehashtab[idx].hashval) == hval
1567 && (strcmp (locname,
1568 ((char *) ah.addr
1569 + GET (namehashtab[idx].name_offset)))
1570 == 0))
1572 /* Found the entry. Now mark it as removed by zero-ing
1573 the reference to the locale record. */
1574 SET (namehashtab[idx].locrec_offset, 0);
1575 break;
1578 idx += incr;
1579 if (idx >= GET (head->namehash_size))
1580 idx -= GET (head->namehash_size);
1583 if (GET (namehashtab[idx].name_offset) == 0 && ! be_quiet)
1584 error (0, 0, _("locale \"%s\" not in archive"), locname);
1587 close_archive (&ah);
1589 return 0;
1593 struct nameent
1595 char *name;
1596 uint32_t locrec_offset;
1600 struct dataent
1602 const unsigned char *sum;
1603 uint32_t file_offset;
1604 uint32_t nlink;
1608 static int
1609 nameentcmp (const void *a, const void *b)
1611 return strcmp (((const struct nameent *) a)->name,
1612 ((const struct nameent *) b)->name);
1616 static int
1617 dataentcmp (const void *a, const void *b)
1619 if (((const struct dataent *) a)->file_offset
1620 < ((const struct dataent *) b)->file_offset)
1621 return -1;
1623 if (((const struct dataent *) a)->file_offset
1624 > ((const struct dataent *) b)->file_offset)
1625 return 1;
1627 return 0;
1631 void
1632 show_archive_content (const char *fname, int verbose)
1634 struct locarhandle ah;
1635 struct locarhead *head;
1636 struct namehashent *namehashtab;
1637 struct nameent *names;
1638 size_t cnt, used;
1640 /* Open the archive. This call never returns if we cannot
1641 successfully open the archive. */
1642 ah.fname = fname;
1643 open_archive (&ah, true);
1645 head = ah.addr;
1647 names = (struct nameent *) xmalloc (GET (head->namehash_used)
1648 * sizeof (struct nameent));
1650 namehashtab = (struct namehashent *) ((char *) ah.addr
1651 + GET (head->namehash_offset));
1652 for (cnt = used = 0; cnt < GET (head->namehash_size); ++cnt)
1653 if (GET (namehashtab[cnt].locrec_offset) != 0)
1655 assert (used < GET (head->namehash_used));
1656 names[used].name = ah.addr + GET (namehashtab[cnt].name_offset);
1657 names[used++].locrec_offset = GET (namehashtab[cnt].locrec_offset);
1660 /* Sort the names. */
1661 qsort (names, used, sizeof (struct nameent), nameentcmp);
1663 if (verbose)
1665 struct dataent *files;
1666 struct sumhashent *sumhashtab;
1667 int sumused;
1669 files = (struct dataent *) xmalloc (GET (head->sumhash_used)
1670 * sizeof (struct dataent));
1672 sumhashtab = (struct sumhashent *) ((char *) ah.addr
1673 + GET (head->sumhash_offset));
1674 for (cnt = sumused = 0; cnt < GET (head->sumhash_size); ++cnt)
1675 if (GET (sumhashtab[cnt].file_offset) != 0)
1677 assert (sumused < GET (head->sumhash_used));
1678 files[sumused].sum = (const unsigned char *) sumhashtab[cnt].sum;
1679 files[sumused].file_offset = GET (sumhashtab[cnt].file_offset);
1680 files[sumused++].nlink = 0;
1683 /* Sort by file locations. */
1684 qsort (files, sumused, sizeof (struct dataent), dataentcmp);
1686 /* Compute nlink fields. */
1687 for (cnt = 0; cnt < used; ++cnt)
1689 struct locrecent *locrec;
1690 int idx;
1692 locrec = (struct locrecent *) ((char *) ah.addr
1693 + names[cnt].locrec_offset);
1694 for (idx = 0; idx < __LC_LAST; ++idx)
1695 if (GET (locrec->record[LC_ALL].offset) != 0
1696 ? (idx == LC_ALL
1697 || (GET (locrec->record[idx].offset)
1698 < GET (locrec->record[LC_ALL].offset))
1699 || ((GET (locrec->record[idx].offset)
1700 + GET (locrec->record[idx].len))
1701 > (GET (locrec->record[LC_ALL].offset)
1702 + GET (locrec->record[LC_ALL].len))))
1703 : idx != LC_ALL)
1705 struct dataent *data, dataent;
1707 dataent.file_offset = GET (locrec->record[idx].offset);
1708 data = (struct dataent *) bsearch (&dataent, files, sumused,
1709 sizeof (struct dataent),
1710 dataentcmp);
1711 assert (data != NULL);
1712 ++data->nlink;
1716 /* Print it. */
1717 for (cnt = 0; cnt < used; ++cnt)
1719 struct locrecent *locrec;
1720 int idx, i;
1722 locrec = (struct locrecent *) ((char *) ah.addr
1723 + names[cnt].locrec_offset);
1724 for (idx = 0; idx < __LC_LAST; ++idx)
1725 if (idx != LC_ALL)
1727 struct dataent *data, dataent;
1729 dataent.file_offset = GET (locrec->record[idx].offset);
1730 if (GET (locrec->record[LC_ALL].offset) != 0
1731 && (dataent.file_offset
1732 >= GET (locrec->record[LC_ALL].offset))
1733 && (dataent.file_offset + GET (locrec->record[idx].len)
1734 <= (GET (locrec->record[LC_ALL].offset)
1735 + GET (locrec->record[LC_ALL].len))))
1736 dataent.file_offset = GET (locrec->record[LC_ALL].offset);
1738 data = (struct dataent *) bsearch (&dataent, files, sumused,
1739 sizeof (struct dataent),
1740 dataentcmp);
1741 printf ("%6d %7x %3d%c ",
1742 GET (locrec->record[idx].len),
1743 GET (locrec->record[idx].offset),
1744 data->nlink,
1745 (dataent.file_offset
1746 == GET (locrec->record[LC_ALL].offset))
1747 ? '+' : ' ');
1748 for (i = 0; i < 16; i += 4)
1749 printf ("%02x%02x%02x%02x",
1750 data->sum[i], data->sum[i + 1],
1751 data->sum[i + 2], data->sum[i + 3]);
1752 printf (" %s/%s\n", names[cnt].name,
1753 idx == LC_MESSAGES ? "LC_MESSAGES/SYS_LC_MESSAGES"
1754 : locnames[idx]);
1758 else
1759 for (cnt = 0; cnt < used; ++cnt)
1760 puts (names[cnt].name);
1762 close_archive (&ah);
1764 exit (EXIT_SUCCESS);