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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
130
131
132
133
134
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
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
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_arp.h"
#include "nx_packet.h"
#ifndef NX_DISABLE_IPV4...
...
UINT _nx_arp_probe_send(NX_IP *ip_ptr, UINT interface_index, ULONG probe_address)
{
NX_INTERFACE *nx_interface;
NX_PACKET *request_ptr;
ULONG *message_ptr;
NX_IP_DRIVER driver_request;
#ifdef NX_ENABLE_DUAL_PACKET_POOL
if (_nx_packet_allocate(ip_ptr -> nx_ip_auxiliary_packet_pool, &request_ptr, (NX_PHYSICAL_HEADER + NX_ARP_MESSAGE_SIZE), NX_NO_WAIT))
{
if (ip_ptr -> nx_ip_auxiliary_packet_pool != ip_ptr -> nx_ip_default_packet_pool)
#endif
{
if (_nx_packet_allocate(ip_ptr -> nx_ip_default_packet_pool, &request_ptr, (NX_PHYSICAL_HEADER + NX_ARP_MESSAGE_SIZE), NX_NO_WAIT))
{
return(NX_NO_PACKET);
}if (_nx_packet_allocate(ip_ptr -> nx_ip_default_packet_pool, &request_ptr, (NX_PHYSICAL_HEADER + NX_ARP_MESSAGE_SIZE), NX_NO_WAIT)) { ... }
...}
#ifdef NX_ENABLE_DUAL_PACKET_POOL
else
{
return(NX_NO_PACKET);
}else { ... }
}/* ... */
if (_nx_packet_allocate(ip_ptr -> nx_ip_auxiliary_packet_pool, &request_ptr, (NX_PHYSICAL_HEADER + NX_ARP_MESSAGE_SIZE), NX_NO_WAIT)) { ... }#endif
NX_PACKET_DEBUG(__FILE__, __LINE__, request_ptr);
tx_mutex_get(&(ip_ptr -> nx_ip_protection), TX_WAIT_FOREVER);
nx_interface = &(ip_ptr -> nx_ip_interface[interface_index]);
nx_interface -> nx_interface_ip_probe_address = probe_address;
request_ptr -> nx_packet_address.nx_packet_interface_ptr = nx_interface;
#ifndef NX_DISABLE_ARP_INFO
ip_ptr -> nx_ip_arp_requests_sent++;/* ... */
#endif
NX_TRACE_IN_LINE_INSERT(NX_TRACE_INTERNAL_ARP_REQUEST_SEND, ip_ptr, probe_address, request_ptr, 0, NX_TRACE_INTERNAL_EVENTS, 0, 0);
request_ptr -> nx_packet_length = NX_ARP_MESSAGE_SIZE;
request_ptr -> nx_packet_prepend_ptr -= NX_ARP_MESSAGE_SIZE;
message_ptr = (ULONG *)request_ptr -> nx_packet_prepend_ptr;
*message_ptr = (ULONG)(NX_ARP_HARDWARE_TYPE << 16) | (NX_ARP_PROTOCOL_TYPE);
*(message_ptr + 1) = (ULONG)(NX_ARP_HARDWARE_SIZE << 24) | (NX_ARP_PROTOCOL_SIZE << 16) |
NX_ARP_OPTION_REQUEST;
*(message_ptr + 2) = (ULONG)(nx_interface -> nx_interface_physical_address_msw << 16) |
(nx_interface -> nx_interface_physical_address_lsw >> 16);
*(message_ptr + 3) = (ULONG)(nx_interface -> nx_interface_physical_address_lsw << 16);
*(message_ptr + 4) = (ULONG)0;
*(message_ptr + 5) = (ULONG)0;
*(message_ptr + 6) = (ULONG)probe_address;
/* ... */
NX_CHANGE_ULONG_ENDIAN(*(message_ptr));
NX_CHANGE_ULONG_ENDIAN(*(message_ptr + 1));
NX_CHANGE_ULONG_ENDIAN(*(message_ptr + 2));
NX_CHANGE_ULONG_ENDIAN(*(message_ptr + 3));
NX_CHANGE_ULONG_ENDIAN(*(message_ptr + 4));
NX_CHANGE_ULONG_ENDIAN(*(message_ptr + 5));
NX_CHANGE_ULONG_ENDIAN(*(message_ptr + 6));
driver_request.nx_ip_driver_ptr = ip_ptr;
driver_request.nx_ip_driver_command = NX_LINK_ARP_SEND;
driver_request.nx_ip_driver_packet = request_ptr;
driver_request.nx_ip_driver_physical_address_msw = 0xFFFFUL;
driver_request.nx_ip_driver_physical_address_lsw = 0xFFFFFFFFUL;
driver_request.nx_ip_driver_interface = nx_interface;
NX_TRACE_IN_LINE_INSERT(NX_TRACE_INTERNAL_IO_DRIVER_ARP_SEND, ip_ptr, request_ptr, request_ptr -> nx_packet_length, 0, NX_TRACE_INTERNAL_EVENTS, 0, 0);
NX_PACKET_DEBUG(__FILE__, __LINE__, request_ptr);
(nx_interface -> nx_interface_link_driver_entry)(&driver_request);
tx_mutex_put(&(ip_ptr -> nx_ip_protection));
return(NX_SUCCESS);
}{ ... }
#endif/* ... */