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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
137
138
143
144
148
149
150
151
152
153
154
155
156
157
158
159
160
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
205
210
211
212
213
214
215
216
217
218
219
220
221
222
223
238
239
240
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
267
268
269
270
271
272
273
274
275
276
277
285
286
288
289
290
291
292
293
295
296
297
298
299
300
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_ipv6.h"
...
...
UINT _nxd_ipv6_address_set(NX_IP *ip_ptr, UINT interface_index, NXD_ADDRESS *ip_address, ULONG prefix_length, UINT *address_index)
{
#ifdef FEATURE_NX_IPV6
TX_INTERRUPT_SAVE_AREA
#ifdef NX_ENABLE_IPV6_ADDRESS_CHANGE_NOTIFY
VOID (*address_change_notify)(NX_IP *, UINT, UINT, UINT, ULONG *);
#endif
NXD_IPV6_ADDRESS *ipv6_addr;
NXD_IPV6_ADDRESS *interface_ipv6_address;
UINT index = (UINT)0xFFFFFFFF;
UINT i;
ULONG multicast_address[4];
tx_mutex_get(&(ip_ptr -> nx_ip_protection), TX_WAIT_FOREVER);
if (ip_address)
{
for (i = 0; i < NX_MAX_IPV6_ADDRESSES; i++)
{
if ((ip_ptr -> nx_ipv6_address[i].nxd_ipv6_address_valid) &&
(ip_ptr -> nx_ipv6_address[i].nxd_ipv6_address[0] == ip_address -> nxd_ip_address.v6[0]) &&
(ip_ptr -> nx_ipv6_address[i].nxd_ipv6_address[1] == ip_address -> nxd_ip_address.v6[1]) &&
(ip_ptr -> nx_ipv6_address[i].nxd_ipv6_address[2] == ip_address -> nxd_ip_address.v6[2]) &&
(ip_ptr -> nx_ipv6_address[i].nxd_ipv6_address[3] == ip_address -> nxd_ip_address.v6[3]))
{
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
return(NX_DUPLICATED_ENTRY);
}if ((ip_ptr -> nx_ipv6_address[i].nxd_ipv6_address_valid) && (ip_ptr -> nx_ipv6_address[i].nxd_ipv6_address[0] == ip_address -> nxd_ip_address.v6[0]) && (ip_ptr -> nx_ipv6_address[i].nxd_ipv6_address[1] == ip_address -> nxd_ip_address.v6[1]) && (ip_ptr -> nx_ipv6_address[i].nxd_ipv6_address[2] == ip_address -> nxd_ip_address.v6[2]) && (ip_ptr -> nx_ipv6_address[i].nxd_ipv6_address[3] == ip_address -> nxd_ip_address.v6[3])) { ... }
}for (i = 0; i < NX_MAX_IPV6_ADDRESSES; i++) { ... }
}if (ip_address) { ... }
for (i = 0; i < NX_MAX_IPV6_ADDRESSES; i++)
{
if (!ip_ptr -> nx_ipv6_address[i].nxd_ipv6_address_valid)
{
index = i;
break;
}if (!ip_ptr -> nx_ipv6_address[i].nxd_ipv6_address_valid) { ... }
}for (i = 0; i < NX_MAX_IPV6_ADDRESSES; i++) { ... }
if (index == (UINT)0xFFFFFFFF)
{
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
return(NX_NO_MORE_ENTRIES);
}if (index == (UINT)0xFFFFFFFF) { ... }
if (address_index)
{
*address_index = index;
}if (address_index) { ... }
ipv6_addr = &(ip_ptr -> nx_ipv6_address[index]);
if ((!ip_address) && (prefix_length == 10))
{
ULONG word2, word3;
/* ... */
word2 = ip_ptr -> nx_ip_interface[interface_index].nx_interface_physical_address_msw << 16 |
((ip_ptr -> nx_ip_interface[interface_index].nx_interface_physical_address_lsw & 0xFF000000) >> 16) | 0xFF;
word2 = (word2 & 0xFDFFFFFF) | (~(word2 | 0xFDFFFFFF));
word3 = (ip_ptr -> nx_ip_interface[interface_index].nx_interface_physical_address_lsw & 0x00FFFFFF) | 0xFE000000;
interface_ipv6_address = ip_ptr -> nx_ip_interface[interface_index].nxd_interface_ipv6_address_list_head;
while (interface_ipv6_address)
{
if ((interface_ipv6_address -> nxd_ipv6_address[0] == 0xFE800000) &&
(interface_ipv6_address -> nxd_ipv6_address[1] == 0x00000000) &&
(interface_ipv6_address -> nxd_ipv6_address[2] == word2) &&
(interface_ipv6_address -> nxd_ipv6_address[3] == word3))
{
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
return(NX_DUPLICATED_ENTRY);
}if ((interface_ipv6_address -> nxd_ipv6_address[0] == 0xFE800000) && (interface_ipv6_address -> nxd_ipv6_address[1] == 0x00000000) && (interface_ipv6_address -> nxd_ipv6_address[2] == word2) && (interface_ipv6_address -> nxd_ipv6_address[3] == word3)) { ... }
interface_ipv6_address = interface_ipv6_address -> nxd_ipv6_address_next;
}while (interface_ipv6_address) { ... }
ipv6_addr -> nxd_ipv6_address[0] = 0xFE800000;
ipv6_addr -> nxd_ipv6_address[1] = 0x00000000;
ipv6_addr -> nxd_ipv6_address[2] = word2;
ipv6_addr -> nxd_ipv6_address[3] = word3;
}if ((!ip_address) && (prefix_length == 10)) { ... }
else if (ip_address != NX_NULL)
{
ipv6_addr -> nxd_ipv6_address[0] = ip_address -> nxd_ip_address.v6[0];
ipv6_addr -> nxd_ipv6_address[1] = ip_address -> nxd_ip_address.v6[1];
ipv6_addr -> nxd_ipv6_address[2] = ip_address -> nxd_ip_address.v6[2];
ipv6_addr -> nxd_ipv6_address[3] = ip_address -> nxd_ip_address.v6[3];
}else if (ip_address != NX_NULL) { ... }
else
{
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
return(NX_IP_ADDRESS_ERROR);
}else { ... }
ipv6_addr -> nxd_ipv6_address_valid = NX_TRUE;
ipv6_addr -> nxd_ipv6_address_type = NX_IP_VERSION_V6;
ipv6_addr -> nxd_ipv6_address_prefix_length = (UCHAR)(prefix_length & 0xFF);
ipv6_addr -> nxd_ipv6_address_next = NX_NULL;
ipv6_addr -> nxd_ipv6_address_attached = &ip_ptr -> nx_ip_interface[interface_index];
interface_ipv6_address = ip_ptr -> nx_ip_interface[interface_index].nxd_interface_ipv6_address_list_head;
while (interface_ipv6_address)
{
/* ... */
if (interface_ipv6_address -> nxd_ipv6_address_next)
{
interface_ipv6_address = interface_ipv6_address -> nxd_ipv6_address_next;
}if (interface_ipv6_address -> nxd_ipv6_address_next) { ... }
else
{
interface_ipv6_address -> nxd_ipv6_address_next = ipv6_addr;
break;
}else { ... }
}while (interface_ipv6_address) { ... }
if (interface_ipv6_address == NX_NULL)
{
ip_ptr -> nx_ip_interface[interface_index].nxd_interface_ipv6_address_list_head = ipv6_addr;
}if (interface_ipv6_address == NX_NULL) { ... }
NX_TRACE_IN_LINE_INSERT(NXD_TRACE_IPV6_INTERFACE_ADDRESS_SET, ip_ptr, ipv6_addr -> nxd_ipv6_address[3], prefix_length, index, NX_TRACE_IP_EVENTS, 0, 0);
ipv6_addr -> nxd_ipv6_address_ConfigurationMethod = NX_IPV6_ADDRESS_MANUAL_CONFIG;
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
SET_SOLICITED_NODE_MULTICAST_ADDRESS(multicast_address, ipv6_addr -> nxd_ipv6_address);
_nx_ipv6_multicast_join(ip_ptr, &multicast_address[0], ipv6_addr -> nxd_ipv6_address_attached);
tx_mutex_get(&(ip_ptr -> nx_ip_protection), TX_WAIT_FOREVER);
TX_DISABLE
#ifndef NX_DISABLE_IPV6_DAD
/* ... */
if (ip_ptr -> nx_ip_icmpv6_packet_process)
{
ipv6_addr -> nxd_ipv6_address_state = NX_IPV6_ADDR_STATE_TENTATIVE;
ipv6_addr -> nxd_ipv6_address_DupAddrDetectTransmit = NX_IPV6_DAD_TRANSMITS;
NX_TRACE_IN_LINE_INSERT(NXD_TRACE_IPV6_INITIATE_DAD_PROCESS, ip_ptr, 0, 0, 0, NX_TRACE_INTERNAL_EVENTS, 0, 0);
}if (ip_ptr -> nx_ip_icmpv6_packet_process) { ... }
else
{
/* ... */
ipv6_addr -> nxd_ipv6_address_state = NX_IPV6_ADDR_STATE_VALID;
ipv6_addr -> nxd_ipv6_address_DupAddrDetectTransmit = 0;
}else { ... }
/* ... */#else
ipv6_addr -> nxd_ipv6_address_state = NX_IPV6_ADDR_STATE_VALID;/* ... */
#endif
TX_RESTORE
#ifdef NX_ENABLE_IPV6_ADDRESS_CHANGE_NOTIFY
address_change_notify = ip_ptr -> nx_ipv6_address_change_notify;/* ... */
#endif
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
#ifdef NX_ENABLE_IPV6_ADDRESS_CHANGE_NOTIFY
/* ... */
if (address_change_notify)
{
(address_change_notify)(ip_ptr, NX_IPV6_ADDRESS_MANUAL_CONFIG, interface_index, index, &ipv6_addr -> nxd_ipv6_address[0]);
}if (address_change_notify) { ... }
/* ... */#endif
return(NX_SUCCESS);
/* ... */
#else
NX_PARAMETER_NOT_USED(ip_ptr);
NX_PARAMETER_NOT_USED(interface_index);
NX_PARAMETER_NOT_USED(ip_address);
NX_PARAMETER_NOT_USED(prefix_length);
NX_PARAMETER_NOT_USED(address_index);
return(NX_NOT_SUPPORTED);
/* ... */
#endif
}{ ... }