1 /* Copyright (C) 2005-2015 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Jakub Jelinek <jakub@redhat.com>, 2005.
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 <http://www.gnu.org/licenses/>. */
25 #include <stackguard-macros.h>
29 static const char *command
;
31 static uintptr_t stack_chk_guard_copy
;
32 static bool stack_chk_guard_copy_set
;
35 static void __attribute__ ((constructor
))
38 stack_chk_guard_copy
= STACK_CHK_GUARD
;
39 stack_chk_guard_copy_set
= true;
43 uintptr_t_cmp (const void *a
, const void *b
)
45 if (*(uintptr_t *) a
< *(uintptr_t *) b
)
47 if (*(uintptr_t *) a
> *(uintptr_t *) b
)
55 if (!stack_chk_guard_copy_set
)
57 puts ("constructor has not been run");
61 if (stack_chk_guard_copy
!= STACK_CHK_GUARD
)
63 puts ("STACK_CHK_GUARD changed between constructor and do_test");
69 write (2, &stack_chk_guard_copy
, sizeof (stack_chk_guard_copy
));
75 puts ("missing --command or --child argument");
80 uintptr_t child_stack_chk_guards
[N
+ 1];
81 child_stack_chk_guards
[N
] = stack_chk_guard_copy
;
83 for (i
= 0; i
< N
; ++i
)
87 printf ("couldn't create pipe: %m\n");
94 printf ("fork failed: %m\n");
100 if (stack_chk_guard_copy
!= STACK_CHK_GUARD
)
102 puts ("STACK_CHK_GUARD changed after fork");
117 if (TEMP_FAILURE_RETRY (read (fds
[0], &child_stack_chk_guards
[i
],
118 sizeof (uintptr_t))) != sizeof (uintptr_t))
120 puts ("could not read stack_chk_guard value from child");
128 termpid
= TEMP_FAILURE_RETRY (waitpid (pid
, &status
, 0));
131 printf ("waitpid failed: %m\n");
134 else if (termpid
!= pid
)
136 printf ("waitpid returned %ld != %ld\n",
137 (long int) termpid
, (long int) pid
);
140 else if (!WIFEXITED (status
) || WEXITSTATUS (status
))
142 puts ("child hasn't exited with exit status 0");
147 qsort (child_stack_chk_guards
, N
+ 1, sizeof (uintptr_t), uintptr_t_cmp
);
149 uintptr_t default_guard
= 0;
150 unsigned char *p
= (unsigned char *) &default_guard
;
151 p
[sizeof (uintptr_t) - 1] = 255;
152 p
[sizeof (uintptr_t) - 2] = '\n';
155 /* Test if the stack guard canaries are either randomized,
156 or equal to the default stack guard canary value.
157 Even with randomized stack guards it might happen
158 that the random number generator generates the same
159 values, but if that happens in more than half from
160 the 16 runs, something is very wrong. */
161 int ndifferences
= 0;
163 for (i
= 0; i
< N
; ++i
)
165 if (child_stack_chk_guards
[i
] != child_stack_chk_guards
[i
+1])
167 else if (child_stack_chk_guards
[i
] == default_guard
)
171 printf ("differences %d defaults %d\n", ndifferences
, ndefaults
);
173 if (ndifferences
< N
/ 2 && ndefaults
< N
/ 2)
175 puts ("stack guard canaries are not randomized enough");
176 puts ("nor equal to the default canary value");
183 #define OPT_COMMAND 10000
184 #define OPT_CHILD 10001
185 #define CMDLINE_OPTIONS \
186 { "command", required_argument, NULL, OPT_COMMAND }, \
187 { "child", no_argument, NULL, OPT_CHILD },
188 #define CMDLINE_PROCESS \
195 #define TEST_FUNCTION do_test ()
196 #include "../test-skeleton.c"