xref: /freebsd/contrib/smbfs/lib/smb/nls.c (revision eacee0ff7ec955b32e09515246bd97b6edcd2b0f)
1 /*
2  * Copyright (c) 2000-2001, Boris Popov
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *    This product includes software developed by Boris Popov.
16  * 4. Neither the name of the author nor the names of any co-contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  *
32  * $Id: nls.c,v 1.9 2001/08/22 03:31:36 bp Exp $
33  */
34 
35 #include <sys/types.h>
36 #include <sys/iconv.h>
37 #include <sys/sysctl.h>
38 #include <ctype.h>
39 #ifndef APPLE
40 #include <dlfcn.h>
41 #endif
42 #include <errno.h>
43 #include <stdio.h>
44 #include <strings.h>
45 #include <stdlib.h>
46 #include <locale.h>
47 #include <err.h>
48 #include <netsmb/smb_lib.h>
49 
50 /*
51  * prototype iconv* functions
52  */
53 typedef void *iconv_t;
54 
55 static iconv_t (*my_iconv_open)(const char *, const char *);
56 static size_t(*my_iconv)(iconv_t, const char **, size_t *, char **, size_t *);
57 static int(*my_iconv_close)(iconv_t);
58 
59 u_char nls_lower[256];
60 u_char nls_upper[256];
61 
62 static iconv_t nls_toext, nls_toloc;
63 static int iconv_loaded;
64 static void *iconv_lib;
65 
66 int
67 nls_setlocale(const char *name)
68 {
69 	int i;
70 
71 	if (setlocale(LC_CTYPE, name) == NULL) {
72 		warnx("can't set locale '%s'\n", name);
73 		return EINVAL;
74 	}
75 	for (i = 0; i < 256; i++) {
76 		nls_lower[i] = tolower(i);
77 		nls_upper[i] = toupper(i);
78 	}
79 	return 0;
80 }
81 
82 int
83 nls_setrecode(const char *local, const char *external)
84 {
85 #ifdef APPLE
86 	return ENOENT;
87 #else
88 	iconv_t icd;
89 
90 	if (iconv_loaded == 2)
91 		return ENOENT;
92 	else if (iconv_loaded == 0) {
93 		iconv_loaded++;
94 		iconv_lib = dlopen("libiconv.so", RTLD_LAZY | RTLD_GLOBAL);
95 		if (iconv_lib == NULL) {
96 			warn("Unable to load iconv library: %s\n", dlerror());
97 			iconv_loaded++;
98 			return ENOENT;
99 		}
100 		my_iconv_open = dlsym(iconv_lib, "iconv_open");
101 		my_iconv = dlsym(iconv_lib, "iconv");
102 		my_iconv_close = dlsym(iconv_lib, "iconv_close");
103 	}
104 	if (nls_toext)
105 		my_iconv_close(nls_toext);
106 	if (nls_toloc)
107 		my_iconv_close(nls_toloc);
108 	nls_toext = nls_toloc = (iconv_t)0;
109 	icd = my_iconv_open(external, local);
110 	if (icd == (iconv_t)-1)
111 		return errno;
112 	nls_toext = icd;
113 	icd = my_iconv_open(local, external);
114 	if (icd == (iconv_t)-1) {
115 		my_iconv_close(nls_toext);
116 		nls_toext = (iconv_t)0;
117 		return errno;
118 	}
119 	nls_toloc = icd;
120 	return 0;
121 #endif
122 }
123 
124 char *
125 nls_str_toloc(char *dst, const char *src)
126 {
127 	char *p = dst;
128 	int inlen, outlen;
129 
130 	if (!iconv_loaded)
131 		return strcpy(dst, src);
132 
133 	if (nls_toloc == (iconv_t)0)
134 		return strcpy(dst, src);
135 	inlen = outlen = strlen(src);
136 	my_iconv(nls_toloc, NULL, NULL, &p, &outlen);
137 	my_iconv(nls_toloc, &src, &inlen, &p, &outlen);
138 	*p = 0;
139 	return dst;
140 }
141 
142 char *
143 nls_str_toext(char *dst, const char *src)
144 {
145 	char *p = dst;
146 	int inlen, outlen;
147 
148 	if (!iconv_loaded)
149 		return strcpy(dst, src);
150 
151 	if (nls_toext == (iconv_t)0)
152 		return strcpy(dst, src);
153 	inlen = outlen = strlen(src);
154 	my_iconv(nls_toext, NULL, NULL, &p, &outlen);
155 	my_iconv(nls_toext, &src, &inlen, &p, &outlen);
156 	*p = 0;
157 	return dst;
158 }
159 
160 void *
161 nls_mem_toloc(void *dst, const void *src, int size)
162 {
163 	char *p = dst;
164 	const char *s = src;
165 	int inlen, outlen;
166 
167 	if (!iconv_loaded)
168 		return memcpy(dst, src, size);
169 
170 	if (size == 0)
171 		return NULL;
172 
173 	if (nls_toloc == (iconv_t)0)
174 		return memcpy(dst, src, size);
175 	inlen = outlen = size;
176 	my_iconv(nls_toloc, NULL, NULL, &p, &outlen);
177 	my_iconv(nls_toloc, &s, &inlen, &p, &outlen);
178 	return dst;
179 }
180 
181 void *
182 nls_mem_toext(void *dst, const void *src, int size)
183 {
184 	char *p = dst;
185 	const char *s = src;
186 	int inlen, outlen;
187 
188 	if (size == 0)
189 		return NULL;
190 
191 	if (!iconv_loaded || nls_toext == (iconv_t)0)
192 		return memcpy(dst, src, size);
193 
194 	inlen = outlen = size;
195 	my_iconv(nls_toext, NULL, NULL, &p, &outlen);
196 	my_iconv(nls_toext, &s, &inlen, &p, &outlen);
197 	return dst;
198 }
199 
200 char *
201 nls_str_upper(char *dst, const char *src)
202 {
203 	char *p = dst;
204 
205 	while (*src)
206 		*dst++ = toupper(*src++);
207 	*dst = 0;
208 	return p;
209 }
210 
211 char *
212 nls_str_lower(char *dst, const char *src)
213 {
214 	char *p = dst;
215 
216 	while (*src)
217 		*dst++ = tolower(*src++);
218 	*dst = 0;
219 	return p;
220 }
221