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
110
111
112
117
118
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
150
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
213
214
215
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
242
243
244
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_arp.h"
#include "nx_ip.h"
...
...
UINT _nx_arp_dynamic_entry_set(NX_IP *ip_ptr, ULONG ip_address,
ULONG physical_msw, ULONG physical_lsw)
{
#ifndef NX_DISABLE_IPV4
NX_ARP *arp_ptr;
NX_ARP *search_ptr;
NX_ARP *arp_list_head;
UINT index;
UINT status;
NX_INTERFACE *nx_interface = NX_NULL;
ULONG next_hop_address;
NX_TRACE_IN_LINE_INSERT(NX_TRACE_ARP_DYNAMIC_ENTRY_SET, ip_ptr, ip_address, physical_msw, physical_lsw, NX_TRACE_ARP_EVENTS, 0, 0);
next_hop_address = 0;
if (_nx_ip_route_find(ip_ptr, ip_address, &nx_interface, &next_hop_address) != NX_SUCCESS)
{
return(NX_IP_ADDRESS_ERROR);
}if (_nx_ip_route_find(ip_ptr, ip_address, &nx_interface, &next_hop_address) != NX_SUCCESS) { ... }
if (next_hop_address != ip_address)
{
return(NX_IP_ADDRESS_ERROR);
}if (next_hop_address != ip_address) { ... }
/* ... */
tx_mutex_get(&(ip_ptr -> nx_ip_protection), TX_WAIT_FOREVER);
index = (UINT)((ip_address + (ip_address >> 8)) & NX_ARP_TABLE_MASK);
arp_list_head = ip_ptr -> nx_ip_arp_table[index];
search_ptr = arp_list_head;
arp_ptr = NX_NULL;
while (search_ptr)
{
if (search_ptr -> nx_arp_ip_address == ip_address)
{
arp_ptr = search_ptr;
break;
}if (search_ptr -> nx_arp_ip_address == ip_address) { ... }
search_ptr = search_ptr -> nx_arp_active_next;
/* ... */
if (search_ptr == arp_list_head)
{
break;
}if (search_ptr == arp_list_head) { ... }
}while (search_ptr) { ... }
if (arp_ptr)
{
if (arp_ptr -> nx_arp_route_static == NX_TRUE)
{
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
return(NX_DUPLICATED_ENTRY);
}if (arp_ptr -> nx_arp_route_static == NX_TRUE) { ... }
}if (arp_ptr) { ... }
else
{
status = _nx_arp_entry_allocate(ip_ptr, &(ip_ptr -> nx_ip_arp_table[index]), NX_FALSE);
if (status != NX_SUCCESS)
{
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
return(status);
}if (status != NX_SUCCESS) { ... }
/* ... */
arp_ptr = (ip_ptr -> nx_ip_arp_table[index]) -> nx_arp_active_previous;
}else { ... }
arp_ptr -> nx_arp_ip_address = ip_address;
arp_ptr -> nx_arp_physical_address_msw = physical_msw;
arp_ptr -> nx_arp_physical_address_lsw = physical_lsw;
arp_ptr -> nx_arp_retries = 0;
arp_ptr -> nx_arp_ip_interface = nx_interface;
if ((physical_msw | physical_lsw) == 0)
{
/* ... */
arp_ptr -> nx_arp_entry_next_update = NX_ARP_UPDATE_RATE;
/* ... */
_nx_arp_packet_send(ip_ptr, ip_address, nx_interface);
}if ((physical_msw | physical_lsw) == 0) { ... }
else
{
arp_ptr -> nx_arp_entry_next_update = NX_ARP_EXPIRATION_RATE;
_nx_arp_queue_send(ip_ptr, arp_ptr);
}else { ... }
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
return(NX_SUCCESS);/* ... */
#else
NX_PARAMETER_NOT_USED(ip_ptr);
NX_PARAMETER_NOT_USED(ip_address);
NX_PARAMETER_NOT_USED(physical_msw);
NX_PARAMETER_NOT_USED(physical_lsw);
return(NX_NOT_SUPPORTED);/* ... */
#endif
}{ ... }