1 /* Functions to read locale data files.
2 Copyright (C) 1996, 1997, 1998 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. */
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
60 _nl_load_locale (struct loaded_l10nfile
*file
, int category
)
66 unsigned int nstrings
;
67 unsigned int strindex
[0];
70 struct locale_data
*newdata
;
75 inline unsigned int SWAP (const unsigned int *inw
)
77 const unsigned char *inc
= (const unsigned char *) inw
;
80 return (inc
[3] << 24) | (inc
[2] << 16) | (inc
[1] << 8) | inc
[0];
86 fd
= __open (file
->filename
, O_RDONLY
);
88 /* Cannot open the file. */
91 if (__fstat (fd
, &st
) < 0)
93 if (S_ISDIR (st
.st_mode
))
95 /* LOCALE/LC_foo is a directory; open LOCALE/LC_foo/SYS_LC_foo
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
);
110 if (__fstat (fd
, &st
) < 0)
114 /* Map in the file's data. */
117 /* Linux seems to lack read-only copy-on-write. */
118 #define MAP_COPY MAP_PRIVATE
121 /* Some systems do not have this flag; it is superfluous. */
125 /* Some systems might lack this; they lose. */
126 #define MAP_INHERIT 0
128 filedata
= (void *) __mmap ((caddr_t
) 0, st
.st_size
, PROT_READ
,
129 MAP_FILE
|MAP_COPY
|MAP_INHERIT
, fd
, 0);
130 if ((void *) filedata
== MAP_FAILED
)
134 /* No mmap; allocate a buffer and read from the file. */
136 filedata
= malloc (st
.st_size
);
137 if (filedata
!= NULL
)
139 off_t to_read
= st
.st_size
;
141 char *p
= (char *) filedata
;
144 nread
= __read (fd
, p
, to_read
);
149 __set_errno (EINVAL
); /* Bizarreness going on. */
158 __set_errno (save_err
);
163 else if (st
.st_size
< sizeof (*filedata
))
164 /* This cannot be a locale data file since it's too small. */
167 if (filedata
->magic
== LIMAGIC (category
))
168 /* Good data file in our byte order. */
172 /* Try the other byte order. */
174 if (SWAP (&filedata
->magic
) != LIMAGIC (category
))
175 /* Bad data file in either byte order. */
178 __munmap ((caddr_t
) filedata
, st
.st_size
);
185 #define W(word) SWAP (&(word))
187 if (W (filedata
->nstrings
) < _nl_category_num_items
[category
] ||
188 (sizeof *filedata
+ W (filedata
->nstrings
) * sizeof (unsigned int)
189 >= (size_t) st
.st_size
))
191 /* Insufficient data. */
192 __set_errno (EINVAL
);
196 newdata
= malloc (sizeof *newdata
+
197 (_nl_category_num_items
[category
]
198 * sizeof (union locale_data_value
)));
202 newdata
->name
= NULL
; /* This will be filled if necessary in findlocale.c. */
203 newdata
->filedata
= (void *) filedata
;
204 newdata
->filesize
= st
.st_size
;
205 newdata
->mmaped
= mmaped
;
206 newdata
->usage_count
= 0;
207 newdata
->nstrings
= _nl_category_num_items
[category
];
208 for (cnt
= 0; cnt
< newdata
->nstrings
; ++cnt
)
210 off_t idx
= W (filedata
->strindex
[cnt
]);
211 if (idx
>= newdata
->filesize
)
214 __set_errno (EINVAL
);
217 if (_nl_value_types
[category
][cnt
] == word
)
218 newdata
->values
[cnt
].word
= W (*((u_int32_t
*) (newdata
->filedata
221 newdata
->values
[cnt
].string
= newdata
->filedata
+ idx
;
225 file
->data
= newdata
;
229 _nl_unload_locale (struct locale_data
*locale
)
232 __munmap ((caddr_t
) locale
->filedata
, locale
->filesize
);
234 free ((void *) locale
->filedata
);