1994-05-27 05:00:24 +00:00
|
|
|
/*-
|
2017-11-25 17:12:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
|
|
|
*
|
2004-04-06 13:14:03 +00:00
|
|
|
* Copyright (c) 2002-2004 Tim J. Robbins.
|
2003-08-07 07:59:36 +00:00
|
|
|
* All rights reserved.
|
1994-05-27 05:00:24 +00:00
|
|
|
*
|
2011-11-20 14:45:42 +00:00
|
|
|
* Copyright (c) 2011 The FreeBSD Foundation
|
|
|
|
* All rights reserved.
|
|
|
|
* Portions of this software were developed by David Chisnall
|
|
|
|
* under sponsorship from the FreeBSD Foundation.
|
|
|
|
*
|
1994-05-27 05:00:24 +00:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 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.
|
|
|
|
*
|
2003-08-07 07:59:36 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
1994-05-27 05:00:24 +00:00
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
2003-08-07 07:59:36 +00:00
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
1994-05-27 05:00:24 +00:00
|
|
|
* 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
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2002-03-22 21:53:29 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2016-03-01 19:15:34 +00:00
|
|
|
#include <errno.h>
|
1994-05-27 05:00:24 +00:00
|
|
|
#include <stdlib.h>
|
2003-08-07 07:59:36 +00:00
|
|
|
#include <wchar.h>
|
2004-05-12 14:26:54 +00:00
|
|
|
#include "mblocal.h"
|
1994-05-27 05:00:24 +00:00
|
|
|
|
|
|
|
int
|
2011-11-20 14:45:42 +00:00
|
|
|
mbtowc_l(wchar_t * __restrict pwc, const char * __restrict s, size_t n, locale_t locale)
|
1994-05-27 05:00:24 +00:00
|
|
|
{
|
2004-04-06 13:14:03 +00:00
|
|
|
static const mbstate_t initial;
|
2003-08-07 07:59:36 +00:00
|
|
|
size_t rval;
|
2011-11-20 14:45:42 +00:00
|
|
|
FIX_LOCALE(locale);
|
1994-05-27 05:00:24 +00:00
|
|
|
|
2004-04-06 13:14:03 +00:00
|
|
|
if (s == NULL) {
|
2002-10-27 10:41:21 +00:00
|
|
|
/* No support for state dependent encodings. */
|
Reset persistent mbstates when rune locale encoding changes.
This was shown to be a problem by side effect of now-enabled test case,
which was going through C, en_US.UTF-8, ja_JP.SJIS, and ja_JP.eucJP,
and failing eventually as data in mbrtowc's mbstate, that was
perfectly correct for en_US.UTF-8 was treated as incorrect for
ja_JP.SJIS, failing the entire test case.
This makes the persistent mbstates to be per ctype-component,
and not per-locale so we could easily reset the mbstates when
only LC_CTYPE is changed.
Reviewed by: bapt, pfg
Approved by: kib (mentor, implicit)
Differential Revision: https://reviews.freebsd.org/D17796
2018-11-09 03:32:53 +00:00
|
|
|
XLOCALE_CTYPE(locale)->mbtowc = initial;
|
2003-08-07 07:59:36 +00:00
|
|
|
return (0);
|
2004-04-06 13:14:03 +00:00
|
|
|
}
|
Reset persistent mbstates when rune locale encoding changes.
This was shown to be a problem by side effect of now-enabled test case,
which was going through C, en_US.UTF-8, ja_JP.SJIS, and ja_JP.eucJP,
and failing eventually as data in mbrtowc's mbstate, that was
perfectly correct for en_US.UTF-8 was treated as incorrect for
ja_JP.SJIS, failing the entire test case.
This makes the persistent mbstates to be per ctype-component,
and not per-locale so we could easily reset the mbstates when
only LC_CTYPE is changed.
Reviewed by: bapt, pfg
Approved by: kib (mentor, implicit)
Differential Revision: https://reviews.freebsd.org/D17796
2018-11-09 03:32:53 +00:00
|
|
|
rval = XLOCALE_CTYPE(locale)->__mbrtowc(pwc, s, n,
|
|
|
|
&(XLOCALE_CTYPE(locale)->mbtowc));
|
2016-03-01 19:15:34 +00:00
|
|
|
switch (rval) {
|
|
|
|
case (size_t)-2:
|
|
|
|
errno = EILSEQ;
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case (size_t)-1:
|
2003-08-07 07:59:36 +00:00
|
|
|
return (-1);
|
2016-03-01 19:15:34 +00:00
|
|
|
default:
|
|
|
|
return ((int)rval);
|
|
|
|
}
|
1994-05-27 05:00:24 +00:00
|
|
|
}
|
2011-11-20 14:45:42 +00:00
|
|
|
int
|
|
|
|
mbtowc(wchar_t * __restrict pwc, const char * __restrict s, size_t n)
|
|
|
|
{
|
|
|
|
return mbtowc_l(pwc, s, n, __get_locale());
|
|
|
|
}
|