localealias.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. /* Handle aliases for locale names.
  2. Copyright (C) 1995-1999, 2000-2001, 2003, 2005 Free Software Foundation, Inc.
  3. This program is free software; you can redistribute it and/or modify it
  4. under the terms of the GNU Library General Public License as published
  5. by the Free Software Foundation; either version 2, or (at your option)
  6. any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Library General Public License for more details.
  11. You should have received a copy of the GNU Library General Public
  12. License along with this program; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
  14. USA. */
  15. /* Tell glibc's <string.h> to provide a prototype for mempcpy().
  16. This must come before <config.h> because <config.h> may include
  17. <features.h>, and once <features.h> has been included, it's too late. */
  18. #ifndef _GNU_SOURCE
  19. # define _GNU_SOURCE 1
  20. #endif
  21. #ifdef HAVE_CONFIG_H
  22. # include <config.h>
  23. #endif
  24. #include <ctype.h>
  25. #include <stdio.h>
  26. #if defined _LIBC || defined HAVE___FSETLOCKING
  27. # include <stdio_ext.h>
  28. #endif
  29. #include <sys/types.h>
  30. #ifdef __GNUC__
  31. # undef alloca
  32. # define alloca __builtin_alloca
  33. # define HAVE_ALLOCA 1
  34. #else
  35. # ifdef _MSC_VER
  36. # include <malloc.h>
  37. # define alloca _alloca
  38. # else
  39. # if defined HAVE_ALLOCA_H || defined _LIBC
  40. # include <alloca.h>
  41. # else
  42. # ifdef _AIX
  43. #pragma alloca
  44. # else
  45. # ifndef alloca
  46. char *alloca ();
  47. # endif
  48. # endif
  49. # endif
  50. # endif
  51. #endif
  52. #include <stdlib.h>
  53. #include <string.h>
  54. #include "gettextP.h"
  55. #if ENABLE_RELOCATABLE
  56. # include "relocatable.h"
  57. #else
  58. # define relocate(pathname) (pathname)
  59. #endif
  60. /* @@ end of prolog @@ */
  61. #ifdef _LIBC
  62. /* Rename the non ANSI C functions. This is required by the standard
  63. because some ANSI C functions will require linking with this object
  64. file and the name space must not be polluted. */
  65. # define strcasecmp __strcasecmp
  66. # ifndef mempcpy
  67. # define mempcpy __mempcpy
  68. # endif
  69. # define HAVE_MEMPCPY 1
  70. # define HAVE___FSETLOCKING 1
  71. #endif
  72. /* Handle multi-threaded applications. */
  73. #ifdef _LIBC
  74. # include <bits/libc-lock.h>
  75. #else
  76. # include "lock.h"
  77. #endif
  78. #ifndef internal_function
  79. # define internal_function
  80. #endif
  81. /* Some optimizations for glibc. */
  82. #ifdef _LIBC
  83. # define FEOF(fp) feof_unlocked (fp)
  84. # define FGETS(buf, n, fp) fgets_unlocked (buf, n, fp)
  85. #else
  86. # define FEOF(fp) feof (fp)
  87. # define FGETS(buf, n, fp) fgets (buf, n, fp)
  88. #endif
  89. /* For those losing systems which don't have `alloca' we have to add
  90. some additional code emulating it. */
  91. #ifdef HAVE_ALLOCA
  92. # define freea(p) /* nothing */
  93. #else
  94. # define alloca(n) malloc (n)
  95. # define freea(p) free (p)
  96. #endif
  97. #if defined _LIBC_REENTRANT || HAVE_DECL_FGETS_UNLOCKED
  98. # undef fgets
  99. # define fgets(buf, len, s) fgets_unlocked (buf, len, s)
  100. #endif
  101. #if defined _LIBC_REENTRANT || HAVE_DECL_FEOF_UNLOCKED
  102. # undef feof
  103. # define feof(s) feof_unlocked (s)
  104. #endif
  105. __libc_lock_define_initialized (static, lock)
  106. struct alias_map
  107. {
  108. const char *alias;
  109. const char *value;
  110. };
  111. #ifndef _LIBC
  112. # define libc_freeres_ptr(decl) decl
  113. #endif
  114. libc_freeres_ptr (static char *string_space);
  115. static size_t string_space_act;
  116. static size_t string_space_max;
  117. libc_freeres_ptr (static struct alias_map *map);
  118. static size_t nmap;
  119. static size_t maxmap;
  120. /* Prototypes for local functions. */
  121. static size_t read_alias_file (const char *fname, int fname_len)
  122. internal_function;
  123. static int extend_alias_table (void);
  124. static int alias_compare (const struct alias_map *map1,
  125. const struct alias_map *map2);
  126. const char *
  127. _nl_expand_alias (const char *name)
  128. {
  129. static const char *locale_alias_path;
  130. struct alias_map *retval;
  131. const char *result = NULL;
  132. size_t added;
  133. __libc_lock_lock (lock);
  134. if (locale_alias_path == NULL)
  135. locale_alias_path = LOCALE_ALIAS_PATH;
  136. do
  137. {
  138. struct alias_map item;
  139. item.alias = name;
  140. if (nmap > 0)
  141. retval = (struct alias_map *) bsearch (&item, map, nmap,
  142. sizeof (struct alias_map),
  143. (int (*) (const void *,
  144. const void *)
  145. ) alias_compare);
  146. else
  147. retval = NULL;
  148. /* We really found an alias. Return the value. */
  149. if (retval != NULL)
  150. {
  151. result = retval->value;
  152. break;
  153. }
  154. /* Perhaps we can find another alias file. */
  155. added = 0;
  156. while (added == 0 && locale_alias_path[0] != '\0')
  157. {
  158. const char *start;
  159. while (locale_alias_path[0] == PATH_SEPARATOR)
  160. ++locale_alias_path;
  161. start = locale_alias_path;
  162. while (locale_alias_path[0] != '\0'
  163. && locale_alias_path[0] != PATH_SEPARATOR)
  164. ++locale_alias_path;
  165. if (start < locale_alias_path)
  166. added = read_alias_file (start, locale_alias_path - start);
  167. }
  168. }
  169. while (added != 0);
  170. __libc_lock_unlock (lock);
  171. return result;
  172. }
  173. static size_t
  174. internal_function
  175. read_alias_file (const char *fname, int fname_len)
  176. {
  177. FILE *fp;
  178. char *full_fname;
  179. size_t added;
  180. static const char aliasfile[] = "/locale.alias";
  181. full_fname = (char *) alloca (fname_len + sizeof aliasfile);
  182. #ifdef HAVE_MEMPCPY
  183. mempcpy (mempcpy (full_fname, fname, fname_len),
  184. aliasfile, sizeof aliasfile);
  185. #else
  186. memcpy (full_fname, fname, fname_len);
  187. memcpy (&full_fname[fname_len], aliasfile, sizeof aliasfile);
  188. #endif
  189. #ifdef _LIBC
  190. /* Note the file is opened with cancellation in the I/O functions
  191. disabled. */
  192. fp = fopen (relocate (full_fname), "rc");
  193. #else
  194. fp = fopen (relocate (full_fname), "r");
  195. #endif
  196. freea (full_fname);
  197. if (fp == NULL)
  198. return 0;
  199. #ifdef HAVE___FSETLOCKING
  200. /* No threads present. */
  201. __fsetlocking (fp, FSETLOCKING_BYCALLER);
  202. #endif
  203. added = 0;
  204. while (!FEOF (fp))
  205. {
  206. /* It is a reasonable approach to use a fix buffer here because
  207. a) we are only interested in the first two fields
  208. b) these fields must be usable as file names and so must not
  209. be that long
  210. We avoid a multi-kilobyte buffer here since this would use up
  211. stack space which we might not have if the program ran out of
  212. memory. */
  213. char buf[400];
  214. char *alias;
  215. char *value;
  216. char *cp;
  217. int complete_line;
  218. if (FGETS (buf, sizeof buf, fp) == NULL)
  219. /* EOF reached. */
  220. break;
  221. /* Determine whether the line is complete. */
  222. complete_line = strchr (buf, '\n') != NULL;
  223. cp = buf;
  224. /* Ignore leading white space. */
  225. while (isspace ((unsigned char) cp[0]))
  226. ++cp;
  227. /* A leading '#' signals a comment line. */
  228. if (cp[0] != '\0' && cp[0] != '#')
  229. {
  230. alias = cp++;
  231. while (cp[0] != '\0' && !isspace ((unsigned char) cp[0]))
  232. ++cp;
  233. /* Terminate alias name. */
  234. if (cp[0] != '\0')
  235. *cp++ = '\0';
  236. /* Now look for the beginning of the value. */
  237. while (isspace ((unsigned char) cp[0]))
  238. ++cp;
  239. if (cp[0] != '\0')
  240. {
  241. value = cp++;
  242. while (cp[0] != '\0' && !isspace ((unsigned char) cp[0]))
  243. ++cp;
  244. /* Terminate value. */
  245. if (cp[0] == '\n')
  246. {
  247. /* This has to be done to make the following test
  248. for the end of line possible. We are looking for
  249. the terminating '\n' which do not overwrite here. */
  250. *cp++ = '\0';
  251. *cp = '\n';
  252. }
  253. else if (cp[0] != '\0')
  254. *cp++ = '\0';
  255. #ifdef IN_LIBGLOCALE
  256. /* glibc's locale.alias contains entries for ja_JP and ko_KR
  257. that make it impossible to use a Japanese or Korean UTF-8
  258. locale under the name "ja_JP" or "ko_KR". Ignore these
  259. entries. */
  260. if (strchr (alias, '_') == NULL)
  261. #endif
  262. {
  263. size_t alias_len;
  264. size_t value_len;
  265. if (nmap >= maxmap)
  266. if (__builtin_expect (extend_alias_table (), 0))
  267. goto out;
  268. alias_len = strlen (alias) + 1;
  269. value_len = strlen (value) + 1;
  270. if (string_space_act + alias_len + value_len > string_space_max)
  271. {
  272. /* Increase size of memory pool. */
  273. size_t new_size = (string_space_max
  274. + (alias_len + value_len > 1024
  275. ? alias_len + value_len : 1024));
  276. char *new_pool = (char *) realloc (string_space, new_size);
  277. if (new_pool == NULL)
  278. goto out;
  279. if (__builtin_expect (string_space != new_pool, 0))
  280. {
  281. size_t i;
  282. for (i = 0; i < nmap; i++)
  283. {
  284. map[i].alias += new_pool - string_space;
  285. map[i].value += new_pool - string_space;
  286. }
  287. }
  288. string_space = new_pool;
  289. string_space_max = new_size;
  290. }
  291. map[nmap].alias = memcpy (&string_space[string_space_act],
  292. alias, alias_len);
  293. string_space_act += alias_len;
  294. map[nmap].value = memcpy (&string_space[string_space_act],
  295. value, value_len);
  296. string_space_act += value_len;
  297. ++nmap;
  298. ++added;
  299. }
  300. }
  301. }
  302. /* Possibly not the whole line fits into the buffer. Ignore
  303. the rest of the line. */
  304. if (! complete_line)
  305. do
  306. if (FGETS (buf, sizeof buf, fp) == NULL)
  307. /* Make sure the inner loop will be left. The outer loop
  308. will exit at the `feof' test. */
  309. break;
  310. while (strchr (buf, '\n') == NULL);
  311. }
  312. out:
  313. /* Should we test for ferror()? I think we have to silently ignore
  314. errors. --drepper */
  315. fclose (fp);
  316. if (added > 0)
  317. qsort (map, nmap, sizeof (struct alias_map),
  318. (int (*) (const void *, const void *)) alias_compare);
  319. return added;
  320. }
  321. static int
  322. extend_alias_table ()
  323. {
  324. size_t new_size;
  325. struct alias_map *new_map;
  326. new_size = maxmap == 0 ? 100 : 2 * maxmap;
  327. new_map = (struct alias_map *) realloc (map, (new_size
  328. * sizeof (struct alias_map)));
  329. if (new_map == NULL)
  330. /* Simply don't extend: we don't have any more core. */
  331. return -1;
  332. map = new_map;
  333. maxmap = new_size;
  334. return 0;
  335. }
  336. static int
  337. alias_compare (const struct alias_map *map1, const struct alias_map *map2)
  338. {
  339. #if defined _LIBC || defined HAVE_STRCASECMP
  340. return strcasecmp (map1->alias, map2->alias);
  341. #else
  342. const unsigned char *p1 = (const unsigned char *) map1->alias;
  343. const unsigned char *p2 = (const unsigned char *) map2->alias;
  344. unsigned char c1, c2;
  345. if (p1 == p2)
  346. return 0;
  347. do
  348. {
  349. /* I know this seems to be odd but the tolower() function in
  350. some systems libc cannot handle nonalpha characters. */
  351. c1 = isupper (*p1) ? tolower (*p1) : *p1;
  352. c2 = isupper (*p2) ? tolower (*p2) : *p2;
  353. if (c1 == '\0')
  354. break;
  355. ++p1;
  356. ++p2;
  357. }
  358. while (c1 == c2);
  359. return c1 - c2;
  360. #endif
  361. }