1 /* Copyright (C) 2005-2023 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
25 #include <stackguard-macros.h>
29 #include <support/xstdlib.h>
31 static const char *command
;
33 static uintptr_t stack_chk_guard_copy
;
34 static bool stack_chk_guard_copy_set
;
37 static void __attribute__ ((constructor
))
40 stack_chk_guard_copy
= STACK_CHK_GUARD
;
41 stack_chk_guard_copy_set
= true;
45 uintptr_t_cmp (const void *a
, const void *b
)
47 if (*(uintptr_t *) a
< *(uintptr_t *) b
)
49 if (*(uintptr_t *) a
> *(uintptr_t *) b
)
57 if (!stack_chk_guard_copy_set
)
59 puts ("constructor has not been run");
63 if (stack_chk_guard_copy
!= STACK_CHK_GUARD
)
65 puts ("STACK_CHK_GUARD changed between constructor and do_test");
71 write (2, &stack_chk_guard_copy
, sizeof (stack_chk_guard_copy
));
77 puts ("missing --command or --child argument");
82 uintptr_t child_stack_chk_guards
[N
+ 1];
83 child_stack_chk_guards
[N
] = stack_chk_guard_copy
;
85 for (i
= 0; i
< N
; ++i
)
89 printf ("couldn't create pipe: %m\n");
96 printf ("fork failed: %m\n");
102 if (stack_chk_guard_copy
!= STACK_CHK_GUARD
)
104 puts ("STACK_CHK_GUARD changed after fork");
120 if (TEMP_FAILURE_RETRY (read (fds
[0], &child_stack_chk_guards
[i
],
121 sizeof (uintptr_t))) != sizeof (uintptr_t))
123 puts ("could not read stack_chk_guard value from child");
131 termpid
= TEMP_FAILURE_RETRY (waitpid (pid
, &status
, 0));
134 printf ("waitpid failed: %m\n");
137 else if (termpid
!= pid
)
139 printf ("waitpid returned %ld != %ld\n",
140 (long int) termpid
, (long int) pid
);
143 else if (!WIFEXITED (status
) || WEXITSTATUS (status
))
145 puts ("child hasn't exited with exit status 0");
150 qsort (child_stack_chk_guards
, N
+ 1, sizeof (uintptr_t), uintptr_t_cmp
);
152 uintptr_t default_guard
= 0;
153 unsigned char *p
= (unsigned char *) &default_guard
;
154 p
[sizeof (uintptr_t) - 1] = 255;
155 p
[sizeof (uintptr_t) - 2] = '\n';
158 /* Test if the stack guard canaries are either randomized,
159 or equal to the default stack guard canary value.
160 Even with randomized stack guards it might happen
161 that the random number generator generates the same
162 values, but if that happens in more than half from
163 the 16 runs, something is very wrong. */
164 int ndifferences
= 0;
166 for (i
= 0; i
< N
; ++i
)
168 if (child_stack_chk_guards
[i
] != child_stack_chk_guards
[i
+1])
170 else if (child_stack_chk_guards
[i
] == default_guard
)
174 printf ("differences %d defaults %d\n", ndifferences
, ndefaults
);
176 if (ndifferences
< N
/ 2 && ndefaults
< N
/ 2)
178 puts ("stack guard canaries are not randomized enough");
179 puts ("nor equal to the default canary value");
186 #define OPT_COMMAND 10000
187 #define OPT_CHILD 10001
188 #define CMDLINE_OPTIONS \
189 { "command", required_argument, NULL, OPT_COMMAND }, \
190 { "child", no_argument, NULL, OPT_CHILD },
192 static void __attribute__((used
))
193 cmdline_process_function (int c
)
205 #define CMDLINE_PROCESS cmdline_process_function
207 #include <support/test-driver.c>