2000-02-13 20:00:53 +01:00
|
|
|
/* Conversion module for UTF-16.
|
|
|
|
Copyright (C) 1999, 2000 Free Software Foundation, Inc.
|
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1999.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Library General Public License as
|
|
|
|
published by the Free Software Foundation; either version 2 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Library General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
|
|
License along with the GNU C Library; see the file COPYING.LIB. If not,
|
|
|
|
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
Boston, MA 02111-1307, USA. */
|
|
|
|
|
|
|
|
#include <byteswap.h>
|
2000-06-12 21:47:50 +02:00
|
|
|
#include <dlfcn.h>
|
2000-02-13 20:00:53 +01:00
|
|
|
#include <gconv.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
/* This is the Byte Order Mark character (BOM). */
|
|
|
|
#define BOM 0xfeff
|
2000-03-21 21:18:34 +01:00
|
|
|
/* And in the other byte order. */
|
|
|
|
#define BOM_OE 0xfffe
|
2000-02-13 20:00:53 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* Definitions used in the body of the `gconv' function. */
|
|
|
|
#define FROM_LOOP from_utf16_loop
|
|
|
|
#define TO_LOOP to_utf16_loop
|
|
|
|
#define DEFINE_INIT 0
|
|
|
|
#define DEFINE_FINI 0
|
|
|
|
#define MIN_NEEDED_FROM 2
|
|
|
|
#define MAX_NEEDED_FROM 4
|
|
|
|
#define MIN_NEEDED_TO 4
|
|
|
|
#define FROM_DIRECTION (dir == from_utf16)
|
|
|
|
#define PREPARE_LOOP \
|
|
|
|
enum direction dir = ((struct utf16_data *) step->__data)->dir; \
|
|
|
|
enum variant var = ((struct utf16_data *) step->__data)->var; \
|
2000-03-21 21:18:34 +01:00
|
|
|
int swap = ((struct utf16_data *) step->__data)->swap; \
|
|
|
|
if (FROM_DIRECTION || var == UTF_16) \
|
|
|
|
{ \
|
|
|
|
if (data->__invocation_counter == 0) \
|
|
|
|
{ \
|
|
|
|
/* We have to find out which byte order the file is encoded in. */ \
|
2000-04-09 19:43:29 +02:00
|
|
|
if (inptr + 2 > inend) \
|
2000-03-21 21:18:34 +01:00
|
|
|
return __GCONV_EMPTY_INPUT; \
|
|
|
|
\
|
2000-03-28 19:33:37 +02:00
|
|
|
if (get16u (inptr) == BOM) \
|
2000-03-21 21:18:34 +01:00
|
|
|
/* Simply ignore the BOM character. */ \
|
|
|
|
inptr += 2; \
|
2000-03-28 19:33:37 +02:00
|
|
|
else if (get16u (inptr) == BOM_OE) \
|
2000-03-21 21:18:34 +01:00
|
|
|
{ \
|
|
|
|
((struct utf16_data *) step->__data)->swap = 1; \
|
|
|
|
inptr += 2; \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
else if (!FROM_DIRECTION && var == UTF_16 && !data->__internal_use \
|
|
|
|
&& data->__invocation_counter == 0) \
|
2000-02-13 20:00:53 +01:00
|
|
|
{ \
|
|
|
|
/* Emit the Byte Order Mark. */ \
|
2000-06-07 00:58:45 +02:00
|
|
|
if (__builtin_expect (outbuf + 2 > outend, 0)) \
|
2000-02-13 20:00:53 +01:00
|
|
|
return __GCONV_FULL_OUTPUT; \
|
|
|
|
\
|
2000-03-28 19:33:37 +02:00
|
|
|
put16u (outbuf, BOM); \
|
2000-02-13 20:00:53 +01:00
|
|
|
outbuf += 2; \
|
|
|
|
}
|
2000-06-12 21:47:50 +02:00
|
|
|
#define EXTRA_LOOP_ARGS , var, swap
|
2000-02-13 20:00:53 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* Direction of the transformation. */
|
|
|
|
enum direction
|
|
|
|
{
|
|
|
|
illegal_dir,
|
|
|
|
to_utf16,
|
|
|
|
from_utf16
|
|
|
|
};
|
|
|
|
|
|
|
|
enum variant
|
|
|
|
{
|
|
|
|
illegal_var,
|
|
|
|
UTF_16,
|
|
|
|
UTF_16LE,
|
|
|
|
UTF_16BE
|
|
|
|
};
|
|
|
|
|
|
|
|
struct utf16_data
|
|
|
|
{
|
|
|
|
enum direction dir;
|
|
|
|
enum variant var;
|
2000-03-21 21:18:34 +01:00
|
|
|
int swap;
|
2000-02-13 20:00:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
gconv_init (struct __gconv_step *step)
|
|
|
|
{
|
|
|
|
/* Determine which direction. */
|
|
|
|
struct utf16_data *new_data;
|
|
|
|
enum direction dir = illegal_dir;
|
|
|
|
enum variant var = illegal_var;
|
|
|
|
int result;
|
|
|
|
|
2000-09-19 00:41:47 +02:00
|
|
|
if (__strcasecmp (step->__from_name, "UTF-16//") == 0)
|
2000-02-13 20:00:53 +01:00
|
|
|
{
|
|
|
|
dir = from_utf16;
|
|
|
|
var = UTF_16;
|
|
|
|
}
|
2000-09-19 00:41:47 +02:00
|
|
|
else if (__strcasecmp (step->__to_name, "UTF-16//") == 0)
|
2000-02-13 20:00:53 +01:00
|
|
|
{
|
|
|
|
dir = to_utf16;
|
|
|
|
var = UTF_16;
|
|
|
|
}
|
2000-09-19 00:41:47 +02:00
|
|
|
else if (__strcasecmp (step->__from_name, "UTF-16BE//") == 0)
|
2000-02-13 20:00:53 +01:00
|
|
|
{
|
|
|
|
dir = from_utf16;
|
|
|
|
var = UTF_16BE;
|
|
|
|
}
|
2000-09-19 00:41:47 +02:00
|
|
|
else if (__strcasecmp (step->__to_name, "UTF-16BE//") == 0)
|
2000-02-13 20:00:53 +01:00
|
|
|
{
|
|
|
|
dir = to_utf16;
|
|
|
|
var = UTF_16BE;
|
|
|
|
}
|
2000-09-19 00:41:47 +02:00
|
|
|
else if (__strcasecmp (step->__from_name, "UTF-16LE//") == 0)
|
2000-02-13 20:00:53 +01:00
|
|
|
{
|
|
|
|
dir = from_utf16;
|
|
|
|
var = UTF_16LE;
|
|
|
|
}
|
2000-09-19 00:41:47 +02:00
|
|
|
else if (__strcasecmp (step->__to_name, "UTF-16LE//") == 0)
|
2000-02-13 20:00:53 +01:00
|
|
|
{
|
|
|
|
dir = to_utf16;
|
|
|
|
var = UTF_16LE;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = __GCONV_NOCONV;
|
2000-06-07 00:58:45 +02:00
|
|
|
if (__builtin_expect (dir, to_utf16) != illegal_dir)
|
2000-02-13 20:00:53 +01:00
|
|
|
{
|
|
|
|
new_data = (struct utf16_data *) malloc (sizeof (struct utf16_data));
|
|
|
|
|
|
|
|
result = __GCONV_NOMEM;
|
|
|
|
if (new_data != NULL)
|
|
|
|
{
|
|
|
|
new_data->dir = dir;
|
|
|
|
new_data->var = var;
|
2000-03-21 21:18:34 +01:00
|
|
|
new_data->swap = ((var == UTF_16LE && BYTE_ORDER == BIG_ENDIAN)
|
|
|
|
|| (var == UTF_16BE
|
|
|
|
&& BYTE_ORDER == LITTLE_ENDIAN));
|
2000-02-13 20:00:53 +01:00
|
|
|
step->__data = new_data;
|
|
|
|
|
2000-03-21 09:08:35 +01:00
|
|
|
if (dir == from_utf16)
|
2000-02-13 20:00:53 +01:00
|
|
|
{
|
|
|
|
step->__min_needed_from = MIN_NEEDED_FROM;
|
|
|
|
step->__max_needed_from = MIN_NEEDED_FROM;
|
|
|
|
step->__min_needed_to = MIN_NEEDED_TO;
|
|
|
|
step->__max_needed_to = MIN_NEEDED_TO;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
step->__min_needed_from = MIN_NEEDED_TO;
|
|
|
|
step->__max_needed_from = MIN_NEEDED_TO;
|
|
|
|
step->__min_needed_to = MIN_NEEDED_FROM;
|
|
|
|
step->__max_needed_to = MIN_NEEDED_FROM;
|
|
|
|
}
|
|
|
|
|
|
|
|
step->__stateful = 0;
|
|
|
|
|
|
|
|
result = __GCONV_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
gconv_end (struct __gconv_step *data)
|
|
|
|
{
|
|
|
|
free (data->__data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Convert from the internal (UCS4-like) format to UTF-16. */
|
|
|
|
#define MIN_NEEDED_INPUT MIN_NEEDED_TO
|
|
|
|
#define MIN_NEEDED_OUTPUT MIN_NEEDED_FROM
|
|
|
|
#define MAX_NEEDED_OUTPUT MAX_NEEDED_FROM
|
|
|
|
#define LOOPFCT TO_LOOP
|
|
|
|
#define BODY \
|
|
|
|
{ \
|
2000-03-28 19:33:37 +02:00
|
|
|
uint32_t c = get32 (inptr); \
|
2000-02-13 20:00:53 +01:00
|
|
|
\
|
2000-09-19 00:41:47 +02:00
|
|
|
if (__builtin_expect (c >= 0xd800 && c < 0xe000, 0)) \
|
|
|
|
{ \
|
|
|
|
/* Surrogate characters in UCS-4 input are not valid. \
|
|
|
|
We must catch this. If we let surrogates pass through, \
|
|
|
|
attackers could make a security hole exploit by \
|
|
|
|
synthesizing any desired plane 1-16 character. */ \
|
|
|
|
if (! ignore_errors_p ()) \
|
|
|
|
{ \
|
|
|
|
result = __GCONV_ILLEGAL_INPUT; \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
inptr += 4; \
|
|
|
|
++*irreversible; \
|
|
|
|
continue; \
|
|
|
|
} \
|
|
|
|
\
|
2000-03-21 21:18:34 +01:00
|
|
|
if (swap) \
|
2000-02-13 20:00:53 +01:00
|
|
|
{ \
|
2000-06-07 00:58:45 +02:00
|
|
|
if (__builtin_expect (c, 0) >= 0x10000) \
|
2000-02-13 20:00:53 +01:00
|
|
|
{ \
|
2000-06-07 00:58:45 +02:00
|
|
|
if (__builtin_expect (c, 0) >= 0x110000) \
|
2000-02-13 20:00:53 +01:00
|
|
|
{ \
|
2000-06-19 23:12:06 +02:00
|
|
|
STANDARD_ERR_HANDLER (4); \
|
2000-02-13 20:00:53 +01:00
|
|
|
} \
|
|
|
|
\
|
|
|
|
/* Generate a surrogate character. */ \
|
2000-06-12 21:47:50 +02:00
|
|
|
if (__builtin_expect (outptr + 4 > outend, 0)) \
|
2000-02-13 20:00:53 +01:00
|
|
|
{ \
|
|
|
|
/* Overflow in the output buffer. */ \
|
|
|
|
result = __GCONV_FULL_OUTPUT; \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
\
|
2000-03-28 19:33:37 +02:00
|
|
|
put16 (outptr, bswap_16 (0xd7c0 + (c >> 10))); \
|
2000-02-13 20:00:53 +01:00
|
|
|
outptr += 2; \
|
2000-03-28 19:33:37 +02:00
|
|
|
put16 (outptr, bswap_16 (0xdc00 + (c & 0x3ff))); \
|
2000-02-13 20:00:53 +01:00
|
|
|
} \
|
|
|
|
else \
|
2000-03-28 19:33:37 +02:00
|
|
|
put16 (outptr, bswap_16 (c)); \
|
2000-02-13 20:00:53 +01:00
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
2000-06-07 00:58:45 +02:00
|
|
|
if (__builtin_expect (c, 0) >= 0x10000) \
|
2000-02-13 20:00:53 +01:00
|
|
|
{ \
|
2000-06-07 00:58:45 +02:00
|
|
|
if (__builtin_expect (c, 0) >= 0x110000) \
|
2000-02-13 20:00:53 +01:00
|
|
|
{ \
|
2000-06-19 23:12:06 +02:00
|
|
|
STANDARD_ERR_HANDLER (4); \
|
2000-02-13 20:00:53 +01:00
|
|
|
} \
|
|
|
|
\
|
|
|
|
/* Generate a surrogate character. */ \
|
2000-06-12 21:47:50 +02:00
|
|
|
if (__builtin_expect (outptr + 4 > outend, 0)) \
|
2000-02-13 20:00:53 +01:00
|
|
|
{ \
|
|
|
|
/* Overflow in the output buffer. */ \
|
|
|
|
result = __GCONV_FULL_OUTPUT; \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
\
|
2000-03-28 19:33:37 +02:00
|
|
|
put16 (outptr, 0xd7c0 + (c >> 10)); \
|
2000-02-13 20:00:53 +01:00
|
|
|
outptr += 2; \
|
2000-03-28 19:33:37 +02:00
|
|
|
put16 (outptr, 0xdc00 + (c & 0x3ff)); \
|
2000-02-13 20:00:53 +01:00
|
|
|
} \
|
|
|
|
else \
|
2000-03-28 19:33:37 +02:00
|
|
|
put16 (outptr, c); \
|
2000-02-13 20:00:53 +01:00
|
|
|
} \
|
|
|
|
outptr += 2; \
|
|
|
|
inptr += 4; \
|
|
|
|
}
|
2000-06-12 21:47:50 +02:00
|
|
|
#define LOOP_NEED_FLAGS
|
2000-02-13 20:00:53 +01:00
|
|
|
#define EXTRA_LOOP_DECLS \
|
2000-06-12 21:47:50 +02:00
|
|
|
, enum variant var, int swap
|
2000-02-13 20:00:53 +01:00
|
|
|
#include <iconv/loop.c>
|
|
|
|
|
|
|
|
|
|
|
|
/* Convert from UTF-16 to the internal (UCS4-like) format. */
|
|
|
|
#define MIN_NEEDED_INPUT MIN_NEEDED_FROM
|
|
|
|
#define MAX_NEEDED_INPUT MAX_NEEDED_FROM
|
|
|
|
#define MIN_NEEDED_OUTPUT MIN_NEEDED_TO
|
|
|
|
#define LOOPFCT FROM_LOOP
|
|
|
|
#define BODY \
|
|
|
|
{ \
|
2000-03-28 19:33:37 +02:00
|
|
|
uint16_t u1 = get16 (inptr); \
|
2000-02-13 20:00:53 +01:00
|
|
|
\
|
2000-03-21 21:18:34 +01:00
|
|
|
if (swap) \
|
2000-02-13 20:00:53 +01:00
|
|
|
{ \
|
|
|
|
u1 = bswap_16 (u1); \
|
|
|
|
\
|
2000-06-07 00:58:45 +02:00
|
|
|
if (__builtin_expect (u1, 0) < 0xd800 || u1 > 0xdfff) \
|
2000-02-13 20:00:53 +01:00
|
|
|
{ \
|
|
|
|
/* No surrogate. */ \
|
2000-06-07 00:58:45 +02:00
|
|
|
put32 (outptr, u1); \
|
2000-02-13 20:00:53 +01:00
|
|
|
inptr += 2; \
|
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
uint16_t u2; \
|
|
|
|
\
|
|
|
|
/* It's a surrogate character. At least the first word says \
|
|
|
|
it is. */ \
|
2000-06-12 21:47:50 +02:00
|
|
|
if (__builtin_expect (inptr + 4 > inend, 0)) \
|
2000-02-13 20:00:53 +01:00
|
|
|
{ \
|
|
|
|
/* We don't have enough input for another complete input \
|
|
|
|
character. */ \
|
|
|
|
result = __GCONV_INCOMPLETE_INPUT; \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
\
|
2000-03-28 19:33:37 +02:00
|
|
|
inptr += 2; \
|
|
|
|
u2 = bswap_16 (get16 (inptr)); \
|
2000-06-07 00:58:45 +02:00
|
|
|
if (__builtin_expect (u2, 0xdc00) < 0xdc00 \
|
|
|
|
|| __builtin_expect (u2, 0xdc00) >= 0xdfff) \
|
2000-02-13 20:00:53 +01:00
|
|
|
{ \
|
|
|
|
/* This is no valid second word for a surrogate. */ \
|
2000-06-06 05:16:30 +02:00
|
|
|
if (! ignore_errors_p ()) \
|
|
|
|
{ \
|
|
|
|
inptr -= 2; \
|
|
|
|
result = __GCONV_ILLEGAL_INPUT; \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
\
|
2000-06-11 00:54:47 +02:00
|
|
|
++*irreversible; \
|
2000-06-06 05:16:30 +02:00
|
|
|
continue; \
|
2000-02-13 20:00:53 +01:00
|
|
|
} \
|
|
|
|
\
|
2000-03-28 19:33:37 +02:00
|
|
|
put32 (outptr, ((u1 - 0xd7c0) << 10) + (u2 - 0xdc00)); \
|
|
|
|
inptr += 2; \
|
2000-02-13 20:00:53 +01:00
|
|
|
} \
|
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
2000-06-07 00:58:45 +02:00
|
|
|
if (__builtin_expect (u1, 0) < 0xd800 || u1 > 0xdfff) \
|
2000-02-13 20:00:53 +01:00
|
|
|
{ \
|
|
|
|
/* No surrogate. */ \
|
2000-03-28 19:33:37 +02:00
|
|
|
put32 (outptr, u1); \
|
2000-02-13 20:00:53 +01:00
|
|
|
inptr += 2; \
|
|
|
|
} \
|
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
uint16_t u2; \
|
|
|
|
\
|
|
|
|
/* It's a surrogate character. At least the first word says \
|
|
|
|
it is. */ \
|
2000-06-12 21:47:50 +02:00
|
|
|
if (__builtin_expect (inptr + 4 > inend, 0)) \
|
2000-02-13 20:00:53 +01:00
|
|
|
{ \
|
|
|
|
/* We don't have enough input for another complete input \
|
|
|
|
character. */ \
|
|
|
|
result = __GCONV_INCOMPLETE_INPUT; \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
\
|
2000-03-28 19:33:37 +02:00
|
|
|
inptr += 2; \
|
|
|
|
u2 = get16 (inptr); \
|
2000-06-07 00:58:45 +02:00
|
|
|
if (__builtin_expect (u2, 0xdc00) < 0xdc00 \
|
|
|
|
|| __builtin_expect (u2, 0xdc00) >= 0xdfff) \
|
2000-02-13 20:00:53 +01:00
|
|
|
{ \
|
|
|
|
/* This is no valid second word for a surrogate. */ \
|
2000-06-06 05:16:30 +02:00
|
|
|
if (! ignore_errors_p ()) \
|
|
|
|
{ \
|
|
|
|
inptr -= 2; \
|
|
|
|
result = __GCONV_ILLEGAL_INPUT; \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
\
|
2000-06-11 00:54:47 +02:00
|
|
|
++*irreversible; \
|
2000-06-06 05:16:30 +02:00
|
|
|
continue; \
|
2000-02-13 20:00:53 +01:00
|
|
|
} \
|
|
|
|
\
|
2000-03-28 19:33:37 +02:00
|
|
|
put32 (outptr, ((u1 - 0xd7c0) << 10) + (u2 - 0xdc00)); \
|
|
|
|
inptr += 2; \
|
2000-02-13 20:00:53 +01:00
|
|
|
} \
|
|
|
|
} \
|
|
|
|
outptr += 4; \
|
|
|
|
}
|
2000-06-12 21:47:50 +02:00
|
|
|
#define LOOP_NEED_FLAGS
|
2000-02-13 20:00:53 +01:00
|
|
|
#define EXTRA_LOOP_DECLS \
|
2000-06-12 21:47:50 +02:00
|
|
|
, enum variant var, int swap
|
2000-02-13 20:00:53 +01:00
|
|
|
#include <iconv/loop.c>
|
|
|
|
|
|
|
|
|
|
|
|
/* Now define the toplevel functions. */
|
|
|
|
#include <iconv/skeleton.c>
|