1
10
13
14
20
21
22
23
24
25
26
27
28
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
129
130
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
162
163
164
165
166
167
168
169
170
171
175
179
184
185
186
192
197
198
204
205
206
211
212
213
214
215
216
219
220
221
222
223
224
225
226
227
228
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_packet.h"
#include "nx_ip.h"
#include "nx_ipv6.h"
#include "nx_icmpv6.h"
5 includes
#ifdef NX_IPSEC_ENABLE
#include "nx_ipsec.h"
#endif
#ifdef FEATURE_NX_IPV6
...
VOID _nx_icmpv6_packet_process(NX_IP *ip_ptr, NX_PACKET *packet_ptr)
{
NX_ICMPV6_HEADER *header_ptr;
USHORT checksum;
#if defined(NX_DISABLE_ICMPV6_RX_CHECKSUM) || defined(NX_ENABLE_INTERFACE_CAPABILITY) || defined(NX_IPSEC_ENABLE)
UINT compute_checksum = 1;
#endif
NX_IPV6_HEADER *ipv6_header;
NX_PACKET_DEBUG(__FILE__, __LINE__, packet_ptr);
header_ptr = (NX_ICMPV6_HEADER *)packet_ptr -> nx_packet_prepend_ptr;
#ifdef NX_DISABLE_ICMPV6_RX_CHECKSUM
compute_checksum = 0;
#endif
#ifdef NX_ENABLE_INTERFACE_CAPABILITY
if (packet_ptr -> nx_packet_address.nx_packet_ipv6_address_ptr -> nxd_ipv6_address_attached -> nx_interface_capability_flag & NX_INTERFACE_CAPABILITY_ICMPV6_RX_CHECKSUM)
{
compute_checksum = 0;
}if (packet_ptr -> nx_packet_address.nx_packet_ipv6_address_ptr -> nxd_ipv6_address_attached -> nx_interface_capability_flag & NX_INTERFACE_CAPABILITY_ICMPV6_RX_CHECKSUM) { ... }
/* ... */#endif
#ifdef NX_IPSEC_ENABLE
if ((packet_ptr -> nx_packet_ipsec_sa_ptr != NX_NULL) && (((NX_IPSEC_SA *)(packet_ptr -> nx_packet_ipsec_sa_ptr)) -> nx_ipsec_sa_encryption_method != NX_CRYPTO_NONE))
{
compute_checksum = 1;
}if ((packet_ptr -> nx_packet_ipsec_sa_ptr != NX_NULL) && (((NX_IPSEC_SA *)(packet_ptr -> nx_packet_ipsec_sa_ptr)) -> nx_ipsec_sa_encryption_method != NX_CRYPTO_NONE)) { ... }
/* ... */#endif
#if defined(NX_DISABLE_ICMPV6_RX_CHECKSUM) || defined(NX_ENABLE_INTERFACE_CAPABILITY) || defined(NX_IPSEC_ENABLE)
if (compute_checksum)
#endif
{
ipv6_header = (NX_IPV6_HEADER *)packet_ptr -> nx_packet_ip_header;
checksum = _nx_ip_checksum_compute(packet_ptr, NX_PROTOCOL_ICMPV6,
(UINT)packet_ptr -> nx_packet_length,
(ipv6_header -> nx_ip_header_source_ip),
(ipv6_header -> nx_ip_header_destination_ip));
checksum = (USHORT)(~checksum) & NX_LOWER_16_MASK;
if (checksum)
{
#ifndef NX_DISABLE_ICMP_INFO
ip_ptr -> nx_ip_icmp_invalid_packets++;
ip_ptr -> nx_ip_icmp_checksum_errors++;/* ... */
#endif
_nx_packet_release(packet_ptr);
return;
}if (checksum) { ... }
...}
if (header_ptr -> nx_icmpv6_header_type == NX_ICMPV6_ECHO_REPLY_TYPE)
{
_nx_icmpv6_process_echo_reply(ip_ptr, packet_ptr);
}if (header_ptr -> nx_icmpv6_header_type == NX_ICMPV6_ECHO_REPLY_TYPE) { ... }
else if (header_ptr -> nx_icmpv6_header_type == NX_ICMPV6_ECHO_REQUEST_TYPE)
{
_nx_icmpv6_process_echo_request(ip_ptr, packet_ptr);
}else if (header_ptr -> nx_icmpv6_header_type == NX_ICMPV6_ECHO_REQUEST_TYPE) { ... }
else if (header_ptr -> nx_icmpv6_header_type == NX_ICMPV6_NEIGHBOR_SOLICITATION_TYPE)
{
_nx_icmpv6_process_ns(ip_ptr, packet_ptr);
}else if (header_ptr -> nx_icmpv6_header_type == NX_ICMPV6_NEIGHBOR_SOLICITATION_TYPE) { ... }
#ifndef NX_DISABLE_ICMPV6_ROUTER_ADVERTISEMENT_PROCESS
else if (header_ptr -> nx_icmpv6_header_type == NX_ICMPV6_ROUTER_ADVERTISEMENT_TYPE)
{
_nx_icmpv6_process_ra(ip_ptr, packet_ptr);
}else if (header_ptr -> nx_icmpv6_header_type == NX_ICMPV6_ROUTER_ADVERTISEMENT_TYPE) { ... }
/* ... */#endif
else if (header_ptr -> nx_icmpv6_header_type == NX_ICMPV6_NEIGHBOR_ADVERTISEMENT_TYPE)
{
_nx_icmpv6_process_na(ip_ptr, packet_ptr);
}else if (header_ptr -> nx_icmpv6_header_type == NX_ICMPV6_NEIGHBOR_ADVERTISEMENT_TYPE) { ... }
#ifndef NX_DISABLE_ICMPV6_REDIRECT_PROCESS
else if (header_ptr -> nx_icmpv6_header_type == NX_ICMPV6_REDIRECT_MESSAGE_TYPE)
{
_nx_icmpv6_process_redirect(ip_ptr, packet_ptr);
}else if (header_ptr -> nx_icmpv6_header_type == NX_ICMPV6_REDIRECT_MESSAGE_TYPE) { ... }
/* ... */#endif
#ifdef NX_ENABLE_IPV6_PATH_MTU_DISCOVERY
else if (header_ptr -> nx_icmpv6_header_type == NX_ICMPV6_PACKET_TOO_BIG_TYPE)
{
_nx_icmpv6_process_packet_too_big(ip_ptr, packet_ptr);
}else if (header_ptr -> nx_icmpv6_header_type == NX_ICMPV6_PACKET_TOO_BIG_TYPE) { ... }
/* ... */#endif
else
{
#ifndef NX_DISABLE_ICMP_INFO
ip_ptr -> nx_ip_icmp_unhandled_messages++;/* ... */
#endif
_nx_packet_release(packet_ptr);
}else { ... }
}_nx_icmpv6_packet_process (NX_IP *ip_ptr, NX_PACKET *packet_ptr) { ... }
/* ... */
#endif