123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450 |
- /* Character set conversion.
- Copyright (C) 1999-2001, 2007, 2009-2014 Free Software Foundation, Inc.
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation; either version 2, or (at your option)
- any later version.
- This program 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 Lesser General Public License for more details.
- You should have received a copy of the GNU Lesser General Public License along
- with this program; if not, see <http://www.gnu.org/licenses/>. */
- #include <config.h>
- /* Specification. */
- #include <iconv.h>
- #include <stddef.h>
- #if REPLACE_ICONV_UTF
- # include <errno.h>
- # include <stdint.h>
- # include <stdlib.h>
- # include "unistr.h"
- # ifndef uintptr_t
- # define uintptr_t unsigned long
- # endif
- #endif
- #if REPLACE_ICONV_UTF
- /* UTF-{16,32}{BE,LE} converters taken from GNU libiconv 1.11. */
- /* Return code if invalid. (xxx_mbtowc) */
- # define RET_ILSEQ -1
- /* Return code if no bytes were read. (xxx_mbtowc) */
- # define RET_TOOFEW -2
- /* Return code if invalid. (xxx_wctomb) */
- # define RET_ILUNI -1
- /* Return code if output buffer is too small. (xxx_wctomb, xxx_reset) */
- # define RET_TOOSMALL -2
- /*
- * UTF-16BE
- */
- /* Specification: RFC 2781 */
- static int
- utf16be_mbtowc (ucs4_t *pwc, const unsigned char *s, size_t n)
- {
- if (n >= 2)
- {
- ucs4_t wc = (s[0] << 8) + s[1];
- if (wc >= 0xd800 && wc < 0xdc00)
- {
- if (n >= 4)
- {
- ucs4_t wc2 = (s[2] << 8) + s[3];
- if (!(wc2 >= 0xdc00 && wc2 < 0xe000))
- return RET_ILSEQ;
- *pwc = 0x10000 + ((wc - 0xd800) << 10) + (wc2 - 0xdc00);
- return 4;
- }
- }
- else if (wc >= 0xdc00 && wc < 0xe000)
- {
- return RET_ILSEQ;
- }
- else
- {
- *pwc = wc;
- return 2;
- }
- }
- return RET_TOOFEW;
- }
- static int
- utf16be_wctomb (unsigned char *r, ucs4_t wc, size_t n)
- {
- if (!(wc >= 0xd800 && wc < 0xe000))
- {
- if (wc < 0x10000)
- {
- if (n >= 2)
- {
- r[0] = (unsigned char) (wc >> 8);
- r[1] = (unsigned char) wc;
- return 2;
- }
- else
- return RET_TOOSMALL;
- }
- else if (wc < 0x110000)
- {
- if (n >= 4)
- {
- ucs4_t wc1 = 0xd800 + ((wc - 0x10000) >> 10);
- ucs4_t wc2 = 0xdc00 + ((wc - 0x10000) & 0x3ff);
- r[0] = (unsigned char) (wc1 >> 8);
- r[1] = (unsigned char) wc1;
- r[2] = (unsigned char) (wc2 >> 8);
- r[3] = (unsigned char) wc2;
- return 4;
- }
- else
- return RET_TOOSMALL;
- }
- }
- return RET_ILUNI;
- }
- /*
- * UTF-16LE
- */
- /* Specification: RFC 2781 */
- static int
- utf16le_mbtowc (ucs4_t *pwc, const unsigned char *s, size_t n)
- {
- if (n >= 2)
- {
- ucs4_t wc = s[0] + (s[1] << 8);
- if (wc >= 0xd800 && wc < 0xdc00)
- {
- if (n >= 4)
- {
- ucs4_t wc2 = s[2] + (s[3] << 8);
- if (!(wc2 >= 0xdc00 && wc2 < 0xe000))
- return RET_ILSEQ;
- *pwc = 0x10000 + ((wc - 0xd800) << 10) + (wc2 - 0xdc00);
- return 4;
- }
- }
- else if (wc >= 0xdc00 && wc < 0xe000)
- {
- return RET_ILSEQ;
- }
- else
- {
- *pwc = wc;
- return 2;
- }
- }
- return RET_TOOFEW;
- }
- static int
- utf16le_wctomb (unsigned char *r, ucs4_t wc, size_t n)
- {
- if (!(wc >= 0xd800 && wc < 0xe000))
- {
- if (wc < 0x10000)
- {
- if (n >= 2)
- {
- r[0] = (unsigned char) wc;
- r[1] = (unsigned char) (wc >> 8);
- return 2;
- }
- else
- return RET_TOOSMALL;
- }
- else if (wc < 0x110000)
- {
- if (n >= 4)
- {
- ucs4_t wc1 = 0xd800 + ((wc - 0x10000) >> 10);
- ucs4_t wc2 = 0xdc00 + ((wc - 0x10000) & 0x3ff);
- r[0] = (unsigned char) wc1;
- r[1] = (unsigned char) (wc1 >> 8);
- r[2] = (unsigned char) wc2;
- r[3] = (unsigned char) (wc2 >> 8);
- return 4;
- }
- else
- return RET_TOOSMALL;
- }
- }
- return RET_ILUNI;
- }
- /*
- * UTF-32BE
- */
- /* Specification: Unicode 3.1 Standard Annex #19 */
- static int
- utf32be_mbtowc (ucs4_t *pwc, const unsigned char *s, size_t n)
- {
- if (n >= 4)
- {
- ucs4_t wc = (s[0] << 24) + (s[1] << 16) + (s[2] << 8) + s[3];
- if (wc < 0x110000 && !(wc >= 0xd800 && wc < 0xe000))
- {
- *pwc = wc;
- return 4;
- }
- else
- return RET_ILSEQ;
- }
- return RET_TOOFEW;
- }
- static int
- utf32be_wctomb (unsigned char *r, ucs4_t wc, size_t n)
- {
- if (wc < 0x110000 && !(wc >= 0xd800 && wc < 0xe000))
- {
- if (n >= 4)
- {
- r[0] = 0;
- r[1] = (unsigned char) (wc >> 16);
- r[2] = (unsigned char) (wc >> 8);
- r[3] = (unsigned char) wc;
- return 4;
- }
- else
- return RET_TOOSMALL;
- }
- return RET_ILUNI;
- }
- /*
- * UTF-32LE
- */
- /* Specification: Unicode 3.1 Standard Annex #19 */
- static int
- utf32le_mbtowc (ucs4_t *pwc, const unsigned char *s, size_t n)
- {
- if (n >= 4)
- {
- ucs4_t wc = s[0] + (s[1] << 8) + (s[2] << 16) + (s[3] << 24);
- if (wc < 0x110000 && !(wc >= 0xd800 && wc < 0xe000))
- {
- *pwc = wc;
- return 4;
- }
- else
- return RET_ILSEQ;
- }
- return RET_TOOFEW;
- }
- static int
- utf32le_wctomb (unsigned char *r, ucs4_t wc, size_t n)
- {
- if (wc < 0x110000 && !(wc >= 0xd800 && wc < 0xe000))
- {
- if (n >= 4)
- {
- r[0] = (unsigned char) wc;
- r[1] = (unsigned char) (wc >> 8);
- r[2] = (unsigned char) (wc >> 16);
- r[3] = 0;
- return 4;
- }
- else
- return RET_TOOSMALL;
- }
- return RET_ILUNI;
- }
- #endif
- size_t
- rpl_iconv (iconv_t cd,
- ICONV_CONST char **inbuf, size_t *inbytesleft,
- char **outbuf, size_t *outbytesleft)
- #undef iconv
- {
- #if REPLACE_ICONV_UTF
- switch ((uintptr_t) cd)
- {
- {
- int (*xxx_wctomb) (unsigned char *, ucs4_t, size_t);
- case (uintptr_t) _ICONV_UTF8_UTF16BE:
- xxx_wctomb = utf16be_wctomb;
- goto loop_from_utf8;
- case (uintptr_t) _ICONV_UTF8_UTF16LE:
- xxx_wctomb = utf16le_wctomb;
- goto loop_from_utf8;
- case (uintptr_t) _ICONV_UTF8_UTF32BE:
- xxx_wctomb = utf32be_wctomb;
- goto loop_from_utf8;
- case (uintptr_t) _ICONV_UTF8_UTF32LE:
- xxx_wctomb = utf32le_wctomb;
- goto loop_from_utf8;
- loop_from_utf8:
- if (inbuf == NULL || *inbuf == NULL)
- return 0;
- {
- ICONV_CONST char *inptr = *inbuf;
- size_t inleft = *inbytesleft;
- char *outptr = *outbuf;
- size_t outleft = *outbytesleft;
- size_t res = 0;
- while (inleft > 0)
- {
- ucs4_t uc;
- int m = u8_mbtoucr (&uc, (const uint8_t *) inptr, inleft);
- if (m <= 0)
- {
- if (m == -1)
- {
- errno = EILSEQ;
- res = (size_t)(-1);
- break;
- }
- if (m == -2)
- {
- errno = EINVAL;
- res = (size_t)(-1);
- break;
- }
- abort ();
- }
- else
- {
- int n = xxx_wctomb ((uint8_t *) outptr, uc, outleft);
- if (n < 0)
- {
- if (n == RET_ILUNI)
- {
- errno = EILSEQ;
- res = (size_t)(-1);
- break;
- }
- if (n == RET_TOOSMALL)
- {
- errno = E2BIG;
- res = (size_t)(-1);
- break;
- }
- abort ();
- }
- else
- {
- inptr += m;
- inleft -= m;
- outptr += n;
- outleft -= n;
- }
- }
- }
- *inbuf = inptr;
- *inbytesleft = inleft;
- *outbuf = outptr;
- *outbytesleft = outleft;
- return res;
- }
- }
- {
- int (*xxx_mbtowc) (ucs4_t *, const unsigned char *, size_t);
- case (uintptr_t) _ICONV_UTF16BE_UTF8:
- xxx_mbtowc = utf16be_mbtowc;
- goto loop_to_utf8;
- case (uintptr_t) _ICONV_UTF16LE_UTF8:
- xxx_mbtowc = utf16le_mbtowc;
- goto loop_to_utf8;
- case (uintptr_t) _ICONV_UTF32BE_UTF8:
- xxx_mbtowc = utf32be_mbtowc;
- goto loop_to_utf8;
- case (uintptr_t) _ICONV_UTF32LE_UTF8:
- xxx_mbtowc = utf32le_mbtowc;
- goto loop_to_utf8;
- loop_to_utf8:
- if (inbuf == NULL || *inbuf == NULL)
- return 0;
- {
- ICONV_CONST char *inptr = *inbuf;
- size_t inleft = *inbytesleft;
- char *outptr = *outbuf;
- size_t outleft = *outbytesleft;
- size_t res = 0;
- while (inleft > 0)
- {
- ucs4_t uc;
- int m = xxx_mbtowc (&uc, (const uint8_t *) inptr, inleft);
- if (m <= 0)
- {
- if (m == RET_ILSEQ)
- {
- errno = EILSEQ;
- res = (size_t)(-1);
- break;
- }
- if (m == RET_TOOFEW)
- {
- errno = EINVAL;
- res = (size_t)(-1);
- break;
- }
- abort ();
- }
- else
- {
- int n = u8_uctomb ((uint8_t *) outptr, uc, outleft);
- if (n < 0)
- {
- if (n == -1)
- {
- errno = EILSEQ;
- res = (size_t)(-1);
- break;
- }
- if (n == -2)
- {
- errno = E2BIG;
- res = (size_t)(-1);
- break;
- }
- abort ();
- }
- else
- {
- inptr += m;
- inleft -= m;
- outptr += n;
- outleft -= n;
- }
- }
- }
- *inbuf = inptr;
- *inbytesleft = inleft;
- *outbuf = outptr;
- *outbytesleft = outleft;
- return res;
- }
- }
- }
- #endif
- return iconv (cd, inbuf, inbytesleft, outbuf, outbytesleft);
- }
|