2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 2001
5 Copyright (C) Jelmer Vernooij 2002
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.
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.
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/>.
21 /* this defines the charset types used in samba */
22 typedef enum {CH_UTF16LE
=0, CH_UTF16
=0, CH_UNIX
=1, CH_DISPLAY
=2, CH_DOS
=3, CH_UTF8
=4, CH_UTF16BE
=5} charset_t
;
24 #define NUM_CHARSETS 6
27 * for each charset we have a function that pushes from that charset to a ucs2
28 * buffer, and a function that pulls from ucs2 buffer to that charset.
31 struct charset_functions
{
33 size_t (*pull
)(void *, const char **inbuf
, size_t *inbytesleft
,
34 char **outbuf
, size_t *outbytesleft
);
35 size_t (*push
)(void *, const char **inbuf
, size_t *inbytesleft
,
36 char **outbuf
, size_t *outbytesleft
);
37 struct charset_functions
*prev
, *next
;
41 * This is auxiliary struct used by source/script/gen-8-bit-gap.sh script
42 * during generation of an encoding table for charset module
45 struct charset_gap_table
{
52 * Define stub for charset module which implements 8-bit encoding with gaps.
53 * Encoding tables for such module should be produced from glibc's CHARMAPs
54 * using script source/script/gen-8bit-gap.sh
55 * CHARSETNAME is CAPITALIZED charset name
58 #define SMB_GENERATE_CHARSET_MODULE_8_BIT_GAP(CHARSETNAME) \
59 static size_t CHARSETNAME ## _push(void *cd, const char **inbuf, size_t *inbytesleft, \
60 char **outbuf, size_t *outbytesleft) \
62 while (*inbytesleft >= 2 && *outbytesleft >= 1) { \
66 uint16 ch = SVAL(*inbuf,0); \
68 for (i=0; from_idx[i].start != 0xffff; i++) { \
69 if ((from_idx[i].start <= ch) && (from_idx[i].end >= ch)) { \
70 ((unsigned char*)(*outbuf))[0] = from_ucs2[from_idx[i].idx+ch]; \
71 (*inbytesleft) -= 2; \
72 (*outbytesleft) -= 1; \
86 if (*inbytesleft == 1) { \
91 if (*inbytesleft > 1) { \
99 static size_t CHARSETNAME ## _pull(void *cd, const char **inbuf, size_t *inbytesleft, \
100 char **outbuf, size_t *outbytesleft) \
102 while (*inbytesleft >= 1 && *outbytesleft >= 2) { \
103 *(uint16*)(*outbuf) = to_ucs2[((unsigned char*)(*inbuf))[0]]; \
104 (*inbytesleft) -= 1; \
105 (*outbytesleft) -= 2; \
110 if (*inbytesleft > 0) { \
118 struct charset_functions CHARSETNAME ## _functions = \
119 {#CHARSETNAME, CHARSETNAME ## _pull, CHARSETNAME ## _push}; \
121 NTSTATUS charset_ ## CHARSETNAME ## _init(void); \
122 NTSTATUS charset_ ## CHARSETNAME ## _init(void) \
124 return smb_register_charset(& CHARSETNAME ## _functions); \