]> git.saurik.com Git - apple/libc.git/blame - locale/FreeBSD/setlocale.c
Libc-997.1.1.tar.gz
[apple/libc.git] / locale / FreeBSD / setlocale.c
CommitLineData
5b2abdfb 1/*
9385eb3d 2 * Copyright (c) 1996 - 2002 FreeBSD Project
5b2abdfb
A
3 * Copyright (c) 1991, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * This code is derived from software contributed to Berkeley by
7 * Paul Borman at Krystal Technologies.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
5b2abdfb
A
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 */
33
5b2abdfb
A
34#if defined(LIBC_SCCS) && !defined(lint)
35static char sccsid[] = "@(#)setlocale.c 8.1 (Berkeley) 7/4/93";
36#endif /* LIBC_SCCS and not lint */
9385eb3d 37#include <sys/cdefs.h>
1f2f436a 38__FBSDID("$FreeBSD: src/lib/libc/locale/setlocale.c,v 1.51 2007/01/09 00:28:00 imp Exp $");
5b2abdfb 39
ad3c9f2a
A
40#include "xlocale_private.h"
41
5b2abdfb
A
42#include <sys/types.h>
43#include <sys/stat.h>
9385eb3d 44#include <errno.h>
5b2abdfb
A
45#include <limits.h>
46#include <locale.h>
3d9156a7 47#include <paths.h> /* for _PATH_LOCALE */
5b2abdfb
A
48#include <stdlib.h>
49#include <string.h>
50#include <unistd.h>
51#include "collate.h"
9385eb3d
A
52#include "lmonetary.h" /* for __monetary_load_locale() */
53#include "lnumeric.h" /* for __numeric_load_locale() */
54#include "lmessages.h" /* for __messages_load_locale() */
5b2abdfb 55#include "setlocale.h"
9385eb3d 56#include "ldpart.h"
ad3c9f2a 57#include "timelocal.h" /* for __time_load_locale() */
5b2abdfb
A
58
59/*
60 * Category names for getenv()
61 */
6465356a 62static const char * const categories[_LC_LAST] = {
5b2abdfb
A
63 "LC_ALL",
64 "LC_COLLATE",
65 "LC_CTYPE",
66 "LC_MONETARY",
67 "LC_NUMERIC",
68 "LC_TIME",
9385eb3d 69 "LC_MESSAGES",
5b2abdfb
A
70};
71
72/*
73 * Current locales for each category
74 */
75static char current_categories[_LC_LAST][ENCODING_LEN + 1] = {
76 "C",
77 "C",
78 "C",
79 "C",
80 "C",
81 "C",
9385eb3d 82 "C",
5b2abdfb
A
83};
84
3d9156a7
A
85/*
86 * Path to locale storage directory
87 */
88char *_PathLocale;
89
5b2abdfb
A
90/*
91 * The locales we are going to try and load
92 */
93static char new_categories[_LC_LAST][ENCODING_LEN + 1];
94static char saved_categories[_LC_LAST][ENCODING_LEN + 1];
95
9385eb3d 96static char *currentlocale(void);
9385eb3d 97static char *loadlocale(int);
ad3c9f2a
A
98__private_extern__ const char *__get_locale_env(int);
99
100#define UNLOCK_AND_RETURN(x) {XL_UNLOCK(&__global_locale); return (x);}
5b2abdfb
A
101
102char *
103setlocale(category, locale)
104 int category;
105 const char *locale;
106{
ad3c9f2a 107 int i, j, len, saverr, save__numeric_fp_cvt;
3d9156a7 108 const char *env, *r;
ad3c9f2a 109 locale_t save__lc_numeric_loc;
5b2abdfb 110
9385eb3d
A
111 if (category < LC_ALL || category >= _LC_LAST) {
112 errno = EINVAL;
5b2abdfb 113 return (NULL);
9385eb3d 114 }
5b2abdfb 115
9385eb3d 116 if (locale == NULL)
5b2abdfb
A
117 return (category != LC_ALL ?
118 current_categories[category] : currentlocale());
119
ad3c9f2a 120 XL_LOCK(&__global_locale);
5b2abdfb
A
121 /*
122 * Default to the current locale for everything.
123 */
124 for (i = 1; i < _LC_LAST; ++i)
125 (void)strcpy(new_categories[i], current_categories[i]);
126
127 /*
128 * Now go fill up new_categories from the locale argument
129 */
130 if (!*locale) {
5b2abdfb
A
131 if (category == LC_ALL) {
132 for (i = 1; i < _LC_LAST; ++i) {
3d9156a7
A
133 env = __get_locale_env(i);
134 if (strlen(env) > ENCODING_LEN) {
9385eb3d 135 errno = EINVAL;
ad3c9f2a 136 UNLOCK_AND_RETURN (NULL);
9385eb3d
A
137 }
138 (void)strcpy(new_categories[i], env);
5b2abdfb 139 }
3d9156a7
A
140 } else {
141 env = __get_locale_env(category);
142 if (strlen(env) > ENCODING_LEN) {
143 errno = EINVAL;
ad3c9f2a 144 UNLOCK_AND_RETURN (NULL);
3d9156a7
A
145 }
146 (void)strcpy(new_categories[category], env);
5b2abdfb 147 }
9385eb3d
A
148 } else if (category != LC_ALL) {
149 if (strlen(locale) > ENCODING_LEN) {
150 errno = EINVAL;
ad3c9f2a 151 UNLOCK_AND_RETURN (NULL);
9385eb3d
A
152 }
153 (void)strcpy(new_categories[category], locale);
5b2abdfb
A
154 } else {
155 if ((r = strchr(locale, '/')) == NULL) {
9385eb3d
A
156 if (strlen(locale) > ENCODING_LEN) {
157 errno = EINVAL;
ad3c9f2a 158 UNLOCK_AND_RETURN (NULL);
5b2abdfb 159 }
9385eb3d
A
160 for (i = 1; i < _LC_LAST; ++i)
161 (void)strcpy(new_categories[i], locale);
5b2abdfb 162 } else {
9385eb3d
A
163 for (i = 1; r[1] == '/'; ++r)
164 ;
165 if (!r[1]) {
166 errno = EINVAL;
ad3c9f2a 167 UNLOCK_AND_RETURN (NULL); /* Hmm, just slashes... */
9385eb3d 168 }
5b2abdfb 169 do {
9385eb3d
A
170 if (i == _LC_LAST)
171 break; /* Too many slashes... */
172 if ((len = r - locale) > ENCODING_LEN) {
173 errno = EINVAL;
ad3c9f2a 174 UNLOCK_AND_RETURN (NULL);
9385eb3d
A
175 }
176 (void)strlcpy(new_categories[i], locale,
177 len + 1);
5b2abdfb 178 i++;
3d9156a7
A
179 while (*r == '/')
180 r++;
5b2abdfb 181 locale = r;
3d9156a7
A
182 while (*r && *r != '/')
183 r++;
5b2abdfb
A
184 } while (*locale);
185 while (i < _LC_LAST) {
186 (void)strcpy(new_categories[i],
9385eb3d 187 new_categories[i-1]);
5b2abdfb
A
188 i++;
189 }
190 }
191 }
192
9385eb3d 193 if (category != LC_ALL)
ad3c9f2a 194 UNLOCK_AND_RETURN (loadlocale(category));
5b2abdfb 195
ad3c9f2a
A
196 save__numeric_fp_cvt = __global_locale.__numeric_fp_cvt;
197 save__lc_numeric_loc = __global_locale.__lc_numeric_loc;
198 XL_RETAIN(save__lc_numeric_loc);
5b2abdfb
A
199 for (i = 1; i < _LC_LAST; ++i) {
200 (void)strcpy(saved_categories[i], current_categories[i]);
201 if (loadlocale(i) == NULL) {
9385eb3d 202 saverr = errno;
5b2abdfb
A
203 for (j = 1; j < i; j++) {
204 (void)strcpy(new_categories[j],
9385eb3d
A
205 saved_categories[j]);
206 if (loadlocale(j) == NULL) {
207 (void)strcpy(new_categories[j], "C");
208 (void)loadlocale(j);
209 }
5b2abdfb 210 }
ad3c9f2a
A
211 __global_locale.__numeric_fp_cvt = save__numeric_fp_cvt;
212 __global_locale.__lc_numeric_loc = save__lc_numeric_loc;
213 XL_RELEASE(save__lc_numeric_loc);
9385eb3d 214 errno = saverr;
ad3c9f2a 215 UNLOCK_AND_RETURN (NULL);
5b2abdfb
A
216 }
217 }
ad3c9f2a
A
218 XL_RELEASE(save__lc_numeric_loc);
219 UNLOCK_AND_RETURN (currentlocale());
5b2abdfb
A
220}
221
222static char *
223currentlocale()
224{
225 int i;
226
6465356a
A
227 size_t bufsiz = _LC_LAST * (ENCODING_LEN + 1/*"/"*/ + 1);
228 static char *current_locale_string = NULL;
229
230 if (current_locale_string == NULL) {
231 current_locale_string = malloc(bufsiz);
232 if (current_locale_string == NULL) {
233 return NULL;
234 }
235 }
236
237 (void)strlcpy(current_locale_string, current_categories[1], bufsiz);
5b2abdfb
A
238
239 for (i = 2; i < _LC_LAST; ++i)
240 if (strcmp(current_categories[1], current_categories[i])) {
241 for (i = 2; i < _LC_LAST; ++i) {
9385eb3d
A
242 (void)strcat(current_locale_string, "/");
243 (void)strcat(current_locale_string,
244 current_categories[i]);
5b2abdfb
A
245 }
246 break;
247 }
248 return (current_locale_string);
249}
250
251static char *
252loadlocale(category)
253 int category;
254{
5b2abdfb
A
255 char *new = new_categories[category];
256 char *old = current_categories[category];
ad3c9f2a 257 int (*func)(const char *, locale_t);
3d9156a7 258 int saved_errno;
9385eb3d
A
259
260 if ((new[0] == '.' &&
261 (new[1] == '\0' || (new[1] == '.' && new[2] == '\0'))) ||
262 strchr(new, '/') != NULL) {
263 errno = EINVAL;
264 return (NULL);
265 }
5b2abdfb 266
3d9156a7
A
267 saved_errno = errno;
268 errno = __detect_path_locale();
269 if (errno != 0)
270 return (NULL);
271 errno = saved_errno;
5b2abdfb 272
9385eb3d
A
273 switch (category) {
274 case LC_CTYPE:
3d9156a7 275 func = __wrap_setrunelocale;
9385eb3d
A
276 break;
277 case LC_COLLATE:
278 func = __collate_load_tables;
279 break;
280 case LC_TIME:
281 func = __time_load_locale;
282 break;
283 case LC_NUMERIC:
284 func = __numeric_load_locale;
285 break;
286 case LC_MONETARY:
287 func = __monetary_load_locale;
288 break;
289 case LC_MESSAGES:
290 func = __messages_load_locale;
291 break;
292 default:
293 errno = EINVAL;
294 return (NULL);
5b2abdfb
A
295 }
296
9385eb3d
A
297 if (strcmp(new, old) == 0)
298 return (old);
5b2abdfb 299
ad3c9f2a 300 if (func(new, &__global_locale) != _LDP_ERROR) {
9385eb3d 301 (void)strcpy(old, new);
ad3c9f2a
A
302 switch (category) {
303 case LC_CTYPE:
304 if (__global_locale.__numeric_fp_cvt == LC_NUMERIC_FP_SAME_LOCALE)
305 __global_locale.__numeric_fp_cvt = LC_NUMERIC_FP_UNINITIALIZED;
306 break;
307 case LC_NUMERIC:
308 __global_locale.__numeric_fp_cvt = LC_NUMERIC_FP_UNINITIALIZED;
309 XL_RELEASE(__global_locale.__lc_numeric_loc);
310 __global_locale.__lc_numeric_loc = NULL;
311 break;
312 }
9385eb3d 313 return (old);
5b2abdfb
A
314 }
315
5b2abdfb
A
316 return (NULL);
317}
318
ad3c9f2a 319__private_extern__ const char *
3d9156a7
A
320__get_locale_env(category)
321 int category;
322{
323 const char *env;
324
325 /* 1. check LC_ALL. */
326 env = getenv(categories[0]);
327
328 /* 2. check LC_* */
329 if (env == NULL || !*env)
330 env = getenv(categories[category]);
331
332 /* 3. check LANG */
333 if (env == NULL || !*env)
334 env = getenv("LANG");
335
336 /* 4. if none is set, fall to "C" */
337 if (env == NULL || !*env)
338 env = "C";
339
340 return (env);
341}
342
343/*
344 * Detect locale storage location and store its value to _PathLocale variable
345 */
ad3c9f2a 346__private_extern__ int
3d9156a7
A
347__detect_path_locale(void)
348{
349 if (_PathLocale == NULL) {
350 char *p = getenv("PATH_LOCALE");
351
352 if (p != NULL && !issetugid()) {
353 if (strlen(p) + 1/*"/"*/ + ENCODING_LEN +
354 1/*"/"*/ + CATEGORY_LEN >= PATH_MAX)
355 return (ENAMETOOLONG);
356 _PathLocale = strdup(p);
357 if (_PathLocale == NULL)
358 return (errno == 0 ? ENOMEM : errno);
359 } else
360 _PathLocale = _PATH_LOCALE;
361 }
362 return (0);
363}
364