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

Archive Download this file

Revision: 816