2023-01-06 21:08:04 +00:00
|
|
|
/* Copyright (C) 1991-2023 Free Software Foundation, Inc.
|
2004-10-18 04:17:19 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
|
|
The GNU C Library 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.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
The GNU C Library 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
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
2019-09-06 22:40:42 -07:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2004-10-18 04:17:19 +00:00
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
2018-03-07 14:32:03 -05:00
|
|
|
#include <libio/libioP.h>
|
|
|
|
|
|
2004-10-18 04:17:19 +00:00
|
|
|
|
|
|
|
|
/* Write formatted output into S, according to the format string FORMAT. */
|
|
|
|
|
int
|
2018-03-07 14:32:03 -05:00
|
|
|
___sprintf_chk (char *s, int flag, size_t slen, const char *format, ...)
|
2004-10-18 04:17:19 +00:00
|
|
|
{
|
2018-03-07 14:32:03 -05:00
|
|
|
/* For flag > 0 (i.e. __USE_FORTIFY_LEVEL > 1) request that %n
|
|
|
|
|
can only come from read-only format strings. */
|
|
|
|
|
unsigned int mode = (flag > 0) ? PRINTF_FORTIFY : 0;
|
|
|
|
|
va_list ap;
|
|
|
|
|
int ret;
|
2004-10-18 04:17:19 +00:00
|
|
|
|
2018-12-19 18:01:14 -02:00
|
|
|
/* Regardless of the value of flag, let __vsprintf_internal know that
|
|
|
|
|
this is a call from *printf_chk. */
|
|
|
|
|
mode |= PRINTF_CHK;
|
|
|
|
|
|
2018-03-07 14:32:03 -05:00
|
|
|
if (slen == 0)
|
|
|
|
|
__chk_fail ();
|
2004-10-18 04:17:19 +00:00
|
|
|
|
2018-03-07 14:32:03 -05:00
|
|
|
va_start (ap, format);
|
|
|
|
|
ret = __vsprintf_internal (s, slen, format, ap, mode);
|
|
|
|
|
va_end (ap);
|
|
|
|
|
|
|
|
|
|
return ret;
|
2004-10-18 04:17:19 +00:00
|
|
|
}
|
2023-04-26 17:26:51 +02:00
|
|
|
ldbl_hidden_def (___sprintf_chk, __sprintf_chk)
|
2006-01-14 12:10:44 +00:00
|
|
|
ldbl_strong_alias (___sprintf_chk, __sprintf_chk)
|