1
10
13
14
20
21
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
97
98
99
100
101
102
103
104
105
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
164
165
166
167
168
169
170
171
172
173
174
175
176
178
179
180
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
217
218
219
220
221
222
223
224
225
227
228
229
230
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
290
291
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
341
342
343
344
345
346
347
348
350
351
352
353
354
355
356
363
364
365
366
367
368
369
376
377
378
379
381
382
383
384
385
386
387
388
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
421
422
423
424
425
426
427
428
430
431
432
433
434
435
436
437
438
439
440
441
442
443
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
476
477
478
479
480
481
482
483
484
485
486
487
491
492
495
496
497
498
502
503
504
505
506
507
508
509
511
512
513
514
516
522
523
524
525
526
527
528
530
531
532
533
534
540
541
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
586
590
594
598
599
600
601
602
603
604
605
606
607
608
609
610
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
635
636
637
638
639
640
641
642
644
645
646
647
648
649
650
651
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
694
695
696
697
698
700
701
702
703
705
706
707
708
709
710
711
712
713
715
716
717
718
719
720
721
722
723
724
...
...
...
#define NX_SOURCE_CODE
#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...
...
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
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
#ifdef NX_NAT_ENABLE
UINT packet_consumed;
#endif
TX_DISABLE
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;
TX_RESTORE
while (new_fragment_head)
{
copy_packet = NX_FALSE;
ip_version = new_fragment_head -> nx_packet_ip_version;
current_fragment = new_fragment_head;
new_fragment_head = new_fragment_head -> nx_packet_queue_next;
#ifndef NX_DISABLE_IPV4
if (ip_version == NX_IP_VERSION_V4)
{
current_header = (NX_IPV4_HEADER *)current_fragment -> nx_packet_prepend_ptr;
current_id = (current_header -> nx_ip_header_word_1 >> NX_SHIFT_BY_16);
current_offset = current_header -> nx_ip_header_word_1 & NX_IP_OFFSET_MASK;
current_ttl = (current_header -> nx_ip_header_word_2 & NX_IP_TIME_TO_LIVE_MASK) >> NX_IP_TIME_TO_LIVE_SHIFT;
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
#ifdef FEATURE_NX_IPV6
if (ip_version == NX_IP_VERSION_V6)
{
current_pkt_ip_header = (NX_IPV6_HEADER *)current_fragment -> nx_packet_ip_header;
current_v6_fragment_option = (NX_IPV6_HEADER_FRAGMENT_OPTION *)current_fragment -> nx_packet_prepend_ptr;
/* ... */
current_id = current_v6_fragment_option -> nx_ipv6_header_fragment_option_packet_id;
/* ... */
current_offset = (current_v6_fragment_option -> nx_ipv6_header_fragment_option_offset_flag & 0xFFF8);
current_fragment -> nx_packet_reassembly_time = NX_IPV6_MAX_REASSEMBLY_TIME;
}if (ip_version == NX_IP_VERSION_V6) { ... }
/* ... */#endif
found_ptr = NX_NULL;
if (ip_ptr -> nx_ip_fragment_assembly_head)
{
/* ... */
search_ptr = ip_ptr -> nx_ip_fragment_assembly_head;
previous_fragment = NX_NULL;
while (search_ptr)
{
if (ip_version == search_ptr -> nx_packet_ip_version)
{
#ifndef NX_DISABLE_IPV4
if (ip_version == NX_IP_VERSION_V4)
{
search_header = (NX_IPV4_HEADER *)search_ptr -> nx_packet_prepend_ptr;
/* ... */
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))
{
/* ... */
found_ptr = search_ptr;
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) { ... }
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
#ifdef FEATURE_NX_IPV6
if (ip_version == NX_IP_VERSION_V6)
{
NX_IPV6_HEADER *search_pkt_ip_header;
search_v6_fragment_option = (NX_IPV6_HEADER_FRAGMENT_OPTION *)search_ptr -> nx_packet_prepend_ptr;
search_pkt_ip_header = (NX_IPV6_HEADER *)search_ptr -> nx_packet_ip_header;
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)))
{
/* ... */
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
}if (ip_version == search_ptr -> nx_packet_ip_version) { ... }
previous_fragment = search_ptr;
search_ptr = search_ptr -> nx_packet_queue_next;
}while (search_ptr) { ... }
}if (ip_ptr -> nx_ip_fragment_assembly_head) { ... }
if (found_ptr)
{
fragment_head = found_ptr;
/* ... */
/* ... */
previous_ptr = NX_NULL;
search_ptr = found_ptr;
do
{
#ifndef NX_DISABLE_IPV4
if (ip_version == NX_IP_VERSION_V4)
{
search_header = (NX_IPV4_HEADER *)search_ptr -> nx_packet_prepend_ptr;
if (current_offset <= (search_header -> nx_ip_header_word_1 & NX_IP_OFFSET_MASK))
{
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)) { ... }
break;
}if (current_offset <= (search_header -> nx_ip_header_word_1 & NX_IP_OFFSET_MASK)) { ... }
}if (ip_version == NX_IP_VERSION_V4) { ... }
/* ... */#endif
#ifdef FEATURE_NX_IPV6
if (ip_version == NX_IP_VERSION_V6)
{
search_v6_fragment_option = (NX_IPV6_HEADER_FRAGMENT_OPTION *)search_ptr -> nx_packet_prepend_ptr;
if (current_offset <= (ULONG)(search_v6_fragment_option -> nx_ipv6_header_fragment_option_offset_flag & 0xFFF8))
{
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)) { ... }
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
/* ... */
previous_ptr = search_ptr;
search_ptr = search_ptr -> nx_packet_union_next.nx_packet_fragment_next;
...} while (search_ptr);
if (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
{
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)
{
/* ... */
previous_fragment -> nx_packet_queue_next = current_fragment;
}if (previous_fragment) { ... }
else
{
/* ... */
ip_ptr -> nx_ip_fragment_assembly_head = current_fragment;
ip_ptr -> nx_ip_timeout_fragment = NX_NULL;
}else { ... }
if (fragment_head == ip_ptr -> nx_ip_fragment_assembly_tail)
{
ip_ptr -> nx_ip_fragment_assembly_tail = current_fragment;
}if (fragment_head == ip_ptr -> nx_ip_fragment_assembly_tail) { ... }
fragment_head = current_fragment;
}else { ... }
if (copy_packet == NX_TRUE)
{
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;
old_ptr -> nx_packet_union_next.nx_packet_tcp_queue_next = (NX_PACKET *)NX_PACKET_ALLOCATED;
_nx_packet_release(old_ptr);
}if (copy_packet == NX_TRUE) { ... }
/* ... */
search_ptr = fragment_head;
current_offset = 0;
/* ... */
incomplete = 0;
do
{
#ifndef NX_DISABLE_IPV4
if (ip_version == NX_IP_VERSION_V4)
{
search_header = (NX_IPV4_HEADER *)search_ptr -> nx_packet_prepend_ptr;
if (current_offset != (search_header -> nx_ip_header_word_1 & NX_IP_OFFSET_MASK))
{
incomplete = 1;
/* ... */
break;
}if (current_offset != (search_header -> nx_ip_header_word_1 & NX_IP_OFFSET_MASK)) { ... }
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
#ifdef FEATURE_NX_IPV6
if (ip_version == NX_IP_VERSION_V6)
{
search_v6_fragment_option = (NX_IPV6_HEADER_FRAGMENT_OPTION *)search_ptr -> nx_packet_prepend_ptr;
if (current_offset != (ULONG)(search_v6_fragment_option -> nx_ipv6_header_fragment_option_offset_flag & 0xFFF8))
{
incomplete = 1;
/* ... */
break;
}if (current_offset != (ULONG)(search_v6_fragment_option -> nx_ipv6_header_fragment_option_offset_flag & 0xFFF8)) { ... }
current_offset = current_offset +
(search_ptr -> nx_packet_length - (ULONG)sizeof(NX_IPV6_HEADER_FRAGMENT_OPTION));
}if (ip_version == NX_IP_VERSION_V6) { ... }
/* ... */#endif
search_ptr = search_ptr -> nx_packet_union_next.nx_packet_fragment_next;
...} while (search_ptr);
if (incomplete)
{
continue;
}if (incomplete) { ... }
/* ... */
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 /* ... */
#endif
#ifdef FEATURE_NX_IPV6
((ip_version == NX_IP_VERSION_V6) && (search_v6_fragment_option -> nx_ipv6_header_fragment_option_offset_flag & 1))
#endif
)
{
/* ... */
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 */) { ... }
/* ... */
if (previous_fragment)
{
previous_fragment -> nx_packet_queue_next = fragment_head -> nx_packet_queue_next;
}if (previous_fragment) { ... }
else
{
ip_ptr -> nx_ip_fragment_assembly_head = fragment_head -> nx_packet_queue_next;
/* ... */
ip_ptr -> nx_ip_timeout_fragment = NX_NULL;
}else { ... }
if (fragment_head == ip_ptr -> nx_ip_fragment_assembly_tail)
{
ip_ptr -> nx_ip_fragment_assembly_tail = previous_fragment;
}if (fragment_head == ip_ptr -> nx_ip_fragment_assembly_tail) { ... }
/* ... */
search_ptr = fragment_head -> nx_packet_union_next.nx_packet_fragment_next;
previous_fragment = fragment_head;
while (search_ptr)
{
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)
{
fragment_head -> nx_packet_length = fragment_head -> nx_packet_length +
search_ptr -> nx_packet_length - (ULONG)sizeof(NX_IPV4_HEADER);
search_ptr -> nx_packet_prepend_ptr = search_ptr -> nx_packet_prepend_ptr +
sizeof(NX_IPV4_HEADER);
}if (ip_version == NX_IP_VERSION_V4) { ... }
/* ... */#endif
#ifdef FEATURE_NX_IPV6
if (ip_version == NX_IP_VERSION_V6)
{
search_ptr -> nx_packet_prepend_ptr += sizeof(NX_IPV6_HEADER_FRAGMENT_OPTION);
search_ptr -> nx_packet_length -= (ULONG)sizeof(NX_IPV6_HEADER_FRAGMENT_OPTION);
fragment_head -> nx_packet_length += search_ptr -> nx_packet_length;
}if (ip_version == NX_IP_VERSION_V6) { ... }
/* ... */
#endif
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 { ... }
previous_fragment = search_ptr;
search_ptr = search_ptr -> nx_packet_union_next.nx_packet_fragment_next;
}while (search_ptr) { ... }
previous_fragment -> nx_packet_union_next.nx_packet_tcp_queue_next = (NX_PACKET *)NX_PACKET_ALLOCATED;
/* ... */
#ifndef NX_DISABLE_IP_INFO
ip_ptr -> nx_ip_packets_reassembled++;
ip_ptr -> nx_ip_total_packets_delivered++;
ip_ptr -> nx_ip_total_bytes_received += fragment_head -> nx_packet_length;/* ... */
#endif
#ifndef NX_DISABLE_IPV4
if (ip_version == NX_IP_VERSION_V4)
{
/* ... */
#ifdef NX_NAT_ENABLE
if (ip_ptr -> nx_ip_nat_packet_process)
{
/* ... */
packet_consumed = (ip_ptr -> nx_ip_nat_packet_process)(ip_ptr, fragment_head, NX_TRUE);
if (packet_consumed)
{
#ifndef NX_DISABLE_IP_INFO
ip_ptr -> nx_ip_packets_forwarded++;/* ... */
#endif
continue;
}if (packet_consumed) { ... }
}if (ip_ptr -> nx_ip_nat_packet_process) { ... }
/* ... */#endif
current_header = (NX_IPV4_HEADER *)fragment_head -> nx_packet_ip_header;
protocol = (current_header -> nx_ip_header_word_2 >> 16) & 0xFF;
fragment_head -> nx_packet_prepend_ptr = fragment_head -> nx_packet_prepend_ptr + sizeof(NX_IPV4_HEADER);
fragment_head -> nx_packet_length = fragment_head -> nx_packet_length - (ULONG)sizeof(NX_IPV4_HEADER);
}if (ip_version == NX_IP_VERSION_V4) { ... }
/* ... */#endif
#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);
protocol = current_v6_fragment_option -> nx_ipv6_header_fragment_option_next_header;
}if (ip_version == NX_IP_VERSION_V6) { ... }
/* ... */#endif
if (_nx_ip_dispatch_process(ip_ptr, fragment_head, (UINT)protocol))
{
_nx_packet_release(fragment_head);
}if (_nx_ip_dispatch_process(ip_ptr, fragment_head, (UINT)protocol)) { ... }
}if (found_ptr) { ... }
else
{
/* ... */
if (ip_ptr -> nx_ip_fragment_assembly_head)
{
/* ... */
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
{
/* ... */
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/* ... */