lib/util/charcnv Move iconv handle setup in common
[samba.git] / lib / util / charset / charset.h
1 /* 
2    Unix SMB/CIFS implementation.
3    charset defines
4    Copyright (C) Andrew Tridgell 2001
5    Copyright (C) Jelmer Vernooij 2002
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 /* This is a public header file that is installed as part of Samba. 
22  * If you remove any functions or change their signature, update 
23  * the so version number. */
24
25 #ifndef __CHARSET_H__
26 #define __CHARSET_H__
27
28 #include <talloc.h>
29
30 /* this defines the charset types used in samba */
31 typedef enum {CH_UTF16LE=0, CH_UTF16=0, CH_UNIX, CH_DISPLAY, CH_DOS, CH_UTF8, CH_UTF16BE, CH_UTF16MUNGED} charset_t;
32
33 #define NUM_CHARSETS 7
34
35 /*
36  * SMB UCS2 (16-bit unicode) internal type.
37  * smb_ucs2_t is *always* in little endian format.
38  */
39
40 typedef uint16_t smb_ucs2_t;
41
42 #ifdef WORDS_BIGENDIAN
43 #define UCS2_SHIFT 8
44 #else
45 #define UCS2_SHIFT 0
46 #endif
47
48 /* turn a 7 bit character into a ucs2 character */
49 #define UCS2_CHAR(c) ((c) << UCS2_SHIFT)
50
51 /* return an ascii version of a ucs2 character */
52 #define UCS2_TO_CHAR(c) (((c) >> UCS2_SHIFT) & 0xff)
53
54 /* Copy into a smb_ucs2_t from a possibly unaligned buffer. Return the copied smb_ucs2_t */
55 #define COPY_UCS2_CHAR(dest,src) (((unsigned char *)(dest))[0] = ((unsigned char *)(src))[0],\
56                                 ((unsigned char *)(dest))[1] = ((unsigned char *)(src))[1], (dest))
57
58
59
60 /*
61  *   for each charset we have a function that pulls from that charset to
62  *     a ucs2 buffer, and a function that pushes to a ucs2 buffer
63  *     */
64
65 struct charset_functions {
66         const char *name;
67         size_t (*pull)(void *, const char **inbuf, size_t *inbytesleft,
68                                    char **outbuf, size_t *outbytesleft);
69         size_t (*push)(void *, const char **inbuf, size_t *inbytesleft,
70                                    char **outbuf, size_t *outbytesleft);
71         struct charset_functions *prev, *next;
72 };
73
74 /* this type is used for manipulating unicode codepoints */
75 typedef uint32_t codepoint_t;
76
77 #define INVALID_CODEPOINT ((codepoint_t)-1)
78
79 /*
80  * This is auxiliary struct used by source/script/gen-8-bit-gap.sh script
81  * during generation of an encoding table for charset module
82  *     */
83
84 struct charset_gap_table {
85   uint16_t start;
86   uint16_t end;
87   int32_t idx;
88 };
89
90
91 /* generic iconv conversion structure */
92 typedef struct smb_iconv_s {
93         size_t (*direct)(void *cd, const char **inbuf, size_t *inbytesleft,
94                          char **outbuf, size_t *outbytesleft);
95         size_t (*pull)(void *cd, const char **inbuf, size_t *inbytesleft,
96                        char **outbuf, size_t *outbytesleft);
97         size_t (*push)(void *cd, const char **inbuf, size_t *inbytesleft,
98                        char **outbuf, size_t *outbytesleft);
99         void *cd_direct, *cd_pull, *cd_push;
100         char *from_name, *to_name;
101 } *smb_iconv_t;
102
103 /* string manipulation flags */
104 #define STR_TERMINATE 1
105 #define STR_UPPER 2
106 #define STR_ASCII 4
107 #define STR_UNICODE 8
108 #define STR_NOALIGN 16
109 #define STR_NO_RANGE_CHECK 32
110 #define STR_LEN8BIT 64
111 #define STR_TERMINATE_ASCII 128 /* only terminate if ascii */
112 #define STR_LEN_NOTERM 256 /* the length field is the unterminated length */
113
114 struct loadparm_context;
115 struct smb_iconv_convenience;
116
117 /* replace some string functions with multi-byte
118    versions */
119 #define strlower(s) strlower_m(s)
120 #define strupper(s) strupper_m(s)
121
122 char *strchr_m(const char *s, char c);
123 size_t strlen_m_ext(const char *s, charset_t src_charset, charset_t dst_charset);
124 size_t strlen_m_ext_term(const char *s, charset_t src_charset,
125                          charset_t dst_charset);
126 size_t strlen_m_term(const char *s);
127 size_t strlen_m_term_null(const char *s);
128 size_t strlen_m(const char *s);
129 char *alpha_strcpy(char *dest, const char *src, const char *other_safe_chars, size_t maxlength);
130 void string_replace_m(char *s, char oldc, char newc);
131 bool strcsequal_m(const char *s1,const char *s2);
132 bool strequal_m(const char *s1, const char *s2);
133 int strncasecmp_m(const char *s1, const char *s2, size_t n);
134 bool next_token(const char **ptr,char *buff, const char *sep, size_t bufsize);
135 int strcasecmp_m(const char *s1, const char *s2);
136 size_t count_chars_m(const char *s, char c);
137 void strupper_m(char *s);
138 void strlower_m(char *s);
139 char *strupper_talloc(TALLOC_CTX *ctx, const char *src);
140 char *talloc_strdup_upper(TALLOC_CTX *ctx, const char *src);
141 char *strupper_talloc_n(TALLOC_CTX *ctx, const char *src, size_t n);
142 char *strlower_talloc(TALLOC_CTX *ctx, const char *src);
143 bool strhasupper(const char *string);
144 bool strhaslower(const char *string);
145 char *strrchr_m(const char *s, char c);
146 char *strchr_m(const char *s, char c);
147
148 bool push_ascii_talloc(TALLOC_CTX *ctx, char **dest, const char *src, size_t *converted_size);
149 bool push_ucs2_talloc(TALLOC_CTX *ctx, smb_ucs2_t **dest, const char *src, size_t *converted_size);
150 bool push_utf8_talloc(TALLOC_CTX *ctx, char **dest, const char *src, size_t *converted_size);
151 bool pull_ascii_talloc(TALLOC_CTX *ctx, char **dest, const char *src, size_t *converted_size);
152 bool pull_ucs2_talloc(TALLOC_CTX *ctx, char **dest, const smb_ucs2_t *src, size_t *converted_size);
153 bool pull_utf8_talloc(TALLOC_CTX *ctx, char **dest, const char *src, size_t *converted_size);
154 ssize_t push_string(void *dest, const char *src, size_t dest_len, int flags);
155 ssize_t pull_string(char *dest, const void *src, size_t dest_len, size_t src_len, int flags);
156
157 bool convert_string_talloc(TALLOC_CTX *ctx, 
158                                        charset_t from, charset_t to, 
159                                        void const *src, size_t srclen, 
160                                        void *dest, size_t *converted_size, 
161                                            bool allow_badcharcnv);
162
163 size_t convert_string(charset_t from, charset_t to,
164                                 void const *src, size_t srclen, 
165                                 void *dest, size_t destlen, bool allow_badcharcnv);
166
167 ssize_t iconv_talloc(TALLOC_CTX *mem_ctx, 
168                                        smb_iconv_t cd,
169                                        void const *src, size_t srclen, 
170                                        void *dest);
171
172 extern struct smb_iconv_convenience *global_iconv_convenience;
173 struct smb_iconv_convenience *get_iconv_convenience(void);
174 smb_iconv_t get_conv_handle(struct smb_iconv_convenience *ic,
175                             charset_t from, charset_t to);
176 const char *charset_name(struct smb_iconv_convenience *ic, charset_t ch);
177
178 codepoint_t next_codepoint_ext(const char *str, charset_t src_charset,
179                                size_t *size);
180 codepoint_t next_codepoint(const char *str, size_t *size);
181 ssize_t push_codepoint(char *str, codepoint_t c);
182
183 /* codepoints */
184 codepoint_t next_codepoint_convenience_ext(struct smb_iconv_convenience *ic,
185                             const char *str, charset_t src_charset,
186                             size_t *size);
187 codepoint_t next_codepoint_convenience(struct smb_iconv_convenience *ic, 
188                             const char *str, size_t *size);
189 ssize_t push_codepoint_convenience(struct smb_iconv_convenience *ic, 
190                                 char *str, codepoint_t c);
191
192 codepoint_t toupper_m(codepoint_t val);
193 codepoint_t tolower_m(codepoint_t val);
194 bool islower_m(codepoint_t val);
195 bool isupper_m(codepoint_t val);
196 int codepoint_cmpi(codepoint_t c1, codepoint_t c2);
197
198 /* Iconv convenience functions */
199 struct smb_iconv_convenience *smb_iconv_convenience_reinit(TALLOC_CTX *mem_ctx,
200                                                            const char *dos_charset,
201                                                            const char *unix_charset,
202                                                            const char *display_charset,
203                                                            bool native_iconv,
204                                                            struct smb_iconv_convenience *old_ic);
205
206 bool convert_string_convenience(struct smb_iconv_convenience *ic,
207                                 charset_t from, charset_t to,
208                                 void const *src, size_t srclen, 
209                                 void *dest, size_t destlen, size_t *converted_size,
210                                 bool allow_badcharcnv);
211 bool convert_string_talloc_convenience(TALLOC_CTX *ctx, 
212                                        struct smb_iconv_convenience *ic, 
213                                        charset_t from, charset_t to, 
214                                        void const *src, size_t srclen, 
215                                        void *dest, size_t *converted_size, bool allow_badcharcnv);
216 /* iconv */
217 smb_iconv_t smb_iconv_open(const char *tocode, const char *fromcode);
218 int smb_iconv_close(smb_iconv_t cd);
219 size_t smb_iconv(smb_iconv_t cd, 
220                  const char **inbuf, size_t *inbytesleft,
221                  char **outbuf, size_t *outbytesleft);
222 smb_iconv_t smb_iconv_open_ex(TALLOC_CTX *mem_ctx, const char *tocode, 
223                               const char *fromcode, bool native_iconv);
224
225 void load_case_tables(void);
226 bool smb_register_charset(const struct charset_functions *funcs_in);
227
228 /*
229  *   Define stub for charset module which implements 8-bit encoding with gaps.
230  *   Encoding tables for such module should be produced from glibc's CHARMAPs
231  *   using script source/script/gen-8bit-gap.sh
232  *   CHARSETNAME is CAPITALIZED charset name
233  *
234  *     */
235 #define SMB_GENERATE_CHARSET_MODULE_8_BIT_GAP(CHARSETNAME)                                      \
236 static size_t CHARSETNAME ## _push(void *cd, const char **inbuf, size_t *inbytesleft,                   \
237                          char **outbuf, size_t *outbytesleft)                                   \
238 {                                                                                               \
239         while (*inbytesleft >= 2 && *outbytesleft >= 1) {                                       \
240                 int i;                                                                          \
241                 int done = 0;                                                                   \
242                                                                                                 \
243                 uint16 ch = SVAL(*inbuf,0);                                                     \
244                                                                                                 \
245                 for (i=0; from_idx[i].start != 0xffff; i++) {                                   \
246                         if ((from_idx[i].start <= ch) && (from_idx[i].end >= ch)) {             \
247                                 ((unsigned char*)(*outbuf))[0] = from_ucs2[from_idx[i].idx+ch]; \
248                                 (*inbytesleft) -= 2;                                            \
249                                 (*outbytesleft) -= 1;                                           \
250                                 (*inbuf)  += 2;                                                 \
251                                 (*outbuf) += 1;                                                 \
252                                 done = 1;                                                       \
253                                 break;                                                          \
254                         }                                                                       \
255                 }                                                                               \
256                 if (!done) {                                                                    \
257                         errno = EINVAL;                                                         \
258                         return -1;                                                              \
259                 }                                                                               \
260                                                                                                 \
261         }                                                                                       \
262                                                                                                 \
263         if (*inbytesleft == 1) {                                                                \
264                 errno = EINVAL;                                                                 \
265                 return -1;                                                                      \
266         }                                                                                       \
267                                                                                                 \
268         if (*inbytesleft > 1) {                                                                 \
269                 errno = E2BIG;                                                                  \
270                 return -1;                                                                      \
271         }                                                                                       \
272                                                                                                 \
273         return 0;                                                                               \
274 }                                                                                               \
275                                                                                                 \
276 static size_t CHARSETNAME ## _pull(void *cd, const char **inbuf, size_t *inbytesleft,                           \
277                          char **outbuf, size_t *outbytesleft)                                   \
278 {                                                                                               \
279         while (*inbytesleft >= 1 && *outbytesleft >= 2) {                                       \
280                 SSVAL(*outbuf, 0, to_ucs2[((unsigned char*)(*inbuf))[0]]);                      \
281                 (*inbytesleft)  -= 1;                                                           \
282                 (*outbytesleft) -= 2;                                                           \
283                 (*inbuf)  += 1;                                                                 \
284                 (*outbuf) += 2;                                                                 \
285         }                                                                                       \
286                                                                                                 \
287         if (*inbytesleft > 0) {                                                                 \
288                 errno = E2BIG;                                                                  \
289                 return -1;                                                                      \
290         }                                                                                       \
291                                                                                                 \
292         return 0;                                                                               \
293 }                                                                                               \
294                                                                                                 \
295 struct charset_functions CHARSETNAME ## _functions =                                            \
296                 {#CHARSETNAME, CHARSETNAME ## _pull, CHARSETNAME ## _push};                     \
297                                                                                                 \
298 NTSTATUS charset_ ## CHARSETNAME ## _init(void);                                                        \
299 NTSTATUS charset_ ## CHARSETNAME ## _init(void)                                                 \
300 {                                                                                               \
301         if (!smb_register_charset(& CHARSETNAME ## _functions)) {       \
302                 return NT_STATUS_INTERNAL_ERROR;                        \
303         }                                                               \
304         return NT_STATUS_OK; \
305 }                                               \
306
307
308 #endif /* __CHARSET_H__ */