Merge branch 'vendor/DHCPCD'
[dragonfly.git] / lib / libc / locale / setrunelocale.c
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  * 3. 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  * $FreeBSD: head/lib/libc/locale/setrunelocale.c 264038 2014-04-02 11:10:46Z theraven $
38  */
39
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
56 extern _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 const _RuneLocale *_ThreadRuneLocale;
62 #endif
63
64 extern _RuneLocale      *_Read_RuneMagi(const char *);
65
66 static int              __setrunelocale(struct xlocale_ctype *l, const char *);
67
68 static void
69 destruct_ctype(void *v)
70 {
71         struct xlocale_ctype *l = v;
72
73         if (&_DefaultRuneLocale != l->runes)
74                 free(l->runes);
75         free(l);
76 }
77
78 const _RuneLocale *
79 __getCurrentRuneLocale(void)
80 {
81
82         return (XLOCALE_CTYPE(__get_locale())->runes);
83 }
84
85 static void
86 free_runes(_RuneLocale *rl)
87 {
88         if ((rl != &_DefaultRuneLocale) && (rl)) {
89                 free(rl);
90         }
91 }
92
93 static int
94 __setrunelocale(struct xlocale_ctype *l, const char *encoding)
95 {
96         _RuneLocale *rl;
97         int ret;
98         char path[PATH_MAX];
99         struct xlocale_ctype saved = *l;
100
101         /*
102          * The "C" and "POSIX" locale are always here.
103          */
104         if (strcmp(encoding, "C") == 0 || strcmp(encoding, "POSIX") == 0) {
105                 free_runes(saved.runes);
106                 (void) _none_init(l, (_RuneLocale*)&_DefaultRuneLocale);
107                 return (0);
108         }
109
110         /* Range checking not needed, encoding length already checked before */
111         (void) snprintf(path, sizeof (path), "%s/%s/LC_CTYPE",
112             _PathLocale, encoding);
113
114         if ((rl = _Read_RuneMagi(path)) == NULL) {
115                 errno = EINVAL;
116                 return (errno);
117         }
118
119         l->__mbrtowc = NULL;
120         l->__mbsinit = NULL;
121         l->__mbsnrtowcs = NULL;
122         l->__wcrtomb = NULL;
123         l->__wcsnrtombs = NULL;
124
125         rl->__sputrune = NULL;
126         rl->__sgetrune = NULL;
127         if (strcmp(rl->__encoding, "NONE:US-ASCII") == 0)
128                 ret = _ascii_init(l, rl);
129         else if (strncmp(rl->__encoding, "NONE", 4) == 0)
130                 ret = _none_init(l, rl);
131         else if (strcmp(rl->__encoding, "UTF-8") == 0)
132                 ret = _UTF8_init(l, rl);
133         else if (strcmp(rl->__encoding, "EUC-CN") == 0)
134                 ret = _EUC_CN_init(l, rl);
135         else if (strcmp(rl->__encoding, "EUC-JP") == 0)
136                 ret = _EUC_JP_init(l, rl);
137         else if (strcmp(rl->__encoding, "EUC-KR") == 0)
138                 ret = _EUC_KR_init(l, rl);
139         else if (strcmp(rl->__encoding, "EUC-TW") == 0)
140                 ret = _EUC_TW_init(l, rl);
141         else if (strcmp(rl->__encoding, "GB18030") == 0)
142                 ret = _GB18030_init(l, rl);
143         else if (strcmp(rl->__encoding, "GB2312") == 0)
144                 ret = _GB2312_init(l, rl);
145         else if (strcmp(rl->__encoding, "GBK") == 0)
146                 ret = _GBK_init(l, rl);
147         else if (strcmp(rl->__encoding, "BIG5") == 0)
148                 ret = _BIG5_init(l, rl);
149         else if (strcmp(rl->__encoding, "MSKanji") == 0)
150                 ret = _MSKanji_init(l, rl);
151         else
152                 ret = EFTYPE;
153
154         if (ret == 0) {
155                 /* Free the old runes if it exists. */
156                 free_runes(saved.runes);
157         } else {
158                 /* Restore the saved version if this failed. */
159                 memcpy(l, &saved, sizeof(struct xlocale_ctype));
160                 free(rl);
161         }
162
163         return (ret);
164 }
165
166 int
167 __wrap_setrunelocale(const char *locale)
168 {
169         int ret = __setrunelocale(&__xlocale_global_ctype, locale);
170
171         if (ret != 0) {
172                 errno = ret;
173                 return (_LDP_ERROR);
174         }
175         __mb_cur_max = __xlocale_global_ctype.__mb_cur_max;
176         __mb_sb_limit = __xlocale_global_ctype.__mb_sb_limit;
177         _CurrentRuneLocale = __xlocale_global_ctype.runes;
178         return (_LDP_LOADED);
179 }
180
181 #ifndef __NO_TLS
182 void
183 __set_thread_rune_locale(locale_t loc)
184 {
185
186         if (loc == NULL) {
187                 _ThreadRuneLocale = &_DefaultRuneLocale;
188         } else if (loc == LC_GLOBAL_LOCALE) {
189                 _ThreadRuneLocale = NULL;
190         } else {
191                 _ThreadRuneLocale = XLOCALE_CTYPE(loc)->runes;
192         }
193 }
194 #endif
195
196 void *
197 __ctype_load(const char *locale, locale_t unused __unused)
198 {
199         struct xlocale_ctype *l = calloc(sizeof(struct xlocale_ctype), 1);
200
201         l->header.header.destructor = destruct_ctype;
202         if (__setrunelocale(l, locale)) {
203                 free(l);
204                 return (NULL);
205         }
206         return (l);
207 }