summaryrefslogtreecommitdiff
path: root/test/smp/regression/threadx_block_memory_error_detection_test.c
blob: 41148120ff854276d51af31997297917f46f7be5 (plain)
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
/***************************************************************************/
/* Copyright (c) 2024 Microsoft Corporation                                */
/* Copyright (c) 2026 Eclipse ThreadX contributors                         */
/*                                                                         */
/* This program and the accompanying materials are made available under    */
/* the terms of the MIT License which is available at                      */
/* https://opensource.org/licenses/MIT.                                    */
/*                                                                         */
/* SPDX-License-Identifier: MIT                                            */
/***************************************************************************/

/* This test is designed to test error detection for simple memory block operations.  */

#include   <stdio.h>
#include   "tx_api.h"
#include   "threadx_test_port.h"

static unsigned long   thread_0_counter =  0;
static TX_THREAD       thread_0;


static TX_BLOCK_POOL   pool_0;
static TX_BLOCK_POOL   pool_1;
static TX_BLOCK_POOL   pool_2;
static CHAR            *pointer;


/* Define thread prototypes.  */

static void    thread_0_entry(ULONG thread_input);

UINT        _txe_block_pool_create(TX_BLOCK_POOL *pool_ptr, CHAR *name_ptr, ULONG block_size,
                    VOID *pool_start, ULONG pool_size, UINT pool_control_block_size);


/* Prototype for test control return.  */

void  test_control_return(UINT status);


/* Define what the initial system looks like.  */

#ifdef CTEST
void test_application_define(void *first_unused_memory)
#else
void    threadx_block_memory_error_detection_application_define(void *first_unused_memory)
#endif
{

INT     status;

    /* Put first available memory address into a character pointer.  */
    pointer =  (CHAR *) first_unused_memory;

    /* Put system definition stuff in here, e.g. thread creates and other assorted
       create information.  */

    status =  tx_thread_create(&thread_0, "thread 0", thread_0_entry, 1,
            pointer, TEST_STACK_SIZE_PRINTF,
            17, 17, 100, TX_AUTO_START);
    pointer = pointer + TEST_STACK_SIZE_PRINTF;

    /* Create block pool 0.  */
    status =  tx_block_pool_create(&pool_0, "pool 0", 100, pointer, TX_TEST_BLOCK_POOL_BYTES(100, 3));
    pointer = pointer + TX_TEST_BLOCK_POOL_BYTES(100, 3);

#ifndef TX_DISABLE_ERROR_CHECKING   /* skip this test and pretend it passed */

    /* Create block pool again to get pool_ptr error.  */
    status =  tx_block_pool_create(&pool_0, "pool 0", 100, pointer, TX_TEST_BLOCK_POOL_BYTES(100, 3));
    if (status != TX_POOL_ERROR)
        return;

    /* Create block pool with NULL pointer.  */
    status =  tx_block_pool_create(TX_NULL, "pool 0", 100, pointer, TX_TEST_BLOCK_POOL_BYTES(100, 3));
    if (status != TX_POOL_ERROR)
    {

        printf("Running Block Memory Error Detection Test........................... ERROR #1\n");
        test_control_return(1);
    }

    /* Create block pool pointer if NULL start.  */
    status =  tx_block_pool_create(&pool_1, "pool 0", 100, NULL, TX_TEST_BLOCK_POOL_BYTES(100, 3));
    if (status != TX_PTR_ERROR)
    {

        printf("Running Block Memory Error Detection Test........................... ERROR #2\n");
        test_control_return(1);
    }

    /* Create block pool pointer with invalid size.  */
    status =  tx_block_pool_create(&pool_1, "pool 0", 100, pointer, 100);
    if (status != TX_SIZE_ERROR)
    {

        printf("Running Block Memory Error Detection Test........................... ERROR #3\n");
        test_control_return(1);
    }

    /* Attempt of allocate block with NULL dest.  */
    status =  tx_block_allocate(&pool_0, (VOID **) TX_NULL, TX_NO_WAIT);
    if (status != TX_PTR_ERROR)
    {

        printf("Running Block Memory Error Detection Test........................... ERROR #4\n");
        test_control_return(1);
    }

    /* Delete null pointer.  */
    status =  tx_block_pool_delete(TX_NULL);
    if (status != TX_POOL_ERROR)
    {

        printf("Running Block Memory Error Detection Test........................... ERROR #5\n");
        test_control_return(1);
    }

#endif  /* TX_DISABLE_ERROR_CHECKING */
}



