setrunelocale.c revision 236889
1/*-
2 * Copyright (c) 1993
3 *	The Regents of the University of California.  All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Paul Borman at Krystal Technologies.
7 *
8 * Copyright (c) 2011 The FreeBSD Foundation
9 * All rights reserved.
10 * Portions of this software were developed by David Chisnall
11 * under sponsorship from the FreeBSD Foundation.
12 *
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
15 * are met:
16 * 1. Redistributions of source code must retain the above copyright
17 *    notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 *    notice, this list of conditions and the following disclaimer in the
20 *    documentation and/or other materials provided with the distribution.
21 * 4. Neither the name of the University nor the names of its contributors
22 *    may be used to endorse or promote products derived from this software
23 *    without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 */
37
38#include <sys/cdefs.h>
39__FBSDID("$FreeBSD: head/lib/libc/locale/setrunelocale.c 236889 2012-06-11 14:02:02Z theraven $");
40
41#define __RUNETYPE_INTERNAL 1
42
43#include <runetype.h>
44#include <errno.h>
45#include <limits.h>
46#include <string.h>
47#include <stdio.h>
48#include <stdlib.h>
49#include <unistd.h>
50#include <wchar.h>
51#include "ldpart.h"
52#include "mblocal.h"
53#include "setlocale.h"
54
55#undef _CurrentRuneLocale
56extern _RuneLocale const *_CurrentRuneLocale;
57#ifndef __NO_TLS
58/*
59 * A cached version of the runes for this thread.  Used by ctype.h
60 */
61_Thread_local const _RuneLocale *_ThreadRuneLocale;
62#endif
63
64extern int __mb_sb_limit;
65
66extern _RuneLocale	*_Read_RuneMagi(FILE *);
67
68static int		__setrunelocale(struct xlocale_ctype *l, const char *);
69
70#define __collate_load_error (table->__collate_load_error)
71#define __collate_substitute_nontrivial (table->__collate_substitute_nontrivial)
72#define __collate_substitute_table_ptr (table->__collate_substitute_table_ptr)
73#define __collate_char_pri_table_ptr (table->__collate_char_pri_table_ptr)
74#define __collate_chain_pri_table (table->__collate_chain_pri_table)
75
76
77static void destruct_ctype(void *v)
78{
79	struct xlocale_ctype *l = v;
80	if (strcmp(l->runes->__encoding, "EUC") == 0)
81		free(l->runes->__variable);
82	if (&_DefaultRuneLocale != l->runes)
83		free(l->runes);
84	free(l);
85}
86
87const _RuneLocale *__getCurrentRuneLocale(void)
88{
89	return XLOCALE_CTYPE(__get_locale())->runes;
90}
91
92static void free_runes(_RuneLocale *rl)
93{
94	/* FIXME: The "EUC" check here is a hideous abstraction violation. */
95	if ((rl != &_DefaultRuneLocale) && (rl)) {
96		if (strcmp(rl->__encoding, "EUC") == 0) {
97			free(rl->__variable);
98		}
99		free(rl);
100	}
101}
102
103static int
104__setrunelocale(struct xlocale_ctype *l, const char *encoding)
105{
106	FILE *fp;
107	char name[PATH_MAX];
108	_RuneLocale *rl;
109	int saverr, ret;
110	struct xlocale_ctype saved = *l;
111
112	/*
113	 * The "C" and "POSIX" locale are always here.
114	 */
115	if (strcmp(encoding, "C") == 0 || strcmp(encoding, "POSIX") == 0) {
116		free_runes(saved.runes);
117		(void) _none_init(l, (_RuneLocale*)&_DefaultRuneLocale);
118		return (0);
119	}
120
121	/* Range checking not needed, encoding length already checked before */
122	(void) strcpy(name, _PathLocale);
123	(void) strcat(name, "/");
124	(void) strcat(name, encoding);
125	(void) strcat(name, "/LC_CTYPE");
126
127	if ((fp = fopen(name, "r")) == NULL)
128		return (errno == 0 ? ENOENT : errno);
129
130	if ((rl = _Read_RuneMagi(fp)) == NULL) {
131		saverr = (errno == 0 ? EFTYPE : errno);
132		(void)fclose(fp);
133		return (saverr);
134	}
135	(void)fclose(fp);
136
137	l->__mbrtowc = NULL;
138	l->__mbsinit = NULL;
139	l->__mbsnrtowcs = __mbsnrtowcs_std;
140	l->__wcrtomb = NULL;
141	l->__wcsnrtombs = __wcsnrtombs_std;
142
143	rl->__sputrune = NULL;
144	rl->__sgetrune = NULL;
145	if (strcmp(rl->__encoding, "NONE") == 0)
146		ret = _none_init(l, rl);
147	else if (strcmp(rl->__encoding, "ASCII") == 0)
148		ret = _ascii_init(l, rl);
149	else if (strcmp(rl->__encoding, "UTF-8") == 0)
150		ret = _UTF8_init(l, rl);
151	else if (strcmp(rl->__encoding, "EUC") == 0)
152		ret = _EUC_init(l, rl);
153	else if (strcmp(rl->__encoding, "GB18030") == 0)
154 		ret = _GB18030_init(l, rl);
155	else if (strcmp(rl->__encoding, "GB2312") == 0)
156		ret = _GB2312_init(l, rl);
157	else if (strcmp(rl->__encoding, "GBK") == 0)
158		ret = _GBK_init(l, rl);
159	else if (strcmp(rl->__encoding, "BIG5") == 0)
160		ret = _BIG5_init(l, rl);
161	else if (strcmp(rl->__encoding, "MSKanji") == 0)
162		ret = _MSKanji_init(l, rl);
163	else
164		ret = EFTYPE;
165
166	if (ret == 0) {
167		/* Free the old runes if it exists. */
168		free_runes(saved.runes);
169	} else {
170		/* Restore the saved version if this failed. */
171		memcpy(l, &saved, sizeof(struct xlocale_ctype));
172		free(rl);
173	}
174
175	return (ret);
176}
177
178int
179__wrap_setrunelocale(const char *locale)
180{
181	int ret = __setrunelocale(&__xlocale_global_ctype, locale);
182
183	if (ret != 0) {
184		errno = ret;
185		return (_LDP_ERROR);
186	}
187	__mb_cur_max = __xlocale_global_ctype.__mb_cur_max;
188	__mb_sb_limit = __xlocale_global_ctype.__mb_sb_limit;
189	_CurrentRuneLocale = __xlocale_global_ctype.runes;
190	return (_LDP_LOADED);
191}
192
193#ifndef __NO_TLS
194void
195__set_thread_rune_locale(locale_t loc) {
196
197	if (loc == NULL) {
198		_ThreadRuneLocale = &_DefaultRuneLocale;
199	} else {
200		_ThreadRuneLocale = XLOCALE_CTYPE(loc)->runes;
201	}
202}
203#endif
204
205void *
206__ctype_load(const char *locale, locale_t unused)
207{
208	struct xlocale_ctype *l = calloc(sizeof(struct xlocale_ctype), 1);
209	l->header.header.destructor = destruct_ctype;
210	if (__setrunelocale(l, locale))
211	{
212		free(l);
213		return NULL;
214	}
215	return l;
216}
217