1 /* Handle aliases for locale names.
2 Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
4 This file is part of the GNU C Library. Its master source is NOT part of
5 the C library, however.
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public License as
9 published by the Free Software Foundation; either version 2 of the
10 License, or (at your option) any later version.
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Library General Public License for more details.
17 You should have received a copy of the GNU Library General Public
18 License along with the GNU C Library; see the file COPYING.LIB. If not,
19 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
28 #include <sys/types.h>
31 # define alloca __builtin_alloca
32 # define HAVE_ALLOCA 1
34 # if defined HAVE_ALLOCA_H || defined _LIBC
47 #if defined STDC_HEADERS || defined _LIBC
58 #if defined HAVE_STRING_H || defined _LIBC
60 # define _GNU_SOURCE 1
66 # define memcpy(Dst, Src, Num) bcopy (Src, Dst, Num)
69 #if !HAVE_STRCHR && !defined _LIBC
78 /* @@ end of prolog @@ */
81 /* Rename the non ANSI C functions. This is required by the standard
82 because some ANSI C functions will require linking with this object
83 file and the name space must not be polluted. */
84 # define strcasecmp __strcasecmp
87 # define mempcpy __mempcpy
89 # define HAVE_MEMPCPY 1
91 /* We need locking here since we can be called from different places. */
92 # include <bits/libc-lock.h>
94 __libc_lock_define_initialized (static, lock
);
97 #ifndef internal_function
98 # define internal_function
101 /* For those loosing systems which don't have `alloca' we have to add
102 some additional code emulating it. */
104 /* Nothing has to be done. */
105 # define ADD_BLOCK(list, address) /* nothing */
106 # define FREE_BLOCKS(list) /* nothing */
111 struct block_list
*next
;
113 # define ADD_BLOCK(list, addr) \
115 struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \
116 /* If we cannot get a free block we cannot add the new element to \
118 if (newp != NULL) { \
119 newp->address = (addr); \
120 newp->next = (list); \
124 # define FREE_BLOCKS(list) \
126 while (list != NULL) { \
127 struct block_list *old = list; \
133 # define alloca(size) (malloc (size))
134 #endif /* have alloca */
136 #if defined _LIBC || defined HAVE_FGETS_UNLOCKED
138 # define fgets(buf, len, s) fgets_unlocked (buf, len, s)
140 #if defined _LIBC || defined HAVE_FEOF_UNLOCKED
142 # define feof(s) feof_unlocked (s)
153 static char *string_space
= NULL
;
154 static size_t string_space_act
= 0;
155 static size_t string_space_max
= 0;
156 static struct alias_map
*map
;
157 static size_t nmap
= 0;
158 static size_t maxmap
= 0;
161 /* Prototypes for local functions. */
162 static size_t read_alias_file
PARAMS ((const char *fname
, int fname_len
))
164 static void extend_alias_table
PARAMS ((void));
165 static int alias_compare
PARAMS ((const struct alias_map
*map1
,
166 const struct alias_map
*map2
));
170 _nl_expand_alias (name
)
173 static const char *locale_alias_path
= LOCALE_ALIAS_PATH
;
174 struct alias_map
*retval
;
175 const char *result
= NULL
;
179 __libc_lock_lock (lock
);
184 struct alias_map item
;
189 retval
= (struct alias_map
*) bsearch (&item
, map
, nmap
,
190 sizeof (struct alias_map
),
191 (int (*) PARAMS ((const void *,
197 /* We really found an alias. Return the value. */
200 result
= retval
->value
;
204 /* Perhaps we can find another alias file. */
206 while (added
== 0 && locale_alias_path
[0] != '\0')
210 while (locale_alias_path
[0] == ':')
212 start
= locale_alias_path
;
214 while (locale_alias_path
[0] != '\0' && locale_alias_path
[0] != ':')
217 if (start
< locale_alias_path
)
218 added
= read_alias_file (start
, locale_alias_path
- start
);
224 __libc_lock_unlock (lock
);
233 read_alias_file (fname
, fname_len
)
238 struct block_list
*block_list
= NULL
;
243 static const char aliasfile
[] = "/locale.alias";
245 full_fname
= (char *) alloca (fname_len
+ sizeof aliasfile
);
246 ADD_BLOCK (block_list
, full_fname
);
248 mempcpy (mempcpy (full_fname
, fname
, fname_len
),
249 aliasfile
, sizeof aliasfile
);
251 memcpy (full_fname
, fname
, fname_len
);
252 memcpy (&full_fname
[fname_len
], aliasfile
, sizeof aliasfile
);
255 fp
= fopen (full_fname
, "r");
258 FREE_BLOCKS (block_list
);
265 /* It is a reasonable approach to use a fix buffer here because
266 a) we are only interested in the first two fields
267 b) these fields must be usable as file names and so must not
275 if (fgets (buf
, sizeof buf
, fp
) == NULL
)
279 /* Possibly not the whole line fits into the buffer. Ignore
280 the rest of the line. */
281 if (strchr (buf
, '\n') == NULL
)
285 if (fgets (altbuf
, sizeof altbuf
, fp
) == NULL
)
286 /* Make sure the inner loop will be left. The outer loop
287 will exit at the `feof' test. */
289 while (strchr (altbuf
, '\n') == NULL
);
293 /* Ignore leading white space. */
294 while (isspace (cp
[0]))
297 /* A leading '#' signals a comment line. */
298 if (cp
[0] != '\0' && cp
[0] != '#')
301 while (cp
[0] != '\0' && !isspace (cp
[0]))
303 /* Terminate alias name. */
307 /* Now look for the beginning of the value. */
308 while (isspace (cp
[0]))
317 while (cp
[0] != '\0' && !isspace (cp
[0]))
319 /* Terminate value. */
322 /* This has to be done to make the following test
323 for the end of line possible. We are looking for
324 the terminating '\n' which do not overwrite here. */
328 else if (cp
[0] != '\0')
332 extend_alias_table ();
334 alias_len
= strlen (alias
) + 1;
335 value_len
= strlen (value
) + 1;
337 if (string_space_act
+ alias_len
+ value_len
> string_space_max
)
339 /* Increase size of memory pool. */
340 size_t new_size
= (string_space_max
341 + (alias_len
+ value_len
> 1024
342 ? alias_len
+ value_len
: 1024));
343 char *new_pool
= (char *) realloc (string_space
, new_size
);
344 if (new_pool
== NULL
)
346 FREE_BLOCKS (block_list
);
349 string_space
= new_pool
;
350 string_space_max
= new_size
;
353 map
[nmap
].alias
= memcpy (&string_space
[string_space_act
],
355 string_space_act
+= alias_len
;
357 map
[nmap
].value
= memcpy (&string_space
[string_space_act
],
359 string_space_act
+= value_len
;
367 /* Should we test for ferror()? I think we have to silently ignore
372 qsort (map
, nmap
, sizeof (struct alias_map
),
373 (int (*) PARAMS ((const void *, const void *))) alias_compare
);
375 FREE_BLOCKS (block_list
);
381 extend_alias_table ()
384 struct alias_map
*new_map
;
386 new_size
= maxmap
== 0 ? 100 : 2 * maxmap
;
387 new_map
= (struct alias_map
*) realloc (map
, (new_size
388 * sizeof (struct alias_map
)));
390 /* Simply don't extend: we don't have any more core. */
399 static void __attribute__ ((unused
))
402 if (string_space
!= NULL
)
407 text_set_element (__libc_subfreeres
, free_mem
);
412 alias_compare (map1
, map2
)
413 const struct alias_map
*map1
;
414 const struct alias_map
*map2
;
416 #if defined _LIBC || defined HAVE_STRCASECMP
417 return strcasecmp (map1
->alias
, map2
->alias
);
419 const unsigned char *p1
= (const unsigned char *) map1
->alias
;
420 const unsigned char *p2
= (const unsigned char *) map2
->alias
;
421 unsigned char c1
, c2
;
428 /* I know this seems to be odd but the tolower() function in
429 some systems libc cannot handle nonalpha characters. */
430 c1
= isupper (*p1
) ? tolower (*p1
) : *p1
;
431 c2
= isupper (*p2
) ? tolower (*p2
) : *p2
;