CloverBootloader/rEFIt_UEFI/Platform/kext_inject.h

106 lines
2.7 KiB
C++

/*
kext injection
*/
#ifndef __KEXT_INJECT_H__
#define __KEXT_INJECT_H__
//#include <IndustryStardard/MachO-loader.h>
//#include "LoaderUefi.h"
//#include "device_tree.h"
#include <UefiLoader.h>
#include "kernel_patcher.h"
////////////////////
// defines
////////////////////
#define RoundPage(x) ((((UINTN)(x)) + EFI_PAGE_SIZE - 1) & ~(EFI_PAGE_SIZE - 1))
#define KERNEL_MAX_SIZE 80000000
#define KEXT_SIGNATURE SIGNATURE_32('M','O','S','X')
/*
* Capability bits used in the definition of cpu_type.
*/
#define CPU_ARCH_MASK 0xff000000 /* mask for architecture bits */
#define CPU_ARCH_ABI64 0x01000000 /* 64 bit ABI */
/*
* Machine types known by all.
*/
#define CPU_TYPE_ANY ((cpu_type_t) -1)
#define CPU_TYPE_VAX ((cpu_type_t) 1)
/* skip ((cpu_type_t) 2) */
/* skip ((cpu_type_t) 3) */
/* skip ((cpu_type_t) 4) */
/* skip ((cpu_type_t) 5) */
#define CPU_TYPE_MC680x0 ((cpu_type_t) 6)
#define CPU_TYPE_X86 ((cpu_type_t) 7)
#define CPU_TYPE_I386 CPU_TYPE_X86 /* compatibility */
#define CPU_TYPE_X86_64 (CPU_TYPE_X86 | CPU_ARCH_ABI64)
/* skip CPU_TYPE_MIPS ((cpu_type_t) 8) */
/* skip ((cpu_type_t) 9) */
#define CPU_TYPE_MC98000 ((cpu_type_t) 10)
#define CPU_TYPE_HPPA ((cpu_type_t) 11)
#define CPU_TYPE_ARM ((cpu_type_t) 12)
#define CPU_TYPE_MC88000 ((cpu_type_t) 13)
#define CPU_TYPE_SPARC ((cpu_type_t) 14)
#define CPU_TYPE_I860 ((cpu_type_t) 15)
/* skip CPU_TYPE_ALPHA ((cpu_type_t) 16) */
/* skip ((cpu_type_t) 17) */
#define CPU_TYPE_POWERPC ((cpu_type_t) 18)
#define CPU_TYPE_POWERPC64 (CPU_TYPE_POWERPC | CPU_ARCH_ABI64)
#define FAT_MAGIC 0xcafebabe
#define FAT_CIGAM 0xbebafeca /* NXSwapLong(FAT_MAGIC) */
#define THIN_IA32 0xfeedface
#define THIN_X64 0xfeedfacf
////////////////////
// types
////////////////////
typedef struct
{
UINT32 magic; /* FAT_MAGIC */
UINT32 nfat_arch; /* number of structs that follow */
} FAT_HEADER;
typedef struct
{
UINT32 cputype; /* cpu specifier (int) */
UINT32 cpusubtype; /* machine specifier (int) */
UINT32 offset; /* file offset to this object file */
UINT32 size; /* size of this object file */
UINT32 align; /* alignment as a power of 2 */
} FAT_ARCH;
class KEXT_ENTRY
{
public:
UINT32 Signature = 0;
_DeviceTreeBuffer kext = _DeviceTreeBuffer();
KEXT_ENTRY() { }
KEXT_ENTRY(const KEXT_ENTRY& other) = default; // default is fine if there is only native type and objects that have copy ctor
KEXT_ENTRY& operator = ( const KEXT_ENTRY & ) = default; // default is fine if there is only native type and objects that have copy ctor
~KEXT_ENTRY() {}
};
////////////////////
// functions
////////////////////
class LOADER_ENTRY;
#endif