/* Define the test threads.  */

static void    thread_0_entry(ULONG thread_input)
{

#ifndef TX_DISABLE_ERROR_CHECKING
UINT    status;
CHAR    *pointer_1;
CHAR    *pointer_2;
CHAR    *pointer_3;
CHAR    *pointer_4;
INT     i;
#endif

    /* Inform user.  */
    printf("Running Block Memory Error Detection Test........................... ");

#ifndef TX_DISABLE_ERROR_CHECKING   /* skip this test and pretend it passed */

    status =  tx_block_pool_create(&pool_1, "pool 1", 100, pointer, TX_TEST_BLOCK_POOL_BYTES(100, 3));
    pointer = pointer + TX_TEST_BLOCK_POOL_BYTES(100, 3);

    /* Attempt to create a pool with an invalid size.  */
    status =  _txe_block_pool_create(&pool_2, "pool 2", 100, pointer, TX_TEST_BLOCK_POOL_BYTES(100, 3), 777777);
    if (status != TX_POOL_ERROR)
    {

        /* Error!  */
        printf("ERROR #6\n");
        test_control_return(1);
    }

    /* Allocate with a NULL destination pointer.  */
    status =  tx_block_allocate(&pool_0, (VOID **) TX_NULL, TX_NO_WAIT);
    if (status != TX_PTR_ERROR)
    {

        /* Error!  */
        printf("ERROR #7\n");
        test_control_return(1);
    }

    /* Allocate with a NULL pool pointer.  */
    status =  tx_block_allocate(TX_NULL, (VOID **) TX_NULL, TX_NO_WAIT);
    if (status != TX_POOL_ERROR)
    {

        /* Error!  */
        printf("ERROR #8\n");
        test_control_return(1);
    }

    /* Allocate with bad pool pointer.  */
    pool_2.tx_block_pool_id =  0;
    status =  tx_block_allocate(&pool_2, (VOID **) TX_NULL, TX_NO_WAIT);
    if (status != TX_POOL_ERROR)
    {

        /* Error!  */
        printf("ERROR #9\n");
        test_control_return(1);
    }

    /* Release bad pool ptr. */
    status =  tx_block_release(TX_NULL);
    if (status != TX_PTR_ERROR)
    {

        /* Error!  */
        printf("ERROR #10\n");
        test_control_return(1);
    }

    /* Allocate first block from the pool.  */
    status = tx_block_allocate(&pool_0, (VOID **) &pointer_1, TX_NO_WAIT);

    /* Check status.  */
    if (status != TX_SUCCESS)
    {

        /* Error!  */
        printf("ERROR #11\n");
        test_control_return(1);
    }

    /* Set all the memory of the blocks.  */
    TX_MEMSET(pointer_1, (CHAR) 0xEF, 100);

    /* Allocate second block from the pool.  */
    status = tx_block_allocate(&pool_0, (VOID **) &pointer_2, TX_NO_WAIT);

    /* Check status.  */
    if (status != TX_SUCCESS)
    {

        /* Error!  */
        printf("ERROR #12\n");
        test_control_return(1);
    }

    /* Set all the memory of the blocks.  */
    TX_MEMSET(pointer_2, (CHAR) 0xEF, 100);

    /* Allocate third block from the pool.  */
    status = tx_block_allocate(&pool_0, (VOID **) &pointer_3, TX_NO_WAIT);

    /* Check status.  */
    if (status != TX_SUCCESS)
    {

        /* Error!  */
        printf("ERROR #13\n");
        test_control_return(1);
    }

    /* Set all the memory of the blocks.  */
    TX_MEMSET(pointer_3, (CHAR) 0xEF, 100);

    /* Attempt to allocate fourth block from the pool.  This should fail because
       there should be no more blocks in the pool.  */
    status = tx_block_allocate(&pool_0, (VOID **) &pointer_4, TX_NO_WAIT);

    /* Check status.  */
    if (status != TX_NO_MEMORY)
    {

        /* Error!  */
        printf("ERROR #14\n");
        test_control_return(1);
    }

    /* Set the memory of all of the allocated blocks.  */
    for (i =0; i < 100; i++)
    {
        pointer_1[i] = (CHAR) 0xFF;
        pointer_2[i] = (CHAR) 0xFF;
        pointer_3[i] = (CHAR) 0xFF;
    }

    /* Now release each of the blocks. */
    status =  tx_block_release(pointer_1);

    /* Check for status.  */
    if (status != TX_SUCCESS)
    {

        /* Error!  */
        printf("ERROR #15\n");
        test_control_return(1);
    }

    /* Release the second block.  */
    status =  tx_block_release(pointer_2);

    /* Check for status.  */
    if (status != TX_SUCCESS)
    {

        /* Error!  */
        printf("ERROR #16\n");
        test_control_return(1);
    }

    /* Release the third block.  */
    status =  tx_block_release(pointer_3);

    /* Check for status.  */
    if (status != TX_SUCCESS)
    {

        /* Error!  */
        printf("ERROR #17\n");
        test_control_return(1);
    }

    /* Allocate each block again to make sure everything still
       works.  The block addresses should come out in reverse
       order, because a released block is placed at the head of
       the list.  */

    /* Allocate first block from the pool.  */
    status = tx_block_allocate(&pool_0, (VOID **) &pointer_1, TX_NO_WAIT);

    /* Check status.  */
    if (status != TX_SUCCESS)
    {

        /* Error!  */
        printf("ERROR #18\n");
        test_control_return(1);
    }

    /* Set all the memory of the blocks.  */
    TX_MEMSET(pointer_1, (CHAR) 0xEF, 100);

    /* Allocate second block from the pool.  */
    status = tx_block_allocate(&pool_0, (VOID **) &pointer_2, TX_NO_WAIT);

    /* Check status.  */
    if (status != TX_SUCCESS)
    {

        /* Error!  */
        printf("ERROR #19\n");
        test_control_return(1);
    }

    /* Set all the memory of the blocks.  */
    TX_MEMSET(pointer_2, (CHAR) 0xEF, 100);

    /* Allocate third block from the pool.  */
    status = tx_block_allocate(&pool_0, (VOID **) &pointer_3, TX_NO_WAIT);

    /* Check status.  */
    if (status != TX_SUCCESS)
    {

        /* Error!  */
        printf("ERROR #20\n");
        test_control_return(1);
    }

    /* Set all the memory of the blocks.  */
    TX_MEMSET(pointer_3, (CHAR) 0xEF, 100);

    /* Attempt to allocate fourth block from the pool.  This should fail because
       there should be no more blocks in the pool.  */
    status = tx_block_allocate(&pool_0, (VOID **) &pointer_4, TX_NO_WAIT);

    /* Check status.  */
    if (status != TX_NO_MEMORY)
    {

        /* Error!  */
        printf("ERROR #21\n");
        test_control_return(1);
    }

    /* Delete both block pools.  */
    status =  tx_block_pool_delete(&pool_0);
    if (status != TX_SUCCESS)
    {

        /* Error!  */
        printf("ERROR #22\n");
        test_control_return(1);
    }

    status =  tx_block_pool_delete(&pool_1);
    if (status != TX_SUCCESS)
    {

        /* Error!  */
        printf("ERROR #23\n");
        test_control_return(1);
    }

    /* Attempt to delete again.  */
    status =  tx_block_pool_delete(&pool_1);
    if (status != TX_POOL_ERROR)
    {

        /* Error!  */
        printf("ERROR #24\n");
        test_control_return(1);
    }

    thread_0_counter++;

#endif  /* TX_DISABLE_ERROR_CHECKING */

    /* All is good!  */
    printf("SUCCESS!\n");
    test_control_return(0);
}