]> git.proxmox.com Git - mirror_edk2.git/blob - NetworkPkg/HttpBootDxe/HttpBootClient.c
NetworkPkg: Add URI configuration form to HTTP boot driver.
[mirror_edk2.git] / NetworkPkg / HttpBootDxe / HttpBootClient.c
1 /** @file
2 Implementation of the boot file download function.
3
4 Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.<BR>
5 (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>
6 This program and the accompanying materials are licensed and made available under
7 the terms and conditions of the BSD License that accompanies this distribution.
8 The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php.
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15
16 #include "HttpBootDxe.h"
17
18 /**
19 Update the IP and URL device path node to include the boot resource information.
20
21 @param[in] Private The pointer to the driver's private data.
22
23 @retval EFI_SUCCESS Device patch successfully updated.
24 @retval EFI_OUT_OF_RESOURCES Could not allocate needed resources.
25 @retval Others Unexpected error happened.
26
27 **/
28 EFI_STATUS
29 HttpBootUpdateDevicePath (
30 IN HTTP_BOOT_PRIVATE_DATA *Private
31 )
32 {
33 EFI_DEV_PATH *Node;
34 EFI_DEVICE_PATH_PROTOCOL *TmpDevicePath;
35 EFI_DEVICE_PATH_PROTOCOL *NewDevicePath;
36 UINTN Length;
37 EFI_STATUS Status;
38
39 TmpDevicePath = NULL;
40
41 //
42 // Update the IP node with DHCP assigned information.
43 //
44 if (!Private->UsingIpv6) {
45 Node = AllocateZeroPool (sizeof (IPv4_DEVICE_PATH));
46 if (Node == NULL) {
47 return EFI_OUT_OF_RESOURCES;
48 }
49 Node->Ipv4.Header.Type = MESSAGING_DEVICE_PATH;
50 Node->Ipv4.Header.SubType = MSG_IPv4_DP;
51 SetDevicePathNodeLength (Node, sizeof (IPv4_DEVICE_PATH));
52 CopyMem (&Node->Ipv4.LocalIpAddress, &Private->StationIp, sizeof (EFI_IPv4_ADDRESS));
53 Node->Ipv4.RemotePort = Private->Port;
54 Node->Ipv4.Protocol = EFI_IP_PROTO_TCP;
55 Node->Ipv4.StaticIpAddress = FALSE;
56 CopyMem (&Node->Ipv4.GatewayIpAddress, &Private->GatewayIp, sizeof (EFI_IPv4_ADDRESS));
57 CopyMem (&Node->Ipv4.SubnetMask, &Private->SubnetMask, sizeof (EFI_IPv4_ADDRESS));
58 } else {
59 Node = AllocateZeroPool (sizeof (IPv6_DEVICE_PATH));
60 if (Node == NULL) {
61 return EFI_OUT_OF_RESOURCES;
62 }
63 Node->Ipv6.Header.Type = MESSAGING_DEVICE_PATH;
64 Node->Ipv6.Header.SubType = MSG_IPv6_DP;
65 SetDevicePathNodeLength (Node, sizeof (IPv6_DEVICE_PATH));
66 Node->Ipv6.PrefixLength = IP6_PREFIX_LENGTH;
67 Node->Ipv6.RemotePort = Private->Port;
68 Node->Ipv6.Protocol = EFI_IP_PROTO_TCP;
69 Node->Ipv6.IpAddressOrigin = 0;
70 CopyMem (&Node->Ipv6.LocalIpAddress, &Private->StationIp.v6, sizeof (EFI_IPv6_ADDRESS));
71 CopyMem (&Node->Ipv6.RemoteIpAddress, &Private->ServerIp.v6, sizeof (EFI_IPv6_ADDRESS));
72 CopyMem (&Node->Ipv6.GatewayIpAddress, &Private->GatewayIp.v6, sizeof (EFI_IPv6_ADDRESS));
73 }
74
75 TmpDevicePath = AppendDevicePathNode (Private->ParentDevicePath, (EFI_DEVICE_PATH_PROTOCOL*) Node);
76 FreePool (Node);
77 if (TmpDevicePath == NULL) {
78 return EFI_OUT_OF_RESOURCES;
79 }
80
81 //
82 // Update the URI node with the boot file URI.
83 //
84 Length = sizeof (EFI_DEVICE_PATH_PROTOCOL) + AsciiStrSize (Private->BootFileUri);
85 Node = AllocatePool (Length);
86 if (Node == NULL) {
87 FreePool (TmpDevicePath);
88 return EFI_OUT_OF_RESOURCES;
89 }
90 Node->DevPath.Type = MESSAGING_DEVICE_PATH;
91 Node->DevPath.SubType = MSG_URI_DP;
92 SetDevicePathNodeLength (Node, Length);
93 CopyMem ((UINT8*) Node + sizeof (EFI_DEVICE_PATH_PROTOCOL), Private->BootFileUri, AsciiStrSize (Private->BootFileUri));
94
95 NewDevicePath = AppendDevicePathNode (TmpDevicePath, (EFI_DEVICE_PATH_PROTOCOL*) Node);
96 FreePool (Node);
97 FreePool (TmpDevicePath);
98 if (NewDevicePath == NULL) {
99 return EFI_OUT_OF_RESOURCES;
100 }
101
102 if (!Private->UsingIpv6) {
103 //
104 // Reinstall the device path protocol of the child handle.
105 //
106 Status = gBS->ReinstallProtocolInterface (
107 Private->Ip4Nic->Controller,
108 &gEfiDevicePathProtocolGuid,
109 Private->Ip4Nic->DevicePath,
110 NewDevicePath
111 );
112 if (EFI_ERROR (Status)) {
113 return Status;
114 }
115
116 FreePool (Private->Ip4Nic->DevicePath);
117 Private->Ip4Nic->DevicePath = NewDevicePath;
118 } else {
119 //
120 // Reinstall the device path protocol of the child handle.
121 //
122 Status = gBS->ReinstallProtocolInterface (
123 Private->Ip6Nic->Controller,
124 &gEfiDevicePathProtocolGuid,
125 Private->Ip6Nic->DevicePath,
126 NewDevicePath
127 );
128 if (EFI_ERROR (Status)) {
129 return Status;
130 }
131 FreePool (Private->Ip6Nic->DevicePath);
132 Private->Ip6Nic->DevicePath = NewDevicePath;
133 }
134
135 return EFI_SUCCESS;
136 }
137
138 /**
139 Parse the boot file URI information from the selected Dhcp4 offer packet.
140
141 @param[in] Private The pointer to the driver's private data.
142
143 @retval EFI_SUCCESS Successfully parsed out all the boot information.
144 @retval Others Failed to parse out the boot information.
145
146 **/
147 EFI_STATUS
148 HttpBootDhcp4ExtractUriInfo (
149 IN HTTP_BOOT_PRIVATE_DATA *Private
150 )
151 {
152 HTTP_BOOT_DHCP4_PACKET_CACHE *SelectOffer;
153 HTTP_BOOT_DHCP4_PACKET_CACHE *HttpOffer;
154 UINT32 SelectIndex;
155 UINT32 ProxyIndex;
156 EFI_DHCP4_PACKET_OPTION *Option;
157 EFI_STATUS Status;
158
159 ASSERT (Private != NULL);
160 ASSERT (Private->SelectIndex != 0);
161 SelectIndex = Private->SelectIndex - 1;
162 ASSERT (SelectIndex < HTTP_BOOT_OFFER_MAX_NUM);
163
164 Status = EFI_SUCCESS;
165
166 //
167 // SelectOffer contains the IP address configuration and name server configuration.
168 // HttpOffer contains the boot file URL.
169 //
170 SelectOffer = &Private->OfferBuffer[SelectIndex].Dhcp4;
171 if (Private->FilePathUri == NULL) {
172 //
173 // In Corporate environment, we need a HttpOffer.
174 //
175 if ((SelectOffer->OfferType == HttpOfferTypeDhcpIpUri) ||
176 (SelectOffer->OfferType == HttpOfferTypeDhcpIpUriDns) ||
177 (SelectOffer->OfferType == HttpOfferTypeDhcpNameUriDns)) {
178 HttpOffer = SelectOffer;
179 } else {
180 ASSERT (Private->SelectProxyType != HttpOfferTypeMax);
181 ProxyIndex = Private->OfferIndex[Private->SelectProxyType][0];
182 HttpOffer = &Private->OfferBuffer[ProxyIndex].Dhcp4;
183 }
184 Private->BootFileUriParser = HttpOffer->UriParser;
185 Private->BootFileUri = (CHAR8*) HttpOffer->OptList[HTTP_BOOT_DHCP4_TAG_INDEX_BOOTFILE]->Data;
186 } else {
187 //
188 // In Home environment the BootFileUri comes from the FilePath.
189 //
190 Private->BootFileUriParser = Private->FilePathUriParser;
191 Private->BootFileUri = Private->FilePathUri;
192 }
193
194 //
195 // Configure the default DNS server if server assigned.
196 //
197 if ((SelectOffer->OfferType == HttpOfferTypeDhcpNameUriDns) ||
198 (SelectOffer->OfferType == HttpOfferTypeDhcpDns) ||
199 (SelectOffer->OfferType == HttpOfferTypeDhcpIpUriDns)) {
200 Option = SelectOffer->OptList[HTTP_BOOT_DHCP4_TAG_INDEX_DNS_SERVER];
201 ASSERT (Option != NULL);
202 Status = HttpBootRegisterIp4Dns (
203 Private,
204 Option->Length,
205 Option->Data
206 );
207 if (EFI_ERROR (Status)) {
208 return Status;
209 }
210 }
211
212 //
213 // Extract the port from URL, and use default HTTP port 80 if not provided.
214 //
215 Status = HttpUrlGetPort (
216 Private->BootFileUri,
217 Private->BootFileUriParser,
218 &Private->Port
219 );
220 if (EFI_ERROR (Status) || Private->Port == 0) {
221 Private->Port = 80;
222 }
223
224 //
225 // All boot informations are valid here.
226 //
227 AsciiPrint ("\n URI: %a", Private->BootFileUri);
228
229 //
230 // Update the device path to include the IP and boot URI information.
231 //
232 Status = HttpBootUpdateDevicePath (Private);
233
234 return Status;
235 }
236
237 /**
238 Parse the boot file URI information from the selected Dhcp6 offer packet.
239
240 @param[in] Private The pointer to the driver's private data.
241
242 @retval EFI_SUCCESS Successfully parsed out all the boot information.
243 @retval Others Failed to parse out the boot information.
244
245 **/
246 EFI_STATUS
247 HttpBootDhcp6ExtractUriInfo (
248 IN HTTP_BOOT_PRIVATE_DATA *Private
249 )
250 {
251 HTTP_BOOT_DHCP6_PACKET_CACHE *SelectOffer;
252 HTTP_BOOT_DHCP6_PACKET_CACHE *HttpOffer;
253 UINT32 SelectIndex;
254 UINT32 ProxyIndex;
255 EFI_DHCP6_PACKET_OPTION *Option;
256 EFI_IPv6_ADDRESS IpAddr;
257 CHAR8 *HostName;
258 CHAR16 *HostNameStr;
259 EFI_STATUS Status;
260
261 ASSERT (Private != NULL);
262 ASSERT (Private->SelectIndex != 0);
263 SelectIndex = Private->SelectIndex - 1;
264 ASSERT (SelectIndex < HTTP_BOOT_OFFER_MAX_NUM);
265
266 Status = EFI_SUCCESS;
267 HostName = NULL;
268 //
269 // SelectOffer contains the IP address configuration and name server configuration.
270 // HttpOffer contains the boot file URL.
271 //
272 SelectOffer = &Private->OfferBuffer[SelectIndex].Dhcp6;
273 if (Private->FilePathUri == NULL) {
274 //
275 // In Corporate environment, we need a HttpOffer.
276 //
277 if ((SelectOffer->OfferType == HttpOfferTypeDhcpIpUri) ||
278 (SelectOffer->OfferType == HttpOfferTypeDhcpIpUriDns) ||
279 (SelectOffer->OfferType == HttpOfferTypeDhcpNameUriDns)) {
280 HttpOffer = SelectOffer;
281 } else {
282 ASSERT (Private->SelectProxyType != HttpOfferTypeMax);
283 ProxyIndex = Private->OfferIndex[Private->SelectProxyType][0];
284 HttpOffer = &Private->OfferBuffer[ProxyIndex].Dhcp6;
285 }
286 Private->BootFileUriParser = HttpOffer->UriParser;
287 Private->BootFileUri = (CHAR8*) HttpOffer->OptList[HTTP_BOOT_DHCP6_IDX_BOOT_FILE_URL]->Data;
288 } else {
289 //
290 // In Home environment the BootFileUri comes from the FilePath.
291 //
292 Private->BootFileUriParser = Private->FilePathUriParser;
293 Private->BootFileUri = Private->FilePathUri;
294 }
295
296 //
297 // Set the Local station address to IP layer.
298 //
299 Status = HttpBootSetIp6Address (Private);
300 if (EFI_ERROR (Status)) {
301 return Status;
302 }
303
304 //
305 // Configure the default DNS server if server assigned.
306 //
307 if ((SelectOffer->OfferType == HttpOfferTypeDhcpNameUriDns) ||
308 (SelectOffer->OfferType == HttpOfferTypeDhcpDns) ||
309 (SelectOffer->OfferType == HttpOfferTypeDhcpIpUriDns)) {
310 Option = SelectOffer->OptList[HTTP_BOOT_DHCP6_IDX_DNS_SERVER];
311 ASSERT (Option != NULL);
312 Status = HttpBootSetIp6Dns (
313 Private,
314 HTONS (Option->OpLen),
315 Option->Data
316 );
317 if (EFI_ERROR (Status)) {
318 return Status;
319 }
320 }
321
322 //
323 // Extract the HTTP server Ip frome URL. This is used to Check route table
324 // whether can send message to HTTP Server Ip through the GateWay.
325 //
326 Status = HttpUrlGetIp6 (
327 Private->BootFileUri,
328 Private->BootFileUriParser,
329 &IpAddr
330 );
331
332 if (EFI_ERROR (Status)) {
333 //
334 // The Http server address is expressed by Name Ip, so perform DNS resolution
335 //
336 Status = HttpUrlGetHostName (
337 Private->BootFileUri,
338 Private->BootFileUriParser,
339 &HostName
340 );
341 if (EFI_ERROR (Status)) {
342 return Status;
343 }
344
345 HostNameStr = AllocateZeroPool ((AsciiStrLen (HostName) + 1) * sizeof (CHAR16));
346 if (HostNameStr == NULL) {
347 Status = EFI_OUT_OF_RESOURCES;
348 goto Error;
349 }
350
351 AsciiStrToUnicodeStr (HostName, HostNameStr);
352 Status = HttpBootDns (Private, HostNameStr, &IpAddr);
353 FreePool (HostNameStr);
354 if (EFI_ERROR (Status)) {
355 goto Error;
356 }
357 }
358
359 CopyMem (&Private->ServerIp.v6, &IpAddr, sizeof (EFI_IPv6_ADDRESS));
360
361 //
362 // register the IPv6 gateway address to the network device.
363 //
364 Status = HttpBootSetIp6Gateway (Private);
365 if (EFI_ERROR (Status)) {
366 return Status;
367 }
368
369 //
370 // Extract the port from URL, and use default HTTP port 80 if not provided.
371 //
372 Status = HttpUrlGetPort (
373 Private->BootFileUri,
374 Private->BootFileUriParser,
375 &Private->Port
376 );
377 if (EFI_ERROR (Status) || Private->Port == 0) {
378 Private->Port = 80;
379 }
380
381 //
382 // All boot informations are valid here.
383 //
384 AsciiPrint ("\n URI: %a", Private->BootFileUri);
385 //
386 // Update the device path to include the IP and boot URI information.
387 //
388 Status = HttpBootUpdateDevicePath (Private);
389
390 Error:
391
392 if (HostName != NULL) {
393 FreePool (HostName);
394 }
395
396 return Status;
397 }
398
399
400 /**
401 Discover all the boot information for boot file.
402
403 @param[in, out] Private The pointer to the driver's private data.
404
405 @retval EFI_SUCCESS Successfully obtained all the boot information .
406 @retval Others Failed to retrieve the boot information.
407
408 **/
409 EFI_STATUS
410 HttpBootDiscoverBootInfo (
411 IN OUT HTTP_BOOT_PRIVATE_DATA *Private
412 )
413 {
414 EFI_STATUS Status;
415
416 //
417 // Start D.O.R.A/S.A.R.R exchange to acquire station ip address and
418 // other Http boot information.
419 //
420 Status = HttpBootDhcp (Private);
421 if (EFI_ERROR (Status)) {
422 return Status;
423 }
424
425 if (!Private->UsingIpv6) {
426 Status = HttpBootDhcp4ExtractUriInfo (Private);
427 } else {
428 Status = HttpBootDhcp6ExtractUriInfo (Private);
429 }
430
431 return Status;
432 }
433
434 /**
435 Create a HttpIo instance for the file download.
436
437 @param[in] Private The pointer to the driver's private data.
438
439 @retval EFI_SUCCESS Successfully created.
440 @retval Others Failed to create HttpIo.
441
442 **/
443 EFI_STATUS
444 HttpBootCreateHttpIo (
445 IN HTTP_BOOT_PRIVATE_DATA *Private
446 )
447 {
448 HTTP_IO_CONFIG_DATA ConfigData;
449 EFI_STATUS Status;
450
451 ASSERT (Private != NULL);
452
453 ZeroMem (&ConfigData, sizeof (HTTP_IO_CONFIG_DATA));
454 if (!Private->UsingIpv6) {
455 ConfigData.Config4.HttpVersion = HttpVersion11;
456 ConfigData.Config4.RequestTimeOut = HTTP_BOOT_REQUEST_TIMEOUT;
457 IP4_COPY_ADDRESS (&ConfigData.Config4.LocalIp, &Private->StationIp.v4);
458 IP4_COPY_ADDRESS (&ConfigData.Config4.SubnetMask, &Private->SubnetMask.v4);
459 } else {
460 ConfigData.Config6.HttpVersion = HttpVersion11;
461 ConfigData.Config6.RequestTimeOut = HTTP_BOOT_REQUEST_TIMEOUT;
462 IP6_COPY_ADDRESS (&ConfigData.Config6.LocalIp, &Private->StationIp.v6);
463 }
464
465 Status = HttpIoCreateIo (
466 Private->Image,
467 Private->Controller,
468 Private->UsingIpv6 ? IP_VERSION_6 : IP_VERSION_4,
469 &ConfigData,
470 &Private->HttpIo
471 );
472 if (EFI_ERROR (Status)) {
473 return Status;
474 }
475
476 Private->HttpCreated = TRUE;
477 return EFI_SUCCESS;
478 }
479
480 /**
481 Release all the resource of a cache item.
482
483 @param[in] Cache The pointer to the cache item.
484
485 **/
486 VOID
487 HttpBootFreeCache (
488 IN HTTP_BOOT_CACHE_CONTENT *Cache
489 )
490 {
491 UINTN Index;
492 LIST_ENTRY *Entry;
493 LIST_ENTRY *NextEntry;
494 HTTP_BOOT_ENTITY_DATA *EntityData;
495
496 if (Cache != NULL) {
497 //
498 // Free the request data
499 //
500 if (Cache->RequestData != NULL) {
501 if (Cache->RequestData->Url != NULL) {
502 FreePool (Cache->RequestData->Url);
503 }
504 FreePool (Cache->RequestData);
505 }
506
507 //
508 // Free the response header
509 //
510 if (Cache->ResponseData != NULL) {
511 if (Cache->ResponseData->Headers != NULL) {
512 for (Index = 0; Index < Cache->ResponseData->HeaderCount; Index++) {
513 FreePool (Cache->ResponseData->Headers[Index].FieldName);
514 FreePool (Cache->ResponseData->Headers[Index].FieldValue);
515 }
516 FreePool (Cache->ResponseData->Headers);
517 }
518 }
519
520 //
521 // Free the response body
522 //
523 NET_LIST_FOR_EACH_SAFE (Entry, NextEntry, &Cache->EntityDataList) {
524 EntityData = NET_LIST_USER_STRUCT (Entry, HTTP_BOOT_ENTITY_DATA, Link);
525 if (EntityData->Block != NULL) {
526 FreePool (EntityData->Block);
527 }
528 RemoveEntryList (&EntityData->Link);
529 FreePool (EntityData);
530 }
531
532 FreePool (Cache);
533 }
534 }
535
536 /**
537 Clean up all cached data.
538
539 @param[in] Private The pointer to the driver's private data.
540
541 **/
542 VOID
543 HttpBootFreeCacheList (
544 IN HTTP_BOOT_PRIVATE_DATA *Private
545 )
546 {
547 LIST_ENTRY *Entry;
548 LIST_ENTRY *NextEntry;
549 HTTP_BOOT_CACHE_CONTENT *Cache;
550
551 NET_LIST_FOR_EACH_SAFE (Entry, NextEntry, &Private->CacheList) {
552 Cache = NET_LIST_USER_STRUCT (Entry, HTTP_BOOT_CACHE_CONTENT, Link);
553 RemoveEntryList (&Cache->Link);
554 HttpBootFreeCache (Cache);
555 }
556 }
557
558 /**
559 Get the file content from cached data.
560
561 @param[in] Private The pointer to the driver's private data.
562 @param[in] Uri Uri of the file to be retrieved from cache.
563 @param[in, out] BufferSize On input the size of Buffer in bytes. On output with a return
564 code of EFI_SUCCESS, the amount of data transferred to
565 Buffer. On output with a return code of EFI_BUFFER_TOO_SMALL,
566 the size of Buffer required to retrieve the requested file.
567 @param[out] Buffer The memory buffer to transfer the file to. IF Buffer is NULL,
568 then the size of the requested file is returned in
569 BufferSize.
570
571 @retval EFI_SUCCESS Successfully created.
572 @retval Others Failed to create HttpIo.
573
574 **/
575 EFI_STATUS
576 HttpBootGetFileFromCache (
577 IN HTTP_BOOT_PRIVATE_DATA *Private,
578 IN CHAR16 *Uri,
579 IN OUT UINTN *BufferSize,
580 OUT UINT8 *Buffer
581 )
582 {
583 LIST_ENTRY *Entry;
584 LIST_ENTRY *Entry2;
585 HTTP_BOOT_CACHE_CONTENT *Cache;
586 HTTP_BOOT_ENTITY_DATA *EntityData;
587 UINTN CopyedSize;
588
589 if (Uri == NULL || BufferSize == 0 || Buffer == NULL) {
590 return EFI_INVALID_PARAMETER;
591 }
592
593 NET_LIST_FOR_EACH (Entry, &Private->CacheList) {
594 Cache = NET_LIST_USER_STRUCT (Entry, HTTP_BOOT_CACHE_CONTENT, Link);
595 //
596 // Compare the URI to see whether we already have a cache for this file.
597 //
598 if ((Cache->RequestData != NULL) &&
599 (Cache->RequestData->Url != NULL) &&
600 (StrCmp (Uri, Cache->RequestData->Url) == 0))
601 {
602 //
603 // Hit cache, check buffer size.
604 //
605 if (*BufferSize < Cache->EntityLength) {
606 *BufferSize = Cache->EntityLength;
607 return EFI_BUFFER_TOO_SMALL;
608 }
609
610 //
611 // Fill data to buffer.
612 //
613 CopyedSize = 0;
614 NET_LIST_FOR_EACH (Entry2, &Cache->EntityDataList) {
615 EntityData = NET_LIST_USER_STRUCT (Entry2, HTTP_BOOT_ENTITY_DATA, Link);
616 if (*BufferSize > CopyedSize) {
617 CopyMem (
618 Buffer + CopyedSize,
619 EntityData->DataStart,
620 MIN (EntityData->DataLength, *BufferSize - CopyedSize)
621 );
622 CopyedSize += MIN (EntityData->DataLength, *BufferSize - CopyedSize);
623 }
624 }
625 *BufferSize = CopyedSize;
626 return EFI_SUCCESS;
627 }
628 }
629
630 return EFI_NOT_FOUND;
631 }
632
633 /**
634 A callback function to intercept events during message parser.
635
636 This function will be invoked during HttpParseMessageBody() with various events type. An error
637 return status of the callback function will cause the HttpParseMessageBody() aborted.
638
639 @param[in] EventType Event type of this callback call.
640 @param[in] Data A pointer to data buffer.
641 @param[in] Length Length in bytes of the Data.
642 @param[in] Context Callback context set by HttpInitMsgParser().
643
644 @retval EFI_SUCCESS Continue to parser the message body.
645 @retval Others Abort the parse.
646
647 **/
648 EFI_STATUS
649 EFIAPI
650 HttpBootGetBootFileCallback (
651 IN HTTP_BODY_PARSE_EVENT EventType,
652 IN CHAR8 *Data,
653 IN UINTN Length,
654 IN VOID *Context
655 )
656 {
657 HTTP_BOOT_CALLBACK_DATA *CallbackData;
658 HTTP_BOOT_ENTITY_DATA *NewEntityData;
659
660 //
661 // We only care about the entity data.
662 //
663 if (EventType != BodyParseEventOnData) {
664 return EFI_SUCCESS;
665 }
666
667 CallbackData = (HTTP_BOOT_CALLBACK_DATA *) Context;
668 //
669 // Copy data if caller has provided a buffer.
670 //
671 if (CallbackData->BufferSize > CallbackData->CopyedSize) {
672 CopyMem (
673 CallbackData->Buffer + CallbackData->CopyedSize,
674 Data,
675 MIN (Length, CallbackData->BufferSize - CallbackData->CopyedSize)
676 );
677 CallbackData->CopyedSize += MIN (Length, CallbackData->BufferSize - CallbackData->CopyedSize);
678 }
679
680 //
681 // The caller doesn't provide a buffer, save the block into cache list.
682 //
683 if (CallbackData->Cache != NULL) {
684 NewEntityData = AllocatePool (sizeof (HTTP_BOOT_ENTITY_DATA));
685 if (NewEntityData == NULL) {
686 return EFI_OUT_OF_RESOURCES;
687 }
688 if (CallbackData->NewBlock) {
689 NewEntityData->Block = CallbackData->Block;
690 CallbackData->Block = NULL;
691 }
692 NewEntityData->DataLength = Length;
693 NewEntityData->DataStart = (UINT8*) Data;
694 InsertTailList (&CallbackData->Cache->EntityDataList, &NewEntityData->Link);
695 }
696 return EFI_SUCCESS;
697 }
698
699 /**
700 This function download the boot file by using UEFI HTTP protocol.
701
702 @param[in] Private The pointer to the driver's private data.
703 @param[in] HeaderOnly Only request the response header, it could save a lot of time if
704 the caller only want to know the size of the requested file.
705 @param[in, out] BufferSize On input the size of Buffer in bytes. On output with a return
706 code of EFI_SUCCESS, the amount of data transferred to
707 Buffer. On output with a return code of EFI_BUFFER_TOO_SMALL,
708 the size of Buffer required to retrieve the requested file.
709 @param[out] Buffer The memory buffer to transfer the file to. IF Buffer is NULL,
710 then the size of the requested file is returned in
711 BufferSize.
712
713 @retval EFI_SUCCESS The file was loaded.
714 @retval EFI_INVALID_PARAMETER BufferSize is NULL or Buffer Size is not NULL but Buffer is NULL.
715 @retval EFI_OUT_OF_RESOURCES Could not allocate needed resources
716 @retval EFI_BUFFER_TOO_SMALL The BufferSize is too small to read the current directory entry.
717 BufferSize has been updated with the size needed to complete
718 the request.
719 @retval Others Unexpected error happened.
720
721 **/
722 EFI_STATUS
723 HttpBootGetBootFile (
724 IN HTTP_BOOT_PRIVATE_DATA *Private,
725 IN BOOLEAN HeaderOnly,
726 IN OUT UINTN *BufferSize,
727 OUT UINT8 *Buffer
728 )
729 {
730 EFI_STATUS Status;
731 EFI_HTTP_STATUS_CODE StatusCode;
732 CHAR8 *HostName;
733 EFI_HTTP_REQUEST_DATA *RequestData;
734 HTTP_IO_RESPONSE_DATA *ResponseData;
735 HTTP_IO_RESPONSE_DATA ResponseBody;
736 HTTP_IO *HttpIo;
737 HTTP_IO_HEADER *HttpIoHeader;
738 VOID *Parser;
739 HTTP_BOOT_CALLBACK_DATA Context;
740 UINTN ContentLength;
741 HTTP_BOOT_CACHE_CONTENT *Cache;
742 UINT8 *Block;
743 CHAR16 *Url;
744 BOOLEAN IdentityMode;
745 UINTN ReceivedSize;
746
747 ASSERT (Private != NULL);
748 ASSERT (Private->HttpCreated);
749
750 if (BufferSize == NULL) {
751 return EFI_INVALID_PARAMETER;
752 }
753
754 if (*BufferSize != 0 && Buffer == NULL) {
755 return EFI_INVALID_PARAMETER;
756 }
757
758 //
759 // First, check whether we already cached the requested Uri.
760 //
761 Url = AllocatePool ((AsciiStrLen (Private->BootFileUri) + 1) * sizeof (CHAR16));
762 if (Url == NULL) {
763 return EFI_OUT_OF_RESOURCES;
764 }
765 AsciiStrToUnicodeStr (Private->BootFileUri, Url);
766 if (!HeaderOnly) {
767 Status = HttpBootGetFileFromCache (Private, Url, BufferSize, Buffer);
768 if (Status != EFI_NOT_FOUND) {
769 FreePool (Url);
770 return Status;
771 }
772 }
773
774 //
775 // Not found in cache, try to download it through HTTP.
776 //
777
778 //
779 // 1. Create a temp cache item for the requested URI if caller doesn't provide buffer.
780 //
781 Cache = NULL;
782 if ((!HeaderOnly) && (*BufferSize == 0)) {
783 Cache = AllocateZeroPool (sizeof (HTTP_BOOT_CACHE_CONTENT));
784 if (Cache == NULL) {
785 Status = EFI_OUT_OF_RESOURCES;
786 goto ERROR_1;
787 }
788 InitializeListHead (&Cache->EntityDataList);
789 }
790
791 //
792 // 2. Send HTTP request message.
793 //
794
795 //
796 // 2.1 Build HTTP header for the request, 3 header is needed to download a boot file:
797 // Host
798 // Accept
799 // User-Agent
800 //
801 HttpIoHeader = HttpBootCreateHeader (3);
802 if (HttpIoHeader == NULL) {
803 Status = EFI_OUT_OF_RESOURCES;
804 goto ERROR_2;
805 }
806
807 //
808 // Add HTTP header field 1: Host
809 //
810 HostName = NULL;
811 Status = HttpUrlGetHostName (
812 Private->BootFileUri,
813 Private->BootFileUriParser,
814 &HostName
815 );
816 if (EFI_ERROR (Status)) {
817 goto ERROR_3;
818 }
819 Status = HttpBootSetHeader (
820 HttpIoHeader,
821 HTTP_HEADER_HOST,
822 HostName
823 );
824 FreePool (HostName);
825 if (EFI_ERROR (Status)) {
826 goto ERROR_3;
827 }
828
829 //
830 // Add HTTP header field 2: Accept
831 //
832 Status = HttpBootSetHeader (
833 HttpIoHeader,
834 HTTP_HEADER_ACCEPT,
835 "*/*"
836 );
837 if (EFI_ERROR (Status)) {
838 goto ERROR_3;
839 }
840
841 //
842 // Add HTTP header field 3: User-Agent
843 //
844 Status = HttpBootSetHeader (
845 HttpIoHeader,
846 HTTP_HEADER_USER_AGENT,
847 HTTP_USER_AGENT_EFI_HTTP_BOOT
848 );
849 if (EFI_ERROR (Status)) {
850 goto ERROR_3;
851 }
852
853 //
854 // 2.2 Build the rest of HTTP request info.
855 //
856 RequestData = AllocatePool (sizeof (EFI_HTTP_REQUEST_DATA));
857 if (RequestData == NULL) {
858 Status = EFI_OUT_OF_RESOURCES;
859 goto ERROR_3;
860 }
861 RequestData->Method = HeaderOnly ? HttpMethodHead : HttpMethodGet;
862 RequestData->Url = Url;
863 if (RequestData->Url == NULL) {
864 Status = EFI_OUT_OF_RESOURCES;
865 goto ERROR_4;
866 }
867 AsciiStrToUnicodeStr (Private->BootFileUri, RequestData->Url);
868
869 //
870 // 2.3 Record the request info in a temp cache item.
871 //
872 if (Cache != NULL) {
873 Cache->RequestData = RequestData;
874 }
875
876 //
877 // 2.4 Send out the request to HTTP server.
878 //
879 HttpIo = &Private->HttpIo;
880 Status = HttpIoSendRequest (
881 HttpIo,
882 RequestData,
883 HttpIoHeader->HeaderCount,
884 HttpIoHeader->Headers,
885 0,
886 NULL
887 );
888 if (EFI_ERROR (Status)) {
889 goto ERROR_4;
890 }
891
892 //
893 // 3. Receive HTTP response message.
894 //
895
896 //
897 // 3.1 First step, use zero BodyLength to only receive the response headers.
898 //
899 ResponseData = AllocateZeroPool (sizeof(HTTP_IO_RESPONSE_DATA));
900 if (ResponseData == NULL) {
901 Status = EFI_OUT_OF_RESOURCES;
902 goto ERROR_4;
903 }
904 Status = HttpIoRecvResponse (
905 &Private->HttpIo,
906 TRUE,
907 ResponseData
908 );
909 if (EFI_ERROR (Status) || EFI_ERROR (ResponseData->Status)) {
910 if (EFI_ERROR (ResponseData->Status)) {
911 StatusCode = HttpIo->RspToken.Message->Data.Response->StatusCode;
912 HttpBootPrintErrorMessage (StatusCode);
913 Status = ResponseData->Status;
914 }
915 goto ERROR_5;
916 }
917
918 //
919 // 3.2 Cache the response header.
920 //
921 if (Cache != NULL) {
922 Cache->ResponseData = ResponseData;
923 }
924
925 //
926 // 3.3 Init a message-body parser from the header information.
927 //
928 Parser = NULL;
929 Context.NewBlock = FALSE;
930 Context.Block = NULL;
931 Context.CopyedSize = 0;
932 Context.Buffer = Buffer;
933 Context.BufferSize = *BufferSize;
934 Context.Cache = Cache;
935 Status = HttpInitMsgParser (
936 HeaderOnly? HttpMethodHead : HttpMethodGet,
937 ResponseData->Response.StatusCode,
938 ResponseData->HeaderCount,
939 ResponseData->Headers,
940 HttpBootGetBootFileCallback,
941 (VOID*) &Context,
942 &Parser
943 );
944 if (EFI_ERROR (Status)) {
945 goto ERROR_6;
946 }
947
948 //
949 // 3.4 Continue to receive and parse message-body if needed.
950 //
951 Block = NULL;
952 if (!HeaderOnly) {
953 //
954 // 3.4.1, check whether we are in identity transfer-coding.
955 //
956 ContentLength = 0;
957 Status = HttpGetEntityLength (Parser, &ContentLength);
958 if (!EFI_ERROR (Status)) {
959 IdentityMode = TRUE;
960 } else {
961 IdentityMode = FALSE;
962 }
963
964 //
965 // 3.4.2, start the message-body download, the identity and chunked transfer-coding
966 // is handled in different path here.
967 //
968 ZeroMem (&ResponseBody, sizeof (HTTP_IO_RESPONSE_DATA));
969 if (IdentityMode) {
970 //
971 // In identity transfer-coding there is no need to parse the message body,
972 // just download the message body to the user provided buffer directly.
973 //
974 ReceivedSize = 0;
975 while (ReceivedSize < ContentLength) {
976 ResponseBody.Body = (CHAR8*) Buffer + ReceivedSize;
977 ResponseBody.BodyLength = *BufferSize - ReceivedSize;
978 Status = HttpIoRecvResponse (
979 &Private->HttpIo,
980 FALSE,
981 &ResponseBody
982 );
983 if (EFI_ERROR (Status)) {
984 goto ERROR_6;
985 }
986 ReceivedSize += ResponseBody.BodyLength;
987 }
988 } else {
989 //
990 // In "chunked" transfer-coding mode, so we need to parse the received
991 // data to get the real entity content.
992 //
993 Block = NULL;
994 while (!HttpIsMessageComplete (Parser)) {
995 //
996 // Allocate a buffer in Block to hold the message-body.
997 // If caller provides a buffer, this Block will be reused in every HttpIoRecvResponse().
998 // Otherwise a buffer, the buffer in Block will be cached and we should allocate a new before
999 // every HttpIoRecvResponse().
1000 //
1001 if (Block == NULL || Context.BufferSize == 0) {
1002 Block = AllocatePool (HTTP_BOOT_BLOCK_SIZE);
1003 if (Block == NULL) {
1004 Status = EFI_OUT_OF_RESOURCES;
1005 goto ERROR_6;
1006 }
1007 Context.NewBlock = TRUE;
1008 Context.Block = Block;
1009 } else {
1010 Context.NewBlock = FALSE;
1011 }
1012
1013 ResponseBody.Body = (CHAR8*) Block;
1014 ResponseBody.BodyLength = HTTP_BOOT_BLOCK_SIZE;
1015 Status = HttpIoRecvResponse (
1016 &Private->HttpIo,
1017 FALSE,
1018 &ResponseBody
1019 );
1020 if (EFI_ERROR (Status)) {
1021 goto ERROR_6;
1022 }
1023
1024 //
1025 // Parse the new received block of the message-body, the block will be saved in cache.
1026 //
1027 Status = HttpParseMessageBody (
1028 Parser,
1029 ResponseBody.BodyLength,
1030 ResponseBody.Body
1031 );
1032 if (EFI_ERROR (Status)) {
1033 goto ERROR_6;
1034 }
1035 }
1036 }
1037 }
1038
1039 //
1040 // 3.5 Message-body receive & parse is completed, we should be able to get the file size now.
1041 //
1042 Status = HttpGetEntityLength (Parser, &ContentLength);
1043 if (EFI_ERROR (Status)) {
1044 goto ERROR_6;
1045 }
1046
1047 if (*BufferSize < ContentLength) {
1048 Status = EFI_BUFFER_TOO_SMALL;
1049 }
1050 *BufferSize = ContentLength;
1051
1052 //
1053 // 4. Save the cache item to driver's cache list and return.
1054 //
1055 if (Cache != NULL) {
1056 Cache->EntityLength = ContentLength;
1057 InsertTailList (&Private->CacheList, &Cache->Link);
1058 }
1059
1060 if (Parser != NULL) {
1061 HttpFreeMsgParser (Parser);
1062 }
1063
1064 return EFI_SUCCESS;
1065
1066 ERROR_6:
1067 if (Parser != NULL) {
1068 HttpFreeMsgParser (Parser);
1069 }
1070 if (Context.Block != NULL) {
1071 FreePool (Context.Block);
1072 }
1073 HttpBootFreeCache (Cache);
1074
1075 ERROR_5:
1076 if (ResponseData != NULL) {
1077 FreePool (ResponseData);
1078 }
1079 ERROR_4:
1080 if (RequestData != NULL) {
1081 FreePool (RequestData);
1082 }
1083 ERROR_3:
1084 HttpBootFreeHeader (HttpIoHeader);
1085 ERROR_2:
1086 if (Cache != NULL) {
1087 FreePool (Cache);
1088 }
1089 ERROR_1:
1090 if (Url != NULL) {
1091 FreePool (Url);
1092 }
1093
1094 return Status;
1095 }
1096