1 /* Conversion module for UTF-16.
2 Copyright (C) 1999, 2000-2002, 2003 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
29 /* This is the Byte Order Mark character (BOM). */
31 /* And in the other byte order. */
35 /* Definitions used in the body of the `gconv' function. */
36 #define FROM_LOOP from_utf16_loop
37 #define TO_LOOP to_utf16_loop
40 #define MIN_NEEDED_FROM 2
41 #define MAX_NEEDED_FROM 4
42 #define MIN_NEEDED_TO 4
43 #define FROM_DIRECTION (dir == from_utf16)
44 #define PREPARE_LOOP \
45 enum direction dir = ((struct utf16_data *) step->__data)->dir; \
46 enum variant var = ((struct utf16_data *) step->__data)->var; \
48 if (FROM_DIRECTION && var == UTF_16) \
50 if (data->__invocation_counter == 0) \
52 /* We have to find out which byte order the file is encoded in. */ \
53 if (inptr + 2 > inend) \
54 return (inptr == inend \
55 ? __GCONV_EMPTY_INPUT : __GCONV_INCOMPLETE_INPUT); \
57 if (get16u (inptr) == BOM) \
58 /* Simply ignore the BOM character. */ \
59 *inptrp = inptr += 2; \
60 else if (get16u (inptr) == BOM_OE) \
62 ((struct utf16_data *) step->__data)->swap = 1; \
63 *inptrp = inptr += 2; \
67 else if (!FROM_DIRECTION && var == UTF_16 && !data->__internal_use \
68 && data->__invocation_counter == 0) \
70 /* Emit the Byte Order Mark. */ \
71 if (__builtin_expect (outbuf + 2 > outend, 0)) \
72 return __GCONV_FULL_OUTPUT; \
74 put16u (outbuf, BOM); \
77 swap = ((struct utf16_data *) step->__data)->swap;
78 #define EXTRA_LOOP_ARGS , var, swap
81 /* Direction of the transformation. */
105 extern int gconv_init (struct __gconv_step
*step
);
107 gconv_init (struct __gconv_step
*step
)
109 /* Determine which direction. */
110 struct utf16_data
*new_data
;
111 enum direction dir
= illegal_dir
;
112 enum variant var
= illegal_var
;
115 if (__strcasecmp (step
->__from_name
, "UTF-16//") == 0)
120 else if (__strcasecmp (step
->__to_name
, "UTF-16//") == 0)
125 else if (__strcasecmp (step
->__from_name
, "UTF-16BE//") == 0)
130 else if (__strcasecmp (step
->__to_name
, "UTF-16BE//") == 0)
135 else if (__strcasecmp (step
->__from_name
, "UTF-16LE//") == 0)
140 else if (__strcasecmp (step
->__to_name
, "UTF-16LE//") == 0)
146 result
= __GCONV_NOCONV
;
147 if (__builtin_expect (dir
, to_utf16
) != illegal_dir
)
149 new_data
= (struct utf16_data
*) malloc (sizeof (struct utf16_data
));
151 result
= __GCONV_NOMEM
;
152 if (new_data
!= NULL
)
156 new_data
->swap
= ((var
== UTF_16LE
&& BYTE_ORDER
== BIG_ENDIAN
)
158 && BYTE_ORDER
== LITTLE_ENDIAN
));
159 step
->__data
= new_data
;
161 if (dir
== from_utf16
)
163 step
->__min_needed_from
= MIN_NEEDED_FROM
;
164 step
->__max_needed_from
= MAX_NEEDED_FROM
;
165 step
->__min_needed_to
= MIN_NEEDED_TO
;
166 step
->__max_needed_to
= MIN_NEEDED_TO
;
170 step
->__min_needed_from
= MIN_NEEDED_TO
;
171 step
->__max_needed_from
= MIN_NEEDED_TO
;
172 step
->__min_needed_to
= MIN_NEEDED_FROM
;
173 step
->__max_needed_to
= MAX_NEEDED_FROM
;
176 step
->__stateful
= 0;
186 extern void gconv_end (struct __gconv_step
*data
);
188 gconv_end (struct __gconv_step
*data
)
194 /* Convert from the internal (UCS4-like) format to UTF-16. */
195 #define MIN_NEEDED_INPUT MIN_NEEDED_TO
196 #define MIN_NEEDED_OUTPUT MIN_NEEDED_FROM
197 #define MAX_NEEDED_OUTPUT MAX_NEEDED_FROM
198 #define LOOPFCT TO_LOOP
201 uint32_t c = get32 (inptr); \
203 if (__builtin_expect (c >= 0xd800 && c < 0xe000, 0)) \
205 /* Surrogate characters in UCS-4 input are not valid. \
206 We must catch this. If we let surrogates pass through, \
207 attackers could make a security hole exploit by \
208 synthesizing any desired plane 1-16 character. */ \
209 result = __GCONV_ILLEGAL_INPUT; \
210 if (! ignore_errors_p ()) \
219 if (__builtin_expect (c >= 0x10000, 0)) \
221 if (__builtin_expect (c >= 0x110000, 0)) \
223 STANDARD_TO_LOOP_ERR_HANDLER (4); \
226 /* Generate a surrogate character. */ \
227 if (__builtin_expect (outptr + 4 > outend, 0)) \
229 /* Overflow in the output buffer. */ \
230 result = __GCONV_FULL_OUTPUT; \
234 put16 (outptr, bswap_16 (0xd7c0 + (c >> 10))); \
236 put16 (outptr, bswap_16 (0xdc00 + (c & 0x3ff))); \
239 put16 (outptr, bswap_16 (c)); \
243 if (__builtin_expect (c >= 0x10000, 0)) \
245 if (__builtin_expect (c >= 0x110000, 0)) \
247 STANDARD_TO_LOOP_ERR_HANDLER (4); \
250 /* Generate a surrogate character. */ \
251 if (__builtin_expect (outptr + 4 > outend, 0)) \
253 /* Overflow in the output buffer. */ \
254 result = __GCONV_FULL_OUTPUT; \
258 put16 (outptr, 0xd7c0 + (c >> 10)); \
260 put16 (outptr, 0xdc00 + (c & 0x3ff)); \
268 #define LOOP_NEED_FLAGS
269 #define EXTRA_LOOP_DECLS \
270 , enum variant var, int swap
271 #include <iconv/loop.c>
274 /* Convert from UTF-16 to the internal (UCS4-like) format. */
275 #define MIN_NEEDED_INPUT MIN_NEEDED_FROM
276 #define MAX_NEEDED_INPUT MAX_NEEDED_FROM
277 #define MIN_NEEDED_OUTPUT MIN_NEEDED_TO
278 #define LOOPFCT FROM_LOOP
281 uint16_t u1 = get16 (inptr); \
285 u1 = bswap_16 (u1); \
287 if (__builtin_expect (u1 < 0xd800, 1) || u1 > 0xdfff) \
289 /* No surrogate. */ \
290 put32 (outptr, u1); \
297 /* It's a surrogate character. At least the first word says \
299 if (__builtin_expect (inptr + 4 > inend, 0)) \
301 /* We don't have enough input for another complete input \
303 result = __GCONV_INCOMPLETE_INPUT; \
308 u2 = bswap_16 (get16 (inptr)); \
309 if (__builtin_expect (u2 < 0xdc00, 0) \
310 || __builtin_expect (u2 > 0xdfff, 0)) \
312 /* This is no valid second word for a surrogate. */ \
314 STANDARD_FROM_LOOP_ERR_HANDLER (2); \
317 put32 (outptr, ((u1 - 0xd7c0) << 10) + (u2 - 0xdc00)); \
323 if (__builtin_expect (u1 < 0xd800, 1) || u1 > 0xdfff) \
325 /* No surrogate. */ \
326 put32 (outptr, u1); \
333 /* It's a surrogate character. At least the first word says \
335 if (__builtin_expect (inptr + 4 > inend, 0)) \
337 /* We don't have enough input for another complete input \
339 result = __GCONV_INCOMPLETE_INPUT; \
344 u2 = get16 (inptr); \
345 if (__builtin_expect (u2 < 0xdc00, 0) \
346 || __builtin_expect (u2 > 0xdfff, 0)) \
348 /* This is no valid second word for a surrogate. */ \
350 STANDARD_FROM_LOOP_ERR_HANDLER (2); \
353 put32 (outptr, ((u1 - 0xd7c0) << 10) + (u2 - 0xdc00)); \
359 #define LOOP_NEED_FLAGS
360 #define EXTRA_LOOP_DECLS \
361 , enum variant var, int swap
362 #include <iconv/loop.c>
365 /* Now define the toplevel functions. */
366 #include <iconv/skeleton.c>