blob: 2eaf8813ed3ba80da38b847e5b71637a0e02eee0 [file] [log] [blame]
Theodore Ts'o5bc5a892000-02-08 20:20:46 +00001/* Handle aliases for locale names.
Theodore Ts'ob0cacab2004-11-30 19:00:19 -05002 Copyright (C) 1995-1999, 2000-2001, 2003 Free Software Foundation, Inc.
Theodore Ts'o5bc5a892000-02-08 20:20:46 +00003
Theodore Ts'oa04eba32003-05-03 16:35:17 -04004 This program is free software; you can redistribute it and/or modify it
5 under the terms of the GNU Library General Public License as published
6 by the Free Software Foundation; either version 2, or (at your option)
Theodore Ts'o5bc5a892000-02-08 20:20:46 +00007 any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
Theodore Ts'oa04eba32003-05-03 16:35:17 -040011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
Theodore Ts'o5bc5a892000-02-08 20:20:46 +000013
Theodore Ts'oa04eba32003-05-03 16:35:17 -040014 You should have received a copy of the GNU Library General Public
15 License along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
17 USA. */
18
19/* Tell glibc's <string.h> to provide a prototype for mempcpy().
20 This must come before <config.h> because <config.h> may include
21 <features.h>, and once <features.h> has been included, it's too late. */
22#ifndef _GNU_SOURCE
23# define _GNU_SOURCE 1
24#endif
Theodore Ts'o5bc5a892000-02-08 20:20:46 +000025
26#ifdef HAVE_CONFIG_H
27# include <config.h>
28#endif
29
30#include <ctype.h>
31#include <stdio.h>
Theodore Ts'oa04eba32003-05-03 16:35:17 -040032#if defined _LIBC || defined HAVE___FSETLOCKING
33# include <stdio_ext.h>
34#endif
Theodore Ts'o5bc5a892000-02-08 20:20:46 +000035#include <sys/types.h>
36
37#ifdef __GNUC__
Theodore Ts'ob0cacab2004-11-30 19:00:19 -050038# undef alloca
Theodore Ts'o5bc5a892000-02-08 20:20:46 +000039# define alloca __builtin_alloca
40# define HAVE_ALLOCA 1
41#else
Theodore Ts'ob0cacab2004-11-30 19:00:19 -050042# ifdef _MSC_VER
43# include <malloc.h>
44# define alloca _alloca
Theodore Ts'o5bc5a892000-02-08 20:20:46 +000045# else
Theodore Ts'ob0cacab2004-11-30 19:00:19 -050046# if defined HAVE_ALLOCA_H || defined _LIBC
47# include <alloca.h>
Theodore Ts'o5bc5a892000-02-08 20:20:46 +000048# else
Theodore Ts'ob0cacab2004-11-30 19:00:19 -050049# ifdef _AIX
50 #pragma alloca
51# else
52# ifndef alloca
Theodore Ts'o5bc5a892000-02-08 20:20:46 +000053char *alloca ();
Theodore Ts'ob0cacab2004-11-30 19:00:19 -050054# endif
Theodore Ts'o5bc5a892000-02-08 20:20:46 +000055# endif
56# endif
57# endif
58#endif
59
Theodore Ts'oa04eba32003-05-03 16:35:17 -040060#include <stdlib.h>
61#include <string.h>
Theodore Ts'o5bc5a892000-02-08 20:20:46 +000062
Theodore Ts'o5bc5a892000-02-08 20:20:46 +000063#include "gettextP.h"
64
Theodore Ts'ob0cacab2004-11-30 19:00:19 -050065#if ENABLE_RELOCATABLE
66# include "relocatable.h"
67#else
68# define relocate(pathname) (pathname)
69#endif
70
Theodore Ts'o5bc5a892000-02-08 20:20:46 +000071/* @@ end of prolog @@ */
72
73#ifdef _LIBC
74/* Rename the non ANSI C functions. This is required by the standard
75 because some ANSI C functions will require linking with this object
76 file and the name space must not be polluted. */
77# define strcasecmp __strcasecmp
78
Theodore Ts'oa04eba32003-05-03 16:35:17 -040079# ifndef mempcpy
80# define mempcpy __mempcpy
81# endif
Theodore Ts'o5bc5a892000-02-08 20:20:46 +000082# define HAVE_MEMPCPY 1
Theodore Ts'oa04eba32003-05-03 16:35:17 -040083# define HAVE___FSETLOCKING 1
Theodore Ts'o5bc5a892000-02-08 20:20:46 +000084
85/* We need locking here since we can be called from different places. */
86# include <bits/libc-lock.h>
87
88__libc_lock_define_initialized (static, lock);
89#endif
90
Theodore Ts'oa04eba32003-05-03 16:35:17 -040091#ifndef internal_function
92# define internal_function
93#endif
Theodore Ts'o5bc5a892000-02-08 20:20:46 +000094
Theodore Ts'oa04eba32003-05-03 16:35:17 -040095/* Some optimizations for glibc. */
96#ifdef _LIBC
97# define FEOF(fp) feof_unlocked (fp)
98# define FGETS(buf, n, fp) fgets_unlocked (buf, n, fp)
99#else
100# define FEOF(fp) feof (fp)
101# define FGETS(buf, n, fp) fgets (buf, n, fp)
102#endif
103
104/* For those losing systems which don't have `alloca' we have to add
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000105 some additional code emulating it. */
106#ifdef HAVE_ALLOCA
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400107# define freea(p) /* nothing */
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000108#else
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400109# define alloca(n) malloc (n)
110# define freea(p) free (p)
111#endif
112
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500113#if defined _LIBC_REENTRANT || HAVE_DECL_FGETS_UNLOCKED
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400114# undef fgets
115# define fgets(buf, len, s) fgets_unlocked (buf, len, s)
116#endif
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500117#if defined _LIBC_REENTRANT || HAVE_DECL_FEOF_UNLOCKED
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400118# undef feof
119# define feof(s) feof_unlocked (s)
120#endif
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000121
122
123struct alias_map
124{
125 const char *alias;
126 const char *value;
127};
128
129
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500130#ifndef _LIBC
131# define libc_freeres_ptr(decl) decl
132#endif
133
134libc_freeres_ptr (static char *string_space);
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400135static size_t string_space_act;
136static size_t string_space_max;
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500137libc_freeres_ptr (static struct alias_map *map);
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400138static size_t nmap;
139static size_t maxmap;
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000140
141
142/* Prototypes for local functions. */
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500143static size_t read_alias_file (const char *fname, int fname_len)
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000144 internal_function;
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500145static int extend_alias_table (void);
146static int alias_compare (const struct alias_map *map1,
147 const struct alias_map *map2);
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000148
149
150const char *
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500151_nl_expand_alias (const char *name)
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000152{
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400153 static const char *locale_alias_path;
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000154 struct alias_map *retval;
155 const char *result = NULL;
156 size_t added;
157
158#ifdef _LIBC
159 __libc_lock_lock (lock);
160#endif
161
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400162 if (locale_alias_path == NULL)
163 locale_alias_path = LOCALE_ALIAS_PATH;
164
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000165 do
166 {
167 struct alias_map item;
168
169 item.alias = name;
170
171 if (nmap > 0)
172 retval = (struct alias_map *) bsearch (&item, map, nmap,
173 sizeof (struct alias_map),
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500174 (int (*) (const void *,
175 const void *)
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000176 ) alias_compare);
177 else
178 retval = NULL;
179
180 /* We really found an alias. Return the value. */
181 if (retval != NULL)
182 {
183 result = retval->value;
184 break;
185 }
186
187 /* Perhaps we can find another alias file. */
188 added = 0;
189 while (added == 0 && locale_alias_path[0] != '\0')
190 {
191 const char *start;
192
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400193 while (locale_alias_path[0] == PATH_SEPARATOR)
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000194 ++locale_alias_path;
195 start = locale_alias_path;
196
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400197 while (locale_alias_path[0] != '\0'
198 && locale_alias_path[0] != PATH_SEPARATOR)
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000199 ++locale_alias_path;
200
201 if (start < locale_alias_path)
202 added = read_alias_file (start, locale_alias_path - start);
203 }
204 }
205 while (added != 0);
206
207#ifdef _LIBC
208 __libc_lock_unlock (lock);
209#endif
210
211 return result;
212}
213
214
215static size_t
216internal_function
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500217read_alias_file (const char *fname, int fname_len)
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000218{
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000219 FILE *fp;
220 char *full_fname;
221 size_t added;
222 static const char aliasfile[] = "/locale.alias";
223
224 full_fname = (char *) alloca (fname_len + sizeof aliasfile);
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000225#ifdef HAVE_MEMPCPY
226 mempcpy (mempcpy (full_fname, fname, fname_len),
227 aliasfile, sizeof aliasfile);
228#else
229 memcpy (full_fname, fname, fname_len);
230 memcpy (&full_fname[fname_len], aliasfile, sizeof aliasfile);
231#endif
232
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500233 fp = fopen (relocate (full_fname), "r");
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400234 freea (full_fname);
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000235 if (fp == NULL)
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400236 return 0;
237
238#ifdef HAVE___FSETLOCKING
239 /* No threads present. */
240 __fsetlocking (fp, FSETLOCKING_BYCALLER);
241#endif
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000242
243 added = 0;
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400244 while (!FEOF (fp))
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000245 {
246 /* It is a reasonable approach to use a fix buffer here because
247 a) we are only interested in the first two fields
248 b) these fields must be usable as file names and so must not
249 be that long
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500250 We avoid a multi-kilobyte buffer here since this would use up
251 stack space which we might not have if the program ran out of
252 memory. */
253 char buf[400];
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400254 char *alias;
255 char *value;
256 char *cp;
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000257
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400258 if (FGETS (buf, sizeof buf, fp) == NULL)
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000259 /* EOF reached. */
260 break;
261
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000262 cp = buf;
263 /* Ignore leading white space. */
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400264 while (isspace ((unsigned char) cp[0]))
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000265 ++cp;
266
267 /* A leading '#' signals a comment line. */
268 if (cp[0] != '\0' && cp[0] != '#')
269 {
270 alias = cp++;
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400271 while (cp[0] != '\0' && !isspace ((unsigned char) cp[0]))
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000272 ++cp;
273 /* Terminate alias name. */
274 if (cp[0] != '\0')
275 *cp++ = '\0';
276
277 /* Now look for the beginning of the value. */
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400278 while (isspace ((unsigned char) cp[0]))
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000279 ++cp;
280
281 if (cp[0] != '\0')
282 {
283 size_t alias_len;
284 size_t value_len;
285
286 value = cp++;
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400287 while (cp[0] != '\0' && !isspace ((unsigned char) cp[0]))
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000288 ++cp;
289 /* Terminate value. */
290 if (cp[0] == '\n')
291 {
292 /* This has to be done to make the following test
293 for the end of line possible. We are looking for
294 the terminating '\n' which do not overwrite here. */
295 *cp++ = '\0';
296 *cp = '\n';
297 }
298 else if (cp[0] != '\0')
299 *cp++ = '\0';
300
301 if (nmap >= maxmap)
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400302 if (__builtin_expect (extend_alias_table (), 0))
303 return added;
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000304
305 alias_len = strlen (alias) + 1;
306 value_len = strlen (value) + 1;
307
308 if (string_space_act + alias_len + value_len > string_space_max)
309 {
310 /* Increase size of memory pool. */
311 size_t new_size = (string_space_max
312 + (alias_len + value_len > 1024
313 ? alias_len + value_len : 1024));
314 char *new_pool = (char *) realloc (string_space, new_size);
315 if (new_pool == NULL)
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400316 return added;
317
318 if (__builtin_expect (string_space != new_pool, 0))
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000319 {
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400320 size_t i;
321
322 for (i = 0; i < nmap; i++)
323 {
324 map[i].alias += new_pool - string_space;
325 map[i].value += new_pool - string_space;
326 }
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000327 }
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400328
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000329 string_space = new_pool;
330 string_space_max = new_size;
331 }
332
333 map[nmap].alias = memcpy (&string_space[string_space_act],
334 alias, alias_len);
335 string_space_act += alias_len;
336
337 map[nmap].value = memcpy (&string_space[string_space_act],
338 value, value_len);
339 string_space_act += value_len;
340
341 ++nmap;
342 ++added;
343 }
344 }
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500345
346 /* Possibly not the whole line fits into the buffer. Ignore
347 the rest of the line. */
348 while (strchr (buf, '\n') == NULL)
349 if (FGETS (buf, sizeof buf, fp) == NULL)
350 /* Make sure the inner loop will be left. The outer loop
351 will exit at the `feof' test. */
352 break;
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000353 }
354
355 /* Should we test for ferror()? I think we have to silently ignore
356 errors. --drepper */
357 fclose (fp);
358
359 if (added > 0)
360 qsort (map, nmap, sizeof (struct alias_map),
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500361 (int (*) (const void *, const void *)) alias_compare);
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000362
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000363 return added;
364}
365
366
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400367static int
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000368extend_alias_table ()
369{
370 size_t new_size;
371 struct alias_map *new_map;
372
373 new_size = maxmap == 0 ? 100 : 2 * maxmap;
374 new_map = (struct alias_map *) realloc (map, (new_size
375 * sizeof (struct alias_map)));
376 if (new_map == NULL)
377 /* Simply don't extend: we don't have any more core. */
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400378 return -1;
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000379
380 map = new_map;
381 maxmap = new_size;
Theodore Ts'oa04eba32003-05-03 16:35:17 -0400382 return 0;
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000383}
384
385
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000386static int
Theodore Ts'ob0cacab2004-11-30 19:00:19 -0500387alias_compare (const struct alias_map *map1, const struct alias_map *map2)
Theodore Ts'o5bc5a892000-02-08 20:20:46 +0000388{
389#if defined _LIBC || defined HAVE_STRCASECMP
390 return strcasecmp (map1->alias, map2->alias);
391#else
392 const unsigned char *p1 = (const unsigned char *) map1->alias;
393 const unsigned char *p2 = (const unsigned char *) map2->alias;
394 unsigned char c1, c2;
395
396 if (p1 == p2)
397 return 0;
398
399 do
400 {
401 /* I know this seems to be odd but the tolower() function in
402 some systems libc cannot handle nonalpha characters. */
403 c1 = isupper (*p1) ? tolower (*p1) : *p1;
404 c2 = isupper (*p2) ? tolower (*p2) : *p2;
405 if (c1 == '\0')
406 break;
407 ++p1;
408 ++p2;
409 }
410 while (c1 == c2);
411
412 return c1 - c2;
413#endif
414}