1 /* Cache handling for iconv modules.
2 Copyright (C) 2001-2021 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 2001.
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, see
18 <https://www.gnu.org/licenses/>. */
29 #include <gconv_int.h>
30 #include <iconvconfig.h>
31 #include <not-cancel.h>
33 #include "../intl/hash-string.h"
35 static void *gconv_cache
;
36 static size_t cache_size
;
37 static int cache_malloced
;
41 __gconv_get_cache (void)
48 __gconv_load_cache (void)
52 struct gconvcache_header
*header
;
54 /* We cannot use the cache if the GCONV_PATH environment variable is
56 __gconv_path_envvar
= getenv ("GCONV_PATH");
57 if (__gconv_path_envvar
!= NULL
)
60 /* See whether the cache file exists. */
61 fd
= __open_nocancel (GCONV_MODULES_CACHE
, O_RDONLY
, 0);
62 if (__builtin_expect (fd
, 0) == -1)
66 /* Get information about the file. */
67 if (__builtin_expect (__fstat64 (fd
, &st
), 0) < 0
68 /* We do not have to start looking at the file if it cannot contain
69 at least the cache header. */
70 || (size_t) st
.st_size
< sizeof (struct gconvcache_header
))
73 __close_nocancel_nostatus (fd
);
77 /* Make the file content available. */
78 cache_size
= st
.st_size
;
79 #ifdef _POSIX_MAPPED_FILES
80 gconv_cache
= __mmap (NULL
, cache_size
, PROT_READ
, MAP_SHARED
, fd
, 0);
81 if (__glibc_unlikely (gconv_cache
== MAP_FAILED
))
86 gconv_cache
= malloc (cache_size
);
87 if (gconv_cache
== NULL
)
93 ssize_t n
= __read (fd
, (char *) gconv_cache
+ already_read
,
94 cache_size
- already_read
);
95 if (__builtin_expect (n
, 0) == -1)
104 while (already_read
< cache_size
);
109 /* We don't need the file descriptor anymore. */
110 __close_nocancel_nostatus (fd
);
112 /* Check the consistency. */
113 header
= (struct gconvcache_header
*) gconv_cache
;
114 if (__builtin_expect (header
->magic
, GCONVCACHE_MAGIC
) != GCONVCACHE_MAGIC
115 || __builtin_expect (header
->string_offset
>= cache_size
, 0)
116 || __builtin_expect (header
->hash_offset
>= cache_size
, 0)
117 || __builtin_expect (header
->hash_size
== 0, 0)
118 || __builtin_expect ((header
->hash_offset
119 + header
->hash_size
* sizeof (struct hash_entry
))
121 || __builtin_expect (header
->module_offset
>= cache_size
, 0)
122 || __builtin_expect (header
->otherconv_offset
> cache_size
, 0))
129 #ifdef _POSIX_MAPPED_FILES
131 __munmap (gconv_cache
, cache_size
);
144 find_module_idx (const char *str
, size_t *idxp
)
149 const struct gconvcache_header
*header
;
151 const struct hash_entry
*hashtab
;
154 header
= (const struct gconvcache_header
*) gconv_cache
;
155 strtab
= (char *) gconv_cache
+ header
->string_offset
;
156 hashtab
= (struct hash_entry
*) ((char *) gconv_cache
157 + header
->hash_offset
);
159 hval
= __hash_string (str
);
160 idx
= hval
% header
->hash_size
;
161 hval2
= 1 + hval
% (header
->hash_size
- 2);
163 limit
= cache_size
- header
->string_offset
;
164 while (hashtab
[idx
].string_offset
!= 0)
165 if (hashtab
[idx
].string_offset
< limit
166 && strcmp (str
, strtab
+ hashtab
[idx
].string_offset
) == 0)
168 *idxp
= hashtab
[idx
].module_idx
;
172 if ((idx
+= hval2
) >= header
->hash_size
)
173 idx
-= header
->hash_size
;
182 find_module (const char *directory
, const char *filename
,
183 struct __gconv_step
*result
)
185 size_t dirlen
= strlen (directory
);
186 size_t fnamelen
= strlen (filename
) + 1;
187 char fullname
[dirlen
+ fnamelen
];
188 int status
= __GCONV_NOCONV
;
190 memcpy (__mempcpy (fullname
, directory
, dirlen
), filename
, fnamelen
);
192 result
->__shlib_handle
= __gconv_find_shlib (fullname
);
193 if (result
->__shlib_handle
!= NULL
)
197 result
->__modname
= NULL
;
198 result
->__fct
= result
->__shlib_handle
->fct
;
199 result
->__init_fct
= result
->__shlib_handle
->init_fct
;
200 result
->__end_fct
= result
->__shlib_handle
->end_fct
;
202 /* These settings can be overridden by the init function. */
203 result
->__btowc_fct
= NULL
;
204 result
->__data
= NULL
;
206 /* Call the init function. */
207 __gconv_init_fct init_fct
= result
->__init_fct
;
209 PTR_DEMANGLE (init_fct
);
211 if (init_fct
!= NULL
)
213 status
= DL_CALL_FCT (init_fct
, (result
));
216 PTR_MANGLE (result
->__btowc_fct
);
227 __gconv_compare_alias_cache (const char *name1
, const char *name2
, int *result
)
232 if (gconv_cache
== NULL
)
235 if (find_module_idx (name1
, &name1_idx
) != 0
236 || find_module_idx (name2
, &name2_idx
) != 0)
237 *result
= strcmp (name1
, name2
);
239 *result
= (int) (name1_idx
- name2_idx
);
246 __gconv_lookup_cache (const char *toset
, const char *fromset
,
247 struct __gconv_step
**handle
, size_t *nsteps
, int flags
)
249 const struct gconvcache_header
*header
;
253 const struct module_entry
*modtab
;
254 const struct module_entry
*from_module
;
255 const struct module_entry
*to_module
;
256 struct __gconv_step
*result
;
258 if (gconv_cache
== NULL
)
259 /* We have no cache available. */
262 header
= (const struct gconvcache_header
*) gconv_cache
;
263 strtab
= (char *) gconv_cache
+ header
->string_offset
;
264 modtab
= (const struct module_entry
*) ((char *) gconv_cache
265 + header
->module_offset
);
267 if (find_module_idx (fromset
, &fromidx
) != 0
268 || (header
->module_offset
+ (fromidx
+ 1) * sizeof (struct module_entry
)
270 return __GCONV_NOCONV
;
271 from_module
= &modtab
[fromidx
];
273 if (find_module_idx (toset
, &toidx
) != 0
274 || (header
->module_offset
+ (toidx
+ 1) * sizeof (struct module_entry
)
276 return __GCONV_NOCONV
;
277 to_module
= &modtab
[toidx
];
279 /* Avoid copy-only transformations if the user requests. */
280 if (__builtin_expect (flags
& GCONV_AVOID_NOCONV
, 0) && fromidx
== toidx
)
281 return __GCONV_NULCONV
;
283 /* If there are special conversions available examine them first. */
284 if (fromidx
!= 0 && toidx
!= 0
285 && __builtin_expect (from_module
->extra_offset
, 0) != 0)
287 /* Search through the list to see whether there is a module
288 matching the destination character set. */
289 const struct extra_entry
*extra
;
291 /* Note the -1. This is due to the offset added in iconvconfig.
292 See there for more explanations. */
293 extra
= (const struct extra_entry
*) ((char *) gconv_cache
294 + header
->otherconv_offset
295 + from_module
->extra_offset
- 1);
296 while (extra
->module_cnt
!= 0
297 && extra
->module
[extra
->module_cnt
- 1].outname_offset
!= toidx
)
298 extra
= (const struct extra_entry
*) ((char *) extra
299 + sizeof (struct extra_entry
)
301 * sizeof (struct extra_entry_module
)));
303 if (extra
->module_cnt
!= 0)
305 /* Use the extra module. First determine how many steps. */
309 *nsteps
= extra
->module_cnt
;
311 (struct __gconv_step
*) malloc (extra
->module_cnt
312 * sizeof (struct __gconv_step
));
314 return __GCONV_NOMEM
;
316 fromname
= (char *) strtab
+ from_module
->canonname_offset
;
320 result
[idx
].__from_name
= fromname
;
321 fromname
= result
[idx
].__to_name
=
322 (char *) strtab
+ modtab
[extra
->module
[idx
].outname_offset
].canonname_offset
;
324 result
[idx
].__counter
= 1;
325 result
[idx
].__data
= NULL
;
328 if (strtab
[extra
->module
[idx
].dir_offset
] != '\0')
330 /* Load the module, return handle for it. */
333 res
= find_module (strtab
+ extra
->module
[idx
].dir_offset
,
334 strtab
+ extra
->module
[idx
].name_offset
,
336 if (__builtin_expect (res
, __GCONV_OK
) != __GCONV_OK
)
338 /* Something went wrong. */
345 /* It's a builtin transformation. */
346 __gconv_get_builtin_trans (strtab
347 + extra
->module
[idx
].name_offset
,
351 while (++idx
< extra
->module_cnt
);
358 /* See whether we can convert via the INTERNAL charset. */
359 if ((fromidx
!= 0 && __builtin_expect (from_module
->fromname_offset
, 1) == 0)
360 || (toidx
!= 0 && __builtin_expect (to_module
->toname_offset
, 1) == 0)
361 || (fromidx
== 0 && toidx
== 0))
362 /* Not possible. Nothing we can do. */
363 return __GCONV_NOCONV
;
365 /* We will use up to two modules. Always allocate room for two. */
366 result
= (struct __gconv_step
*) malloc (2 * sizeof (struct __gconv_step
));
368 return __GCONV_NOMEM
;
373 /* Generate data structure for conversion to INTERNAL. */
376 result
[0].__from_name
= (char *) strtab
+ from_module
->canonname_offset
;
377 result
[0].__to_name
= (char *) "INTERNAL";
379 result
[0].__counter
= 1;
380 result
[0].__data
= NULL
;
383 if (strtab
[from_module
->todir_offset
] != '\0')
385 /* Load the module, return handle for it. */
386 int res
= find_module (strtab
+ from_module
->todir_offset
,
387 strtab
+ from_module
->toname_offset
,
389 if (__builtin_expect (res
, __GCONV_OK
) != __GCONV_OK
)
391 /* Something went wrong. */
398 /* It's a builtin transformation. */
399 __gconv_get_builtin_trans (strtab
+ from_module
->toname_offset
,
405 /* Generate data structure for conversion from INTERNAL. */
410 result
[idx
].__from_name
= (char *) "INTERNAL";
411 result
[idx
].__to_name
= (char *) strtab
+ to_module
->canonname_offset
;
413 result
[idx
].__counter
= 1;
414 result
[idx
].__data
= NULL
;
417 if (strtab
[to_module
->fromdir_offset
] != '\0')
419 /* Load the module, return handle for it. */
420 int res
= find_module (strtab
+ to_module
->fromdir_offset
,
421 strtab
+ to_module
->fromname_offset
,
423 if (__builtin_expect (res
, __GCONV_OK
) != __GCONV_OK
)
425 /* Something went wrong. */
427 __gconv_release_step (&result
[0]);
434 /* It's a builtin transformation. */
435 __gconv_get_builtin_trans (strtab
+ to_module
->fromname_offset
,
445 /* Free memory allocated for the transformation record. */
447 __gconv_release_cache (struct __gconv_step
*steps
, size_t nsteps
)
449 if (gconv_cache
!= NULL
)
450 /* The only thing we have to deallocate is the record with the
456 /* Free all resources if necessary. */
457 libc_freeres_fn (free_mem
)
461 #ifdef _POSIX_MAPPED_FILES
462 else if (gconv_cache
!= NULL
)
463 __munmap (gconv_cache
, cache_size
);