2 * Copyright (C) 2008-2024 Free Software Foundation, Inc.
3 * Written by Eric Blake and Bruno Haible
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program 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
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>. */
22 #include "signature.h"
23 SIGNATURE_CHECK (rawmemchr
, void *, (void const *, int));
27 #include "zerosize-ptr.h"
34 char *input
= malloc (n
+ 1);
39 memset (input
+ 2, 'c', 1024);
40 memset (input
+ 1026, 'd', n
- 1028);
45 /* Basic behavior tests. */
46 ASSERT (rawmemchr (input
, 'a') == input
);
47 ASSERT (rawmemchr (input
, 'b') == input
+ 1);
48 ASSERT (rawmemchr (input
, 'c') == input
+ 2);
49 ASSERT (rawmemchr (input
, 'd') == input
+ 1026);
51 ASSERT (rawmemchr (input
+ 1, 'a') == input
+ n
- 1);
52 ASSERT (rawmemchr (input
+ 1, 'e') == input
+ n
- 2);
53 ASSERT (rawmemchr (input
+ 1, 0x789abc00 | 'e') == input
+ n
- 2);
55 ASSERT (rawmemchr (input
, '\0') == input
+ n
);
57 /* Alignment tests. */
60 for (i
= 0; i
< 32; i
++)
62 for (j
= 0; j
< 256; j
++)
64 for (j
= 0; j
< 256; j
++)
66 ASSERT (rawmemchr (input
+ i
, j
) == input
+ i
+ j
);
71 /* Ensure that no unaligned oversized reads occur. */
73 char *page_boundary
= (char *) zerosize_ptr ();
77 page_boundary
= input
+ 4096;
78 memset (page_boundary
- 512, '1', 511);
79 page_boundary
[-1] = '2';
80 for (i
= 1; i
<= 512; i
++)
81 ASSERT (rawmemchr (page_boundary
- i
, (i
* 0x01010100) | '2')
82 == page_boundary
- 1);
87 /* Test aligned oversized reads, which are allowed on most architectures
91 memcpy (input
, "abcde", 5);
92 ASSERT (rawmemchr (input
, 'e') == input
+ 4);
93 ASSERT (rawmemchr (input
+ 1, 'e') == input
+ 4);
94 ASSERT (rawmemchr (input
+ 2, 'e') == input
+ 4);
95 ASSERT (rawmemchr (input
+ 3, 'e') == input
+ 4);
96 ASSERT (rawmemchr (input
+ 4, 'e') == input
+ 4);
100 return test_exit_status
;