1 /* Copyright (C) 1996-2022 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
25 #ifdef _POSIX_MAPPED_FILES
26 # include <sys/mman.h>
30 #include "catgetsinfo.h"
31 #include <not-cancel.h>
34 #define SWAPU32(w) bswap_32 (w)
38 __open_catalog (const char *cat_name
, const char *nlspath
, const char *env_var
,
42 struct __stat64_t64 st
;
51 if (strchr (cat_name
, '/') != NULL
|| nlspath
== NULL
)
52 fd
= __open_nocancel (cat_name
, O_RDONLY
);
55 const char *run_nlspath
= nlspath
;
57 if (__glibc_unlikely (bufact + (n) >= bufmax)) \
59 char *old_buf = buf; \
60 bufmax += (bufmax < 256 + (n)) ? 256 + (n) : bufmax; \
61 buf = realloc (buf, bufmax); \
62 if (__glibc_unlikely (buf == NULL)) \
69 /* The RUN_NLSPATH variable contains a colon separated list of
70 descriptions where we expect to find catalogs. We have to
71 recognize certain % substitutions and stop when we found the
72 first existing file. */
78 while (*run_nlspath
!= '\0')
82 if (*run_nlspath
== ':')
84 /* Leading colon or adjacent colons - treat same as %N. */
85 len
= strlen (cat_name
);
87 memcpy (&buf
[bufact
], cat_name
, len
);
91 while (*run_nlspath
!= ':' && *run_nlspath
!= '\0')
92 if (*run_nlspath
== '%')
96 ++run_nlspath
; /* We have seen the `%'. */
97 switch (*run_nlspath
++)
100 /* Use the catalog name. */
101 len
= strlen (cat_name
);
103 memcpy (&buf
[bufact
], cat_name
, len
);
107 /* Use the current locale category value. */
108 len
= strlen (env_var
);
110 memcpy (&buf
[bufact
], env_var
, len
);
114 /* Use language element of locale category value. */
119 buf
[bufact
++] = *tmp
++;
121 while (*tmp
!= '\0' && *tmp
!= '_' && *tmp
!= '.');
124 /* Use territory element of locale category value. */
128 while (*tmp
!= '\0' && *tmp
!= '_' && *tmp
!= '.');
135 buf
[bufact
++] = *tmp
++;
137 while (*tmp
!= '\0' && *tmp
!= '.');
141 /* Use code set element of locale category value. */
145 while (*tmp
!= '\0' && *tmp
!= '.');
152 buf
[bufact
++] = *tmp
++;
154 while (*tmp
!= '\0');
162 /* Unknown variable: ignore this path element. */
164 while (*run_nlspath
!= '\0' && *run_nlspath
!= ':')
172 buf
[bufact
++] = *run_nlspath
++;
180 fd
= __open_nocancel (buf
, O_RDONLY
);
189 /* Avoid dealing with directories and block devices */
190 if (__builtin_expect (fd
, 0) < 0)
196 if (__glibc_unlikely (__fstat64_time64 (fd
, &st
) < 0))
197 goto close_unlock_return
;
199 if (__builtin_expect (!S_ISREG (st
.st_mode
), 0)
200 || (size_t) st
.st_size
< sizeof (struct catalog_obj
))
202 /* `errno' is not set correctly but the file is not usable.
203 Use an reasonable error value. */
204 __set_errno (EINVAL
);
205 goto close_unlock_return
;
208 catalog
->file_size
= st
.st_size
;
209 #ifdef _POSIX_MAPPED_FILES
211 /* Linux seems to lack read-only copy-on-write. */
212 # define MAP_COPY MAP_PRIVATE
215 /* Some systems do not have this flag; it is superfluous. */
219 (struct catalog_obj
*) __mmap (NULL
, st
.st_size
, PROT_READ
,
220 MAP_FILE
|MAP_COPY
, fd
, 0);
221 if (__builtin_expect (catalog
->file_ptr
!= (struct catalog_obj
*) MAP_FAILED
,
223 /* Tell the world we managed to mmap the file. */
224 catalog
->status
= mmapped
;
226 #endif /* _POSIX_MAPPED_FILES */
228 /* mmap failed perhaps because the system call is not
229 implemented. Try to load the file. */
231 catalog
->file_ptr
= malloc (st
.st_size
);
232 if (catalog
->file_ptr
== NULL
)
233 goto close_unlock_return
;
236 /* Save read, handle partial reads. */
239 size_t now
= __read_nocancel (fd
, (((char *) catalog
->file_ptr
)
240 + (st
.st_size
- todo
)), todo
);
241 if (now
== 0 || now
== (size_t) -1)
244 if (now
== (size_t) -1 && errno
== EINTR
)
247 free ((void *) catalog
->file_ptr
);
248 goto close_unlock_return
;
253 catalog
->status
= malloced
;
256 /* Determine whether the file is a catalog file and if yes whether
257 it is written using the correct byte order. Else we have to swap
259 if (__glibc_likely (catalog
->file_ptr
->magic
== CATGETS_MAGIC
))
261 else if (catalog
->file_ptr
->magic
== SWAPU32 (CATGETS_MAGIC
))
266 /* Invalid file. Free the resources and mark catalog as not
268 #ifdef _POSIX_MAPPED_FILES
269 if (catalog
->status
== mmapped
)
270 __munmap ((void *) catalog
->file_ptr
, catalog
->file_size
);
272 #endif /* _POSIX_MAPPED_FILES */
273 free (catalog
->file_ptr
);
274 goto close_unlock_return
;
277 #define SWAP(x) (swapping ? SWAPU32 (x) : (x))
279 /* Get dimensions of the used hashing table. */
280 catalog
->plane_size
= SWAP (catalog
->file_ptr
->plane_size
);
281 catalog
->plane_depth
= SWAP (catalog
->file_ptr
->plane_depth
);
283 /* The file contains two versions of the pointer tables. Pick the
284 right one for the local byte order. */
285 #if __BYTE_ORDER == __LITTLE_ENDIAN
286 catalog
->name_ptr
= &catalog
->file_ptr
->name_ptr
[0];
287 #elif __BYTE_ORDER == __BIG_ENDIAN
288 catalog
->name_ptr
= &catalog
->file_ptr
->name_ptr
[catalog
->plane_size
289 * catalog
->plane_depth
292 # error Cannot handle __BYTE_ORDER byte order
295 /* The rest of the file contains all the strings. They are
296 addressed relative to the position of the first string. */
298 (const char *) &catalog
->file_ptr
->name_ptr
[catalog
->plane_size
299 * catalog
->plane_depth
* 3 * 2];
301 /* Determine the largest string offset mentioned in the table. */
303 tab_size
= 3 * catalog
->plane_size
* catalog
->plane_depth
;
304 for (cnt
= 2; cnt
< tab_size
; cnt
+= 3)
305 if (catalog
->name_ptr
[cnt
] > max_offset
)
306 max_offset
= catalog
->name_ptr
[cnt
];
308 /* Now we can check whether the file is large enough to contain the
309 tables it says it contains. */
310 if ((size_t) st
.st_size
311 <= (sizeof (struct catalog_obj
) + 2 * tab_size
+ max_offset
))
312 /* The last string is not contained in the file. */
315 lastp
= catalog
->strings
+ max_offset
;
316 max_offset
= (st
.st_size
317 - sizeof (struct catalog_obj
) + 2 * tab_size
+ max_offset
);
318 while (*lastp
!= '\0')
320 if (--max_offset
== 0)
328 /* Release the lock again. */
330 __close_nocancel_nostatus (fd
);
335 libc_hidden_def (__open_catalog
)