2 * Copyright (c) 2000-2001, Boris Popov
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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.
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
32 * from: Id: nls.c,v 1.10 2002/07/22 08:33:59 bp Exp
35 #include <sys/cdefs.h>
36 __RCSID("$NetBSD: nls.c,v 1.7 2004/08/02 13:38:21 tshiozak Exp $");
38 #include <sys/param.h>
39 #include <sys/types.h>
40 #include <sys/sysctl.h>
51 #include <netsmb/smb_lib.h>
54 u_char nls_lower
[256];
55 u_char nls_upper
[256];
57 static iconv_t nls_toext
, nls_toloc
;
60 nls_setlocale(const char *name
)
64 if (setlocale(LC_CTYPE
, name
) == NULL
) {
65 warnx("can't set locale '%s'", name
);
68 for (i
= 0; i
< 256; i
++) {
69 nls_lower
[i
] = tolower(i
);
70 nls_upper
[i
] = toupper(i
);
76 nls_setrecode(const char *local
, const char *external
)
84 iconv_close(nls_toext
);
86 iconv_close(nls_toloc
);
87 nls_toext
= nls_toloc
= (iconv_t
)0;
88 icd
= iconv_open(external
, local
);
89 if (icd
== (iconv_t
)-1)
92 icd
= iconv_open(local
, external
);
93 if (icd
== (iconv_t
)-1) {
94 iconv_close(nls_toext
);
95 nls_toext
= (iconv_t
)0;
104 nls_str_toloc(char *dst
, const char *src
)
107 size_t inlen
, outlen
;
109 if (nls_toloc
== (iconv_t
)0)
110 return strcpy(dst
, src
);
111 inlen
= outlen
= strlen(src
);
112 iconv(nls_toloc
, NULL
, NULL
, &p
, &outlen
);
113 while (iconv(nls_toloc
, &src
, &inlen
, &p
, &outlen
) == -1) {
123 nls_str_toext(char *dst
, const char *src
)
126 size_t inlen
, outlen
;
128 if (nls_toext
== (iconv_t
)0)
129 return strcpy(dst
, src
);
130 inlen
= outlen
= strlen(src
);
131 iconv(nls_toext
, NULL
, NULL
, &p
, &outlen
);
132 while (iconv(nls_toext
, &src
, &inlen
, &p
, &outlen
) == -1) {
142 nls_mem_toloc(void *dst
, const void *src
, size_t size
)
146 size_t inlen
, outlen
;
151 if (nls_toloc
== (iconv_t
)0)
152 return memcpy(dst
, src
, size
);
153 inlen
= outlen
= size
;
154 iconv(nls_toloc
, NULL
, NULL
, &p
, &outlen
);
155 while (iconv(nls_toloc
, &s
, &inlen
, &p
, &outlen
) == -1) {
164 nls_mem_toext(void *dst
, const void *src
, size_t size
)
168 size_t inlen
, outlen
;
173 if (nls_toext
== (iconv_t
)0)
174 return memcpy(dst
, src
, size
);
176 inlen
= outlen
= size
;
177 iconv(nls_toext
, NULL
, NULL
, &p
, &outlen
);
178 while (iconv(nls_toext
, &s
, &inlen
, &p
, &outlen
) == -1) {
187 nls_str_upper(char *dst
, const char *src
)
192 *dst
++ = toupper((unsigned char)*src
++);
198 nls_str_lower(char *dst
, const char *src
)
203 *dst
++ = tolower((unsigned char)*src
++);