2000-11-18 23:34:30 +00:00
|
|
|
/* Tests of *printf for very large strings.
|
2024-01-01 18:12:26 +00:00
|
|
|
Copyright (C) 2000-2024 Free Software Foundation, Inc.
|
2000-11-18 23:34:30 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
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.
|
2000-11-18 23:34:30 +00:00
|
|
|
|
|
|
|
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
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
2000-11-18 23:34:30 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
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
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2000-11-18 23:34:30 +00:00
|
|
|
|
2017-11-02 11:14:51 +00:00
|
|
|
#include <array_length.h>
|
2000-11-18 23:34:30 +00:00
|
|
|
#include <locale.h>
|
|
|
|
#include <mcheck.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/stat.h>
|
Split DIAG_* macros to new header libc-diag.h.
Quite a few tests include libc-internal.h just for the DIAG_* macros.
Split those macros to their own file, which can be included safely in
_ISOMAC mode. I also moved ignore_value, since it seems logically
related, even though I didn't notice any tests needing it.
Also add -Wnonnull suppressions to two tests that _should_ have them,
but the error is masked when compiling against internal headers.
* include/libc-diag.h: New file. Define ignore_value,
DIAG_PUSH_NEEDS_COMMENT, DIAG_POP_NEEDS_COMMENT,
DIAG_IGNORE_NEEDS_COMMENT, and DIAG_IGNORE_Os_NEEDS_COMMENT here.
* include/libc-internal.h: Definitions of above macros moved from
here. Include libc-diag.h. Add copyright notice.
* malloc/tst-malloc.c, malloc/tst-memcheck.c, malloc/tst-realloc.c
* misc/tst-error1.c, posix/tst-dir.c, stdio-common/bug21.c
* stdio-common/scanf14.c, stdio-common/scanf4.c, stdio-common/scanf7.c
* stdio-common/test-vfprintf.c, stdio-common/tst-printf.c
* stdio-common/tst-printfsz.c, stdio-common/tst-sprintf.c
* stdio-common/tst-unlockedio.c, stdio-common/tstdiomisc.c
* stdlib/bug-getcontext.c, string/tester.c, string/tst-endian.c
* time/tst-strptime2.c, wcsmbs/tst-wcstof.c:
Include libc-diag.h instead of libc-internal.h.
* stdlib/tst-environ.c: Include libc-diag.h. Suppress -Wnonnull for
call to unsetenv (NULL).
* nptl/tst-mutex1.c: Include libc-diag.h. Suppress -Wnonnull for
call to pthread_mutexattr_destroy (NULL).
2016-11-21 01:46:30 +00:00
|
|
|
#include <libc-diag.h>
|
2000-11-18 23:34:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
const char *locs[] =
|
|
|
|
{
|
|
|
|
"C", "de_DE.ISO-8859-1", "de_DE.UTF-8", "ja_JP.EUC-JP"
|
|
|
|
};
|
|
|
|
|
|
|
|
char large[50000];
|
|
|
|
|
2014-11-05 09:54:08 +00:00
|
|
|
static int
|
|
|
|
do_test (void)
|
2000-11-18 23:34:30 +00:00
|
|
|
{
|
2003-08-19 20:24:45 +00:00
|
|
|
char buf[25];
|
2002-09-24 04:24:25 +00:00
|
|
|
size_t i;
|
2000-11-18 23:34:30 +00:00
|
|
|
int res = 0;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
mtrace ();
|
|
|
|
|
2003-08-19 20:24:45 +00:00
|
|
|
strcpy (buf, "/tmp/test-vfprintfXXXXXX");
|
2000-11-18 23:34:30 +00:00
|
|
|
fd = mkstemp (buf);
|
|
|
|
if (fd == -1)
|
|
|
|
{
|
|
|
|
printf ("cannot open temporary file: %m\n");
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
unlink (buf);
|
|
|
|
|
2017-11-02 11:14:51 +00:00
|
|
|
for (i = 0; i < array_length (locs); ++i)
|
2000-11-18 23:34:30 +00:00
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
struct stat st;
|
|
|
|
int fd2;
|
|
|
|
|
|
|
|
setlocale (LC_ALL, locs[i]);
|
|
|
|
|
|
|
|
memset (large, '\1', sizeof (large));
|
|
|
|
large[sizeof (large) - 1] = '\0';
|
|
|
|
|
|
|
|
fd2 = dup (fd);
|
|
|
|
if (fd2 == -1)
|
|
|
|
{
|
|
|
|
printf ("cannot dup for locale %s: %m\n",
|
|
|
|
setlocale (LC_ALL, NULL));
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ftruncate (fd2, 0) != 0)
|
|
|
|
{
|
|
|
|
printf ("cannot truncate file for locale %s: %m\n",
|
|
|
|
setlocale (LC_ALL, NULL));
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
fp = fdopen (fd2, "a");
|
|
|
|
if (fp == NULL)
|
|
|
|
{
|
|
|
|
printf ("cannot create FILE for locale %s: %m\n",
|
|
|
|
setlocale (LC_ALL, NULL));
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf (fp, "%s", large);
|
|
|
|
fprintf (fp, "%.*s", 30000, large);
|
|
|
|
large[20000] = '\0';
|
2014-12-11 21:46:21 +00:00
|
|
|
/* We're testing a large format string here and need to generate it
|
|
|
|
to avoid this source file being ridiculous. So disable the warning
|
|
|
|
about a generated format string. */
|
|
|
|
DIAG_PUSH_NEEDS_COMMENT;
|
|
|
|
DIAG_IGNORE_NEEDS_COMMENT (4.9, "-Wformat-security");
|
2000-11-18 23:34:30 +00:00
|
|
|
fprintf (fp, large);
|
2014-12-11 21:46:21 +00:00
|
|
|
DIAG_POP_NEEDS_COMMENT;
|
2007-05-01 18:35:44 +00:00
|
|
|
fprintf (fp, "%-1.300000000s", "hello");
|
2000-11-18 23:34:30 +00:00
|
|
|
|
|
|
|
if (fflush (fp) != 0 || ferror (fp) != 0 || fclose (fp) != 0)
|
|
|
|
{
|
|
|
|
printf ("write error for locale %s: %m\n",
|
|
|
|
setlocale (LC_ALL, NULL));
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fstat (fd, &st) != 0)
|
|
|
|
{
|
|
|
|
printf ("cannot stat for locale %s: %m\n",
|
|
|
|
setlocale (LC_ALL, NULL));
|
|
|
|
exit (1);
|
|
|
|
}
|
2007-05-01 18:35:44 +00:00
|
|
|
else if (st.st_size != 50000 + 30000 + 19999 + 5)
|
2000-11-18 23:34:30 +00:00
|
|
|
{
|
|
|
|
printf ("file size incorrect for locale %s: %jd instead of %jd\n",
|
|
|
|
setlocale (LC_ALL, NULL),
|
2007-05-01 18:35:44 +00:00
|
|
|
(intmax_t) st.st_size,
|
|
|
|
(intmax_t) 50000 + 30000 + 19999 + 5);
|
2000-11-18 23:34:30 +00:00
|
|
|
res = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
printf ("locale %s OK\n", setlocale (LC_ALL, NULL));
|
|
|
|
}
|
|
|
|
|
|
|
|
close (fd);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
2014-11-05 09:54:08 +00:00
|
|
|
|
|
|
|
#define TEST_FUNCTION do_test ()
|
|
|
|
#include "../test-skeleton.c"
|