linux: Add FSCONFIG_CMD_CREATE_EXCL from Linux 6.6 to sys/mount.h
[glibc.git] / stdio-common / bug-vfprintf-nargs.c
blob9e60c92b1fd7091e2aeed4ef406533d322e77b9d
1 /* Test for vfprintf nargs allocation overflow (BZ #13656).
2 Copyright (C) 2012-2023 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <stdint.h>
22 #include <unistd.h>
23 #include <inttypes.h>
24 #include <string.h>
25 #include <signal.h>
27 static int
28 format_failed (const char *fmt, const char *expected)
30 char output[80];
32 printf ("%s : ", fmt);
34 memset (output, 0, sizeof output);
35 /* Having sprintf itself detect a failure is good. */
36 if (sprintf (output, fmt, 1, 2, 3, "test") > 0
37 && strcmp (output, expected) != 0)
39 printf ("FAIL (output '%s' != expected '%s')\n", output, expected);
40 return 1;
42 puts ("ok");
43 return 0;
46 static int
47 do_test (void)
49 int rc = 0;
50 char buf[64];
52 /* Regular positionals work. */
53 if (format_failed ("%1$d", "1") != 0)
54 rc = 1;
56 /* Regular width positionals work. */
57 if (format_failed ("%1$*2$d", " 1") != 0)
58 rc = 1;
60 /* Positional arguments are constructed via read_int, so nargs can only
61 overflow on 32-bit systems. On 64-bit systems, it will attempt to
62 allocate a giant amount of memory and possibly crash, which is the
63 expected situation. Since the 64-bit behavior is arch-specific, only
64 test this on 32-bit systems. */
65 if (sizeof (long int) == 4)
67 sprintf (buf, "%%1$d %%%" PRIdPTR "$d",
68 (intptr_t) (UINT32_MAX / sizeof (int)));
69 if (format_failed (buf, "1 %$d") != 0)
70 rc = 1;
73 return rc;
76 #define TEST_FUNCTION do_test ()
77 #include "../test-skeleton.c"