2019-09-03 11:58:42 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2009-2010 Frank peng. All rights reserved.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LIBSAIO_KERNEL_PATCHER_H
|
|
|
|
#define __LIBSAIO_KERNEL_PATCHER_H
|
|
|
|
|
2020-04-16 11:09:22 +02:00
|
|
|
#include "boot.h"
|
2019-09-03 11:58:42 +02:00
|
|
|
|
2020-08-11 14:43:53 +02:00
|
|
|
//#define DBG_RT( ...) if ((KernelAndKextPatches != NULL) && KernelAndKextPatches->KPDebug) { printf(__VA_ARGS__); }
|
|
|
|
#define DBG_RT(...) if ( KernelAndKextPatches.KPDebug ) { printf(__VA_ARGS__); }
|
2020-05-01 18:26:28 +02:00
|
|
|
|
|
|
|
|
|
|
|
#define CPUFAMILY_INTEL_6_13 0xaa33392b
|
|
|
|
#define CPUFAMILY_INTEL_YONAH 0x73d67300
|
|
|
|
#define CPUFAMILY_INTEL_MEROM 0x426f69ef
|
2019-09-03 11:58:42 +02:00
|
|
|
#define CPUFAMILY_INTEL_PENRYN 0x78ea4fbc
|
|
|
|
#define CPUFAMILY_INTEL_NEHALEM 0x6b5a4cd2
|
|
|
|
#define CPUFAMILY_INTEL_WESTMERE 0x573b5eec
|
|
|
|
|
|
|
|
#define CPUIDFAMILY_DEFAULT 6
|
|
|
|
|
|
|
|
#define MACH_GET_MAGIC(hdr) (((struct mach_header_64*)(hdr))->magic)
|
|
|
|
#define MACH_GET_NCMDS(hdr) (((struct mach_header_64*)(hdr))->ncmds)
|
|
|
|
#define MACH_GET_CPU(hdr) (((struct mach_header_64*)(hdr))->cputype)
|
|
|
|
#define MACH_GET_FLAGS(hdr) (((struct mach_header_64*)(hdr))->flags)
|
|
|
|
#define SC_GET_CMD(hdr) (((struct segment_command_64*)(hdr))->cmd)
|
|
|
|
|
|
|
|
|
2020-05-27 20:04:31 +02:00
|
|
|
const char kPrelinkTextSegment[] = "__PRELINK_TEXT";
|
|
|
|
const char kPrelinkTextSection[] = "__text";
|
|
|
|
const char kPrelinkLinkStateSegment[] = "__PRELINK_STATE";
|
|
|
|
const char kPrelinkKernelLinkStateSection[] = "__kernel";
|
|
|
|
const char kPrelinkKextsLinkStateSection[] = "__kexts";
|
|
|
|
const char kPrelinkInfoSegment[] = "__PRELINK_INFO";
|
|
|
|
const char kPrelinkInfoSection[] = "__info";
|
|
|
|
const char kLinkEditSegment[] = "__LINKEDIT";
|
|
|
|
const char kTextSegment[] = "__TEXT";
|
|
|
|
const char kDataSegment[] = "__DATA";
|
|
|
|
const char kDataConstSegment[] = "__DATA_CONST";
|
|
|
|
const char kKldSegment[] = "__KLD";
|
2020-07-20 10:52:36 +02:00
|
|
|
const char kHibSegment[] = "__HIB";
|
2020-07-24 20:59:51 +02:00
|
|
|
const char kTextExecSegment[] = "__TEXT_EXEC";
|
2020-05-27 20:04:31 +02:00
|
|
|
const char kConstSection[] = "__const";
|
|
|
|
const char kBssSection[] = "__bss";
|
|
|
|
const char kCommonSection[] = "__common";
|
|
|
|
const char kDataSection[] = "__data";
|
2019-09-03 11:58:42 +02:00
|
|
|
|
2020-05-03 19:16:50 +02:00
|
|
|
#define ID_SEG_STEXT 0x010e
|
2020-04-29 17:07:10 +02:00
|
|
|
#define ID_SEG_TEXT 0x010f
|
2020-07-22 22:23:38 +02:00
|
|
|
#define ID_SEG_TEXT2 0x0124
|
2020-05-27 20:04:31 +02:00
|
|
|
|
|
|
|
#define ID_SEG_TEXT_CONST 0x030e
|
|
|
|
#define ID_SEG_DATA_DATA 0x080e
|
|
|
|
#define ID_SEG_DATA_DATA2 0x081e
|
|
|
|
#define ID_SEC_BSS 0x0a0e
|
2020-05-30 18:22:31 +02:00
|
|
|
#define ID_SEC_CONST 0x070f
|
2020-05-27 20:04:31 +02:00
|
|
|
#define ID_SEG_DATA_COMMON 0x090f
|
2020-04-29 17:07:10 +02:00
|
|
|
#define ID_SEG_DATA 0x0f0f
|
|
|
|
#define ID_SEG_DATA_CONST 0x110f
|
2020-07-20 10:52:36 +02:00
|
|
|
#define ID_SEG_HIB 0x170f
|
2020-04-29 17:07:10 +02:00
|
|
|
#define ID_SEG_KLD 0x180f
|
|
|
|
#define ID_SEG_KLD2 0x1a0f
|
2020-07-17 22:45:01 +02:00
|
|
|
#define ID_SEG_KLD3 0x210f
|
2020-04-27 17:16:43 +02:00
|
|
|
|
2020-05-27 20:04:31 +02:00
|
|
|
|
2020-05-01 18:26:28 +02:00
|
|
|
const char ctor_used[] = ".constructors_used";
|
|
|
|
const char kPrelinkBundlePathKey[] = "_PrelinkBundlePath";
|
|
|
|
const char kPrelinkExecutableRelativePathKey[] = "_PrelinkExecutableRelativePath";
|
|
|
|
const char kPrelinkExecutableLoadKey[] = "_PrelinkExecutableLoadAddr";
|
|
|
|
const char kPrelinkExecutableSourceKey[] = "_PrelinkExecutableSourceAddr";
|
|
|
|
const char kPrelinkExecutableSizeKey[] = "_PrelinkExecutableSize";
|
|
|
|
const char kPrelinkInfoDictionaryKey[] = "_PrelinkInfoDictionary";
|
|
|
|
const char kPrelinkInterfaceUUIDKey[] = "_PrelinkInterfaceUUID";
|
|
|
|
const char kPrelinkKmodInfoKey[] = "_PrelinkKmodInfo";
|
|
|
|
const char kPrelinkLinkStateKey[] = "_PrelinkLinkState";
|
|
|
|
const char kPrelinkLinkStateSizeKey[] = "_PrelinkLinkStateSize";
|
2019-09-03 11:58:42 +02:00
|
|
|
|
|
|
|
#define kPropCFBundleIdentifier ("CFBundleIdentifier")
|
|
|
|
#define kPropCFBundleExecutable ("CFBundleExecutable")
|
|
|
|
#define kPropOSBundleRequired ("OSBundleRequired")
|
|
|
|
#define kPropOSBundleLibraries ("OSBundleLibraries")
|
|
|
|
#define kPropIOKitPersonalities ("IOKitPersonalities")
|
|
|
|
#define kPropIONameMatch ("IONameMatch")
|
|
|
|
|
|
|
|
typedef struct _BooterKextFileInfo {
|
|
|
|
UINT32 infoDictPhysAddr;
|
|
|
|
UINT32 infoDictLength;
|
|
|
|
UINT32 executablePhysAddr;
|
|
|
|
UINT32 executableLength;
|
|
|
|
UINT32 bundlePathPhysAddr;
|
|
|
|
UINT32 bundlePathLength;
|
|
|
|
} _BooterKextFileInfo;
|
|
|
|
|
|
|
|
typedef struct _DeviceTreeBuffer {
|
|
|
|
uint32_t paddr;
|
|
|
|
uint32_t length;
|
|
|
|
} _DeviceTreeBuffer;
|
|
|
|
|
2020-04-27 17:16:43 +02:00
|
|
|
typedef struct VTABLE {
|
|
|
|
UINT32 NameOffset;
|
2020-04-29 10:06:44 +02:00
|
|
|
UINT32 Seg;
|
2020-04-27 17:16:43 +02:00
|
|
|
UINT64 ProcAddr;
|
|
|
|
} VTABLE;
|
|
|
|
|
|
|
|
typedef struct SEGMENT {
|
|
|
|
CHAR8 Name[16]; //0
|
2020-05-27 20:04:31 +02:00
|
|
|
UINT64 SegAddress; //0x10
|
2020-04-29 06:58:43 +02:00
|
|
|
UINT64 vmsize; //0x18 0x16FB60
|
2020-05-27 20:04:31 +02:00
|
|
|
UINT32 fileoff; //0x20 0xDDA000 //Slice - it is not UINT64. MachoLib is wrong
|
|
|
|
UINT32 fileoff64; //0x24
|
|
|
|
UINT32 filesize; //0x28 0x16FB60
|
|
|
|
UINT32 filesize64; //0x2c
|
2020-04-29 06:58:43 +02:00
|
|
|
UINT32 maxprot; //0x30 01-Cat 07-Moj
|
|
|
|
UINT32 initprot; //0x34 01
|
|
|
|
UINT32 NumSects; //0x38 00
|
|
|
|
UINT32 Flags; //0x3C 00
|
2020-07-17 13:36:51 +02:00
|
|
|
UINT32 Cmd; //0x40 02 //LC_SYMTAB link-edit stab symbol table info
|
2020-07-17 13:40:16 +02:00
|
|
|
UINT32 Cmdsize; //0x44 18
|
2020-04-29 06:58:43 +02:00
|
|
|
UINT32 AddrVtable; //0x48
|
|
|
|
UINT32 SizeVtable; //0x4C
|
|
|
|
UINT32 AddrNames; //0x50
|
2020-07-17 13:36:51 +02:00
|
|
|
UINT32 SizeNamesTable;
|
2020-04-27 17:16:43 +02:00
|
|
|
} SEGMENT;
|
2019-09-03 11:58:42 +02:00
|
|
|
|
2020-09-07 00:19:48 +02:00
|
|
|
extern LIST_ENTRY gKextList; // Jief : globals variables... not great.
|
2019-09-03 11:58:42 +02:00
|
|
|
|
2020-05-11 17:44:00 +02:00
|
|
|
//extern EFI_PHYSICAL_ADDRESS KernelRelocBase;
|
|
|
|
//extern BootArgs1 *bootArgs1;
|
|
|
|
//extern BootArgs2 *bootArgs2;
|
|
|
|
//extern CHAR8 *dtRoot;
|
|
|
|
//extern UINT32 *dtLength;
|
|
|
|
//extern UINT8 *KernelData;
|
|
|
|
//extern UINT32 KernelSlide;
|
|
|
|
//extern BOOLEAN isKernelcache;
|
|
|
|
//extern BOOLEAN is64BitKernel;
|
|
|
|
//extern BOOLEAN gSNBEAICPUFixRequire; // SandyBridge-E AppleIntelCpuPowerManagement patch require or not
|
|
|
|
//extern BOOLEAN gBDWEIOPCIFixRequire; // Broadwell-E IOPCIFamily fix require or not
|
|
|
|
|
|
|
|
|
|
|
|
//extern UINT32 DisplayVendor[];
|
2019-09-03 11:58:42 +02:00
|
|
|
//VOID findCPUfamily();
|
|
|
|
|
2020-05-11 17:44:00 +02:00
|
|
|
//extern BOOLEAN SSSE3;
|
2020-04-16 09:15:26 +02:00
|
|
|
|
2019-09-03 11:58:42 +02:00
|
|
|
|
|
|
|
//UINT64 kernelsize;
|
|
|
|
|
2020-05-09 10:55:33 +02:00
|
|
|
//VOID Patcher_SSE3_5(VOID* kernelData);
|
|
|
|
//VOID Patcher_SSE3_6(VOID* kernelData);
|
|
|
|
//VOID Patcher_SSE3_7();
|
2019-09-03 11:58:42 +02:00
|
|
|
|
2020-05-27 20:04:31 +02:00
|
|
|
//#include "../gui/menu_items/menu_items.h" // for LOADER_ENTRY
|
|
|
|
//class LOADER_ENTRY;
|
2020-05-01 18:26:28 +02:00
|
|
|
//VOID KernelAndKextsPatcherStart(IN LOADER_ENTRY *Entry);
|
2019-09-03 11:58:42 +02:00
|
|
|
|
|
|
|
//VOID register_kernel_symbol(CONST CHAR8* name);
|
|
|
|
//UINT64 symbol_handler(CHAR8* symbolName, UINT64 addr);
|
|
|
|
//INTN locate_symbols(VOID* kernelData);
|
|
|
|
|
|
|
|
|
|
|
|
/////////////////////
|
|
|
|
//
|
|
|
|
// kext_patcher.c
|
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// Called from SetFSInjection(), before boot.efi is started,
|
|
|
|
// to allow patchers to prepare FSInject to force load needed kexts.
|
|
|
|
//
|
2020-05-01 18:26:28 +02:00
|
|
|
//VOID KextPatcherRegisterKexts(FSINJECTION_PROTOCOL *FSInject, FSI_STRING_LIST *ForceLoadKexts, LOADER_ENTRY *Entry);
|
2019-09-03 11:58:42 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Entry for all kext patches.
|
|
|
|
// Will iterate through kext in prelinked kernel (kernelcache)
|
|
|
|
// or DevTree (drivers boot) and do patches.
|
|
|
|
//
|
2020-05-01 18:26:28 +02:00
|
|
|
//VOID KextPatcherStart(LOADER_ENTRY *Entry);
|
2019-09-03 11:58:42 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Searches Source for Search pattern of size SearchSize
|
|
|
|
// and returns the number of occurences.
|
|
|
|
//
|
2020-05-02 18:00:31 +02:00
|
|
|
UINTN SearchAndCount(const UINT8 *Source, UINT64 SourceSize, const UINT8 *Search, UINTN SearchSize);
|
2019-09-03 11:58:42 +02:00
|
|
|
|
2020-05-02 05:38:38 +02:00
|
|
|
BOOLEAN CompareMemMask(const UINT8 *Source, const UINT8 *Search, UINTN SearchSize, const UINT8 *Mask, UINTN MaskSize);
|
2020-05-27 20:04:31 +02:00
|
|
|
VOID CopyMemMask(UINT8 *Dest, const UINT8 *Replace, const UINT8 *Mask, UINTN SearchSize);
|
2020-05-02 05:38:38 +02:00
|
|
|
UINTN FindMemMask(const UINT8 *Source, UINTN SourceSize, const UINT8 *Search, UINTN SearchSize, const UINT8 *MaskSearch, UINTN MaskSize);
|
2020-05-03 06:10:02 +02:00
|
|
|
UINTN FindRelative32(const UINT8 *Source, UINTN Start, UINTN SourceSize, UINTN taskLocation);
|
2020-07-25 08:36:00 +02:00
|
|
|
//UINTN FindSection(const UINT8 *Source, UINTN len, const UINT8* seg, const UINT8* sec);
|
2019-09-03 11:58:42 +02:00
|
|
|
//
|
|
|
|
// Searches Source for Search pattern of size SearchSize
|
|
|
|
// and replaces it with Replace up to MaxReplaces times.
|
|
|
|
// If MaxReplaces <= 0, then there is no restriction on number of replaces.
|
|
|
|
// Replace should have the same size as Search.
|
|
|
|
// Returns number of replaces done.
|
|
|
|
//
|
2020-05-02 05:38:38 +02:00
|
|
|
UINTN SearchAndReplace(UINT8 *Source, UINT64 SourceSize, const UINT8 *Search, UINTN SearchSize, const UINT8 *Replace, INTN MaxReplaces);
|
2019-09-03 11:58:42 +02:00
|
|
|
|
2020-05-02 05:38:38 +02:00
|
|
|
UINTN SearchAndReplaceMask(UINT8 *Source, UINT64 SourceSize, const UINT8 *Search, const UINT8 *MaskSearch, UINTN SearchSize,
|
|
|
|
const UINT8 *Replace, const UINT8 *MaskReplace, INTN MaxReplaces);
|
2019-09-03 11:58:42 +02:00
|
|
|
|
2020-04-27 17:16:43 +02:00
|
|
|
|
2019-09-03 11:58:42 +02:00
|
|
|
#endif /* !__LIBSAIO_KERNEL_PATCHER_H */
|