2 Declaration of the boot file download function.
4 Copyright (c) 2015 - 2018, Intel Corporation. All rights reserved.<BR>
5 (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
10 #ifndef __EFI_HTTP_BOOT_HTTP_H__
11 #define __EFI_HTTP_BOOT_HTTP_H__
13 #define HTTP_BOOT_REQUEST_TIMEOUT 5000 // 5 seconds in uints of millisecond.
14 #define HTTP_BOOT_RESPONSE_TIMEOUT 5000 // 5 seconds in uints of millisecond.
15 #define HTTP_BOOT_BLOCK_SIZE 1500
19 #define HTTP_USER_AGENT_EFI_HTTP_BOOT "UefiHttpBoot/1.0"
22 // Record the data length and start address of a data block.
25 LIST_ENTRY Link
; // Link to the EntityDataList in HTTP_BOOT_CACHE_CONTENT
26 UINT8
*Block
; // If NULL, the data is in previous data block.
27 UINT8
*DataStart
; // Point to somewhere in the Block
29 } HTTP_BOOT_ENTITY_DATA
;
32 // Structure for a cache item
35 LIST_ENTRY Link
; // Link to the CacheList in driver's private data.
36 EFI_HTTP_REQUEST_DATA
*RequestData
;
37 HTTP_IO_RESPONSE_DATA
*ResponseData
; // Not include any message-body data.
38 HTTP_BOOT_IMAGE_TYPE ImageType
;
40 LIST_ENTRY EntityDataList
; // Entity data (message-body)
41 } HTTP_BOOT_CACHE_CONTENT
;
44 // Callback data for HTTP_BODY_PARSER_CALLBACK()
51 HTTP_BOOT_CACHE_CONTENT
*Cache
;
56 // Caller provided buffer to load the file in.
62 HTTP_BOOT_PRIVATE_DATA
*Private
;
63 } HTTP_BOOT_CALLBACK_DATA
;
66 Discover all the boot information for boot file.
68 @param[in, out] Private The pointer to the driver's private data.
70 @retval EFI_SUCCESS Successfully obtained all the boot information .
71 @retval Others Failed to retrieve the boot information.
75 HttpBootDiscoverBootInfo (
76 IN OUT HTTP_BOOT_PRIVATE_DATA
*Private
80 Create a HttpIo instance for the file download.
82 @param[in] Private The pointer to the driver's private data.
84 @retval EFI_SUCCESS Successfully created.
85 @retval Others Failed to create HttpIo.
89 HttpBootCreateHttpIo (
90 IN HTTP_BOOT_PRIVATE_DATA
*Private
94 This function download the boot file by using UEFI HTTP protocol.
96 @param[in] Private The pointer to the driver's private data.
97 @param[in] HeaderOnly Only request the response header, it could save a lot of time if
98 the caller only want to know the size of the requested file.
99 @param[in, out] BufferSize On input the size of Buffer in bytes. On output with a return
100 code of EFI_SUCCESS, the amount of data transferred to
101 Buffer. On output with a return code of EFI_BUFFER_TOO_SMALL,
102 the size of Buffer required to retrieve the requested file.
103 @param[out] Buffer The memory buffer to transfer the file to. IF Buffer is NULL,
104 then the size of the requested file is returned in
106 @param[out] ImageType The image type of the downloaded file.
108 @retval EFI_SUCCESS The file was loaded.
109 @retval EFI_INVALID_PARAMETER BufferSize is NULL or Buffer Size is not NULL but Buffer is NULL.
110 @retval EFI_OUT_OF_RESOURCES Could not allocate needed resources
111 @retval EFI_BUFFER_TOO_SMALL The BufferSize is too small to read the current directory entry.
112 BufferSize has been updated with the size needed to complete
114 @retval Others Unexpected error happened.
118 HttpBootGetBootFile (
119 IN HTTP_BOOT_PRIVATE_DATA
*Private
,
120 IN BOOLEAN HeaderOnly
,
121 IN OUT UINTN
*BufferSize
,
123 OUT HTTP_BOOT_IMAGE_TYPE
*ImageType
127 Clean up all cached data.
129 @param[in] Private The pointer to the driver's private data.
133 HttpBootFreeCacheList (
134 IN HTTP_BOOT_PRIVATE_DATA
*Private