1
10
13
14
20
21
22
23
24
25
26
27
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
115
116
117
118
119
120
121
135
136
137
138
139
140
142
143
144
145
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
225
226
227
228
229
230
231
232
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
297
298
299
300
301
302
303
304
305
306
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_tcp.h"
#include "nx_arp.h"
#include "nx_igmp.h"
#include "nx_ip.h"
#include "nx_packet.h"
6 includes#ifdef FEATURE_NX_IPV6
#include "nx_icmpv6.h"
#endif
...
...
UINT _nx_ip_interface_detach(NX_IP *ip_ptr, UINT index)
{
NX_INTERFACE *interface_ptr;
NX_IP_DRIVER driver_request;
NX_TCP_SOCKET *socket_ptr;
NXD_IPV6_ADDRESS *next_ipv6_address;
NXD_IPV6_ADDRESS *ipv6_address;
UINT i;
#ifdef NX_ENABLE_IP_STATIC_ROUTING
UINT j;
#endif
#ifdef FEATURE_NX_IPV6
NX_IPV6_DEFAULT_ROUTER_ENTRY *rt_entry;
#endif
interface_ptr = &(ip_ptr -> nx_ip_interface[index]);
if (interface_ptr -> nx_interface_valid == NX_FALSE)
{
return(NX_INVALID_INTERFACE);
}if (interface_ptr -> nx_interface_valid == NX_FALSE) { ... }
tx_mutex_get(&(ip_ptr -> nx_ip_protection), TX_WAIT_FOREVER);
socket_ptr = ip_ptr -> nx_ip_tcp_created_sockets_ptr;
if (socket_ptr != NX_NULL)
{
do
{
if (socket_ptr -> nx_tcp_socket_connect_interface == interface_ptr)
{
_nx_tcp_socket_connection_reset(socket_ptr);
}if (socket_ptr -> nx_tcp_socket_connect_interface == interface_ptr) { ... }
socket_ptr = socket_ptr -> nx_tcp_socket_created_next;
...} while (socket_ptr != ip_ptr -> nx_ip_tcp_created_sockets_ptr);
}if (socket_ptr != NX_NULL) { ... }
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
#ifndef NX_DISABLE_IPV4
_nx_arp_interface_entries_delete(ip_ptr, index);/* ... */
#endif
#ifdef FEATURE_NX_IPV6
_nx_nd_cache_interface_entries_delete(ip_ptr, index);/* ... */
#endif
tx_mutex_get(&(ip_ptr -> nx_ip_protection), TX_WAIT_FOREVER);
#ifndef NX_DISABLE_IPV4
#ifdef NX_ENABLE_IP_STATIC_ROUTING
for (i = 0; i < ip_ptr -> nx_ip_routing_table_entry_count; i++)
{
if (ip_ptr -> nx_ip_routing_table[i].nx_ip_routing_entry_ip_interface == interface_ptr)
{
for (j = i; j < ip_ptr -> nx_ip_routing_table_entry_count; j++)
{
ip_ptr -> nx_ip_routing_table[j].nx_ip_routing_dest_ip =
ip_ptr -> nx_ip_routing_table[j + 1].nx_ip_routing_dest_ip;
ip_ptr -> nx_ip_routing_table[j].nx_ip_routing_net_mask =
ip_ptr -> nx_ip_routing_table[j + 1].nx_ip_routing_net_mask;
ip_ptr -> nx_ip_routing_table[j].nx_ip_routing_next_hop_address =
ip_ptr -> nx_ip_routing_table[j + 1].nx_ip_routing_next_hop_address;
ip_ptr -> nx_ip_routing_table[j].nx_ip_routing_entry_ip_interface =
ip_ptr -> nx_ip_routing_table[j + 1].nx_ip_routing_entry_ip_interface;
}for (j = i; j < ip_ptr -> nx_ip_routing_table_entry_count; j++) { ... }
ip_ptr -> nx_ip_routing_table[j - 1].nx_ip_routing_dest_ip = 0;
ip_ptr -> nx_ip_routing_table[j - 1].nx_ip_routing_net_mask = 0;
ip_ptr -> nx_ip_routing_table[j - 1].nx_ip_routing_next_hop_address = 0;
ip_ptr -> nx_ip_routing_table[j - 1].nx_ip_routing_entry_ip_interface = NX_NULL;
ip_ptr -> nx_ip_routing_table_entry_count--;
}if (ip_ptr -> nx_ip_routing_table[i].nx_ip_routing_entry_ip_interface == interface_ptr) { ... }
}for (i = 0; i < ip_ptr -> nx_ip_routing_table_entry_count; i++) { ... }
/* ... */#endif /* ... */
#endif
#ifdef FEATURE_NX_IPV6
for (i = 0; i < NX_IPV6_DEFAULT_ROUTER_TABLE_SIZE; i++)
{
rt_entry = &ip_ptr -> nx_ipv6_default_router_table[i];
if (rt_entry -> nx_ipv6_default_router_entry_flag & NX_IPV6_ROUTE_TYPE_VALID)
{
if (rt_entry -> nx_ipv6_default_router_entry_interface_ptr == interface_ptr)
{
_nx_invalidate_destination_entry(ip_ptr, rt_entry -> nx_ipv6_default_router_entry_router_address);
rt_entry -> nx_ipv6_default_router_entry_flag = 0;
rt_entry -> nx_ipv6_default_router_entry_interface_ptr = NX_NULL;
ip_ptr -> nx_ipv6_default_router_table_size--;
}if (rt_entry -> nx_ipv6_default_router_entry_interface_ptr == interface_ptr) { ... }
}if (rt_entry -> nx_ipv6_default_router_entry_flag & NX_IPV6_ROUTE_TYPE_VALID) { ... }
}for (i = 0; i < NX_IPV6_DEFAULT_ROUTER_TABLE_SIZE; i++) { ... }
/* ... */#endif
#ifndef NX_DISABLE_IPV4
if (ip_ptr -> nx_ip_gateway_interface == interface_ptr)
{
ip_ptr -> nx_ip_gateway_interface = NX_NULL;
ip_ptr -> nx_ip_gateway_address = 0;
}if (ip_ptr -> nx_ip_gateway_interface == interface_ptr) { ... }
for (i = 0; i < NX_MAX_MULTICAST_GROUPS; i++)
{
if (ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_join_interface_list != interface_ptr)
{
continue;
}if (ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_join_interface_list != interface_ptr) { ... }
ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_join_count = 1;
_nx_igmp_multicast_interface_leave_internal(ip_ptr,
ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_join_list,
index);
}for (i = 0; i < NX_MAX_MULTICAST_GROUPS; i++) { ... }
/* ... */#endif
#ifdef NX_ENABLE_IPV6_MULTICAST
for (i = 0; i < NX_MAX_MULTICAST_GROUPS; i++)
{
if (ip_ptr -> nx_ipv6_multicast_entry[i].nx_ip_mld_join_interface_list == interface_ptr)
{
ip_ptr -> nx_ipv6_multicast_entry[i].nx_ip_mld_join_count = 0;
memset(ip_ptr -> nx_ipv6_multicast_entry[i].nx_ip_mld_join_list, 0, 4 * sizeof(ULONG));
ip_ptr -> nx_ipv6_multicast_groups_joined--;
driver_request.nx_ip_driver_ptr = ip_ptr;
driver_request.nx_ip_driver_command = NX_LINK_MULTICAST_LEAVE;
driver_request.nx_ip_driver_physical_address_msw = 0x00003333;
driver_request.nx_ip_driver_physical_address_lsw =
ip_ptr -> nx_ipv6_multicast_entry[i].nx_ip_mld_join_list[3];
driver_request.nx_ip_driver_interface = interface_ptr;
(interface_ptr -> nx_interface_link_driver_entry)(&driver_request);
ip_ptr -> nx_ipv6_multicast_entry[i].nx_ip_mld_join_interface_list = NX_NULL;
}if (ip_ptr -> nx_ipv6_multicast_entry[i].nx_ip_mld_join_interface_list == interface_ptr) { ... }
}for (i = 0; i < NX_MAX_MULTICAST_GROUPS; i++) { ... }
/* ... */#endif
driver_request.nx_ip_driver_ptr = ip_ptr;
driver_request.nx_ip_driver_command = NX_LINK_INTERFACE_DETACH;
driver_request.nx_ip_driver_interface = interface_ptr;
(interface_ptr -> nx_interface_link_driver_entry)(&driver_request);
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
next_ipv6_address = interface_ptr -> nxd_interface_ipv6_address_list_head;
while (next_ipv6_address)
{
ipv6_address = next_ipv6_address;
next_ipv6_address = next_ipv6_address -> nxd_ipv6_address_next;
memset(ipv6_address, 0, sizeof(NXD_IPV6_ADDRESS));
}while (next_ipv6_address) { ... }
memset(interface_ptr, 0, sizeof(NX_INTERFACE));
interface_ptr -> nx_interface_index = (UCHAR)index;
return(NX_SUCCESS);
}{ ... }