elf: Add all malloc tunable to unsecvars
[glibc.git] / benchtests / bench-strcpy_chk.c
blob48ecaaf392201cbce41a6f1520c630d68b59aacb
1 /* Measure __strcpy_chk functions.
2 Copyright (C) 2013-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 #ifndef STRCPY_RESULT
20 # define STRCPY_RESULT(dst, len) dst
21 # define TEST_MAIN
22 # define TEST_NAME "strcpy_chk"
23 # include "bench-string.h"
25 /* This test case implicitly tests the availability of the __chk_fail
26 symbol, which is part of the public ABI and may be used
27 externally. */
28 extern void __attribute__ ((noreturn)) __chk_fail (void);
29 extern char *normal_strcpy (char *, const char *, size_t)
30 __asm ("strcpy");
31 extern char *__strcpy_chk (char *, const char *, size_t);
33 IMPL (normal_strcpy, 1)
34 IMPL (__strcpy_chk, 2)
36 #endif
38 #include <fcntl.h>
39 #include <paths.h>
40 #include <setjmp.h>
41 #include <signal.h>
43 #include <support/support.h>
45 volatile int chk_fail_ok;
46 jmp_buf chk_fail_buf;
48 static void
49 handler (int sig)
51 if (chk_fail_ok)
53 chk_fail_ok = 0;
54 longjmp (chk_fail_buf, 1);
56 else
57 _exit (127);
60 typedef char *(*proto_t) (char *, const char *, size_t);
62 static void
63 do_one_test (impl_t *impl, char *dst, const char *src,
64 size_t len, size_t dlen)
66 char *res;
67 size_t i, iters = INNER_LOOP_ITERS_LARGE;
68 timing_t start, stop, cur;
70 if (dlen <= len)
72 if (impl->test == 1)
73 return;
75 chk_fail_ok = 1;
76 if (setjmp (chk_fail_buf) == 0)
78 res = CALL (impl, dst, src, dlen);
79 printf ("*** Function %s (%zd; %zd) did not __chk_fail\n",
80 impl->name, len, dlen);
81 chk_fail_ok = 0;
82 ret = 1;
84 return;
86 else
87 res = CALL (impl, dst, src, dlen);
89 if (res != STRCPY_RESULT (dst, len))
91 printf ("Wrong result in function %s %p %p\n", impl->name,
92 res, STRCPY_RESULT (dst, len));
93 ret = 1;
94 return;
97 if (strcmp (dst, src) != 0)
99 printf ("Wrong result in function %s dst \"%s\" src \"%s\"\n",
100 impl->name, dst, src);
101 ret = 1;
102 return;
105 TIMING_NOW (start);
106 for (i = 0; i < iters; ++i)
108 CALL (impl, dst, src, dlen);
110 TIMING_NOW (stop);
112 TIMING_DIFF (cur, start, stop);
114 TIMING_PRINT_MEAN ((double) cur, (double) iters);
117 static void
118 do_test (size_t align1, size_t align2, size_t len, size_t dlen, int max_char)
120 size_t i;
121 char *s1, *s2;
123 align1 &= 7;
124 if (align1 + len >= page_size)
125 return;
127 align2 &= 7;
128 if (align2 + len >= page_size)
129 return;
131 s1 = (char *) buf1 + align1;
132 s2 = (char *) buf2 + align2;
134 for (i = 0; i < len; i++)
135 s1[i] = 32 + 23 * i % (max_char - 32);
136 s1[len] = 0;
138 if (dlen > len)
139 printf ("Length %4zd, alignment %2zd/%2zd:", len, align1, align2);
141 FOR_EACH_IMPL (impl, 0)
142 do_one_test (impl, s2, s1, len, dlen);
144 if (dlen > len)
145 putchar ('\n');
148 static int
149 test_main (void)
151 size_t i;
153 set_fortify_handler (handler);
155 test_init ();
157 printf ("%23s", "");
158 FOR_EACH_IMPL (impl, 0)
159 printf ("\t%s", impl->name);
160 putchar ('\n');
162 for (i = 0; i < 16; ++i)
164 do_test (0, 0, i, i + 1, 127);
165 do_test (0, 0, i, i + 1, 255);
166 do_test (0, i, i, i + 1, 127);
167 do_test (i, 0, i, i + 1, 255);
170 for (i = 1; i < 8; ++i)
172 do_test (0, 0, 8 << i, (8 << i) + 1, 127);
173 do_test (8 - i, 2 * i, (8 << i), (8 << i) + 1, 127);
176 for (i = 1; i < 8; ++i)
178 do_test (i, 2 * i, (8 << i), (8 << i) + 1, 127);
179 do_test (2 * i, i, (8 << i), (8 << i) + 1, 255);
180 do_test (i, i, (8 << i), (8 << i) + 1, 127);
181 do_test (i, i, (8 << i), (8 << i) + 1, 255);
184 for (i = 0; i < 16; ++i)
186 do_test (0, 0, i, i + 256, 127);
187 do_test (0, 0, i, i + 256, 255);
188 do_test (0, i, i, i + 256, 127);
189 do_test (i, 0, i, i + 256, 255);
192 for (i = 1; i < 8; ++i)
194 do_test (0, 0, 8 << i, (8 << i) + 256, 127);
195 do_test (8 - i, 2 * i, (8 << i), (8 << i) + 256, 127);
198 for (i = 1; i < 8; ++i)
200 do_test (i, 2 * i, (8 << i), (8 << i) + 256, 127);
201 do_test (2 * i, i, (8 << i), (8 << i) + 256, 255);
202 do_test (i, i, (8 << i), (8 << i) + 256, 127);
203 do_test (i, i, (8 << i), (8 << i) + 256, 255);
206 for (i = 0; i < 16; ++i)
208 do_test (0, 0, i, i, 127);
209 do_test (0, 0, i, i + 2, 255);
210 do_test (0, i, i, i + 3, 127);
211 do_test (i, 0, i, i + 4, 255);
214 for (i = 1; i < 8; ++i)
216 do_test (0, 0, 8 << i, (8 << i) - 15, 127);
217 do_test (8 - i, 2 * i, (8 << i), (8 << i) + 5, 127);
220 for (i = 1; i < 8; ++i)
222 do_test (i, 2 * i, (8 << i), (8 << i) + i, 127);
223 do_test (2 * i, i, (8 << i), (8 << i) + (i - 1), 255);
224 do_test (i, i, (8 << i), (8 << i) + i + 2, 127);
225 do_test (i, i, (8 << i), (8 << i) + i + 3, 255);
228 return 0;
231 #include <support/test-driver.c>