1 /* Handle configuration data.
2 Copyright (C) 1997,98,99,2000,2001 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
28 #include <stdio_ext.h>
32 #include <sys/param.h>
34 #include <bits/libc-lock.h>
35 #include <gconv_int.h>
38 /* This is the default path where we look for module lists. */
39 static const char default_gconv_path
[] = GCONV_PATH
;
41 /* The path elements, as determined by the __gconv_get_path function.
42 All path elements end in a slash. */
43 struct path_elem
*__gconv_path_elem
;
44 /* Maximum length of a single path element in __gconv_path_elem. */
45 size_t __gconv_max_path_elem_len
;
47 /* We use the following struct if we couldn't allocate memory. */
48 static const struct path_elem empty_path_elem
;
50 /* Name of the file containing the module information in the directories
52 static const char gconv_conf_filename
[] = "gconv-modules";
54 /* Filename extension for the modules. */
56 # define MODULE_EXT ".so"
58 static const char gconv_module_ext
[] = MODULE_EXT
;
60 /* We have a few builtin transformations. */
61 static struct gconv_module builtin_modules
[] =
63 #define BUILTIN_TRANSFORMATION(From, To, Cost, Name, Fct, MinF, MaxF, \
72 #define BUILTIN_ALIAS(From, To)
74 #include "gconv_builtin.h"
77 #undef BUILTIN_TRANSFORMATION
80 static const char *builtin_aliases
[] =
82 #define BUILTIN_TRANSFORMATION(From, To, Cost, Name, Fct, MinF, MaxF, \
84 #define BUILTIN_ALIAS(From, To) From " " To,
86 #include "gconv_builtin.h"
90 # include <libio/libioP.h>
91 # define __getdelim(line, len, c, fp) _IO_getdelim (line, len, c, fp)
95 /* Value of the GCONV_PATH environment variable. */
96 const char *__gconv_path_envvar
;
99 /* Test whether there is already a matching module known. */
102 detect_conflict (const char *alias
)
104 struct gconv_module
*node
= __gconv_modules_db
;
108 int cmpres
= strcmp (alias
, node
->from_string
);
111 /* We have a conflict. */
125 add_alias (char *rp
, void *modules
)
127 /* We now expect two more string. The strings are normalized
128 (converted to UPPER case) and strored in the alias database. */
129 struct gconv_alias
*new_alias
;
130 char *from
, *to
, *wp
;
132 while (isspace (*rp
))
135 while (*rp
!= '\0' && !isspace (*rp
))
136 *wp
++ = toupper (*rp
++);
138 /* There is no `to' string on the line. Ignore it. */
142 while (isspace (*rp
))
144 while (*rp
!= '\0' && !isspace (*rp
))
145 *wp
++ = toupper (*rp
++);
147 /* No `to' string, ignore the line. */
151 /* Test whether this alias conflicts with any available module. */
152 if (detect_conflict (from
))
153 /* It does conflict, don't add the alias. */
156 new_alias
= (struct gconv_alias
*)
157 malloc (sizeof (struct gconv_alias
) + (wp
- from
));
158 if (new_alias
!= NULL
)
162 new_alias
->fromname
= memcpy ((char *) new_alias
163 + sizeof (struct gconv_alias
),
165 new_alias
->toname
= new_alias
->fromname
+ (to
- from
);
167 inserted
= (void **) __tsearch (new_alias
, &__gconv_alias_db
,
168 __gconv_alias_compare
);
169 if (inserted
== NULL
|| *inserted
!= new_alias
)
170 /* Something went wrong, free this entry. */
176 /* Insert a data structure for a new module in the search tree. */
179 insert_module (struct gconv_module
*newp
, int tobefreed
)
181 struct gconv_module
**rootp
= &__gconv_modules_db
;
183 while (*rootp
!= NULL
)
185 struct gconv_module
*root
= *rootp
;
188 cmpres
= strcmp (newp
->from_string
, root
->from_string
);
191 /* Both strings are identical. Insert the string at the
192 end of the `same' list if it is not already there. */
193 while (strcmp (newp
->from_string
, root
->from_string
) != 0
194 || strcmp (newp
->to_string
, root
->to_string
) != 0)
204 /* This is a no new conversion. But maybe the cost is
206 if (newp
->cost_hi
< root
->cost_hi
207 || (newp
->cost_hi
== root
->cost_hi
208 && newp
->cost_lo
< root
->cost_lo
))
210 newp
->left
= root
->left
;
211 newp
->right
= root
->right
;
212 newp
->same
= root
->same
;
227 rootp
= &root
->right
;
230 /* Plug in the new node here. */
235 /* Add new module. */
238 add_module (char *rp
, const char *directory
, size_t dir_len
, void **modules
,
239 size_t *nmodules
, int modcounter
)
244 3. filename of the module
245 4. an optional cost value
247 struct gconv_alias fake_alias
;
248 struct gconv_module
*new_module
;
249 char *from
, *to
, *module
, *wp
;
253 while (isspace (*rp
))
256 while (*rp
!= '\0' && !isspace (*rp
))
265 while (isspace (*rp
))
267 while (*rp
!= '\0' && !isspace (*rp
))
268 *wp
++ = toupper (*rp
++);
274 while (isspace (*rp
));
276 while (*rp
!= '\0' && !isspace (*rp
))
280 /* There is no cost, use one by default. */
286 /* There might be a cost value. */
290 cost_hi
= strtol (rp
, &endp
, 10);
291 if (rp
== endp
|| cost_hi
< 1)
292 /* No useful information. */
296 if (module
[0] == '\0')
297 /* No module name given. */
299 if (module
[0] == '/')
302 /* See whether we must add the ending. */
304 if (wp
- module
< (ptrdiff_t) sizeof (gconv_module_ext
)
305 || memcmp (wp
- sizeof (gconv_module_ext
), gconv_module_ext
,
306 sizeof (gconv_module_ext
)) != 0)
307 /* We must add the module extension. */
308 need_ext
= sizeof (gconv_module_ext
) - 1;
310 /* See whether we have already an alias with this name defined. */
311 fake_alias
.fromname
= strndupa (from
, to
- from
);
313 if (__tfind (&fake_alias
, &__gconv_alias_db
, __gconv_alias_compare
) != NULL
)
314 /* This module duplicates an alias. */
317 new_module
= (struct gconv_module
*) calloc (1,
318 sizeof (struct gconv_module
)
320 + dir_len
+ need_ext
);
321 if (new_module
!= NULL
)
325 new_module
->from_string
= tmp
= (char *) (new_module
+ 1);
326 tmp
= __mempcpy (tmp
, from
, to
- from
);
328 new_module
->to_string
= tmp
;
329 tmp
= __mempcpy (tmp
, to
, module
- to
);
331 new_module
->cost_hi
= cost_hi
;
332 new_module
->cost_lo
= modcounter
;
334 new_module
->module_name
= tmp
;
337 tmp
= __mempcpy (tmp
, directory
, dir_len
);
339 tmp
= __mempcpy (tmp
, module
, wp
- module
);
342 memcpy (tmp
- 1, gconv_module_ext
, sizeof (gconv_module_ext
));
344 /* Now insert the new module data structure in our search tree. */
345 insert_module (new_module
, 1);
350 /* Read the next configuration file. */
353 read_conf_file (const char *filename
, const char *directory
, size_t dir_len
,
354 void **modules
, size_t *nmodules
)
356 FILE *fp
= fopen (filename
, "r");
359 static int modcounter
;
361 /* Don't complain if a file is not present or readable, simply silently
366 /* No threads reading from this stream. */
367 __fsetlocking (fp
, FSETLOCKING_BYCALLER
);
369 /* Process the known entries of the file. Comments start with `#' and
370 end with the end of the line. Empty lines are ignored. */
371 while (!feof_unlocked (fp
))
373 char *rp
, *endp
, *word
;
374 ssize_t n
= __getdelim (&line
, &line_len
, '\n', fp
);
376 /* An error occurred. */
380 /* Terminate the line (excluding comments or newline) by an NUL byte
381 to simplify the following code. */
382 endp
= strchr (rp
, '#');
386 if (rp
[n
- 1] == '\n')
389 while (isspace (*rp
))
392 /* If this is an empty line go on with the next one. */
397 while (*rp
!= '\0' && !isspace (*rp
))
400 if (rp
- word
== sizeof ("alias") - 1
401 && memcmp (word
, "alias", sizeof ("alias") - 1) == 0)
402 add_alias (rp
, *modules
);
403 else if (rp
- word
== sizeof ("module") - 1
404 && memcmp (word
, "module", sizeof ("module") - 1) == 0)
405 add_module (rp
, directory
, dir_len
, modules
, nmodules
, modcounter
++);
407 /* Otherwise ignore the line. */
416 /* Determine the directories we are looking for data in. */
418 __gconv_get_path (void)
420 struct path_elem
*result
;
421 __libc_lock_define_initialized (static, lock
);
423 __libc_lock_lock (lock
);
425 /* Make sure there wasn't a second thread doing it already. */
426 result
= (struct path_elem
*) __gconv_path_elem
;
429 /* Determine the complete path first. */
431 size_t gconv_path_len
;
439 if (__gconv_path_envvar
== NULL
)
441 /* No user-defined path. Make a modifiable copy of the
443 gconv_path
= strdupa (default_gconv_path
);
444 gconv_path_len
= sizeof (default_gconv_path
);
450 /* Append the default path to the user-defined path. */
451 size_t user_len
= strlen (__gconv_path_envvar
);
453 gconv_path_len
= user_len
+ 1 + sizeof (default_gconv_path
);
454 gconv_path
= alloca (gconv_path_len
);
455 __mempcpy (__mempcpy (__mempcpy (gconv_path
, __gconv_path_envvar
,
458 default_gconv_path
, sizeof (default_gconv_path
));
459 cwd
= __getcwd (NULL
, 0);
460 cwdlen
= strlen (cwd
);
462 assert (default_gconv_path
[0] == '/');
464 /* In a first pass we calculate the number of elements. */
466 cp
= strchr (gconv_path
, ':');
473 cp
= strchr (cp
+ 1, ':');
476 /* Allocate the memory for the result. */
477 result
= (struct path_elem
*) malloc ((nelems
+ 1)
478 * sizeof (struct path_elem
)
479 + gconv_path_len
+ nelems
480 + (nelems
- 1) * (cwdlen
+ 1));
483 char *strspace
= (char *) &result
[nelems
+ 1];
486 /* Separate the individual parts. */
487 __gconv_max_path_elem_len
= 0;
488 elem
= __strtok_r (gconv_path
, ":", &gconv_path
);
489 assert (elem
!= NULL
);
492 result
[n
].name
= strspace
;
495 assert (cwd
!= NULL
);
496 strspace
= __mempcpy (strspace
, cwd
, cwdlen
);
499 strspace
= __stpcpy (strspace
, elem
);
500 if (strspace
[-1] != '/')
503 result
[n
].len
= strspace
- result
[n
].name
;
504 if (result
[n
].len
> __gconv_max_path_elem_len
)
505 __gconv_max_path_elem_len
= result
[n
].len
;
510 while ((elem
= __strtok_r (NULL
, ":", &gconv_path
)) != NULL
);
512 result
[n
].name
= NULL
;
516 __gconv_path_elem
= result
?: (struct path_elem
*) &empty_path_elem
;
522 __libc_lock_unlock (lock
);
526 /* Read all configuration files found in the user-specified and the default
529 __gconv_read_conf (void)
531 void *modules
= NULL
;
533 int save_errno
= errno
;
536 /* First see whether we should use the cache. */
537 if (__gconv_load_cache () == 0)
539 /* Yes, we are done. */
540 __set_errno (save_errno
);
545 /* Find out where we have to look. */
546 if (__gconv_path_elem
== NULL
)
549 for (cnt
= 0; __gconv_path_elem
[cnt
].name
!= NULL
; ++cnt
)
551 const char *elem
= __gconv_path_elem
[cnt
].name
;
552 size_t elem_len
= __gconv_path_elem
[cnt
].len
;
555 /* No slash needs to be inserted between elem and gconv_conf_filename;
556 elem already ends in a slash. */
557 filename
= alloca (elem_len
+ sizeof (gconv_conf_filename
));
558 __mempcpy (__mempcpy (filename
, elem
, elem_len
),
559 gconv_conf_filename
, sizeof (gconv_conf_filename
));
561 /* Read the next configuration file. */
562 read_conf_file (filename
, elem
, elem_len
, &modules
, &nmodules
);
566 /* Add the internal modules. */
567 for (cnt
= 0; cnt
< sizeof (builtin_modules
) / sizeof (builtin_modules
[0]);
570 struct gconv_alias fake_alias
;
572 fake_alias
.fromname
= (char *) builtin_modules
[cnt
].from_string
;
574 if (__tfind (&fake_alias
, &__gconv_alias_db
, __gconv_alias_compare
)
576 /* It'll conflict so don't add it. */
579 insert_module (&builtin_modules
[cnt
], 0);
582 /* Add aliases for builtin conversions. */
583 cnt
= sizeof (builtin_aliases
) / sizeof (builtin_aliases
[0]);
586 char *copy
= strdupa (builtin_aliases
[--cnt
]);
587 add_alias (copy
, modules
);
590 /* Restore the error number. */
591 __set_errno (save_errno
);
596 /* Free all resources if necessary. */
597 static void __attribute__ ((unused
))
600 if (__gconv_path_elem
!= NULL
&& __gconv_path_elem
!= &empty_path_elem
)
601 free ((void *) __gconv_path_elem
);
604 text_set_element (__libc_subfreeres
, free_mem
);