exp2l: Work around a NetBSD 10.0/i386 bug.
[gnulib.git] / lib / iconv.c
blob310f4043eb4586b101c0cf6a5a6dac8df7f0a0df
1 /* Character set conversion.
2 Copyright (C) 1999-2001, 2007, 2009-2024 Free Software Foundation, Inc.
4 This file is free software: you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 2.1 of the
7 License, or (at your option) any later version.
9 This file is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 #include <config.h>
19 /* Specification. */
20 #include <iconv.h>
22 #include <stddef.h>
24 #if REPLACE_ICONV_UTF
25 # include <errno.h>
26 # include <stdint.h>
27 # include <stdlib.h>
28 # include "unistr.h"
29 #endif
31 #if REPLACE_ICONV_UTF
33 /* UTF-{16,32}{BE,LE} converters taken from GNU libiconv 1.11. */
35 /* Return code if invalid. (xxx_mbtowc) */
36 # define RET_ILSEQ -1
37 /* Return code if no bytes were read. (xxx_mbtowc) */
38 # define RET_TOOFEW -2
40 /* Return code if invalid. (xxx_wctomb) */
41 # define RET_ILUNI -1
42 /* Return code if output buffer is too small. (xxx_wctomb, xxx_reset) */
43 # define RET_TOOSMALL -2
46 * UTF-16BE
49 /* Specification: RFC 2781 */
51 static int
52 utf16be_mbtowc (ucs4_t *pwc, const unsigned char *s, size_t n)
54 if (n >= 2)
56 ucs4_t wc = (s[0] << 8) + s[1];
57 if (wc >= 0xd800 && wc < 0xdc00)
59 if (n >= 4)
61 ucs4_t wc2 = (s[2] << 8) + s[3];
62 if (!(wc2 >= 0xdc00 && wc2 < 0xe000))
63 return RET_ILSEQ;
64 *pwc = 0x10000 + ((wc - 0xd800) << 10) + (wc2 - 0xdc00);
65 return 4;
68 else if (wc >= 0xdc00 && wc < 0xe000)
70 return RET_ILSEQ;
72 else
74 *pwc = wc;
75 return 2;
78 return RET_TOOFEW;
81 static int
82 utf16be_wctomb (unsigned char *r, ucs4_t wc, size_t n)
84 if (!(wc >= 0xd800 && wc < 0xe000))
86 if (wc < 0x10000)
88 if (n >= 2)
90 r[0] = (unsigned char) (wc >> 8);
91 r[1] = (unsigned char) wc;
92 return 2;
94 else
95 return RET_TOOSMALL;
97 else if (wc < 0x110000)
99 if (n >= 4)
101 ucs4_t wc1 = 0xd800 + ((wc - 0x10000) >> 10);
102 ucs4_t wc2 = 0xdc00 + ((wc - 0x10000) & 0x3ff);
103 r[0] = (unsigned char) (wc1 >> 8);
104 r[1] = (unsigned char) wc1;
105 r[2] = (unsigned char) (wc2 >> 8);
106 r[3] = (unsigned char) wc2;
107 return 4;
109 else
110 return RET_TOOSMALL;
113 return RET_ILUNI;
117 * UTF-16LE
120 /* Specification: RFC 2781 */
122 static int
123 utf16le_mbtowc (ucs4_t *pwc, const unsigned char *s, size_t n)
125 if (n >= 2)
127 ucs4_t wc = s[0] + (s[1] << 8);
128 if (wc >= 0xd800 && wc < 0xdc00)
130 if (n >= 4)
132 ucs4_t wc2 = s[2] + (s[3] << 8);
133 if (!(wc2 >= 0xdc00 && wc2 < 0xe000))
134 return RET_ILSEQ;
135 *pwc = 0x10000 + ((wc - 0xd800) << 10) + (wc2 - 0xdc00);
136 return 4;
139 else if (wc >= 0xdc00 && wc < 0xe000)
141 return RET_ILSEQ;
143 else
145 *pwc = wc;
146 return 2;
149 return RET_TOOFEW;
152 static int
153 utf16le_wctomb (unsigned char *r, ucs4_t wc, size_t n)
155 if (!(wc >= 0xd800 && wc < 0xe000))
157 if (wc < 0x10000)
159 if (n >= 2)
161 r[0] = (unsigned char) wc;
162 r[1] = (unsigned char) (wc >> 8);
163 return 2;
165 else
166 return RET_TOOSMALL;
168 else if (wc < 0x110000)
170 if (n >= 4)
172 ucs4_t wc1 = 0xd800 + ((wc - 0x10000) >> 10);
173 ucs4_t wc2 = 0xdc00 + ((wc - 0x10000) & 0x3ff);
174 r[0] = (unsigned char) wc1;
175 r[1] = (unsigned char) (wc1 >> 8);
176 r[2] = (unsigned char) wc2;
177 r[3] = (unsigned char) (wc2 >> 8);
178 return 4;
180 else
181 return RET_TOOSMALL;
184 return RET_ILUNI;
188 * UTF-32BE
191 /* Specification: Unicode 3.1 Standard Annex #19 */
193 static int
194 utf32be_mbtowc (ucs4_t *pwc, const unsigned char *s, size_t n)
196 if (n >= 4)
198 ucs4_t wc = (s[0] << 24) + (s[1] << 16) + (s[2] << 8) + s[3];
199 if (wc < 0x110000 && !(wc >= 0xd800 && wc < 0xe000))
201 *pwc = wc;
202 return 4;
204 else
205 return RET_ILSEQ;
207 return RET_TOOFEW;
210 static int
211 utf32be_wctomb (unsigned char *r, ucs4_t wc, size_t n)
213 if (wc < 0x110000 && !(wc >= 0xd800 && wc < 0xe000))
215 if (n >= 4)
217 r[0] = 0;
218 r[1] = (unsigned char) (wc >> 16);
219 r[2] = (unsigned char) (wc >> 8);
220 r[3] = (unsigned char) wc;
221 return 4;
223 else
224 return RET_TOOSMALL;
226 return RET_ILUNI;
230 * UTF-32LE
233 /* Specification: Unicode 3.1 Standard Annex #19 */
235 static int
236 utf32le_mbtowc (ucs4_t *pwc, const unsigned char *s, size_t n)
238 if (n >= 4)
240 ucs4_t wc = s[0] + (s[1] << 8) + (s[2] << 16) + (s[3] << 24);
241 if (wc < 0x110000 && !(wc >= 0xd800 && wc < 0xe000))
243 *pwc = wc;
244 return 4;
246 else
247 return RET_ILSEQ;
249 return RET_TOOFEW;
252 static int
253 utf32le_wctomb (unsigned char *r, ucs4_t wc, size_t n)
255 if (wc < 0x110000 && !(wc >= 0xd800 && wc < 0xe000))
257 if (n >= 4)
259 r[0] = (unsigned char) wc;
260 r[1] = (unsigned char) (wc >> 8);
261 r[2] = (unsigned char) (wc >> 16);
262 r[3] = 0;
263 return 4;
265 else
266 return RET_TOOSMALL;
268 return RET_ILUNI;
271 #endif
273 size_t
274 rpl_iconv (iconv_t cd,
275 ICONV_CONST char **inbuf, size_t *inbytesleft,
276 char **outbuf, size_t *outbytesleft)
277 #undef iconv
279 #if REPLACE_ICONV_UTF
280 switch ((uintptr_t) cd)
283 int (*xxx_wctomb) (unsigned char *, ucs4_t, size_t);
285 case (uintptr_t) _ICONV_UTF8_UTF16BE:
286 xxx_wctomb = utf16be_wctomb;
287 goto loop_from_utf8;
288 case (uintptr_t) _ICONV_UTF8_UTF16LE:
289 xxx_wctomb = utf16le_wctomb;
290 goto loop_from_utf8;
291 case (uintptr_t) _ICONV_UTF8_UTF32BE:
292 xxx_wctomb = utf32be_wctomb;
293 goto loop_from_utf8;
294 case (uintptr_t) _ICONV_UTF8_UTF32LE:
295 xxx_wctomb = utf32le_wctomb;
296 goto loop_from_utf8;
298 loop_from_utf8:
299 if (inbuf == NULL || *inbuf == NULL)
300 return 0;
302 ICONV_CONST char *inptr = *inbuf;
303 size_t inleft = *inbytesleft;
304 char *outptr = *outbuf;
305 size_t outleft = *outbytesleft;
306 size_t res = 0;
307 while (inleft > 0)
309 ucs4_t uc;
310 int m = u8_mbtoucr (&uc, (const uint8_t *) inptr, inleft);
311 if (m <= 0)
313 if (m == -1)
315 errno = EILSEQ;
316 res = (size_t)(-1);
317 break;
319 if (m == -2)
321 errno = EINVAL;
322 res = (size_t)(-1);
323 break;
325 abort ();
327 else
329 int n = xxx_wctomb ((uint8_t *) outptr, uc, outleft);
330 if (n < 0)
332 if (n == RET_ILUNI)
334 errno = EILSEQ;
335 res = (size_t)(-1);
336 break;
338 if (n == RET_TOOSMALL)
340 errno = E2BIG;
341 res = (size_t)(-1);
342 break;
344 abort ();
346 else
348 inptr += m;
349 inleft -= m;
350 outptr += n;
351 outleft -= n;
355 *inbuf = inptr;
356 *inbytesleft = inleft;
357 *outbuf = outptr;
358 *outbytesleft = outleft;
359 return res;
364 int (*xxx_mbtowc) (ucs4_t *, const unsigned char *, size_t);
366 case (uintptr_t) _ICONV_UTF16BE_UTF8:
367 xxx_mbtowc = utf16be_mbtowc;
368 goto loop_to_utf8;
369 case (uintptr_t) _ICONV_UTF16LE_UTF8:
370 xxx_mbtowc = utf16le_mbtowc;
371 goto loop_to_utf8;
372 case (uintptr_t) _ICONV_UTF32BE_UTF8:
373 xxx_mbtowc = utf32be_mbtowc;
374 goto loop_to_utf8;
375 case (uintptr_t) _ICONV_UTF32LE_UTF8:
376 xxx_mbtowc = utf32le_mbtowc;
377 goto loop_to_utf8;
379 loop_to_utf8:
380 if (inbuf == NULL || *inbuf == NULL)
381 return 0;
383 ICONV_CONST char *inptr = *inbuf;
384 size_t inleft = *inbytesleft;
385 char *outptr = *outbuf;
386 size_t outleft = *outbytesleft;
387 size_t res = 0;
388 while (inleft > 0)
390 ucs4_t uc;
391 int m = xxx_mbtowc (&uc, (const uint8_t *) inptr, inleft);
392 if (m <= 0)
394 if (m == RET_ILSEQ)
396 errno = EILSEQ;
397 res = (size_t)(-1);
398 break;
400 if (m == RET_TOOFEW)
402 errno = EINVAL;
403 res = (size_t)(-1);
404 break;
406 abort ();
408 else
410 int n = u8_uctomb ((uint8_t *) outptr, uc, outleft);
411 if (n < 0)
413 if (n == -1)
415 errno = EILSEQ;
416 res = (size_t)(-1);
417 break;
419 if (n == -2)
421 errno = E2BIG;
422 res = (size_t)(-1);
423 break;
425 abort ();
427 else
429 inptr += m;
430 inleft -= m;
431 outptr += n;
432 outleft -= n;
436 *inbuf = inptr;
437 *inbytesleft = inleft;
438 *outbuf = outptr;
439 *outbytesleft = outleft;
440 return res;
444 #endif
445 return iconv (cd, inbuf, inbytesleft, outbuf, outbytesleft);