dcigettext.c 45 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654
  1. /* Implementation of the internal dcigettext function.
  2. Copyright (C) 1995-1999, 2000-2006 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. /* NL_LOCALE_NAME does not work in glibc-2.4. Ignore it. */
  25. #undef HAVE_NL_LOCALE_NAME
  26. #include <sys/types.h>
  27. #ifdef __GNUC__
  28. # define alloca __builtin_alloca
  29. # define HAVE_ALLOCA 1
  30. #else
  31. # ifdef _MSC_VER
  32. # include <malloc.h>
  33. # define alloca _alloca
  34. # else
  35. # if defined HAVE_ALLOCA_H || defined _LIBC
  36. # include <alloca.h>
  37. # else
  38. # ifdef _AIX
  39. #pragma alloca
  40. # else
  41. # ifndef alloca
  42. char *alloca ();
  43. # endif
  44. # endif
  45. # endif
  46. # endif
  47. #endif
  48. #include <errno.h>
  49. #ifndef errno
  50. extern int errno;
  51. #endif
  52. #ifndef __set_errno
  53. # define __set_errno(val) errno = (val)
  54. #endif
  55. #include <stddef.h>
  56. #include <stdlib.h>
  57. #include <string.h>
  58. #if defined HAVE_UNISTD_H || defined _LIBC
  59. # include <unistd.h>
  60. #endif
  61. #include <locale.h>
  62. #ifdef _LIBC
  63. /* Guess whether integer division by zero raises signal SIGFPE.
  64. Set to 1 only if you know for sure. In case of doubt, set to 0. */
  65. # if defined __alpha__ || defined __arm__ || defined __i386__ \
  66. || defined __m68k__ || defined __s390__
  67. # define INTDIV0_RAISES_SIGFPE 1
  68. # else
  69. # define INTDIV0_RAISES_SIGFPE 0
  70. # endif
  71. #endif
  72. #if !INTDIV0_RAISES_SIGFPE
  73. # include <signal.h>
  74. #endif
  75. #if defined HAVE_SYS_PARAM_H || defined _LIBC
  76. # include <sys/param.h>
  77. #endif
  78. #if !defined _LIBC && HAVE_NL_LOCALE_NAME
  79. # include <langinfo.h>
  80. #endif
  81. #include "gettextP.h"
  82. #include "plural-exp.h"
  83. #ifdef _LIBC
  84. # include <libintl.h>
  85. #else
  86. # ifdef IN_LIBGLOCALE
  87. # include <libintl.h>
  88. # endif
  89. # include "libgnuintl.h"
  90. #endif
  91. #include "hash-string.h"
  92. /* Handle multi-threaded applications. */
  93. #ifdef _LIBC
  94. # include <bits/libc-lock.h>
  95. # define gl_rwlock_define_initialized __libc_rwlock_define_initialized
  96. # define gl_rwlock_rdlock __libc_rwlock_rdlock
  97. # define gl_rwlock_wrlock __libc_rwlock_wrlock
  98. # define gl_rwlock_unlock __libc_rwlock_unlock
  99. #else
  100. # include "lock.h"
  101. #endif
  102. /* Alignment of types. */
  103. #if defined __GNUC__ && __GNUC__ >= 2
  104. # define alignof(TYPE) __alignof__ (TYPE)
  105. #else
  106. # define alignof(TYPE) \
  107. ((int) &((struct { char dummy1; TYPE dummy2; } *) 0)->dummy2)
  108. #endif
  109. /* The internal variables in the standalone libintl.a must have different
  110. names than the internal variables in GNU libc, otherwise programs
  111. using libintl.a cannot be linked statically. */
  112. #if !defined _LIBC
  113. # define _nl_default_default_domain libintl_nl_default_default_domain
  114. # define _nl_current_default_domain libintl_nl_current_default_domain
  115. # define _nl_default_dirname libintl_nl_default_dirname
  116. # define _nl_domain_bindings libintl_nl_domain_bindings
  117. #endif
  118. /* Some compilers, like SunOS4 cc, don't have offsetof in <stddef.h>. */
  119. #ifndef offsetof
  120. # define offsetof(type,ident) ((size_t)&(((type*)0)->ident))
  121. #endif
  122. /* @@ end of prolog @@ */
  123. #ifdef _LIBC
  124. /* Rename the non ANSI C functions. This is required by the standard
  125. because some ANSI C functions will require linking with this object
  126. file and the name space must not be polluted. */
  127. # define getcwd __getcwd
  128. # ifndef stpcpy
  129. # define stpcpy __stpcpy
  130. # endif
  131. # define tfind __tfind
  132. #else
  133. # if !defined HAVE_GETCWD
  134. char *getwd ();
  135. # define getcwd(buf, max) getwd (buf)
  136. # else
  137. # if VMS
  138. # define getcwd(buf, max) (getcwd) (buf, max, 0)
  139. # else
  140. char *getcwd ();
  141. # endif
  142. # endif
  143. # ifndef HAVE_STPCPY
  144. static char *stpcpy (char *dest, const char *src);
  145. # endif
  146. # ifndef HAVE_MEMPCPY
  147. static void *mempcpy (void *dest, const void *src, size_t n);
  148. # endif
  149. #endif
  150. /* Amount to increase buffer size by in each try. */
  151. #define PATH_INCR 32
  152. /* The following is from pathmax.h. */
  153. /* Non-POSIX BSD systems might have gcc's limits.h, which doesn't define
  154. PATH_MAX but might cause redefinition warnings when sys/param.h is
  155. later included (as on MORE/BSD 4.3). */
  156. #if defined _POSIX_VERSION || (defined HAVE_LIMITS_H && !defined __GNUC__)
  157. # include <limits.h>
  158. #endif
  159. #ifndef _POSIX_PATH_MAX
  160. # define _POSIX_PATH_MAX 255
  161. #endif
  162. #if !defined PATH_MAX && defined _PC_PATH_MAX
  163. # define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 : pathconf ("/", _PC_PATH_MAX))
  164. #endif
  165. /* Don't include sys/param.h if it already has been. */
  166. #if defined HAVE_SYS_PARAM_H && !defined PATH_MAX && !defined MAXPATHLEN
  167. # include <sys/param.h>
  168. #endif
  169. #if !defined PATH_MAX && defined MAXPATHLEN
  170. # define PATH_MAX MAXPATHLEN
  171. #endif
  172. #ifndef PATH_MAX
  173. # define PATH_MAX _POSIX_PATH_MAX
  174. #endif
  175. /* Pathname support.
  176. ISSLASH(C) tests whether C is a directory separator character.
  177. IS_ABSOLUTE_PATH(P) tests whether P is an absolute path. If it is not,
  178. it may be concatenated to a directory pathname.
  179. IS_PATH_WITH_DIR(P) tests whether P contains a directory specification.
  180. */
  181. #if defined _WIN32 || defined __WIN32__ || defined __CYGWIN__ || defined __EMX__ || defined __DJGPP__
  182. /* Win32, Cygwin, OS/2, DOS */
  183. # define ISSLASH(C) ((C) == '/' || (C) == '\\')
  184. # define HAS_DEVICE(P) \
  185. ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \
  186. && (P)[1] == ':')
  187. # define IS_ABSOLUTE_PATH(P) (ISSLASH ((P)[0]) || HAS_DEVICE (P))
  188. # define IS_PATH_WITH_DIR(P) \
  189. (strchr (P, '/') != NULL || strchr (P, '\\') != NULL || HAS_DEVICE (P))
  190. #else
  191. /* Unix */
  192. # define ISSLASH(C) ((C) == '/')
  193. # define IS_ABSOLUTE_PATH(P) ISSLASH ((P)[0])
  194. # define IS_PATH_WITH_DIR(P) (strchr (P, '/') != NULL)
  195. #endif
  196. /* Whether to support different locales in different threads. */
  197. #if defined _LIBC || HAVE_NL_LOCALE_NAME || (HAVE_STRUCT___LOCALE_STRUCT___NAMES && defined USE_IN_GETTEXT_TESTS) || defined IN_LIBGLOCALE
  198. # define HAVE_PER_THREAD_LOCALE
  199. #endif
  200. /* This is the type used for the search tree where known translations
  201. are stored. */
  202. struct known_translation_t
  203. {
  204. /* Domain in which to search. */
  205. const char *domainname;
  206. /* The category. */
  207. int category;
  208. #ifdef HAVE_PER_THREAD_LOCALE
  209. /* Name of the relevant locale category, or "" for the global locale. */
  210. const char *localename;
  211. #endif
  212. #ifdef IN_LIBGLOCALE
  213. /* The character encoding. */
  214. const char *encoding;
  215. #endif
  216. /* State of the catalog counter at the point the string was found. */
  217. int counter;
  218. /* Catalog where the string was found. */
  219. struct loaded_l10nfile *domain;
  220. /* And finally the translation. */
  221. const char *translation;
  222. size_t translation_length;
  223. /* Pointer to the string in question. */
  224. char msgid[ZERO];
  225. };
  226. /* Root of the search tree with known translations. We can use this
  227. only if the system provides the `tsearch' function family. */
  228. #if defined HAVE_TSEARCH || defined _LIBC
  229. # include <search.h>
  230. gl_rwlock_define_initialized (static, tree_lock)
  231. static void *root;
  232. # ifdef _LIBC
  233. # define tsearch __tsearch
  234. # endif
  235. /* Function to compare two entries in the table of known translations. */
  236. static int
  237. transcmp (const void *p1, const void *p2)
  238. {
  239. const struct known_translation_t *s1;
  240. const struct known_translation_t *s2;
  241. int result;
  242. s1 = (const struct known_translation_t *) p1;
  243. s2 = (const struct known_translation_t *) p2;
  244. result = strcmp (s1->msgid, s2->msgid);
  245. if (result == 0)
  246. {
  247. result = strcmp (s1->domainname, s2->domainname);
  248. if (result == 0)
  249. {
  250. #ifdef HAVE_PER_THREAD_LOCALE
  251. result = strcmp (s1->localename, s2->localename);
  252. if (result == 0)
  253. #endif
  254. {
  255. #ifdef IN_LIBGLOCALE
  256. result = strcmp (s1->encoding, s2->encoding);
  257. if (result == 0)
  258. #endif
  259. /* We compare the category last (though this is the cheapest
  260. operation) since it is hopefully always the same (namely
  261. LC_MESSAGES). */
  262. result = s1->category - s2->category;
  263. }
  264. }
  265. }
  266. return result;
  267. }
  268. #endif
  269. /* Name of the default domain used for gettext(3) prior any call to
  270. textdomain(3). The default value for this is "messages". */
  271. const char _nl_default_default_domain[] attribute_hidden = "messages";
  272. #ifndef IN_LIBGLOCALE
  273. /* Value used as the default domain for gettext(3). */
  274. const char *_nl_current_default_domain attribute_hidden
  275. = _nl_default_default_domain;
  276. #endif
  277. /* Contains the default location of the message catalogs. */
  278. #if defined __EMX__
  279. extern const char _nl_default_dirname[];
  280. #else
  281. # ifdef _LIBC
  282. extern const char _nl_default_dirname[];
  283. libc_hidden_proto (_nl_default_dirname)
  284. # endif
  285. const char _nl_default_dirname[] = LOCALEDIR;
  286. # ifdef _LIBC
  287. libc_hidden_data_def (_nl_default_dirname)
  288. # endif
  289. #endif
  290. #ifndef IN_LIBGLOCALE
  291. /* List with bindings of specific domains created by bindtextdomain()
  292. calls. */
  293. struct binding *_nl_domain_bindings;
  294. #endif
  295. /* Prototypes for local functions. */
  296. static char *plural_lookup (struct loaded_l10nfile *domain,
  297. unsigned long int n,
  298. const char *translation, size_t translation_len)
  299. internal_function;
  300. #ifdef IN_LIBGLOCALE
  301. static const char *guess_category_value (int category,
  302. const char *categoryname,
  303. const char *localename)
  304. internal_function;
  305. #else
  306. static const char *guess_category_value (int category,
  307. const char *categoryname)
  308. internal_function;
  309. #endif
  310. #ifdef _LIBC
  311. # include "../locale/localeinfo.h"
  312. # define category_to_name(category) \
  313. _nl_category_names.str + _nl_category_name_idxs[category]
  314. #else
  315. static const char *category_to_name (int category) internal_function;
  316. #endif
  317. #if (defined _LIBC || HAVE_ICONV) && !defined IN_LIBGLOCALE
  318. static const char *get_output_charset (struct binding *domainbinding)
  319. internal_function;
  320. #endif
  321. /* For those loosing systems which don't have `alloca' we have to add
  322. some additional code emulating it. */
  323. #ifdef HAVE_ALLOCA
  324. /* Nothing has to be done. */
  325. # define freea(p) /* nothing */
  326. # define ADD_BLOCK(list, address) /* nothing */
  327. # define FREE_BLOCKS(list) /* nothing */
  328. #else
  329. struct block_list
  330. {
  331. void *address;
  332. struct block_list *next;
  333. };
  334. # define ADD_BLOCK(list, addr) \
  335. do { \
  336. struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \
  337. /* If we cannot get a free block we cannot add the new element to \
  338. the list. */ \
  339. if (newp != NULL) { \
  340. newp->address = (addr); \
  341. newp->next = (list); \
  342. (list) = newp; \
  343. } \
  344. } while (0)
  345. # define FREE_BLOCKS(list) \
  346. do { \
  347. while (list != NULL) { \
  348. struct block_list *old = list; \
  349. list = list->next; \
  350. free (old->address); \
  351. free (old); \
  352. } \
  353. } while (0)
  354. # undef alloca
  355. # define alloca(size) (malloc (size))
  356. # define freea(p) free (p)
  357. #endif /* have alloca */
  358. #ifdef _LIBC
  359. /* List of blocks allocated for translations. */
  360. typedef struct transmem_list
  361. {
  362. struct transmem_list *next;
  363. char data[ZERO];
  364. } transmem_block_t;
  365. static struct transmem_list *transmem_list;
  366. #else
  367. typedef unsigned char transmem_block_t;
  368. #endif
  369. /* Names for the libintl functions are a problem. They must not clash
  370. with existing names and they should follow ANSI C. But this source
  371. code is also used in GNU C Library where the names have a __
  372. prefix. So we have to make a difference here. */
  373. #ifdef _LIBC
  374. # define DCIGETTEXT __dcigettext
  375. #else
  376. # define DCIGETTEXT libintl_dcigettext
  377. #endif
  378. /* Lock variable to protect the global data in the gettext implementation. */
  379. gl_rwlock_define_initialized (, _nl_state_lock attribute_hidden)
  380. /* Checking whether the binaries runs SUID must be done and glibc provides
  381. easier methods therefore we make a difference here. */
  382. #ifdef _LIBC
  383. # define ENABLE_SECURE __libc_enable_secure
  384. # define DETERMINE_SECURE
  385. #else
  386. # ifndef HAVE_GETUID
  387. # define getuid() 0
  388. # endif
  389. # ifndef HAVE_GETGID
  390. # define getgid() 0
  391. # endif
  392. # ifndef HAVE_GETEUID
  393. # define geteuid() getuid()
  394. # endif
  395. # ifndef HAVE_GETEGID
  396. # define getegid() getgid()
  397. # endif
  398. static int enable_secure;
  399. # define ENABLE_SECURE (enable_secure == 1)
  400. # define DETERMINE_SECURE \
  401. if (enable_secure == 0) \
  402. { \
  403. if (getuid () != geteuid () || getgid () != getegid ()) \
  404. enable_secure = 1; \
  405. else \
  406. enable_secure = -1; \
  407. }
  408. #endif
  409. /* Get the function to evaluate the plural expression. */
  410. #include "eval-plural.h"
  411. /* Look up MSGID in the DOMAINNAME message catalog for the current
  412. CATEGORY locale and, if PLURAL is nonzero, search over string
  413. depending on the plural form determined by N. */
  414. #ifdef IN_LIBGLOCALE
  415. char *
  416. gl_dcigettext (const char *domainname,
  417. const char *msgid1, const char *msgid2,
  418. int plural, unsigned long int n,
  419. int category,
  420. const char *localename, const char *encoding)
  421. #else
  422. char *
  423. DCIGETTEXT (const char *domainname, const char *msgid1, const char *msgid2,
  424. int plural, unsigned long int n, int category)
  425. #endif
  426. {
  427. #ifndef HAVE_ALLOCA
  428. struct block_list *block_list = NULL;
  429. #endif
  430. struct loaded_l10nfile *domain;
  431. struct binding *binding;
  432. const char *categoryname;
  433. const char *categoryvalue;
  434. const char *dirname;
  435. char *xdomainname;
  436. char *single_locale;
  437. char *retval;
  438. size_t retlen;
  439. int saved_errno;
  440. #if defined HAVE_TSEARCH || defined _LIBC
  441. struct known_translation_t *search;
  442. struct known_translation_t **foundp = NULL;
  443. size_t msgid_len;
  444. # if defined HAVE_PER_THREAD_LOCALE && !defined IN_LIBGLOCALE
  445. const char *localename;
  446. # endif
  447. #endif
  448. size_t domainname_len;
  449. /* If no real MSGID is given return NULL. */
  450. if (msgid1 == NULL)
  451. return NULL;
  452. #ifdef _LIBC
  453. if (category < 0 || category >= __LC_LAST || category == LC_ALL)
  454. /* Bogus. */
  455. return (plural == 0
  456. ? (char *) msgid1
  457. /* Use the Germanic plural rule. */
  458. : n == 1 ? (char *) msgid1 : (char *) msgid2);
  459. #endif
  460. gl_rwlock_rdlock (_nl_state_lock);
  461. /* If DOMAINNAME is NULL, we are interested in the default domain. If
  462. CATEGORY is not LC_MESSAGES this might not make much sense but the
  463. definition left this undefined. */
  464. if (domainname == NULL)
  465. domainname = _nl_current_default_domain;
  466. /* OS/2 specific: backward compatibility with older libintl versions */
  467. #ifdef LC_MESSAGES_COMPAT
  468. if (category == LC_MESSAGES_COMPAT)
  469. category = LC_MESSAGES;
  470. #endif
  471. #if defined HAVE_TSEARCH || defined _LIBC
  472. msgid_len = strlen (msgid1) + 1;
  473. /* Try to find the translation among those which we found at
  474. some time. */
  475. search = (struct known_translation_t *)
  476. alloca (offsetof (struct known_translation_t, msgid) + msgid_len);
  477. memcpy (search->msgid, msgid1, msgid_len);
  478. search->domainname = domainname;
  479. search->category = category;
  480. # ifdef HAVE_PER_THREAD_LOCALE
  481. # ifndef IN_LIBGLOCALE
  482. # ifdef _LIBC
  483. localename = __current_locale_name (category);
  484. # else
  485. # if HAVE_NL_LOCALE_NAME
  486. /* NL_LOCALE_NAME is public glibc API introduced in glibc-2.4. */
  487. localename = nl_langinfo (NL_LOCALE_NAME (category));
  488. # else
  489. # if HAVE_STRUCT___LOCALE_STRUCT___NAMES && defined USE_IN_GETTEXT_TESTS
  490. /* The __names field is not public glibc API and must therefore not be used
  491. in code that is installed in public locations. */
  492. {
  493. locale_t thread_locale = uselocale (NULL);
  494. if (thread_locale != LC_GLOBAL_LOCALE)
  495. localename = thread_locale->__names[category];
  496. else
  497. localename = "";
  498. }
  499. # endif
  500. # endif
  501. # endif
  502. # endif
  503. search->localename = localename;
  504. # ifdef IN_LIBGLOCALE
  505. search->encoding = encoding;
  506. # endif
  507. # endif
  508. /* Since tfind/tsearch manage a balanced tree, concurrent tfind and
  509. tsearch calls can be fatal. */
  510. gl_rwlock_rdlock (tree_lock);
  511. foundp = (struct known_translation_t **) tfind (search, &root, transcmp);
  512. gl_rwlock_unlock (tree_lock);
  513. freea (search);
  514. if (foundp != NULL && (*foundp)->counter == _nl_msg_cat_cntr)
  515. {
  516. /* Now deal with plural. */
  517. if (plural)
  518. retval = plural_lookup ((*foundp)->domain, n, (*foundp)->translation,
  519. (*foundp)->translation_length);
  520. else
  521. retval = (char *) (*foundp)->translation;
  522. gl_rwlock_unlock (_nl_state_lock);
  523. return retval;
  524. }
  525. #endif
  526. /* Preserve the `errno' value. */
  527. saved_errno = errno;
  528. /* See whether this is a SUID binary or not. */
  529. DETERMINE_SECURE;
  530. /* First find matching binding. */
  531. #ifdef IN_LIBGLOCALE
  532. /* We can use a trivial binding, since _nl_find_msg will ignore it anyway,
  533. and _nl_load_domain and _nl_find_domain just pass it through. */
  534. binding = NULL;
  535. dirname = bindtextdomain (domainname, NULL);
  536. #else
  537. for (binding = _nl_domain_bindings; binding != NULL; binding = binding->next)
  538. {
  539. int compare = strcmp (domainname, binding->domainname);
  540. if (compare == 0)
  541. /* We found it! */
  542. break;
  543. if (compare < 0)
  544. {
  545. /* It is not in the list. */
  546. binding = NULL;
  547. break;
  548. }
  549. }
  550. if (binding == NULL)
  551. dirname = _nl_default_dirname;
  552. else
  553. {
  554. dirname = binding->dirname;
  555. #endif
  556. if (!IS_ABSOLUTE_PATH (dirname))
  557. {
  558. /* We have a relative path. Make it absolute now. */
  559. size_t dirname_len = strlen (dirname) + 1;
  560. size_t path_max;
  561. char *resolved_dirname;
  562. char *ret;
  563. path_max = (unsigned int) PATH_MAX;
  564. path_max += 2; /* The getcwd docs say to do this. */
  565. for (;;)
  566. {
  567. resolved_dirname = (char *) alloca (path_max + dirname_len);
  568. ADD_BLOCK (block_list, tmp_dirname);
  569. __set_errno (0);
  570. ret = getcwd (resolved_dirname, path_max);
  571. if (ret != NULL || errno != ERANGE)
  572. break;
  573. path_max += path_max / 2;
  574. path_max += PATH_INCR;
  575. }
  576. if (ret == NULL)
  577. /* We cannot get the current working directory. Don't signal an
  578. error but simply return the default string. */
  579. goto return_untranslated;
  580. stpcpy (stpcpy (strchr (resolved_dirname, '\0'), "/"), dirname);
  581. dirname = resolved_dirname;
  582. }
  583. #ifndef IN_LIBGLOCALE
  584. }
  585. #endif
  586. /* Now determine the symbolic name of CATEGORY and its value. */
  587. categoryname = category_to_name (category);
  588. #ifdef IN_LIBGLOCALE
  589. categoryvalue = guess_category_value (category, categoryname, localename);
  590. #else
  591. categoryvalue = guess_category_value (category, categoryname);
  592. #endif
  593. domainname_len = strlen (domainname);
  594. xdomainname = (char *) alloca (strlen (categoryname)
  595. + domainname_len + 5);
  596. ADD_BLOCK (block_list, xdomainname);
  597. stpcpy (mempcpy (stpcpy (stpcpy (xdomainname, categoryname), "/"),
  598. domainname, domainname_len),
  599. ".mo");
  600. /* Creating working area. */
  601. single_locale = (char *) alloca (strlen (categoryvalue) + 1);
  602. ADD_BLOCK (block_list, single_locale);
  603. /* Search for the given string. This is a loop because we perhaps
  604. got an ordered list of languages to consider for the translation. */
  605. while (1)
  606. {
  607. /* Make CATEGORYVALUE point to the next element of the list. */
  608. while (categoryvalue[0] != '\0' && categoryvalue[0] == ':')
  609. ++categoryvalue;
  610. if (categoryvalue[0] == '\0')
  611. {
  612. /* The whole contents of CATEGORYVALUE has been searched but
  613. no valid entry has been found. We solve this situation
  614. by implicitly appending a "C" entry, i.e. no translation
  615. will take place. */
  616. single_locale[0] = 'C';
  617. single_locale[1] = '\0';
  618. }
  619. else
  620. {
  621. char *cp = single_locale;
  622. while (categoryvalue[0] != '\0' && categoryvalue[0] != ':')
  623. *cp++ = *categoryvalue++;
  624. *cp = '\0';
  625. /* When this is a SUID binary we must not allow accessing files
  626. outside the dedicated directories. */
  627. if (ENABLE_SECURE && IS_PATH_WITH_DIR (single_locale))
  628. /* Ingore this entry. */
  629. continue;
  630. }
  631. /* If the current locale value is C (or POSIX) we don't load a
  632. domain. Return the MSGID. */
  633. if (strcmp (single_locale, "C") == 0
  634. || strcmp (single_locale, "POSIX") == 0)
  635. break;
  636. /* Find structure describing the message catalog matching the
  637. DOMAINNAME and CATEGORY. */
  638. domain = _nl_find_domain (dirname, single_locale, xdomainname, binding);
  639. if (domain != NULL)
  640. {
  641. #if defined IN_LIBGLOCALE
  642. retval = _nl_find_msg (domain, binding, encoding, msgid1, &retlen);
  643. #else
  644. retval = _nl_find_msg (domain, binding, msgid1, 1, &retlen);
  645. #endif
  646. if (retval == NULL)
  647. {
  648. int cnt;
  649. for (cnt = 0; domain->successor[cnt] != NULL; ++cnt)
  650. {
  651. #if defined IN_LIBGLOCALE
  652. retval = _nl_find_msg (domain->successor[cnt], binding,
  653. encoding, msgid1, &retlen);
  654. #else
  655. retval = _nl_find_msg (domain->successor[cnt], binding,
  656. msgid1, 1, &retlen);
  657. #endif
  658. if (retval != NULL)
  659. {
  660. domain = domain->successor[cnt];
  661. break;
  662. }
  663. }
  664. }
  665. /* Returning -1 means that some resource problem exists
  666. (likely memory) and that the strings could not be
  667. converted. Return the original strings. */
  668. if (__builtin_expect (retval == (char *) -1, 0))
  669. break;
  670. if (retval != NULL)
  671. {
  672. /* Found the translation of MSGID1 in domain DOMAIN:
  673. starting at RETVAL, RETLEN bytes. */
  674. FREE_BLOCKS (block_list);
  675. #if defined HAVE_TSEARCH || defined _LIBC
  676. if (foundp == NULL)
  677. {
  678. /* Create a new entry and add it to the search tree. */
  679. size_t size;
  680. struct known_translation_t *newp;
  681. size = offsetof (struct known_translation_t, msgid)
  682. + msgid_len + domainname_len + 1;
  683. # ifdef HAVE_PER_THREAD_LOCALE
  684. size += strlen (localename) + 1;
  685. # endif
  686. newp = (struct known_translation_t *) malloc (size);
  687. if (newp != NULL)
  688. {
  689. char *new_domainname;
  690. # ifdef HAVE_PER_THREAD_LOCALE
  691. char *new_localename;
  692. # endif
  693. new_domainname = mempcpy (newp->msgid, msgid1, msgid_len);
  694. memcpy (new_domainname, domainname, domainname_len + 1);
  695. # ifdef HAVE_PER_THREAD_LOCALE
  696. new_localename = new_domainname + domainname_len + 1;
  697. strcpy (new_localename, localename);
  698. # endif
  699. newp->domainname = new_domainname;
  700. newp->category = category;
  701. # ifdef HAVE_PER_THREAD_LOCALE
  702. newp->localename = new_localename;
  703. # endif
  704. # ifdef IN_LIBGLOCALE
  705. newp->encoding = encoding;
  706. # endif
  707. newp->counter = _nl_msg_cat_cntr;
  708. newp->domain = domain;
  709. newp->translation = retval;
  710. newp->translation_length = retlen;
  711. gl_rwlock_wrlock (tree_lock);
  712. /* Insert the entry in the search tree. */
  713. foundp = (struct known_translation_t **)
  714. tsearch (newp, &root, transcmp);
  715. gl_rwlock_unlock (tree_lock);
  716. if (foundp == NULL
  717. || __builtin_expect (*foundp != newp, 0))
  718. /* The insert failed. */
  719. free (newp);
  720. }
  721. }
  722. else
  723. {
  724. /* We can update the existing entry. */
  725. (*foundp)->counter = _nl_msg_cat_cntr;
  726. (*foundp)->domain = domain;
  727. (*foundp)->translation = retval;
  728. (*foundp)->translation_length = retlen;
  729. }
  730. #endif
  731. __set_errno (saved_errno);
  732. /* Now deal with plural. */
  733. if (plural)
  734. retval = plural_lookup (domain, n, retval, retlen);
  735. gl_rwlock_unlock (_nl_state_lock);
  736. return retval;
  737. }
  738. }
  739. }
  740. return_untranslated:
  741. /* Return the untranslated MSGID. */
  742. FREE_BLOCKS (block_list);
  743. gl_rwlock_unlock (_nl_state_lock);
  744. #ifndef _LIBC
  745. if (!ENABLE_SECURE)
  746. {
  747. extern void _nl_log_untranslated (const char *logfilename,
  748. const char *domainname,
  749. const char *msgid1, const char *msgid2,
  750. int plural);
  751. const char *logfilename = getenv ("GETTEXT_LOG_UNTRANSLATED");
  752. if (logfilename != NULL && logfilename[0] != '\0')
  753. _nl_log_untranslated (logfilename, domainname, msgid1, msgid2, plural);
  754. }
  755. #endif
  756. __set_errno (saved_errno);
  757. return (plural == 0
  758. ? (char *) msgid1
  759. /* Use the Germanic plural rule. */
  760. : n == 1 ? (char *) msgid1 : (char *) msgid2);
  761. }
  762. /* Look up the translation of msgid within DOMAIN_FILE and DOMAINBINDING.
  763. Return it if found. Return NULL if not found or in case of a conversion
  764. failure (problem in the particular message catalog). Return (char *) -1
  765. in case of a memory allocation failure during conversion (only if
  766. ENCODING != NULL resp. CONVERT == true). */
  767. char *
  768. internal_function
  769. #ifdef IN_LIBGLOCALE
  770. _nl_find_msg (struct loaded_l10nfile *domain_file,
  771. struct binding *domainbinding, const char *encoding,
  772. const char *msgid,
  773. size_t *lengthp)
  774. #else
  775. _nl_find_msg (struct loaded_l10nfile *domain_file,
  776. struct binding *domainbinding,
  777. const char *msgid, int convert,
  778. size_t *lengthp)
  779. #endif
  780. {
  781. struct loaded_domain *domain;
  782. nls_uint32 nstrings;
  783. size_t act;
  784. char *result;
  785. size_t resultlen;
  786. if (domain_file->decided <= 0)
  787. _nl_load_domain (domain_file, domainbinding);
  788. if (domain_file->data == NULL)
  789. return NULL;
  790. domain = (struct loaded_domain *) domain_file->data;
  791. nstrings = domain->nstrings;
  792. /* Locate the MSGID and its translation. */
  793. if (domain->hash_tab != NULL)
  794. {
  795. /* Use the hashing table. */
  796. nls_uint32 len = strlen (msgid);
  797. nls_uint32 hash_val = __hash_string (msgid);
  798. nls_uint32 idx = hash_val % domain->hash_size;
  799. nls_uint32 incr = 1 + (hash_val % (domain->hash_size - 2));
  800. while (1)
  801. {
  802. nls_uint32 nstr =
  803. W (domain->must_swap_hash_tab, domain->hash_tab[idx]);
  804. if (nstr == 0)
  805. /* Hash table entry is empty. */
  806. return NULL;
  807. nstr--;
  808. /* Compare msgid with the original string at index nstr.
  809. We compare the lengths with >=, not ==, because plural entries
  810. are represented by strings with an embedded NUL. */
  811. if (nstr < nstrings
  812. ? W (domain->must_swap, domain->orig_tab[nstr].length) >= len
  813. && (strcmp (msgid,
  814. domain->data + W (domain->must_swap,
  815. domain->orig_tab[nstr].offset))
  816. == 0)
  817. : domain->orig_sysdep_tab[nstr - nstrings].length > len
  818. && (strcmp (msgid,
  819. domain->orig_sysdep_tab[nstr - nstrings].pointer)
  820. == 0))
  821. {
  822. act = nstr;
  823. goto found;
  824. }
  825. if (idx >= domain->hash_size - incr)
  826. idx -= domain->hash_size - incr;
  827. else
  828. idx += incr;
  829. }
  830. /* NOTREACHED */
  831. }
  832. else
  833. {
  834. /* Try the default method: binary search in the sorted array of
  835. messages. */
  836. size_t top, bottom;
  837. bottom = 0;
  838. top = nstrings;
  839. while (bottom < top)
  840. {
  841. int cmp_val;
  842. act = (bottom + top) / 2;
  843. cmp_val = strcmp (msgid, (domain->data
  844. + W (domain->must_swap,
  845. domain->orig_tab[act].offset)));
  846. if (cmp_val < 0)
  847. top = act;
  848. else if (cmp_val > 0)
  849. bottom = act + 1;
  850. else
  851. goto found;
  852. }
  853. /* No translation was found. */
  854. return NULL;
  855. }
  856. found:
  857. /* The translation was found at index ACT. If we have to convert the
  858. string to use a different character set, this is the time. */
  859. if (act < nstrings)
  860. {
  861. result = (char *)
  862. (domain->data + W (domain->must_swap, domain->trans_tab[act].offset));
  863. resultlen = W (domain->must_swap, domain->trans_tab[act].length) + 1;
  864. }
  865. else
  866. {
  867. result = (char *) domain->trans_sysdep_tab[act - nstrings].pointer;
  868. resultlen = domain->trans_sysdep_tab[act - nstrings].length;
  869. }
  870. #if defined _LIBC || HAVE_ICONV
  871. # ifdef IN_LIBGLOCALE
  872. if (encoding != NULL)
  873. # else
  874. if (convert)
  875. # endif
  876. {
  877. /* We are supposed to do a conversion. */
  878. # ifndef IN_LIBGLOCALE
  879. const char *encoding = get_output_charset (domainbinding);
  880. # endif
  881. /* Search whether a table with converted translations for this
  882. encoding has already been allocated. */
  883. size_t nconversions = domain->nconversions;
  884. struct converted_domain *convd = NULL;
  885. size_t i;
  886. for (i = nconversions; i > 0; )
  887. {
  888. i--;
  889. if (strcmp (domain->conversions[i].encoding, encoding) == 0)
  890. {
  891. convd = &domain->conversions[i];
  892. break;
  893. }
  894. }
  895. if (convd == NULL)
  896. {
  897. /* Allocate a table for the converted translations for this
  898. encoding. */
  899. struct converted_domain *new_conversions =
  900. (struct converted_domain *)
  901. (domain->conversions != NULL
  902. ? realloc (domain->conversions,
  903. (nconversions + 1) * sizeof (struct converted_domain))
  904. : malloc ((nconversions + 1) * sizeof (struct converted_domain)));
  905. if (__builtin_expect (new_conversions == NULL, 0))
  906. /* Nothing we can do, no more memory. We cannot use the
  907. translation because it might be encoded incorrectly. */
  908. return (char *) -1;
  909. domain->conversions = new_conversions;
  910. /* Copy the 'encoding' string to permanent storage. */
  911. encoding = strdup (encoding);
  912. if (__builtin_expect (encoding == NULL, 0))
  913. /* Nothing we can do, no more memory. We cannot use the
  914. translation because it might be encoded incorrectly. */
  915. return (char *) -1;
  916. convd = &new_conversions[nconversions];
  917. convd->encoding = encoding;
  918. /* Find out about the character set the file is encoded with.
  919. This can be found (in textual form) in the entry "". If this
  920. entry does not exist or if this does not contain the 'charset='
  921. information, we will assume the charset matches the one the
  922. current locale and we don't have to perform any conversion. */
  923. # ifdef _LIBC
  924. convd->conv = (__gconv_t) -1;
  925. # else
  926. # if HAVE_ICONV
  927. convd->conv = (iconv_t) -1;
  928. # endif
  929. # endif
  930. {
  931. char *nullentry;
  932. size_t nullentrylen;
  933. /* Get the header entry. This is a recursion, but it doesn't
  934. reallocate domain->conversions because we pass
  935. encoding = NULL or convert = 0, respectively. */
  936. nullentry =
  937. # ifdef IN_LIBGLOCALE
  938. _nl_find_msg (domain_file, domainbinding, NULL, "",
  939. &nullentrylen);
  940. # else
  941. _nl_find_msg (domain_file, domainbinding, "", 0, &nullentrylen);
  942. # endif
  943. if (nullentry != NULL)
  944. {
  945. const char *charsetstr;
  946. charsetstr = strstr (nullentry, "charset=");
  947. if (charsetstr != NULL)
  948. {
  949. size_t len;
  950. char *charset;
  951. const char *outcharset;
  952. charsetstr += strlen ("charset=");
  953. len = strcspn (charsetstr, " \t\n");
  954. charset = (char *) alloca (len + 1);
  955. # if defined _LIBC || HAVE_MEMPCPY
  956. *((char *) mempcpy (charset, charsetstr, len)) = '\0';
  957. # else
  958. memcpy (charset, charsetstr, len);
  959. charset[len] = '\0';
  960. # endif
  961. outcharset = encoding;
  962. # ifdef _LIBC
  963. /* We always want to use transliteration. */
  964. outcharset = norm_add_slashes (outcharset, "TRANSLIT");
  965. charset = norm_add_slashes (charset, "");
  966. int r = __gconv_open (outcharset, charset, &convd->conv,
  967. GCONV_AVOID_NOCONV);
  968. if (__builtin_expect (r != __GCONV_OK, 0))
  969. {
  970. /* If the output encoding is the same there is
  971. nothing to do. Otherwise do not use the
  972. translation at all. */
  973. if (__builtin_expect (r != __GCONV_NOCONV, 1))
  974. return NULL;
  975. convd->conv = (__gconv_t) -1;
  976. }
  977. # else
  978. # if HAVE_ICONV
  979. /* When using GNU libc >= 2.2 or GNU libiconv >= 1.5,
  980. we want to use transliteration. */
  981. # if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2) || __GLIBC__ > 2 \
  982. || _LIBICONV_VERSION >= 0x0105
  983. if (strchr (outcharset, '/') == NULL)
  984. {
  985. char *tmp;
  986. len = strlen (outcharset);
  987. tmp = (char *) alloca (len + 10 + 1);
  988. memcpy (tmp, outcharset, len);
  989. memcpy (tmp + len, "//TRANSLIT", 10 + 1);
  990. outcharset = tmp;
  991. convd->conv = iconv_open (outcharset, charset);
  992. freea (outcharset);
  993. }
  994. else
  995. # endif
  996. convd->conv = iconv_open (outcharset, charset);
  997. # endif
  998. # endif
  999. freea (charset);
  1000. }
  1001. }
  1002. }
  1003. convd->conv_tab = NULL;
  1004. /* Here domain->conversions is still == new_conversions. */
  1005. domain->nconversions++;
  1006. }
  1007. if (
  1008. # ifdef _LIBC
  1009. convd->conv != (__gconv_t) -1
  1010. # else
  1011. # if HAVE_ICONV
  1012. convd->conv != (iconv_t) -1
  1013. # endif
  1014. # endif
  1015. )
  1016. {
  1017. /* We are supposed to do a conversion. First allocate an
  1018. appropriate table with the same structure as the table
  1019. of translations in the file, where we can put the pointers
  1020. to the converted strings in.
  1021. There is a slight complication with plural entries. They
  1022. are represented by consecutive NUL terminated strings. We
  1023. handle this case by converting RESULTLEN bytes, including
  1024. NULs. */
  1025. if (convd->conv_tab == NULL
  1026. && ((convd->conv_tab =
  1027. (char **) calloc (nstrings + domain->n_sysdep_strings,
  1028. sizeof (char *)))
  1029. == NULL))
  1030. /* Mark that we didn't succeed allocating a table. */
  1031. convd->conv_tab = (char **) -1;
  1032. if (__builtin_expect (convd->conv_tab == (char **) -1, 0))
  1033. /* Nothing we can do, no more memory. We cannot use the
  1034. translation because it might be encoded incorrectly. */
  1035. return (char *) -1;
  1036. if (convd->conv_tab[act] == NULL)
  1037. {
  1038. /* We haven't used this string so far, so it is not
  1039. translated yet. Do this now. */
  1040. /* We use a bit more efficient memory handling.
  1041. We allocate always larger blocks which get used over
  1042. time. This is faster than many small allocations. */
  1043. __libc_lock_define_initialized (static, lock)
  1044. # define INITIAL_BLOCK_SIZE 4080
  1045. static unsigned char *freemem;
  1046. static size_t freemem_size;
  1047. const unsigned char *inbuf;
  1048. unsigned char *outbuf;
  1049. int malloc_count;
  1050. # ifndef _LIBC
  1051. transmem_block_t *transmem_list = NULL;
  1052. # endif
  1053. __libc_lock_lock (lock);
  1054. inbuf = (const unsigned char *) result;
  1055. outbuf = freemem + sizeof (size_t);
  1056. malloc_count = 0;
  1057. while (1)
  1058. {
  1059. transmem_block_t *newmem;
  1060. # ifdef _LIBC
  1061. size_t non_reversible;
  1062. int res;
  1063. if (freemem_size < sizeof (size_t))
  1064. goto resize_freemem;
  1065. res = __gconv (convd->conv,
  1066. &inbuf, inbuf + resultlen,
  1067. &outbuf,
  1068. outbuf + freemem_size - sizeof (size_t),
  1069. &non_reversible);
  1070. if (res == __GCONV_OK || res == __GCONV_EMPTY_INPUT)
  1071. break;
  1072. if (res != __GCONV_FULL_OUTPUT)
  1073. {
  1074. /* We should not use the translation at all, it
  1075. is incorrectly encoded. */
  1076. __libc_lock_unlock (lock);
  1077. return NULL;
  1078. }
  1079. inbuf = (const unsigned char *) result;
  1080. # else
  1081. # if HAVE_ICONV
  1082. const char *inptr = (const char *) inbuf;
  1083. size_t inleft = resultlen;
  1084. char *outptr = (char *) outbuf;
  1085. size_t outleft;
  1086. if (freemem_size < sizeof (size_t))
  1087. goto resize_freemem;
  1088. outleft = freemem_size - sizeof (size_t);
  1089. if (iconv (convd->conv,
  1090. (ICONV_CONST char **) &inptr, &inleft,
  1091. &outptr, &outleft)
  1092. != (size_t) (-1))
  1093. {
  1094. outbuf = (unsigned char *) outptr;
  1095. break;
  1096. }
  1097. if (errno != E2BIG)
  1098. {
  1099. __libc_lock_unlock (lock);
  1100. return NULL;
  1101. }
  1102. # endif
  1103. # endif
  1104. resize_freemem:
  1105. /* We must allocate a new buffer or resize the old one. */
  1106. if (malloc_count > 0)
  1107. {
  1108. ++malloc_count;
  1109. freemem_size = malloc_count * INITIAL_BLOCK_SIZE;
  1110. newmem = (transmem_block_t *) realloc (transmem_list,
  1111. freemem_size);
  1112. # ifdef _LIBC
  1113. if (newmem != NULL)
  1114. transmem_list = transmem_list->next;
  1115. else
  1116. {
  1117. struct transmem_list *old = transmem_list;
  1118. transmem_list = transmem_list->next;
  1119. free (old);
  1120. }
  1121. # endif
  1122. }
  1123. else
  1124. {
  1125. malloc_count = 1;
  1126. freemem_size = INITIAL_BLOCK_SIZE;
  1127. newmem = (transmem_block_t *) malloc (freemem_size);
  1128. }
  1129. if (__builtin_expect (newmem == NULL, 0))
  1130. {
  1131. freemem = NULL;
  1132. freemem_size = 0;
  1133. __libc_lock_unlock (lock);
  1134. return (char *) -1;
  1135. }
  1136. # ifdef _LIBC
  1137. /* Add the block to the list of blocks we have to free
  1138. at some point. */
  1139. newmem->next = transmem_list;
  1140. transmem_list = newmem;
  1141. freemem = (unsigned char *) newmem->data;
  1142. freemem_size -= offsetof (struct transmem_list, data);
  1143. # else
  1144. transmem_list = newmem;
  1145. freemem = newmem;
  1146. # endif
  1147. outbuf = freemem + sizeof (size_t);
  1148. }
  1149. /* We have now in our buffer a converted string. Put this
  1150. into the table of conversions. */
  1151. *(size_t *) freemem = outbuf - freemem - sizeof (size_t);
  1152. convd->conv_tab[act] = (char *) freemem;
  1153. /* Shrink freemem, but keep it aligned. */
  1154. freemem_size -= outbuf - freemem;
  1155. freemem = outbuf;
  1156. freemem += freemem_size & (alignof (size_t) - 1);
  1157. freemem_size = freemem_size & ~ (alignof (size_t) - 1);
  1158. __libc_lock_unlock (lock);
  1159. }
  1160. /* Now convd->conv_tab[act] contains the translation of all
  1161. the plural variants. */
  1162. result = convd->conv_tab[act] + sizeof (size_t);
  1163. resultlen = *(size_t *) convd->conv_tab[act];
  1164. }
  1165. }
  1166. /* The result string is converted. */
  1167. #endif /* _LIBC || HAVE_ICONV */
  1168. *lengthp = resultlen;
  1169. return result;
  1170. }
  1171. /* Look up a plural variant. */
  1172. static char *
  1173. internal_function
  1174. plural_lookup (struct loaded_l10nfile *domain, unsigned long int n,
  1175. const char *translation, size_t translation_len)
  1176. {
  1177. struct loaded_domain *domaindata = (struct loaded_domain *) domain->data;
  1178. unsigned long int index;
  1179. const char *p;
  1180. index = plural_eval (domaindata->plural, n);
  1181. if (index >= domaindata->nplurals)
  1182. /* This should never happen. It means the plural expression and the
  1183. given maximum value do not match. */
  1184. index = 0;
  1185. /* Skip INDEX strings at TRANSLATION. */
  1186. p = translation;
  1187. while (index-- > 0)
  1188. {
  1189. #ifdef _LIBC
  1190. p = __rawmemchr (p, '\0');
  1191. #else
  1192. p = strchr (p, '\0');
  1193. #endif
  1194. /* And skip over the NUL byte. */
  1195. p++;
  1196. if (p >= translation + translation_len)
  1197. /* This should never happen. It means the plural expression
  1198. evaluated to a value larger than the number of variants
  1199. available for MSGID1. */
  1200. return (char *) translation;
  1201. }
  1202. return (char *) p;
  1203. }
  1204. #ifndef _LIBC
  1205. /* Return string representation of locale CATEGORY. */
  1206. static const char *
  1207. internal_function
  1208. category_to_name (int category)
  1209. {
  1210. const char *retval;
  1211. switch (category)
  1212. {
  1213. #ifdef LC_COLLATE
  1214. case LC_COLLATE:
  1215. retval = "LC_COLLATE";
  1216. break;
  1217. #endif
  1218. #ifdef LC_CTYPE
  1219. case LC_CTYPE:
  1220. retval = "LC_CTYPE";
  1221. break;
  1222. #endif
  1223. #ifdef LC_MONETARY
  1224. case LC_MONETARY:
  1225. retval = "LC_MONETARY";
  1226. break;
  1227. #endif
  1228. #ifdef LC_NUMERIC
  1229. case LC_NUMERIC:
  1230. retval = "LC_NUMERIC";
  1231. break;
  1232. #endif
  1233. #ifdef LC_TIME
  1234. case LC_TIME:
  1235. retval = "LC_TIME";
  1236. break;
  1237. #endif
  1238. #ifdef LC_MESSAGES
  1239. case LC_MESSAGES:
  1240. retval = "LC_MESSAGES";
  1241. break;
  1242. #endif
  1243. #ifdef LC_RESPONSE
  1244. case LC_RESPONSE:
  1245. retval = "LC_RESPONSE";
  1246. break;
  1247. #endif
  1248. #ifdef LC_ALL
  1249. case LC_ALL:
  1250. /* This might not make sense but is perhaps better than any other
  1251. value. */
  1252. retval = "LC_ALL";
  1253. break;
  1254. #endif
  1255. default:
  1256. /* If you have a better idea for a default value let me know. */
  1257. retval = "LC_XXX";
  1258. }
  1259. return retval;
  1260. }
  1261. #endif
  1262. /* Guess value of current locale from value of the environment variables
  1263. or system-dependent defaults. */
  1264. static const char *
  1265. internal_function
  1266. #ifdef IN_LIBGLOCALE
  1267. guess_category_value (int category, const char *categoryname,
  1268. const char *locale)
  1269. #else
  1270. guess_category_value (int category, const char *categoryname)
  1271. #endif
  1272. {
  1273. const char *language;
  1274. #ifndef IN_LIBGLOCALE
  1275. const char *locale;
  1276. # ifndef _LIBC
  1277. const char *language_default;
  1278. int locale_defaulted;
  1279. # endif
  1280. #endif
  1281. /* We use the settings in the following order:
  1282. 1. The value of the environment variable 'LANGUAGE'. This is a GNU
  1283. extension. Its value can be a colon-separated list of locale names.
  1284. 2. The value of the environment variable 'LC_ALL', 'LC_xxx', or 'LANG'.
  1285. More precisely, the first among these that is set to a non-empty value.
  1286. This is how POSIX specifies it. The value is a single locale name.
  1287. 3. A system-dependent preference list of languages. Its value can be a
  1288. colon-separated list of locale names.
  1289. 4. A system-dependent default locale name.
  1290. This way:
  1291. - System-dependent settings can be overridden by environment variables.
  1292. - If the system provides both a list of languages and a default locale,
  1293. the former is used. */
  1294. #ifndef IN_LIBGLOCALE
  1295. /* Fetch the locale name, through the POSIX method of looking to `LC_ALL',
  1296. `LC_xxx', and `LANG'. On some systems this can be done by the
  1297. `setlocale' function itself. */
  1298. # ifdef _LIBC
  1299. locale = __current_locale_name (category);
  1300. # else
  1301. # if HAVE_STRUCT___LOCALE_STRUCT___NAMES && defined USE_IN_GETTEXT_TESTS
  1302. /* The __names field is not public glibc API and must therefore not be used
  1303. in code that is installed in public locations. */
  1304. locale_t thread_locale = uselocale (NULL);
  1305. if (thread_locale != LC_GLOBAL_LOCALE)
  1306. {
  1307. locale = thread_locale->__names[category];
  1308. locale_defaulted = 0;
  1309. }
  1310. else
  1311. # endif
  1312. {
  1313. locale = _nl_locale_name_posix (category, categoryname);
  1314. locale_defaulted = 0;
  1315. if (locale == NULL)
  1316. {
  1317. locale = _nl_locale_name_default ();
  1318. locale_defaulted = 1;
  1319. }
  1320. }
  1321. # endif
  1322. #endif
  1323. /* Ignore LANGUAGE and its system-dependent analogon if the locale is set
  1324. to "C" because
  1325. 1. "C" locale usually uses the ASCII encoding, and most international
  1326. messages use non-ASCII characters. These characters get displayed
  1327. as question marks (if using glibc's iconv()) or as invalid 8-bit
  1328. characters (because other iconv()s refuse to convert most non-ASCII
  1329. characters to ASCII). In any case, the output is ugly.
  1330. 2. The precise output of some programs in the "C" locale is specified
  1331. by POSIX and should not depend on environment variables like
  1332. "LANGUAGE" or system-dependent information. We allow such programs
  1333. to use gettext(). */
  1334. if (strcmp (locale, "C") == 0)
  1335. return locale;
  1336. /* The highest priority value is the value of the 'LANGUAGE' environment
  1337. variable. */
  1338. language = getenv ("LANGUAGE");
  1339. if (language != NULL && language[0] != '\0')
  1340. return language;
  1341. #if !defined IN_LIBGLOCALE && !defined _LIBC
  1342. /* The next priority value is the locale name, if not defaulted. */
  1343. if (locale_defaulted)
  1344. {
  1345. /* The next priority value is the default language preferences list. */
  1346. language_default = _nl_language_preferences_default ();
  1347. if (language_default != NULL)
  1348. return language_default;
  1349. }
  1350. /* The least priority value is the locale name, if defaulted. */
  1351. #endif
  1352. return locale;
  1353. }
  1354. #if (defined _LIBC || HAVE_ICONV) && !defined IN_LIBGLOCALE
  1355. /* Returns the output charset. */
  1356. static const char *
  1357. internal_function
  1358. get_output_charset (struct binding *domainbinding)
  1359. {
  1360. /* The output charset should normally be determined by the locale. But
  1361. sometimes the locale is not used or not correctly set up, so we provide
  1362. a possibility for the user to override this: the OUTPUT_CHARSET
  1363. environment variable. Moreover, the value specified through
  1364. bind_textdomain_codeset overrides both. */
  1365. if (domainbinding != NULL && domainbinding->codeset != NULL)
  1366. return domainbinding->codeset;
  1367. else
  1368. {
  1369. /* For speed reasons, we look at the value of OUTPUT_CHARSET only
  1370. once. This is a user variable that is not supposed to change
  1371. during a program run. */
  1372. static char *output_charset_cache;
  1373. static int output_charset_cached;
  1374. if (!output_charset_cached)
  1375. {
  1376. const char *value = getenv ("OUTPUT_CHARSET");
  1377. if (value != NULL && value[0] != '\0')
  1378. {
  1379. size_t len = strlen (value) + 1;
  1380. char *value_copy = (char *) malloc (len);
  1381. if (value_copy != NULL)
  1382. memcpy (value_copy, value, len);
  1383. output_charset_cache = value_copy;
  1384. }
  1385. output_charset_cached = 1;
  1386. }
  1387. if (output_charset_cache != NULL)
  1388. return output_charset_cache;
  1389. else
  1390. {
  1391. # ifdef _LIBC
  1392. return _NL_CURRENT (LC_CTYPE, CODESET);
  1393. # else
  1394. # if HAVE_ICONV
  1395. extern const char *locale_charset (void);
  1396. return locale_charset ();
  1397. # endif
  1398. # endif
  1399. }
  1400. }
  1401. }
  1402. #endif
  1403. /* @@ begin of epilog @@ */
  1404. /* We don't want libintl.a to depend on any other library. So we
  1405. avoid the non-standard function stpcpy. In GNU C Library this
  1406. function is available, though. Also allow the symbol HAVE_STPCPY
  1407. to be defined. */
  1408. #if !_LIBC && !HAVE_STPCPY
  1409. static char *
  1410. stpcpy (char *dest, const char *src)
  1411. {
  1412. while ((*dest++ = *src++) != '\0')
  1413. /* Do nothing. */ ;
  1414. return dest - 1;
  1415. }
  1416. #endif
  1417. #if !_LIBC && !HAVE_MEMPCPY
  1418. static void *
  1419. mempcpy (void *dest, const void *src, size_t n)
  1420. {
  1421. return (void *) ((char *) memcpy (dest, src, n) + n);
  1422. }
  1423. #endif
  1424. #ifdef _LIBC
  1425. /* If we want to free all resources we have to do some work at
  1426. program's end. */
  1427. libc_freeres_fn (free_mem)
  1428. {
  1429. void *old;
  1430. while (_nl_domain_bindings != NULL)
  1431. {
  1432. struct binding *oldp = _nl_domain_bindings;
  1433. _nl_domain_bindings = _nl_domain_bindings->next;
  1434. if (oldp->dirname != _nl_default_dirname)
  1435. /* Yes, this is a pointer comparison. */
  1436. free (oldp->dirname);
  1437. free (oldp->codeset);
  1438. free (oldp);
  1439. }
  1440. if (_nl_current_default_domain != _nl_default_default_domain)
  1441. /* Yes, again a pointer comparison. */
  1442. free ((char *) _nl_current_default_domain);
  1443. /* Remove the search tree with the known translations. */
  1444. __tdestroy (root, free);
  1445. root = NULL;
  1446. while (transmem_list != NULL)
  1447. {
  1448. old = transmem_list;
  1449. transmem_list = transmem_list->next;
  1450. free (old);
  1451. }
  1452. }
  1453. #endif