1 /* Cache handling for iconv modules.
2 Copyright (C) 2001-2022 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
28 #include <gconv_int.h>
29 #include <iconvconfig.h>
30 #include <not-cancel.h>
31 #include <pointer_guard.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)
51 struct __stat64_t64 st
;
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 (__glibc_unlikely (__fstat64_time64 (fd
, &st
) < 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
;
208 PTR_DEMANGLE (init_fct
);
209 if (init_fct
!= NULL
)
211 status
= DL_CALL_FCT (init_fct
, (result
));
212 PTR_MANGLE (result
->__btowc_fct
);
222 __gconv_compare_alias_cache (const char *name1
, const char *name2
, int *result
)
227 if (gconv_cache
== NULL
)
230 if (find_module_idx (name1
, &name1_idx
) != 0
231 || find_module_idx (name2
, &name2_idx
) != 0)
232 *result
= strcmp (name1
, name2
);
234 *result
= (int) (name1_idx
- name2_idx
);
241 __gconv_lookup_cache (const char *toset
, const char *fromset
,
242 struct __gconv_step
**handle
, size_t *nsteps
, int flags
)
244 const struct gconvcache_header
*header
;
248 const struct module_entry
*modtab
;
249 const struct module_entry
*from_module
;
250 const struct module_entry
*to_module
;
251 struct __gconv_step
*result
;
253 if (gconv_cache
== NULL
)
254 /* We have no cache available. */
257 header
= (const struct gconvcache_header
*) gconv_cache
;
258 strtab
= (char *) gconv_cache
+ header
->string_offset
;
259 modtab
= (const struct module_entry
*) ((char *) gconv_cache
260 + header
->module_offset
);
262 if (find_module_idx (fromset
, &fromidx
) != 0
263 || (header
->module_offset
+ (fromidx
+ 1) * sizeof (struct module_entry
)
265 return __GCONV_NOCONV
;
266 from_module
= &modtab
[fromidx
];
268 if (find_module_idx (toset
, &toidx
) != 0
269 || (header
->module_offset
+ (toidx
+ 1) * sizeof (struct module_entry
)
271 return __GCONV_NOCONV
;
272 to_module
= &modtab
[toidx
];
274 /* Avoid copy-only transformations if the user requests. */
275 if (__builtin_expect (flags
& GCONV_AVOID_NOCONV
, 0) && fromidx
== toidx
)
276 return __GCONV_NULCONV
;
278 /* If there are special conversions available examine them first. */
279 if (fromidx
!= 0 && toidx
!= 0
280 && __builtin_expect (from_module
->extra_offset
, 0) != 0)
282 /* Search through the list to see whether there is a module
283 matching the destination character set. */
284 const struct extra_entry
*extra
;
286 /* Note the -1. This is due to the offset added in iconvconfig.
287 See there for more explanations. */
288 extra
= (const struct extra_entry
*) ((char *) gconv_cache
289 + header
->otherconv_offset
290 + from_module
->extra_offset
- 1);
291 while (extra
->module_cnt
!= 0
292 && extra
->module
[extra
->module_cnt
- 1].outname_offset
!= toidx
)
293 extra
= (const struct extra_entry
*) ((char *) extra
294 + sizeof (struct extra_entry
)
296 * sizeof (struct extra_entry_module
)));
298 if (extra
->module_cnt
!= 0)
300 /* Use the extra module. First determine how many steps. */
304 *nsteps
= extra
->module_cnt
;
306 (struct __gconv_step
*) malloc (extra
->module_cnt
307 * sizeof (struct __gconv_step
));
309 return __GCONV_NOMEM
;
311 fromname
= (char *) strtab
+ from_module
->canonname_offset
;
315 result
[idx
].__from_name
= fromname
;
316 fromname
= result
[idx
].__to_name
=
317 (char *) strtab
+ modtab
[extra
->module
[idx
].outname_offset
].canonname_offset
;
319 result
[idx
].__counter
= 1;
320 result
[idx
].__data
= NULL
;
323 if (strtab
[extra
->module
[idx
].dir_offset
] != '\0')
325 /* Load the module, return handle for it. */
328 res
= find_module (strtab
+ extra
->module
[idx
].dir_offset
,
329 strtab
+ extra
->module
[idx
].name_offset
,
331 if (__builtin_expect (res
, __GCONV_OK
) != __GCONV_OK
)
333 /* Something went wrong. */
340 /* It's a builtin transformation. */
341 __gconv_get_builtin_trans (strtab
342 + extra
->module
[idx
].name_offset
,
346 while (++idx
< extra
->module_cnt
);
353 /* See whether we can convert via the INTERNAL charset. */
354 if ((fromidx
!= 0 && __builtin_expect (from_module
->fromname_offset
, 1) == 0)
355 || (toidx
!= 0 && __builtin_expect (to_module
->toname_offset
, 1) == 0)
356 || (fromidx
== 0 && toidx
== 0))
357 /* Not possible. Nothing we can do. */
358 return __GCONV_NOCONV
;
360 /* We will use up to two modules. Always allocate room for two. */
361 result
= (struct __gconv_step
*) malloc (2 * sizeof (struct __gconv_step
));
363 return __GCONV_NOMEM
;
368 /* Generate data structure for conversion to INTERNAL. */
371 result
[0].__from_name
= (char *) strtab
+ from_module
->canonname_offset
;
372 result
[0].__to_name
= (char *) "INTERNAL";
374 result
[0].__counter
= 1;
375 result
[0].__data
= NULL
;
378 if (strtab
[from_module
->todir_offset
] != '\0')
380 /* Load the module, return handle for it. */
381 int res
= find_module (strtab
+ from_module
->todir_offset
,
382 strtab
+ from_module
->toname_offset
,
384 if (__builtin_expect (res
, __GCONV_OK
) != __GCONV_OK
)
386 /* Something went wrong. */
393 /* It's a builtin transformation. */
394 __gconv_get_builtin_trans (strtab
+ from_module
->toname_offset
,
400 /* Generate data structure for conversion from INTERNAL. */
405 result
[idx
].__from_name
= (char *) "INTERNAL";
406 result
[idx
].__to_name
= (char *) strtab
+ to_module
->canonname_offset
;
408 result
[idx
].__counter
= 1;
409 result
[idx
].__data
= NULL
;
412 if (strtab
[to_module
->fromdir_offset
] != '\0')
414 /* Load the module, return handle for it. */
415 int res
= find_module (strtab
+ to_module
->fromdir_offset
,
416 strtab
+ to_module
->fromname_offset
,
418 if (__builtin_expect (res
, __GCONV_OK
) != __GCONV_OK
)
420 /* Something went wrong. */
422 __gconv_release_step (&result
[0]);
429 /* It's a builtin transformation. */
430 __gconv_get_builtin_trans (strtab
+ to_module
->fromname_offset
,
440 /* Free memory allocated for the transformation record. */
442 __gconv_release_cache (struct __gconv_step
*steps
, size_t nsteps
)
444 if (gconv_cache
!= NULL
)
445 /* The only thing we have to deallocate is the record with the
451 /* Free all resources if necessary. */
452 libc_freeres_fn (free_mem
)
456 #ifdef _POSIX_MAPPED_FILES
457 else if (gconv_cache
!= NULL
)
458 __munmap (gconv_cache
, cache_size
);