]> git.proxmox.com Git - mirror_edk2.git/blame - SecurityPkg/Library/DxeDeferImageLoadLib/DxeDeferImageLoadLib.h
SecurityPkg: Clean up source files
[mirror_edk2.git] / SecurityPkg / Library / DxeDeferImageLoadLib / DxeDeferImageLoadLib.h
CommitLineData
0c18794e 1/** @file\r
2 The internal header file includes the common header files, defines\r
3 internal structure and functions used by DeferImageLoadLib.\r
4\r
b3548d32
LG
5Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>\r
6This program and the accompanying materials\r
7are licensed and made available under the terms and conditions of the BSD License\r
8which accompanies this distribution. The full text of the license may be found at\r
0c18794e 9http://opensource.org/licenses/bsd-license.php\r
10\r
b3548d32 11THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
0c18794e 12WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13\r
14**/\r
15\r
16#ifndef __DEFER_IMAGE_LOAD_LIB_H__\r
17#define __DEFER_IMAGE_LOAD_LIB_H__\r
18\r
19#include <PiDxe.h>\r
20#include <Library/UefiRuntimeServicesTableLib.h>\r
21#include <Library/UefiBootServicesTableLib.h>\r
22#include <Library/SecurityManagementLib.h>\r
23#include <Library/MemoryAllocationLib.h>\r
24#include <Library/DevicePathLib.h>\r
25#include <Library/BaseMemoryLib.h>\r
26#include <Library/PrintLib.h>\r
27#include <Library/DebugLib.h>\r
28#include <Library/UefiLib.h>\r
29#include <Library/PcdLib.h>\r
30\r
31#include <Protocol/FirmwareVolume2.h>\r
32#include <Protocol/BlockIo.h>\r
33#include <Protocol/SimpleFileSystem.h>\r
34#include <Protocol/DeferredImageLoad.h>\r
35#include <Protocol/UserCredential.h>\r
36#include <Protocol/UserManager.h>\r
0c18794e 37\r
38#include <Guid/GlobalVariable.h>\r
39\r
40//\r
41// Image type definitions.\r
42//\r
43#define IMAGE_UNKNOWN 0x00000001\r
44#define IMAGE_FROM_FV 0x00000002\r
45#define IMAGE_FROM_OPTION_ROM 0x00000004\r
46#define IMAGE_FROM_REMOVABLE_MEDIA 0x00000008\r
47#define IMAGE_FROM_FIXED_MEDIA 0x00000010\r
48\r
49//\r
50// The struct to save the deferred image information.\r
51//\r
52typedef struct {\r
53 EFI_DEVICE_PATH_PROTOCOL *ImageDevicePath;\r
54 VOID *Image;\r
55 UINTN ImageSize;\r
56 BOOLEAN BootOption;\r
57} DEFERRED_IMAGE_INFO;\r
58\r
59//\r
60// The table to save the deferred image item.\r
61//\r
62typedef struct {\r
63 UINTN Count; ///< deferred image count\r
64 DEFERRED_IMAGE_INFO *ImageInfo; ///< deferred image item\r
65} DEFERRED_IMAGE_TABLE;\r
66\r
67/**\r
68 Returns information about a deferred image.\r
69\r
b3548d32
LG
70 This function returns information about a single deferred image. The deferred images are\r
71 numbered consecutively, starting with 0. If there is no image which corresponds to\r
72 ImageIndex, then EFI_NOT_FOUND is returned. All deferred images may be returned by\r
0c18794e 73 iteratively calling this function until EFI_NOT_FOUND is returned.\r
b3548d32
LG
74 Image may be NULL and ImageSize set to 0 if the decision to defer execution was made\r
75 because of the location of the executable image, rather than its actual contents.\r
0c18794e 76\r
77 @param[in] This Points to this instance of the EFI_DEFERRED_IMAGE_LOAD_PROTOCOL.\r
78 @param[in] ImageIndex Zero-based index of the deferred index.\r
b3548d32
LG
79 @param[out] ImageDevicePath On return, points to a pointer to the device path of the image.\r
80 The device path should not be freed by the caller.\r
81 @param[out] Image On return, points to the first byte of the image or NULL if the\r
0c18794e 82 image is not available. The image should not be freed by the caller\r
b3548d32 83 unless LoadImage() has been called successfully.\r
0c18794e 84 @param[out] ImageSize On return, the size of the image, or 0 if the image is not available.\r
b3548d32
LG
85 @param[out] BootOption On return, points to TRUE if the image was intended as a boot option\r
86 or FALSE if it was not intended as a boot option.\r
87\r
0c18794e 88 @retval EFI_SUCCESS Image information returned successfully.\r
89 @retval EFI_NOT_FOUND ImageIndex does not refer to a valid image.\r
b3548d32 90 @retval EFI_INVALID_PARAMETER ImageDevicePath is NULL or Image is NULL or ImageSize is NULL or\r
0c18794e 91 BootOption is NULL.\r
b3548d32 92\r
0c18794e 93**/\r
94EFI_STATUS\r
95EFIAPI\r
96GetDefferedImageInfo (\r
97 IN EFI_DEFERRED_IMAGE_LOAD_PROTOCOL *This,\r
98 IN UINTN ImageIndex,\r
99 OUT EFI_DEVICE_PATH_PROTOCOL **ImageDevicePath,\r
100 OUT VOID **Image,\r
101 OUT UINTN *ImageSize,\r
102 OUT BOOLEAN *BootOption\r
103 );\r
b3548d32 104\r
0c18794e 105#endif\r