1
10
13
14
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
111
112
124
125
136
137
142
143
144
145
146
147
148
149
150
151
154
155
156
157
158
159
160
161
162
163
164
165
166
168
169
170
171
172
173
174
175
176
177
184
185
190
191
192
193
194
195
196
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
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_ip.h"
#ifdef FEATURE_NX_IPV6
#include "nx_ipv6.h"
#endif
...
...
UINT _nx_ip_interface_attach(NX_IP *ip_ptr, CHAR *interface_name, ULONG ip_address, ULONG network_mask, VOID (*ip_link_driver)(struct NX_IP_DRIVER_STRUCT *))
{
INT i;
NX_INTERFACE *nx_interface = NX_NULL;
NX_IP_DRIVER driver_request;
UINT status = NX_SUCCESS;
#if defined(FEATURE_NX_IPV6) && !defined(NX_DISABLE_ICMPV6_ROUTER_SOLICITATION)
ULONG address[4];
#endif
#ifdef NX_DISABLE_IPV4
NX_PARAMETER_NOT_USED(ip_address);
NX_PARAMETER_NOT_USED(network_mask);/* ... */
#else
for (i = 0; i < NX_MAX_PHYSICAL_INTERFACES; i++)
{
if ((ip_ptr -> nx_ip_interface[i].nx_interface_ip_address == ip_address) &&
(ip_address != 0))
{
return(NX_DUPLICATED_ENTRY);
}if ((ip_ptr -> nx_ip_interface[i].nx_interface_ip_address == ip_address) && (ip_address != 0)) { ... }
}for (i = 0; i < NX_MAX_PHYSICAL_INTERFACES; i++) { ... }
/* ... */#endif
for (i = 0; i < NX_MAX_PHYSICAL_INTERFACES; i++)
{
nx_interface = &(ip_ptr -> nx_ip_interface[i]);
if (!(nx_interface -> nx_interface_valid))
{
break;
}if (!(nx_interface -> nx_interface_valid)) { ... }
}for (i = 0; i < NX_MAX_PHYSICAL_INTERFACES; i++) { ... }
if (i == NX_MAX_PHYSICAL_INTERFACES)
{
return(NX_NO_MORE_ENTRIES);
}if (i == NX_MAX_PHYSICAL_INTERFACES) { ... }
tx_mutex_get(&(ip_ptr -> nx_ip_protection), TX_WAIT_FOREVER);
nx_interface -> nx_interface_valid = NX_TRUE;
#ifndef NX_DISABLE_IPV4
nx_interface -> nx_interface_ip_address = ip_address;
nx_interface -> nx_interface_ip_network_mask = network_mask;
nx_interface -> nx_interface_ip_network = ip_address & network_mask;/* ... */
#endif
nx_interface -> nx_interface_link_driver_entry = ip_link_driver;
nx_interface -> nx_interface_name = interface_name;
NX_TRACE_IN_LINE_INSERT(NX_TRACE_IP_INTERFACE_ATTACH, ip_ptr, ip_address, i, 0, NX_TRACE_IP_EVENTS, 0, 0);
if (ip_ptr -> nx_ip_initialize_done == NX_TRUE)
{
#ifdef NX_ENABLE_INTERFACE_CAPABILITY
ip_ptr -> nx_ip_interface[i].nx_interface_capability_flag = 0;/* ... */
#endif
driver_request.nx_ip_driver_ptr = ip_ptr;
driver_request.nx_ip_driver_command = NX_LINK_INTERFACE_ATTACH;
driver_request.nx_ip_driver_interface = &(ip_ptr -> nx_ip_interface[i]);
(ip_ptr -> nx_ip_interface[i].nx_interface_link_driver_entry)(&driver_request);
#ifdef NX_ENABLE_TCPIP_OFFLOAD
if (ip_ptr -> nx_ip_interface[i].nx_interface_capability_flag & NX_INTERFACE_CAPABILITY_TCPIP_OFFLOAD)
{
ip_ptr -> nx_ip_interface[i].nx_interface_capability_flag |= NX_INTERFACE_CAPABILITY_CHECKSUM_ALL;
}if (ip_ptr -> nx_ip_interface[i].nx_interface_capability_flag & NX_INTERFACE_CAPABILITY_TCPIP_OFFLOAD) { ... }
/* ... */#endif
/* ... */
driver_request.nx_ip_driver_ptr = ip_ptr;
driver_request.nx_ip_driver_command = NX_LINK_INITIALIZE;
NX_TRACE_IN_LINE_INSERT(NX_TRACE_INTERNAL_IO_DRIVER_INITIALIZE, 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_ENABLE;
NX_TRACE_IN_LINE_INSERT(NX_TRACE_INTERNAL_IO_DRIVER_LINK_ENABLE, ip_ptr, 0, 0, 0, NX_TRACE_INTERNAL_EVENTS, 0, 0);
(ip_ptr -> nx_ip_interface[i].nx_interface_link_driver_entry)(&driver_request);
#if defined(FEATURE_NX_IPV6) && !defined(NX_DISABLE_ICMPV6_ROUTER_SOLICITATION)
address[0] = 0xFF020000;
address[1] = 0;
address[2] = 0;
address[3] = 1;
status = _nx_ipv6_multicast_join(ip_ptr, address, &ip_ptr -> nx_ip_interface[i]);
/* ... */
#endif
}if (ip_ptr -> nx_ip_initialize_done == NX_TRUE) { ... }
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
return(status);
}{ ... }