2002-08-13 09:30:41 +00:00
|
|
|
/*-
|
2023-05-10 15:40:58 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2017-11-25 17:12:48 +00:00
|
|
|
*
|
2004-07-21 12:12:48 +00:00
|
|
|
* Copyright (c) 2002-2004 Tim J. Robbins.
|
2002-08-13 09:30:41 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2011-11-20 14:45:42 +00:00
|
|
|
* Copyright (c) 2011 The FreeBSD Foundation
|
2022-08-04 20:52:23 +00:00
|
|
|
*
|
2011-11-20 14:45:42 +00:00
|
|
|
* Portions of this software were developed by David Chisnall
|
|
|
|
* under sponsorship from the FreeBSD Foundation.
|
|
|
|
*
|
2002-08-13 09:30:41 +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.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include "namespace.h"
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
2004-07-21 12:12:48 +00:00
|
|
|
#include <string.h>
|
2002-08-13 09:30:41 +00:00
|
|
|
#include <wchar.h>
|
|
|
|
#include "un-namespace.h"
|
|
|
|
#include "libc_private.h"
|
|
|
|
#include "local.h"
|
2004-07-21 12:12:48 +00:00
|
|
|
#include "mblocal.h"
|
2002-08-13 09:30:41 +00:00
|
|
|
|
|
|
|
wchar_t *
|
2011-11-20 14:45:42 +00:00
|
|
|
fgetws_l(wchar_t * __restrict ws, int n, FILE * __restrict fp, locale_t locale)
|
2002-08-13 09:30:41 +00:00
|
|
|
{
|
2016-09-05 03:37:28 +00:00
|
|
|
int sret;
|
2017-06-29 14:44:17 +00:00
|
|
|
wchar_t *wsp, *ret;
|
2004-07-21 12:12:48 +00:00
|
|
|
size_t nconv;
|
|
|
|
const char *src;
|
|
|
|
unsigned char *nl;
|
2011-11-20 14:45:42 +00:00
|
|
|
FIX_LOCALE(locale);
|
|
|
|
struct xlocale_ctype *l = XLOCALE_CTYPE(locale);
|
2002-08-13 09:30:41 +00:00
|
|
|
|
2017-06-29 14:44:17 +00:00
|
|
|
FLOCKFILE_CANCELSAFE(fp);
|
2002-09-20 13:25:40 +00:00
|
|
|
ORIENT(fp, 1);
|
2002-08-13 09:30:41 +00:00
|
|
|
|
2002-09-20 13:25:40 +00:00
|
|
|
if (n <= 0) {
|
2016-09-05 03:37:28 +00:00
|
|
|
fp->_flags |= __SERR;
|
2002-09-20 13:25:40 +00:00
|
|
|
errno = EINVAL;
|
|
|
|
goto error;
|
|
|
|
}
|
2002-08-13 09:30:41 +00:00
|
|
|
|
2016-09-05 06:10:51 +00:00
|
|
|
wsp = ws;
|
|
|
|
if (n == 1)
|
|
|
|
goto ok;
|
|
|
|
|
2004-07-21 12:12:48 +00:00
|
|
|
if (fp->_r <= 0 && __srefill(fp))
|
2016-09-05 03:37:28 +00:00
|
|
|
/* EOF or ferror */
|
2004-07-21 12:12:48 +00:00
|
|
|
goto error;
|
2016-09-05 06:10:51 +00:00
|
|
|
|
2016-09-05 03:37:28 +00:00
|
|
|
sret = 0;
|
2004-07-21 12:12:48 +00:00
|
|
|
do {
|
|
|
|
src = fp->_p;
|
|
|
|
nl = memchr(fp->_p, '\n', fp->_r);
|
2011-11-20 14:45:42 +00:00
|
|
|
nconv = l->__mbsnrtowcs(wsp, &src,
|
2004-07-21 12:12:48 +00:00
|
|
|
nl != NULL ? (nl - fp->_p + 1) : fp->_r,
|
2008-04-17 22:17:54 +00:00
|
|
|
n - 1, &fp->_mbstate);
|
2016-09-05 03:37:28 +00:00
|
|
|
if (nconv == (size_t)-1) {
|
2004-07-21 12:12:48 +00:00
|
|
|
/* Conversion error */
|
2016-09-05 03:37:28 +00:00
|
|
|
fp->_flags |= __SERR;
|
2002-09-20 13:25:40 +00:00
|
|
|
goto error;
|
2016-09-05 03:37:28 +00:00
|
|
|
}
|
2004-07-21 12:12:48 +00:00
|
|
|
if (src == NULL) {
|
|
|
|
/*
|
|
|
|
* We hit a null byte. Increment the character count,
|
|
|
|
* since mbsnrtowcs()'s return value doesn't include
|
|
|
|
* the terminating null, then resume conversion
|
|
|
|
* after the null.
|
|
|
|
*/
|
|
|
|
nconv++;
|
2004-10-03 15:48:32 +00:00
|
|
|
src = memchr(fp->_p, '\0', fp->_r);
|
|
|
|
src++;
|
2002-08-13 09:30:41 +00:00
|
|
|
}
|
2004-07-21 12:12:48 +00:00
|
|
|
fp->_r -= (unsigned char *)src - fp->_p;
|
|
|
|
fp->_p = (unsigned char *)src;
|
|
|
|
n -= nconv;
|
|
|
|
wsp += nconv;
|
2016-09-05 04:49:58 +00:00
|
|
|
} while ((wsp == ws || wsp[-1] != L'\n') && n > 1 && (fp->_r > 0 ||
|
2016-09-05 03:37:28 +00:00
|
|
|
(sret = __srefill(fp)) == 0));
|
|
|
|
if (sret && !__sfeof(fp))
|
|
|
|
/* ferror */
|
2004-07-21 12:12:48 +00:00
|
|
|
goto error;
|
2016-09-05 03:37:28 +00:00
|
|
|
if (!l->__mbsinit(&fp->_mbstate)) {
|
2004-07-21 12:12:48 +00:00
|
|
|
/* Incomplete character */
|
2016-09-05 03:37:28 +00:00
|
|
|
fp->_flags |= __SERR;
|
|
|
|
errno = EILSEQ;
|
|
|
|
goto error;
|
|
|
|
}
|
2016-09-05 04:49:58 +00:00
|
|
|
if (wsp == ws)
|
2016-09-05 03:37:28 +00:00
|
|
|
/* EOF */
|
2004-07-21 12:12:48 +00:00
|
|
|
goto error;
|
2016-09-05 06:10:51 +00:00
|
|
|
ok:
|
2009-11-25 04:45:45 +00:00
|
|
|
*wsp = L'\0';
|
2017-06-29 14:44:17 +00:00
|
|
|
ret = ws;
|
|
|
|
end:
|
|
|
|
FUNLOCKFILE_CANCELSAFE();
|
2017-06-30 20:23:46 +00:00
|
|
|
return (ret);
|
2002-09-20 13:25:40 +00:00
|
|
|
|
|
|
|
error:
|
2017-06-29 14:44:17 +00:00
|
|
|
ret = NULL;
|
|
|
|
goto end;
|
2002-08-13 09:30:41 +00:00
|
|
|
}
|
2016-09-05 03:37:28 +00:00
|
|
|
|
2011-11-20 14:45:42 +00:00
|
|
|
wchar_t *
|
|
|
|
fgetws(wchar_t * __restrict ws, int n, FILE * __restrict fp)
|
|
|
|
{
|
|
|
|
return fgetws_l(ws, n, fp, __get_locale());
|
|
|
|
}
|