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