aboutsummaryrefslogtreecommitdiff
path: root/EfiGuardDxe
diff options
context:
space:
mode:
authorMattiwatti <mattiwatti@gmail.com>2019-05-06 19:15:42 +0200
committerMattiwatti <mattiwatti@gmail.com>2019-05-06 19:15:42 +0200
commit6dc5189d11d3e5690ee61e85c25e6aa5308a0264 (patch)
tree9e4fc99aee9faa65c614dedbc38daecc338b8dab /EfiGuardDxe
parent363621d0a00e89af5e3a68f34242999f04355042 (diff)
Minor fixes
Diffstat (limited to 'EfiGuardDxe')
-rw-r--r--EfiGuardDxe/pe.c14
-rw-r--r--EfiGuardDxe/pe.h12
-rw-r--r--EfiGuardDxe/util.c4
-rw-r--r--EfiGuardDxe/util.h6
4 files changed, 18 insertions, 18 deletions
diff --git a/EfiGuardDxe/pe.c b/EfiGuardDxe/pe.c
index ef1edad..9ecaf57 100644
--- a/EfiGuardDxe/pe.c
+++ b/EfiGuardDxe/pe.c
@@ -29,7 +29,7 @@ RtlIsCanonicalAddress(
PEFI_IMAGE_NT_HEADERS
EFIAPI
RtlpImageNtHeaderEx(
- IN VOID* Base,
+ IN CONST VOID* Base,
IN UINTN Size OPTIONAL
)
{
@@ -64,7 +64,7 @@ RtlpImageNtHeaderEx(
INPUT_FILETYPE
EFIAPI
GetInputFileType(
- IN UINT8* ImageBase,
+ IN CONST UINT8* ImageBase,
IN UINTN ImageSize
)
{
@@ -85,7 +85,7 @@ GetInputFileType(
// Of the Windows loaders, only bootmgfw.efi has this subsystem type.
// Check for the BCD Bootmgr GUID, { 9DEA862C-5CDD-4E70-ACC1-F32B344D4795 }, which is present in bootmgfw/bootmgr (and on Win >= 8 also winload.[exe|efi])
CONST EFI_GUID BcdWindowsBootmgrGuid = { 0x9dea862c, 0x5cdd, 0x4e70, { 0xac, 0xc1, 0xf3, 0x2b, 0x34, 0x4d, 0x47, 0x95 } };
- for (UINT8* Address = ImageBase; Address < ImageBase + ImageSize - sizeof(BcdWindowsBootmgrGuid); Address += sizeof(VOID*))
+ for (UINT8* Address = (UINT8*)ImageBase; Address < ImageBase + ImageSize - sizeof(BcdWindowsBootmgrGuid); Address += sizeof(VOID*))
{
if (CompareGuid((CONST GUID*)Address, &BcdWindowsBootmgrGuid))
{
@@ -162,7 +162,7 @@ EFIAPI
GetProcedureAddress(
IN UINTN DllBase,
IN PEFI_IMAGE_NT_HEADERS NtHeaders,
- IN CHAR8* RoutineName
+ IN CONST CHAR8* RoutineName
)
{
if (DllBase == 0 || NtHeaders == NULL)
@@ -336,7 +336,7 @@ RvaToOffset(
VOID*
EFIAPI
RtlpImageDirectoryEntryToDataEx(
- IN VOID* Base,
+ IN CONST VOID* Base,
IN BOOLEAN MappedAsImage,
IN UINT16 DirectoryEntry,
OUT UINT32 *Size
@@ -383,7 +383,7 @@ RtlpImageDirectoryEntryToDataEx(
EFI_STATUS
EFIAPI
FindResourceDataById(
- IN VOID* ImageBase,
+ IN CONST VOID* ImageBase,
IN UINT16 TypeId,
IN UINT16 NameId,
IN UINT16 LanguageId OPTIONAL,
@@ -456,7 +456,7 @@ FindResourceDataById(
EFI_STATUS
EFIAPI
GetPeFileVersionInfo(
- IN VOID* ImageBase,
+ IN CONST VOID* ImageBase,
OUT UINT16* MajorVersion OPTIONAL,
OUT UINT16* MinorVersion OPTIONAL,
OUT UINT16* BuildNumber OPTIONAL,
diff --git a/EfiGuardDxe/pe.h b/EfiGuardDxe/pe.h
index 8c5f41c..cf47119 100644
--- a/EfiGuardDxe/pe.h
+++ b/EfiGuardDxe/pe.h
@@ -178,14 +178,14 @@ typedef struct _VS_VERSIONINFO
PEFI_IMAGE_NT_HEADERS
EFIAPI
RtlpImageNtHeaderEx(
- IN VOID* Base,
+ IN CONST VOID* Base,
IN UINTN Size OPTIONAL
);
INPUT_FILETYPE
EFIAPI
GetInputFileType(
- IN UINT8 *ImageBase,
+ IN CONST UINT8 *ImageBase,
IN UINTN ImageSize
);
@@ -200,7 +200,7 @@ EFIAPI
GetProcedureAddress(
IN UINTN DllBase,
IN PEFI_IMAGE_NT_HEADERS NtHeaders,
- IN CHAR8* RoutineName
+ IN CONST CHAR8* RoutineName
);
EFI_STATUS
@@ -223,7 +223,7 @@ RvaToOffset(
VOID*
EFIAPI
RtlpImageDirectoryEntryToDataEx(
- IN VOID* Base,
+ IN CONST VOID* Base,
IN BOOLEAN MappedAsImage,
IN UINT16 DirectoryEntry,
OUT UINT32 *Size
@@ -232,7 +232,7 @@ RtlpImageDirectoryEntryToDataEx(
EFI_STATUS
EFIAPI
FindResourceDataById(
- IN VOID* ImageBase,
+ IN CONST VOID* ImageBase,
IN UINT16 TypeId,
IN UINT16 NameId,
IN UINT16 LanguageId OPTIONAL,
@@ -243,7 +243,7 @@ FindResourceDataById(
EFI_STATUS
EFIAPI
GetPeFileVersionInfo(
- IN VOID* ImageBase,
+ IN CONST VOID* ImageBase,
OUT UINT16* MajorVersion OPTIONAL,
OUT UINT16* MinorVersion OPTIONAL,
OUT UINT16* BuildNumber OPTIONAL,
diff --git a/EfiGuardDxe/util.c b/EfiGuardDxe/util.c
index 861c81d..6420a56 100644
--- a/EfiGuardDxe/util.c
+++ b/EfiGuardDxe/util.c
@@ -151,7 +151,7 @@ FindPattern(
IN CONST UINT8* Pattern,
IN UINT8 Wildcard,
IN UINT32 PatternLength,
- IN VOID* Base,
+ IN CONST VOID* Base,
IN UINT32 Size,
OUT VOID **Found
)
@@ -188,7 +188,7 @@ FindPatternVerbose(
IN CONST UINT8* Pattern,
IN UINT8 Wildcard,
IN UINT32 PatternLength,
- IN VOID* Base,
+ IN CONST VOID* Base,
IN UINT32 Size,
OUT VOID **Found
)
diff --git a/EfiGuardDxe/util.h b/EfiGuardDxe/util.h
index b42766d..f25c3d6 100644
--- a/EfiGuardDxe/util.h
+++ b/EfiGuardDxe/util.h
@@ -73,7 +73,7 @@ FindPattern(
IN CONST UINT8* Pattern,
IN UINT8 Wildcard,
IN UINT32 PatternLength,
- IN VOID* Base,
+ IN CONST VOID* Base,
IN UINT32 Size,
OUT VOID **Found
);
@@ -87,7 +87,7 @@ FindPatternVerbose(
IN CONST UINT8* Pattern,
IN UINT8 Wildcard,
IN UINT32 PatternLength,
- IN VOID* Base,
+ IN CONST VOID* Base,
IN UINT32 Size,
OUT VOID **Found
);
@@ -110,7 +110,7 @@ ZydisInit(
//
// Finds the start of a function given an address within it, scanning downwards.
// Returns NULL if StartAddress is NULL (this simplifies error checking logic in calling functions).
-// Returns NULL is LowerBound is reached and no function boundary was found.
+// Returns NULL if LowerBound is reached and no function boundary was found.
//
UINT8*
EFIAPI