2014-05-01 07:03:12 +02:00
|
|
|
/* $OpenBSD: citrus_utf8.c,v 1.6 2012/12/05 23:19:59 deraadt Exp $ */
|
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 2002-2004 Tim J. Robbins
|
2012-10-23 02:05:27 +02:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
2014-05-01 07:03:12 +02:00
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
2012-10-23 02:05:27 +02:00
|
|
|
* notice, this list of conditions and the following disclaimer.
|
2014-05-01 07:03:12 +02:00
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2012-10-23 02:05:27 +02:00
|
|
|
*
|
2014-05-01 07:03:12 +02:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
2012-10-23 02:05:27 +02:00
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <errno.h>
|
2014-05-01 07:03:12 +02:00
|
|
|
#include <sys/param.h>
|
2014-06-02 20:33:04 +02:00
|
|
|
#include <string.h>
|
2012-10-23 02:05:27 +02:00
|
|
|
#include <wchar.h>
|
2014-06-02 20:33:04 +02:00
|
|
|
#include <uchar.h>
|
|
|
|
|
|
|
|
#include "private/bionic_mbstate.h"
|
2012-10-23 02:05:27 +02:00
|
|
|
|
2014-05-01 07:03:12 +02:00
|
|
|
//
|
2014-05-08 15:38:35 +02:00
|
|
|
// This file is basically OpenBSD's citrus_utf8.c but rewritten to not require a
|
|
|
|
// 12-byte mbstate_t so we're backwards-compatible with our LP32 ABI where
|
|
|
|
// mbstate_t was only 4 bytes.
|
2014-05-01 07:03:12 +02:00
|
|
|
//
|
2014-05-08 15:38:35 +02:00
|
|
|
// The state is the UTF-8 sequence. We only support <= 4-bytes sequences so LP32
|
|
|
|
// mbstate_t already has enough space (out of the 4 available bytes we only
|
|
|
|
// need 3 since we should never need to store the entire sequence in the
|
|
|
|
// intermediary state).
|
|
|
|
//
|
|
|
|
// The C standard leaves the conversion state undefined after a bad conversion.
|
|
|
|
// To avoid unexpected failures due to the possible use of the internal private
|
|
|
|
// state we always reset the conversion state when encountering illegal
|
|
|
|
// sequences.
|
|
|
|
//
|
|
|
|
// We also implement the POSIX interface directly rather than being accessed via
|
|
|
|
// function pointers.
|
2014-05-01 07:03:12 +02:00
|
|
|
//
|
|
|
|
|
2014-05-08 15:38:35 +02:00
|
|
|
int mbsinit(const mbstate_t* ps) {
|
2018-08-03 02:31:13 +02:00
|
|
|
return (ps == nullptr || (*(reinterpret_cast<const uint32_t*>(ps->__seq)) == 0));
|
2012-10-23 02:05:27 +02:00
|
|
|
}
|
|
|
|
|
2014-05-08 15:38:35 +02:00
|
|
|
size_t mbrtowc(wchar_t* pwc, const char* s, size_t n, mbstate_t* ps) {
|
|
|
|
static mbstate_t __private_state;
|
2018-08-03 02:31:13 +02:00
|
|
|
mbstate_t* state = (ps == nullptr) ? &__private_state : ps;
|
2014-05-08 15:38:35 +02:00
|
|
|
|
2016-10-24 23:50:31 +02:00
|
|
|
// Our wchar_t is UTF-32.
|
2014-06-02 20:33:04 +02:00
|
|
|
return mbrtoc32(reinterpret_cast<char32_t*>(pwc), s, n, state);
|
2014-05-01 07:03:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t mbsnrtowcs(wchar_t* dst, const char** src, size_t nmc, size_t len, mbstate_t* ps) {
|
2014-05-08 15:38:35 +02:00
|
|
|
static mbstate_t __private_state;
|
2018-08-03 02:31:13 +02:00
|
|
|
mbstate_t* state = (ps == nullptr) ? &__private_state : ps;
|
2014-05-01 07:03:12 +02:00
|
|
|
size_t i, o, r;
|
|
|
|
|
2016-09-30 02:21:43 +02:00
|
|
|
// The fast paths in the loops below are not safe if an ASCII
|
|
|
|
// character appears as anything but the first byte of a
|
|
|
|
// multibyte sequence. Check now to avoid doing it in the loops.
|
|
|
|
if (nmc > 0 && mbstate_bytes_so_far(state) > 0 && static_cast<uint8_t>((*src)[0]) < 0x80) {
|
2017-07-15 02:00:05 +02:00
|
|
|
return mbstate_reset_and_return_illegal(EILSEQ, state);
|
2016-09-30 02:21:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Measure only?
|
2018-08-03 02:31:13 +02:00
|
|
|
if (dst == nullptr) {
|
2014-05-01 07:03:12 +02:00
|
|
|
for (i = o = 0; i < nmc; i += r, o++) {
|
|
|
|
if (static_cast<uint8_t>((*src)[i]) < 0x80) {
|
|
|
|
// Fast path for plain ASCII characters.
|
|
|
|
if ((*src)[i] == '\0') {
|
2017-07-15 02:00:05 +02:00
|
|
|
return mbstate_reset_and_return(o, state);
|
2014-05-01 07:03:12 +02:00
|
|
|
}
|
|
|
|
r = 1;
|
|
|
|
} else {
|
2018-08-03 02:31:13 +02:00
|
|
|
r = mbrtowc(nullptr, *src + i, nmc - i, state);
|
2014-06-02 20:33:04 +02:00
|
|
|
if (r == __MB_ERR_ILLEGAL_SEQUENCE) {
|
2017-07-15 02:00:05 +02:00
|
|
|
return mbstate_reset_and_return_illegal(EILSEQ, state);
|
2014-05-01 07:03:12 +02:00
|
|
|
}
|
2014-06-02 20:33:04 +02:00
|
|
|
if (r == __MB_ERR_INCOMPLETE_SEQUENCE) {
|
2017-07-15 02:00:05 +02:00
|
|
|
return mbstate_reset_and_return_illegal(EILSEQ, state);
|
2014-05-01 07:03:12 +02:00
|
|
|
}
|
|
|
|
if (r == 0) {
|
2017-07-15 02:00:05 +02:00
|
|
|
return mbstate_reset_and_return(o, state);
|
2014-05-01 07:03:12 +02:00
|
|
|
}
|
2014-04-29 23:46:56 +02:00
|
|
|
}
|
|
|
|
}
|
2017-07-15 02:00:05 +02:00
|
|
|
return mbstate_reset_and_return(o, state);
|
2012-10-23 02:05:27 +02:00
|
|
|
}
|
2014-05-01 07:03:12 +02:00
|
|
|
|
2016-09-30 02:21:43 +02:00
|
|
|
// Actually convert, updating `dst` and `src`.
|
2014-05-01 07:03:12 +02:00
|
|
|
for (i = o = 0; i < nmc && o < len; i += r, o++) {
|
|
|
|
if (static_cast<uint8_t>((*src)[i]) < 0x80) {
|
|
|
|
// Fast path for plain ASCII characters.
|
|
|
|
dst[o] = (*src)[i];
|
2014-07-20 20:51:26 +02:00
|
|
|
r = 1;
|
2014-05-01 07:03:12 +02:00
|
|
|
if ((*src)[i] == '\0') {
|
2014-07-31 20:31:03 +02:00
|
|
|
*src = nullptr;
|
2017-07-15 02:00:05 +02:00
|
|
|
return mbstate_reset_and_return(o, state);
|
2014-05-01 07:03:12 +02:00
|
|
|
}
|
2014-04-29 23:46:56 +02:00
|
|
|
} else {
|
2014-05-08 15:38:35 +02:00
|
|
|
r = mbrtowc(dst + o, *src + i, nmc - i, state);
|
2014-06-02 20:33:04 +02:00
|
|
|
if (r == __MB_ERR_ILLEGAL_SEQUENCE) {
|
2014-05-01 07:03:12 +02:00
|
|
|
*src += i;
|
2017-07-15 02:00:05 +02:00
|
|
|
return mbstate_reset_and_return_illegal(EILSEQ, state);
|
2014-05-01 07:03:12 +02:00
|
|
|
}
|
2014-06-02 20:33:04 +02:00
|
|
|
if (r == __MB_ERR_INCOMPLETE_SEQUENCE) {
|
2014-05-01 07:03:12 +02:00
|
|
|
*src += nmc;
|
2017-07-15 02:00:05 +02:00
|
|
|
return mbstate_reset_and_return_illegal(EILSEQ, state);
|
2014-05-01 07:03:12 +02:00
|
|
|
}
|
|
|
|
if (r == 0) {
|
2018-08-03 02:31:13 +02:00
|
|
|
*src = nullptr;
|
2017-07-15 02:00:05 +02:00
|
|
|
return mbstate_reset_and_return(o, state);
|
2014-05-01 07:03:12 +02:00
|
|
|
}
|
2014-04-29 23:46:56 +02:00
|
|
|
}
|
|
|
|
}
|
2014-05-01 07:03:12 +02:00
|
|
|
*src += i;
|
2017-07-15 02:00:05 +02:00
|
|
|
return mbstate_reset_and_return(o, state);
|
2012-10-23 02:05:27 +02:00
|
|
|
}
|
|
|
|
|
2014-05-01 07:03:12 +02:00
|
|
|
size_t mbsrtowcs(wchar_t* dst, const char** src, size_t len, mbstate_t* ps) {
|
|
|
|
return mbsnrtowcs(dst, src, SIZE_MAX, len, ps);
|
2012-10-23 02:05:27 +02:00
|
|
|
}
|
|
|
|
|
2014-05-08 15:38:35 +02:00
|
|
|
size_t wcrtomb(char* s, wchar_t wc, mbstate_t* ps) {
|
|
|
|
static mbstate_t __private_state;
|
2018-08-03 02:31:13 +02:00
|
|
|
mbstate_t* state = (ps == nullptr) ? &__private_state : ps;
|
2014-05-08 15:38:35 +02:00
|
|
|
|
2016-09-30 02:21:43 +02:00
|
|
|
// Our wchar_t is UTF-32.
|
2014-06-02 20:33:04 +02:00
|
|
|
return c32rtomb(s, static_cast<char32_t>(wc), state);
|
2012-10-23 02:05:27 +02:00
|
|
|
}
|
|
|
|
|
2014-05-01 07:03:12 +02:00
|
|
|
size_t wcsnrtombs(char* dst, const wchar_t** src, size_t nwc, size_t len, mbstate_t* ps) {
|
2014-05-08 15:38:35 +02:00
|
|
|
static mbstate_t __private_state;
|
2018-08-03 02:31:13 +02:00
|
|
|
mbstate_t* state = (ps == nullptr) ? &__private_state : ps;
|
2014-05-08 15:38:35 +02:00
|
|
|
|
|
|
|
if (!mbsinit(state)) {
|
2017-07-15 02:00:05 +02:00
|
|
|
return mbstate_reset_and_return_illegal(EILSEQ, state);
|
2014-05-08 15:38:35 +02:00
|
|
|
}
|
|
|
|
|
2014-05-01 07:03:12 +02:00
|
|
|
char buf[MB_LEN_MAX];
|
|
|
|
size_t i, o, r;
|
2018-08-03 02:31:13 +02:00
|
|
|
if (dst == nullptr) {
|
2014-05-01 07:03:12 +02:00
|
|
|
for (i = o = 0; i < nwc; i++, o += r) {
|
|
|
|
wchar_t wc = (*src)[i];
|
2014-05-02 04:03:18 +02:00
|
|
|
if (static_cast<uint32_t>(wc) < 0x80) {
|
2014-05-01 07:03:12 +02:00
|
|
|
// Fast path for plain ASCII characters.
|
|
|
|
if (wc == 0) {
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
r = 1;
|
|
|
|
} else {
|
2014-05-08 15:38:35 +02:00
|
|
|
r = wcrtomb(buf, wc, state);
|
2014-06-02 20:33:04 +02:00
|
|
|
if (r == __MB_ERR_ILLEGAL_SEQUENCE) {
|
2014-05-01 07:03:12 +02:00
|
|
|
return r;
|
|
|
|
}
|
2014-04-18 22:32:33 +02:00
|
|
|
}
|
2014-04-18 02:30:03 +02:00
|
|
|
}
|
2014-05-01 07:03:12 +02:00
|
|
|
return o;
|
2012-10-23 02:05:27 +02:00
|
|
|
}
|
2014-05-01 07:03:12 +02:00
|
|
|
|
|
|
|
for (i = o = 0; i < nwc && o < len; i++, o += r) {
|
|
|
|
wchar_t wc = (*src)[i];
|
2014-05-02 04:03:18 +02:00
|
|
|
if (static_cast<uint32_t>(wc) < 0x80) {
|
2014-05-01 07:03:12 +02:00
|
|
|
// Fast path for plain ASCII characters.
|
|
|
|
dst[o] = wc;
|
|
|
|
if (wc == 0) {
|
2018-08-03 02:31:13 +02:00
|
|
|
*src = nullptr;
|
2014-05-01 07:03:12 +02:00
|
|
|
return o;
|
|
|
|
}
|
|
|
|
r = 1;
|
|
|
|
} else if (len - o >= sizeof(buf)) {
|
|
|
|
// Enough space to translate in-place.
|
2014-05-08 15:38:35 +02:00
|
|
|
r = wcrtomb(dst + o, wc, state);
|
2014-06-02 20:33:04 +02:00
|
|
|
if (r == __MB_ERR_ILLEGAL_SEQUENCE) {
|
2014-05-01 07:03:12 +02:00
|
|
|
*src += i;
|
|
|
|
return r;
|
|
|
|
}
|
2014-04-18 02:30:03 +02:00
|
|
|
} else {
|
2014-05-01 07:03:12 +02:00
|
|
|
// May not be enough space; use temp buffer.
|
2014-05-08 15:38:35 +02:00
|
|
|
r = wcrtomb(buf, wc, state);
|
2014-06-02 20:33:04 +02:00
|
|
|
if (r == __MB_ERR_ILLEGAL_SEQUENCE) {
|
2014-05-01 07:03:12 +02:00
|
|
|
*src += i;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
if (r > len - o) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
memcpy(dst + o, buf, r);
|
2014-04-18 02:30:03 +02:00
|
|
|
}
|
2012-10-23 02:05:27 +02:00
|
|
|
}
|
2014-05-01 07:03:12 +02:00
|
|
|
*src += i;
|
2014-04-18 02:30:03 +02:00
|
|
|
return o;
|
2012-10-23 02:05:27 +02:00
|
|
|
}
|
|
|
|
|
2014-05-01 07:03:12 +02:00
|
|
|
size_t wcsrtombs(char* dst, const wchar_t** src, size_t len, mbstate_t* ps) {
|
|
|
|
return wcsnrtombs(dst, src, SIZE_MAX, len, ps);
|
2012-10-23 02:05:27 +02:00
|
|
|
}
|