summaryrefslogtreecommitdiff
path: root/test/regression/netxduo_test/netx_packet_basic_test.c
blob: 9e1d2c591098c54924138f8184a966b0cedbecef (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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
/***************************************************************************/
/* 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 NetX test concentrates on the basic packet operations.  */

#include   "tx_api.h"
#include   "nx_api.h"
#include   "nx_packet.h"

#define     DEMO_STACK_SIZE         2048

#define     TEST_SIZE               (NX_UDP_PACKET+28)

#ifndef NX_PACKET_ALIGNMENT
#define NX_PACKET_ALIGNMENT         sizeof(ULONG)
#endif /* NX_PACKET_ALIGNMENT */

/* Define the ThreadX and NetX object control blocks...  */

static TX_THREAD               ntest_0;

static NX_PACKET_POOL          pool_0;
static NX_PACKET_POOL          pool_1;
static NX_PACKET_POOL          pool_2;               
#ifdef NX_DISABLE_ERROR_CHECKING     
static NX_PACKET_POOL          pool_3;
#endif
static NX_PACKET_POOL          pool_4;


/* Define the counters used in the test application...  */

static ULONG                   error_counter;
static CHAR                    *pool_0_ptr;
static CHAR                    *pool_1_ptr;
static CHAR                    *pool_2_ptr;              
#ifdef NX_DISABLE_ERROR_CHECKING     
static CHAR                    *pool_3_ptr;  
#endif
static CHAR                    *pool_4_ptr;  
static ULONG                    pool_0_size;


static UCHAR                   buffer[2048];

/* Define thread prototypes.  */

static void    ntest_0_entry(ULONG thread_input);
extern 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    netx_packet_basic_test_application_define(void *first_unused_memory)
#endif
{

CHAR    *pointer;
UINT    status;

    
    /* Setup the working pointer.  */
    pointer =  (CHAR *) first_unused_memory;

    error_counter =  0;
    pool_0_ptr =  NX_NULL;
    pool_1_ptr =  NX_NULL;
    pool_2_ptr =  NX_NULL;

    /* Create the main thread.  */
    tx_thread_create(&ntest_0, "thread 0", ntest_0_entry, 0,  
            pointer, DEMO_STACK_SIZE, 
            4, 4, TX_NO_TIME_SLICE, TX_AUTO_START);
    pointer =  pointer + DEMO_STACK_SIZE;

    /* Initialize the NetX system.  */
    nx_system_initialize();


    /* Create first packet pool.  */
    pointer = (CHAR *)(((ALIGN_TYPE)pointer + NX_PACKET_ALIGNMENT - 1) & ~(NX_PACKET_ALIGNMENT - 1));
    pool_0_ptr =  pointer;
    pool_0_size = (((TEST_SIZE + NX_PACKET_ALIGNMENT - 1) & ~(NX_PACKET_ALIGNMENT - 1)) + ((sizeof(NX_PACKET) + NX_PACKET_ALIGNMENT - 1) & ~(NX_PACKET_ALIGNMENT - 1))) * 3;
    status =  nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", TEST_SIZE, pool_0_ptr, pool_0_size);

    pointer = pointer + pool_0_size;
    if (status)
        error_counter++;

    /* Create second packet pool.  */
    pointer = (CHAR *)(((ALIGN_TYPE)pointer + NX_PACKET_ALIGNMENT - 1) & ~(NX_PACKET_ALIGNMENT - 1));
    status =  nx_packet_pool_create(&pool_1, "NetX Second Packet Pool", 200, pointer, 1000);
    pool_1_ptr =  pointer;
    pointer = pointer + 1000;

    if (status)
        error_counter++;

    /* Create third packet pool.  */
    pointer = (CHAR *)(((ALIGN_TYPE)pointer + NX_PACKET_ALIGNMENT - 1) & ~(NX_PACKET_ALIGNMENT - 1));
    status =  nx_packet_pool_create(&pool_2, "NetX Third Packet Pool", 256, pointer, 8192);
    pool_2_ptr =  pointer;
    pointer = pointer + 8192;

    if (status)
        error_counter++; 
                                              
#ifdef NX_DISABLE_ERROR_CHECKING      
    /* Create fourth packet pool, small pool size.  */
    status =  nx_packet_pool_create(&pool_3, "NetX Fourth Packet Pool", 256, pointer, 200);  
    pool_3_ptr =  pointer;
    pointer = pointer + 200;

    if (status)
        error_counter++;
#endif

    /* Create fourth packet pool, small pool size.  */
    pointer = (CHAR *)(((ALIGN_TYPE)pointer + NX_PACKET_ALIGNMENT - 1) & ~(NX_PACKET_ALIGNMENT - 1));
    status =  nx_packet_pool_create(&pool_4, "NetX Fifth Packet Pool", 252, pointer, 8192);  
    pool_4_ptr =  pointer;
    pointer = pointer + 8192;

    if (status)
        error_counter++;
}



/* Define the test threads.  */

static void    ntest_0_entry(ULONG thread_input)
{

UINT        status;
NX_PACKET   *my_packet1;
NX_PACKET   *my_packet2;
NX_PACKET   *my_packet3;
NX_PACKET   *my_packet4;
#if !defined(NX_DISABLE_PACKET_CHAIN) && defined(__PRODUCT_NETXDUO__)
NX_PACKET   *packet_ptr;
#endif /* !defined(NX_DISABLE_PACKET_CHAIN) && defined(__PRODUCT_NETXDUO__) */
ULONG       size;
UCHAR       local_buffer[300];
ULONG       total_packets, free_packets, empty_pool_requests, empty_pool_suspensions, invalid_packet_releases;
    
    /* Print out test information banner.  */
    printf("NetX Test:   Packet Basic Processing Test..............................");

    /* Check for earlier error.  */
    if (error_counter)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }                                                            

    /* Delete all the packet pools.  */
    status =   nx_packet_pool_delete(&pool_0);
    status +=  nx_packet_pool_delete(&pool_1);
    status +=  nx_packet_pool_delete(&pool_2);               
#ifdef NX_DISABLE_ERROR_CHECKING     
    status +=  nx_packet_pool_delete(&pool_3);
#endif
    status +=  nx_packet_pool_delete(&pool_4);

    /* Check for error.  */
    if (status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Create the pools again.  */
    status =  nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", TEST_SIZE, pool_0_ptr, pool_0_size);
    status +=  nx_packet_pool_create(&pool_1, "NetX Second Packet Pool", TEST_SIZE, pool_1_ptr, 1000);
    status +=  nx_packet_pool_create(&pool_2, "NetX Third Packet Pool", 256, pool_2_ptr, 8192);     
#ifdef NX_DISABLE_ERROR_CHECKING      
    status +=  nx_packet_pool_create(&pool_3, "NetX Fourth Packet Pool", 256, pool_3_ptr, 200); 
#endif
    status +=  nx_packet_pool_create(&pool_4, "NetX Fifth Packet Pool", 252, pool_4_ptr, 8192);  

    /* Check for error.  */
    if (status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Allocate packets.  */
    status =   nx_packet_allocate(&pool_4, &my_packet1, NX_UDP_PACKET, 10);
    status +=  nx_packet_allocate(&pool_4, &my_packet2, NX_UDP_PACKET, 10);

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

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Check alignment. */
    if(((ALIGN_TYPE)my_packet1 & (NX_PACKET_ALIGNMENT - 1)) ||
       ((ALIGN_TYPE)my_packet2 & (NX_PACKET_ALIGNMENT - 1)) ||
       ((ALIGN_TYPE)(my_packet1 -> nx_packet_data_start) & (NX_PACKET_ALIGNMENT - 1)) ||
       ((ALIGN_TYPE)(my_packet2 -> nx_packet_data_start) & (NX_PACKET_ALIGNMENT - 1)))
    {

        printf("ERROR!\n");
        test_control_return(1);
    }

    status = nx_packet_release(my_packet1);
    status += nx_packet_release(my_packet2);

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

        printf("ERROR!\n");
        test_control_return(1);
    }


    /* Allocate packets.  */
    status =   nx_packet_allocate(&pool_0, &my_packet1, NX_UDP_PACKET, 10);
    status +=  nx_packet_allocate(&pool_0, &my_packet2, NX_UDP_PACKET, 10);
    status +=  nx_packet_allocate(&pool_0, &my_packet3, NX_UDP_PACKET, 10);

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

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Attempt to allocate another packet to get the error return.  */
    status =  nx_packet_allocate(&pool_0, &my_packet4, NX_UDP_PACKET, NX_NO_WAIT);

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

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Release all the packets but the first.  */
    status =   nx_packet_release(my_packet2);
    status +=  nx_packet_release(my_packet3);

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

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Place the alphabet in the packet.  */
    status =  nx_packet_data_append(my_packet1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ  ", 28, &pool_0, NX_NO_WAIT);

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

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Copy the packet to another pool.  */
    status =  nx_packet_copy(my_packet1, &my_packet2, &pool_1, NX_NO_WAIT);

    /* Check status.  */
    if ((status != NX_SUCCESS) || (my_packet2 -> nx_packet_length != 28))
    {

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Retrieve the payload from new packet.  */
    local_buffer[0] =  0;
    status =  nx_packet_data_retrieve(my_packet2, local_buffer, &size);

    /* Check status.  */
    if ((status) || (my_packet2 -> nx_packet_length != 28) || (size != 28) || (local_buffer[0] != 'A'))
    {

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Release the packet copy.  */
    status =  nx_packet_release(my_packet2);

#if !defined(NX_DISABLE_PACKET_CHAIN) && defined(__PRODUCT_NETXDUO__)
    /* Make sure the packet is chained. */
    while(my_packet1 -> nx_packet_next == (NX_PACKET *)NX_NULL)
    {

        /* Append numbers to first message. This will introduce packet chaining.  */
        status +=  nx_packet_data_append(my_packet1, "0102030405060708091011121314151617181920", 40, &pool_0, NX_NO_WAIT);
    }

    /* Trim data in the last packet. */
    my_packet1 -> nx_packet_length -= (ULONG)((ALIGN_TYPE)my_packet1 -> nx_packet_last -> nx_packet_append_ptr - (ALIGN_TYPE)my_packet1 -> nx_packet_last -> nx_packet_append_ptr);
    my_packet1 -> nx_packet_last = my_packet1;
    packet_ptr = my_packet1 -> nx_packet_next;

    /* Append numbers to first message. This will reuse the packet chaining.  */
    status +=  nx_packet_data_append(my_packet1, "abc", 3, &pool_0, NX_NO_WAIT);

    /* Check status.  */
    if ((status != NX_SUCCESS) || (my_packet1 -> nx_packet_next != packet_ptr))
    {

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Copy the packet to a packet in both pools.  This requires chaining and non-chaining.  */
    status =  nx_packet_copy(my_packet1, &my_packet2, &pool_1, NX_NO_WAIT);
    status +=  nx_packet_copy(my_packet2, &my_packet3, &pool_2, NX_NO_WAIT);

    /* Check status.  */
    if ((status != NX_SUCCESS) || 
        (my_packet2 -> nx_packet_length != my_packet1 -> nx_packet_length) || 
        (my_packet3 -> nx_packet_length != my_packet2 -> nx_packet_length))
    {

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Retrieve the payload from the first new packet.  */
    local_buffer[0] =  0;
    status =  nx_packet_data_retrieve(my_packet2, local_buffer, &size);

    /* Check status.  */
    if ((status) || 
        (my_packet1 -> nx_packet_length != my_packet2 -> nx_packet_length) || 
        (size != my_packet2 -> nx_packet_length) || 
        (local_buffer[0] != 'A') || (local_buffer[28] != '0'))
    {

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Retrieve the payload from the second new packet.  */
    local_buffer[0] =  0;
    status =  nx_packet_data_retrieve(my_packet3, local_buffer, &size);

    /* Check status.  */
    if ((status) || (my_packet3 -> nx_packet_length != my_packet2 -> nx_packet_length) || 
        (size != my_packet2 -> nx_packet_length) || 
        (local_buffer[0] != 'A') || (local_buffer[28] != '0'))
    {

        printf("ERROR!\n");
        test_control_return(1);
    }
#endif /* NX_DISABLE_PACKET_CHAIN && __PRODUCT_NETXDUO__ */

    /* Transmit release all packets.  */
    status =   nx_packet_transmit_release(my_packet1);
    
#if !defined(NX_DISABLE_PACKET_CHAIN) && defined(__PRODUCT_NETXDUO__)
    status +=  nx_packet_transmit_release(my_packet2);
    status +=  nx_packet_transmit_release(my_packet3);
#endif /* NX_DISABLE_PACKET_CHAIN && __PRODUCT_NETXDUO__ */

    /* Get nothing from the first pool.  */
    status +=  nx_packet_pool_info_get(&pool_0, NX_NULL, NX_NULL, NX_NULL, NX_NULL, NX_NULL);

    /* Get information about the first pool.  */
    status +=  nx_packet_pool_info_get(&pool_0, &total_packets, &free_packets, &empty_pool_requests, &empty_pool_suspensions, &invalid_packet_releases);

#ifndef NX_DISABLE_PACKET_INFO

    if(empty_pool_requests != 1)
        status++;
#endif

    /* Check status.  */
    if ((status) || (total_packets != 3) || (free_packets != 3) || (empty_pool_suspensions) || (invalid_packet_releases))
    {

        printf("ERROR!\n");
        test_control_return(1);
    }           
           
    /* Delete all the packet pools.  */
    status =   nx_packet_pool_delete(&pool_0);
    status +=  nx_packet_pool_delete(&pool_1);
    status +=  nx_packet_pool_delete(&pool_2);               
#ifdef NX_DISABLE_ERROR_CHECKING     
    status +=  nx_packet_pool_delete(&pool_3);
#endif
             
    /* Check for error.  */
    if (status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Tested the abnormal operation. */

    /* Create the pools again.  */
    status =  nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", TEST_SIZE, pool_0_ptr, pool_0_size);
    status +=  nx_packet_pool_create(&pool_1, "NetX Main Packet Pool", TEST_SIZE, pool_1_ptr, 1000);

    /* Check for error.  */
    if (status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Allocate the packet.  */
    status = nx_packet_allocate(&pool_0, &my_packet1, 0, NX_NO_WAIT);

    /* Check for error.  */
    if (status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }

#ifdef __PRODUCT_NETXDUO__
    /* Append data that is larger than whole pool. */
    status = nx_packet_data_append(my_packet1, buffer, sizeof(buffer), &pool_0, NX_NO_WAIT);

    /* Check the status.  */
    if((!status) ||(pool_0.nx_packet_pool_invalid_releases))
    {

        printf("ERROR!\n");
        test_control_return(1);
    }
#endif /* __PRODUCT_NETXDUO__ */
                          
    /* Copy the packet with length 0.  */
    status = nx_packet_copy(my_packet1, &my_packet2, &pool_0, NX_NO_WAIT);
           
    /* Check the status.  */
    if(!status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }
                     
#if !defined(NX_DISABLE_PACKET_CHAIN) && defined(__PRODUCT_NETXDUO__)
    /* Append data that is two packet size. */
    status = nx_packet_data_append(my_packet1, buffer, TEST_SIZE * 2, &pool_0, NX_NO_WAIT);

    /* Check the status.  */
    if(status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }
                           
    /* Copy the packet when the pool size not enough.  */
    status = nx_packet_copy(my_packet1, &my_packet2, &pool_0, NX_NO_WAIT);
           
    /* Check the status.  */
    if(!status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Modify the first packet prepend and append.  */
    my_packet1 -> nx_packet_prepend_ptr = my_packet1 -> nx_packet_append_ptr;
    my_packet1 -> nx_packet_length = TEST_SIZE;    

    /* Copy the packet .  */
    status = nx_packet_copy(my_packet1, &my_packet2, &pool_1, NX_NO_WAIT);
           
    /* Check the status.  */
    if(status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }   
#endif

    /* Release the packet.  */
    nx_packet_release(my_packet1);
                                 
    /* Allocate the packet.  */
    status = nx_packet_allocate(&pool_0, &my_packet1, 0, NX_NO_WAIT);

    /* Check for error.  */
    if (status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Construct the packet data.  */ 
    memcpy(my_packet1 -> nx_packet_prepend_ptr, "ABCDEFGHIJKLMNOPQRSTUVWXYZ  ", 28);

    /* Adjust the write pointer.  */
    my_packet1 -> nx_packet_append_ptr =  my_packet1 -> nx_packet_prepend_ptr + 28;  

    /* Set the invalid length.  */
    my_packet1 -> nx_packet_length =  30;         

    /* Copy the packet when the pool size not enough.  */
    status = nx_packet_copy(my_packet1, &my_packet2, &pool_0, NX_NO_WAIT);
           
    /* Check the status.  */
    if(!status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    } 

    /* Retrieve the packet data.  */
    status = nx_packet_data_retrieve(my_packet1, buffer, &size);
               
    /* Check the status.  */
    if(!status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    } 
            
    /* Extract the packet with zero offset.  */
    status = nx_packet_data_extract_offset(my_packet1, 30, buffer, sizeof(buffer), &size);
               
    /* Check the status.  */
    if(!status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }           
             
    /* Set the invalid packet length.  */ 
    my_packet1 -> nx_packet_length =  0; 
    
    /* Extract the packet with zero offset.  */
    status = nx_packet_data_extract_offset(my_packet1, 0, buffer, sizeof(buffer), &size);
               
    /* Check the status.  */
    if(status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }            
      
    /* Set the valid packet length.  */ 
    my_packet1 -> nx_packet_length =  28; 
    
    /* Extract the packet with small buffer.  */
    status = nx_packet_data_extract_offset(my_packet1, 0, buffer, 26, &size);
               
    /* Check the status.  */
    if(status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }  

    /* Release the packet.  */
    nx_packet_release(my_packet1);

#ifndef NX_DISABLE_PACKET_CHAIN
                                                  
    /* Allocate the packet.  */
    status = nx_packet_allocate(&pool_0, &my_packet1, 0, NX_NO_WAIT);

    /* Check for error.  */
    if (status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Append data that is two packet size. */
    status = nx_packet_data_append(my_packet1, buffer, TEST_SIZE * 2, &pool_0, NX_NO_WAIT);

    /* Check the status.  */
    if(status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Extract the packet.  */
    status = nx_packet_data_extract_offset(my_packet1, TEST_SIZE, buffer, sizeof(buffer), &size);
               
    /* Check the status.  */
    if(status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }
                   
    /* Extract the packet with small buffer.  */
    status = nx_packet_data_extract_offset(my_packet1, 0, buffer, TEST_SIZE, &size);
               
    /* Check the status.  */
    if(status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Set the invalid length.  */
    my_packet1 -> nx_packet_length = TEST_SIZE * 3;
    
    /* Extract the packet with invalid length.  */
    status = nx_packet_data_extract_offset(my_packet1, TEST_SIZE * 2, buffer, sizeof(buffer), &size);
               
    /* Check the status.  */
    if(!status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }   

    /* Reset the packet length.  */ 
    my_packet1 -> nx_packet_length = TEST_SIZE * 2;

    /* Try to release this packet.  */
    status = nx_packet_release(my_packet1);

    /* Check for error.  */
    if (status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }
#endif


#ifndef NX_DISABLE_ERROR_CHECKING
    /* Allocate the packet with large packet type.  */
    status = nx_packet_allocate(&pool_0, &my_packet1, (pool_0.nx_packet_pool_payload_size + 4), NX_NO_WAIT);

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

        printf("ERROR!\n");
        test_control_return(1);
    }
    
    /* Allocate the packet.  */
    status = nx_packet_allocate(&pool_0, &my_packet1, 0, NX_NO_WAIT);

    /* Check for error.  */
    if (status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Modifed the pool owner.  */
    my_packet1 -> nx_packet_pool_owner = NX_NULL;

    /* Try to release this packet.  */
    status = nx_packet_release(my_packet1);

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

        printf("ERROR!\n");
        test_control_return(1);
    }
    
    /* Modifed the pool owner ID.  */
    my_packet1 -> nx_packet_pool_owner = &pool_0;
    my_packet1 -> nx_packet_pool_owner -> nx_packet_pool_id = 0;

    /* Try to release this packet.  */
    status = nx_packet_release(my_packet1);

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

        printf("ERROR!\n");
        test_control_return(1);
    }

    /* Recover the pool ID.  */
    my_packet1 -> nx_packet_pool_owner -> nx_packet_pool_id = NX_PACKET_POOL_ID;

    /* Try to release this packet.  */
    status = nx_packet_release(my_packet1);

    /* Check for error.  */
    if (status)
    {

        printf("ERROR!\n");
        test_control_return(1);
    }
#endif

    printf("SUCCESS!\n");
    test_control_return(0);
}