Select one of the symbols to view example projects that use it.
 
Outline
...
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_packet.h"
#include "nx_ip.h"
#include "nx_icmp.h"
#include "nx_ipsec.h"
...
_nx_icmpv4_send_error_message(NX_IP *, NX_PACKET *, ULONG, ULONG)
Files
loading...
CodeScopeSTM32 Libraries and Samplesnetxduocommon/src/nx_icmpv4_send_error_message.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/**************************************************************************/ /* */ /* 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 Control Message Protocol (ICMPv4) */ /** */... /**************************************************************************/ /**************************************************************************/ #define NX_SOURCE_CODE /* Include necessary system files. */ #include "nx_api.h" #include "nx_packet.h" #include "nx_ip.h" #include "nx_icmp.h" #ifdef NX_IPSEC_ENABLE #include "nx_ipsec.h" #endif /* NX_IPSEC_ENABLE */ #if !defined(NX_DISABLE_IPV4) && !defined(NX_DISABLE_ICMPV4_ERROR_MESSAGE)... /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _nx_icmpv4_send_error_message PORTABLE C */ /* 6.1 */ /* AUTHOR */ /* */ /* Yuxin Zhou, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function is called by various IPv4 components to send an */ /* error message when necessary. */ /* */ /* INPUT */ /* */ /* ip_ptr IP stack instance */ /* offending_packet The packet that caused the */ /* error. */ /* word1 ICMPv4 error message header */ /* field, progarmmed by */ /* the caller. */ /* error_pointer Pointer to the byte that */ /* caused the error */ /* */ /* OUTPUT */ /* */ /* None */ /* */ /* CALLS */ /* */ /* _nx_ip_checksum_compute Computer ICMP checksum */ /* _nx_ip_packet_send Send ICMP packet out */ /* _nx_packet_allocate Packet allocate */ /* _nx_packet_release Release packet back to pool */ /* _nx_ip_route_find Find outgoing interface for */ /* sending packet */ /* */ /* CALLED BY */ /* */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 Yuxin Zhou Initial Version 6.0 */ /* 09-30-2020 Yuxin Zhou Modified comment(s), */ /* resulting in version 6.1 */ /* */... /**************************************************************************/ VOID _nx_icmpv4_send_error_message(NX_IP *ip_ptr, NX_PACKET *offending_packet, ULONG word1, ULONG error_pointer) { NX_PACKET *pkt_ptr; USHORT checksum; #if defined(NX_DISABLE_ICMPV4_TX_CHECKSUM) || defined(NX_ENABLE_INTERFACE_CAPABILITY) || defined(NX_IPSEC_ENABLE) UINT compute_checksum = 1; #endif /* defined(NX_DISABLE_ICMPV4_TX_CHECKSUM) || defined(NX_ENABLE_INTERFACE_CAPABILITY) || defined(NX_IPSEC_ENABLE) */ NX_ICMPV4_ERROR *icmpv4_error; NX_IPV4_HEADER *ip_header_ptr; UINT ip_header_size; UINT bytes_to_copy, i; ULONG src_ip; ULONG next_hop_address = NX_NULL; ULONG *src_packet, *dest_packet; NX_INTERFACE *if_ptr; #ifdef NX_IPSEC_ENABLE VOID *sa = NX_NULL; UINT ret = 0; ULONG data_offset; NXD_ADDRESS src_addr; NXD_ADDRESS dest_addr;/* ... */ #endif /* NX_IPSEC_ENABLE */ /* Add debug information. */ NX_PACKET_DEBUG(__FILE__, __LINE__, offending_packet); /* Do not send ICMPv4 error message if ICMPv4 is not enabled. */ if (ip_ptr -> nx_ip_icmpv4_packet_process == NX_NULL) { return; }if (ip_ptr -> nx_ip_icmpv4_packet_process == NX_NULL) { ... } /* Find out the source and destination IP addresses of the offending packet. */ /*lint -e{927} -e{826} suppress cast of pointer to pointer, since it is necessary */ ip_header_ptr = (NX_IPV4_HEADER *)(offending_packet -> nx_packet_ip_header); src_ip = ip_header_ptr -> nx_ip_header_source_ip; /* Get the incoming interface. */ if_ptr = offending_packet -> nx_packet_address.nx_packet_interface_ptr; /* An ICMP error message MUST NOT be sent as the result of receiving: RFC1122, Section3.2.2, Page39. *//* ... */ /* A datagram destined to an IP broadcast or IP multicast address. */ if ((ip_header_ptr -> nx_ip_header_destination_ip == NX_IP_LIMITED_BROADCAST) || ((ip_header_ptr -> nx_ip_header_destination_ip & NX_IP_CLASS_D_MASK) == NX_IP_CLASS_D_TYPE)) { return; }if ((ip_header_ptr -> nx_ip_header_destination_ip == NX_IP_LIMITED_BROADCAST) || ((ip_header_ptr -> nx_ip_header_destination_ip & NX_IP_CLASS_D_MASK) == NX_IP_CLASS_D_TYPE)) { ... } /* A datagram sent as a link-layer broadcast. */ if (((ip_header_ptr -> nx_ip_header_destination_ip & if_ptr -> nx_interface_ip_network_mask) == if_ptr -> nx_interface_ip_network) && ((ip_header_ptr -> nx_ip_header_destination_ip & ~(if_ptr -> nx_interface_ip_network_mask)) == ~(if_ptr -> nx_interface_ip_network_mask))) { return; }if (((ip_header_ptr -> nx_ip_header_destination_ip & if_ptr -> nx_interface_ip_network_mask) == if_ptr -> nx_interface_ip_network) && ((ip_header_ptr -> nx_ip_header_destination_ip & ~(if_ptr -> nx_interface_ip_network_mask)) == ~(if_ptr -> nx_interface_ip_network_mask))) { ... } /* A non-initial fragment. */ if (ip_header_ptr -> nx_ip_header_word_1 & NX_IP_OFFSET_MASK) { return; }if (ip_header_ptr -> nx_ip_header_word_1 & NX_IP_OFFSET_MASK) { ... } /* A datagram whose source address does not define a single host, e.g., a zero address, a loopback address, a broadcast address, a multicast address, or a Class E address. *//* ... */ if ((ip_header_ptr -> nx_ip_header_source_ip == 0) || ((ip_header_ptr -> nx_ip_header_source_ip >= NX_IP_LOOPBACK_FIRST) && (ip_header_ptr -> nx_ip_header_source_ip <= NX_IP_LOOPBACK_LAST)) || (ip_header_ptr -> nx_ip_header_source_ip == NX_IP_LIMITED_BROADCAST) || ((ip_header_ptr -> nx_ip_header_source_ip & NX_IP_CLASS_D_MASK) == NX_IP_CLASS_D_TYPE)) { return; }if ((ip_header_ptr -> nx_ip_header_source_ip == 0) || ((ip_header_ptr -> nx_ip_header_source_ip >= NX_IP_LOOPBACK_FIRST) && (ip_header_ptr -> nx_ip_header_source_ip <= NX_IP_LOOPBACK_LAST)) || (ip_header_ptr -> nx_ip_header_source_ip == NX_IP_LIMITED_BROADCAST) || ((ip_header_ptr -> nx_ip_header_source_ip & NX_IP_CLASS_D_MASK) == NX_IP_CLASS_D_TYPE)) { ... } /* Allocate a packet to build the ICMPv4 error message in. */ if (_nx_packet_allocate(ip_ptr -> nx_ip_default_packet_pool, &pkt_ptr, NX_IPv4_ICMP_PACKET, NX_NO_WAIT)) { /* Error getting packet, so just get out! */ return; }if (_nx_packet_allocate(ip_ptr -> nx_ip_default_packet_pool, &pkt_ptr, NX_IPv4_ICMP_PACKET, NX_NO_WAIT)) { ... } /* Add debug information. */ NX_PACKET_DEBUG(__FILE__, __LINE__, pkt_ptr); /* Mark the packet as IPv4. */ /*lint -e{644} suppress variable might not be initialized, since "pkt_ptr" was initialized in _nx_packet_allocate. */ pkt_ptr -> nx_packet_ip_version = NX_IP_VERSION_V4; /* Size of the message is ICMPv4 */ /*lint -e{927} -e{826} suppress cast of pointer to pointer, since it is necessary */ icmpv4_error = (NX_ICMPV4_ERROR *)(pkt_ptr -> nx_packet_prepend_ptr); icmpv4_error -> nx_icmpv4_error_header.nx_icmpv4_header_type = (UCHAR)((word1 >> 24) & 0xFF); icmpv4_error -> nx_icmpv4_error_header.nx_icmpv4_header_code = (UCHAR)((word1 >> 16) & 0xFF); icmpv4_error -> nx_icmpv4_error_header.nx_icmpv4_header_checksum = 0; icmpv4_error -> nx_icmpv4_error_pointer = (error_pointer << 24); /* Change to network byte order. */ NX_CHANGE_ULONG_ENDIAN(icmpv4_error -> nx_icmpv4_error_pointer); /* IP Header + 64 bits (64 bits = 2 ULONGs) of Data Datagram. */ ip_header_size = ((ip_header_ptr -> nx_ip_header_word_0 & 0x0F000000) >> 24); bytes_to_copy = (UINT)((ip_header_size + 2) * sizeof(ULONG)); /* Set the packet length and pointers. The length will be increased to include the IPv4 header in the IP send function. The Prepend function will be similarly updated in the IP send function. *//* ... */ pkt_ptr -> nx_packet_length = bytes_to_copy + (ULONG)sizeof(NX_ICMPV4_ERROR); pkt_ptr -> nx_packet_append_ptr = pkt_ptr -> nx_packet_prepend_ptr + pkt_ptr -> nx_packet_length; /*lint -e{927} -e{826} suppress cast of pointer to pointer, since it is necessary */ src_packet = (ULONG *)(offending_packet -> nx_packet_ip_header); /*lint -e{923} suppress cast between pointer and ULONG, since it is necessary */ dest_packet = (ULONG *)NX_UCHAR_POINTER_ADD(icmpv4_error, sizeof(NX_ICMPV4_ERROR)); /* Endian swap the incoming IPv4 normal header to network byte order. */ for (i = 0; i < NX_IP_NORMAL_LENGTH; i++) { NX_CHANGE_ULONG_ENDIAN(*src_packet); src_packet++; }for (i = 0; i < NX_IP_NORMAL_LENGTH; i++) { ... } /* Reset the packet pointer to the received packet IP header. */ /*lint -e{927} -e{826} suppress cast of pointer to pointer, since it is necessary */ src_packet = (ULONG *)(offending_packet -> nx_packet_ip_header); /* Copy the data from the received packet to the ICMPv4 error packet. */ for (; bytes_to_copy > 0; bytes_to_copy -= 4) { *dest_packet++ = *src_packet++; }for (; bytes_to_copy > 0; bytes_to_copy -= 4) { ... } /* Get the IP header pointer. */ /*lint -e{927} -e{826} suppress cast of pointer to pointer, since it is necessary */ src_packet = (ULONG *)(offending_packet -> nx_packet_ip_header); /* Endian swap the IPv4 normal header back to host byte order. */ for (i = 0; i < NX_IP_NORMAL_LENGTH; i++) { NX_CHANGE_ULONG_ENDIAN(*src_packet); src_packet++; }for (i = 0; i < NX_IP_NORMAL_LENGTH; i++) { ... } /* Use the corresponding interface address as sender's address. */ pkt_ptr -> nx_packet_address.nx_packet_interface_ptr = offending_packet -> nx_packet_address.nx_packet_interface_ptr; /* Figure out the best interface to send the ICMP packet on. */ _nx_ip_route_find(ip_ptr, src_ip, &pkt_ptr -> nx_packet_address.nx_packet_interface_ptr, &next_hop_address); #ifdef NX_IPSEC_ENABLE /* Check for possible SA match. */ if (ip_ptr -> nx_ip_packet_egress_sa_lookup != NX_NULL) /* IPsec is enabled. */ { /* Set up IP address. */ src_addr.nxd_ip_version = NX_IP_VERSION_V4; src_addr.nxd_ip_address.v4 = pkt_ptr -> nx_packet_address.nx_packet_interface_ptr -> nx_interface_ip_address; dest_addr.nxd_ip_version = NX_IP_VERSION_V4; dest_addr.nxd_ip_address.v4 = src_ip; /* If the SA has not been set. */ ret = ip_ptr -> nx_ip_packet_egress_sa_lookup(ip_ptr, /* IP ptr */ &src_addr, /* src_addr */ &dest_addr, /* dest_addr */ NX_PROTOCOL_ICMP, /* protocol */ 0, /* src_port */ 0, /* dest_port */ &data_offset, &sa, ((word1 >> 16) & 0xFFFF)); if (ret == NX_IPSEC_TRAFFIC_BYPASS) { sa = NX_NULL; data_offset = 0; }if (ret == NX_IPSEC_TRAFFIC_BYPASS) { ... } else if (ret == NX_IPSEC_TRAFFIC_DROP || ret == NX_IPSEC_TRAFFIC_PENDING_IKEV2) { /* IPSec SA disallows this packet. Drop the packet and return. */ _nx_packet_release(pkt_ptr); return; }else if (ret == NX_IPSEC_TRAFFIC_DROP || ret == NX_IPSEC_TRAFFIC_PENDING_IKEV2) { ... } ...} pkt_ptr -> nx_packet_ipsec_sa_ptr = sa; /* ... */ #endif /* NX_IPSEC_ENABLE */ #ifdef NX_DISABLE_ICMPV4_TX_CHECKSUM compute_checksum = 0; #endif /* NX_DISABLE_ICMPV4_TX_CHECKSUM */ #ifdef NX_ENABLE_INTERFACE_CAPABILITY if (pkt_ptr -> nx_packet_address.nx_packet_interface_ptr -> nx_interface_capability_flag & NX_INTERFACE_CAPABILITY_ICMPV4_TX_CHECKSUM) { compute_checksum = 0; }if (pkt_ptr -> nx_packet_address.nx_packet_interface_ptr -> nx_interface_capability_flag & NX_INTERFACE_CAPABILITY_ICMPV4_TX_CHECKSUM) { ... } /* ... */#endif /* NX_ENABLE_INTERFACE_CAPABILITY */ #ifdef NX_IPSEC_ENABLE if ((sa != NX_NULL) && (((NX_IPSEC_SA *)sa) -> nx_ipsec_sa_encryption_method != NX_CRYPTO_NONE)) { compute_checksum = 1; }if ((sa != NX_NULL) && (((NX_IPSEC_SA *)sa) -> nx_ipsec_sa_encryption_method != NX_CRYPTO_NONE)) { ... } /* ... */#endif /* NX_IPSEC_ENABLE */ #if defined(NX_DISABLE_ICMPV4_TX_CHECKSUM) || defined(NX_ENABLE_INTERFACE_CAPABILITY) || defined(NX_IPSEC_ENABLE) if (compute_checksum) #endif /* defined(NX_DISABLE_ICMPV4_TX_CHECKSUM) || defined(NX_ENABLE_INTERFACE_CAPABILITY) || defined(NX_IPSEC_ENABLE) */ { /* Compute the checksum of the ICMP packet. */ checksum = _nx_ip_checksum_compute(pkt_ptr, NX_IP_ICMP, (UINT)pkt_ptr -> nx_packet_length, /* ICMPV4 checksum does not include src/dest addresses *//* ... */ NX_NULL, NX_NULL); icmpv4_error -> nx_icmpv4_error_header.nx_icmpv4_header_checksum = (USHORT)(~checksum); /* Swap to network byte order. */ NX_CHANGE_USHORT_ENDIAN(icmpv4_error -> nx_icmpv4_error_header.nx_icmpv4_header_checksum); ...} #ifdef NX_ENABLE_INTERFACE_CAPABILITY else { pkt_ptr -> nx_packet_interface_capability_flag |= NX_INTERFACE_CAPABILITY_ICMPV4_TX_CHECKSUM; }else { ... } /* ... */#endif /* NX_ENABLE_INTERFACE_CAPABILITY */ /* Send the ICMP packet to the IP component. The time to live is set to 255. */ /*lint -e{644} suppress variable might not be initialized, since "next_hop_address" was initialized in _nx_ip_route_find. */ _nx_ip_packet_send(ip_ptr, pkt_ptr, src_ip, NX_IP_NORMAL, 255, NX_IP_ICMP, NX_FRAGMENT_OKAY, next_hop_address); return; }{ ... } #endif/* ... */ /* !NX_DISABLE_IPV4 && !NX_DISABLE_ICMPV4_ERROR_MESSAGE */