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
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
|
/***************************************************************************/
/* 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 "nx_packet.h"
#include "tx_api.h"
#include "nx_api.h"
#include "tx_thread.h"
extern void test_control_return(UINT status);
#if !defined(NX_DISABLE_ERROR_CHECKING) && !defined(NX_PACKET_HEADER_PAD)
#define DEMO_STACK_SIZE 2048
#ifndef NX_PACKET_ALIGNMENT
#define NX_PACKET_ALIGNMENT 4
#endif /* NX_PACKET_ALIGNMENT */
#define TEST_SIZE (((NX_UDP_PACKET+28)+NX_PACKET_ALIGNMENT - 1)/NX_PACKET_ALIGNMENT*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 invalid_pool;
/* Define the counters used in the test application... */
static ULONG error_counter;
static CHAR *pointer;
/* Define thread prototypes. */
static void ntest_0_entry(ULONG thread_input);
/* Define what the initial system looks like. */
#ifdef CTEST
VOID test_application_define(void *first_unused_memory)
#else
void netx_packet_nxe_api_test_application_define(void *first_unused_memory)
#endif
{
UINT status;
ULONG header_size = (sizeof(NX_PACKET) + NX_PACKET_ALIGNMENT - 1)/NX_PACKET_ALIGNMENT*NX_PACKET_ALIGNMENT;
/* Setup the working pointer. */
pointer = (CHAR *) first_unused_memory;
error_counter = 0;
/* 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 packet pool with valid parameters in NULL thread. */
status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", TEST_SIZE, pointer,(TEST_SIZE + header_size) * 3);
/* Check for error. */
if (status)
{
error_counter++;
}
/* Create packet pool with corruptted memory. */
status = nx_packet_pool_create(&pool_1, "NetX Main Packet Pool", TEST_SIZE, pointer - 1,(TEST_SIZE + header_size) * 3);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
error_counter++;
}
/* Create packet pool with corruptted memory. */
status = nx_packet_pool_create(&pool_1, "NetX Main Packet Pool", TEST_SIZE, pointer + 1,(TEST_SIZE + header_size) * 3);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
error_counter++;
}
/* Create the same packet pool with valid parameters in NULL thread. */
status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", TEST_SIZE, pointer,(TEST_SIZE + header_size) * 3);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
error_counter++;
}
/* Update the pointer. */
pointer = pointer + (TEST_SIZE + header_size) * 3;
if (NX_PACKET_ALIGNMENT != sizeof(ULONG))
{
/* Print out test information banner. */
printf("NetX Test: Packet NXE API Test.......................................N/A\n");
test_control_return(3);
}
}
/* Define the test threads. */
static void ntest_0_entry(ULONG thread_input)
{
UINT status;
ULONG total_packets, free_packets, empty_pool_requests, empty_pool_suspensions, invalid_packet_releases;
ULONG packet_length;
ULONG buffer[200];
ULONG bytes_copied;
NX_PACKET *my_packet_1;
NX_PACKET *my_packet_2;
NX_PACKET invalid_packet;
NX_PACKET *invalid_packet_2;
ULONG header_size = (sizeof(NX_PACKET) + NX_PACKET_ALIGNMENT - 1)/NX_PACKET_ALIGNMENT*NX_PACKET_ALIGNMENT;
/* Print out test information banner. */
printf("NetX Test: Packet NXE API Test.......................................");
/* Check for earlier error. */
if (error_counter)
{
printf("ERROR!\n");
test_control_return(1);
}
/************************************************/
/* Tested the nxe_packet_pool_create api */
/************************************************/
#ifndef NX_DISABLE_ERROR_CHECKING
/* Create packet pool with invalid pool size. */
status = _nxe_packet_pool_create(&pool_0, "NetX Main Packet Pool", TEST_SIZE, pointer, (TEST_SIZE + header_size) * 3, 0);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
#endif /* NX_DISABLE_ERROR_CHECKING */
/* Create packet pool with null pool. */
status = nx_packet_pool_create(NX_NULL, "NetX Main Packet Pool", TEST_SIZE, pointer, (TEST_SIZE + header_size) * 3);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Create packet pool with null pointer. */
status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", TEST_SIZE, NX_NULL, (TEST_SIZE + header_size) * 3);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Create packet pool with invalid payload size. */
status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", 0, pointer, (TEST_SIZE + header_size) * 3);
/* Check for error. */
if (status != NX_SIZE_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Create packet pool with invalid pool size. */
status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", TEST_SIZE, pointer, 0);
/* Check for error. */
if (status != NX_SIZE_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Create the same packet pool with valid parameters. */
status = nx_packet_pool_create(&pool_0, "NetX Main Packet Pool", TEST_SIZE, pointer,(TEST_SIZE + header_size) * 3);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/************************************************/
/* Tested the nxe_packet_pool_delete api */
/************************************************/
/* Delete packet pool with null pool. */
status = nx_packet_pool_delete(NX_NULL);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Delete packet pool with invalid pool. */
status = nx_packet_pool_delete(&invalid_pool);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/************************************************/
/* Tested the nxe_packet_pool_info_get api */
/************************************************/
/* Get the packet pool info with null pool. */
status = nx_packet_pool_info_get(NX_NULL, &total_packets, &free_packets, &empty_pool_requests, &empty_pool_suspensions, &invalid_packet_releases);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Get the packet pool info with invalid pool. */
status = nx_packet_pool_info_get(&invalid_pool, &total_packets, &free_packets, &empty_pool_requests, &empty_pool_suspensions, &invalid_packet_releases);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
#ifdef NX_ENABLE_LOW_WATERMARK
/************************************************/
/* Tested the nxe_packet_pool_low_watermark api */
/************************************************/
/* Delete packet pool with null pool. */
status = nx_packet_pool_low_watermark_set(NX_NULL, 5);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Delete packet pool with invalid pool. */
status = nx_packet_pool_low_watermark_set(&invalid_pool, 5);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
#endif /* NX_ENABLE_LOW_WATERMARK */
/************************************************/
/* Tested the nxe_packet_allocate api */
/************************************************/
/* Allocate packet with null pool. */
status = nx_packet_allocate(NX_NULL, &my_packet_1, NX_UDP_PACKET, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Allocate packet with invalid pool. */
status = nx_packet_allocate(&invalid_pool, &my_packet_1, NX_UDP_PACKET, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Allocate packet with null packet. */
status = nx_packet_allocate(&pool_0, NX_NULL, NX_UDP_PACKET, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Allocate packet with Four byte unaligned packet type. */
status = nx_packet_allocate(&pool_0, &my_packet_1, 5, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status != NX_OPTION_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Allocate packet with big packet type. */
status = nx_packet_allocate(&pool_0, &my_packet_1, TEST_SIZE + 4, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status != NX_INVALID_PARAMETERS)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Allocate packet with valid parameter. */
status = nx_packet_allocate(&pool_0, &my_packet_1, NX_UDP_PACKET, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status)
{
printf("ERROR!\n");
test_control_return(1);
}
/************************************************/
/* Tested the nxe_packet_data_append api */
/************************************************/
/* Append the packet data with null packet. */
status = nx_packet_data_append(NX_NULL, "ABCDEFGHIJKLMNOPQRSTUVWXYZ ", 28, &pool_0, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Append the packet data with null data. */
status = nx_packet_data_append(my_packet_1, NX_NULL, 28, &pool_0, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Append the packet data with null data size. */
status = nx_packet_data_append(my_packet_1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ ", 0, &pool_0, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status != NX_SIZE_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Append the packet data with null pool. */
status = nx_packet_data_append(my_packet_1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ ", 28, NX_NULL, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Append the packet data with invalid pool. */
status = nx_packet_data_append(my_packet_1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ ", 28, &invalid_pool, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Append the packet with invalid packet that prepend pointer is less than data start. */
invalid_packet.nx_packet_data_start = (UCHAR *)0x20;
invalid_packet.nx_packet_prepend_ptr = (UCHAR *)0x10;
invalid_packet.nx_packet_append_ptr = (UCHAR *)0x30;
invalid_packet.nx_packet_data_end = (UCHAR *)0x40;
status = nx_packet_data_append(&invalid_packet, "ABCDEFGHIJKLMNOPQRSTUVWXYZ ", 28, &pool_0, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status != NX_UNDERFLOW)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Append packet with invalid packet that prepend pointer is less than data start. */
invalid_packet.nx_packet_data_start = (UCHAR *)0x10;
invalid_packet.nx_packet_prepend_ptr = (UCHAR *)0x20;
invalid_packet.nx_packet_append_ptr = (UCHAR *)0x40;
invalid_packet.nx_packet_data_end = (UCHAR *)0x20;
status = nx_packet_data_append(&invalid_packet, "ABCDEFGHIJKLMNOPQRSTUVWXYZ ", 28, &pool_0, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status != NX_OVERFLOW)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Append the packet data with valid parameters. */
status = nx_packet_data_append(my_packet_1, "ABCDEFGHIJKLMNOPQRSTUVWXYZ ", 28, &pool_0, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status)
{
printf("ERROR!\n");
test_control_return(1);
}
/************************************************/
/* Tested the nxe_packet_copy api */
/************************************************/
/* Copy packet with null original packet. */
status = nx_packet_copy(NX_NULL, &my_packet_2, &pool_0, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Copy packet with null new packet. */
status = nx_packet_copy(my_packet_1, NX_NULL, &pool_0, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Copy packet with null pool. */
status = nx_packet_copy(my_packet_1, &my_packet_2, NX_NULL, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Copy packet with invalid pool. */
status = nx_packet_copy(my_packet_1, &my_packet_2, &invalid_pool, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Copy packet with invalid original packet that prepend pointer is less than data start. */
invalid_packet.nx_packet_data_start = (UCHAR *)0x20;
invalid_packet.nx_packet_prepend_ptr = (UCHAR *)0x10;
invalid_packet.nx_packet_append_ptr = (UCHAR *)0x30;
invalid_packet.nx_packet_data_end = (UCHAR *)0x40;
status = nx_packet_copy(&invalid_packet, &my_packet_2, &pool_0, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status != NX_UNDERFLOW)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Copy packet with invalid original packet that prepend pointer is less than data start. */
invalid_packet.nx_packet_data_start = (UCHAR *)0x10;
invalid_packet.nx_packet_prepend_ptr = (UCHAR *)0x20;
invalid_packet.nx_packet_append_ptr = (UCHAR *)0x40;
invalid_packet.nx_packet_data_end = (UCHAR *)0x20;
status = nx_packet_copy(&invalid_packet, &my_packet_2, &pool_0, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status != NX_OVERFLOW)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Copy packet with valid parameters. */
status = nx_packet_copy(my_packet_1, &my_packet_2, &pool_0, NX_IP_PERIODIC_RATE);
/* Check for error. */
if (status)
{
printf("ERROR!\n");
test_control_return(1);
}
/************************************************/
/* Tested the nxe_packet_length_get api */
/************************************************/
/* Get packet length with null packet. */
status = nx_packet_length_get(NX_NULL, &packet_length);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Get packet length with null length pointer. */
status = nx_packet_length_get(my_packet_1, NX_NULL);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Get packet length with invalid packet pool owner. */
invalid_packet_2 = (NX_PACKET *) &invalid_packet;
invalid_packet_2 -> nx_packet_pool_owner = NX_NULL;
status = nx_packet_length_get(invalid_packet_2, NX_NULL);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Get packet length with invalid packet pool ID. */
invalid_packet_2 = (NX_PACKET *) &invalid_packet;
invalid_packet_2 -> nx_packet_pool_owner = (NX_PACKET_POOL *) &invalid_pool;
invalid_packet_2 -> nx_packet_pool_owner -> nx_packet_pool_id = 0;
status = nx_packet_length_get(invalid_packet_2, NX_NULL);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Get packet length with valid parameters. */
status = nx_packet_length_get(my_packet_1, &packet_length);
/* Check for error. */
if (status)
{
printf("ERROR!\n");
test_control_return(1);
}
/************************************************/
/* Tested the nxe_packet_data_extract_offset api*/
/************************************************/
/* Extract the packet data with null packet. */
status = nx_packet_data_extract_offset(NX_NULL, 0, buffer, 200, &bytes_copied);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Extract the packet data with invalid buffer. */
status = nx_packet_data_extract_offset(my_packet_1, 0, NX_NULL, 200, &bytes_copied);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Extract the packet data with null bytes copied parameter. */
status = nx_packet_data_extract_offset(my_packet_1, 0, buffer, 200, NX_NULL);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Extract the packet data with valid parameter. */
status = nx_packet_data_extract_offset(my_packet_1, 0, buffer, 200, &bytes_copied);
/* Check for error. */
if (status)
{
printf("ERROR!\n");
test_control_return(1);
}
/************************************************/
/* Tested the nxe_packet_data_retrieve api */
/************************************************/
/* Retrieve the packet data with null packet. */
status = nx_packet_data_retrieve(NX_NULL, buffer, &bytes_copied);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Extract the packet data with invalid buffer. */
status = nx_packet_data_retrieve(my_packet_1, NX_NULL, &bytes_copied);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Extract the packet data with valid parameter. */
status = nx_packet_data_retrieve(my_packet_1, buffer, NX_NULL);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Extract the packet data with valid parameter. */
status = nx_packet_data_retrieve(my_packet_1, buffer, &bytes_copied);
/* Check for error. */
if (status)
{
printf("ERROR!\n");
test_control_return(1);
}
/************************************************/
/* Tested the nxe_packet_release api */
/************************************************/
/* Release the packet with invalid packet. */
invalid_packet_2 = NX_NULL;
status = nx_packet_release(invalid_packet_2);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Release the packet with invalid original packet that prepend pointer is less than data start. */
invalid_packet_2 = (NX_PACKET *) &invalid_packet;
invalid_packet_2 -> nx_packet_pool_owner = (NX_PACKET_POOL *) &invalid_pool;
invalid_packet_2 -> nx_packet_pool_owner -> nx_packet_pool_id = NX_PACKET_POOL_ID;
invalid_packet_2 -> nx_packet_data_start = (UCHAR *)0x20;
invalid_packet_2 -> nx_packet_prepend_ptr = (UCHAR *)0x10;
invalid_packet_2 -> nx_packet_append_ptr = (UCHAR *)0x30;
invalid_packet_2 -> nx_packet_data_end = (UCHAR *)0x40;
status = nx_packet_release(invalid_packet_2);
/* Check for error. */
if (status != NX_UNDERFLOW)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Release the packet with invalid original packet that prepend pointer is less than data start. */
invalid_packet_2 = (NX_PACKET *) &invalid_packet;
invalid_packet_2 -> nx_packet_pool_owner = (NX_PACKET_POOL *) &invalid_pool;
invalid_packet_2 -> nx_packet_pool_owner -> nx_packet_pool_id = NX_PACKET_POOL_ID;
invalid_packet_2 -> nx_packet_data_start = (UCHAR *)0x10;
invalid_packet_2 -> nx_packet_prepend_ptr = (UCHAR *)0x20;
invalid_packet_2 -> nx_packet_append_ptr = (UCHAR *)0x40;
invalid_packet_2 -> nx_packet_data_end = (UCHAR *)0x20;
status = nx_packet_release(invalid_packet_2);
/* Check for error. */
if (status != NX_OVERFLOW)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Release the packet data with valid packet. */
status = nx_packet_release(my_packet_1);
/* Check for error. */
if (status)
{
printf("ERROR!\n");
test_control_return(1);
}
/************************************************/
/* Tested the nxe_packet_transmit_release api */
/************************************************/
/* Release the packet with invalid packet. */
invalid_packet_2 = NX_NULL;
status = nx_packet_transmit_release(invalid_packet_2);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Release the packet with no packet pool owner. */
invalid_packet_2 = (NX_PACKET *) &invalid_packet;
invalid_packet_2 -> nx_packet_pool_owner = NX_NULL;
status = nx_packet_transmit_release(invalid_packet_2);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Release the packet with invalid packet owner. */
invalid_packet_2 = (NX_PACKET *) &invalid_packet;
invalid_packet_2 -> nx_packet_pool_owner = (NX_PACKET_POOL *) &invalid_pool;
invalid_packet_2 -> nx_packet_pool_owner -> nx_packet_pool_id = 0;
status = nx_packet_transmit_release(invalid_packet_2);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Release the packet with invalid packet nx_packet_tcp_queue_next. */
invalid_packet_2 = (NX_PACKET *) &invalid_packet;
invalid_packet_2 -> nx_packet_append_ptr = invalid_packet_2 -> nx_packet_data_end;
invalid_packet_2 -> nx_packet_pool_owner = (NX_PACKET_POOL *) &pool_0;
#ifdef __PRODUCT_NETXDUO__
invalid_packet_2 -> nx_packet_union_next.nx_packet_tcp_queue_next = ((NX_PACKET *)NX_PACKET_FREE);
#else
invalid_packet_2 -> nx_packet_tcp_queue_next = ((NX_PACKET *)NX_PACKET_FREE);
#endif
status = nx_packet_transmit_release(invalid_packet_2);
/* Check for error. */
if (status != NX_PTR_ERROR)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Release the packet with invalid original packet that prepend pointer is less than data start. */
invalid_packet_2 = (NX_PACKET *) &invalid_packet;
invalid_packet_2 -> nx_packet_pool_owner = (NX_PACKET_POOL *) &invalid_pool;
invalid_packet_2 -> nx_packet_pool_owner -> nx_packet_pool_id = NX_PACKET_POOL_ID;
invalid_packet_2 -> nx_packet_data_start = (UCHAR *)0x20;
invalid_packet_2 -> nx_packet_prepend_ptr = (UCHAR *)0x10;
invalid_packet_2 -> nx_packet_append_ptr = (UCHAR *)0x30;
invalid_packet_2 -> nx_packet_data_end = (UCHAR *)0x40;
status = nx_packet_transmit_release(invalid_packet_2);
/* Check for error. */
if (status != NX_UNDERFLOW)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Release the packet with invalid original packet that prepend pointer is less than data start. */
invalid_packet_2 = (NX_PACKET *) &invalid_packet;
invalid_packet_2 -> nx_packet_pool_owner = (NX_PACKET_POOL *) &invalid_pool;
invalid_packet_2 -> nx_packet_pool_owner -> nx_packet_pool_id = NX_PACKET_POOL_ID;
invalid_packet_2 -> nx_packet_data_start = (UCHAR *)0x10;
invalid_packet_2 -> nx_packet_prepend_ptr = (UCHAR *)0x20;
invalid_packet_2 -> nx_packet_append_ptr = (UCHAR *)0x40;
invalid_packet_2 -> nx_packet_data_end = (UCHAR *)0x20;
status = nx_packet_transmit_release(invalid_packet_2);
/* Check for error. */
if (status != NX_OVERFLOW)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Release the packet data with valid packet. */
status = nx_packet_transmit_release(my_packet_2);
/* Check for error. */
if (status)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Delete packet pool with valid pool. */
status = nx_packet_pool_delete(&pool_0);
/* Check for error. */
if (status)
{
printf("ERROR!\n");
test_control_return(1);
}
printf("SUCCESS!\n");
test_control_return(0);
}
#else
#ifdef CTEST
VOID test_application_define(void *first_unused_memory)
#else
void netx_packet_nxe_api_test_application_define(void *first_unused_memory)
#endif
{
/* Print out test information banner. */
printf("NetX Test: Packet NXE API Test.......................................N/A\n");
test_control_return(3);
}
#endif
|