Chameleon

Chameleon Svn Source Tree

Root/branches/azimutz/Chazi/i386/libsaio/fake_efi.c

1
2/*
3 * Copyright 2007 David F. Elliott. All rights reserved.
4 */
5
6//#include "libsaio.h"
7//#include "bootstruct.h"
8#include "boot.h"
9#include "efi.h"
10#include "acpi.h"
11#include "fake_efi.h"
12#include "efi_tables.h"
13#include "platform.h"
14#include "acpi_patcher.h"
15//#include "smbios_patcher.h" - not used with Kabil's smbios...
16#include "smbios.h"
17#include "device_inject.h"
18#include "convert.h"
19//#include "pci.h" - added to fake_efi.h
20#include "sl.h"
21
22//extern struct SMBEntryPoint * getSmbios(int which); // now cached
23//extern void setup_pci_devs(pci_dt_t *pci_dt); //Azi: think a better place...??
24
25/*
26 * Modern Darwin kernels require some amount of EFI because Apple machines all
27 * have EFI. Modifying the kernel source to not require EFI is of course
28 * possible but would have to be maintained as a separate patch because it is
29 * unlikely that Apple wishes to add legacy support to their kernel.
30 *
31 * As you can see from the Apple-supplied code in bootstruct.c, it seems that
32 * the intention was clearly to modify this booter to provide EFI-like structures
33 * to the kernel rather than modifying the kernel to handle non-EFI stuff. This
34 * makes a lot of sense from an engineering point of view as it means the kernel
35 * for the as yet unreleased EFI-only Macs could still be booted by the non-EFI
36 * DTK systems so long as the kernel checked to ensure the boot tables were
37 * filled in appropriately. Modern xnu requires a system table and a runtime
38 * services table and performs no checks whatsoever to ensure the pointers to
39 * these tables are non-NULL. Therefore, any modern xnu kernel will page fault
40 * early on in the boot process if the system table pointer is zero.
41 *
42 * Even before that happens, the tsc_init function in modern xnu requires the FSB
43 * Frequency to be a property in the /efi/platform node of the device tree or else
44 * it panics the bootstrap process very early on.
45 *
46 * As of this writing, the current implementation found here is good enough
47 * to make the currently available xnu kernel boot without modification on a
48 * system with an appropriate processor. With a minor source modification to
49 * the tsc_init function to remove the explicit check for Core or Core 2
50 * processors the kernel can be made to boot on other processors so long as
51 * the code can be executed by the processor and the machine contains the
52 * necessary hardware.
53 */
54
55/*==========================================================================
56 * Utility function to make a device tree string from an EFI_GUID
57 */
58static inline char * mallocStringForGuid(EFI_GUID const *pGuid)
59{
60char *string = malloc(37);
61efi_guid_unparse_upper(pGuid, string);
62return string;
63}
64
65/*==========================================================================
66 * Function to map 32 bit physical address to 64 bit virtual address
67 */
68static uint64_t ptov64(uint32_t addr)
69{
70return ((uint64_t)addr | 0xFFFFFF8000000000ULL);
71}
72
73/*==========================================================================
74 * Fake EFI implementation
75 */
76
77/* Identify ourselves as the EFI firmware vendor */
78static EFI_CHAR16 const FIRMWARE_VENDOR[] = {'C','h','a','m','e','l','e','o','n','_','2','.','0', 0};
79static EFI_UINT32 const FIRMWARE_REVISION = 132; /* FIXME: Find a constant for this. */
80
81/* Default platform system_id (fix by IntVar) */
82static EFI_CHAR8 const SYSTEM_ID[] = "0123456789ABCDEF"; //random value gen by uuidgen
83
84/* Just a ret instruction */
85static uint8_t const VOIDRET_INSTRUCTIONS[] = {0xc3};
86
87/* movl $0x80000003,%eax; ret */
88static uint8_t const UNSUPPORTEDRET_INSTRUCTIONS[] = {0xb8, 0x03, 0x00, 0x00, 0x80, 0xc3};
89
90EFI_SYSTEM_TABLE_32 *gST32 = NULL;
91EFI_SYSTEM_TABLE_64 *gST64 = NULL;
92Node *gEfiConfigurationTableNode = NULL;
93
94extern EFI_STATUS addConfigurationTable(EFI_GUID const *pGuid, void *table, char const *alias)
95{
96 EFI_UINTN i = 0;
97
98//Azi: as is, cpu's with em64t will use EFI64 on pre 10.6 systems,
99// wich seems to cause no problem. In case it does, force i386 arch.
100if (archCpuType == CPU_TYPE_I386)
101{
102i = gST32->NumberOfTableEntries;
103}
104else
105{
106i = gST64->NumberOfTableEntries;
107}
108
109 // We only do adds, not modifications and deletes like InstallConfigurationTable
110if (i >= MAX_CONFIGURATION_TABLE_ENTRIES)
111stop("Ran out of space for configuration tables. Increase the reserved size in the code.\n");
112
113if (pGuid == NULL)
114return EFI_INVALID_PARAMETER;
115
116if (table != NULL)
117{
118// FIXME
119//((EFI_CONFIGURATION_TABLE_64 *)gST->ConfigurationTable)[i].VendorGuid = *pGuid;
120//((EFI_CONFIGURATION_TABLE_64 *)gST->ConfigurationTable)[i].VendorTable = (EFI_PTR64)table;
121
122//++gST->NumberOfTableEntries;
123
124Node *tableNode = DT__AddChild(gEfiConfigurationTableNode, mallocStringForGuid(pGuid));
125
126// Use the pointer to the GUID we just stuffed into the system table
127DT__AddProperty(tableNode, "guid", sizeof(EFI_GUID), (void*)pGuid);
128
129// The "table" property is the 32-bit (in our implementation) physical address of the table
130DT__AddProperty(tableNode, "table", sizeof(void*) * 2, table);
131
132// Assume the alias pointer is a global or static piece of data
133if (alias != NULL)
134DT__AddProperty(tableNode, "alias", strlen(alias)+1, (char*)alias);
135
136return EFI_SUCCESS;
137}
138return EFI_UNSUPPORTED;
139}
140
141//Azi: crc32 done in place, on the cases were it wasn't.
142/*static inline void fixupEfiSystemTableCRC32(EFI_SYSTEM_TABLE_64 *efiSystemTable)
143{
144 efiSystemTable->Hdr.CRC32 = 0;
145 efiSystemTable->Hdr.CRC32 = crc32(0L, efiSystemTable, efiSystemTable->Hdr.HeaderSize);
146}*/
147
148/*
149 * What we do here is simply allocate a fake EFI system table and a fake EFI
150 * runtime services table.
151 *
152 * Because we build against modern headers with kBootArgsRevision 4 we
153 * also take care to set efiMode = 32.
154 */
155void setupEfiTables32(void)
156{
157// We use the fake_efi_pages struct so that we only need to do one kernel
158// memory allocation for all needed EFI data. Otherwise, small allocations
159// like the FIRMWARE_VENDOR string would take up an entire page.
160// NOTE WELL: Do NOT assume this struct has any particular layout within itself.
161// It is absolutely not intended to be publicly exposed anywhere
162// We say pages (plural) although right now we are well within the 1 page size
163// and probably will stay that way.
164struct fake_efi_pages
165{
166EFI_SYSTEM_TABLE_32 efiSystemTable;
167EFI_RUNTIME_SERVICES_32 efiRuntimeServices;
168EFI_CONFIGURATION_TABLE_32 efiConfigurationTable[MAX_CONFIGURATION_TABLE_ENTRIES];
169EFI_CHAR16 firmwareVendor[sizeof(FIRMWARE_VENDOR)/sizeof(EFI_CHAR16)];
170uint8_t voidret_instructions[sizeof(VOIDRET_INSTRUCTIONS)/sizeof(uint8_t)];
171uint8_t unsupportedret_instructions[sizeof(UNSUPPORTEDRET_INSTRUCTIONS)/sizeof(uint8_t)];
172};
173
174struct fake_efi_pages *fakeEfiPages = (struct fake_efi_pages*)AllocateKernelMemory(sizeof(struct fake_efi_pages));
175
176// Zero out all the tables in case fields are added later
177bzero(fakeEfiPages, sizeof(struct fake_efi_pages));
178
179// --------------------------------------------------------------------
180// Initialize some machine code that will return EFI_UNSUPPORTED for
181// functions returning int and simply return for void functions.
182memcpy(fakeEfiPages->voidret_instructions, VOIDRET_INSTRUCTIONS, sizeof(VOIDRET_INSTRUCTIONS));
183memcpy(fakeEfiPages->unsupportedret_instructions, UNSUPPORTEDRET_INSTRUCTIONS, sizeof(UNSUPPORTEDRET_INSTRUCTIONS));
184
185// --------------------------------------------------------------------
186// System table
187EFI_SYSTEM_TABLE_32 *efiSystemTable = gST32 = &fakeEfiPages->efiSystemTable;
188efiSystemTable->Hdr.Signature = EFI_SYSTEM_TABLE_SIGNATURE;
189efiSystemTable->Hdr.Revision = EFI_SYSTEM_TABLE_REVISION;
190efiSystemTable->Hdr.HeaderSize = sizeof(EFI_SYSTEM_TABLE_32);
191efiSystemTable->Hdr.CRC32 = 0; // Initialize to zero and then do CRC32
192efiSystemTable->Hdr.Reserved = 0;
193
194efiSystemTable->FirmwareVendor = (EFI_PTR32)&fakeEfiPages->firmwareVendor;
195memcpy(fakeEfiPages->firmwareVendor, FIRMWARE_VENDOR, sizeof(FIRMWARE_VENDOR));
196efiSystemTable->FirmwareRevision = FIRMWARE_REVISION;
197
198// XXX: We may need to have basic implementations of ConIn/ConOut/StdErr
199// The EFI spec states that all handles are invalid after boot services have been
200// exited so we can probably get by with leaving the handles as zero.
201efiSystemTable->ConsoleInHandle = 0;
202efiSystemTable->ConIn = 0;
203
204efiSystemTable->ConsoleOutHandle = 0;
205efiSystemTable->ConOut = 0;
206
207efiSystemTable->StandardErrorHandle = 0;
208efiSystemTable->StdErr = 0;
209
210efiSystemTable->RuntimeServices = (EFI_PTR32)&fakeEfiPages->efiRuntimeServices;
211
212// According to the EFI spec, BootServices aren't valid after the
213// boot process is exited so we can probably do without it.
214// Apple didn't provide a definition for it in pexpert/i386/efi.h
215// so I'm guessing they don't use it.
216efiSystemTable->BootServices = 0;
217
218efiSystemTable->NumberOfTableEntries = 0;
219efiSystemTable->ConfigurationTable = (EFI_PTR32)fakeEfiPages->efiConfigurationTable;
220
221// We're done. Now CRC32 the thing so the kernel will accept it.
222// Must be initialized to zero before CRC32, done above.
223gST32->Hdr.CRC32 = crc32(0L, gST32, gST32->Hdr.HeaderSize);
224
225// --------------------------------------------------------------------
226// Runtime services
227EFI_RUNTIME_SERVICES_32 *efiRuntimeServices = &fakeEfiPages->efiRuntimeServices;
228efiRuntimeServices->Hdr.Signature = EFI_RUNTIME_SERVICES_SIGNATURE;
229efiRuntimeServices->Hdr.Revision = EFI_RUNTIME_SERVICES_REVISION;
230efiRuntimeServices->Hdr.HeaderSize = sizeof(EFI_RUNTIME_SERVICES_32);
231efiRuntimeServices->Hdr.CRC32 = 0;
232efiRuntimeServices->Hdr.Reserved = 0;
233
234// There are a number of function pointers in the efiRuntimeServices table.
235// These are the Foundation (e.g. core) services and are expected to be present on
236// all EFI-compliant machines.Some kernel extensions (notably AppleEFIRuntime)
237// will call these without checking to see if they are null.
238//
239// We don't really feel like doing an EFI implementation in the bootloader
240// but it is nice if we can at least prevent a complete crash by
241// at least providing some sort of implementation until one can be provided
242// nicely in a kext.
243void (*voidret_fp)() = (void*)fakeEfiPages->voidret_instructions;
244void (*unsupportedret_fp)() = (void*)fakeEfiPages->unsupportedret_instructions;
245efiRuntimeServices->GetTime = (EFI_PTR32)unsupportedret_fp;
246efiRuntimeServices->SetTime = (EFI_PTR32)unsupportedret_fp;
247efiRuntimeServices->GetWakeupTime = (EFI_PTR32)unsupportedret_fp;
248efiRuntimeServices->SetWakeupTime = (EFI_PTR32)unsupportedret_fp;
249efiRuntimeServices->SetVirtualAddressMap = (EFI_PTR32)unsupportedret_fp;
250efiRuntimeServices->ConvertPointer = (EFI_PTR32)unsupportedret_fp;
251efiRuntimeServices->GetVariable = (EFI_PTR32)unsupportedret_fp;
252efiRuntimeServices->GetNextVariableName = (EFI_PTR32)unsupportedret_fp;
253efiRuntimeServices->SetVariable = (EFI_PTR32)unsupportedret_fp;
254efiRuntimeServices->GetNextHighMonotonicCount = (EFI_PTR32)unsupportedret_fp;
255efiRuntimeServices->ResetSystem = (EFI_PTR32)voidret_fp;
256
257// We're done.Now CRC32 the thing so the kernel will accept it
258efiRuntimeServices->Hdr.CRC32 = crc32(0L, efiRuntimeServices, efiRuntimeServices->Hdr.HeaderSize);
259
260// --------------------------------------------------------------------
261// Finish filling in the rest of the boot args that we need.
262//Azi: bootargs
263bootArgs->efiSystemTable = (uint32_t)efiSystemTable;
264bootArgs->efiMode = kBootArgsEfiMode32;
265
266// The bootArgs structure as a whole is bzero'd so we don't need to fill in
267// things like efiRuntimeServices* and what not.
268//
269// In fact, the only code that seems to use that is the hibernate code so it
270// knows not to save the pages. It even checks to make sure its nonzero.
271}
272
273void setupEfiTables64(void)
274{
275struct fake_efi_pages
276{
277EFI_SYSTEM_TABLE_64 efiSystemTable;
278EFI_RUNTIME_SERVICES_64 efiRuntimeServices;
279EFI_CONFIGURATION_TABLE_64 efiConfigurationTable[MAX_CONFIGURATION_TABLE_ENTRIES];
280EFI_CHAR16 firmwareVendor[sizeof(FIRMWARE_VENDOR)/sizeof(EFI_CHAR16)];
281uint8_t voidret_instructions[sizeof(VOIDRET_INSTRUCTIONS)/sizeof(uint8_t)];
282uint8_t unsupportedret_instructions[sizeof(UNSUPPORTEDRET_INSTRUCTIONS)/sizeof(uint8_t)];
283};
284
285struct fake_efi_pages *fakeEfiPages = (struct fake_efi_pages*)AllocateKernelMemory(sizeof(struct fake_efi_pages));
286
287// Zero out all the tables in case fields are added later
288bzero(fakeEfiPages, sizeof(struct fake_efi_pages));
289
290// --------------------------------------------------------------------
291// Initialize some machine code that will return EFI_UNSUPPORTED for
292// functions returning int and simply return for void functions.
293memcpy(fakeEfiPages->voidret_instructions, VOIDRET_INSTRUCTIONS, sizeof(VOIDRET_INSTRUCTIONS));
294memcpy(fakeEfiPages->unsupportedret_instructions, UNSUPPORTEDRET_INSTRUCTIONS, sizeof(UNSUPPORTEDRET_INSTRUCTIONS));
295
296// --------------------------------------------------------------------
297// System table
298EFI_SYSTEM_TABLE_64 *efiSystemTable = gST64 = &fakeEfiPages->efiSystemTable;
299efiSystemTable->Hdr.Signature = EFI_SYSTEM_TABLE_SIGNATURE;
300efiSystemTable->Hdr.Revision = EFI_SYSTEM_TABLE_REVISION;
301efiSystemTable->Hdr.HeaderSize = sizeof(EFI_SYSTEM_TABLE_64);
302efiSystemTable->Hdr.CRC32 = 0; // Initialize to zero and then do CRC32
303efiSystemTable->Hdr.Reserved = 0;
304
305efiSystemTable->FirmwareVendor = ptov64((EFI_PTR32)&fakeEfiPages->firmwareVendor);
306memcpy(fakeEfiPages->firmwareVendor, FIRMWARE_VENDOR, sizeof(FIRMWARE_VENDOR));
307efiSystemTable->FirmwareRevision = FIRMWARE_REVISION;
308
309// XXX: We may need to have basic implementations of ConIn/ConOut/StdErr
310// The EFI spec states that all handles are invalid after boot services have been
311// exited so we can probably get by with leaving the handles as zero.
312efiSystemTable->ConsoleInHandle = 0;
313efiSystemTable->ConIn = 0;
314
315efiSystemTable->ConsoleOutHandle = 0;
316efiSystemTable->ConOut = 0;
317
318efiSystemTable->StandardErrorHandle = 0;
319efiSystemTable->StdErr = 0;
320
321efiSystemTable->RuntimeServices = ptov64((EFI_PTR32)&fakeEfiPages->efiRuntimeServices);
322// According to the EFI spec, BootServices aren't valid after the
323// boot process is exited so we can probably do without it.
324// Apple didn't provide a definition for it in pexpert/i386/efi.h
325// so I'm guessing they don't use it.
326efiSystemTable->BootServices = 0;
327
328efiSystemTable->NumberOfTableEntries = 0;
329efiSystemTable->ConfigurationTable = ptov64((EFI_PTR32)fakeEfiPages->efiConfigurationTable);
330
331// We're done.Now CRC32 the thing so the kernel will accept it
332gST64->Hdr.CRC32 = crc32(0L, gST64, gST64->Hdr.HeaderSize);
333
334// --------------------------------------------------------------------
335// Runtime services
336EFI_RUNTIME_SERVICES_64 *efiRuntimeServices = &fakeEfiPages->efiRuntimeServices;
337efiRuntimeServices->Hdr.Signature = EFI_RUNTIME_SERVICES_SIGNATURE;
338efiRuntimeServices->Hdr.Revision = EFI_RUNTIME_SERVICES_REVISION;
339efiRuntimeServices->Hdr.HeaderSize = sizeof(EFI_RUNTIME_SERVICES_64);
340efiRuntimeServices->Hdr.CRC32 = 0;
341efiRuntimeServices->Hdr.Reserved = 0;
342
343// There are a number of function pointers in the efiRuntimeServices table.
344// These are the Foundation (e.g. core) services and are expected to be present on
345// all EFI-compliant machines.Some kernel extensions (notably AppleEFIRuntime)
346// will call these without checking to see if they are null.
347//
348// We don't really feel like doing an EFI implementation in the bootloader
349// but it is nice if we can at least prevent a complete crash by
350// at least providing some sort of implementation until one can be provided
351// nicely in a kext.
352
353void (*voidret_fp)() = (void*)fakeEfiPages->voidret_instructions;
354void (*unsupportedret_fp)() = (void*)fakeEfiPages->unsupportedret_instructions;
355efiRuntimeServices->GetTime = ptov64((EFI_PTR32)unsupportedret_fp);
356efiRuntimeServices->SetTime = ptov64((EFI_PTR32)unsupportedret_fp);
357efiRuntimeServices->GetWakeupTime = ptov64((EFI_PTR32)unsupportedret_fp);
358efiRuntimeServices->SetWakeupTime = ptov64((EFI_PTR32)unsupportedret_fp);
359efiRuntimeServices->SetVirtualAddressMap = ptov64((EFI_PTR32)unsupportedret_fp);
360efiRuntimeServices->ConvertPointer = ptov64((EFI_PTR32)unsupportedret_fp);
361efiRuntimeServices->GetVariable = ptov64((EFI_PTR32)unsupportedret_fp);
362efiRuntimeServices->GetNextVariableName = ptov64((EFI_PTR32)unsupportedret_fp);
363efiRuntimeServices->SetVariable = ptov64((EFI_PTR32)unsupportedret_fp);
364efiRuntimeServices->GetNextHighMonotonicCount = ptov64((EFI_PTR32)unsupportedret_fp);
365efiRuntimeServices->ResetSystem = ptov64((EFI_PTR32)voidret_fp);
366
367// We're done.Now CRC32 the thing so the kernel will accept it
368efiRuntimeServices->Hdr.CRC32 = crc32(0L, efiRuntimeServices, efiRuntimeServices->Hdr.HeaderSize);
369
370// --------------------------------------------------------------------
371// Finish filling in the rest of the boot args that we need.
372//Azi: bootargs
373bootArgs->efiSystemTable = (uint32_t)efiSystemTable;
374bootArgs->efiMode = kBootArgsEfiMode64;
375
376// The bootArgs structure as a whole is bzero'd so we don't need to fill in
377// things like efiRuntimeServices* and what not.
378//
379// In fact, the only code that seems to use that is the hibernate code so it
380// knows not to save the pages. It even checks to make sure its nonzero.
381}
382
383/*
384 * In addition to the EFI tables there is also the EFI device tree node.
385 * In particular, we need /efi/platform to have an FSBFrequency key. Without it,
386 * the tsc_init function will panic very early on in kernel startup, before
387 * the console is available.
388 */
389
390/*==========================================================================
391 * FSB Frequency detection
392 */
393
394/* These should be const but DT__AddProperty takes char* */
395static const char const TSC_Frequency_prop[] = "TSCFrequency";
396static const char const FSB_Frequency_prop[] = "FSBFrequency";
397static const char const CPU_Frequency_prop[] = "CPUFrequency";
398
399/*==========================================================================
400 * SMBIOS
401 */
402
403/* From Foundation/Efi/Guid/Smbios/SmBios.c */
404EFI_GUID const gEfiSmbiosTableGuid = EFI_SMBIOS_TABLE_GUID;
405
406#define SMBIOS_RANGE_START 0x000F0000
407#define SMBIOS_RANGE_END 0x000FFFFF
408
409/* '_SM_' in little endian: */
410#define SMBIOS_ANCHOR_UINT32_LE 0x5f4d535f
411
412#define EFI_ACPI_TABLE_GUID \
413 { \
414 0xeb9d2d30, 0x2d88, 0x11d3, { 0x9a, 0x16, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \
415 }
416
417#define EFI_ACPI_20_TABLE_GUID \
418 { \
419 0x8868e871, 0xe4f1, 0x11d3, { 0xbc, 0x22, 0x0, 0x80, 0xc7, 0x3c, 0x88, 0x81 } \
420 }
421
422EFI_GUID gEfiAcpiTableGuid = EFI_ACPI_TABLE_GUID;
423EFI_GUID gEfiAcpi20TableGuid = EFI_ACPI_20_TABLE_GUID;
424
425
426/*==========================================================================
427 * Fake EFI implementation
428 */
429
430/* These should be const but DT__AddProperty takes char* */
431static const char const FIRMWARE_REVISION_PROP[] = "firmware-revision";
432static const char const FIRMWARE_ABI_PROP[] = "firmware-abi";
433static const char const FIRMWARE_VENDOR_PROP[] = "firmware-vendor";
434static const char const FIRMWARE_ABI_32_PROP_VALUE[] = "EFI32";
435static const char const FIRMWARE_ABI_64_PROP_VALUE[] = "EFI64";
436static const char const SYSTEM_ID_PROP[] = "system-id";
437static const char const SYSTEM_SERIAL_PROP[] = "SystemSerialNumber";
438static const char const SYSTEM_TYPE_PROP[] = "system-type";
439static const char const MODEL_PROP[] = "Model";
440//netkas
441static charBOOT_UUID_PROP[] = "boot-uuid";
442static charuuidStr[64]; //Azi: also declared on options.c (processBootOptions)
443
444static charDEV_PATH_SUP[] = "DevicePathsSupported";
445static uint32_tDevPathSup = 1;
446//DHP
447//static EFI_UINT8 const BOOT_ARGS[] = { 0x00 };
448static EFI_UINT8 constBOOT_FILE_PATH[] =
449{
4500x04, 0x04, 0x50, 0x00, 0x5c, 0x00, 0x53, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00,
4510x65, 0x00, 0x6d, 0x00, 0x5c, 0x00, 0x4c, 0x00, 0x69, 0x00, 0x62, 0x00, 0x72, 0x00,
4520x61, 0x00, 0x72, 0x00, 0x79, 0x00, 0x5c, 0x00, 0x43, 0x00, 0x6f, 0x00, 0x72, 0x00,
4530x65, 0x00, 0x53, 0x00, 0x65, 0x00, 0x72, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00,
4540x65, 0x00, 0x73, 0x00, 0x5c, 0x00, 0x62, 0x00, 0x6f, 0x00, 0x6f, 0x00, 0x74, 0x00,
4550x2e, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x00, 0x00, 0x7f, 0xff, 0x04, 0x00
456};
457static EFI_UINT8 const MACHINE_SIGNATURE[] = { 0x00, 0x00, 0x00, 0x00 };
458
459/*
460 * Get an smbios option string option to convert to EFI_CHAR16 string
461 */
462static EFI_CHAR16* getSmbiosChar16(const char * key, size_t* len)
463{
464const char*src = getStringForKey(key, &bootInfo->smbiosConfig);
465EFI_CHAR16* dst = 0;
466size_t i = 0;
467
468if (!key || !(*key) || !len || !src) return 0;
469
470*len = strlen(src);
471dst = (EFI_CHAR16*) malloc( ((*len)+1) * 2 );
472for (; i < (*len); i++) dst[i] = src[i];
473dst[(*len)] = '\0';
474*len = ((*len)+1)*2; // return the CHAR16 bufsize including zero terminated CHAR16
475return dst;
476}
477
478/*
479 * Get the SystemID from the bios dmi info
480 */
481staticEFI_CHAR8* getSmbiosUUID()
482{
483static EFI_CHAR8 uuid[UUID_LEN];
484int i, isZero, isOnes;
485//struct SMBEntryPoint*smbios;
486SMBByte*p;
487
488//smbios = getSmbios(SMBIOS_PATCHED); // checks for _SM_ anchor and table header checksum
489//if (smbios==NULL) return 0; // getSmbios() return a non null value if smbios is found
490
491//p = (SMBByte*) FindFirstDmiTableOfType(1, 0x19); // Type 1: (3.3.2) System Information
492p = (SMBByte*)Platform.UUID;
493//if (p == NULL) return NULL;
494
495//verbose("Found SMBIOS System Information Table 1\n");
496//p += 8;
497
498for (i=0, isZero=1, isOnes=1; i<UUID_LEN; i++)
499{
500if (p[i] != 0x00) isZero = 0;
501if (p[i] != 0xff) isOnes = 0;
502}
503
504if (isZero || isOnes) // empty or setable means: no uuid present
505{
506verbose("No UUID present in SMBIOS System Information Table\n");
507return 0;
508}
509
510memcpy(uuid, p, UUID_LEN);
511return uuid;
512}
513
514/*
515 * return a binary UUID value from SystemId=<uuid> if found,
516 * or from the bios if not, or from a fixed value if no bios value is found
517 */
518static EFI_CHAR8* getSystemID()
519{
520// unable to determine UUID for host. Error: 35 fix
521const char *sysId = getStringForKey(kSystemIDKey, &bootInfo->bootConfig);
522EFI_CHAR8* ret = getUUIDFromString(sysId);
523
524if (!sysId || !ret) // try bios dmi info UUID extraction
525{
526ret = getSmbiosUUID();
527sysId = 0;
528}
529
530if (!ret) // no bios dmi UUID available, set a fixed value for system-id
531ret = getUUIDFromString((sysId = (const char*) SYSTEM_ID));
532
533// apply a nice formatting to the displayed output
534verbose("Customizing SystemID with : %s\n", getStringFromUUID(ret));
535return ret;
536}
537
538/*
539 * Must be called AFTER setup Acpi because we need to take care of correct
540 * facp content to reflect in ioregs
541 */
542void setupSystemType()
543{
544Node *node = DT__FindNode("/", false);
545if (node == 0) stop("Couldn't get root node");
546// we need to write this property after facp parsing
547// Export system-type only if it has been overrriden by the SystemType option
548DT__AddProperty(node, SYSTEM_TYPE_PROP, sizeof(Platform.Type), &Platform.Type);
549}
550
551void setupEfiDeviceTree(void)
552{
553 EFI_CHAR8* ret = 0;
554EFI_CHAR16* ret16 = 0;
555size_t len = 0;
556Node*node;
557
558node = DT__FindNode("/", false);
559
560if (node == 0) stop("Couldn't get root node");
561
562//Azi: "needed" on Lion; geekbench report: ?p?le Inc. Mac-F227BEC8 5.00
563// it's catching stuff from the real board --> (5.00) - DHP ??
564const char *boardID = getStringForKey("SMboardproduct", &bootInfo->smbiosConfig);
565if (boardID) DT__AddProperty(node, "board-id", strlen(boardID) + 1, (EFI_CHAR16*)boardID);
566
567// We could also just do DT__FindNode("/efi/platform", true)
568// But I think eventually we want to fill stuff in the efi node
569// too so we might as well create it so we have a pointer for it too.
570node = DT__AddChild(node, "efi");
571
572if (archCpuType == CPU_TYPE_I386)
573{
574DT__AddProperty(node, FIRMWARE_ABI_PROP, sizeof(FIRMWARE_ABI_32_PROP_VALUE), (char*)FIRMWARE_ABI_32_PROP_VALUE);
575}
576else
577{
578DT__AddProperty(node, FIRMWARE_ABI_PROP, sizeof(FIRMWARE_ABI_64_PROP_VALUE), (char*)FIRMWARE_ABI_64_PROP_VALUE);
579}
580
581 DT__AddProperty(node, FIRMWARE_REVISION_PROP, sizeof(FIRMWARE_REVISION), (EFI_UINT32*)&FIRMWARE_REVISION);
582DT__AddProperty(node, FIRMWARE_VENDOR_PROP, sizeof(FIRMWARE_VENDOR), (EFI_CHAR16*)FIRMWARE_VENDOR);
583
584// TODO: Fill in other efi properties if necessary
585
586// Set up the /efi/runtime-services table node similar to the way a child node of configuration-table
587// is set up. That is, name and table properties
588Node *runtimeServicesNode = DT__AddChild(node, "runtime-services");
589
590 if (archCpuType == CPU_TYPE_I386)
591{
592// The value of the table property is the 32-bit physical address for the RuntimeServices table.
593// Since the EFI system table already has a pointer to it, we simply use the address of that pointer
594// for the pointer to the property data. Warning.. DT finalization calls free on that but we're not
595// the only thing to use a non-malloc'd pointer for something in the DT
596
597DT__AddProperty(runtimeServicesNode, "table", sizeof(uint64_t), &gST32->RuntimeServices);
598}
599else
600{
601DT__AddProperty(runtimeServicesNode, "table", sizeof(uint64_t), &gST64->RuntimeServices);
602}
603
604 // Set up the /efi/configuration-table node which will eventually have several child nodes for
605// all of the configuration tables needed by various kernel extensions.
606gEfiConfigurationTableNode = DT__AddChild(node, "configuration-table");
607
608// Now fill in the /efi/platform Node
609Node *efiPlatformNode = DT__AddChild(node, "platform");
610
611// NOTE WELL: If you do add FSB Frequency detection, make sure to store
612// the value in the fsbFrequency global and not an malloc'd pointer
613// because the DT_AddProperty function does not copy its args.
614
615// Export FSB, TSC and CPU frequencies for use by the kernel or KEXTs
616if (Platform.CPU.FSBFrequency != 0)
617DT__AddProperty(efiPlatformNode, FSB_Frequency_prop, sizeof(uint64_t), &Platform.CPU.FSBFrequency);
618/*Azi: TSC & CPU don't show in any Mac dump on this node; doesn't seem "missed" by anything..?!
619if (Platform.CPU.TSCFrequency != 0)
620DT__AddProperty(efiPlatformNode, TSC_Frequency_prop, sizeof(uint64_t), &Platform.CPU.TSCFrequency);
621
622if (Platform.CPU.CPUFrequency != 0)
623DT__AddProperty(efiPlatformNode, CPU_Frequency_prop, sizeof(uint64_t), &Platform.CPU.CPUFrequency);
624*/
625// Export system-id.
626if ((ret = getSystemID()))
627DT__AddProperty(efiPlatformNode, SYSTEM_ID_PROP, UUID_LEN, (EFI_UINT32*) ret);
628
629 // Export SystemSerialNumber if present
630if ((ret16 = getSmbiosChar16("SMserial", &len)))
631DT__AddProperty(efiPlatformNode, SYSTEM_SERIAL_PROP, len, ret16);
632
633// Export Model if present
634//Azi: so far, the only propperty we were using that matters for kernelcache adler creation;
635// it's done too late to be useful on common_boot (reading it from smbios.plist for now).
636// Note: SMproductname seems to not be taken in account when creating adler on Tiger & Leo.
637if ((ret16 = getSmbiosChar16("SMproductname", &len)))
638DT__AddProperty(efiPlatformNode, MODEL_PROP, len, ret16);//***
639
640// Satisfying AppleACPIPlatform.kext - DHP (Lion?)
641DT__AddProperty(efiPlatformNode, DEV_PATH_SUP, sizeof(uint32_t), &DevPathSup);
642
643//Azi: nvram stuff
644//static EFI_UINT8 const audioVolume[] = { 0x00 };
645//Node *root = DT__FindNode("/AppleEFIRuntime", false);
646//Node *nvramNode = DT__AddChild(root, "AppleEFINVRAM");
647//Node *nvramNode = DT__FindNode("/options", true);
648//DT__AddProperty(nvramNode, "SystemAudioVolume", sizeof(audioVolume), &audioVolume);
649
650// options (AppleEFINVRAM) node can't be created by the booter!
651// http://forum.voodooprojects.org/index.php/topic,200.msg668.html#msg668
652// Even with AppleEFINVRAM disabled, creating the node with the booter, causes
653// uuid "00000000-0000-1000-8000-suxyzwkvsger" to be added to it and used by the system
654// as Platform uuid. It seems this was normal on some older Mac's!?
655
656//Azi: chosen stuff - move when complete?
657// node created on bootstruct.c (initKernBootStruct) while creating /chosen/memory-map
658Node *chosenNode = DT__FindNode("/chosen", false);
659
660//Azi: keep?.. all Mac dumps show 0x00...
661//DT__AddProperty(chosenNode, "boot-args", sizeof(BOOT_ARGS), &BOOT_ARGS);
662DT__AddProperty(chosenNode, "boot-args", sizeof(bootArgs->CommandLine), &bootArgs->CommandLine);
663
664// Adding the root path for kextcache. - DHP
665//DT__AddProperty(chosenNode, "boot-device-path", 38, ((gPlatform.OSType & 3) == 3)
666//? "\\boot.efi" : "\\System\\Library\\CoreServices\\boot.efi");
667//Azi: this data seems to be "machine specific"!?
668DT__AddProperty(chosenNode, "boot-device-path", 38, "\\System\\Library\\CoreServices\\boot.efi");//***
669
670// Adding the kernel name (default = mach_kernel); used on kernelcache adler creation.
671DT__AddProperty(chosenNode, "boot-file", sizeof(bootInfo->bootFile), bootInfo->bootFile);//***
672
673//***: these seem to be the only ones that influence kernelcache adler creation (Snow).
674
675DT__AddProperty(chosenNode, "boot-file-path", sizeof(BOOT_FILE_PATH), &BOOT_FILE_PATH);
676
677// rooting via boot-uuid from /chosen: ...
678if (gBootVolume->fs_getuuid && gBootVolume->fs_getuuid (gBootVolume, uuidStr) == 0)
679{
680DT__AddProperty(chosenNode, BOOT_UUID_PROP, 64, uuidStr);
681}
682
683DT__AddProperty(chosenNode, "machine-signature", sizeof(MACHINE_SIGNATURE), &MACHINE_SIGNATURE);
684
685// Fill /efi/device-properties node.
686setupDeviceProperties(node);
687}
688
689/*
690 * Load the smbios.plist override config file if any
691 */
692//static - testing earlier load of smbios.plist (read below)
693void setupSmbiosConfigFile(const char *filename)
694{
695chardirSpecSMBIOS[128] = "";
696const char *override_pathname = NULL;
697intlen = 0, fd = 0;
698//extern void scan_mem();
699
700// Take in account user overriding
701// also doesn't work ??????? damn it! :(
702if (getValueForKey(kSMBIOSKey, &override_pathname, &len, &bootInfo->bootConfig))
703{
704// Specify a path to a file, e.g. SMBIOS=/Extra/macProXY.plist
705strcpy(dirSpecSMBIOS, override_pathname);
706fd = loadConfigFile(dirSpecSMBIOS, &bootInfo->smbiosConfig);
707if (fd >= 0) goto success_fd;
708}
709
710// Check rd's root.
711sprintf(dirSpecSMBIOS, "rd(0,0)/%s", filename);
712fd = loadConfigFile(dirSpecSMBIOS, &bootInfo->smbiosConfig);
713if (fd >= 0) goto success_fd;
714
715// Check booter volume/rdbt for specific OS folders.
716sprintf(dirSpecSMBIOS, "bt(0,0)/Extra/%s/%s", &gMacOSVersion, filename);
717fd = loadConfigFile(dirSpecSMBIOS, &bootInfo->smbiosConfig);
718if (fd >= 0) goto success_fd;
719
720// Check booter volume/rdbt Extra.
721sprintf(dirSpecSMBIOS, "bt(0,0)/Extra/%s", filename);
722fd = loadConfigFile(dirSpecSMBIOS, &bootInfo->smbiosConfig);
723//if (fd >= 0) goto success_fd;
724
725success_fd:
726//if (loadConfigFile(dirSpecSMBIOS, &bootInfo->smbiosConfig) == -1) //Azi: causes double print.
727if (fd >= 0)
728verbose("SMBIOS replacement found and loaded.\n");
729else
730verbose("No SMBIOS replacement provided.\n");
731
732// get a chance to scan mem dynamically if user asks for it while having the config options
733// loaded as well, as opposed to when it was in scan_platform(); also load the orig. smbios
734// so that we can access dmi info, without patching the smbios yet.
735//getSmbios(SMBIOS_ORIGINAL);
736//scan_mem(); //Azi: moved to setupFakeEfi, testing early load of smbios.plist to set
737//SMproductname & SMboardproduct for ioreg injection (kernelcache(adler) & Lion?)
738//smbios_p = (EFI_PTR32)getSmbios(SMBIOS_PATCHED);// process smbios asap
739}
740
741/*
742 * Installs all the needed configuration table entries
743 */
744static void setupEfiConfigurationTable()
745{
746smbios_p = (EFI_PTR32)getSmbios(SMBIOS_PATCHED);
747addConfigurationTable(&gEfiSmbiosTableGuid, &smbios_p, NULL); //Azi: add alias back??
748
749// Setup ACPI with DSDT overrides (mackerintel's patch)
750setupAcpi();
751
752// We've obviously changed the count.. so fix up the CRC32
753if (archCpuType == CPU_TYPE_I386)
754{
755gST32->Hdr.CRC32 = 0;
756gST32->Hdr.CRC32 = crc32(0L, gST32, gST32->Hdr.HeaderSize);
757}
758else
759{
760gST64->Hdr.CRC32 = 0;
761gST64->Hdr.CRC32 = crc32(0L, gST64, gST64->Hdr.HeaderSize);
762}
763}
764
765/**
766what for ??
767*/
768void saveOriginalSMBIOS(void)
769{
770Node *node;
771SMBEntryPoint *origeps;
772void *tableAddress;
773
774node = DT__FindNode("/efi/platform", false);
775if (!node)
776{
777verbose("/efi/platform node not found\n");
778return;
779}
780
781origeps = getSmbios(SMBIOS_ORIGINAL);
782if (!origeps)
783{
784return;
785}
786
787tableAddress = (void *)AllocateKernelMemory(origeps->dmi.tableLength);
788if (!tableAddress)
789{
790return;
791}
792
793memcpy(tableAddress, (void *)origeps->dmi.tableAddress, origeps->dmi.tableLength);
794DT__AddProperty(node, "SMBIOS", origeps->dmi.tableLength, tableAddress);
795}
796
797/*
798 * Entrypoint from boot.c
799 */
800void setupFakeEfi(void)
801{
802extern void scan_mem();
803
804// Generate efi device strings
805setup_pci_devs(root_pci_dev);
806
807readSMBIOSInfo(getSmbios(SMBIOS_ORIGINAL));
808
809// load smbios.plist file if any
810//setupSmbiosConfigFile("SMBIOS.plist");
811scan_mem();
812
813setupSMBIOSTable();
814
815// Initialize the base table
816if (archCpuType == CPU_TYPE_I386)
817{
818setupEfiTables32();
819}
820else
821{
822setupEfiTables64();
823}
824
825// Initialize the device tree
826setupEfiDeviceTree();
827
828saveOriginalSMBIOS();
829
830// Add configuration table entries to both the services table and the device tree
831setupEfiConfigurationTable();
832}
833
834

Archive Download this file

Revision: 1031