Marvin Häuser d916dd65b8 OcMachoLib: Treat container Mach-O as reference file
As of macOS 13 Developer Beta 3, the Kernel Collection's inner kernel
references a segment that precedes itself. The current model is that
a Kernel Collection is a container format and the included files are
(mostly) separate. Hence, this was treated as an out-of-bounds issue.
Kernel Collections apparently are rather an unconventional composite
format, where the sub-files are still part of the whole. Redesign
OcMachoLib to treat the Kernel Collection as the reference file.
Patches still use only the inner file, while parsing considers the
whole file.
2022-07-07 17:52:25 +02:00

266 lines
6.1 KiB
C

/** @file
Provides services for Relocations.
Copyright (c) 2018, Download-Fritz. All rights reserved.<BR>
This program and the accompanying materials are licensed and made available
under the terms and conditions of the BSD License which accompanies this
distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
**/
#include <Uefi.h>
#include <IndustryStandard/AppleMachoImage.h>
#include <Library/DebugLib.h>
#include <Library/OcMachoLib.h>
#include "OcMachoLibInternal.h"
/**
Returns whether the Relocation's type indicates a Pair for the Intel 32
platform.
@param[in] Type The Relocation's type to verify.
**/
BOOLEAN
MachoRelocationIsPairIntel32 (
IN UINT8 Type
)
{
return (Type == MachGenericRelocSectDiff || Type == MachGenericRelocLocalSectDiff);
}
/**
Returns whether the Relocation's type indicates a Pair for the Intel 64
platform.
@param[in] Type The Relocation's type to verify.
**/
BOOLEAN
MachoRelocationIsPairIntel64 (
IN UINT8 Type
)
{
return (Type == MachX8664RelocSubtractor);
}
/**
Returns whether the Relocation's type matches a Pair's for the Intel 64
platform.
@param[in] Type The Relocation's type to verify.
**/
BOOLEAN
MachoIsRelocationPairTypeIntel64 (
IN UINT8 Type
)
{
return (Type == MachX8664RelocUnsigned);
}
/**
Returns whether the Relocation shall be preserved for the Intel 64 platform.
@param[in] Type The Relocation's type to verify.
**/
BOOLEAN
MachoPreserveRelocationIntel64 (
IN UINT8 Type
)
{
return (Type == MachX8664RelocUnsigned);
}
/**
Retrieves an extern Relocation by the address it targets.
@param[in] Address The address to search for.
@retval NULL NULL is returned on failure.
**/
STATIC
MACH_RELOCATION_INFO *
InternalLookupRelocationByOffset (
IN UINT64 Address,
IN UINT32 NumRelocs,
IN MACH_RELOCATION_INFO *Relocs
)
{
UINT32 Index;
MACH_RELOCATION_INFO *Relocation;
for (Index = 0; Index < NumRelocs; ++Index) {
Relocation = &Relocs[Index];
//
// A section-based relocation entry can be skipped for absolute symbols.
//
if ( (Relocation->Extern == 0)
&& (Relocation->SymbolNumber == MACH_RELOC_ABSOLUTE))
{
continue;
}
if ((UINT64)Relocation->Address == Address) {
return Relocation;
}
//
// Relocation Pairs can be skipped.
// Assumption: Intel X64. Currently verified by the Context
// initialization.
//
if (MachoRelocationIsPairIntel64 ((UINT8)Relocation->Type)) {
if (Index == (MAX_UINT32 - 1)) {
break;
}
++Index;
}
}
return NULL;
}
STATIC
MACH_RELOCATION_INFO *
InternalLookupSectionRelocationByOffset (
IN OUT OC_MACHO_CONTEXT *Context,
IN UINT64 Address,
IN BOOLEAN External
)
{
MACH_SECTION_ANY *Section;
UINT32 SectionIndex;
UINT32 Index;
MACH_RELOCATION_INFO *Relocations;
MACH_RELOCATION_INFO *Relocation;
UINT32 RelocationCount;
SectionIndex = 0;
while (TRUE) {
Section = MachoGetSectionByIndex (Context, SectionIndex);
if (Section == NULL) {
break;
}
//
// Each section has its own relocations table.
//
RelocationCount = Context->Is32Bit ? Section->Section32.NumRelocations : Section->Section64.NumRelocations;
if (RelocationCount > 0) {
Relocations = (MACH_RELOCATION_INFO *)(((UINTN)(Context->FileData))
+ (Context->Is32Bit ? Section->Section32.RelocationsOffset : Section->Section64.RelocationsOffset));
for (Index = 0; Index < RelocationCount; Index++) {
Relocation = &Relocations[Index];
//
// A section-based relocation entry can be skipped for absolute symbols.
//
if ( (Relocation->Extern == 0)
&& (Relocation->SymbolNumber == MACH_RELOC_ABSOLUTE))
{
continue;
}
//
// Filter out the other relocation type.
//
if (Relocation->Extern != (UINT32)(External ? 1 : 0)) {
continue;
}
if (Context->Is32Bit) {
if (((UINT32)Relocation->Address + Section->Section32.Address) == Address) {
return Relocation;
}
} else {
if (((UINT64)Relocation->Address + Section->Section64.Address) == Address) {
return Relocation;
}
}
}
}
SectionIndex++;
}
return NULL;
}
/**
Retrieves an extern Relocation by the address it targets.
@param[in,out] Context Context of the Mach-O.
@param[in] Address The address to search for.
@retval NULL NULL is returned on failure.
**/
MACH_RELOCATION_INFO *
InternalGetExternRelocationByOffset (
IN OUT OC_MACHO_CONTEXT *Context,
IN UINT64 Address
)
{
//
// MH_OBJECT does not have a DYSYMTAB.
//
if (Context->DySymtab == NULL) {
return InternalLookupSectionRelocationByOffset (
Context,
Address,
TRUE
);
}
return InternalLookupRelocationByOffset (
Address,
Context->DySymtab->NumExternalRelocations,
Context->ExternRelocations
);
}
/**
Retrieves an extern Relocation by the address it targets.
@param[in,out] Context Context of the Mach-O.
@param[in] Address The address to search for.
@retval NULL NULL is returned on failure.
**/
MACH_RELOCATION_INFO *
InternalGetLocalRelocationByOffset (
IN OUT OC_MACHO_CONTEXT *Context,
IN UINT64 Address
)
{
//
// MH_OBJECT does not have a DYSYMTAB.
//
if (Context->DySymtab == NULL) {
return InternalLookupSectionRelocationByOffset (
Context,
Address,
FALSE
);
}
return InternalLookupRelocationByOffset (
Address,
Context->DySymtab->NumOfLocalRelocations,
Context->LocalRelocations
);
}