1. remove duplicated NetLibDispatchDpc() calling in Pool function.
[edk2.git] / MdeModulePkg / Universal / Network / Dhcp4Dxe / Dhcp4Impl.c
blob90031903a45ab60b11bceaf6336cd7f4dbf51775
1 /** @file
2 This file implement the EFI_DHCP4_PROTOCOL interface.
4 Copyright (c) 2006 - 2009, Intel Corporation.<BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13 **/
16 #include "Dhcp4Impl.h"
18 /**
19 Returns the current operating mode and cached data packet for the EFI DHCPv4 Protocol driver.
21 The GetModeData() function returns the current operating mode and cached data
22 packet for the EFI DHCPv4 Protocol driver.
24 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.
25 @param[out] Dhcp4ModeData Pointer to storage for the EFI_DHCP4_MODE_DATA structure.
27 @retval EFI_SUCCESS The mode data was returned.
28 @retval EFI_INVALID_PARAMETER This is NULL.
30 **/
31 EFI_STATUS
32 EFIAPI
33 EfiDhcp4GetModeData (
34 IN EFI_DHCP4_PROTOCOL *This,
35 OUT EFI_DHCP4_MODE_DATA *Dhcp4ModeData
38 /**
39 Initializes, changes, or resets the operational settings for the EFI DHCPv4 Protocol driver.
41 The Configure() function is used to initialize, change, or reset the operational
42 settings of the EFI DHCPv4 Protocol driver for the communication device on which
43 the EFI DHCPv4 Service Binding Protocol is installed. This function can be
44 successfully called only if both of the following are true:
45 * This instance of the EFI DHCPv4 Protocol driver is in the Dhcp4Stopped, Dhcp4Init,
46 Dhcp4InitReboot, or Dhcp4Bound states.
47 * No other EFI DHCPv4 Protocol driver instance that is controlled by this EFI
48 DHCPv4 Service Binding Protocol driver instance has configured this EFI DHCPv4
49 Protocol driver.
50 When this driver is in the Dhcp4Stopped state, it can transfer into one of the
51 following two possible initial states:
52 * Dhcp4Init
53 * Dhcp4InitReboot
54 The driver can transfer into these states by calling Configure() with a non-NULL
55 Dhcp4CfgData. The driver will transfer into the appropriate state based on the
56 supplied client network address in the ClientAddress parameter and DHCP options
57 in the OptionList parameter as described in RFC 2131.
58 When Configure() is called successfully while Dhcp4CfgData is set to NULL, the
59 default configuring data will be reset in the EFI DHCPv4 Protocol driver and
60 the state of the EFI DHCPv4 Protocol driver will not be changed. If one instance
61 wants to make it possible for another instance to configure the EFI DHCPv4 Protocol
62 driver, it must call this function with Dhcp4CfgData set to NULL.
64 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.
65 @param[in] Dhcp4CfgData Pointer to the EFI_DHCP4_CONFIG_DATA.
67 @retval EFI_SUCCESS The EFI DHCPv4 Protocol driver is now in the Dhcp4Init or
68 Dhcp4InitReboot state, if the original state of this driver
69 was Dhcp4Stopped and the value of Dhcp4CfgData was
70 not NULL. Otherwise, the state was left unchanged.
71 @retval EFI_ACCESS_DENIED This instance of the EFI DHCPv4 Protocol driver was not in the
72 Dhcp4Stopped, Dhcp4Init, Dhcp4InitReboot, or Dhcp4Bound state;
73 Or onother instance of this EFI DHCPv4 Protocol driver is already
74 in a valid configured state.
75 @retval EFI_INVALID_PARAMETER Some parameter is NULL.
76 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.
77 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
79 **/
80 EFI_STATUS
81 EFIAPI
82 EfiDhcp4Configure (
83 IN EFI_DHCP4_PROTOCOL *This,
84 IN EFI_DHCP4_CONFIG_DATA *Dhcp4CfgData OPTIONAL
85 );
87 /**
88 Starts the DHCP configuration process.
90 The Start() function starts the DHCP configuration process. This function can
91 be called only when the EFI DHCPv4 Protocol driver is in the Dhcp4Init or
92 Dhcp4InitReboot state.
93 If the DHCP process completes successfully, the state of the EFI DHCPv4 Protocol
94 driver will be transferred through Dhcp4Selecting and Dhcp4Requesting to the
95 Dhcp4Bound state. The CompletionEvent will then be signaled if it is not NULL.
96 If the process aborts, either by the user or by some unexpected network error,
97 the state is restored to the Dhcp4Init state. The Start() function can be called
98 again to restart the process.
99 Refer to RFC 2131 for precise state transitions during this process. At the
100 time when each event occurs in this process, the callback function that was set
101 by EFI_DHCP4_PROTOCOL.Configure() will be called and the user can take this
102 opportunity to control the process.
104 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.
105 @param[in] CompletionEvent If not NULL, indicates the event that will be signaled when the
106 EFI DHCPv4 Protocol driver is transferred into the
107 Dhcp4Bound state or when the DHCP process is aborted.
108 EFI_DHCP4_PROTOCOL.GetModeData() can be called to
109 check the completion status. If NULL,
110 EFI_DHCP4_PROTOCOL.Start() will wait until the driver
111 is transferred into the Dhcp4Bound state or the process fails.
113 @retval EFI_SUCCESS The DHCP configuration process has started, or it has completed
114 when CompletionEvent is NULL.
115 @retval EFI_NOT_STARTED The EFI DHCPv4 Protocol driver is in the Dhcp4Stopped
116 state. EFI_DHCP4_PROTOCOL. Configure() needs to be called.
117 @retval EFI_INVALID_PARAMETER This is NULL.
118 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.
119 @retval EFI_TIMEOUT The DHCP configuration process failed because no response was
120 received from the server within the specified timeout value.
121 @retval EFI_ABORTED The user aborted the DHCP process.
122 @retval EFI_ALREADY_STARTED Some other EFI DHCPv4 Protocol instance already started the
123 DHCP process.
124 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
127 EFI_STATUS
128 EFIAPI
129 EfiDhcp4Start (
130 IN EFI_DHCP4_PROTOCOL *This,
131 IN EFI_EVENT CompletionEvent OPTIONAL
135 Extends the lease time by sending a request packet.
137 The RenewRebind() function is used to manually extend the lease time when the
138 EFI DHCPv4 Protocol driver is in the Dhcp4Bound state and the lease time has
139 not expired yet. This function will send a request packet to the previously
140 found server (or to any server when RebindRequest is TRUE) and transfer the
141 state into the Dhcp4Renewing state (or Dhcp4Rebinding when RebindingRequest is
142 TRUE). When a response is received, the state is returned to Dhcp4Bound.
143 If no response is received before the try count is exceeded (the RequestTryCount
144 field that is specified in EFI_DHCP4_CONFIG_DATA) but before the lease time that
145 was issued by the previous server expires, the driver will return to the Dhcp4Bound
146 state and the previous configuration is restored. The outgoing and incoming packets
147 can be captured by the EFI_DHCP4_CALLBACK function.
149 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.
150 @param[in] RebindRequest If TRUE, this function broadcasts the request packets and enters
151 the Dhcp4Rebinding state. Otherwise, it sends a unicast
152 request packet and enters the Dhcp4Renewing state.
153 @param[in] CompletionEvent If not NULL, this event is signaled when the renew/rebind phase
154 completes or some error occurs.
155 EFI_DHCP4_PROTOCOL.GetModeData() can be called to
156 check the completion status. If NULL,
157 EFI_DHCP4_PROTOCOL.RenewRebind() will busy-wait
158 until the DHCP process finishes.
160 @retval EFI_SUCCESS The EFI DHCPv4 Protocol driver is now in the
161 Dhcp4Renewing state or is back to the Dhcp4Bound state.
162 @retval EFI_NOT_STARTED The EFI DHCPv4 Protocol driver is in the Dhcp4Stopped
163 state. EFI_DHCP4_PROTOCOL.Configure() needs to
164 be called.
165 @retval EFI_INVALID_PARAMETER This is NULL.
166 @retval EFI_TIMEOUT There was no response from the server when the try count was
167 exceeded.
168 @retval EFI_ACCESS_DENIED The driver is not in the Dhcp4Bound state.
169 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
172 EFI_STATUS
173 EFIAPI
174 EfiDhcp4RenewRebind (
175 IN EFI_DHCP4_PROTOCOL *This,
176 IN BOOLEAN RebindRequest,
177 IN EFI_EVENT CompletionEvent OPTIONAL
181 Releases the current address configuration.
183 The Release() function releases the current configured IP address by doing either
184 of the following:
185 * Sending a DHCPRELEASE packet when the EFI DHCPv4 Protocol driver is in the
186 Dhcp4Bound state
187 * Setting the previously assigned IP address that was provided with the
188 EFI_DHCP4_PROTOCOL.Configure() function to 0.0.0.0 when the driver is in
189 Dhcp4InitReboot state
190 After a successful call to this function, the EFI DHCPv4 Protocol driver returns
191 to the Dhcp4Init state and any subsequent incoming packets will be discarded silently.
193 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.
195 @retval EFI_SUCCESS The EFI DHCPv4 Protocol driver is now in the Dhcp4Init phase.
196 @retval EFI_INVALID_PARAMETER This is NULL.
197 @retval EFI_ACCESS_DENIED The EFI DHCPv4 Protocol driver is not Dhcp4InitReboot state.
198 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
201 EFI_STATUS
202 EFIAPI
203 EfiDhcp4Release (
204 IN EFI_DHCP4_PROTOCOL *This
208 Stops the current address configuration.
210 The Stop() function is used to stop the DHCP configuration process. After this
211 function is called successfully, the EFI DHCPv4 Protocol driver is transferred
212 into the Dhcp4Stopped state. EFI_DHCP4_PROTOCOL.Configure() needs to be called
213 before DHCP configuration process can be started again. This function can be
214 called when the EFI DHCPv4 Protocol driver is in any state.
216 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.
218 @retval EFI_SUCCESS The EFI DHCPv4 Protocol driver is now in the Dhcp4Stopped phase.
219 @retval EFI_INVALID_PARAMETER This is NULL.
222 EFI_STATUS
223 EFIAPI
224 EfiDhcp4Stop (
225 IN EFI_DHCP4_PROTOCOL *This
229 Builds a DHCP packet, given the options to be appended or deleted or replaced.
231 The Build() function is used to assemble a new packet from the original packet
232 by replacing or deleting existing options or appending new options. This function
233 does not change any state of the EFI DHCPv4 Protocol driver and can be used at
234 any time.
236 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.
237 @param[in] SeedPacket Initial packet to be used as a base for building new packet.
238 @param[in] DeleteCount Number of opcodes in the DeleteList.
239 @param[in] DeleteList List of opcodes to be deleted from the seed packet.
240 Ignored if DeleteCount is zero.
241 @param[in] AppendCount Number of entries in the OptionList.
242 @param[in] AppendList Pointer to a DHCP option list to be appended to SeedPacket.
243 If SeedPacket also contains options in this list, they are
244 replaced by new options (except pad option). Ignored if
245 AppendCount is zero. Type EFI_DHCP4_PACKET_OPTION
246 @param[out] NewPacket Pointer to storage for the pointer to the new allocated packet.
247 Use the EFI Boot Service FreePool() on the resulting pointer
248 when done with the packet.
250 @retval EFI_SUCCESS The new packet was built.
251 @retval EFI_OUT_OF_RESOURCES Storage for the new packet could not be allocated.
252 @retval EFI_INVALID_PARAMETER Some parameter is NULL.
255 EFI_STATUS
256 EFIAPI
257 EfiDhcp4Build (
258 IN EFI_DHCP4_PROTOCOL *This,
259 IN EFI_DHCP4_PACKET *SeedPacket,
260 IN UINT32 DeleteCount,
261 IN UINT8 *DeleteList OPTIONAL,
262 IN UINT32 AppendCount,
263 IN EFI_DHCP4_PACKET_OPTION *AppendList[] OPTIONAL,
264 OUT EFI_DHCP4_PACKET **NewPacket
268 Transmits a DHCP formatted packet and optionally waits for responses.
270 The TransmitReceive() function is used to transmit a DHCP packet and optionally
271 wait for the response from servers. This function does not change the state of
272 the EFI DHCPv4 Protocol driver and thus can be used at any time.
274 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.
275 @param[in] Token Pointer to the EFI_DHCP4_TRANSMIT_RECEIVE_TOKEN structure.
277 @retval EFI_SUCCESS The packet was successfully queued for transmission.
278 @retval EFI_INVALID_PARAMETER Some parameter is NULL.
279 @retval EFI_NOT_READY The previous call to this function has not finished yet. Try to call
280 this function after collection process completes.
281 @retval EFI_NO_MAPPING The default station address is not available yet.
282 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.
283 @retval Others Some other unexpected error occurred.
286 EFI_STATUS
287 EFIAPI
288 EfiDhcp4TransmitReceive (
289 IN EFI_DHCP4_PROTOCOL *This,
290 IN EFI_DHCP4_TRANSMIT_RECEIVE_TOKEN *Token
294 Parses the packed DHCP option data.
296 The Parse() function is used to retrieve the option list from a DHCP packet.
297 If *OptionCount isn't zero, and there is enough space for all the DHCP options
298 in the Packet, each element of PacketOptionList is set to point to somewhere in
299 the Packet->Dhcp4.Option where a new DHCP option begins. If RFC3396 is supported,
300 the caller should reassemble the parsed DHCP options to get the finial result.
301 If *OptionCount is zero or there isn't enough space for all of them, the number
302 of DHCP options in the Packet is returned in OptionCount.
304 @param This Pointer to the EFI_DHCP4_PROTOCOL instance.
305 @param Packet Pointer to packet to be parsed.
306 @param OptionCount On input, the number of entries in the PacketOptionList.
307 On output, the number of entries that were written into the
308 PacketOptionList.
309 @param PacketOptionList List of packet option entries to be filled in. End option or pad
310 options are not included.
312 @retval EFI_SUCCESS The packet was successfully parsed.
313 @retval EFI_INVALID_PARAMETER Some parameter is NULL.
314 @retval EFI_BUFFER_TOO_SMALL One or more of the following conditions is TRUE:
315 1) *OptionCount is smaller than the number of options that
316 were found in the Packet.
317 2) PacketOptionList is NULL.
320 EFI_STATUS
321 EFIAPI
322 EfiDhcp4Parse (
323 IN EFI_DHCP4_PROTOCOL *This,
324 IN EFI_DHCP4_PACKET *Packet,
325 IN OUT UINT32 *OptionCount,
326 OUT EFI_DHCP4_PACKET_OPTION *PacketOptionList[] OPTIONAL
329 EFI_DHCP4_PROTOCOL mDhcp4ProtocolTemplate = {
330 EfiDhcp4GetModeData,
331 EfiDhcp4Configure,
332 EfiDhcp4Start,
333 EfiDhcp4RenewRebind,
334 EfiDhcp4Release,
335 EfiDhcp4Stop,
336 EfiDhcp4Build,
337 EfiDhcp4TransmitReceive,
338 EfiDhcp4Parse
342 Returns the current operating mode and cached data packet for the EFI DHCPv4 Protocol driver.
344 The GetModeData() function returns the current operating mode and cached data
345 packet for the EFI DHCPv4 Protocol driver.
347 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.
348 @param[out] Dhcp4ModeData Pointer to storage for the EFI_DHCP4_MODE_DATA structure.
350 @retval EFI_SUCCESS The mode data was returned.
351 @retval EFI_INVALID_PARAMETER This is NULL.
354 EFI_STATUS
355 EFIAPI
356 EfiDhcp4GetModeData (
357 IN EFI_DHCP4_PROTOCOL *This,
358 OUT EFI_DHCP4_MODE_DATA *Dhcp4ModeData
361 DHCP_PROTOCOL *Instance;
362 DHCP_SERVICE *DhcpSb;
363 DHCP_PARAMETER *Para;
364 EFI_TPL OldTpl;
365 IP4_ADDR Ip;
368 // First validate the parameters.
370 if ((This == NULL) || (Dhcp4ModeData == NULL)) {
371 return EFI_INVALID_PARAMETER;
374 Instance = DHCP_INSTANCE_FROM_THIS (This);
376 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
377 DhcpSb = Instance->Service;
380 // Caller can use GetModeData to retrieve current DHCP states
381 // no matter whether it is the active child or not.
383 Dhcp4ModeData->State = (EFI_DHCP4_STATE) DhcpSb->DhcpState;
384 CopyMem (&Dhcp4ModeData->ConfigData, &DhcpSb->ActiveConfig, sizeof (Dhcp4ModeData->ConfigData));
385 CopyMem (&Dhcp4ModeData->ClientMacAddress, &DhcpSb->Mac, sizeof (Dhcp4ModeData->ClientMacAddress));
387 Ip = HTONL (DhcpSb->ClientAddr);
388 CopyMem (&Dhcp4ModeData->ClientAddress, &Ip, sizeof (EFI_IPv4_ADDRESS));
390 Ip = HTONL (DhcpSb->Netmask);
391 CopyMem (&Dhcp4ModeData->SubnetMask, &Ip, sizeof (EFI_IPv4_ADDRESS));
393 Ip = HTONL (DhcpSb->ServerAddr);
394 CopyMem (&Dhcp4ModeData->ServerAddress, &Ip, sizeof (EFI_IPv4_ADDRESS));
396 Para = DhcpSb->Para;
398 if (Para != NULL) {
399 Ip = HTONL (Para->Router);
400 CopyMem (&Dhcp4ModeData->RouterAddress, &Ip, sizeof (EFI_IPv4_ADDRESS));
401 Dhcp4ModeData->LeaseTime = Para->Lease;
402 } else {
403 ZeroMem (&Dhcp4ModeData->RouterAddress, sizeof (EFI_IPv4_ADDRESS));
404 Dhcp4ModeData->LeaseTime = 0xffffffff;
407 Dhcp4ModeData->ReplyPacket = DhcpSb->Selected;
409 gBS->RestoreTPL (OldTpl);
410 return EFI_SUCCESS;
415 Free the resource related to the configure parameters.
416 DHCP driver will make a copy of the user's configure
417 such as the time out value.
419 @param Config The DHCP configure data
422 VOID
423 DhcpCleanConfigure (
424 IN OUT EFI_DHCP4_CONFIG_DATA *Config
427 UINT32 Index;
429 if (Config->DiscoverTimeout != NULL) {
430 FreePool (Config->DiscoverTimeout);
433 if (Config->RequestTimeout != NULL) {
434 FreePool (Config->RequestTimeout);
437 if (Config->OptionList != NULL) {
438 for (Index = 0; Index < Config->OptionCount; Index++) {
439 if (Config->OptionList[Index] != NULL) {
440 FreePool (Config->OptionList[Index]);
444 FreePool (Config->OptionList);
447 ZeroMem (Config, sizeof (EFI_DHCP4_CONFIG_DATA));
452 Allocate memory for configure parameter such as timeout value for Dst,
453 then copy the configure parameter from Src to Dst.
455 @param[out] Dst The destination DHCP configure data.
456 @param[in] Src The source DHCP configure data.
458 @retval EFI_OUT_OF_RESOURCES Failed to allocate memory.
459 @retval EFI_SUCCESS The configure is copied.
462 EFI_STATUS
463 DhcpCopyConfigure (
464 OUT EFI_DHCP4_CONFIG_DATA *Dst,
465 IN EFI_DHCP4_CONFIG_DATA *Src
468 EFI_DHCP4_PACKET_OPTION **DstOptions;
469 EFI_DHCP4_PACKET_OPTION **SrcOptions;
470 INTN Len;
471 UINT32 Index;
473 CopyMem (Dst, Src, sizeof (*Dst));
474 Dst->DiscoverTimeout = NULL;
475 Dst->RequestTimeout = NULL;
476 Dst->OptionList = NULL;
479 // Allocate a memory then copy DiscoverTimeout to it
481 if (Src->DiscoverTimeout != NULL) {
482 Len = Src->DiscoverTryCount * sizeof (UINT32);
483 Dst->DiscoverTimeout = AllocatePool (Len);
485 if (Dst->DiscoverTimeout == NULL) {
486 return EFI_OUT_OF_RESOURCES;
489 for (Index = 0; Index < Src->DiscoverTryCount; Index++) {
490 Dst->DiscoverTimeout[Index] = MAX (Src->DiscoverTimeout[Index], 1);
495 // Allocate a memory then copy RequestTimeout to it
497 if (Src->RequestTimeout != NULL) {
498 Len = Src->RequestTryCount * sizeof (UINT32);
499 Dst->RequestTimeout = AllocatePool (Len);
501 if (Dst->RequestTimeout == NULL) {
502 goto ON_ERROR;
505 for (Index = 0; Index < Src->RequestTryCount; Index++) {
506 Dst->RequestTimeout[Index] = MAX (Src->RequestTimeout[Index], 1);
511 // Allocate an array of dhcp option point, then allocate memory
512 // for each option and copy the source option to it
514 if (Src->OptionList != NULL) {
515 Len = Src->OptionCount * sizeof (EFI_DHCP4_PACKET_OPTION *);
516 Dst->OptionList = AllocateZeroPool (Len);
518 if (Dst->OptionList == NULL) {
519 goto ON_ERROR;
522 DstOptions = Dst->OptionList;
523 SrcOptions = Src->OptionList;
525 for (Index = 0; Index < Src->OptionCount; Index++) {
526 Len = sizeof (EFI_DHCP4_PACKET_OPTION) + MAX (SrcOptions[Index]->Length - 1, 0);
528 DstOptions[Index] = AllocatePool (Len);
530 if (DstOptions[Index] == NULL) {
531 goto ON_ERROR;
534 CopyMem (DstOptions[Index], SrcOptions[Index], Len);
538 return EFI_SUCCESS;
540 ON_ERROR:
541 DhcpCleanConfigure (Dst);
542 return EFI_OUT_OF_RESOURCES;
547 Give up the control of the DHCP service to let other child
548 resume. Don't change the service's DHCP state and the Client
549 address and option list configure as required by RFC2131.
551 @param DhcpSb The DHCP service instance.
554 VOID
555 DhcpYieldControl (
556 IN DHCP_SERVICE *DhcpSb
559 EFI_DHCP4_CONFIG_DATA *Config;
561 Config = &DhcpSb->ActiveConfig;
563 DhcpSb->ServiceState = DHCP_UNCONFIGED;
564 DhcpSb->ActiveChild = NULL;
566 if (Config->DiscoverTimeout != NULL) {
567 FreePool (Config->DiscoverTimeout);
569 Config->DiscoverTryCount = 0;
570 Config->DiscoverTimeout = NULL;
573 if (Config->RequestTimeout != NULL) {
574 FreePool (Config->RequestTimeout);
576 Config->RequestTryCount = 0;
577 Config->RequestTimeout = NULL;
580 Config->Dhcp4Callback = NULL;
581 Config->CallbackContext = NULL;
586 Initializes, changes, or resets the operational settings for the EFI DHCPv4 Protocol driver.
588 The Configure() function is used to initialize, change, or reset the operational
589 settings of the EFI DHCPv4 Protocol driver for the communication device on which
590 the EFI DHCPv4 Service Binding Protocol is installed. This function can be
591 successfully called only if both of the following are true:
592 * This instance of the EFI DHCPv4 Protocol driver is in the Dhcp4Stopped, Dhcp4Init,
593 Dhcp4InitReboot, or Dhcp4Bound states.
594 * No other EFI DHCPv4 Protocol driver instance that is controlled by this EFI
595 DHCPv4 Service Binding Protocol driver instance has configured this EFI DHCPv4
596 Protocol driver.
597 When this driver is in the Dhcp4Stopped state, it can transfer into one of the
598 following two possible initial states:
599 * Dhcp4Init
600 * Dhcp4InitReboot
601 The driver can transfer into these states by calling Configure() with a non-NULL
602 Dhcp4CfgData. The driver will transfer into the appropriate state based on the
603 supplied client network address in the ClientAddress parameter and DHCP options
604 in the OptionList parameter as described in RFC 2131.
605 When Configure() is called successfully while Dhcp4CfgData is set to NULL, the
606 default configuring data will be reset in the EFI DHCPv4 Protocol driver and
607 the state of the EFI DHCPv4 Protocol driver will not be changed. If one instance
608 wants to make it possible for another instance to configure the EFI DHCPv4 Protocol
609 driver, it must call this function with Dhcp4CfgData set to NULL.
611 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.
612 @param[in] Dhcp4CfgData Pointer to the EFI_DHCP4_CONFIG_DATA.
614 @retval EFI_SUCCESS The EFI DHCPv4 Protocol driver is now in the Dhcp4Init or
615 Dhcp4InitReboot state, if the original state of this driver
616 was Dhcp4Stopped and the value of Dhcp4CfgData was
617 not NULL. Otherwise, the state was left unchanged.
618 @retval EFI_ACCESS_DENIED This instance of the EFI DHCPv4 Protocol driver was not in the
619 Dhcp4Stopped, Dhcp4Init, Dhcp4InitReboot, or Dhcp4Bound state;
620 Or onother instance of this EFI DHCPv4 Protocol driver is already
621 in a valid configured state.
622 @retval EFI_INVALID_PARAMETER Some parameter is NULL.
623 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.
624 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
627 EFI_STATUS
628 EFIAPI
629 EfiDhcp4Configure (
630 IN EFI_DHCP4_PROTOCOL *This,
631 IN EFI_DHCP4_CONFIG_DATA *Dhcp4CfgData OPTIONAL
634 EFI_DHCP4_CONFIG_DATA *Config;
635 DHCP_PROTOCOL *Instance;
636 DHCP_SERVICE *DhcpSb;
637 EFI_STATUS Status;
638 EFI_TPL OldTpl;
639 UINT32 Index;
640 IP4_ADDR Ip;
643 // First validate the parameters
645 if (This == NULL) {
646 return EFI_INVALID_PARAMETER;
649 if (Dhcp4CfgData != NULL) {
650 if (Dhcp4CfgData->DiscoverTryCount && (Dhcp4CfgData->DiscoverTimeout == NULL)) {
651 return EFI_INVALID_PARAMETER;
654 if (Dhcp4CfgData->RequestTryCount && (Dhcp4CfgData->RequestTimeout == NULL)) {
655 return EFI_INVALID_PARAMETER;
658 if (Dhcp4CfgData->OptionCount && (Dhcp4CfgData->OptionList == NULL)) {
659 return EFI_INVALID_PARAMETER;
662 CopyMem (&Ip, &Dhcp4CfgData->ClientAddress, sizeof (IP4_ADDR));
664 if ((Ip != 0) && !Ip4IsUnicast (NTOHL (Ip), 0)) {
666 return EFI_INVALID_PARAMETER;
670 Instance = DHCP_INSTANCE_FROM_THIS (This);
672 if (Instance->Signature != DHCP_PROTOCOL_SIGNATURE) {
673 return EFI_INVALID_PARAMETER;
676 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
678 DhcpSb = Instance->Service;
679 Config = &DhcpSb->ActiveConfig;
681 Status = EFI_ACCESS_DENIED;
683 if ((DhcpSb->DhcpState != Dhcp4Stopped) &&
684 (DhcpSb->DhcpState != Dhcp4Init) &&
685 (DhcpSb->DhcpState != Dhcp4InitReboot) &&
686 (DhcpSb->DhcpState != Dhcp4Bound)) {
688 goto ON_EXIT;
691 if ((DhcpSb->ActiveChild != NULL) && (DhcpSb->ActiveChild != Instance)) {
692 goto ON_EXIT;
695 if (Dhcp4CfgData != NULL) {
696 Status = EFI_OUT_OF_RESOURCES;
697 DhcpCleanConfigure (Config);
699 if (EFI_ERROR (DhcpCopyConfigure (Config, Dhcp4CfgData))) {
700 goto ON_EXIT;
703 DhcpSb->UserOptionLen = 0;
705 for (Index = 0; Index < Dhcp4CfgData->OptionCount; Index++) {
706 DhcpSb->UserOptionLen += Dhcp4CfgData->OptionList[Index]->Length + 2;
709 DhcpSb->ActiveChild = Instance;
711 if (DhcpSb->DhcpState == Dhcp4Stopped) {
712 DhcpSb->ClientAddr = EFI_NTOHL (Dhcp4CfgData->ClientAddress);
714 if (DhcpSb->ClientAddr != 0) {
715 DhcpSb->DhcpState = Dhcp4InitReboot;
716 } else {
717 DhcpSb->DhcpState = Dhcp4Init;
721 DhcpSb->ServiceState = DHCP_CONFIGED;
722 Status = EFI_SUCCESS;
724 } else if (DhcpSb->ActiveChild == Instance) {
725 Status = EFI_SUCCESS;
726 DhcpYieldControl (DhcpSb);
729 ON_EXIT:
730 gBS->RestoreTPL (OldTpl);
731 return Status;
736 Starts the DHCP configuration process.
738 The Start() function starts the DHCP configuration process. This function can
739 be called only when the EFI DHCPv4 Protocol driver is in the Dhcp4Init or
740 Dhcp4InitReboot state.
741 If the DHCP process completes successfully, the state of the EFI DHCPv4 Protocol
742 driver will be transferred through Dhcp4Selecting and Dhcp4Requesting to the
743 Dhcp4Bound state. The CompletionEvent will then be signaled if it is not NULL.
744 If the process aborts, either by the user or by some unexpected network error,
745 the state is restored to the Dhcp4Init state. The Start() function can be called
746 again to restart the process.
747 Refer to RFC 2131 for precise state transitions during this process. At the
748 time when each event occurs in this process, the callback function that was set
749 by EFI_DHCP4_PROTOCOL.Configure() will be called and the user can take this
750 opportunity to control the process.
752 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.
753 @param[in] CompletionEvent If not NULL, indicates the event that will be signaled when the
754 EFI DHCPv4 Protocol driver is transferred into the
755 Dhcp4Bound state or when the DHCP process is aborted.
756 EFI_DHCP4_PROTOCOL.GetModeData() can be called to
757 check the completion status. If NULL,
758 EFI_DHCP4_PROTOCOL.Start() will wait until the driver
759 is transferred into the Dhcp4Bound state or the process fails.
761 @retval EFI_SUCCESS The DHCP configuration process has started, or it has completed
762 when CompletionEvent is NULL.
763 @retval EFI_NOT_STARTED The EFI DHCPv4 Protocol driver is in the Dhcp4Stopped
764 state. EFI_DHCP4_PROTOCOL. Configure() needs to be called.
765 @retval EFI_INVALID_PARAMETER This is NULL.
766 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.
767 @retval EFI_TIMEOUT The DHCP configuration process failed because no response was
768 received from the server within the specified timeout value.
769 @retval EFI_ABORTED The user aborted the DHCP process.
770 @retval EFI_ALREADY_STARTED Some other EFI DHCPv4 Protocol instance already started the
771 DHCP process.
772 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
775 EFI_STATUS
776 EFIAPI
777 EfiDhcp4Start (
778 IN EFI_DHCP4_PROTOCOL *This,
779 IN EFI_EVENT CompletionEvent OPTIONAL
782 DHCP_PROTOCOL *Instance;
783 DHCP_SERVICE *DhcpSb;
784 EFI_STATUS Status;
785 EFI_TPL OldTpl;
788 // First validate the parameters
790 if (This == NULL) {
791 return EFI_INVALID_PARAMETER;
794 Instance = DHCP_INSTANCE_FROM_THIS (This);
796 if (Instance->Signature != DHCP_PROTOCOL_SIGNATURE) {
797 return EFI_INVALID_PARAMETER;
800 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
801 DhcpSb = Instance->Service;
803 if (DhcpSb->DhcpState == Dhcp4Stopped) {
804 Status = EFI_NOT_STARTED;
805 goto ON_ERROR;
808 if ((DhcpSb->DhcpState != Dhcp4Init) && (DhcpSb->DhcpState != Dhcp4InitReboot)) {
809 Status = EFI_ALREADY_STARTED;
810 goto ON_ERROR;
813 DhcpSb->IoStatus = EFI_ALREADY_STARTED;
815 if (EFI_ERROR (Status = DhcpInitRequest (DhcpSb))) {
816 goto ON_ERROR;
820 // Start/Restart the receiving.
822 Status = UdpIoRecvDatagram (DhcpSb->UdpIo, DhcpInput, DhcpSb, 0);
824 if (EFI_ERROR (Status) && (Status != EFI_ALREADY_STARTED)) {
825 goto ON_ERROR;
828 Instance->CompletionEvent = CompletionEvent;
831 // Restore the TPL now, don't call poll function at TPL_CALLBACK.
833 gBS->RestoreTPL (OldTpl);
835 if (CompletionEvent == NULL) {
836 while (DhcpSb->IoStatus == EFI_ALREADY_STARTED) {
837 DhcpSb->UdpIo->Udp->Poll (DhcpSb->UdpIo->Udp);
840 return DhcpSb->IoStatus;
843 return EFI_SUCCESS;
845 ON_ERROR:
846 gBS->RestoreTPL (OldTpl);
847 return Status;
852 Extends the lease time by sending a request packet.
854 The RenewRebind() function is used to manually extend the lease time when the
855 EFI DHCPv4 Protocol driver is in the Dhcp4Bound state and the lease time has
856 not expired yet. This function will send a request packet to the previously
857 found server (or to any server when RebindRequest is TRUE) and transfer the
858 state into the Dhcp4Renewing state (or Dhcp4Rebinding when RebindingRequest is
859 TRUE). When a response is received, the state is returned to Dhcp4Bound.
860 If no response is received before the try count is exceeded (the RequestTryCount
861 field that is specified in EFI_DHCP4_CONFIG_DATA) but before the lease time that
862 was issued by the previous server expires, the driver will return to the Dhcp4Bound
863 state and the previous configuration is restored. The outgoing and incoming packets
864 can be captured by the EFI_DHCP4_CALLBACK function.
866 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.
867 @param[in] RebindRequest If TRUE, this function broadcasts the request packets and enters
868 the Dhcp4Rebinding state. Otherwise, it sends a unicast
869 request packet and enters the Dhcp4Renewing state.
870 @param[in] CompletionEvent If not NULL, this event is signaled when the renew/rebind phase
871 completes or some error occurs.
872 EFI_DHCP4_PROTOCOL.GetModeData() can be called to
873 check the completion status. If NULL,
874 EFI_DHCP4_PROTOCOL.RenewRebind() will busy-wait
875 until the DHCP process finishes.
877 @retval EFI_SUCCESS The EFI DHCPv4 Protocol driver is now in the
878 Dhcp4Renewing state or is back to the Dhcp4Bound state.
879 @retval EFI_NOT_STARTED The EFI DHCPv4 Protocol driver is in the Dhcp4Stopped
880 state. EFI_DHCP4_PROTOCOL.Configure() needs to
881 be called.
882 @retval EFI_INVALID_PARAMETER This is NULL.
883 @retval EFI_TIMEOUT There was no response from the server when the try count was
884 exceeded.
885 @retval EFI_ACCESS_DENIED The driver is not in the Dhcp4Bound state.
886 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
889 EFI_STATUS
890 EFIAPI
891 EfiDhcp4RenewRebind (
892 IN EFI_DHCP4_PROTOCOL *This,
893 IN BOOLEAN RebindRequest,
894 IN EFI_EVENT CompletionEvent OPTIONAL
897 DHCP_PROTOCOL *Instance;
898 DHCP_SERVICE *DhcpSb;
899 EFI_STATUS Status;
900 EFI_TPL OldTpl;
903 // First validate the parameters
905 if (This == NULL) {
906 return EFI_INVALID_PARAMETER;
909 Instance = DHCP_INSTANCE_FROM_THIS (This);
911 if (Instance->Signature != DHCP_PROTOCOL_SIGNATURE) {
912 return EFI_INVALID_PARAMETER;
915 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
916 DhcpSb = Instance->Service;
918 if (DhcpSb->DhcpState == Dhcp4Stopped) {
919 Status = EFI_NOT_STARTED;
920 goto ON_ERROR;
923 if (DhcpSb->DhcpState != Dhcp4Bound) {
924 Status = EFI_ACCESS_DENIED;
925 goto ON_ERROR;
928 if (DHCP_IS_BOOTP (DhcpSb->Para)) {
929 return EFI_SUCCESS;
933 // Transit the states then send a extra DHCP request
935 if (!RebindRequest) {
936 DhcpSetState (DhcpSb, Dhcp4Renewing, FALSE);
937 } else {
938 DhcpSetState (DhcpSb, Dhcp4Rebinding, FALSE);
941 Status = DhcpSendMessage (
942 DhcpSb,
943 DhcpSb->Selected,
944 DhcpSb->Para,
945 DHCP_MSG_REQUEST,
946 (UINT8 *) "Extra renew/rebind by the application"
949 if (EFI_ERROR (Status)) {
950 DhcpSetState (DhcpSb, Dhcp4Bound, FALSE);
951 goto ON_ERROR;
954 DhcpSb->ExtraRefresh = TRUE;
955 DhcpSb->IoStatus = EFI_ALREADY_STARTED;
956 Instance->RenewRebindEvent = CompletionEvent;
958 gBS->RestoreTPL (OldTpl);
960 if (CompletionEvent == NULL) {
961 while (DhcpSb->IoStatus == EFI_ALREADY_STARTED) {
962 DhcpSb->UdpIo->Udp->Poll (DhcpSb->UdpIo->Udp);
965 return DhcpSb->IoStatus;
968 return EFI_SUCCESS;
970 ON_ERROR:
971 gBS->RestoreTPL (OldTpl);
972 return Status;
977 Releases the current address configuration.
979 The Release() function releases the current configured IP address by doing either
980 of the following:
981 * Sending a DHCPRELEASE packet when the EFI DHCPv4 Protocol driver is in the
982 Dhcp4Bound state
983 * Setting the previously assigned IP address that was provided with the
984 EFI_DHCP4_PROTOCOL.Configure() function to 0.0.0.0 when the driver is in
985 Dhcp4InitReboot state
986 After a successful call to this function, the EFI DHCPv4 Protocol driver returns
987 to the Dhcp4Init state and any subsequent incoming packets will be discarded silently.
989 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.
991 @retval EFI_SUCCESS The EFI DHCPv4 Protocol driver is now in the Dhcp4Init phase.
992 @retval EFI_INVALID_PARAMETER This is NULL.
993 @retval EFI_ACCESS_DENIED The EFI DHCPv4 Protocol driver is not Dhcp4InitReboot state.
994 @retval EFI_DEVICE_ERROR An unexpected system or network error occurred.
997 EFI_STATUS
998 EFIAPI
999 EfiDhcp4Release (
1000 IN EFI_DHCP4_PROTOCOL *This
1003 DHCP_PROTOCOL *Instance;
1004 DHCP_SERVICE *DhcpSb;
1005 EFI_STATUS Status;
1006 EFI_TPL OldTpl;
1009 // First validate the parameters
1011 if (This == NULL) {
1012 return EFI_INVALID_PARAMETER;
1015 Instance = DHCP_INSTANCE_FROM_THIS (This);
1017 if (Instance->Signature != DHCP_PROTOCOL_SIGNATURE) {
1018 return EFI_INVALID_PARAMETER;
1021 Status = EFI_SUCCESS;
1022 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
1023 DhcpSb = Instance->Service;
1025 if ((DhcpSb->DhcpState != Dhcp4InitReboot) && (DhcpSb->DhcpState != Dhcp4Bound)) {
1026 Status = EFI_ACCESS_DENIED;
1027 goto ON_EXIT;
1030 if (!DHCP_IS_BOOTP (DhcpSb->Para) && (DhcpSb->DhcpState == Dhcp4Bound)) {
1031 Status = DhcpSendMessage (
1032 DhcpSb,
1033 DhcpSb->Selected,
1034 DhcpSb->Para,
1035 DHCP_MSG_RELEASE,
1036 NULL
1039 if (EFI_ERROR (Status)) {
1040 Status = EFI_DEVICE_ERROR;
1041 goto ON_EXIT;
1045 DhcpCleanLease (DhcpSb);
1047 ON_EXIT:
1048 gBS->RestoreTPL (OldTpl);
1049 return Status;
1054 Stops the current address configuration.
1056 The Stop() function is used to stop the DHCP configuration process. After this
1057 function is called successfully, the EFI DHCPv4 Protocol driver is transferred
1058 into the Dhcp4Stopped state. EFI_DHCP4_PROTOCOL.Configure() needs to be called
1059 before DHCP configuration process can be started again. This function can be
1060 called when the EFI DHCPv4 Protocol driver is in any state.
1062 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.
1064 @retval EFI_SUCCESS The EFI DHCPv4 Protocol driver is now in the Dhcp4Stopped phase.
1065 @retval EFI_INVALID_PARAMETER This is NULL.
1068 EFI_STATUS
1069 EFIAPI
1070 EfiDhcp4Stop (
1071 IN EFI_DHCP4_PROTOCOL *This
1074 DHCP_PROTOCOL *Instance;
1075 DHCP_SERVICE *DhcpSb;
1076 EFI_TPL OldTpl;
1079 // First validate the parameters
1081 if (This == NULL) {
1082 return EFI_INVALID_PARAMETER;
1085 Instance = DHCP_INSTANCE_FROM_THIS (This);
1087 if (Instance->Signature != DHCP_PROTOCOL_SIGNATURE) {
1088 return EFI_INVALID_PARAMETER;
1091 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
1092 DhcpSb = Instance->Service;
1094 DhcpCleanLease (DhcpSb);
1096 DhcpSb->DhcpState = Dhcp4Stopped;
1097 DhcpSb->ServiceState = DHCP_UNCONFIGED;
1099 gBS->RestoreTPL (OldTpl);
1100 return EFI_SUCCESS;
1105 Builds a DHCP packet, given the options to be appended or deleted or replaced.
1107 The Build() function is used to assemble a new packet from the original packet
1108 by replacing or deleting existing options or appending new options. This function
1109 does not change any state of the EFI DHCPv4 Protocol driver and can be used at
1110 any time.
1112 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.
1113 @param[in] SeedPacket Initial packet to be used as a base for building new packet.
1114 @param[in] DeleteCount Number of opcodes in the DeleteList.
1115 @param[in] DeleteList List of opcodes to be deleted from the seed packet.
1116 Ignored if DeleteCount is zero.
1117 @param[in] AppendCount Number of entries in the OptionList.
1118 @param[in] AppendList Pointer to a DHCP option list to be appended to SeedPacket.
1119 If SeedPacket also contains options in this list, they are
1120 replaced by new options (except pad option). Ignored if
1121 AppendCount is zero. Type EFI_DHCP4_PACKET_OPTION
1122 @param[out] NewPacket Pointer to storage for the pointer to the new allocated packet.
1123 Use the EFI Boot Service FreePool() on the resulting pointer
1124 when done with the packet.
1126 @retval EFI_SUCCESS The new packet was built.
1127 @retval EFI_OUT_OF_RESOURCES Storage for the new packet could not be allocated.
1128 @retval EFI_INVALID_PARAMETER Some parameter is NULL.
1131 EFI_STATUS
1132 EFIAPI
1133 EfiDhcp4Build (
1134 IN EFI_DHCP4_PROTOCOL *This,
1135 IN EFI_DHCP4_PACKET *SeedPacket,
1136 IN UINT32 DeleteCount,
1137 IN UINT8 *DeleteList OPTIONAL,
1138 IN UINT32 AppendCount,
1139 IN EFI_DHCP4_PACKET_OPTION *AppendList[] OPTIONAL,
1140 OUT EFI_DHCP4_PACKET **NewPacket
1144 // First validate the parameters
1146 if ((This == NULL) || (NewPacket == NULL)) {
1147 return EFI_INVALID_PARAMETER;
1150 if ((SeedPacket == NULL) || (SeedPacket->Dhcp4.Magik != DHCP_OPTION_MAGIC) ||
1151 EFI_ERROR (DhcpValidateOptions (SeedPacket, NULL))) {
1153 return EFI_INVALID_PARAMETER;
1156 if (((DeleteCount == 0) && (AppendCount == 0)) ||
1157 ((DeleteCount != 0) && (DeleteList == NULL)) ||
1158 ((AppendCount != 0) && (AppendList == NULL))) {
1160 return EFI_INVALID_PARAMETER;
1163 return DhcpBuild (
1164 SeedPacket,
1165 DeleteCount,
1166 DeleteList,
1167 AppendCount,
1168 AppendList,
1169 NewPacket
1174 Callback by UdpIoCreatePort() when creating UdpIo for this Dhcp4 instance.
1176 @param[in] UdpIo The UdpIo being created.
1177 @param[in] Context Dhcp4 instance.
1179 @retval EFI_SUCCESS UdpIo is configured successfully.
1180 @retval other Other error occurs.
1182 EFI_STATUS
1183 Dhcp4InstanceConfigUdpIo (
1184 IN UDP_IO_PORT *UdpIo,
1185 IN VOID *Context
1188 DHCP_PROTOCOL *Instance;
1189 DHCP_SERVICE *DhcpSb;
1190 EFI_DHCP4_TRANSMIT_RECEIVE_TOKEN *Token;
1191 EFI_UDP4_CONFIG_DATA UdpConfigData;
1192 IP4_ADDR Ip;
1194 Instance = (DHCP_PROTOCOL *) Context;
1195 DhcpSb = Instance->Service;
1196 Token = Instance->Token;
1198 ZeroMem (&UdpConfigData, sizeof (EFI_UDP4_CONFIG_DATA));
1200 UdpConfigData.AcceptBroadcast = TRUE;
1201 UdpConfigData.AllowDuplicatePort = TRUE;
1202 UdpConfigData.TimeToLive = 64;
1203 UdpConfigData.DoNotFragment = TRUE;
1205 Ip = HTONL (DhcpSb->ClientAddr);
1206 CopyMem (&UdpConfigData.StationAddress, &Ip, sizeof (EFI_IPv4_ADDRESS));
1208 Ip = HTONL (DhcpSb->Netmask);
1209 CopyMem (&UdpConfigData.SubnetMask, &Ip, sizeof (EFI_IPv4_ADDRESS));
1211 if ((Token->ListenPointCount == 0) || (Token->ListenPoints[0].ListenPort == 0)) {
1212 UdpConfigData.StationPort = DHCP_CLIENT_PORT;
1213 } else {
1214 UdpConfigData.StationPort = Token->ListenPoints[0].ListenPort;
1217 return UdpIo->Udp->Configure (UdpIo->Udp, &UdpConfigData);
1221 Create UdpIo for this Dhcp4 instance.
1223 @param Instance The Dhcp4 instance.
1225 @retval EFI_SUCCESS UdpIo is created successfully.
1226 @retval EFI_OUT_OF_RESOURCES Fails to create UdpIo because of limited
1227 resources or configuration failure.
1229 EFI_STATUS
1230 Dhcp4InstanceCreateUdpIo (
1231 IN OUT DHCP_PROTOCOL *Instance
1234 DHCP_SERVICE *DhcpSb;
1236 ASSERT (Instance->Token != NULL);
1238 DhcpSb = Instance->Service;
1239 Instance->UdpIo = UdpIoCreatePort (DhcpSb->Controller, DhcpSb->Image, Dhcp4InstanceConfigUdpIo, Instance);
1240 if (Instance->UdpIo == NULL) {
1241 return EFI_OUT_OF_RESOURCES;
1242 } else {
1243 return EFI_SUCCESS;
1248 Callback of Dhcp packet. Does nothing.
1250 @param Arg The context.
1253 VOID
1254 DhcpDummyExtFree (
1255 IN VOID *Arg
1261 Callback of UdpIoRecvDatagram() that handles a Dhcp4 packet.
1263 Only BOOTP responses will be handled that correspond to the Xid of the request
1264 sent out. The packet will be queued to the response queue.
1266 @param UdpPacket The Dhcp4 packet.
1267 @param Points Udp4 address pair.
1268 @param IoStatus Status of the input.
1269 @param Context Extra info for the input.
1272 VOID
1273 PxeDhcpInput (
1274 NET_BUF *UdpPacket,
1275 UDP_POINTS *Points,
1276 EFI_STATUS IoStatus,
1277 VOID *Context
1280 DHCP_PROTOCOL *Instance;
1281 DHCP_SERVICE *DhcpSb;
1282 EFI_DHCP4_HEADER *Head;
1283 NET_BUF *Wrap;
1284 EFI_DHCP4_PACKET *Packet;
1285 EFI_DHCP4_TRANSMIT_RECEIVE_TOKEN *Token;
1286 UINT32 Len;
1287 EFI_STATUS Status;
1289 Wrap = NULL;
1290 Instance = (DHCP_PROTOCOL *) Context;
1291 Token = Instance->Token;
1292 DhcpSb = Instance->Service;
1295 // Don't restart receive if error occurs or DHCP is destroyed.
1297 if (EFI_ERROR (IoStatus)) {
1298 return ;
1301 ASSERT (UdpPacket != NULL);
1304 // Validate the packet received
1306 if (UdpPacket->TotalSize < sizeof (EFI_DHCP4_HEADER)) {
1307 goto RESTART;
1311 // Copy the DHCP message to a continuous memory block, make the buffer size
1312 // of the EFI_DHCP4_PACKET a multiple of 4-byte.
1314 Len = NET_ROUNDUP (sizeof (EFI_DHCP4_PACKET) + UdpPacket->TotalSize - sizeof (EFI_DHCP4_HEADER), 4);
1315 Wrap = NetbufAlloc (Len);
1316 if (Wrap == NULL) {
1317 goto RESTART;
1320 Packet = (EFI_DHCP4_PACKET *) NetbufAllocSpace (Wrap, Len, NET_BUF_TAIL);
1321 ASSERT (Packet != NULL);
1323 Packet->Size = Len;
1324 Head = &Packet->Dhcp4.Header;
1325 Packet->Length = NetbufCopy (UdpPacket, 0, UdpPacket->TotalSize, (UINT8 *) Head);
1327 if (Packet->Length != UdpPacket->TotalSize) {
1328 goto RESTART;
1332 // Is this packet the answer to our packet?
1334 if ((Head->OpCode != BOOTP_REPLY) ||
1335 (Head->Xid != Token->Packet->Dhcp4.Header.Xid) ||
1336 (CompareMem (DhcpSb->ClientAddressSendOut, Head->ClientHwAddr, Head->HwAddrLen) != 0)) {
1337 goto RESTART;
1341 // Validate the options and retrieve the interested options
1343 if ((Packet->Length > sizeof (EFI_DHCP4_HEADER) + sizeof (UINT32)) &&
1344 (Packet->Dhcp4.Magik == DHCP_OPTION_MAGIC) &&
1345 EFI_ERROR (DhcpValidateOptions (Packet, NULL))) {
1347 goto RESTART;
1351 // Keep this packet in the ResponseQueue.
1353 NET_GET_REF (Wrap);
1354 NetbufQueAppend (&Instance->ResponseQueue, Wrap);
1356 RESTART:
1358 NetbufFree (UdpPacket);
1360 if (Wrap != NULL) {
1361 NetbufFree (Wrap);
1364 Status = UdpIoRecvDatagram (Instance->UdpIo, PxeDhcpInput, Instance, 0);
1365 if (EFI_ERROR (Status)) {
1366 PxeDhcpDone (Instance);
1371 Complete a Dhcp4 transaction and signal the upper layer.
1373 @param Instance Dhcp4 instance.
1376 VOID
1377 PxeDhcpDone (
1378 IN DHCP_PROTOCOL *Instance
1381 EFI_DHCP4_TRANSMIT_RECEIVE_TOKEN *Token;
1383 Token = Instance->Token;
1385 Token->ResponseCount = Instance->ResponseQueue.BufNum;
1386 if (Token->ResponseCount != 0) {
1387 Token->ResponseList = (EFI_DHCP4_PACKET *) AllocatePool (Instance->ResponseQueue.BufSize);
1388 if (Token->ResponseList == NULL) {
1389 Token->Status = EFI_OUT_OF_RESOURCES;
1390 goto SIGNAL_USER;
1394 // Copy the received DHCP responses.
1396 NetbufQueCopy (&Instance->ResponseQueue, 0, Instance->ResponseQueue.BufSize, (UINT8 *) Token->ResponseList);
1397 Token->Status = EFI_SUCCESS;
1398 } else {
1399 Token->ResponseList = NULL;
1400 Token->Status = EFI_TIMEOUT;
1403 SIGNAL_USER:
1405 // Clean up the resources dedicated for this transmit receive transaction.
1407 NetbufQueFlush (&Instance->ResponseQueue);
1408 UdpIoCleanPort (Instance->UdpIo);
1409 UdpIoFreePort (Instance->UdpIo);
1410 Instance->UdpIo = NULL;
1411 Instance->Token = NULL;
1413 if (Token->CompletionEvent != NULL) {
1414 gBS->SignalEvent (Token->CompletionEvent);
1420 Transmits a DHCP formatted packet and optionally waits for responses.
1422 The TransmitReceive() function is used to transmit a DHCP packet and optionally
1423 wait for the response from servers. This function does not change the state of
1424 the EFI DHCPv4 Protocol driver and thus can be used at any time.
1426 @param[in] This Pointer to the EFI_DHCP4_PROTOCOL instance.
1427 @param[in] Token Pointer to the EFI_DHCP4_TRANSMIT_RECEIVE_TOKEN structure.
1429 @retval EFI_SUCCESS The packet was successfully queued for transmission.
1430 @retval EFI_INVALID_PARAMETER Some parameter is NULL.
1431 @retval EFI_NOT_READY The previous call to this function has not finished yet. Try to call
1432 this function after collection process completes.
1433 @retval EFI_NO_MAPPING The default station address is not available yet.
1434 @retval EFI_OUT_OF_RESOURCES Required system resources could not be allocated.
1435 @retval Others Some other unexpected error occurred.
1438 EFI_STATUS
1439 EFIAPI
1440 EfiDhcp4TransmitReceive (
1441 IN EFI_DHCP4_PROTOCOL *This,
1442 IN EFI_DHCP4_TRANSMIT_RECEIVE_TOKEN *Token
1445 DHCP_PROTOCOL *Instance;
1446 EFI_TPL OldTpl;
1447 EFI_STATUS Status;
1448 NET_FRAGMENT Frag;
1449 NET_BUF *Wrap;
1450 UDP_POINTS EndPoint;
1451 IP4_ADDR Ip;
1452 DHCP_SERVICE *DhcpSb;
1453 IP4_ADDR Gateway;
1454 IP4_ADDR SubnetMask;
1456 if ((This == NULL) || (Token == NULL) || (Token->Packet == NULL)) {
1457 return EFI_INVALID_PARAMETER;
1460 Instance = DHCP_INSTANCE_FROM_THIS (This);
1461 DhcpSb = Instance->Service;
1463 if (Instance->Token != NULL) {
1465 // The previous call to TransmitReceive is not finished.
1467 return EFI_NOT_READY;
1470 if ((Token->Packet->Dhcp4.Magik != DHCP_OPTION_MAGIC) ||
1471 (NTOHL (Token->Packet->Dhcp4.Header.Xid) == Instance->Service->Xid) ||
1472 (Token->TimeoutValue == 0) ||
1473 ((Token->ListenPointCount != 0) && (Token->ListenPoints == NULL)) ||
1474 EFI_ERROR (DhcpValidateOptions (Token->Packet, NULL)) ||
1475 EFI_IP4_EQUAL (&Token->RemoteAddress, &mZeroIp4Addr)
1478 // The DHCP packet isn't well-formed, the Transaction ID is already used,
1479 // the timeout value is zero, the ListenPoint is invalid, or the
1480 // RemoteAddress is zero.
1482 return EFI_INVALID_PARAMETER;
1485 if (DhcpSb->ClientAddr == 0) {
1487 return EFI_NO_MAPPING;
1490 OldTpl = gBS->RaiseTPL (TPL_CALLBACK);
1493 // Save the token and the timeout value.
1495 Instance->Token = Token;
1496 Instance->Timeout = Token->TimeoutValue;
1499 // Create a UDP IO for this transmit receive transaction.
1501 Status = Dhcp4InstanceCreateUdpIo (Instance);
1502 if (EFI_ERROR (Status)) {
1503 goto ON_ERROR;
1507 // Save the Client Address is sent out
1509 CopyMem (
1510 &DhcpSb->ClientAddressSendOut[0],
1511 &Token->Packet->Dhcp4.Header.ClientHwAddr[0],
1512 Token->Packet->Dhcp4.Header.HwAddrLen
1516 // Wrap the DHCP packet into a net buffer.
1518 Frag.Bulk = (UINT8 *) &Token->Packet->Dhcp4;
1519 Frag.Len = Token->Packet->Length;
1520 Wrap = NetbufFromExt (&Frag, 1, 0, 0, DhcpDummyExtFree, NULL);
1521 if (Wrap == NULL) {
1522 Status = EFI_OUT_OF_RESOURCES;
1523 goto ON_ERROR;
1527 // Set the local address and local port.
1529 EndPoint.LocalAddr = 0;
1530 EndPoint.LocalPort = 0;
1533 // Set the destination address and destination port.
1535 CopyMem (&Ip, &Token->RemoteAddress, sizeof (EFI_IPv4_ADDRESS));
1536 EndPoint.RemoteAddr = NTOHL (Ip);
1538 if (Token->RemotePort == 0) {
1539 EndPoint.RemotePort = DHCP_SERVER_PORT;
1540 } else {
1541 EndPoint.RemotePort = Token->RemotePort;
1545 // Get the gateway.
1547 SubnetMask = DhcpSb->Netmask;
1548 Gateway = 0;
1549 if (!IP4_NET_EQUAL (DhcpSb->ClientAddr, EndPoint.RemoteAddr, SubnetMask)) {
1550 CopyMem (&Gateway, &Token->GatewayAddress, sizeof (EFI_IPv4_ADDRESS));
1551 Gateway = NTOHL (Gateway);
1555 // Transmit the DHCP packet.
1557 Status = UdpIoSendDatagram (Instance->UdpIo, Wrap, &EndPoint, Gateway, DhcpOnPacketSent, NULL);
1558 if (EFI_ERROR (Status)) {
1559 NetbufFree (Wrap);
1560 goto ON_ERROR;
1564 // Start to receive the DHCP response.
1566 Status = UdpIoRecvDatagram (Instance->UdpIo, PxeDhcpInput, Instance, 0);
1567 if (EFI_ERROR (Status)) {
1568 goto ON_ERROR;
1571 ON_ERROR:
1573 if (EFI_ERROR (Status) && (Instance->UdpIo != NULL)) {
1574 UdpIoCleanPort (Instance->UdpIo);
1575 UdpIoFreePort (Instance->UdpIo);
1576 Instance->UdpIo = NULL;
1577 Instance->Token = NULL;
1580 gBS->RestoreTPL (OldTpl);
1582 if (!EFI_ERROR (Status) && (Token->CompletionEvent == NULL)) {
1584 // Keep polling until timeout if no error happens and the CompletionEvent
1585 // is NULL.
1587 while (Instance->Timeout != 0) {
1588 Instance->UdpIo->Udp->Poll (Instance->UdpIo->Udp);
1592 return Status;
1597 Callback function for DhcpIterateOptions. This callback sets the
1598 EFI_DHCP4_PACKET_OPTION array in the DHCP_PARSE_CONTEXT to point
1599 the individual DHCP option in the packet.
1601 @param[in] Tag The DHCP option type
1602 @param[in] Len Length of the DHCP option data
1603 @param[in] Data The DHCP option data
1604 @param[in] Context The context, to pass several parameters in.
1606 @retval EFI_SUCCESS It always returns EFI_SUCCESS
1609 EFI_STATUS
1610 Dhcp4ParseCheckOption (
1611 IN UINT8 Tag,
1612 IN UINT8 Len,
1613 IN UINT8 *Data,
1614 IN VOID *Context
1617 DHCP_PARSE_CONTEXT *Parse;
1619 Parse = (DHCP_PARSE_CONTEXT *) Context;
1620 Parse->Index++;
1622 if (Parse->Index <= Parse->OptionCount) {
1624 // Use BASE_CR to get the memory position of EFI_DHCP4_PACKET_OPTION for
1625 // the EFI_DHCP4_PACKET_OPTION->Data because DhcpIterateOptions only
1626 // pass in the point to option data.
1628 Parse->Option[Parse->Index - 1] = BASE_CR (Data, EFI_DHCP4_PACKET_OPTION, Data);
1631 return EFI_SUCCESS;
1636 Parses the packed DHCP option data.
1638 The Parse() function is used to retrieve the option list from a DHCP packet.
1639 If *OptionCount isn't zero, and there is enough space for all the DHCP options
1640 in the Packet, each element of PacketOptionList is set to point to somewhere in
1641 the Packet->Dhcp4.Option where a new DHCP option begins. If RFC3396 is supported,
1642 the caller should reassemble the parsed DHCP options to get the finial result.
1643 If *OptionCount is zero or there isn't enough space for all of them, the number
1644 of DHCP options in the Packet is returned in OptionCount.
1646 @param This Pointer to the EFI_DHCP4_PROTOCOL instance.
1647 @param Packet Pointer to packet to be parsed.
1648 @param OptionCount On input, the number of entries in the PacketOptionList.
1649 On output, the number of entries that were written into the
1650 PacketOptionList.
1651 @param PacketOptionList List of packet option entries to be filled in. End option or pad
1652 options are not included.
1654 @retval EFI_SUCCESS The packet was successfully parsed.
1655 @retval EFI_INVALID_PARAMETER Some parameter is NULL.
1656 @retval EFI_BUFFER_TOO_SMALL One or more of the following conditions is TRUE:
1657 1) *OptionCount is smaller than the number of options that
1658 were found in the Packet.
1659 2) PacketOptionList is NULL.
1662 EFI_STATUS
1663 EFIAPI
1664 EfiDhcp4Parse (
1665 IN EFI_DHCP4_PROTOCOL *This,
1666 IN EFI_DHCP4_PACKET *Packet,
1667 IN OUT UINT32 *OptionCount,
1668 OUT EFI_DHCP4_PACKET_OPTION *PacketOptionList[] OPTIONAL
1671 DHCP_PARSE_CONTEXT Context;
1672 EFI_STATUS Status;
1675 // First validate the parameters
1677 if ((This == NULL) || (Packet == NULL) || (OptionCount == NULL)) {
1678 return EFI_INVALID_PARAMETER;
1681 if ((Packet->Size < Packet->Length + 2 * sizeof (UINT32)) ||
1682 (Packet->Dhcp4.Magik != DHCP_OPTION_MAGIC) ||
1683 EFI_ERROR (DhcpValidateOptions (Packet, NULL))) {
1685 return EFI_INVALID_PARAMETER;
1688 if ((*OptionCount != 0) && (PacketOptionList == NULL)) {
1689 return EFI_BUFFER_TOO_SMALL;
1692 ZeroMem (PacketOptionList, *OptionCount * sizeof (EFI_DHCP4_PACKET_OPTION *));
1694 Context.Option = PacketOptionList;
1695 Context.OptionCount = *OptionCount;
1696 Context.Index = 0;
1698 Status = DhcpIterateOptions (Packet, Dhcp4ParseCheckOption, &Context);
1700 if (EFI_ERROR (Status)) {
1701 return Status;
1704 *OptionCount = Context.Index;
1706 if (Context.Index > Context.OptionCount) {
1707 return EFI_BUFFER_TOO_SMALL;
1710 return EFI_SUCCESS;