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
86 # define mempcpy __mempcpy
87 # define HAVE_MEMPCPY 1
89 /* We need locking here since we can be called from different places. */
90 # include <bits/libc-lock.h>
92 __libc_lock_define_initialized (static, lock
);
95 #ifndef internal_function
96 # define internal_function
99 /* For those loosing systems which don't have `alloca' we have to add
100 some additional code emulating it. */
102 /* Nothing has to be done. */
103 # define ADD_BLOCK(list, address) /* nothing */
104 # define FREE_BLOCKS(list) /* nothing */
109 struct block_list
*next
;
111 # define ADD_BLOCK(list, addr) \
113 struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \
114 /* If we cannot get a free block we cannot add the new element to \
116 if (newp != NULL) { \
117 newp->address = (addr); \
118 newp->next = (list); \
122 # define FREE_BLOCKS(list) \
124 while (list != NULL) { \
125 struct block_list *old = list; \
131 # define alloca(size) (malloc (size))
132 #endif /* have alloca */
134 #if defined _LIBC || defined HAVE_FGETS_UNLOCKED
136 # define fgets(buf, len, s) fgets_unlocked (buf, len, s)
138 #if defined _LIBC || defined HAVE_FEOF_UNLOCKED
140 # define feof(s) feof_unlocked (s)
151 static char *string_space
= NULL
;
152 static size_t string_space_act
= 0;
153 static size_t string_space_max
= 0;
154 static struct alias_map
*map
;
155 static size_t nmap
= 0;
156 static size_t maxmap
= 0;
159 /* Prototypes for local functions. */
160 static size_t read_alias_file
PARAMS ((const char *fname
, int fname_len
))
162 static void extend_alias_table
PARAMS ((void));
163 static int alias_compare
PARAMS ((const struct alias_map
*map1
,
164 const struct alias_map
*map2
));
168 _nl_expand_alias (name
)
171 static const char *locale_alias_path
= LOCALE_ALIAS_PATH
;
172 struct alias_map
*retval
;
173 const char *result
= NULL
;
177 __libc_lock_lock (lock
);
182 struct alias_map item
;
187 retval
= (struct alias_map
*) bsearch (&item
, map
, nmap
,
188 sizeof (struct alias_map
),
189 (int (*) PARAMS ((const void *,
195 /* We really found an alias. Return the value. */
198 result
= retval
->value
;
202 /* Perhaps we can find another alias file. */
204 while (added
== 0 && locale_alias_path
[0] != '\0')
208 while (locale_alias_path
[0] == ':')
210 start
= locale_alias_path
;
212 while (locale_alias_path
[0] != '\0' && locale_alias_path
[0] != ':')
215 if (start
< locale_alias_path
)
216 added
= read_alias_file (start
, locale_alias_path
- start
);
222 __libc_lock_unlock (lock
);
231 read_alias_file (fname
, fname_len
)
236 struct block_list
*block_list
= NULL
;
241 static const char aliasfile
[] = "/locale.alias";
243 full_fname
= (char *) alloca (fname_len
+ sizeof aliasfile
);
244 ADD_BLOCK (block_list
, full_fname
);
246 mempcpy (mempcpy (full_fname
, fname
, fname_len
),
247 aliasfile
, sizeof aliasfile
);
249 memcpy (full_fname
, fname
, fname_len
);
250 memcpy (&full_fname
[fname_len
], aliasfile
, sizeof aliasfile
);
253 fp
= fopen (full_fname
, "r");
256 FREE_BLOCKS (block_list
);
263 /* It is a reasonable approach to use a fix buffer here because
264 a) we are only interested in the first two fields
265 b) these fields must be usable as file names and so must not
273 if (fgets (buf
, sizeof buf
, fp
) == NULL
)
277 /* Possibly not the whole line fits into the buffer. Ignore
278 the rest of the line. */
279 if (strchr (buf
, '\n') == NULL
)
283 if (fgets (altbuf
, sizeof altbuf
, fp
) == NULL
)
284 /* Make sure the inner loop will be left. The outer loop
285 will exit at the `feof' test. */
287 while (strchr (altbuf
, '\n') == NULL
);
291 /* Ignore leading white space. */
292 while (isspace (cp
[0]))
295 /* A leading '#' signals a comment line. */
296 if (cp
[0] != '\0' && cp
[0] != '#')
299 while (cp
[0] != '\0' && !isspace (cp
[0]))
301 /* Terminate alias name. */
305 /* Now look for the beginning of the value. */
306 while (isspace (cp
[0]))
315 while (cp
[0] != '\0' && !isspace (cp
[0]))
317 /* Terminate value. */
320 /* This has to be done to make the following test
321 for the end of line possible. We are looking for
322 the terminating '\n' which do not overwrite here. */
326 else if (cp
[0] != '\0')
330 extend_alias_table ();
332 alias_len
= strlen (alias
) + 1;
333 value_len
= strlen (value
) + 1;
335 if (string_space_act
+ alias_len
+ value_len
> string_space_max
)
337 /* Increase size of memory pool. */
338 size_t new_size
= (string_space_max
339 + (alias_len
+ value_len
> 1024
340 ? alias_len
+ value_len
: 1024));
341 char *new_pool
= (char *) realloc (string_space
, new_size
);
342 if (new_pool
== NULL
)
344 FREE_BLOCKS (block_list
);
347 string_space
= new_pool
;
348 string_space_max
= new_size
;
351 map
[nmap
].alias
= memcpy (&string_space
[string_space_act
],
353 string_space_act
+= alias_len
;
355 map
[nmap
].value
= memcpy (&string_space
[string_space_act
],
357 string_space_act
+= value_len
;
365 /* Should we test for ferror()? I think we have to silently ignore
370 qsort (map
, nmap
, sizeof (struct alias_map
),
371 (int (*) PARAMS ((const void *, const void *))) alias_compare
);
373 FREE_BLOCKS (block_list
);
379 extend_alias_table ()
382 struct alias_map
*new_map
;
384 new_size
= maxmap
== 0 ? 100 : 2 * maxmap
;
385 new_map
= (struct alias_map
*) realloc (map
, (new_size
386 * sizeof (struct alias_map
)));
388 /* Simply don't extend: we don't have any more core. */
397 static void __attribute__ ((unused
))
400 if (string_space
!= NULL
)
405 text_set_element (__libc_subfreeres
, free_mem
);
410 alias_compare (map1
, map2
)
411 const struct alias_map
*map1
;
412 const struct alias_map
*map2
;
414 #if defined _LIBC || defined HAVE_STRCASECMP
415 return strcasecmp (map1
->alias
, map2
->alias
);
417 const unsigned char *p1
= (const unsigned char *) map1
->alias
;
418 const unsigned char *p2
= (const unsigned char *) map2
->alias
;
419 unsigned char c1
, c2
;
426 /* I know this seems to be odd but the tolower() function in
427 some systems libc cannot handle nonalpha characters. */
428 c1
= isupper (*p1
) ? tolower (*p1
) : *p1
;
429 c2
= isupper (*p2
) ? tolower (*p2
) : *p2
;