Select one of the symbols to view example projects that use it.
 
Outline
...
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_ip.h"
#include "nx_packet.h"
#include "nx_ipv6.h"
#include "nx_icmpv6.h"
...
_nx_ip_fragment_assembly(NX_IP *)
Files
loading...
SourceVuSTM32 Libraries and Samplesnetxduocommon/src/nx_ip_fragment_assembly.c
 
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/**************************************************************************/ /* */ /* Copyright (c) Microsoft Corporation. All rights reserved. */ /* */ /* This software is licensed under the Microsoft Software License */ /* Terms for Microsoft Azure RTOS. Full text of the license can be */ /* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ /* and in the root directory of this software. */ /* */... /**************************************************************************/ ... /**************************************************************************/ /**************************************************************************/ /** */ /** NetX Component */ /** */ /** Internet Protocol (IP) */ /** */... /**************************************************************************/ /**************************************************************************/ #define NX_SOURCE_CODE /* Include necessary system files. */ #include "nx_api.h" #include "nx_ip.h" #include "nx_packet.h" #include "nx_ipv6.h" #include "nx_icmpv6.h" 5 includes #ifndef NX_DISABLE_FRAGMENTATION... /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _nx_ip_fragment_assembly PORTABLE C */ /* 6.1 */ /* AUTHOR */ /* */ /* Yuxin Zhou, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function processes the received fragment queue and attempts to */ /* reassemble fragmented IP datagrams. Once a datagram is reassembled */ /* it is dispatched to the appropriate component. */ /* */ /* INPUT */ /* */ /* ip_ptr Pointer to IP instance */ /* */ /* OUTPUT */ /* */ /* None */ /* */ /* CALLS */ /* */ /* _nx_packet_release Release packet */ /* _nx_ip_dispatch_process The routine that examines */ /* other optional headers and */ /* upper layer protocols. */ /* */ /* CALLED BY */ /* */ /* Application */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 Yuxin Zhou Initial Version 6.0 */ /* 09-30-2020 Yuxin Zhou Modified comment(s), */ /* removed duplicated code, */ /* resulting in version 6.1 */ /* */... /**************************************************************************/ VOID _nx_ip_fragment_assembly(NX_IP *ip_ptr) { TX_INTERRUPT_SAVE_AREA NX_PACKET *new_fragment_head; NX_PACKET *current_fragment; NX_PACKET *previous_fragment = NX_NULL; NX_PACKET *fragment_head; NX_PACKET *search_ptr; NX_PACKET *previous_ptr; NX_PACKET *found_ptr; NX_PACKET *old_ptr; #ifndef NX_DISABLE_IPV4 NX_IPV4_HEADER *search_header = NX_NULL; NX_IPV4_HEADER *current_header = NX_NULL; ULONG current_ttl = 0;/* ... */ #endif /* NX_DISABLE_IPV4 */ ULONG current_id = 0; ULONG current_offset = 0; ULONG protocol = NX_PROTOCOL_NO_NEXT_HEADER; ULONG incomplete; ULONG ip_version = NX_IP_VERSION_V4; UCHAR copy_packet; #ifdef FEATURE_NX_IPV6 NX_IPV6_HEADER_FRAGMENT_OPTION *search_v6_fragment_option = NX_NULL; NX_IPV6_HEADER_FRAGMENT_OPTION *current_v6_fragment_option = NX_NULL; NX_IPV6_HEADER *current_pkt_ip_header = NX_NULL;/* ... */ #endif /* FEATURE_NX_IPV6 */ #ifdef NX_NAT_ENABLE UINT packet_consumed; #endif /* Disable interrupts. */ TX_DISABLE /* Remove the packets from the incoming IP fragment queue. */ new_fragment_head = ip_ptr -> nx_ip_received_fragment_head; ip_ptr -> nx_ip_received_fragment_head = NX_NULL; ip_ptr -> nx_ip_received_fragment_tail = NX_NULL; /* Restore interrupts. */ TX_RESTORE /* Process each IP packet in the received IP fragment queue. */ while (new_fragment_head) { /* Setup the copy packet flag. */ copy_packet = NX_FALSE; /* pick up the version number of this packet. */ ip_version = new_fragment_head -> nx_packet_ip_version; /* Setup the current fragment pointer. */ current_fragment = new_fragment_head; /* Move the head pointer. */ new_fragment_head = new_fragment_head -> nx_packet_queue_next; #ifndef NX_DISABLE_IPV4 if (ip_version == NX_IP_VERSION_V4) { /* Setup header pointer for this packet. */ /*lint -e{927} -e{826} suppress cast of pointer to pointer, since it is necessary */ current_header = (NX_IPV4_HEADER *)current_fragment -> nx_packet_prepend_ptr; /* Pickup the ID of this fragment. */ current_id = (current_header -> nx_ip_header_word_1 >> NX_SHIFT_BY_16); /* Pickup the offset of the new IP fragment. */ current_offset = current_header -> nx_ip_header_word_1 & NX_IP_OFFSET_MASK; /* Pickup the time to live of this fragment. */ current_ttl = (current_header -> nx_ip_header_word_2 & NX_IP_TIME_TO_LIVE_MASK) >> NX_IP_TIME_TO_LIVE_SHIFT; /* Set the IPv4 reassembly time. RFC791, Section3.2, Page27. */ current_fragment -> nx_packet_reassembly_time = NX_IPV4_MAX_REASSEMBLY_TIME; if (current_fragment -> nx_packet_reassembly_time < current_ttl) { current_fragment -> nx_packet_reassembly_time = current_ttl; }if (current_fragment -> nx_packet_reassembly_time < current_ttl) { ... } }if (ip_version == NX_IP_VERSION_V4) { ... } /* ... */#endif /* NX_DISABLE_IPV4 */ #ifdef FEATURE_NX_IPV6 if (ip_version == NX_IP_VERSION_V6) { /*lint -e{927} -e{826} suppress cast of pointer to pointer, since it is necessary */ current_pkt_ip_header = (NX_IPV6_HEADER *)current_fragment -> nx_packet_ip_header; /*lint -e{927} -e{826} suppress cast of pointer to pointer, since it is necessary */ current_v6_fragment_option = (NX_IPV6_HEADER_FRAGMENT_OPTION *)current_fragment -> nx_packet_prepend_ptr; /* Pickup the ID of this fragment. Note that the fragment ID is still in network byte order. The ID is only used as a way to make comparisons. We don't need to byte swap this field. *//* ... */ current_id = current_v6_fragment_option -> nx_ipv6_header_fragment_option_packet_id; /* The offset field is left shifted by 3 bits. However when we search through all the fragments for the right location to insert this frame, we don't need get the accurate value of the offset because the relative order of these offsets are preserved. In other words, the lower 3 bits do not affect the outcome of a simple comparison. *//* ... */ current_offset = (current_v6_fragment_option -> nx_ipv6_header_fragment_option_offset_flag & 0xFFF8); /* Set the IPv6 reassembly time. RFC2460, Section4.5, Page22. */ current_fragment -> nx_packet_reassembly_time = NX_IPV6_MAX_REASSEMBLY_TIME; }if (ip_version == NX_IP_VERSION_V6) { ... } /* ... */#endif /* Set the found pointer to NULL. */ found_ptr = NX_NULL; /* Does the assembly list have anything in it? */ if (ip_ptr -> nx_ip_fragment_assembly_head) { /* Yes, we need to search the assembly queue to see if this fragment belongs to another fragment. *//* ... */ search_ptr = ip_ptr -> nx_ip_fragment_assembly_head; previous_fragment = NX_NULL; while (search_ptr) { /* Check this packet only if the version number matches. */ if (ip_version == search_ptr -> nx_packet_ip_version) { #ifndef NX_DISABLE_IPV4 if (ip_version == NX_IP_VERSION_V4) { /* Setup a pointer to the IP header of the packet in the assembly list. */ /*lint -e{927} -e{826} suppress cast of pointer to pointer, since it is necessary */ search_header = (NX_IPV4_HEADER *)search_ptr -> nx_packet_prepend_ptr; /* Determine if the IP header fields match. RFC 791 Section 3.2 recommends that packet fragments be compared for source IP, destination IP, protocol and IP header ID. *//* ... */ /*lint -e{644} suppress variable might not be initialized, since "current_head" was initialized. */ if ((current_id == (search_header -> nx_ip_header_word_1 >> NX_SHIFT_BY_16)) && ((search_header -> nx_ip_header_word_2 & NX_IP_PROTOCOL_MASK) == (current_header -> nx_ip_header_word_2 & NX_IP_PROTOCOL_MASK)) && (search_header -> nx_ip_header_source_ip == current_header -> nx_ip_header_source_ip) && (search_header -> nx_ip_header_destination_ip == current_header -> nx_ip_header_destination_ip)) { /* Yes, we found a match, just set the found_ptr and get out of this loop! *//* ... */ found_ptr = search_ptr; /* The reassmebly timer should be MAX(reassembly time, Time To Live). RFC791, Section3.2, Page27. */ if (search_ptr -> nx_packet_reassembly_time < current_ttl) { search_ptr -> nx_packet_reassembly_time = current_ttl; }if (search_ptr -> nx_packet_reassembly_time < current_ttl) { ... } /* Updated the reassembly time. */ current_fragment -> nx_packet_reassembly_time = search_ptr -> nx_packet_reassembly_time; break; }if ((current_id == (search_header -> nx_ip_header_word_1 >> NX_SHIFT_BY_16)) && ((search_header -> nx_ip_header_word_2 & NX_IP_PROTOCOL_MASK) == (current_header -> nx_ip_header_word_2 & NX_IP_PROTOCOL_MASK)) && (search_header -> nx_ip_header_source_ip == current_header -> nx_ip_header_source_ip) && (search_header -> nx_ip_header_destination_ip == current_header -> nx_ip_header_destination_ip)) { ... } }if (ip_version == NX_IP_VERSION_V4) { ... } /* ... */#endif /* NX_DISABLE_IPV4 */ #ifdef FEATURE_NX_IPV6 if (ip_version == NX_IP_VERSION_V6) { NX_IPV6_HEADER *search_pkt_ip_header; /* Set up a pointer to the IPv6 fragment option field.*/ /*lint -e{927} -e{826} suppress cast of pointer to pointer, since it is necessary */ search_v6_fragment_option = (NX_IPV6_HEADER_FRAGMENT_OPTION *)search_ptr -> nx_packet_prepend_ptr; /*lint -e{927} -e{826} suppress cast of pointer to pointer, since it is necessary */ search_pkt_ip_header = (NX_IPV6_HEADER *)search_ptr -> nx_packet_ip_header; /* Determine if the IP packet IDs match. */ /*lint -e{613} suppress possible use of null pointer, since "current_pkt_ip_header" was set to none NULL above. */ if ((current_id == search_v6_fragment_option -> nx_ipv6_header_fragment_option_packet_id) && (CHECK_IPV6_ADDRESSES_SAME(search_pkt_ip_header -> nx_ip_header_source_ip, current_pkt_ip_header -> nx_ip_header_source_ip)) && (CHECK_IPV6_ADDRESSES_SAME(search_pkt_ip_header -> nx_ip_header_destination_ip, current_pkt_ip_header -> nx_ip_header_destination_ip))) { /* Yes, we found a match, just set the found_ptr and get out of this loop! *//* ... */ found_ptr = search_ptr; current_fragment -> nx_packet_reassembly_time = search_ptr -> nx_packet_reassembly_time; break; }if ((current_id == search_v6_fragment_option -> nx_ipv6_header_fragment_option_packet_id) && (CHECK_IPV6_ADDRESSES_SAME(search_pkt_ip_header -> nx_ip_header_source_ip, current_pkt_ip_header -> nx_ip_header_source_ip)) && (CHECK_IPV6_ADDRESSES_SAME(search_pkt_ip_header -> nx_ip_header_destination_ip, current_pkt_ip_header -> nx_ip_header_destination_ip))) { ... } }if (ip_version == NX_IP_VERSION_V6) { ... } /* ... */#endif /* FEATURE_NX_IPV6 */ }if (ip_version == search_ptr -> nx_packet_ip_version) { ... } /* Remember the previous pointer. */ previous_fragment = search_ptr; /* Move to the next IP fragment in the re-assembly queue. */ search_ptr = search_ptr -> nx_packet_queue_next; }while (search_ptr) { ... } }if (ip_ptr -> nx_ip_fragment_assembly_head) { ... } /* Was another IP packet fragment found? */ if (found_ptr) { /* Save the fragment head pointer. */ fragment_head = found_ptr; /* Another packet fragment was found... find the proper place in the list for this packet and check for complete re-assembly. *//* ... */ /* Setup the previous pointer. Note that the search pointer still points to the first fragment in the list. *//* ... */ previous_ptr = NX_NULL; search_ptr = found_ptr; /* Loop to walk through the fragment list. */ do { #ifndef NX_DISABLE_IPV4 if (ip_version == NX_IP_VERSION_V4) { /* Pickup a pointer to the IP header of the fragment. */ /*lint -e{927} -e{826} suppress cast of pointer to pointer, since it is necessary */ search_header = (NX_IPV4_HEADER *)search_ptr -> nx_packet_prepend_ptr; /* Determine if the incoming IP fragment goes before this packet. */ if (current_offset <= (search_header -> nx_ip_header_word_1 & NX_IP_OFFSET_MASK)) { /* Determine if the incoming IP fragment is the copy packet. Link the new packet before old packet. */ if (current_offset == (search_header -> nx_ip_header_word_1 & NX_IP_OFFSET_MASK)) { copy_packet = NX_TRUE; }if (current_offset == (search_header -> nx_ip_header_word_1 & NX_IP_OFFSET_MASK)) { ... } /* Yes, break out of the loop and insert the current packet. */ break; }if (current_offset <= (search_header -> nx_ip_header_word_1 & NX_IP_OFFSET_MASK)) { ... } }if (ip_version == NX_IP_VERSION_V4) { ... } /* ... */#endif /* NX_DISABLE_IPV4 */ #ifdef FEATURE_NX_IPV6 if (ip_version == NX_IP_VERSION_V6) { /* Build the IP header pointer. */ /*lint -e{927} -e{826} suppress cast of pointer to pointer, since it is necessary */ search_v6_fragment_option = (NX_IPV6_HEADER_FRAGMENT_OPTION *)search_ptr -> nx_packet_prepend_ptr; /* Determine if the incoming IP fragment goes before this packet. */ if (current_offset <= (ULONG)(search_v6_fragment_option -> nx_ipv6_header_fragment_option_offset_flag & 0xFFF8)) { /* Determine if the incoming IP fragment is copy packet. Link the new packet before old packet. */ if (current_offset == (ULONG)(search_v6_fragment_option -> nx_ipv6_header_fragment_option_offset_flag & 0xFFF8)) { copy_packet = NX_TRUE; }if (current_offset == (ULONG)(search_v6_fragment_option -> nx_ipv6_header_fragment_option_offset_flag & 0xFFF8)) { ... } /* Yes, break out of the loop and insert the current packet. */ break; }if (current_offset <= (ULONG)(search_v6_fragment_option -> nx_ipv6_header_fragment_option_offset_flag & 0xFFF8)) { ... } }if (ip_version == NX_IP_VERSION_V6) { ... } /* ... */#endif /* FEATURE_NX_IPV6 */ /* Otherwise, move the search and previous pointers to the next fragment in the chain. *//* ... */ previous_ptr = search_ptr; search_ptr = search_ptr -> nx_packet_union_next.nx_packet_fragment_next; ...} while (search_ptr); /* At this point, the previous pointer determines where to place the new fragment. */ if (previous_ptr) { /* Add new fragment after the previous ptr. */ current_fragment -> nx_packet_union_next.nx_packet_fragment_next = previous_ptr -> nx_packet_union_next.nx_packet_fragment_next; previous_ptr -> nx_packet_union_next.nx_packet_fragment_next = current_fragment; }if (previous_ptr) { ... } else { /* This packet needs to be inserted at the front of the fragment chain. */ current_fragment -> nx_packet_queue_next = fragment_head -> nx_packet_queue_next; current_fragment -> nx_packet_union_next.nx_packet_fragment_next = fragment_head; if (previous_fragment) { /* We need to link up a different IP packet fragment chain that is in front of this one on the re-assembly queue. *//* ... */ previous_fragment -> nx_packet_queue_next = current_fragment; }if (previous_fragment) { ... } else { /* Nothing prior to this IP fragment chain, we need to just change the list header. *//* ... */ ip_ptr -> nx_ip_fragment_assembly_head = current_fragment; /* Clear the timeout fragment pointer. */ ip_ptr -> nx_ip_timeout_fragment = NX_NULL; }else { ... } /* Determine if we need to adjust the tail pointer. */ if (fragment_head == ip_ptr -> nx_ip_fragment_assembly_tail) { /* Setup the new tail pointer. */ ip_ptr -> nx_ip_fragment_assembly_tail = current_fragment; }if (fragment_head == ip_ptr -> nx_ip_fragment_assembly_tail) { ... } /* Setup the new fragment head. */ fragment_head = current_fragment; }else { ... } /* Determine if the incoming IP fragment is the same packet. */ if (copy_packet == NX_TRUE) { /* Fragments contain the same data, use the more recently arrived copy. RFC791, Section3.2, Page29. */ /* Removed the old packet from the packet list, the old packet must be linked after new packet. */ old_ptr = current_fragment -> nx_packet_union_next.nx_packet_fragment_next; current_fragment -> nx_packet_union_next.nx_packet_fragment_next = old_ptr -> nx_packet_union_next.nx_packet_fragment_next; /* Reset tcp_queue_next before releasing. */ /* Cast the ULONG into a packet pointer. Since this is exactly what we wish to do, disable the lint warning with the following comment: */ /*lint -e{923} suppress cast of ULONG to pointer. */ old_ptr -> nx_packet_union_next.nx_packet_tcp_queue_next = (NX_PACKET *)NX_PACKET_ALLOCATED; /* Release the old packet. */ _nx_packet_release(old_ptr); }if (copy_packet == NX_TRUE) { ... } /* At this point, the new IP fragment is in its proper place on the re-assembly list. We now need to walk the list and determine if all the fragments are present. *//* ... */ /* Setup the search pointer to the fragment head. */ search_ptr = fragment_head; /* Set the current expected offset to 0. */ current_offset = 0; /* Loop through the packet chain to see if all the fragments have arrived. *//* ... */ incomplete = 0; do { #ifndef NX_DISABLE_IPV4 if (ip_version == NX_IP_VERSION_V4) { /* Build the IP header pointer. */ /*lint -e{927} -e{826} suppress cast of pointer to pointer, since it is necessary */ search_header = (NX_IPV4_HEADER *)search_ptr -> nx_packet_prepend_ptr; /* Check for the expected current offset. */ if (current_offset != (search_header -> nx_ip_header_word_1 & NX_IP_OFFSET_MASK)) { incomplete = 1; /* There are still more fragments necessary to reassemble this packet so just return. *//* ... */ break; }if (current_offset != (search_header -> nx_ip_header_word_1 & NX_IP_OFFSET_MASK)) { ... } /* Calculate the next expected offset. */ current_offset = current_offset + ((search_header -> nx_ip_header_word_0 & NX_LOWER_16_MASK) - (ULONG)sizeof(NX_IPV4_HEADER)) / NX_IP_ALIGN_FRAGS; }if (ip_version == NX_IP_VERSION_V4) { ... } /* ... */#endif /* NX_DISABLE_IPV4 */ #ifdef FEATURE_NX_IPV6 if (ip_version == NX_IP_VERSION_V6) { /* Build the IP header pointer. */ /*lint -e{927} -e{826} suppress cast of pointer to pointer, since it is necessary */ search_v6_fragment_option = (NX_IPV6_HEADER_FRAGMENT_OPTION *)search_ptr -> nx_packet_prepend_ptr; /* Check for the expected current offset. */ if (current_offset != (ULONG)(search_v6_fragment_option -> nx_ipv6_header_fragment_option_offset_flag & 0xFFF8)) { incomplete = 1; /* There are still more fragments necessary to reassemble this packet so just return. *//* ... */ break; }if (current_offset != (ULONG)(search_v6_fragment_option -> nx_ipv6_header_fragment_option_offset_flag & 0xFFF8)) { ... } /* Calculate the next expected offset. */ current_offset = current_offset + (search_ptr -> nx_packet_length - (ULONG)sizeof(NX_IPV6_HEADER_FRAGMENT_OPTION)); }if (ip_version == NX_IP_VERSION_V6) { ... } /* ... */#endif /* FEATURE_NX_IPV6 */ /* Move the search pointer forward to the next fragment. */ search_ptr = search_ptr -> nx_packet_union_next.nx_packet_fragment_next; ...} while (search_ptr); if (incomplete) { continue; }if (incomplete) { ... } /* At this point the search header points to the last fragment in the chain. In order for the packet to be complete, the "more fragments" bit in its IP header must be clear. *//* ... */ /*lint -e{613} suppress possible use of null pointer, since "search_header" and "search_v6_fragment_option" were set to none NULL in the while loop above. */ if ( #ifndef NX_DISABLE_IPV4 ((ip_version == NX_IP_VERSION_V4) && (search_header -> nx_ip_header_word_1 & NX_IP_MORE_FRAGMENT)) #ifdef FEATURE_NX_IPV6 || #endif /* FEATURE_NX_IPV6 *//* ... */ #endif /* NX_DISABLE_IPV4 */ #ifdef FEATURE_NX_IPV6 ((ip_version == NX_IP_VERSION_V6) && (search_v6_fragment_option -> nx_ipv6_header_fragment_option_offset_flag & 1)) #endif /* FEATURE_NX_IPV6 */ ) { /* There are still more fragments necessary to re-assembly this packet so just return. *//* ... */ continue; }if (#ifndef NX_DISABLE_IPV4 ((ip_version == NX_IP_VERSION_V4) && (search_header -> nx_ip_header_word_1 & NX_IP_MORE_FRAGMENT)) #ifdef FEATURE_NX_IPV6 || #endif /* FEATURE_NX_IPV6 */ #endif /* NX_DISABLE_IPV4 */ #ifdef FEATURE_NX_IPV6 ((ip_version == NX_IP_VERSION_V6) && (search_v6_fragment_option -> nx_ipv6_header_fragment_option_offset_flag & 1)) #endif /* FEATURE_NX_IPV6 */) { ... } /* The packet can be reassembled under the fragment head pointer now. It must now be removed from the re-assembly list. *//* ... */ if (previous_fragment) { /* Remove the fragment from a position other than the head of the assembly list. */ previous_fragment -> nx_packet_queue_next = fragment_head -> nx_packet_queue_next; }if (previous_fragment) { ... } else { /* Modify the head of the re-assembly list. */ ip_ptr -> nx_ip_fragment_assembly_head = fragment_head -> nx_packet_queue_next; /* Clear the timeout fragment pointer since we are removing the first fragment (the oldest) on the assembly list. *//* ... */ ip_ptr -> nx_ip_timeout_fragment = NX_NULL; }else { ... } /* Determine if we need to adjust the tail pointer. */ if (fragment_head == ip_ptr -> nx_ip_fragment_assembly_tail) { /* Setup the new tail pointer. */ ip_ptr -> nx_ip_fragment_assembly_tail = previous_fragment; }if (fragment_head == ip_ptr -> nx_ip_fragment_assembly_tail) { ... } /* If we get here, the necessary fragments to reassemble the packet are indeed available. We now need to loop through the packet and reassemble it. *//* ... */ search_ptr = fragment_head -> nx_packet_union_next.nx_packet_fragment_next; previous_fragment = fragment_head; /* Loop through the fragments and assemble the IP fragment. */ while (search_ptr) { /* Reset tcp_queue_next before releasing. */ /*lint -e{923} suppress cast of ULONG to pointer. */ previous_fragment -> nx_packet_union_next.nx_packet_tcp_queue_next = (NX_PACKET *)NX_PACKET_ALLOCATED; #ifndef NX_DISABLE_IPV4 if (ip_version == NX_IP_VERSION_V4) { /* Accumulate the new length into the head packet. */ fragment_head -> nx_packet_length = fragment_head -> nx_packet_length + search_ptr -> nx_packet_length - (ULONG)sizeof(NX_IPV4_HEADER); /* Position past the IP header in the subsequent packets. */ search_ptr -> nx_packet_prepend_ptr = search_ptr -> nx_packet_prepend_ptr + sizeof(NX_IPV4_HEADER); }if (ip_version == NX_IP_VERSION_V4) { ... } /* ... */#endif /* NX_DISABLE_IPV4 */ #ifdef FEATURE_NX_IPV6 if (ip_version == NX_IP_VERSION_V6) { /* For IPv6, we move the prepend ptr to the next option .*/ search_ptr -> nx_packet_prepend_ptr += sizeof(NX_IPV6_HEADER_FRAGMENT_OPTION); search_ptr -> nx_packet_length -= (ULONG)sizeof(NX_IPV6_HEADER_FRAGMENT_OPTION); /* Accumulate the new length into the head packet. */ fragment_head -> nx_packet_length += search_ptr -> nx_packet_length; }if (ip_version == NX_IP_VERSION_V6) { ... } /* ... */ #endif /* FEATURE_NX_IPV6 */ /* Link the addition fragment to the head fragment. */ if (fragment_head -> nx_packet_last) { (fragment_head -> nx_packet_last) -> nx_packet_next = search_ptr; }if (fragment_head -> nx_packet_last) { ... } else { fragment_head -> nx_packet_next = search_ptr; }else { ... } if (search_ptr -> nx_packet_last) { fragment_head -> nx_packet_last = search_ptr -> nx_packet_last; }if (search_ptr -> nx_packet_last) { ... } else { fragment_head -> nx_packet_last = search_ptr; }else { ... } /* Set the previous fragment. */ previous_fragment = search_ptr; /* Move to the next fragment in the chain. */ search_ptr = search_ptr -> nx_packet_union_next.nx_packet_fragment_next; }while (search_ptr) { ... } /* Reset tcp_queue_next before releasing. */ /*lint -e{923} suppress cast of ULONG to pointer. */ previous_fragment -> nx_packet_union_next.nx_packet_tcp_queue_next = (NX_PACKET *)NX_PACKET_ALLOCATED; /* We are now ready to dispatch this packet just like the normal IP receive packet processing. *//* ... */ #ifndef NX_DISABLE_IP_INFO /* Increment the number of packets reassembled. */ ip_ptr -> nx_ip_packets_reassembled++; /* Increment the number of packets delivered. */ ip_ptr -> nx_ip_total_packets_delivered++; /* Increment the IP packet bytes received (not including the header). */ ip_ptr -> nx_ip_total_bytes_received += fragment_head -> nx_packet_length;/* ... */ #endif /* Build a pointer to the IP header. */ #ifndef NX_DISABLE_IPV4 if (ip_version == NX_IP_VERSION_V4) { /* The packet is now reassembled. */ /* Check if this IP interface has a NAT forwarding service. If so, let NAT get the packet first and if it is not a packet that should be forwarded by NAT, then let NetX process the packet in the normal way. *//* ... */ #ifdef NX_NAT_ENABLE /* Check if this IP interface has a NAT forwarding service. */ if (ip_ptr -> nx_ip_nat_packet_process) { /* Yes, so forward this packet to the NAT handler. If NAT does not 'consume' this packet, allow NetX to process the packet. *//* ... */ packet_consumed = (ip_ptr -> nx_ip_nat_packet_process)(ip_ptr, fragment_head, NX_TRUE); /* Check to see if the packet has been consumed by NAT. */ if (packet_consumed) { #ifndef NX_DISABLE_IP_INFO /* Increment the IP packets forwarded counter. */ ip_ptr -> nx_ip_packets_forwarded++;/* ... */ #endif /* NX_DISABLE_IP_INFO */ continue; }if (packet_consumed) { ... } /* (NetX will process all packets that drop through here.) */ }if (ip_ptr -> nx_ip_nat_packet_process) { ... } /* ... */#endif /*lint -e{927} -e{826} suppress cast of pointer to pointer, since it is necessary */ current_header = (NX_IPV4_HEADER *)fragment_head -> nx_packet_ip_header; /* Determine what protocol the current IP datagram is. */ protocol = (current_header -> nx_ip_header_word_2 >> 16) & 0xFF; /* Remove the IP header from the packet. */ fragment_head -> nx_packet_prepend_ptr = fragment_head -> nx_packet_prepend_ptr + sizeof(NX_IPV4_HEADER); /* Adjust the length. */ fragment_head -> nx_packet_length = fragment_head -> nx_packet_length - (ULONG)sizeof(NX_IPV4_HEADER); }if (ip_version == NX_IP_VERSION_V4) { ... } /* ... */#endif /* NX_DISABLE_IPV4 */ #ifdef FEATURE_NX_IPV6 if (ip_version == NX_IP_VERSION_V6) { fragment_head -> nx_packet_prepend_ptr += sizeof(NX_IPV6_HEADER_FRAGMENT_OPTION); fragment_head -> nx_packet_length -= (ULONG)sizeof(NX_IPV6_HEADER_FRAGMENT_OPTION); /*lint -e{613} suppress possible use of null pointer, since "current_pkt_ip_header" was set to none NULL above. */ protocol = current_v6_fragment_option -> nx_ipv6_header_fragment_option_next_header; }if (ip_version == NX_IP_VERSION_V6) { ... } /* ... */#endif /* Call the dispatch function go to process the packet. */ if (_nx_ip_dispatch_process(ip_ptr, fragment_head, (UINT)protocol)) { /* Toss the IP packet since we don't know what to do with it! */ _nx_packet_release(fragment_head); }if (_nx_ip_dispatch_process(ip_ptr, fragment_head, (UINT)protocol)) { ... } }if (found_ptr) { ... } else { /* No other packet was found on the re-assembly list so this packet must be the first one of a new IP packet. Just add it to the end of the assembly queue. *//* ... */ if (ip_ptr -> nx_ip_fragment_assembly_head) { /* Re-assembly list is not empty. Just place this IP packet at the end of the IP fragment assembly list. *//* ... */ ip_ptr -> nx_ip_fragment_assembly_tail -> nx_packet_queue_next = current_fragment; ip_ptr -> nx_ip_fragment_assembly_tail = current_fragment; current_fragment -> nx_packet_queue_next = NX_NULL; current_fragment -> nx_packet_union_next.nx_packet_fragment_next = NX_NULL; }if (ip_ptr -> nx_ip_fragment_assembly_head) { ... } else { /* First IP fragment on the assembly list. Setup the head and tail pointers to this packet. *//* ... */ ip_ptr -> nx_ip_fragment_assembly_head = current_fragment; ip_ptr -> nx_ip_fragment_assembly_tail = current_fragment; current_fragment -> nx_packet_queue_next = NX_NULL; current_fragment -> nx_packet_union_next.nx_packet_fragment_next = NX_NULL; }else { ... } }else { ... } }while (new_fragment_head) { ... } }{ ... } #endif/* ... */ /* NX_DISABLE_FRAGMENTATION */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.