1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
127
128
129
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
162
163
164
165
166
167
168
169
170
171
172
173
174
|
/***************************************************************************
* Copyright (c) 2024 Microsoft Corporation
* Copyright (c) 2025-present Eclipse ThreadX Contributors
*
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
*
* SPDX-License-Identifier: MIT
**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/** */
/** NetX Component */
/** */
/** Address Resolution Protocol (ARP) */
/** */
/**************************************************************************/
/**************************************************************************/
#define NX_SOURCE_CODE
/* Include necessary system files. */
#include "nx_api.h"
#include "nx_arp.h"
#include "nx_packet.h"
#ifndef NX_DISABLE_IPV4
/**************************************************************************/
/* */
/* FUNCTION RELEASE */
/* */
/* _nx_arp_packet_send PORTABLE C */
/* 6.4.3 */
/* AUTHOR */
/* */
/* Yuxin Zhou, Microsoft Corporation */
/* */
/* DESCRIPTION */
/* */
/* This function builds an ARP packet and calls the associated driver */
/* to send it out on the specified network interface. */
/* */
/* INPUT */
/* */
/* ip_ptr Pointer to IP instance */
/* destination_ip Destination IP address */
/* nx_interface Interface to transmit out */
/* */
/* OUTPUT */
/* */
/* None */
/* */
/* CALLS */
/* */
/* _nx_packet_allocate Allocate a packet for the */
/* ARP request */
/* [ip_link_driver] User supplied link driver */
/* */
/* CALLED BY */
/* */
/* NetX Source Code */
/* */
/**************************************************************************/
VOID _nx_arp_packet_send(NX_IP *ip_ptr, ULONG destination_ip, NX_INTERFACE *nx_interface)
{
NX_PACKET *request_ptr;
ULONG *message_ptr;
NX_IP_DRIVER driver_request;
/* nx_interface must not be NX_NULL. */
NX_ASSERT(nx_interface != NX_NULL);
/* Allocate a packet to build the ARP message in. */
#ifdef NX_ENABLE_DUAL_PACKET_POOL
/* Allocate from auxiliary packet pool first. */
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 /* NX_ENABLE_DUAL_PACKET_POOL */
{
if (_nx_packet_allocate(ip_ptr -> nx_ip_default_packet_pool, &request_ptr, (NX_PHYSICAL_HEADER + NX_ARP_MESSAGE_SIZE), NX_NO_WAIT))
{
/* Error getting packet, so just get out! */
return;
}
}
#ifdef NX_ENABLE_DUAL_PACKET_POOL
else
{
/* Error getting packet, so just get out! */
return;
}
}
#endif /* NX_ENABLE_DUAL_PACKET_POOL */
/* Add debug information. */
NX_PACKET_DEBUG(__FILE__, __LINE__, request_ptr);
/* Stamp the packet with the outgoing interface information. */
/*lint -e{644} suppress variable might not be initialized, since "request_ptr" was initialized in _nx_packet_allocate. */
request_ptr -> nx_packet_address.nx_packet_interface_ptr = nx_interface;
#ifndef NX_DISABLE_ARP_INFO
/* Increment the ARP requests sent count. */
ip_ptr -> nx_ip_arp_requests_sent++;
#endif
/* If trace is enabled, insert this event into the trace buffer. */
NX_TRACE_IN_LINE_INSERT(NX_TRACE_INTERNAL_ARP_REQUEST_SEND, ip_ptr, destination_ip, request_ptr, 0, NX_TRACE_INTERNAL_EVENTS, 0, 0);
/* Build the ARP request packet. */
/* Setup the size of the ARP message. */
request_ptr -> nx_packet_length = NX_ARP_MESSAGE_SIZE;
/* Setup the prepend pointer. */
request_ptr -> nx_packet_prepend_ptr -= NX_ARP_MESSAGE_SIZE;
/* Setup the pointer to the message area. */
/*lint -e{927} -e{826} suppress cast of pointer to pointer, since it is necessary */
message_ptr = (ULONG *)request_ptr -> nx_packet_prepend_ptr;
/* Write the Hardware type into the message. */
*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;
/*lint -e{613} suppress possible use of null pointer, since nx_interface must not be NULL. */
*(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) |
(nx_interface -> nx_interface_ip_address >> 16);
*(message_ptr + 4) = (ULONG)(nx_interface -> nx_interface_ip_address << 16);
*(message_ptr + 5) = (ULONG)0;
*(message_ptr + 6) = (ULONG)destination_ip;
/* Endian swapping logic. If NX_LITTLE_ENDIAN is specified, these macros will
swap the endian of the ARP message. */
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));
/* Set up the driver request. */
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;
/* If trace is enabled, insert this event into the trace buffer. */
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);
/* Add debug information. */
NX_PACKET_DEBUG(__FILE__, __LINE__, request_ptr);
/* Send the ARP request to the driver. */
/*lint -e{613} suppress possible use of null pointer, since nx_interface must not be NULL. */
(nx_interface -> nx_interface_link_driver_entry)(&driver_request);
}
#endif /* !NX_DISABLE_IPV4 */
|