1994-05-27 05:00:24 +00:00
|
|
|
/*
|
2002-01-24 15:38:59 +00:00
|
|
|
* Copyright (c) 1996 - 2002 FreeBSD Project
|
1994-05-27 05:00:24 +00:00
|
|
|
* Copyright (c) 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Paul Borman at Krystal Technologies.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
|
|
|
static char sccsid[] = "@(#)setlocale.c 8.1 (Berkeley) 7/4/93";
|
|
|
|
#endif /* LIBC_SCCS and not lint */
|
2002-03-22 21:53:29 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-27 05:00:24 +00:00
|
|
|
|
1996-11-27 22:30:44 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2002-08-03 09:04:44 +00:00
|
|
|
#include <errno.h>
|
1994-05-27 05:00:24 +00:00
|
|
|
#include <limits.h>
|
|
|
|
#include <locale.h>
|
|
|
|
#include <rune.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1996-11-27 22:30:44 +00:00
|
|
|
#include <unistd.h>
|
1995-10-23 01:34:17 +00:00
|
|
|
#include "collate.h"
|
2001-02-08 16:58:53 +00:00
|
|
|
#include "lmonetary.h" /* for __monetary_load_locale() */
|
|
|
|
#include "lnumeric.h" /* for __numeric_load_locale() */
|
|
|
|
#include "lmessages.h" /* for __messages_load_locale() */
|
1997-02-06 09:11:06 +00:00
|
|
|
#include "setlocale.h"
|
2002-08-08 05:51:54 +00:00
|
|
|
#include "ldpart.h"
|
2002-01-24 15:38:59 +00:00
|
|
|
#include "../stdtime/timelocal.h" /* for __time_load_locale() */
|
1994-05-27 05:00:24 +00:00
|
|
|
|
1995-10-23 01:34:17 +00:00
|
|
|
/*
|
|
|
|
* Category names for getenv()
|
|
|
|
*/
|
|
|
|
static char *categories[_LC_LAST] = {
|
|
|
|
"LC_ALL",
|
|
|
|
"LC_COLLATE",
|
|
|
|
"LC_CTYPE",
|
|
|
|
"LC_MONETARY",
|
|
|
|
"LC_NUMERIC",
|
|
|
|
"LC_TIME",
|
1998-04-29 22:39:56 +00:00
|
|
|
"LC_MESSAGES",
|
1995-10-23 01:34:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Current locales for each category
|
|
|
|
*/
|
1997-02-06 09:11:06 +00:00
|
|
|
static char current_categories[_LC_LAST][ENCODING_LEN + 1] = {
|
1995-10-23 01:34:17 +00:00
|
|
|
"C",
|
|
|
|
"C",
|
|
|
|
"C",
|
|
|
|
"C",
|
|
|
|
"C",
|
|
|
|
"C",
|
1998-04-29 22:39:56 +00:00
|
|
|
"C",
|
1995-10-23 01:34:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The locales we are going to try and load
|
|
|
|
*/
|
1997-02-06 09:11:06 +00:00
|
|
|
static char new_categories[_LC_LAST][ENCODING_LEN + 1];
|
|
|
|
static char saved_categories[_LC_LAST][ENCODING_LEN + 1];
|
1995-10-23 01:34:17 +00:00
|
|
|
|
1997-02-06 09:11:06 +00:00
|
|
|
static char current_locale_string[_LC_LAST * (ENCODING_LEN + 1/*"/"*/ + 1)];
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2002-03-21 22:49:10 +00:00
|
|
|
static char *currentlocale(void);
|
2002-08-08 05:51:54 +00:00
|
|
|
static int wrap_setrunelocale(const char *);
|
2002-03-21 22:49:10 +00:00
|
|
|
static char *loadlocale(int);
|
1994-05-27 05:00:24 +00:00
|
|
|
|
|
|
|
char *
|
|
|
|
setlocale(category, locale)
|
|
|
|
int category;
|
|
|
|
const char *locale;
|
|
|
|
{
|
2002-08-05 09:58:45 +00:00
|
|
|
int i, j, len, saverr;
|
1994-05-27 05:00:24 +00:00
|
|
|
char *env, *r;
|
|
|
|
|
2002-08-03 09:04:44 +00:00
|
|
|
if (category < LC_ALL || category >= _LC_LAST) {
|
|
|
|
errno = EINVAL;
|
1994-05-27 05:00:24 +00:00
|
|
|
return (NULL);
|
2002-08-03 09:04:44 +00:00
|
|
|
}
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2002-08-05 09:58:45 +00:00
|
|
|
if (locale == NULL)
|
1996-11-26 02:49:53 +00:00
|
|
|
return (category != LC_ALL ?
|
1994-05-27 05:00:24 +00:00
|
|
|
current_categories[category] : currentlocale());
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Default to the current locale for everything.
|
|
|
|
*/
|
1996-11-26 08:00:17 +00:00
|
|
|
for (i = 1; i < _LC_LAST; ++i)
|
1994-05-27 05:00:24 +00:00
|
|
|
(void)strcpy(new_categories[i], current_categories[i]);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now go fill up new_categories from the locale argument
|
|
|
|
*/
|
|
|
|
if (!*locale) {
|
Fix setlocale() to conform to the ISO C and POSIX standards.
The below text is quoted from the latest POSIX draft:
: The values of locale categories shall be determined by a precedence
: order; the first condition met below determines the value:
:
: 1. If the LC_ALL environment variable is defined and is not null,
: the value of LC_ALL shall be used.
: 2. If the LC_* environment variable (LC_COLLATE, LC_CTYPE, LC_MESSAGES,
: LC_MONETARY, LC_NUMERIC, LC_TIME) is defined and is not null, the
: value of the environment variable shall be used to initialize the
: category that corresponds to the environment variable.
: 3. If the LANG environment variable is defined and is not null, the
: value of the LANG environment variable shall be used.
: 4. If the LANG environment variable is not set or is set to the empty
: string, the implementation-defined default locale shall be used.
The conditions 1 and 2 were interchanged, i.e., LC_* were looked first,
then LC_ALL, then LANG (note that LC_ALL and LANG were essentially the
same, providing the default, with LC_ALL taking precedence over LANG).
Now, LC_ALL and LANG serve the different purposes. LC_ALL overrides
any LC_*, and LANG provides the default fallback.
Testcase:
/usr/bin/env LC_ALL=C LC_TIME=de_DE.ISO_8859-1 /bin/date
Should return date in the "C" locale format.
Inspired by: date(1) reference page in the Draft
2001-03-02 12:45:52 +00:00
|
|
|
env = getenv("LC_ALL");
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2002-08-05 09:58:45 +00:00
|
|
|
if (category != LC_ALL && (env == NULL || !*env))
|
Fix setlocale() to conform to the ISO C and POSIX standards.
The below text is quoted from the latest POSIX draft:
: The values of locale categories shall be determined by a precedence
: order; the first condition met below determines the value:
:
: 1. If the LC_ALL environment variable is defined and is not null,
: the value of LC_ALL shall be used.
: 2. If the LC_* environment variable (LC_COLLATE, LC_CTYPE, LC_MESSAGES,
: LC_MONETARY, LC_NUMERIC, LC_TIME) is defined and is not null, the
: value of the environment variable shall be used to initialize the
: category that corresponds to the environment variable.
: 3. If the LANG environment variable is defined and is not null, the
: value of the LANG environment variable shall be used.
: 4. If the LANG environment variable is not set or is set to the empty
: string, the implementation-defined default locale shall be used.
The conditions 1 and 2 were interchanged, i.e., LC_* were looked first,
then LC_ALL, then LANG (note that LC_ALL and LANG were essentially the
same, providing the default, with LC_ALL taking precedence over LANG).
Now, LC_ALL and LANG serve the different purposes. LC_ALL overrides
any LC_*, and LANG provides the default fallback.
Testcase:
/usr/bin/env LC_ALL=C LC_TIME=de_DE.ISO_8859-1 /bin/date
Should return date in the "C" locale format.
Inspired by: date(1) reference page in the Draft
2001-03-02 12:45:52 +00:00
|
|
|
env = getenv(categories[category]);
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2002-08-05 09:58:45 +00:00
|
|
|
if (env == NULL || !*env)
|
1994-05-27 05:00:24 +00:00
|
|
|
env = getenv("LANG");
|
|
|
|
|
2002-08-05 09:58:45 +00:00
|
|
|
if (env == NULL || !*env)
|
1994-05-27 05:00:24 +00:00
|
|
|
env = "C";
|
|
|
|
|
2002-08-05 09:58:45 +00:00
|
|
|
if (strlen(env) > ENCODING_LEN) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
(void)strcpy(new_categories[category], env);
|
|
|
|
|
1996-11-26 02:49:53 +00:00
|
|
|
if (category == LC_ALL) {
|
1994-05-27 05:00:24 +00:00
|
|
|
for (i = 1; i < _LC_LAST; ++i) {
|
2002-08-05 09:58:45 +00:00
|
|
|
if ((env = getenv(categories[i])) == NULL ||
|
|
|
|
!*env)
|
1996-11-26 02:49:53 +00:00
|
|
|
env = new_categories[LC_ALL];
|
2002-08-05 09:58:45 +00:00
|
|
|
else if (strlen(env) > ENCODING_LEN) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
(void)strcpy(new_categories[i], env);
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|
|
|
|
}
|
2002-08-05 09:58:45 +00:00
|
|
|
} else if (category != LC_ALL) {
|
|
|
|
if (strlen(locale) > ENCODING_LEN) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
(void)strcpy(new_categories[category], locale);
|
|
|
|
} else {
|
1997-02-06 09:11:06 +00:00
|
|
|
if ((r = strchr(locale, '/')) == NULL) {
|
2002-08-05 09:58:45 +00:00
|
|
|
if (strlen(locale) > ENCODING_LEN) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return (NULL);
|
|
|
|
}
|
2002-08-02 01:04:49 +00:00
|
|
|
for (i = 1; i < _LC_LAST; ++i)
|
2002-08-05 09:58:45 +00:00
|
|
|
(void)strcpy(new_categories[i], locale);
|
1994-05-27 05:00:24 +00:00
|
|
|
} else {
|
2002-08-03 09:04:44 +00:00
|
|
|
for (i = 1; r[1] == '/'; ++r)
|
|
|
|
;
|
|
|
|
if (!r[1]) {
|
|
|
|
errno = EINVAL;
|
1994-05-27 05:00:24 +00:00
|
|
|
return (NULL); /* Hmm, just slashes... */
|
2002-08-03 09:04:44 +00:00
|
|
|
}
|
1994-05-27 05:00:24 +00:00
|
|
|
do {
|
2002-08-02 01:04:49 +00:00
|
|
|
if (i == _LC_LAST)
|
2002-08-02 13:36:54 +00:00
|
|
|
break; /* Too many slashes... */
|
2002-08-05 09:58:45 +00:00
|
|
|
if ((len = r - locale) > ENCODING_LEN) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return (NULL);
|
|
|
|
}
|
2002-08-03 09:04:44 +00:00
|
|
|
(void)strlcpy(new_categories[i], locale,
|
|
|
|
len + 1);
|
1997-02-06 09:11:06 +00:00
|
|
|
i++;
|
1994-05-27 05:00:24 +00:00
|
|
|
locale = r;
|
|
|
|
while (*locale == '/')
|
2002-08-03 09:04:44 +00:00
|
|
|
++locale;
|
|
|
|
while (*++r && *r != '/')
|
|
|
|
;
|
1994-05-27 05:00:24 +00:00
|
|
|
} while (*locale);
|
1999-11-09 11:09:16 +00:00
|
|
|
while (i < _LC_LAST) {
|
1994-05-27 05:00:24 +00:00
|
|
|
(void)strcpy(new_categories[i],
|
2002-08-03 09:04:44 +00:00
|
|
|
new_categories[i-1]);
|
1999-11-09 11:09:16 +00:00
|
|
|
i++;
|
|
|
|
}
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-09-04 03:43:24 +00:00
|
|
|
if (category != LC_ALL)
|
1996-11-26 08:00:17 +00:00
|
|
|
return (loadlocale(category));
|
1994-05-27 05:00:24 +00:00
|
|
|
|
1996-11-26 08:00:17 +00:00
|
|
|
for (i = 1; i < _LC_LAST; ++i) {
|
|
|
|
(void)strcpy(saved_categories[i], current_categories[i]);
|
1996-11-26 02:49:53 +00:00
|
|
|
if (loadlocale(i) == NULL) {
|
2002-08-05 09:58:45 +00:00
|
|
|
saverr = errno;
|
1996-11-26 02:49:53 +00:00
|
|
|
for (j = 1; j < i; j++) {
|
|
|
|
(void)strcpy(new_categories[j],
|
2002-08-03 09:04:44 +00:00
|
|
|
saved_categories[j]);
|
2002-08-08 05:51:54 +00:00
|
|
|
if (loadlocale(j) == NULL) {
|
|
|
|
(void)strcpy(new_categories[j], "C");
|
|
|
|
(void)loadlocale(j);
|
|
|
|
}
|
1996-11-26 02:49:53 +00:00
|
|
|
}
|
2002-08-03 09:04:44 +00:00
|
|
|
errno = saverr;
|
1996-11-26 02:49:53 +00:00
|
|
|
return (NULL);
|
|
|
|
}
|
1996-11-26 08:00:17 +00:00
|
|
|
}
|
1996-11-26 02:49:53 +00:00
|
|
|
return (currentlocale());
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|
|
|
|
|
1995-10-23 01:34:17 +00:00
|
|
|
static char *
|
|
|
|
currentlocale()
|
|
|
|
{
|
1996-11-26 02:49:53 +00:00
|
|
|
int i;
|
1995-10-23 01:34:17 +00:00
|
|
|
|
|
|
|
(void)strcpy(current_locale_string, current_categories[1]);
|
|
|
|
|
|
|
|
for (i = 2; i < _LC_LAST; ++i)
|
|
|
|
if (strcmp(current_categories[1], current_categories[i])) {
|
1998-04-29 22:39:56 +00:00
|
|
|
for (i = 2; i < _LC_LAST; ++i) {
|
2002-08-03 09:04:44 +00:00
|
|
|
(void)strcat(current_locale_string, "/");
|
|
|
|
(void)strcat(current_locale_string,
|
|
|
|
current_categories[i]);
|
1998-04-29 22:39:56 +00:00
|
|
|
}
|
1995-10-23 01:34:17 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return (current_locale_string);
|
|
|
|
}
|
|
|
|
|
2002-08-03 09:04:44 +00:00
|
|
|
static int
|
2002-08-08 05:51:54 +00:00
|
|
|
wrap_setrunelocale(const char *locale)
|
2002-08-03 09:04:44 +00:00
|
|
|
{
|
2002-08-08 05:51:54 +00:00
|
|
|
int ret = setrunelocale((char *)locale);
|
2002-08-03 09:04:44 +00:00
|
|
|
|
|
|
|
if (ret != 0) {
|
|
|
|
errno = ret;
|
2002-08-08 05:51:54 +00:00
|
|
|
return (_LDP_ERROR);
|
2002-08-03 09:04:44 +00:00
|
|
|
}
|
2002-08-08 05:51:54 +00:00
|
|
|
return (_LDP_LOADED);
|
2002-08-03 09:04:44 +00:00
|
|
|
}
|
|
|
|
|
1994-05-27 05:00:24 +00:00
|
|
|
static char *
|
|
|
|
loadlocale(category)
|
|
|
|
int category;
|
|
|
|
{
|
1996-11-26 08:00:17 +00:00
|
|
|
char *new = new_categories[category];
|
|
|
|
char *old = current_categories[category];
|
2002-08-08 05:51:54 +00:00
|
|
|
int (*func)(const char *);
|
1996-11-26 02:49:53 +00:00
|
|
|
|
2002-08-03 09:04:44 +00:00
|
|
|
if ((new[0] == '.' &&
|
|
|
|
(new[1] == '\0' || (new[1] == '.' && new[2] == '\0'))) ||
|
|
|
|
strchr(new, '/') != NULL) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
1997-04-07 08:54:38 +00:00
|
|
|
if (_PathLocale == NULL) {
|
|
|
|
char *p = getenv("PATH_LOCALE");
|
|
|
|
|
1998-01-15 09:58:08 +00:00
|
|
|
if (p != NULL
|
|
|
|
#ifndef __NETBSD_SYSCALLS
|
|
|
|
&& !issetugid()
|
|
|
|
#endif
|
|
|
|
) {
|
1997-04-07 08:54:38 +00:00
|
|
|
if (strlen(p) + 1/*"/"*/ + ENCODING_LEN +
|
2002-08-03 09:04:44 +00:00
|
|
|
1/*"/"*/ + CATEGORY_LEN >= PATH_MAX) {
|
|
|
|
errno = ENAMETOOLONG;
|
1997-04-07 08:54:38 +00:00
|
|
|
return (NULL);
|
2002-08-03 09:04:44 +00:00
|
|
|
}
|
1997-04-07 08:54:38 +00:00
|
|
|
_PathLocale = strdup(p);
|
2002-08-08 05:51:54 +00:00
|
|
|
if (_PathLocale == NULL) {
|
|
|
|
errno = ENOMEM;
|
1997-04-07 08:54:38 +00:00
|
|
|
return (NULL);
|
2002-08-08 05:51:54 +00:00
|
|
|
}
|
1997-04-07 08:54:38 +00:00
|
|
|
} else
|
|
|
|
_PathLocale = _PATH_LOCALE;
|
|
|
|
}
|
1996-11-26 02:49:53 +00:00
|
|
|
|
2002-08-03 09:04:44 +00:00
|
|
|
switch (category) {
|
|
|
|
case LC_CTYPE:
|
2002-08-04 04:29:54 +00:00
|
|
|
func = wrap_setrunelocale;
|
|
|
|
break;
|
2002-08-03 09:04:44 +00:00
|
|
|
case LC_COLLATE:
|
2002-08-04 04:29:54 +00:00
|
|
|
func = __collate_load_tables;
|
|
|
|
break;
|
2002-08-03 09:04:44 +00:00
|
|
|
case LC_TIME:
|
2002-08-04 04:29:54 +00:00
|
|
|
func = __time_load_locale;
|
|
|
|
break;
|
2002-08-03 09:04:44 +00:00
|
|
|
case LC_NUMERIC:
|
2002-08-04 04:29:54 +00:00
|
|
|
func = __numeric_load_locale;
|
|
|
|
break;
|
2002-08-03 09:04:44 +00:00
|
|
|
case LC_MONETARY:
|
2002-08-04 04:29:54 +00:00
|
|
|
func = __monetary_load_locale;
|
|
|
|
break;
|
2002-08-03 09:04:44 +00:00
|
|
|
case LC_MESSAGES:
|
2002-08-04 04:29:54 +00:00
|
|
|
func = __messages_load_locale;
|
|
|
|
break;
|
2002-08-03 09:04:44 +00:00
|
|
|
default:
|
|
|
|
errno = EINVAL;
|
|
|
|
return (NULL);
|
1995-02-16 04:24:39 +00:00
|
|
|
}
|
2002-08-04 04:29:54 +00:00
|
|
|
|
|
|
|
if (strcmp(new, old) == 0)
|
|
|
|
return (old);
|
|
|
|
|
2002-08-08 05:51:54 +00:00
|
|
|
if (func(new) != _LDP_ERROR) {
|
2002-08-04 04:29:54 +00:00
|
|
|
(void)strcpy(old, new);
|
2002-08-08 05:51:54 +00:00
|
|
|
return (old);
|
|
|
|
}
|
2002-08-04 04:29:54 +00:00
|
|
|
|
2002-08-08 05:51:54 +00:00
|
|
|
return (NULL);
|
1996-11-26 02:49:53 +00:00
|
|
|
}
|
|
|
|
|