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
106
107
108
109
110
111
112
113
114
115
116
117
118
121
122
123
124
125
126
127
128
129
130
131
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
169
170
171
172
173
174
175
176
177
178
179
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
260
261
262
263
267
268
269
273
274
275
279
280
281
285
286
287
288
292
293
294
298
299
300
304
305
306
307
313
314
315
321
322
323
330
331
332
334
335
336
337
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "tx_thread.h"
#include "nx_ip.h"
#include "nx_icmp.h"
#include "nx_arp.h"
5 includes#ifdef FEATURE_NX_IPV6
#include "nx_nd_cache.h"
#endif
...
...
UINT _nx_ip_delete(NX_IP *ip_ptr)
{
TX_INTERRUPT_SAVE_AREA
UINT i;
NX_IP_DRIVER driver_request;
NX_PACKET *raw_packet_head;
NX_PACKET *deferred_head;
NX_PACKET *icmp_queue_head;
NX_PACKET *tcp_queue_head;
#ifndef NX_DISABLE_IPV4
NX_PACKET *arp_queue_head;
NX_PACKET *rarp_queue_head;
NX_PACKET *igmp_queue_head;/* ... */
#endif
NX_TRACE_IN_LINE_INSERT(NX_TRACE_IP_DELETE, ip_ptr, 0, 0, 0, NX_TRACE_IP_EVENTS, 0, 0);
tx_mutex_get(&(ip_ptr -> nx_ip_protection), TX_WAIT_FOREVER);
if ((ip_ptr -> nx_ip_udp_created_sockets_count) || (ip_ptr -> nx_ip_tcp_created_sockets_count))
{
/* ... */
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
return(NX_SOCKETS_BOUND);
}if ((ip_ptr -> nx_ip_udp_created_sockets_count) || (ip_ptr -> nx_ip_tcp_created_sockets_count)) { ... }
for (i = 0; i < NX_MAX_PHYSICAL_INTERFACES; i++)
{
if (!(ip_ptr -> nx_ip_interface[i].nx_interface_valid))
{
continue;
}if (!(ip_ptr -> nx_ip_interface[i].nx_interface_valid)) { ... }
driver_request.nx_ip_driver_ptr = ip_ptr;
driver_request.nx_ip_driver_command = NX_LINK_DISABLE;
driver_request.nx_ip_driver_interface = &(ip_ptr -> nx_ip_interface[i]);
NX_TRACE_IN_LINE_INSERT(NX_TRACE_INTERNAL_IO_DRIVER_LINK_DISABLE, ip_ptr, 0, 0, 0, NX_TRACE_INTERNAL_EVENTS, 0, 0);
(ip_ptr -> nx_ip_interface[i].nx_interface_link_driver_entry)(&driver_request);
driver_request.nx_ip_driver_ptr = ip_ptr;
driver_request.nx_ip_driver_command = NX_LINK_UNINITIALIZE;
NX_TRACE_IN_LINE_INSERT(NX_TRACE_INTERNAL_IO_DRIVER_UNINITIALIZE, ip_ptr, 0, 0, 0, NX_TRACE_INTERNAL_EVENTS, 0, 0);
(ip_ptr -> nx_ip_interface[i].nx_interface_link_driver_entry)(&driver_request);
}for (i = 0; i < NX_MAX_PHYSICAL_INTERFACES; i++) { ... }
TX_DISABLE
if (ip_ptr == ip_ptr -> nx_ip_created_next)
{
_nx_ip_created_ptr = TX_NULL;
}if (ip_ptr == ip_ptr -> nx_ip_created_next) { ... }
else
{
(ip_ptr -> nx_ip_created_next) -> nx_ip_created_previous =
ip_ptr -> nx_ip_created_previous;
(ip_ptr -> nx_ip_created_previous) -> nx_ip_created_next =
ip_ptr -> nx_ip_created_next;
if (_nx_ip_created_ptr == ip_ptr)
{
_nx_ip_created_ptr = ip_ptr -> nx_ip_created_next;
}if (_nx_ip_created_ptr == ip_ptr) { ... }
}else { ... }
_nx_ip_created_count--;
_tx_thread_preempt_disable++;
raw_packet_head = ip_ptr -> nx_ip_raw_received_packet_head;
ip_ptr -> nx_ip_raw_received_packet_head = NX_NULL;
ip_ptr -> nx_ip_raw_received_packet_tail = NX_NULL;
ip_ptr -> nx_ip_raw_received_packet_count = 0;
deferred_head = ip_ptr -> nx_ip_deferred_received_packet_head;
ip_ptr -> nx_ip_deferred_received_packet_head = NX_NULL;
ip_ptr -> nx_ip_deferred_received_packet_tail = NX_NULL;
icmp_queue_head = ip_ptr -> nx_ip_icmp_queue_head;
ip_ptr -> nx_ip_icmp_queue_head = NX_NULL;
#ifndef NX_DISABLE_IPV4
igmp_queue_head = ip_ptr -> nx_ip_igmp_queue_head;
ip_ptr -> nx_ip_igmp_queue_head = NX_NULL;
arp_queue_head = ip_ptr -> nx_ip_arp_deferred_received_packet_head;
ip_ptr -> nx_ip_arp_deferred_received_packet_head = NX_NULL;
ip_ptr -> nx_ip_arp_deferred_received_packet_tail = NX_NULL;
rarp_queue_head = ip_ptr -> nx_ip_rarp_deferred_received_packet_head;
ip_ptr -> nx_ip_rarp_deferred_received_packet_head = NX_NULL;
ip_ptr -> nx_ip_rarp_deferred_received_packet_tail = NX_NULL;/* ... */
#endif
tcp_queue_head = ip_ptr -> nx_ip_tcp_queue_head;
ip_ptr -> nx_ip_tcp_queue_head = NX_NULL;
ip_ptr -> nx_ip_tcp_queue_tail = NX_NULL;
TX_RESTORE
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
tx_timer_deactivate(&(ip_ptr -> nx_ip_periodic_timer));
tx_timer_delete(&(ip_ptr -> nx_ip_periodic_timer));
if (ip_ptr -> nx_ip_fast_periodic_timer_created)
{
tx_timer_deactivate(&(ip_ptr -> nx_ip_fast_periodic_timer));
tx_timer_delete(&(ip_ptr -> nx_ip_fast_periodic_timer));
ip_ptr -> nx_ip_fast_periodic_timer_created = 0;
}if (ip_ptr -> nx_ip_fast_periodic_timer_created) { ... }
tx_thread_terminate(&(ip_ptr -> nx_ip_thread));
tx_mutex_delete(&(ip_ptr -> nx_ip_protection));
tx_event_flags_delete(&(ip_ptr -> nx_ip_events));
/* ... */
tx_thread_delete(&(ip_ptr -> nx_ip_thread));
if (raw_packet_head)
{
_nx_ip_delete_queue_clear(raw_packet_head);
}if (raw_packet_head) { ... }
if (deferred_head)
{
_nx_ip_delete_queue_clear(deferred_head);
}if (deferred_head) { ... }
if (icmp_queue_head)
{
_nx_ip_delete_queue_clear(icmp_queue_head);
}if (icmp_queue_head) { ... }
if (tcp_queue_head)
{
_nx_ip_delete_queue_clear(tcp_queue_head);
}if (tcp_queue_head) { ... }
#ifndef NX_DISABLE_IPV4
if (arp_queue_head)
{
_nx_ip_delete_queue_clear(arp_queue_head);
}if (arp_queue_head) { ... }
if (rarp_queue_head)
{
_nx_ip_delete_queue_clear(rarp_queue_head);
}if (rarp_queue_head) { ... }
if (igmp_queue_head)
{
_nx_ip_delete_queue_clear(igmp_queue_head);
}if (igmp_queue_head) { ... }
/* ... */#endif
while (ip_ptr -> nx_ip_raw_packet_suspension_list)
{
_nx_ip_raw_packet_cleanup(ip_ptr -> nx_ip_raw_packet_suspension_list NX_CLEANUP_ARGUMENT);
}while (ip_ptr -> nx_ip_raw_packet_suspension_list) { ... }
while (ip_ptr -> nx_ip_icmp_ping_suspension_list)
{
_nx_icmp_cleanup(ip_ptr -> nx_ip_icmp_ping_suspension_list NX_CLEANUP_ARGUMENT);
}while (ip_ptr -> nx_ip_icmp_ping_suspension_list) { ... }
if (ip_ptr -> nx_ip_fragment_processing)
{
/* ... */
_nx_ip_fragment_disable(ip_ptr);
}if (ip_ptr -> nx_ip_fragment_processing) { ... }
#ifndef NX_DISABLE_IPV4
_nx_arp_dynamic_entries_invalidate(ip_ptr);/* ... */
#endif
#ifdef FEATURE_NX_IPV6
_nxd_nd_cache_invalidate(ip_ptr);/* ... */
#endif
ip_ptr -> nx_ip_id = 0;
TX_DISABLE
_tx_thread_preempt_disable--;
TX_RESTORE
_tx_thread_system_preempt_check();
return(NX_SUCCESS);
}{ ... }