]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Universal/Network/Dhcp4Dxe/Dhcp4Impl.c
MdeModulePkg: Clean up source files
[mirror_edk2.git] / MdeModulePkg / Universal / Network / Dhcp4Dxe / Dhcp4Impl.c
CommitLineData
772db4bb 1/** @file\r
3e8c18da 2 This file implement the EFI_DHCP4_PROTOCOL interface.\r
e2851998 3\r
0ba795d2 4Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
e5eed7d3 5This program and the accompanying materials\r
772db4bb 6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
772db4bb 13**/\r
14\r
15\r
16#include "Dhcp4Impl.h"\r
17\r
f9204641 18/**\r
19 Returns the current operating mode and cached data packet for the EFI DHCPv4 Protocol driver.\r
e2851998 20\r
f9204641 21 The GetModeData() function returns the current operating mode and cached data\r
22 packet for the EFI DHCPv4 Protocol driver.\r
23\r
3e8c18da 24 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.\r
25 @param[out] Dhcp4ModeData Pointer to storage for the EFI_DHCP4_MODE_DATA structure.\r
f9204641 26\r
27 @retval EFI_SUCCESS The mode data was returned.\r
28 @retval EFI_INVALID_PARAMETER This is NULL.\r
29\r
30**/\r
31EFI_STATUS\r
32EFIAPI\r
33EfiDhcp4GetModeData (\r
34 IN EFI_DHCP4_PROTOCOL *This,\r
35 OUT EFI_DHCP4_MODE_DATA *Dhcp4ModeData\r
36 );\r
37\r
38/**\r
39 Initializes, changes, or resets the operational settings for the EFI DHCPv4 Protocol driver.\r
40\r
41 The Configure() function is used to initialize, change, or reset the operational\r
42 settings of the EFI DHCPv4 Protocol driver for the communication device on which\r
43 the EFI DHCPv4 Service Binding Protocol is installed. This function can be\r
44 successfully called only if both of the following are true:\r
45 * This instance of the EFI DHCPv4 Protocol driver is in the Dhcp4Stopped, Dhcp4Init,\r
46 Dhcp4InitReboot, or Dhcp4Bound states.\r
47 * No other EFI DHCPv4 Protocol driver instance that is controlled by this EFI\r
48 DHCPv4 Service Binding Protocol driver instance has configured this EFI DHCPv4\r
49 Protocol driver.\r
50 When this driver is in the Dhcp4Stopped state, it can transfer into one of the\r
51 following two possible initial states:\r
52 * Dhcp4Init\r
53 * Dhcp4InitReboot\r
54 The driver can transfer into these states by calling Configure() with a non-NULL\r
55 Dhcp4CfgData. The driver will transfer into the appropriate state based on the\r
56 supplied client network address in the ClientAddress parameter and DHCP options\r
57 in the OptionList parameter as described in RFC 2131.\r
58 When Configure() is called successfully while Dhcp4CfgData is set to NULL, the\r
59 default configuring data will be reset in the EFI DHCPv4 Protocol driver and\r
60 the state of the EFI DHCPv4 Protocol driver will not be changed. If one instance\r
61 wants to make it possible for another instance to configure the EFI DHCPv4 Protocol\r
62 driver, it must call this function with Dhcp4CfgData set to NULL.\r
63\r
3e8c18da 64 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.\r
65 @param[in] Dhcp4CfgData Pointer to the EFI_DHCP4_CONFIG_DATA.\r
f9204641 66\r
67 @retval EFI_SUCCESS The EFI DHCPv4 Protocol driver is now in the Dhcp4Init or\r
68 Dhcp4InitReboot state, if the original state of this driver\r
69 was Dhcp4Stopped and the value of Dhcp4CfgData was\r
70 not NULL. Otherwise, the state was left unchanged.\r
71 @retval EFI_ACCESS_DENIED This instance of the EFI DHCPv4 Protocol driver was not in the\r
72 Dhcp4Stopped, Dhcp4Init, Dhcp4InitReboot, or Dhcp4Bound state;\r
73 Or onother instance of this EFI DHCPv4 Protocol driver is already\r
74 in a valid configured state.\r
75 @retval EFI_INVALID_PARAMETER Some parameter is NULL.\r
76 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.\r
77 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.\r
78\r
79**/\r
80EFI_STATUS\r
81EFIAPI\r
82EfiDhcp4Configure (\r
83 IN EFI_DHCP4_PROTOCOL *This,\r
84 IN EFI_DHCP4_CONFIG_DATA *Dhcp4CfgData OPTIONAL\r
e2851998 85 );\r
f9204641 86\r
87/**\r
88 Starts the DHCP configuration process.\r
89\r
90 The Start() function starts the DHCP configuration process. This function can\r
91 be called only when the EFI DHCPv4 Protocol driver is in the Dhcp4Init or\r
92 Dhcp4InitReboot state.\r
93 If the DHCP process completes successfully, the state of the EFI DHCPv4 Protocol\r
94 driver will be transferred through Dhcp4Selecting and Dhcp4Requesting to the\r
95 Dhcp4Bound state. The CompletionEvent will then be signaled if it is not NULL.\r
96 If the process aborts, either by the user or by some unexpected network error,\r
97 the state is restored to the Dhcp4Init state. The Start() function can be called\r
98 again to restart the process.\r
99 Refer to RFC 2131 for precise state transitions during this process. At the\r
100 time when each event occurs in this process, the callback function that was set\r
101 by EFI_DHCP4_PROTOCOL.Configure() will be called and the user can take this\r
102 opportunity to control the process.\r
e2851998 103\r
3e8c18da 104 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.\r
105 @param[in] CompletionEvent If not NULL, indicates the event that will be signaled when the\r
106 EFI DHCPv4 Protocol driver is transferred into the\r
107 Dhcp4Bound state or when the DHCP process is aborted.\r
108 EFI_DHCP4_PROTOCOL.GetModeData() can be called to\r
109 check the completion status. If NULL,\r
110 EFI_DHCP4_PROTOCOL.Start() will wait until the driver\r
111 is transferred into the Dhcp4Bound state or the process fails.\r
f9204641 112\r
113 @retval EFI_SUCCESS The DHCP configuration process has started, or it has completed\r
114 when CompletionEvent is NULL.\r
115 @retval EFI_NOT_STARTED The EFI DHCPv4 Protocol driver is in the Dhcp4Stopped\r
116 state. EFI_DHCP4_PROTOCOL. Configure() needs to be called.\r
117 @retval EFI_INVALID_PARAMETER This is NULL.\r
118 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.\r
119 @retval EFI_TIMEOUT The DHCP configuration process failed because no response was\r
120 received from the server within the specified timeout value.\r
121 @retval EFI_ABORTED The user aborted the DHCP process.\r
122 @retval EFI_ALREADY_STARTED Some other EFI DHCPv4 Protocol instance already started the\r
123 DHCP process.\r
124 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.\r
125\r
126**/\r
127EFI_STATUS\r
128EFIAPI\r
129EfiDhcp4Start (\r
130 IN EFI_DHCP4_PROTOCOL *This,\r
131 IN EFI_EVENT CompletionEvent OPTIONAL\r
132 );\r
133\r
134/**\r
135 Extends the lease time by sending a request packet.\r
e2851998 136\r
f9204641 137 The RenewRebind() function is used to manually extend the lease time when the\r
138 EFI DHCPv4 Protocol driver is in the Dhcp4Bound state and the lease time has\r
139 not expired yet. This function will send a request packet to the previously\r
140 found server (or to any server when RebindRequest is TRUE) and transfer the\r
141 state into the Dhcp4Renewing state (or Dhcp4Rebinding when RebindingRequest is\r
142 TRUE). When a response is received, the state is returned to Dhcp4Bound.\r
143 If no response is received before the try count is exceeded (the RequestTryCount\r
144 field that is specified in EFI_DHCP4_CONFIG_DATA) but before the lease time that\r
145 was issued by the previous server expires, the driver will return to the Dhcp4Bound\r
146 state and the previous configuration is restored. The outgoing and incoming packets\r
147 can be captured by the EFI_DHCP4_CALLBACK function.\r
148\r
3e8c18da 149 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.\r
150 @param[in] RebindRequest If TRUE, this function broadcasts the request packets and enters\r
151 the Dhcp4Rebinding state. Otherwise, it sends a unicast\r
152 request packet and enters the Dhcp4Renewing state.\r
153 @param[in] CompletionEvent If not NULL, this event is signaled when the renew/rebind phase\r
154 completes or some error occurs.\r
155 EFI_DHCP4_PROTOCOL.GetModeData() can be called to\r
156 check the completion status. If NULL,\r
157 EFI_DHCP4_PROTOCOL.RenewRebind() will busy-wait\r
158 until the DHCP process finishes.\r
f9204641 159\r
160 @retval EFI_SUCCESS The EFI DHCPv4 Protocol driver is now in the\r
161 Dhcp4Renewing state or is back to the Dhcp4Bound state.\r
162 @retval EFI_NOT_STARTED The EFI DHCPv4 Protocol driver is in the Dhcp4Stopped\r
163 state. EFI_DHCP4_PROTOCOL.Configure() needs to\r
164 be called.\r
165 @retval EFI_INVALID_PARAMETER This is NULL.\r
166 @retval EFI_TIMEOUT There was no response from the server when the try count was\r
167 exceeded.\r
168 @retval EFI_ACCESS_DENIED The driver is not in the Dhcp4Bound state.\r
169 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.\r
170\r
171**/\r
172EFI_STATUS\r
173EFIAPI\r
174EfiDhcp4RenewRebind (\r
175 IN EFI_DHCP4_PROTOCOL *This,\r
176 IN BOOLEAN RebindRequest,\r
177 IN EFI_EVENT CompletionEvent OPTIONAL\r
178 );\r
179\r
180/**\r
181 Releases the current address configuration.\r
182\r
183 The Release() function releases the current configured IP address by doing either\r
184 of the following:\r
185 * Sending a DHCPRELEASE packet when the EFI DHCPv4 Protocol driver is in the\r
186 Dhcp4Bound state\r
187 * Setting the previously assigned IP address that was provided with the\r
188 EFI_DHCP4_PROTOCOL.Configure() function to 0.0.0.0 when the driver is in\r
189 Dhcp4InitReboot state\r
190 After a successful call to this function, the EFI DHCPv4 Protocol driver returns\r
191 to the Dhcp4Init state and any subsequent incoming packets will be discarded silently.\r
192\r
3e8c18da 193 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.\r
f9204641 194\r
195 @retval EFI_SUCCESS The EFI DHCPv4 Protocol driver is now in the Dhcp4Init phase.\r
196 @retval EFI_INVALID_PARAMETER This is NULL.\r
197 @retval EFI_ACCESS_DENIED The EFI DHCPv4 Protocol driver is not Dhcp4InitReboot state.\r
198 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.\r
199\r
200**/\r
201EFI_STATUS\r
202EFIAPI\r
203EfiDhcp4Release (\r
204 IN EFI_DHCP4_PROTOCOL *This\r
205 );\r
206\r
207/**\r
208 Stops the current address configuration.\r
e2851998 209\r
f9204641 210 The Stop() function is used to stop the DHCP configuration process. After this\r
211 function is called successfully, the EFI DHCPv4 Protocol driver is transferred\r
212 into the Dhcp4Stopped state. EFI_DHCP4_PROTOCOL.Configure() needs to be called\r
213 before DHCP configuration process can be started again. This function can be\r
214 called when the EFI DHCPv4 Protocol driver is in any state.\r
215\r
3e8c18da 216 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.\r
f9204641 217\r
218 @retval EFI_SUCCESS The EFI DHCPv4 Protocol driver is now in the Dhcp4Stopped phase.\r
219 @retval EFI_INVALID_PARAMETER This is NULL.\r
220\r
221**/\r
222EFI_STATUS\r
223EFIAPI\r
224EfiDhcp4Stop (\r
225 IN EFI_DHCP4_PROTOCOL *This\r
226 );\r
227\r
228/**\r
229 Builds a DHCP packet, given the options to be appended or deleted or replaced.\r
230\r
231 The Build() function is used to assemble a new packet from the original packet\r
232 by replacing or deleting existing options or appending new options. This function\r
233 does not change any state of the EFI DHCPv4 Protocol driver and can be used at\r
234 any time.\r
235\r
3e8c18da 236 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.\r
237 @param[in] SeedPacket Initial packet to be used as a base for building new packet.\r
238 @param[in] DeleteCount Number of opcodes in the DeleteList.\r
239 @param[in] DeleteList List of opcodes to be deleted from the seed packet.\r
240 Ignored if DeleteCount is zero.\r
241 @param[in] AppendCount Number of entries in the OptionList.\r
242 @param[in] AppendList Pointer to a DHCP option list to be appended to SeedPacket.\r
243 If SeedPacket also contains options in this list, they are\r
244 replaced by new options (except pad option). Ignored if\r
245 AppendCount is zero. Type EFI_DHCP4_PACKET_OPTION\r
246 @param[out] NewPacket Pointer to storage for the pointer to the new allocated packet.\r
247 Use the EFI Boot Service FreePool() on the resulting pointer\r
248 when done with the packet.\r
f9204641 249\r
250 @retval EFI_SUCCESS The new packet was built.\r
251 @retval EFI_OUT_OF_RESOURCES Storage for the new packet could not be allocated.\r
252 @retval EFI_INVALID_PARAMETER Some parameter is NULL.\r
253\r
254**/\r
255EFI_STATUS\r
256EFIAPI\r
257EfiDhcp4Build (\r
258 IN EFI_DHCP4_PROTOCOL *This,\r
259 IN EFI_DHCP4_PACKET *SeedPacket,\r
260 IN UINT32 DeleteCount,\r
261 IN UINT8 *DeleteList OPTIONAL,\r
262 IN UINT32 AppendCount,\r
263 IN EFI_DHCP4_PACKET_OPTION *AppendList[] OPTIONAL,\r
264 OUT EFI_DHCP4_PACKET **NewPacket\r
265 );\r
e2851998 266\r
3e8c18da 267/**\r
f9204641 268 Transmits a DHCP formatted packet and optionally waits for responses.\r
e2851998 269\r
f9204641 270 The TransmitReceive() function is used to transmit a DHCP packet and optionally\r
271 wait for the response from servers. This function does not change the state of\r
272 the EFI DHCPv4 Protocol driver and thus can be used at any time.\r
273\r
3e8c18da 274 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.\r
275 @param[in] Token Pointer to the EFI_DHCP4_TRANSMIT_RECEIVE_TOKEN structure.\r
f9204641 276\r
277 @retval EFI_SUCCESS The packet was successfully queued for transmission.\r
278 @retval EFI_INVALID_PARAMETER Some parameter is NULL.\r
279 @retval EFI_NOT_READY The previous call to this function has not finished yet. Try to call\r
280 this function after collection process completes.\r
281 @retval EFI_NO_MAPPING The default station address is not available yet.\r
282 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.\r
283 @retval Others Some other unexpected error occurred.\r
284\r
285**/\r
286EFI_STATUS\r
287EFIAPI\r
288EfiDhcp4TransmitReceive (\r
289 IN EFI_DHCP4_PROTOCOL *This,\r
290 IN EFI_DHCP4_TRANSMIT_RECEIVE_TOKEN *Token\r
291 );\r
292\r
293/**\r
294 Parses the packed DHCP option data.\r
e2851998 295\r
f9204641 296 The Parse() function is used to retrieve the option list from a DHCP packet.\r
51195fbe 297 If *OptionCount isn't zero, and there is enough space for all the DHCP options\r
f9204641 298 in the Packet, each element of PacketOptionList is set to point to somewhere in\r
299 the Packet->Dhcp4.Option where a new DHCP option begins. If RFC3396 is supported,\r
300 the caller should reassemble the parsed DHCP options to get the finial result.\r
51195fbe 301 If *OptionCount is zero or there isn't enough space for all of them, the number\r
f9204641 302 of DHCP options in the Packet is returned in OptionCount.\r
303\r
304 @param This Pointer to the EFI_DHCP4_PROTOCOL instance.\r
305 @param Packet Pointer to packet to be parsed.\r
306 @param OptionCount On input, the number of entries in the PacketOptionList.\r
307 On output, the number of entries that were written into the\r
308 PacketOptionList.\r
309 @param PacketOptionList List of packet option entries to be filled in. End option or pad\r
310 options are not included.\r
311\r
312 @retval EFI_SUCCESS The packet was successfully parsed.\r
313 @retval EFI_INVALID_PARAMETER Some parameter is NULL.\r
314 @retval EFI_BUFFER_TOO_SMALL One or more of the following conditions is TRUE:\r
315 1) *OptionCount is smaller than the number of options that\r
316 were found in the Packet.\r
317 2) PacketOptionList is NULL.\r
318\r
319**/\r
320EFI_STATUS\r
321EFIAPI\r
322EfiDhcp4Parse (\r
323 IN EFI_DHCP4_PROTOCOL *This,\r
324 IN EFI_DHCP4_PACKET *Packet,\r
325 IN OUT UINT32 *OptionCount,\r
326 OUT EFI_DHCP4_PACKET_OPTION *PacketOptionList[] OPTIONAL\r
327 );\r
328\r
329EFI_DHCP4_PROTOCOL mDhcp4ProtocolTemplate = {\r
330 EfiDhcp4GetModeData,\r
331 EfiDhcp4Configure,\r
332 EfiDhcp4Start,\r
333 EfiDhcp4RenewRebind,\r
334 EfiDhcp4Release,\r
335 EfiDhcp4Stop,\r
336 EfiDhcp4Build,\r
337 EfiDhcp4TransmitReceive,\r
338 EfiDhcp4Parse\r
339};\r
772db4bb 340\r
341/**\r
f9204641 342 Returns the current operating mode and cached data packet for the EFI DHCPv4 Protocol driver.\r
e2851998 343\r
f9204641 344 The GetModeData() function returns the current operating mode and cached data\r
345 packet for the EFI DHCPv4 Protocol driver.\r
772db4bb 346\r
3e8c18da 347 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.\r
348 @param[out] Dhcp4ModeData Pointer to storage for the EFI_DHCP4_MODE_DATA structure.\r
772db4bb 349\r
f9204641 350 @retval EFI_SUCCESS The mode data was returned.\r
351 @retval EFI_INVALID_PARAMETER This is NULL.\r
772db4bb 352\r
353**/\r
772db4bb 354EFI_STATUS\r
355EFIAPI\r
356EfiDhcp4GetModeData (\r
357 IN EFI_DHCP4_PROTOCOL *This,\r
358 OUT EFI_DHCP4_MODE_DATA *Dhcp4ModeData\r
359 )\r
360{\r
361 DHCP_PROTOCOL *Instance;\r
362 DHCP_SERVICE *DhcpSb;\r
363 DHCP_PARAMETER *Para;\r
364 EFI_TPL OldTpl;\r
365 IP4_ADDR Ip;\r
366\r
367 //\r
368 // First validate the parameters.\r
369 //\r
370 if ((This == NULL) || (Dhcp4ModeData == NULL)) {\r
371 return EFI_INVALID_PARAMETER;\r
372 }\r
373\r
374 Instance = DHCP_INSTANCE_FROM_THIS (This);\r
982a9eae 375\r
e48e37fc 376 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);\r
772db4bb 377 DhcpSb = Instance->Service;\r
378\r
379 //\r
380 // Caller can use GetModeData to retrieve current DHCP states\r
381 // no matter whether it is the active child or not.\r
382 //\r
f9204641 383 Dhcp4ModeData->State = (EFI_DHCP4_STATE) DhcpSb->DhcpState;\r
687a2e5f 384 CopyMem (&Dhcp4ModeData->ConfigData, &DhcpSb->ActiveConfig, sizeof (Dhcp4ModeData->ConfigData));\r
385 CopyMem (&Dhcp4ModeData->ClientMacAddress, &DhcpSb->Mac, sizeof (Dhcp4ModeData->ClientMacAddress));\r
772db4bb 386\r
387 Ip = HTONL (DhcpSb->ClientAddr);\r
e48e37fc 388 CopyMem (&Dhcp4ModeData->ClientAddress, &Ip, sizeof (EFI_IPv4_ADDRESS));\r
772db4bb 389\r
390 Ip = HTONL (DhcpSb->Netmask);\r
e48e37fc 391 CopyMem (&Dhcp4ModeData->SubnetMask, &Ip, sizeof (EFI_IPv4_ADDRESS));\r
772db4bb 392\r
393 Ip = HTONL (DhcpSb->ServerAddr);\r
e48e37fc 394 CopyMem (&Dhcp4ModeData->ServerAddress, &Ip, sizeof (EFI_IPv4_ADDRESS));\r
772db4bb 395\r
396 Para = DhcpSb->Para;\r
397\r
398 if (Para != NULL) {\r
399 Ip = HTONL (Para->Router);\r
e48e37fc 400 CopyMem (&Dhcp4ModeData->RouterAddress, &Ip, sizeof (EFI_IPv4_ADDRESS));\r
f9204641 401 Dhcp4ModeData->LeaseTime = Para->Lease;\r
772db4bb 402 } else {\r
e48e37fc 403 ZeroMem (&Dhcp4ModeData->RouterAddress, sizeof (EFI_IPv4_ADDRESS));\r
f9204641 404 Dhcp4ModeData->LeaseTime = 0xffffffff;\r
772db4bb 405 }\r
406\r
407 Dhcp4ModeData->ReplyPacket = DhcpSb->Selected;\r
408\r
e48e37fc 409 gBS->RestoreTPL (OldTpl);\r
772db4bb 410 return EFI_SUCCESS;\r
411}\r
412\r
413\r
414/**\r
415 Free the resource related to the configure parameters.\r
416 DHCP driver will make a copy of the user's configure\r
417 such as the time out value.\r
418\r
419 @param Config The DHCP configure data\r
420\r
772db4bb 421**/\r
422VOID\r
423DhcpCleanConfigure (\r
f9204641 424 IN OUT EFI_DHCP4_CONFIG_DATA *Config\r
772db4bb 425 )\r
426{\r
427 UINT32 Index;\r
428\r
429 if (Config->DiscoverTimeout != NULL) {\r
a4df47f1 430 FreePool (Config->DiscoverTimeout);\r
772db4bb 431 }\r
432\r
433 if (Config->RequestTimeout != NULL) {\r
a4df47f1 434 FreePool (Config->RequestTimeout);\r
772db4bb 435 }\r
436\r
437 if (Config->OptionList != NULL) {\r
438 for (Index = 0; Index < Config->OptionCount; Index++) {\r
439 if (Config->OptionList[Index] != NULL) {\r
a4df47f1 440 FreePool (Config->OptionList[Index]);\r
772db4bb 441 }\r
442 }\r
443\r
a4df47f1 444 FreePool (Config->OptionList);\r
772db4bb 445 }\r
446\r
e48e37fc 447 ZeroMem (Config, sizeof (EFI_DHCP4_CONFIG_DATA));\r
772db4bb 448}\r
449\r
450\r
451/**\r
452 Allocate memory for configure parameter such as timeout value for Dst,\r
453 then copy the configure parameter from Src to Dst.\r
454\r
3e8c18da 455 @param[out] Dst The destination DHCP configure data.\r
456 @param[in] Src The source DHCP configure data.\r
772db4bb 457\r
458 @retval EFI_OUT_OF_RESOURCES Failed to allocate memory.\r
459 @retval EFI_SUCCESS The configure is copied.\r
460\r
461**/\r
462EFI_STATUS\r
463DhcpCopyConfigure (\r
f9204641 464 OUT EFI_DHCP4_CONFIG_DATA *Dst,\r
465 IN EFI_DHCP4_CONFIG_DATA *Src\r
772db4bb 466 )\r
467{\r
468 EFI_DHCP4_PACKET_OPTION **DstOptions;\r
469 EFI_DHCP4_PACKET_OPTION **SrcOptions;\r
cd7bfc2c 470 UINTN Len;\r
772db4bb 471 UINT32 Index;\r
472\r
72030458 473 CopyMem (Dst, Src, sizeof (*Dst));\r
772db4bb 474 Dst->DiscoverTimeout = NULL;\r
475 Dst->RequestTimeout = NULL;\r
476 Dst->OptionList = NULL;\r
477\r
478 //\r
479 // Allocate a memory then copy DiscoverTimeout to it\r
480 //\r
481 if (Src->DiscoverTimeout != NULL) {\r
482 Len = Src->DiscoverTryCount * sizeof (UINT32);\r
e48e37fc 483 Dst->DiscoverTimeout = AllocatePool (Len);\r
772db4bb 484\r
485 if (Dst->DiscoverTimeout == NULL) {\r
486 return EFI_OUT_OF_RESOURCES;\r
487 }\r
488\r
489 for (Index = 0; Index < Src->DiscoverTryCount; Index++) {\r
36ee91ca 490 Dst->DiscoverTimeout[Index] = MAX (Src->DiscoverTimeout[Index], 1);\r
772db4bb 491 }\r
492 }\r
493\r
494 //\r
495 // Allocate a memory then copy RequestTimeout to it\r
496 //\r
497 if (Src->RequestTimeout != NULL) {\r
498 Len = Src->RequestTryCount * sizeof (UINT32);\r
e48e37fc 499 Dst->RequestTimeout = AllocatePool (Len);\r
772db4bb 500\r
501 if (Dst->RequestTimeout == NULL) {\r
502 goto ON_ERROR;\r
503 }\r
504\r
505 for (Index = 0; Index < Src->RequestTryCount; Index++) {\r
36ee91ca 506 Dst->RequestTimeout[Index] = MAX (Src->RequestTimeout[Index], 1);\r
772db4bb 507 }\r
508 }\r
509\r
510 //\r
511 // Allocate an array of dhcp option point, then allocate memory\r
512 // for each option and copy the source option to it\r
513 //\r
514 if (Src->OptionList != NULL) {\r
515 Len = Src->OptionCount * sizeof (EFI_DHCP4_PACKET_OPTION *);\r
e48e37fc 516 Dst->OptionList = AllocateZeroPool (Len);\r
772db4bb 517\r
518 if (Dst->OptionList == NULL) {\r
519 goto ON_ERROR;\r
520 }\r
521\r
522 DstOptions = Dst->OptionList;\r
523 SrcOptions = Src->OptionList;\r
524\r
525 for (Index = 0; Index < Src->OptionCount; Index++) {\r
36ee91ca 526 Len = sizeof (EFI_DHCP4_PACKET_OPTION) + MAX (SrcOptions[Index]->Length - 1, 0);\r
772db4bb 527\r
e48e37fc 528 DstOptions[Index] = AllocatePool (Len);\r
772db4bb 529\r
530 if (DstOptions[Index] == NULL) {\r
531 goto ON_ERROR;\r
532 }\r
533\r
e48e37fc 534 CopyMem (DstOptions[Index], SrcOptions[Index], Len);\r
772db4bb 535 }\r
536 }\r
537\r
538 return EFI_SUCCESS;\r
539\r
540ON_ERROR:\r
541 DhcpCleanConfigure (Dst);\r
542 return EFI_OUT_OF_RESOURCES;\r
543}\r
544\r
545\r
546/**\r
547 Give up the control of the DHCP service to let other child\r
548 resume. Don't change the service's DHCP state and the Client\r
549 address and option list configure as required by RFC2131.\r
550\r
551 @param DhcpSb The DHCP service instance.\r
552\r
772db4bb 553**/\r
554VOID\r
555DhcpYieldControl (\r
556 IN DHCP_SERVICE *DhcpSb\r
557 )\r
558{\r
559 EFI_DHCP4_CONFIG_DATA *Config;\r
772db4bb 560\r
772db4bb 561 Config = &DhcpSb->ActiveConfig;\r
562\r
563 DhcpSb->ServiceState = DHCP_UNCONFIGED;\r
564 DhcpSb->ActiveChild = NULL;\r
565\r
566 if (Config->DiscoverTimeout != NULL) {\r
a4df47f1 567 FreePool (Config->DiscoverTimeout);\r
772db4bb 568\r
569 Config->DiscoverTryCount = 0;\r
570 Config->DiscoverTimeout = NULL;\r
571 }\r
572\r
573 if (Config->RequestTimeout != NULL) {\r
a4df47f1 574 FreePool (Config->RequestTimeout);\r
772db4bb 575\r
576 Config->RequestTryCount = 0;\r
577 Config->RequestTimeout = NULL;\r
578 }\r
579\r
580 Config->Dhcp4Callback = NULL;\r
581 Config->CallbackContext = NULL;\r
582}\r
583\r
584\r
585/**\r
f9204641 586 Initializes, changes, or resets the operational settings for the EFI DHCPv4 Protocol driver.\r
587\r
588 The Configure() function is used to initialize, change, or reset the operational\r
589 settings of the EFI DHCPv4 Protocol driver for the communication device on which\r
590 the EFI DHCPv4 Service Binding Protocol is installed. This function can be\r
591 successfully called only if both of the following are true:\r
592 * This instance of the EFI DHCPv4 Protocol driver is in the Dhcp4Stopped, Dhcp4Init,\r
593 Dhcp4InitReboot, or Dhcp4Bound states.\r
594 * No other EFI DHCPv4 Protocol driver instance that is controlled by this EFI\r
595 DHCPv4 Service Binding Protocol driver instance has configured this EFI DHCPv4\r
596 Protocol driver.\r
597 When this driver is in the Dhcp4Stopped state, it can transfer into one of the\r
598 following two possible initial states:\r
599 * Dhcp4Init\r
600 * Dhcp4InitReboot\r
601 The driver can transfer into these states by calling Configure() with a non-NULL\r
602 Dhcp4CfgData. The driver will transfer into the appropriate state based on the\r
603 supplied client network address in the ClientAddress parameter and DHCP options\r
604 in the OptionList parameter as described in RFC 2131.\r
605 When Configure() is called successfully while Dhcp4CfgData is set to NULL, the\r
606 default configuring data will be reset in the EFI DHCPv4 Protocol driver and\r
607 the state of the EFI DHCPv4 Protocol driver will not be changed. If one instance\r
608 wants to make it possible for another instance to configure the EFI DHCPv4 Protocol\r
609 driver, it must call this function with Dhcp4CfgData set to NULL.\r
610\r
3e8c18da 611 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.\r
612 @param[in] Dhcp4CfgData Pointer to the EFI_DHCP4_CONFIG_DATA.\r
f9204641 613\r
614 @retval EFI_SUCCESS The EFI DHCPv4 Protocol driver is now in the Dhcp4Init or\r
615 Dhcp4InitReboot state, if the original state of this driver\r
616 was Dhcp4Stopped and the value of Dhcp4CfgData was\r
617 not NULL. Otherwise, the state was left unchanged.\r
618 @retval EFI_ACCESS_DENIED This instance of the EFI DHCPv4 Protocol driver was not in the\r
619 Dhcp4Stopped, Dhcp4Init, Dhcp4InitReboot, or Dhcp4Bound state;\r
620 Or onother instance of this EFI DHCPv4 Protocol driver is already\r
621 in a valid configured state.\r
622 @retval EFI_INVALID_PARAMETER Some parameter is NULL.\r
623 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.\r
624 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.\r
772db4bb 625\r
626**/\r
772db4bb 627EFI_STATUS\r
628EFIAPI\r
629EfiDhcp4Configure (\r
630 IN EFI_DHCP4_PROTOCOL *This,\r
631 IN EFI_DHCP4_CONFIG_DATA *Dhcp4CfgData OPTIONAL\r
632 )\r
633{\r
634 EFI_DHCP4_CONFIG_DATA *Config;\r
635 DHCP_PROTOCOL *Instance;\r
636 DHCP_SERVICE *DhcpSb;\r
637 EFI_STATUS Status;\r
638 EFI_TPL OldTpl;\r
639 UINT32 Index;\r
640 IP4_ADDR Ip;\r
641\r
642 //\r
643 // First validate the parameters\r
644 //\r
645 if (This == NULL) {\r
646 return EFI_INVALID_PARAMETER;\r
647 }\r
648\r
649 if (Dhcp4CfgData != NULL) {\r
e2851998 650 if ((Dhcp4CfgData->DiscoverTryCount != 0) && (Dhcp4CfgData->DiscoverTimeout == NULL)) {\r
772db4bb 651 return EFI_INVALID_PARAMETER;\r
652 }\r
653\r
e2851998 654 if ((Dhcp4CfgData->RequestTryCount != 0) && (Dhcp4CfgData->RequestTimeout == NULL)) {\r
772db4bb 655 return EFI_INVALID_PARAMETER;\r
656 }\r
657\r
e2851998 658 if ((Dhcp4CfgData->OptionCount != 0) && (Dhcp4CfgData->OptionList == NULL)) {\r
772db4bb 659 return EFI_INVALID_PARAMETER;\r
660 }\r
661\r
e48e37fc 662 CopyMem (&Ip, &Dhcp4CfgData->ClientAddress, sizeof (IP4_ADDR));\r
01b5ac88 663 if (IP4_IS_LOCAL_BROADCAST(NTOHL (Ip))) {\r
772db4bb 664 return EFI_INVALID_PARAMETER;\r
665 }\r
666 }\r
667\r
668 Instance = DHCP_INSTANCE_FROM_THIS (This);\r
669\r
670 if (Instance->Signature != DHCP_PROTOCOL_SIGNATURE) {\r
671 return EFI_INVALID_PARAMETER;\r
672 }\r
673\r
e48e37fc 674 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);\r
772db4bb 675\r
676 DhcpSb = Instance->Service;\r
677 Config = &DhcpSb->ActiveConfig;\r
678\r
679 Status = EFI_ACCESS_DENIED;\r
680\r
681 if ((DhcpSb->DhcpState != Dhcp4Stopped) &&\r
682 (DhcpSb->DhcpState != Dhcp4Init) &&\r
683 (DhcpSb->DhcpState != Dhcp4InitReboot) &&\r
684 (DhcpSb->DhcpState != Dhcp4Bound)) {\r
685\r
686 goto ON_EXIT;\r
687 }\r
688\r
689 if ((DhcpSb->ActiveChild != NULL) && (DhcpSb->ActiveChild != Instance)) {\r
690 goto ON_EXIT;\r
691 }\r
692\r
693 if (Dhcp4CfgData != NULL) {\r
694 Status = EFI_OUT_OF_RESOURCES;\r
695 DhcpCleanConfigure (Config);\r
696\r
697 if (EFI_ERROR (DhcpCopyConfigure (Config, Dhcp4CfgData))) {\r
698 goto ON_EXIT;\r
699 }\r
700\r
701 DhcpSb->UserOptionLen = 0;\r
702\r
703 for (Index = 0; Index < Dhcp4CfgData->OptionCount; Index++) {\r
704 DhcpSb->UserOptionLen += Dhcp4CfgData->OptionList[Index]->Length + 2;\r
705 }\r
706\r
707 DhcpSb->ActiveChild = Instance;\r
708\r
709 if (DhcpSb->DhcpState == Dhcp4Stopped) {\r
710 DhcpSb->ClientAddr = EFI_NTOHL (Dhcp4CfgData->ClientAddress);\r
711\r
712 if (DhcpSb->ClientAddr != 0) {\r
713 DhcpSb->DhcpState = Dhcp4InitReboot;\r
714 } else {\r
715 DhcpSb->DhcpState = Dhcp4Init;\r
716 }\r
717 }\r
718\r
719 DhcpSb->ServiceState = DHCP_CONFIGED;\r
720 Status = EFI_SUCCESS;\r
721\r
722 } else if (DhcpSb->ActiveChild == Instance) {\r
723 Status = EFI_SUCCESS;\r
724 DhcpYieldControl (DhcpSb);\r
725 }\r
726\r
727ON_EXIT:\r
e48e37fc 728 gBS->RestoreTPL (OldTpl);\r
772db4bb 729 return Status;\r
730}\r
731\r
732\r
733/**\r
f9204641 734 Starts the DHCP configuration process.\r
735\r
736 The Start() function starts the DHCP configuration process. This function can\r
737 be called only when the EFI DHCPv4 Protocol driver is in the Dhcp4Init or\r
738 Dhcp4InitReboot state.\r
739 If the DHCP process completes successfully, the state of the EFI DHCPv4 Protocol\r
740 driver will be transferred through Dhcp4Selecting and Dhcp4Requesting to the\r
741 Dhcp4Bound state. The CompletionEvent will then be signaled if it is not NULL.\r
742 If the process aborts, either by the user or by some unexpected network error,\r
743 the state is restored to the Dhcp4Init state. The Start() function can be called\r
744 again to restart the process.\r
745 Refer to RFC 2131 for precise state transitions during this process. At the\r
746 time when each event occurs in this process, the callback function that was set\r
747 by EFI_DHCP4_PROTOCOL.Configure() will be called and the user can take this\r
748 opportunity to control the process.\r
e2851998 749\r
3e8c18da 750 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.\r
751 @param[in] CompletionEvent If not NULL, indicates the event that will be signaled when the\r
752 EFI DHCPv4 Protocol driver is transferred into the\r
753 Dhcp4Bound state or when the DHCP process is aborted.\r
754 EFI_DHCP4_PROTOCOL.GetModeData() can be called to\r
755 check the completion status. If NULL,\r
756 EFI_DHCP4_PROTOCOL.Start() will wait until the driver\r
757 is transferred into the Dhcp4Bound state or the process fails.\r
f9204641 758\r
759 @retval EFI_SUCCESS The DHCP configuration process has started, or it has completed\r
760 when CompletionEvent is NULL.\r
761 @retval EFI_NOT_STARTED The EFI DHCPv4 Protocol driver is in the Dhcp4Stopped\r
762 state. EFI_DHCP4_PROTOCOL. Configure() needs to be called.\r
763 @retval EFI_INVALID_PARAMETER This is NULL.\r
764 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.\r
765 @retval EFI_TIMEOUT The DHCP configuration process failed because no response was\r
766 received from the server within the specified timeout value.\r
767 @retval EFI_ABORTED The user aborted the DHCP process.\r
768 @retval EFI_ALREADY_STARTED Some other EFI DHCPv4 Protocol instance already started the\r
769 DHCP process.\r
770 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.\r
dd29f3ed 771 @retval EFI_NO_MEDIA There was a media error.\r
772db4bb 772\r
773**/\r
772db4bb 774EFI_STATUS\r
775EFIAPI\r
776EfiDhcp4Start (\r
777 IN EFI_DHCP4_PROTOCOL *This,\r
778 IN EFI_EVENT CompletionEvent OPTIONAL\r
779 )\r
780{\r
781 DHCP_PROTOCOL *Instance;\r
782 DHCP_SERVICE *DhcpSb;\r
783 EFI_STATUS Status;\r
784 EFI_TPL OldTpl;\r
8ce6b650 785 EFI_STATUS MediaStatus;\r
772db4bb 786\r
787 //\r
788 // First validate the parameters\r
789 //\r
790 if (This == NULL) {\r
791 return EFI_INVALID_PARAMETER;\r
792 }\r
793\r
794 Instance = DHCP_INSTANCE_FROM_THIS (This);\r
795\r
796 if (Instance->Signature != DHCP_PROTOCOL_SIGNATURE) {\r
797 return EFI_INVALID_PARAMETER;\r
798 }\r
799\r
e48e37fc 800 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);\r
772db4bb 801 DhcpSb = Instance->Service;\r
802\r
803 if (DhcpSb->DhcpState == Dhcp4Stopped) {\r
804 Status = EFI_NOT_STARTED;\r
805 goto ON_ERROR;\r
806 }\r
807\r
808 if ((DhcpSb->DhcpState != Dhcp4Init) && (DhcpSb->DhcpState != Dhcp4InitReboot)) {\r
809 Status = EFI_ALREADY_STARTED;\r
810 goto ON_ERROR;\r
811 }\r
812\r
5d34573d
JW
813 //\r
814 // Check Media Satus.\r
815 //\r
8ce6b650 816 MediaStatus = EFI_SUCCESS;\r
817 NetLibDetectMediaWaitTimeout (DhcpSb->Controller, DHCP_CHECK_MEDIA_WAITING_TIME, &MediaStatus);\r
818 if (MediaStatus != EFI_SUCCESS) {\r
5d34573d
JW
819 Status = EFI_NO_MEDIA;\r
820 goto ON_ERROR;\r
821 }\r
822\r
772db4bb 823 DhcpSb->IoStatus = EFI_ALREADY_STARTED;\r
824\r
825 if (EFI_ERROR (Status = DhcpInitRequest (DhcpSb))) {\r
826 goto ON_ERROR;\r
827 }\r
828\r
772db4bb 829\r
830 Instance->CompletionEvent = CompletionEvent;\r
831\r
832 //\r
e48e37fc 833 // Restore the TPL now, don't call poll function at TPL_CALLBACK.\r
772db4bb 834 //\r
e48e37fc 835 gBS->RestoreTPL (OldTpl);\r
772db4bb 836\r
837 if (CompletionEvent == NULL) {\r
838 while (DhcpSb->IoStatus == EFI_ALREADY_STARTED) {\r
b45b45b2 839 DhcpSb->UdpIo->Protocol.Udp4->Poll (DhcpSb->UdpIo->Protocol.Udp4);\r
772db4bb 840 }\r
841\r
842 return DhcpSb->IoStatus;\r
843 }\r
844\r
845 return EFI_SUCCESS;\r
846\r
847ON_ERROR:\r
e48e37fc 848 gBS->RestoreTPL (OldTpl);\r
772db4bb 849 return Status;\r
850}\r
851\r
852\r
853/**\r
f9204641 854 Extends the lease time by sending a request packet.\r
e2851998 855\r
f9204641 856 The RenewRebind() function is used to manually extend the lease time when the\r
857 EFI DHCPv4 Protocol driver is in the Dhcp4Bound state and the lease time has\r
858 not expired yet. This function will send a request packet to the previously\r
859 found server (or to any server when RebindRequest is TRUE) and transfer the\r
860 state into the Dhcp4Renewing state (or Dhcp4Rebinding when RebindingRequest is\r
861 TRUE). When a response is received, the state is returned to Dhcp4Bound.\r
862 If no response is received before the try count is exceeded (the RequestTryCount\r
863 field that is specified in EFI_DHCP4_CONFIG_DATA) but before the lease time that\r
864 was issued by the previous server expires, the driver will return to the Dhcp4Bound\r
865 state and the previous configuration is restored. The outgoing and incoming packets\r
866 can be captured by the EFI_DHCP4_CALLBACK function.\r
867\r
3e8c18da 868 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.\r
869 @param[in] RebindRequest If TRUE, this function broadcasts the request packets and enters\r
870 the Dhcp4Rebinding state. Otherwise, it sends a unicast\r
871 request packet and enters the Dhcp4Renewing state.\r
872 @param[in] CompletionEvent If not NULL, this event is signaled when the renew/rebind phase\r
873 completes or some error occurs.\r
874 EFI_DHCP4_PROTOCOL.GetModeData() can be called to\r
875 check the completion status. If NULL,\r
876 EFI_DHCP4_PROTOCOL.RenewRebind() will busy-wait\r
877 until the DHCP process finishes.\r
f9204641 878\r
879 @retval EFI_SUCCESS The EFI DHCPv4 Protocol driver is now in the\r
880 Dhcp4Renewing state or is back to the Dhcp4Bound state.\r
881 @retval EFI_NOT_STARTED The EFI DHCPv4 Protocol driver is in the Dhcp4Stopped\r
882 state. EFI_DHCP4_PROTOCOL.Configure() needs to\r
883 be called.\r
884 @retval EFI_INVALID_PARAMETER This is NULL.\r
885 @retval EFI_TIMEOUT There was no response from the server when the try count was\r
886 exceeded.\r
887 @retval EFI_ACCESS_DENIED The driver is not in the Dhcp4Bound state.\r
888 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.\r
772db4bb 889\r
890**/\r
772db4bb 891EFI_STATUS\r
892EFIAPI\r
893EfiDhcp4RenewRebind (\r
894 IN EFI_DHCP4_PROTOCOL *This,\r
895 IN BOOLEAN RebindRequest,\r
896 IN EFI_EVENT CompletionEvent OPTIONAL\r
897 )\r
898{\r
899 DHCP_PROTOCOL *Instance;\r
900 DHCP_SERVICE *DhcpSb;\r
901 EFI_STATUS Status;\r
902 EFI_TPL OldTpl;\r
903\r
904 //\r
905 // First validate the parameters\r
906 //\r
907 if (This == NULL) {\r
908 return EFI_INVALID_PARAMETER;\r
909 }\r
910\r
911 Instance = DHCP_INSTANCE_FROM_THIS (This);\r
912\r
913 if (Instance->Signature != DHCP_PROTOCOL_SIGNATURE) {\r
914 return EFI_INVALID_PARAMETER;\r
915 }\r
916\r
e48e37fc 917 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);\r
772db4bb 918 DhcpSb = Instance->Service;\r
919\r
920 if (DhcpSb->DhcpState == Dhcp4Stopped) {\r
921 Status = EFI_NOT_STARTED;\r
ae0a0b06 922 goto ON_EXIT;\r
772db4bb 923 }\r
924\r
925 if (DhcpSb->DhcpState != Dhcp4Bound) {\r
926 Status = EFI_ACCESS_DENIED;\r
ae0a0b06 927 goto ON_EXIT;\r
772db4bb 928 }\r
929\r
930 if (DHCP_IS_BOOTP (DhcpSb->Para)) {\r
ae0a0b06 931 Status = EFI_SUCCESS;\r
932 goto ON_EXIT;\r
772db4bb 933 }\r
934\r
935 //\r
936 // Transit the states then send a extra DHCP request\r
937 //\r
938 if (!RebindRequest) {\r
939 DhcpSetState (DhcpSb, Dhcp4Renewing, FALSE);\r
940 } else {\r
941 DhcpSetState (DhcpSb, Dhcp4Rebinding, FALSE);\r
942 }\r
943\r
842d83d6 944 //\r
945 // Clear initial time to make sure that elapsed-time\r
946 // is set to 0 for first REQUEST in renewal process.\r
947 //\r
948 Instance->ElaspedTime = 0;\r
949\r
772db4bb 950 Status = DhcpSendMessage (\r
951 DhcpSb,\r
952 DhcpSb->Selected,\r
953 DhcpSb->Para,\r
954 DHCP_MSG_REQUEST,\r
67a58d0f 955 (UINT8 *) "Extra renew/rebind by the application"\r
772db4bb 956 );\r
957\r
958 if (EFI_ERROR (Status)) {\r
959 DhcpSetState (DhcpSb, Dhcp4Bound, FALSE);\r
ae0a0b06 960 goto ON_EXIT;\r
772db4bb 961 }\r
962\r
963 DhcpSb->ExtraRefresh = TRUE;\r
964 DhcpSb->IoStatus = EFI_ALREADY_STARTED;\r
965 Instance->RenewRebindEvent = CompletionEvent;\r
966\r
e48e37fc 967 gBS->RestoreTPL (OldTpl);\r
772db4bb 968\r
969 if (CompletionEvent == NULL) {\r
970 while (DhcpSb->IoStatus == EFI_ALREADY_STARTED) {\r
b45b45b2 971 DhcpSb->UdpIo->Protocol.Udp4->Poll (DhcpSb->UdpIo->Protocol.Udp4);\r
972\r
772db4bb 973 }\r
974\r
975 return DhcpSb->IoStatus;\r
976 }\r
977\r
978 return EFI_SUCCESS;\r
979\r
ae0a0b06 980ON_EXIT:\r
e48e37fc 981 gBS->RestoreTPL (OldTpl);\r
772db4bb 982 return Status;\r
983}\r
984\r
985\r
986/**\r
f9204641 987 Releases the current address configuration.\r
988\r
989 The Release() function releases the current configured IP address by doing either\r
990 of the following:\r
991 * Sending a DHCPRELEASE packet when the EFI DHCPv4 Protocol driver is in the\r
992 Dhcp4Bound state\r
993 * Setting the previously assigned IP address that was provided with the\r
994 EFI_DHCP4_PROTOCOL.Configure() function to 0.0.0.0 when the driver is in\r
995 Dhcp4InitReboot state\r
996 After a successful call to this function, the EFI DHCPv4 Protocol driver returns\r
997 to the Dhcp4Init state and any subsequent incoming packets will be discarded silently.\r
772db4bb 998\r
3e8c18da 999 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.\r
772db4bb 1000\r
f9204641 1001 @retval EFI_SUCCESS The EFI DHCPv4 Protocol driver is now in the Dhcp4Init phase.\r
1002 @retval EFI_INVALID_PARAMETER This is NULL.\r
1003 @retval EFI_ACCESS_DENIED The EFI DHCPv4 Protocol driver is not Dhcp4InitReboot state.\r
1004 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.\r
772db4bb 1005\r
1006**/\r
772db4bb 1007EFI_STATUS\r
1008EFIAPI\r
1009EfiDhcp4Release (\r
1010 IN EFI_DHCP4_PROTOCOL *This\r
1011 )\r
1012{\r
1013 DHCP_PROTOCOL *Instance;\r
1014 DHCP_SERVICE *DhcpSb;\r
1015 EFI_STATUS Status;\r
1016 EFI_TPL OldTpl;\r
1017\r
1018 //\r
1019 // First validate the parameters\r
1020 //\r
1021 if (This == NULL) {\r
1022 return EFI_INVALID_PARAMETER;\r
1023 }\r
1024\r
1025 Instance = DHCP_INSTANCE_FROM_THIS (This);\r
1026\r
1027 if (Instance->Signature != DHCP_PROTOCOL_SIGNATURE) {\r
1028 return EFI_INVALID_PARAMETER;\r
1029 }\r
1030\r
1031 Status = EFI_SUCCESS;\r
e48e37fc 1032 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);\r
772db4bb 1033 DhcpSb = Instance->Service;\r
1034\r
1035 if ((DhcpSb->DhcpState != Dhcp4InitReboot) && (DhcpSb->DhcpState != Dhcp4Bound)) {\r
1036 Status = EFI_ACCESS_DENIED;\r
1037 goto ON_EXIT;\r
1038 }\r
1039\r
1040 if (!DHCP_IS_BOOTP (DhcpSb->Para) && (DhcpSb->DhcpState == Dhcp4Bound)) {\r
1041 Status = DhcpSendMessage (\r
1042 DhcpSb,\r
1043 DhcpSb->Selected,\r
1044 DhcpSb->Para,\r
1045 DHCP_MSG_RELEASE,\r
1046 NULL\r
1047 );\r
1048\r
1049 if (EFI_ERROR (Status)) {\r
1050 Status = EFI_DEVICE_ERROR;\r
1051 goto ON_EXIT;\r
1052 }\r
1053 }\r
1054\r
1055 DhcpCleanLease (DhcpSb);\r
1056\r
1057ON_EXIT:\r
e48e37fc 1058 gBS->RestoreTPL (OldTpl);\r
772db4bb 1059 return Status;\r
1060}\r
1061\r
1062\r
1063/**\r
f9204641 1064 Stops the current address configuration.\r
e2851998 1065\r
f9204641 1066 The Stop() function is used to stop the DHCP configuration process. After this\r
1067 function is called successfully, the EFI DHCPv4 Protocol driver is transferred\r
1068 into the Dhcp4Stopped state. EFI_DHCP4_PROTOCOL.Configure() needs to be called\r
1069 before DHCP configuration process can be started again. This function can be\r
1070 called when the EFI DHCPv4 Protocol driver is in any state.\r
772db4bb 1071\r
3e8c18da 1072 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.\r
772db4bb 1073\r
f9204641 1074 @retval EFI_SUCCESS The EFI DHCPv4 Protocol driver is now in the Dhcp4Stopped phase.\r
1075 @retval EFI_INVALID_PARAMETER This is NULL.\r
772db4bb 1076\r
1077**/\r
772db4bb 1078EFI_STATUS\r
1079EFIAPI\r
1080EfiDhcp4Stop (\r
1081 IN EFI_DHCP4_PROTOCOL *This\r
1082 )\r
1083{\r
1084 DHCP_PROTOCOL *Instance;\r
1085 DHCP_SERVICE *DhcpSb;\r
1086 EFI_TPL OldTpl;\r
1087\r
1088 //\r
1089 // First validate the parameters\r
1090 //\r
1091 if (This == NULL) {\r
1092 return EFI_INVALID_PARAMETER;\r
1093 }\r
1094\r
1095 Instance = DHCP_INSTANCE_FROM_THIS (This);\r
1096\r
1097 if (Instance->Signature != DHCP_PROTOCOL_SIGNATURE) {\r
1098 return EFI_INVALID_PARAMETER;\r
1099 }\r
1100\r
e48e37fc 1101 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);\r
772db4bb 1102 DhcpSb = Instance->Service;\r
1103\r
1104 DhcpCleanLease (DhcpSb);\r
1105\r
1106 DhcpSb->DhcpState = Dhcp4Stopped;\r
1107 DhcpSb->ServiceState = DHCP_UNCONFIGED;\r
1108\r
e48e37fc 1109 gBS->RestoreTPL (OldTpl);\r
772db4bb 1110 return EFI_SUCCESS;\r
1111}\r
1112\r
1113\r
1114/**\r
f9204641 1115 Builds a DHCP packet, given the options to be appended or deleted or replaced.\r
1116\r
1117 The Build() function is used to assemble a new packet from the original packet\r
1118 by replacing or deleting existing options or appending new options. This function\r
1119 does not change any state of the EFI DHCPv4 Protocol driver and can be used at\r
1120 any time.\r
1121\r
3e8c18da 1122 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.\r
1123 @param[in] SeedPacket Initial packet to be used as a base for building new packet.\r
1124 @param[in] DeleteCount Number of opcodes in the DeleteList.\r
1125 @param[in] DeleteList List of opcodes to be deleted from the seed packet.\r
1126 Ignored if DeleteCount is zero.\r
1127 @param[in] AppendCount Number of entries in the OptionList.\r
1128 @param[in] AppendList Pointer to a DHCP option list to be appended to SeedPacket.\r
1129 If SeedPacket also contains options in this list, they are\r
1130 replaced by new options (except pad option). Ignored if\r
1131 AppendCount is zero. Type EFI_DHCP4_PACKET_OPTION\r
1132 @param[out] NewPacket Pointer to storage for the pointer to the new allocated packet.\r
1133 Use the EFI Boot Service FreePool() on the resulting pointer\r
1134 when done with the packet.\r
f9204641 1135\r
1136 @retval EFI_SUCCESS The new packet was built.\r
1137 @retval EFI_OUT_OF_RESOURCES Storage for the new packet could not be allocated.\r
1138 @retval EFI_INVALID_PARAMETER Some parameter is NULL.\r
772db4bb 1139\r
1140**/\r
772db4bb 1141EFI_STATUS\r
1142EFIAPI\r
1143EfiDhcp4Build (\r
1144 IN EFI_DHCP4_PROTOCOL *This,\r
1145 IN EFI_DHCP4_PACKET *SeedPacket,\r
1146 IN UINT32 DeleteCount,\r
1147 IN UINT8 *DeleteList OPTIONAL,\r
1148 IN UINT32 AppendCount,\r
1149 IN EFI_DHCP4_PACKET_OPTION *AppendList[] OPTIONAL,\r
1150 OUT EFI_DHCP4_PACKET **NewPacket\r
1151 )\r
1152{\r
1153 //\r
1154 // First validate the parameters\r
1155 //\r
1156 if ((This == NULL) || (NewPacket == NULL)) {\r
1157 return EFI_INVALID_PARAMETER;\r
1158 }\r
1159\r
1160 if ((SeedPacket == NULL) || (SeedPacket->Dhcp4.Magik != DHCP_OPTION_MAGIC) ||\r
1161 EFI_ERROR (DhcpValidateOptions (SeedPacket, NULL))) {\r
1162\r
1163 return EFI_INVALID_PARAMETER;\r
1164 }\r
1165\r
1166 if (((DeleteCount == 0) && (AppendCount == 0)) ||\r
1167 ((DeleteCount != 0) && (DeleteList == NULL)) ||\r
1168 ((AppendCount != 0) && (AppendList == NULL))) {\r
1169\r
1170 return EFI_INVALID_PARAMETER;\r
1171 }\r
1172\r
1173 return DhcpBuild (\r
1174 SeedPacket,\r
1175 DeleteCount,\r
1176 DeleteList,\r
1177 AppendCount,\r
1178 AppendList,\r
1179 NewPacket\r
1180 );\r
1181}\r
1182\r
f9204641 1183/**\r
1184 Callback by UdpIoCreatePort() when creating UdpIo for this Dhcp4 instance.\r
e2851998 1185\r
3e8c18da 1186 @param[in] UdpIo The UdpIo being created.\r
1187 @param[in] Context Dhcp4 instance.\r
e2851998 1188\r
0ba795d2
WF
1189 @retval EFI_SUCCESS UdpIo is configured successfully.\r
1190 @retval EFI_INVALID_PARAMETER Class E IP address is not supported or other parameters\r
1191 are not valid.\r
1192 @retval other Other error occurs.\r
f9204641 1193**/\r
c4a62a12 1194EFI_STATUS\r
e798cd87 1195EFIAPI\r
c4a62a12 1196Dhcp4InstanceConfigUdpIo (\r
b45b45b2 1197 IN UDP_IO *UdpIo,\r
c4a62a12 1198 IN VOID *Context\r
1199 )\r
1200{\r
1201 DHCP_PROTOCOL *Instance;\r
8c5f78a2 1202 DHCP_SERVICE *DhcpSb;\r
c4a62a12 1203 EFI_DHCP4_TRANSMIT_RECEIVE_TOKEN *Token;\r
1204 EFI_UDP4_CONFIG_DATA UdpConfigData;\r
ce964733 1205 IP4_ADDR ClientAddr;\r
d1102dba
LG
1206 IP4_ADDR Ip;\r
1207 INTN Class;\r
1208 IP4_ADDR SubnetMask;\r
c4a62a12 1209\r
1210 Instance = (DHCP_PROTOCOL *) Context;\r
8c5f78a2 1211 DhcpSb = Instance->Service;\r
c4a62a12 1212 Token = Instance->Token;\r
1213\r
e48e37fc 1214 ZeroMem (&UdpConfigData, sizeof (EFI_UDP4_CONFIG_DATA));\r
c4a62a12 1215\r
1216 UdpConfigData.AcceptBroadcast = TRUE;\r
1217 UdpConfigData.AllowDuplicatePort = TRUE;\r
1218 UdpConfigData.TimeToLive = 64;\r
1219 UdpConfigData.DoNotFragment = TRUE;\r
1220\r
ce964733
WJ
1221 ClientAddr = EFI_NTOHL (Token->Packet->Dhcp4.Header.ClientAddr);\r
1222 Ip = HTONL (ClientAddr);\r
e48e37fc 1223 CopyMem (&UdpConfigData.StationAddress, &Ip, sizeof (EFI_IPv4_ADDRESS));\r
8c5f78a2
JW
1224\r
1225 if (DhcpSb->Netmask == 0) {\r
01b5ac88
FS
1226 //\r
1227 // The Dhcp4.TransmitReceive() API should be able to used at any time according to\r
1228 // UEFI spec, while in classless addressing network, the netmask must be explicitly\r
1229 // provided together with the station address.\r
1230 // If the DHCP instance haven't be configured with a valid netmask, we could only\r
24648548 1231 // compute it according to the classful addressing rule.\r
01b5ac88 1232 //\r
8c5f78a2 1233 Class = NetGetIpClass (ClientAddr);\r
0ba795d2
WF
1234 //\r
1235 // Class E IP address is not supported here!\r
1236 //\r
8c5f78a2 1237 ASSERT (Class < IP4_ADDR_CLASSE);\r
0ba795d2
WF
1238 if (Class >= IP4_ADDR_CLASSE) {\r
1239 return EFI_INVALID_PARAMETER;\r
1240 }\r
d1102dba 1241\r
8c5f78a2
JW
1242 SubnetMask = gIp4AllMasks[Class << 3];\r
1243 } else {\r
1244 SubnetMask = DhcpSb->Netmask;\r
1245 }\r
1246\r
ce964733 1247 Ip = HTONL (SubnetMask);\r
e48e37fc 1248 CopyMem (&UdpConfigData.SubnetMask, &Ip, sizeof (EFI_IPv4_ADDRESS));\r
c4a62a12 1249\r
1250 if ((Token->ListenPointCount == 0) || (Token->ListenPoints[0].ListenPort == 0)) {\r
1251 UdpConfigData.StationPort = DHCP_CLIENT_PORT;\r
1252 } else {\r
1253 UdpConfigData.StationPort = Token->ListenPoints[0].ListenPort;\r
1254 }\r
1255\r
b45b45b2 1256 return UdpIo->Protocol.Udp4->Configure (UdpIo->Protocol.Udp4, &UdpConfigData);\r
c4a62a12 1257}\r
1258\r
f9204641 1259/**\r
1260 Create UdpIo for this Dhcp4 instance.\r
e2851998 1261\r
f9204641 1262 @param Instance The Dhcp4 instance.\r
e2851998 1263\r
f9204641 1264 @retval EFI_SUCCESS UdpIo is created successfully.\r
1265 @retval EFI_OUT_OF_RESOURCES Fails to create UdpIo because of limited\r
1266 resources or configuration failure.\r
1267**/\r
c4a62a12 1268EFI_STATUS\r
1269Dhcp4InstanceCreateUdpIo (\r
f9204641 1270 IN OUT DHCP_PROTOCOL *Instance\r
c4a62a12 1271 )\r
1272{\r
1273 DHCP_SERVICE *DhcpSb;\r
216f7970 1274 EFI_STATUS Status;\r
1275 VOID *Udp4;\r
c4a62a12 1276\r
1277 ASSERT (Instance->Token != NULL);\r
1278\r
1279 DhcpSb = Instance->Service;\r
b45b45b2 1280 Instance->UdpIo = UdpIoCreateIo (\r
1281 DhcpSb->Controller,\r
1282 DhcpSb->Image,\r
1283 Dhcp4InstanceConfigUdpIo,\r
1284 UDP_IO_UDP4_VERSION,\r
1285 Instance\r
1286 );\r
c4a62a12 1287 if (Instance->UdpIo == NULL) {\r
1288 return EFI_OUT_OF_RESOURCES;\r
1289 } else {\r
216f7970 1290 Status = gBS->OpenProtocol (\r
1291 Instance->UdpIo->UdpHandle,\r
1292 &gEfiUdp4ProtocolGuid,\r
1293 (VOID **) &Udp4,\r
1294 Instance->Service->Image,\r
1295 Instance->Handle,\r
1296 EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER\r
1297 );\r
1298 if (EFI_ERROR (Status)) {\r
1299 UdpIoFreeIo (Instance->UdpIo);\r
1300 Instance->UdpIo = NULL;\r
1301 }\r
1302 return Status;\r
c4a62a12 1303 }\r
1304}\r
1305\r
f9204641 1306/**\r
1307 Callback of Dhcp packet. Does nothing.\r
e2851998 1308\r
f9204641 1309 @param Arg The context.\r
3e8c18da 1310\r
f9204641 1311**/\r
c4a62a12 1312VOID\r
e798cd87 1313EFIAPI\r
c4a62a12 1314DhcpDummyExtFree (\r
1315 IN VOID *Arg\r
1316 )\r
982a9eae 1317{\r
c4a62a12 1318}\r
1319\r
f9204641 1320/**\r
1321 Callback of UdpIoRecvDatagram() that handles a Dhcp4 packet.\r
e2851998 1322\r
f9204641 1323 Only BOOTP responses will be handled that correspond to the Xid of the request\r
1324 sent out. The packet will be queued to the response queue.\r
e2851998 1325\r
f9204641 1326 @param UdpPacket The Dhcp4 packet.\r
b45b45b2 1327 @param EndPoint Udp4 address pair.\r
f9204641 1328 @param IoStatus Status of the input.\r
1329 @param Context Extra info for the input.\r
e2851998 1330\r
f9204641 1331**/\r
c4a62a12 1332VOID\r
e798cd87 1333EFIAPI\r
c4a62a12 1334PxeDhcpInput (\r
1335 NET_BUF *UdpPacket,\r
b45b45b2 1336 UDP_END_POINT *EndPoint,\r
c4a62a12 1337 EFI_STATUS IoStatus,\r
1338 VOID *Context\r
1339 )\r
1340{\r
1341 DHCP_PROTOCOL *Instance;\r
c4a62a12 1342 EFI_DHCP4_HEADER *Head;\r
1343 NET_BUF *Wrap;\r
1344 EFI_DHCP4_PACKET *Packet;\r
1345 EFI_DHCP4_TRANSMIT_RECEIVE_TOKEN *Token;\r
1346 UINT32 Len;\r
1347 EFI_STATUS Status;\r
1348\r
1349 Wrap = NULL;\r
1350 Instance = (DHCP_PROTOCOL *) Context;\r
1351 Token = Instance->Token;\r
c4a62a12 1352\r
1353 //\r
f9204641 1354 // Don't restart receive if error occurs or DHCP is destroyed.\r
c4a62a12 1355 //\r
1356 if (EFI_ERROR (IoStatus)) {\r
1357 return ;\r
1358 }\r
1359\r
1360 ASSERT (UdpPacket != NULL);\r
982a9eae 1361\r
c4a62a12 1362 //\r
1363 // Validate the packet received\r
1364 //\r
1365 if (UdpPacket->TotalSize < sizeof (EFI_DHCP4_HEADER)) {\r
1366 goto RESTART;\r
1367 }\r
982a9eae 1368\r
c4a62a12 1369 //\r
1370 // Copy the DHCP message to a continuous memory block, make the buffer size\r
1371 // of the EFI_DHCP4_PACKET a multiple of 4-byte.\r
1372 //\r
1373 Len = NET_ROUNDUP (sizeof (EFI_DHCP4_PACKET) + UdpPacket->TotalSize - sizeof (EFI_DHCP4_HEADER), 4);\r
1374 Wrap = NetbufAlloc (Len);\r
c4a62a12 1375 if (Wrap == NULL) {\r
1376 goto RESTART;\r
1377 }\r
1378\r
1379 Packet = (EFI_DHCP4_PACKET *) NetbufAllocSpace (Wrap, Len, NET_BUF_TAIL);\r
894d038a 1380 ASSERT (Packet != NULL);\r
1381\r
c4a62a12 1382 Packet->Size = Len;\r
1383 Head = &Packet->Dhcp4.Header;\r
1384 Packet->Length = NetbufCopy (UdpPacket, 0, UdpPacket->TotalSize, (UINT8 *) Head);\r
1385\r
1386 if (Packet->Length != UdpPacket->TotalSize) {\r
1387 goto RESTART;\r
1388 }\r
982a9eae 1389\r
c4a62a12 1390 //\r
1391 // Is this packet the answer to our packet?\r
1392 //\r
1393 if ((Head->OpCode != BOOTP_REPLY) ||\r
1394 (Head->Xid != Token->Packet->Dhcp4.Header.Xid) ||\r
ce964733 1395 (CompareMem (&Token->Packet->Dhcp4.Header.ClientHwAddr[0], Head->ClientHwAddr, Head->HwAddrLen) != 0)) {\r
c4a62a12 1396 goto RESTART;\r
1397 }\r
982a9eae 1398\r
c4a62a12 1399 //\r
1400 // Validate the options and retrieve the interested options\r
1401 //\r
1402 if ((Packet->Length > sizeof (EFI_DHCP4_HEADER) + sizeof (UINT32)) &&\r
1403 (Packet->Dhcp4.Magik == DHCP_OPTION_MAGIC) &&\r
1404 EFI_ERROR (DhcpValidateOptions (Packet, NULL))) {\r
1405\r
1406 goto RESTART;\r
1407 }\r
1408\r
1409 //\r
1410 // Keep this packet in the ResponseQueue.\r
1411 //\r
1412 NET_GET_REF (Wrap);\r
1413 NetbufQueAppend (&Instance->ResponseQueue, Wrap);\r
1414\r
1415RESTART:\r
1416\r
1417 NetbufFree (UdpPacket);\r
1418\r
1419 if (Wrap != NULL) {\r
1420 NetbufFree (Wrap);\r
1421 }\r
1422\r
1423 Status = UdpIoRecvDatagram (Instance->UdpIo, PxeDhcpInput, Instance, 0);\r
1424 if (EFI_ERROR (Status)) {\r
1425 PxeDhcpDone (Instance);\r
1426 }\r
1427}\r
1428\r
f9204641 1429/**\r
1430 Complete a Dhcp4 transaction and signal the upper layer.\r
e2851998 1431\r
f9204641 1432 @param Instance Dhcp4 instance.\r
f9204641 1433\r
1434**/\r
c4a62a12 1435VOID\r
1436PxeDhcpDone (\r
1437 IN DHCP_PROTOCOL *Instance\r
1438 )\r
1439{\r
1440 EFI_DHCP4_TRANSMIT_RECEIVE_TOKEN *Token;\r
1441\r
1442 Token = Instance->Token;\r
1443\r
1444 Token->ResponseCount = Instance->ResponseQueue.BufNum;\r
1445 if (Token->ResponseCount != 0) {\r
e48e37fc 1446 Token->ResponseList = (EFI_DHCP4_PACKET *) AllocatePool (Instance->ResponseQueue.BufSize);\r
c4a62a12 1447 if (Token->ResponseList == NULL) {\r
1448 Token->Status = EFI_OUT_OF_RESOURCES;\r
1449 goto SIGNAL_USER;\r
1450 }\r
1451\r
1452 //\r
f9204641 1453 // Copy the received DHCP responses.\r
c4a62a12 1454 //\r
1455 NetbufQueCopy (&Instance->ResponseQueue, 0, Instance->ResponseQueue.BufSize, (UINT8 *) Token->ResponseList);\r
1456 Token->Status = EFI_SUCCESS;\r
1457 } else {\r
1458 Token->ResponseList = NULL;\r
1459 Token->Status = EFI_TIMEOUT;\r
1460 }\r
1461\r
1462SIGNAL_USER:\r
1463 //\r
f9204641 1464 // Clean up the resources dedicated for this transmit receive transaction.\r
c4a62a12 1465 //\r
1466 NetbufQueFlush (&Instance->ResponseQueue);\r
b45b45b2 1467 UdpIoCleanIo (Instance->UdpIo);\r
216f7970 1468 gBS->CloseProtocol (\r
1469 Instance->UdpIo->UdpHandle,\r
1470 &gEfiUdp4ProtocolGuid,\r
1471 Instance->Service->Image,\r
1472 Instance->Handle\r
1473 );\r
b45b45b2 1474 UdpIoFreeIo (Instance->UdpIo);\r
c4a62a12 1475 Instance->UdpIo = NULL;\r
1476 Instance->Token = NULL;\r
1477\r
1478 if (Token->CompletionEvent != NULL) {\r
1479 gBS->SignalEvent (Token->CompletionEvent);\r
982a9eae 1480 }\r
c4a62a12 1481}\r
1482\r
772db4bb 1483\r
1484/**\r
ba39e316 1485 Transmits a DHCP formatted packet and optionally waits for responses.\r
e2851998 1486\r
f9204641 1487 The TransmitReceive() function is used to transmit a DHCP packet and optionally\r
1488 wait for the response from servers. This function does not change the state of\r
1489 the EFI DHCPv4 Protocol driver and thus can be used at any time.\r
ba39e316 1490\r
3e8c18da 1491 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.\r
1492 @param[in] Token Pointer to the EFI_DHCP4_TRANSMIT_RECEIVE_TOKEN structure.\r
ba39e316 1493\r
1494 @retval EFI_SUCCESS The packet was successfully queued for transmission.\r
1495 @retval EFI_INVALID_PARAMETER Some parameter is NULL.\r
1496 @retval EFI_NOT_READY The previous call to this function has not finished yet. Try to call\r
1497 this function after collection process completes.\r
1498 @retval EFI_NO_MAPPING The default station address is not available yet.\r
1499 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.\r
1500 @retval Others Some other unexpected error occurred.\r
772db4bb 1501\r
1502**/\r
772db4bb 1503EFI_STATUS\r
1504EFIAPI\r
1505EfiDhcp4TransmitReceive (\r
1506 IN EFI_DHCP4_PROTOCOL *This,\r
1507 IN EFI_DHCP4_TRANSMIT_RECEIVE_TOKEN *Token\r
1508 )\r
1509{\r
c4a62a12 1510 DHCP_PROTOCOL *Instance;\r
1511 EFI_TPL OldTpl;\r
1512 EFI_STATUS Status;\r
1513 NET_FRAGMENT Frag;\r
1514 NET_BUF *Wrap;\r
b45b45b2 1515 UDP_END_POINT EndPoint;\r
c4a62a12 1516 IP4_ADDR Ip;\r
1517 DHCP_SERVICE *DhcpSb;\r
b45b45b2 1518 EFI_IP_ADDRESS Gateway;\r
ce964733 1519 IP4_ADDR ClientAddr;\r
c4a62a12 1520\r
1521 if ((This == NULL) || (Token == NULL) || (Token->Packet == NULL)) {\r
1522 return EFI_INVALID_PARAMETER;\r
1523 }\r
1524\r
1525 Instance = DHCP_INSTANCE_FROM_THIS (This);\r
1526 DhcpSb = Instance->Service;\r
1527\r
1528 if (Instance->Token != NULL) {\r
1529 //\r
1530 // The previous call to TransmitReceive is not finished.\r
1531 //\r
1532 return EFI_NOT_READY;\r
1533 }\r
1534\r
f9204641 1535 if ((Token->Packet->Dhcp4.Magik != DHCP_OPTION_MAGIC) ||\r
1536 (NTOHL (Token->Packet->Dhcp4.Header.Xid) == Instance->Service->Xid) ||\r
1537 (Token->TimeoutValue == 0) ||\r
1538 ((Token->ListenPointCount != 0) && (Token->ListenPoints == NULL)) ||\r
1539 EFI_ERROR (DhcpValidateOptions (Token->Packet, NULL)) ||\r
1540 EFI_IP4_EQUAL (&Token->RemoteAddress, &mZeroIp4Addr)\r
1541 ) {\r
c4a62a12 1542 //\r
f9204641 1543 // The DHCP packet isn't well-formed, the Transaction ID is already used,\r
1544 // the timeout value is zero, the ListenPoint is invalid, or the\r
1545 // RemoteAddress is zero.\r
c4a62a12 1546 //\r
1547 return EFI_INVALID_PARAMETER;\r
1548 }\r
1549\r
ce964733 1550 ClientAddr = EFI_NTOHL (Token->Packet->Dhcp4.Header.ClientAddr);\r
d1102dba 1551\r
ce964733 1552 if (ClientAddr == 0) {\r
c4a62a12 1553 return EFI_NO_MAPPING;\r
1554 }\r
1555\r
e48e37fc 1556 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);\r
c4a62a12 1557\r
1558 //\r
1559 // Save the token and the timeout value.\r
1560 //\r
1561 Instance->Token = Token;\r
1562 Instance->Timeout = Token->TimeoutValue;\r
1563\r
1564 //\r
1565 // Create a UDP IO for this transmit receive transaction.\r
1566 //\r
1567 Status = Dhcp4InstanceCreateUdpIo (Instance);\r
1568 if (EFI_ERROR (Status)) {\r
1569 goto ON_ERROR;\r
1570 }\r
1571\r
982a9eae 1572 //\r
1573 // Save the Client Address is sent out\r
1574 //\r
f9204641 1575 CopyMem (\r
1576 &DhcpSb->ClientAddressSendOut[0],\r
1577 &Token->Packet->Dhcp4.Header.ClientHwAddr[0],\r
1578 Token->Packet->Dhcp4.Header.HwAddrLen\r
1579 );\r
982a9eae 1580\r
772db4bb 1581 //\r
c4a62a12 1582 // Wrap the DHCP packet into a net buffer.\r
772db4bb 1583 //\r
c4a62a12 1584 Frag.Bulk = (UINT8 *) &Token->Packet->Dhcp4;\r
1585 Frag.Len = Token->Packet->Length;\r
1586 Wrap = NetbufFromExt (&Frag, 1, 0, 0, DhcpDummyExtFree, NULL);\r
1587 if (Wrap == NULL) {\r
1588 Status = EFI_OUT_OF_RESOURCES;\r
1589 goto ON_ERROR;\r
1590 }\r
1591\r
1592 //\r
b45b45b2 1593 // Set the local address and local port to ZERO.\r
c4a62a12 1594 //\r
b45b45b2 1595 ZeroMem (&EndPoint, sizeof (UDP_END_POINT));\r
c4a62a12 1596\r
1597 //\r
1598 // Set the destination address and destination port.\r
1599 //\r
e48e37fc 1600 CopyMem (&Ip, &Token->RemoteAddress, sizeof (EFI_IPv4_ADDRESS));\r
b45b45b2 1601 EndPoint.RemoteAddr.Addr[0] = NTOHL (Ip);\r
c4a62a12 1602\r
1603 if (Token->RemotePort == 0) {\r
1604 EndPoint.RemotePort = DHCP_SERVER_PORT;\r
1605 } else {\r
1606 EndPoint.RemotePort = Token->RemotePort;\r
1607 }\r
1608\r
1609 //\r
1610 // Get the gateway.\r
1611 //\r
b45b45b2 1612 ZeroMem (&Gateway, sizeof (Gateway));\r
01b5ac88 1613 if (!IP4_NET_EQUAL (ClientAddr, EndPoint.RemoteAddr.Addr[0], DhcpSb->Netmask)) {\r
b45b45b2 1614 CopyMem (&Gateway.v4, &Token->GatewayAddress, sizeof (EFI_IPv4_ADDRESS));\r
1615 Gateway.Addr[0] = NTOHL (Gateway.Addr[0]);\r
c4a62a12 1616 }\r
1617\r
1618 //\r
1619 // Transmit the DHCP packet.\r
1620 //\r
b45b45b2 1621 Status = UdpIoSendDatagram (Instance->UdpIo, Wrap, &EndPoint, &Gateway, DhcpOnPacketSent, NULL);\r
c4a62a12 1622 if (EFI_ERROR (Status)) {\r
1623 NetbufFree (Wrap);\r
1624 goto ON_ERROR;\r
1625 }\r
1626\r
1627 //\r
1628 // Start to receive the DHCP response.\r
1629 //\r
1630 Status = UdpIoRecvDatagram (Instance->UdpIo, PxeDhcpInput, Instance, 0);\r
1631 if (EFI_ERROR (Status)) {\r
1632 goto ON_ERROR;\r
1633 }\r
1634\r
1635ON_ERROR:\r
1636\r
1637 if (EFI_ERROR (Status) && (Instance->UdpIo != NULL)) {\r
b45b45b2 1638 UdpIoCleanIo (Instance->UdpIo);\r
216f7970 1639 gBS->CloseProtocol (\r
1640 Instance->UdpIo->UdpHandle,\r
1641 &gEfiUdp4ProtocolGuid,\r
1642 Instance->Service->Image,\r
1643 Instance->Handle\r
1644 );\r
b45b45b2 1645 UdpIoFreeIo (Instance->UdpIo);\r
c4a62a12 1646 Instance->UdpIo = NULL;\r
1647 Instance->Token = NULL;\r
1648 }\r
1649\r
e48e37fc 1650 gBS->RestoreTPL (OldTpl);\r
c4a62a12 1651\r
1652 if (!EFI_ERROR (Status) && (Token->CompletionEvent == NULL)) {\r
1653 //\r
1654 // Keep polling until timeout if no error happens and the CompletionEvent\r
1655 // is NULL.\r
1656 //\r
c5bcc2e2 1657 while (TRUE) {\r
1658 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);\r
1659 //\r
1660 // Raise TPL to protect the UDPIO in instance, in case that DhcpOnTimerTick\r
1661 // free it when timeout.\r
1662 //\r
1663 if (Instance->Timeout > 0) {\r
b45b45b2 1664 Instance->UdpIo->Protocol.Udp4->Poll (Instance->UdpIo->Protocol.Udp4);\r
c5bcc2e2 1665 gBS->RestoreTPL (OldTpl);\r
1666 } else {\r
1667 gBS->RestoreTPL (OldTpl);\r
1668 break;\r
1669 }\r
c4a62a12 1670 }\r
1671 }\r
1672\r
1673 return Status;\r
772db4bb 1674}\r
1675\r
1676\r
1677/**\r
1678 Callback function for DhcpIterateOptions. This callback sets the\r
1679 EFI_DHCP4_PACKET_OPTION array in the DHCP_PARSE_CONTEXT to point\r
1680 the individual DHCP option in the packet.\r
1681\r
3e8c18da 1682 @param[in] Tag The DHCP option type\r
1683 @param[in] Len Length of the DHCP option data\r
1684 @param[in] Data The DHCP option data\r
1685 @param[in] Context The context, to pass several parameters in.\r
772db4bb 1686\r
1687 @retval EFI_SUCCESS It always returns EFI_SUCCESS\r
1688\r
1689**/\r
772db4bb 1690EFI_STATUS\r
1691Dhcp4ParseCheckOption (\r
1692 IN UINT8 Tag,\r
1693 IN UINT8 Len,\r
1694 IN UINT8 *Data,\r
1695 IN VOID *Context\r
1696 )\r
1697{\r
1698 DHCP_PARSE_CONTEXT *Parse;\r
1699\r
1700 Parse = (DHCP_PARSE_CONTEXT *) Context;\r
1701 Parse->Index++;\r
1702\r
36ee91ca 1703 if (Parse->Index <= Parse->OptionCount) {\r
772db4bb 1704 //\r
50d7ebad 1705 // Use BASE_CR to get the memory position of EFI_DHCP4_PACKET_OPTION for\r
772db4bb 1706 // the EFI_DHCP4_PACKET_OPTION->Data because DhcpIterateOptions only\r
1707 // pass in the point to option data.\r
1708 //\r
50d7ebad 1709 Parse->Option[Parse->Index - 1] = BASE_CR (Data, EFI_DHCP4_PACKET_OPTION, Data);\r
772db4bb 1710 }\r
1711\r
1712 return EFI_SUCCESS;\r
1713}\r
1714\r
1715\r
1716/**\r
f9204641 1717 Parses the packed DHCP option data.\r
e2851998 1718\r
f9204641 1719 The Parse() function is used to retrieve the option list from a DHCP packet.\r
51195fbe 1720 If *OptionCount isn't zero, and there is enough space for all the DHCP options\r
f9204641 1721 in the Packet, each element of PacketOptionList is set to point to somewhere in\r
1722 the Packet->Dhcp4.Option where a new DHCP option begins. If RFC3396 is supported,\r
1723 the caller should reassemble the parsed DHCP options to get the finial result.\r
51195fbe 1724 If *OptionCount is zero or there isn't enough space for all of them, the number\r
f9204641 1725 of DHCP options in the Packet is returned in OptionCount.\r
1726\r
1727 @param This Pointer to the EFI_DHCP4_PROTOCOL instance.\r
1728 @param Packet Pointer to packet to be parsed.\r
1729 @param OptionCount On input, the number of entries in the PacketOptionList.\r
1730 On output, the number of entries that were written into the\r
1731 PacketOptionList.\r
1732 @param PacketOptionList List of packet option entries to be filled in. End option or pad\r
1733 options are not included.\r
1734\r
1735 @retval EFI_SUCCESS The packet was successfully parsed.\r
1736 @retval EFI_INVALID_PARAMETER Some parameter is NULL.\r
1737 @retval EFI_BUFFER_TOO_SMALL One or more of the following conditions is TRUE:\r
1738 1) *OptionCount is smaller than the number of options that\r
1739 were found in the Packet.\r
1740 2) PacketOptionList is NULL.\r
772db4bb 1741\r
1742**/\r
772db4bb 1743EFI_STATUS\r
1744EFIAPI\r
1745EfiDhcp4Parse (\r
1746 IN EFI_DHCP4_PROTOCOL *This,\r
1747 IN EFI_DHCP4_PACKET *Packet,\r
1748 IN OUT UINT32 *OptionCount,\r
1749 OUT EFI_DHCP4_PACKET_OPTION *PacketOptionList[] OPTIONAL\r
1750 )\r
1751{\r
1752 DHCP_PARSE_CONTEXT Context;\r
1753 EFI_STATUS Status;\r
1754\r
1755 //\r
1756 // First validate the parameters\r
1757 //\r
1758 if ((This == NULL) || (Packet == NULL) || (OptionCount == NULL)) {\r
1759 return EFI_INVALID_PARAMETER;\r
1760 }\r
1761\r
1762 if ((Packet->Size < Packet->Length + 2 * sizeof (UINT32)) ||\r
1763 (Packet->Dhcp4.Magik != DHCP_OPTION_MAGIC) ||\r
1764 EFI_ERROR (DhcpValidateOptions (Packet, NULL))) {\r
1765\r
1766 return EFI_INVALID_PARAMETER;\r
1767 }\r
1768\r
1769 if ((*OptionCount != 0) && (PacketOptionList == NULL)) {\r
1770 return EFI_BUFFER_TOO_SMALL;\r
1771 }\r
1772\r
e48e37fc 1773 ZeroMem (PacketOptionList, *OptionCount * sizeof (EFI_DHCP4_PACKET_OPTION *));\r
772db4bb 1774\r
1775 Context.Option = PacketOptionList;\r
1776 Context.OptionCount = *OptionCount;\r
1777 Context.Index = 0;\r
1778\r
1779 Status = DhcpIterateOptions (Packet, Dhcp4ParseCheckOption, &Context);\r
1780\r
1781 if (EFI_ERROR (Status)) {\r
1782 return Status;\r
1783 }\r
1784\r
1785 *OptionCount = Context.Index;\r
1786\r
1787 if (Context.Index > Context.OptionCount) {\r
1788 return EFI_BUFFER_TOO_SMALL;\r
1789 }\r
1790\r
1791 return EFI_SUCCESS;\r
1792}\r
842d83d6 1793\r
1794/**\r
1795 Set the elapsed time based on the given instance and the pointer to the\r
1796 elapsed time option.\r
1797\r
1798 @param[in] Elapsed The pointer to the position to append.\r
1799 @param[in] Instance The pointer to the Dhcp4 instance.\r
1800**/\r
1801VOID\r
1802SetElapsedTime (\r
1803 IN UINT16 *Elapsed,\r
1804 IN DHCP_PROTOCOL *Instance\r
1805 )\r
1806{\r
1807 WriteUnaligned16 (Elapsed, HTONS(Instance->ElaspedTime));\r
1808}\r