]> git.proxmox.com Git - mirror_edk2.git/blob - NetworkPkg/HttpBootDxe/HttpBootClient.c
NetworkPkg:Fix Http boot download issue.
[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 EFI_HANDLE ImageHandle;
451
452 ASSERT (Private != NULL);
453
454 ZeroMem (&ConfigData, sizeof (HTTP_IO_CONFIG_DATA));
455 if (!Private->UsingIpv6) {
456 ConfigData.Config4.HttpVersion = HttpVersion11;
457 ConfigData.Config4.RequestTimeOut = HTTP_BOOT_REQUEST_TIMEOUT;
458 IP4_COPY_ADDRESS (&ConfigData.Config4.LocalIp, &Private->StationIp.v4);
459 IP4_COPY_ADDRESS (&ConfigData.Config4.SubnetMask, &Private->SubnetMask.v4);
460 ImageHandle = Private->Ip4Nic->ImageHandle;
461 } else {
462 ConfigData.Config6.HttpVersion = HttpVersion11;
463 ConfigData.Config6.RequestTimeOut = HTTP_BOOT_REQUEST_TIMEOUT;
464 IP6_COPY_ADDRESS (&ConfigData.Config6.LocalIp, &Private->StationIp.v6);
465 ImageHandle = Private->Ip6Nic->ImageHandle;
466 }
467
468 Status = HttpIoCreateIo (
469 ImageHandle,
470 Private->Controller,
471 Private->UsingIpv6 ? IP_VERSION_6 : IP_VERSION_4,
472 &ConfigData,
473 &Private->HttpIo
474 );
475 if (EFI_ERROR (Status)) {
476 return Status;
477 }
478
479 Private->HttpCreated = TRUE;
480 return EFI_SUCCESS;
481 }
482
483 /**
484 Release all the resource of a cache item.
485
486 @param[in] Cache The pointer to the cache item.
487
488 **/
489 VOID
490 HttpBootFreeCache (
491 IN HTTP_BOOT_CACHE_CONTENT *Cache
492 )
493 {
494 UINTN Index;
495 LIST_ENTRY *Entry;
496 LIST_ENTRY *NextEntry;
497 HTTP_BOOT_ENTITY_DATA *EntityData;
498
499 if (Cache != NULL) {
500 //
501 // Free the request data
502 //
503 if (Cache->RequestData != NULL) {
504 if (Cache->RequestData->Url != NULL) {
505 FreePool (Cache->RequestData->Url);
506 }
507 FreePool (Cache->RequestData);
508 }
509
510 //
511 // Free the response header
512 //
513 if (Cache->ResponseData != NULL) {
514 if (Cache->ResponseData->Headers != NULL) {
515 for (Index = 0; Index < Cache->ResponseData->HeaderCount; Index++) {
516 FreePool (Cache->ResponseData->Headers[Index].FieldName);
517 FreePool (Cache->ResponseData->Headers[Index].FieldValue);
518 }
519 FreePool (Cache->ResponseData->Headers);
520 }
521 }
522
523 //
524 // Free the response body
525 //
526 NET_LIST_FOR_EACH_SAFE (Entry, NextEntry, &Cache->EntityDataList) {
527 EntityData = NET_LIST_USER_STRUCT (Entry, HTTP_BOOT_ENTITY_DATA, Link);
528 if (EntityData->Block != NULL) {
529 FreePool (EntityData->Block);
530 }
531 RemoveEntryList (&EntityData->Link);
532 FreePool (EntityData);
533 }
534
535 FreePool (Cache);
536 }
537 }
538
539 /**
540 Clean up all cached data.
541
542 @param[in] Private The pointer to the driver's private data.
543
544 **/
545 VOID
546 HttpBootFreeCacheList (
547 IN HTTP_BOOT_PRIVATE_DATA *Private
548 )
549 {
550 LIST_ENTRY *Entry;
551 LIST_ENTRY *NextEntry;
552 HTTP_BOOT_CACHE_CONTENT *Cache;
553
554 NET_LIST_FOR_EACH_SAFE (Entry, NextEntry, &Private->CacheList) {
555 Cache = NET_LIST_USER_STRUCT (Entry, HTTP_BOOT_CACHE_CONTENT, Link);
556 RemoveEntryList (&Cache->Link);
557 HttpBootFreeCache (Cache);
558 }
559 }
560
561 /**
562 Get the file content from cached data.
563
564 @param[in] Private The pointer to the driver's private data.
565 @param[in] Uri Uri of the file to be retrieved from cache.
566 @param[in, out] BufferSize On input the size of Buffer in bytes. On output with a return
567 code of EFI_SUCCESS, the amount of data transferred to
568 Buffer. On output with a return code of EFI_BUFFER_TOO_SMALL,
569 the size of Buffer required to retrieve the requested file.
570 @param[out] Buffer The memory buffer to transfer the file to. IF Buffer is NULL,
571 then the size of the requested file is returned in
572 BufferSize.
573
574 @retval EFI_SUCCESS Successfully created.
575 @retval Others Failed to create HttpIo.
576
577 **/
578 EFI_STATUS
579 HttpBootGetFileFromCache (
580 IN HTTP_BOOT_PRIVATE_DATA *Private,
581 IN CHAR16 *Uri,
582 IN OUT UINTN *BufferSize,
583 OUT UINT8 *Buffer
584 )
585 {
586 LIST_ENTRY *Entry;
587 LIST_ENTRY *Entry2;
588 HTTP_BOOT_CACHE_CONTENT *Cache;
589 HTTP_BOOT_ENTITY_DATA *EntityData;
590 UINTN CopyedSize;
591
592 if (Uri == NULL || BufferSize == 0 || Buffer == NULL) {
593 return EFI_INVALID_PARAMETER;
594 }
595
596 NET_LIST_FOR_EACH (Entry, &Private->CacheList) {
597 Cache = NET_LIST_USER_STRUCT (Entry, HTTP_BOOT_CACHE_CONTENT, Link);
598 //
599 // Compare the URI to see whether we already have a cache for this file.
600 //
601 if ((Cache->RequestData != NULL) &&
602 (Cache->RequestData->Url != NULL) &&
603 (StrCmp (Uri, Cache->RequestData->Url) == 0))
604 {
605 //
606 // Hit cache, check buffer size.
607 //
608 if (*BufferSize < Cache->EntityLength) {
609 *BufferSize = Cache->EntityLength;
610 return EFI_BUFFER_TOO_SMALL;
611 }
612
613 //
614 // Fill data to buffer.
615 //
616 CopyedSize = 0;
617 NET_LIST_FOR_EACH (Entry2, &Cache->EntityDataList) {
618 EntityData = NET_LIST_USER_STRUCT (Entry2, HTTP_BOOT_ENTITY_DATA, Link);
619 if (*BufferSize > CopyedSize) {
620 CopyMem (
621 Buffer + CopyedSize,
622 EntityData->DataStart,
623 MIN (EntityData->DataLength, *BufferSize - CopyedSize)
624 );
625 CopyedSize += MIN (EntityData->DataLength, *BufferSize - CopyedSize);
626 }
627 }
628 *BufferSize = CopyedSize;
629 return EFI_SUCCESS;
630 }
631 }
632
633 return EFI_NOT_FOUND;
634 }
635
636 /**
637 A callback function to intercept events during message parser.
638
639 This function will be invoked during HttpParseMessageBody() with various events type. An error
640 return status of the callback function will cause the HttpParseMessageBody() aborted.
641
642 @param[in] EventType Event type of this callback call.
643 @param[in] Data A pointer to data buffer.
644 @param[in] Length Length in bytes of the Data.
645 @param[in] Context Callback context set by HttpInitMsgParser().
646
647 @retval EFI_SUCCESS Continue to parser the message body.
648 @retval Others Abort the parse.
649
650 **/
651 EFI_STATUS
652 EFIAPI
653 HttpBootGetBootFileCallback (
654 IN HTTP_BODY_PARSE_EVENT EventType,
655 IN CHAR8 *Data,
656 IN UINTN Length,
657 IN VOID *Context
658 )
659 {
660 HTTP_BOOT_CALLBACK_DATA *CallbackData;
661 HTTP_BOOT_ENTITY_DATA *NewEntityData;
662
663 //
664 // We only care about the entity data.
665 //
666 if (EventType != BodyParseEventOnData) {
667 return EFI_SUCCESS;
668 }
669
670 CallbackData = (HTTP_BOOT_CALLBACK_DATA *) Context;
671 //
672 // Copy data if caller has provided a buffer.
673 //
674 if (CallbackData->BufferSize > CallbackData->CopyedSize) {
675 CopyMem (
676 CallbackData->Buffer + CallbackData->CopyedSize,
677 Data,
678 MIN (Length, CallbackData->BufferSize - CallbackData->CopyedSize)
679 );
680 CallbackData->CopyedSize += MIN (Length, CallbackData->BufferSize - CallbackData->CopyedSize);
681 }
682
683 //
684 // The caller doesn't provide a buffer, save the block into cache list.
685 //
686 if (CallbackData->Cache != NULL) {
687 NewEntityData = AllocatePool (sizeof (HTTP_BOOT_ENTITY_DATA));
688 if (NewEntityData == NULL) {
689 return EFI_OUT_OF_RESOURCES;
690 }
691 if (CallbackData->NewBlock) {
692 NewEntityData->Block = CallbackData->Block;
693 CallbackData->Block = NULL;
694 }
695 NewEntityData->DataLength = Length;
696 NewEntityData->DataStart = (UINT8*) Data;
697 InsertTailList (&CallbackData->Cache->EntityDataList, &NewEntityData->Link);
698 }
699 return EFI_SUCCESS;
700 }
701
702 /**
703 This function download the boot file by using UEFI HTTP protocol.
704
705 @param[in] Private The pointer to the driver's private data.
706 @param[in] HeaderOnly Only request the response header, it could save a lot of time if
707 the caller only want to know the size of the requested file.
708 @param[in, out] BufferSize On input the size of Buffer in bytes. On output with a return
709 code of EFI_SUCCESS, the amount of data transferred to
710 Buffer. On output with a return code of EFI_BUFFER_TOO_SMALL,
711 the size of Buffer required to retrieve the requested file.
712 @param[out] Buffer The memory buffer to transfer the file to. IF Buffer is NULL,
713 then the size of the requested file is returned in
714 BufferSize.
715
716 @retval EFI_SUCCESS The file was loaded.
717 @retval EFI_INVALID_PARAMETER BufferSize is NULL or Buffer Size is not NULL but Buffer is NULL.
718 @retval EFI_OUT_OF_RESOURCES Could not allocate needed resources
719 @retval EFI_BUFFER_TOO_SMALL The BufferSize is too small to read the current directory entry.
720 BufferSize has been updated with the size needed to complete
721 the request.
722 @retval Others Unexpected error happened.
723
724 **/
725 EFI_STATUS
726 HttpBootGetBootFile (
727 IN HTTP_BOOT_PRIVATE_DATA *Private,
728 IN BOOLEAN HeaderOnly,
729 IN OUT UINTN *BufferSize,
730 OUT UINT8 *Buffer
731 )
732 {
733 EFI_STATUS Status;
734 EFI_HTTP_STATUS_CODE StatusCode;
735 CHAR8 *HostName;
736 EFI_HTTP_REQUEST_DATA *RequestData;
737 HTTP_IO_RESPONSE_DATA *ResponseData;
738 HTTP_IO_RESPONSE_DATA ResponseBody;
739 HTTP_IO *HttpIo;
740 HTTP_IO_HEADER *HttpIoHeader;
741 VOID *Parser;
742 HTTP_BOOT_CALLBACK_DATA Context;
743 UINTN ContentLength;
744 HTTP_BOOT_CACHE_CONTENT *Cache;
745 UINT8 *Block;
746 CHAR16 *Url;
747 BOOLEAN IdentityMode;
748 UINTN ReceivedSize;
749
750 ASSERT (Private != NULL);
751 ASSERT (Private->HttpCreated);
752
753 if (BufferSize == NULL) {
754 return EFI_INVALID_PARAMETER;
755 }
756
757 if (*BufferSize != 0 && Buffer == NULL) {
758 return EFI_INVALID_PARAMETER;
759 }
760
761 //
762 // First, check whether we already cached the requested Uri.
763 //
764 Url = AllocatePool ((AsciiStrLen (Private->BootFileUri) + 1) * sizeof (CHAR16));
765 if (Url == NULL) {
766 return EFI_OUT_OF_RESOURCES;
767 }
768 AsciiStrToUnicodeStr (Private->BootFileUri, Url);
769 if (!HeaderOnly) {
770 Status = HttpBootGetFileFromCache (Private, Url, BufferSize, Buffer);
771 if (Status != EFI_NOT_FOUND) {
772 FreePool (Url);
773 return Status;
774 }
775 }
776
777 //
778 // Not found in cache, try to download it through HTTP.
779 //
780
781 //
782 // 1. Create a temp cache item for the requested URI if caller doesn't provide buffer.
783 //
784 Cache = NULL;
785 if ((!HeaderOnly) && (*BufferSize == 0)) {
786 Cache = AllocateZeroPool (sizeof (HTTP_BOOT_CACHE_CONTENT));
787 if (Cache == NULL) {
788 Status = EFI_OUT_OF_RESOURCES;
789 goto ERROR_1;
790 }
791 InitializeListHead (&Cache->EntityDataList);
792 }
793
794 //
795 // 2. Send HTTP request message.
796 //
797
798 //
799 // 2.1 Build HTTP header for the request, 3 header is needed to download a boot file:
800 // Host
801 // Accept
802 // User-Agent
803 //
804 HttpIoHeader = HttpBootCreateHeader (3);
805 if (HttpIoHeader == NULL) {
806 Status = EFI_OUT_OF_RESOURCES;
807 goto ERROR_2;
808 }
809
810 //
811 // Add HTTP header field 1: Host
812 //
813 HostName = NULL;
814 Status = HttpUrlGetHostName (
815 Private->BootFileUri,
816 Private->BootFileUriParser,
817 &HostName
818 );
819 if (EFI_ERROR (Status)) {
820 goto ERROR_3;
821 }
822 Status = HttpBootSetHeader (
823 HttpIoHeader,
824 HTTP_HEADER_HOST,
825 HostName
826 );
827 FreePool (HostName);
828 if (EFI_ERROR (Status)) {
829 goto ERROR_3;
830 }
831
832 //
833 // Add HTTP header field 2: Accept
834 //
835 Status = HttpBootSetHeader (
836 HttpIoHeader,
837 HTTP_HEADER_ACCEPT,
838 "*/*"
839 );
840 if (EFI_ERROR (Status)) {
841 goto ERROR_3;
842 }
843
844 //
845 // Add HTTP header field 3: User-Agent
846 //
847 Status = HttpBootSetHeader (
848 HttpIoHeader,
849 HTTP_HEADER_USER_AGENT,
850 HTTP_USER_AGENT_EFI_HTTP_BOOT
851 );
852 if (EFI_ERROR (Status)) {
853 goto ERROR_3;
854 }
855
856 //
857 // 2.2 Build the rest of HTTP request info.
858 //
859 RequestData = AllocatePool (sizeof (EFI_HTTP_REQUEST_DATA));
860 if (RequestData == NULL) {
861 Status = EFI_OUT_OF_RESOURCES;
862 goto ERROR_3;
863 }
864 RequestData->Method = HeaderOnly ? HttpMethodHead : HttpMethodGet;
865 RequestData->Url = Url;
866 if (RequestData->Url == NULL) {
867 Status = EFI_OUT_OF_RESOURCES;
868 goto ERROR_4;
869 }
870 AsciiStrToUnicodeStr (Private->BootFileUri, RequestData->Url);
871
872 //
873 // 2.3 Record the request info in a temp cache item.
874 //
875 if (Cache != NULL) {
876 Cache->RequestData = RequestData;
877 }
878
879 //
880 // 2.4 Send out the request to HTTP server.
881 //
882 HttpIo = &Private->HttpIo;
883 Status = HttpIoSendRequest (
884 HttpIo,
885 RequestData,
886 HttpIoHeader->HeaderCount,
887 HttpIoHeader->Headers,
888 0,
889 NULL
890 );
891 if (EFI_ERROR (Status)) {
892 goto ERROR_4;
893 }
894
895 //
896 // 3. Receive HTTP response message.
897 //
898
899 //
900 // 3.1 First step, use zero BodyLength to only receive the response headers.
901 //
902 ResponseData = AllocateZeroPool (sizeof(HTTP_IO_RESPONSE_DATA));
903 if (ResponseData == NULL) {
904 Status = EFI_OUT_OF_RESOURCES;
905 goto ERROR_4;
906 }
907 Status = HttpIoRecvResponse (
908 &Private->HttpIo,
909 TRUE,
910 ResponseData
911 );
912 if (EFI_ERROR (Status) || EFI_ERROR (ResponseData->Status)) {
913 if (EFI_ERROR (ResponseData->Status)) {
914 StatusCode = HttpIo->RspToken.Message->Data.Response->StatusCode;
915 HttpBootPrintErrorMessage (StatusCode);
916 Status = ResponseData->Status;
917 }
918 goto ERROR_5;
919 }
920
921 //
922 // 3.2 Cache the response header.
923 //
924 if (Cache != NULL) {
925 Cache->ResponseData = ResponseData;
926 }
927
928 //
929 // 3.3 Init a message-body parser from the header information.
930 //
931 Parser = NULL;
932 Context.NewBlock = FALSE;
933 Context.Block = NULL;
934 Context.CopyedSize = 0;
935 Context.Buffer = Buffer;
936 Context.BufferSize = *BufferSize;
937 Context.Cache = Cache;
938 Status = HttpInitMsgParser (
939 HeaderOnly? HttpMethodHead : HttpMethodGet,
940 ResponseData->Response.StatusCode,
941 ResponseData->HeaderCount,
942 ResponseData->Headers,
943 HttpBootGetBootFileCallback,
944 (VOID*) &Context,
945 &Parser
946 );
947 if (EFI_ERROR (Status)) {
948 goto ERROR_6;
949 }
950
951 //
952 // 3.4 Continue to receive and parse message-body if needed.
953 //
954 Block = NULL;
955 if (!HeaderOnly) {
956 //
957 // 3.4.1, check whether we are in identity transfer-coding.
958 //
959 ContentLength = 0;
960 Status = HttpGetEntityLength (Parser, &ContentLength);
961 if (!EFI_ERROR (Status)) {
962 IdentityMode = TRUE;
963 } else {
964 IdentityMode = FALSE;
965 }
966
967 //
968 // 3.4.2, start the message-body download, the identity and chunked transfer-coding
969 // is handled in different path here.
970 //
971 ZeroMem (&ResponseBody, sizeof (HTTP_IO_RESPONSE_DATA));
972 if (IdentityMode) {
973 //
974 // In identity transfer-coding there is no need to parse the message body,
975 // just download the message body to the user provided buffer directly.
976 //
977 ReceivedSize = 0;
978 while (ReceivedSize < ContentLength) {
979 ResponseBody.Body = (CHAR8*) Buffer + ReceivedSize;
980 ResponseBody.BodyLength = *BufferSize - ReceivedSize;
981 Status = HttpIoRecvResponse (
982 &Private->HttpIo,
983 FALSE,
984 &ResponseBody
985 );
986 if (EFI_ERROR (Status)) {
987 goto ERROR_6;
988 }
989 ReceivedSize += ResponseBody.BodyLength;
990 }
991 } else {
992 //
993 // In "chunked" transfer-coding mode, so we need to parse the received
994 // data to get the real entity content.
995 //
996 Block = NULL;
997 while (!HttpIsMessageComplete (Parser)) {
998 //
999 // Allocate a buffer in Block to hold the message-body.
1000 // If caller provides a buffer, this Block will be reused in every HttpIoRecvResponse().
1001 // Otherwise a buffer, the buffer in Block will be cached and we should allocate a new before
1002 // every HttpIoRecvResponse().
1003 //
1004 if (Block == NULL || Context.BufferSize == 0) {
1005 Block = AllocatePool (HTTP_BOOT_BLOCK_SIZE);
1006 if (Block == NULL) {
1007 Status = EFI_OUT_OF_RESOURCES;
1008 goto ERROR_6;
1009 }
1010 Context.NewBlock = TRUE;
1011 Context.Block = Block;
1012 } else {
1013 Context.NewBlock = FALSE;
1014 }
1015
1016 ResponseBody.Body = (CHAR8*) Block;
1017 ResponseBody.BodyLength = HTTP_BOOT_BLOCK_SIZE;
1018 Status = HttpIoRecvResponse (
1019 &Private->HttpIo,
1020 FALSE,
1021 &ResponseBody
1022 );
1023 if (EFI_ERROR (Status)) {
1024 goto ERROR_6;
1025 }
1026
1027 //
1028 // Parse the new received block of the message-body, the block will be saved in cache.
1029 //
1030 Status = HttpParseMessageBody (
1031 Parser,
1032 ResponseBody.BodyLength,
1033 ResponseBody.Body
1034 );
1035 if (EFI_ERROR (Status)) {
1036 goto ERROR_6;
1037 }
1038 }
1039 }
1040 }
1041
1042 //
1043 // 3.5 Message-body receive & parse is completed, we should be able to get the file size now.
1044 //
1045 Status = HttpGetEntityLength (Parser, &ContentLength);
1046 if (EFI_ERROR (Status)) {
1047 goto ERROR_6;
1048 }
1049
1050 if (*BufferSize < ContentLength) {
1051 Status = EFI_BUFFER_TOO_SMALL;
1052 }
1053 *BufferSize = ContentLength;
1054
1055 //
1056 // 4. Save the cache item to driver's cache list and return.
1057 //
1058 if (Cache != NULL) {
1059 Cache->EntityLength = ContentLength;
1060 InsertTailList (&Private->CacheList, &Cache->Link);
1061 }
1062
1063 if (Parser != NULL) {
1064 HttpFreeMsgParser (Parser);
1065 }
1066
1067 return EFI_SUCCESS;
1068
1069 ERROR_6:
1070 if (Parser != NULL) {
1071 HttpFreeMsgParser (Parser);
1072 }
1073 if (Context.Block != NULL) {
1074 FreePool (Context.Block);
1075 }
1076 HttpBootFreeCache (Cache);
1077
1078 ERROR_5:
1079 if (ResponseData != NULL) {
1080 FreePool (ResponseData);
1081 }
1082 ERROR_4:
1083 if (RequestData != NULL) {
1084 FreePool (RequestData);
1085 }
1086 ERROR_3:
1087 HttpBootFreeHeader (HttpIoHeader);
1088 ERROR_2:
1089 if (Cache != NULL) {
1090 FreePool (Cache);
1091 }
1092 ERROR_1:
1093 if (Url != NULL) {
1094 FreePool (Url);
1095 }
1096
1097 return Status;
1098 }
1099