Update to 2.1.x development version
[glibc.git] / locale / loadlocale.c
blob544c09ad88a72ea5366e24e89148ef89d11540e4
1 /* Functions to read locale data files.
2 Copyright (C) 1996, 1997 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1996.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 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 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 #include <errno.h>
22 #include <fcntl.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <unistd.h>
26 #include <sys/mman.h>
27 #include <sys/stat.h>
29 #include "localeinfo.h"
32 static const size_t _nl_category_num_items[] =
34 #define DEFINE_CATEGORY(category, category_name, items, a, b, c, d) \
35 [category] = _NL_ITEM_INDEX (_NL_NUM_##category),
36 #include "categories.def"
37 #undef DEFINE_CATEGORY
41 #define NO_PAREN(arg, rest...) arg, ##rest
43 #define DEFINE_CATEGORY(category, category_name, items, a, b, c, d) \
44 static const enum value_type _nl_value_type_##category[] = { NO_PAREN items };
45 #define DEFINE_ELEMENT(element, element_name, optstd, type, rest...) \
46 [_NL_ITEM_INDEX (element)] = type,
47 #include "categories.def"
48 #undef DEFINE_CATEGORY
50 static const enum value_type *_nl_value_types[] =
52 #define DEFINE_CATEGORY(category, category_name, items, a, b, c, d) \
53 [category] = _nl_value_type_##category,
54 #include "categories.def"
55 #undef DEFINE_CATEGORY
59 void
60 _nl_load_locale (struct loaded_l10nfile *file, int category)
62 int fd;
63 struct
65 unsigned int magic;
66 unsigned int nstrings;
67 unsigned int strindex[0];
68 } *filedata;
69 struct stat st;
70 struct locale_data *newdata;
71 int save_err;
72 int swap = 0;
73 int mmaped = 1;
74 size_t cnt;
75 inline unsigned int SWAP (const unsigned int *inw)
77 const unsigned char *inc = (const unsigned char *) inw;
78 if (!swap)
79 return *inw;
80 return (inc[3] << 24) | (inc[2] << 16) | (inc[1] << 8) | inc[0];
83 file->decided = 1;
84 file->data = NULL;
86 fd = __open (file->filename, O_RDONLY);
87 if (fd < 0)
88 /* Cannot open the file. */
89 return;
91 if (__fstat (fd, &st) < 0)
92 goto puntfd;
93 if (S_ISDIR (st.st_mode))
95 /* LOCALE/LC_foo is a directory; open LOCALE/LC_foo/SYS_LC_foo
96 instead. */
97 char *newp;
99 __close (fd);
101 newp = (char *) alloca (strlen (file->filename)
102 + 5 + _nl_category_name_sizes[category] + 1);
103 __stpcpy (__stpcpy (__stpcpy (newp, file->filename), "/SYS_"),
104 _nl_category_names[category]);
106 fd = __open (newp, O_RDONLY);
107 if (fd < 0)
108 return;
110 if (__fstat (fd, &st) < 0)
111 goto puntfd;
114 /* Map in the file's data. */
115 save_err = errno;
116 #ifndef MAP_COPY
117 /* Linux seems to lack read-only copy-on-write. */
118 #define MAP_COPY MAP_PRIVATE
119 #endif
120 #ifndef MAP_FILE
121 /* Some systems do not have this flag; it is superfluous. */
122 #define MAP_FILE 0
123 #endif
124 #ifndef MAP_INHERIT
125 /* Some systems might lack this; they lose. */
126 #define MAP_INHERIT 0
127 #endif
128 filedata = (void *) __mmap ((caddr_t) 0, st.st_size, PROT_READ,
129 MAP_FILE|MAP_COPY|MAP_INHERIT, fd, 0);
130 if (filedata == (void *) -1)
132 if (errno == ENOSYS)
134 /* No mmap; allocate a buffer and read from the file. */
135 mmaped = 0;
136 filedata = malloc (st.st_size);
137 if (filedata != NULL)
139 off_t to_read = st.st_size;
140 ssize_t nread;
141 char *p = (char *) filedata;
142 while (to_read > 0)
144 nread = __read (fd, p, to_read);
145 if (nread <= 0)
147 free (filedata);
148 if (nread == 0)
149 __set_errno (EINVAL); /* Bizarreness going on. */
150 goto puntfd;
152 p += nread;
153 to_read -= nread;
156 else
157 goto puntfd;
158 __set_errno (save_err);
160 else
161 goto puntfd;
164 if (filedata->magic == LIMAGIC (category))
165 /* Good data file in our byte order. */
166 swap = 0;
167 else
169 /* Try the other byte order. */
170 swap = 1;
171 if (SWAP (&filedata->magic) != LIMAGIC (category))
172 /* Bad data file in either byte order. */
174 puntmap:
175 __munmap ((caddr_t) filedata, st.st_size);
176 puntfd:
177 __close (fd);
178 return;
182 #define W(word) SWAP (&(word))
184 if (W (filedata->nstrings) < _nl_category_num_items[category] ||
185 (sizeof *filedata + W (filedata->nstrings) * sizeof (unsigned int)
186 >= (size_t) st.st_size))
188 /* Insufficient data. */
189 __set_errno (EINVAL);
190 goto puntmap;
193 newdata = malloc (sizeof *newdata +
194 (_nl_category_num_items[category]
195 * sizeof (union locale_data_value)));
196 if (! newdata)
197 goto puntmap;
199 newdata->name = NULL; /* This will be filled if necessary in findlocale.c. */
200 newdata->filedata = (void *) filedata;
201 newdata->filesize = st.st_size;
202 newdata->mmaped = mmaped;
203 newdata->usage_count = 0;
204 newdata->nstrings = _nl_category_num_items[category];
205 for (cnt = 0; cnt < newdata->nstrings; ++cnt)
207 off_t idx = W (filedata->strindex[cnt]);
208 if (idx >= newdata->filesize)
210 free (newdata);
211 __set_errno (EINVAL);
212 goto puntmap;
214 if (_nl_value_types[category][cnt] == word)
215 newdata->values[cnt].word = W (*((u_int32_t *) (newdata->filedata
216 + idx)));
217 else
218 newdata->values[cnt].string = newdata->filedata + idx;
221 __close (fd);
222 file->data = newdata;