File: test-memmem.c

package info (click to toggle)
picolibc 1.8.11-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 50,064 kB
  • sloc: ansic: 404,031; asm: 24,984; sh: 2,585; python: 2,289; perl: 680; pascal: 329; exp: 287; makefile: 222; cpp: 71; xml: 40
file content (243 lines) | stat: -rw-r--r-- 7,397 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
/*
 * SPDX-License-Identifier: BSD-3-Clause
 *
 * Copyright © 2025 Keith Packard
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above
 *    copyright notice, this list of conditions and the following
 *    disclaimer in the documentation and/or other materials provided
 *    with the distribution.
 *
 * 3. Neither the name of the copyright holder nor the names of its
 *    contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#define _GNU_SOURCE
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <inttypes.h>

#ifdef __MSP430__
#define HAY_MAX    256
#define NEEDLE_MAX 16
#else
#define HAY_MAX    2048
#define NEEDLE_MAX 256
#endif

#define SEED 42

static uint8_t hay[HAY_MAX];
static uint8_t needle[NEEDLE_MAX];

/* Generate random uint8_t */
static uint8_t
rand_byte(void)
{
    return rand() & 0xff;
}

/* Generate random size_t */
static size_t
rand_size_t(void)
{
    size_t r = 0;
    size_t i;

    for (i = 0; i < SIZE_WIDTH; i += 8) {
        r |= (size_t)rand_byte() << i;
    }
    return r;
}

/* Generate random number between 0 and max inclusive */
static size_t
rand_range(size_t max)
{
    size_t mask = ~(size_t)0;
    size_t ret;

    if (max == 0)
        return 0;
    while (mask >> 1 > max)
        mask >>= 1;
    for (;;) {
        ret = rand_size_t() & mask;
        if (ret <= max)
            return ret;
    }
}

static size_t
rand_size(size_t max)
{
    for (;;) {
        size_t ret = rand_range(max);
        if (ret)
            return ret;
    }
}

static size_t
rand_pos(size_t max)
{
    return rand_range(max);
}

static size_t
rand_elt(size_t max)
{
    return rand_range(max - 1);
}

#ifdef __MSP430__
/* MSP430 emulator is rather slow */
#define LOOPS 4
#else
#define LOOPS 10
#endif

static void
generate_hay(uint8_t *dst, size_t size)
{
    while (size) {
        *dst++ = rand_byte();
        size--;
    }
}

static void
fixup_hay(uint8_t *hay, size_t hay_size, uint8_t *needle, size_t needle_size)
{
    uint8_t *fix_pos = &needle[rand_elt(needle_size)];
    uint8_t  fix = *fix_pos;

    while (hay_size) {
        if (*hay == fix)
            *hay ^= 0x55;
        hay++;
        hay_size--;
    }

    while (needle_size) {
        if (needle != fix_pos && *needle == fix)
            *needle ^= 0xaa;
        needle++;
        needle_size--;
    }
}

int
main(void)
{
    static size_t hay_start, hay_size;
    static size_t needle_start, needle_size;
    static size_t needle_pos;
    int           ret = 0;
    int           hay_size_loop, needle_size_loop;
    int           needle_pos_loop;

    srand(SEED);

    /* Check long alignments for hay and needle */
    for (hay_start = 0; hay_start < sizeof(long); hay_start++) {
        printf("loop %zd of %zd\n", hay_start, sizeof(long));

        for (needle_start = 0; needle_start < sizeof(long); needle_start++) {

            /* Generate LOOPS random hay sizes */
            for (hay_size_loop = 0; hay_size_loop < LOOPS; hay_size_loop++) {
                hay_size = rand_size(HAY_MAX - hay_start);
                size_t needle_max = NEEDLE_MAX - needle_start;
                if (needle_max > hay_size)
                    needle_max = hay_size;

                /* Generate LOOPS random needle sizes */
                for (needle_size_loop = 0; needle_size_loop < LOOPS; needle_size_loop++) {
                    needle_size = rand_size(needle_max);

                    /* Generate LOOPS random needle locations */
                    for (needle_pos_loop = 0; needle_pos_loop < LOOPS; needle_pos_loop++) {
                        needle_pos = rand_pos(hay_size - needle_size);

                        uint8_t *hay_cur = &hay[hay_start];
                        uint8_t *needle_cur = &needle[needle_start];

#if 0
                        printf("hay_start %zu hay_size %zu needle_start %zu needle_size %zu needle_pos %zu\n",
                               hay_start, hay_size, needle_start, needle_size, needle_pos);
#endif

                        /* Set up the data */
                        memset(hay, 0, HAY_MAX);
                        memset(needle, 0, NEEDLE_MAX);
                        generate_hay(hay_cur, hay_size);
                        generate_hay(needle_cur, needle_size);

                        /*
                         * Make sure the needle doesn't already exist in hay by
                         * adjusting both
                         */
                        fixup_hay(hay_cur, hay_size, needle_cur, needle_size);

                        /* Place the needle in the haystack */
                        memcpy(&hay_cur[needle_pos], needle_cur, needle_size);

                        uint8_t *result;

                        result = memmem(hay_cur, hay_size, needle_cur, needle_size);

                        if (result != hay_cur + needle_pos) {
                            printf("expected needle at %zu got %zu\n", needle_pos,
                                   result - hay_cur);
                            printf("hay_start %zu hay_size %zu needle_start %zu needle_size %zu "
                                   "needle_pos %zu\n",
                                   hay_start, hay_size, needle_start, needle_size, needle_pos);
                            ret = 1;
                        }

                        /*
                         * Introduce a single bit error in the hay
                         * so that it no longer matches anywhere
                         */
                        size_t damage_pos = rand_elt(needle_size);
                        hay_cur[needle_pos + damage_pos] ^= 1;

                        result = memmem(hay_cur, hay_size, needle_cur, needle_size);

                        if (result != NULL) {
                            printf("expected no needle, got %zu\n", result - hay_cur);
                            printf("hay_start %zu hay_size %zu needle_start %zu needle_size %zu "
                                   "needle_pos %zu\n",
                                   hay_start, hay_size, needle_start, needle_size, needle_pos);
                            ret = 1;
                        }
                    }
                }
            }
        }
    }
    return ret;
}