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.
265//Azi: bootargs
266bootArgs->efiSystemTable = (uint32_t)efiSystemTable;
267bootArgs->efiMode = kBootArgsEfiMode32;
268
269// The bootArgs structure as a whole is bzero'd so we don't need to fill in
270// things like efiRuntimeServices* and what not.
271//
272// In fact, the only code that seems to use that is the hibernate code so it
273// knows not to save the pages. It even checks to make sure its nonzero.
274}
275
276void setupEfiTables64(void)
277{
278struct fake_efi_pages
279{
280EFI_SYSTEM_TABLE_64 efiSystemTable;
281EFI_RUNTIME_SERVICES_64 efiRuntimeServices;
282EFI_CONFIGURATION_TABLE_64 efiConfigurationTable[MAX_CONFIGURATION_TABLE_ENTRIES];
283EFI_CHAR16 firmwareVendor[sizeof(FIRMWARE_VENDOR)/sizeof(EFI_CHAR16)];
284uint8_t voidret_instructions[sizeof(VOIDRET_INSTRUCTIONS)/sizeof(uint8_t)];
285uint8_t unsupportedret_instructions[sizeof(UNSUPPORTEDRET_INSTRUCTIONS)/sizeof(uint8_t)];
286};
287
288struct fake_efi_pages *fakeEfiPages = (struct fake_efi_pages*)AllocateKernelMemory(sizeof(struct fake_efi_pages));
289
290// Zero out all the tables in case fields are added later
291bzero(fakeEfiPages, sizeof(struct fake_efi_pages));
292
293// --------------------------------------------------------------------
294// Initialize some machine code that will return EFI_UNSUPPORTED for
295// functions returning int and simply return for void functions.
296memcpy(fakeEfiPages->voidret_instructions, VOIDRET_INSTRUCTIONS, sizeof(VOIDRET_INSTRUCTIONS));
297memcpy(fakeEfiPages->unsupportedret_instructions, UNSUPPORTEDRET_INSTRUCTIONS, sizeof(UNSUPPORTEDRET_INSTRUCTIONS));
298
299// --------------------------------------------------------------------
300// System table
301EFI_SYSTEM_TABLE_64 *efiSystemTable = gST64 = &fakeEfiPages->efiSystemTable;
302efiSystemTable->Hdr.Signature = EFI_SYSTEM_TABLE_SIGNATURE;
303efiSystemTable->Hdr.Revision = EFI_SYSTEM_TABLE_REVISION;
304efiSystemTable->Hdr.HeaderSize = sizeof(EFI_SYSTEM_TABLE_64);
305efiSystemTable->Hdr.CRC32 = 0; // Initialize to zero and then do CRC32
306efiSystemTable->Hdr.Reserved = 0;
307
308efiSystemTable->FirmwareVendor = ptov64((EFI_PTR32)&fakeEfiPages->firmwareVendor);
309memcpy(fakeEfiPages->firmwareVendor, FIRMWARE_VENDOR, sizeof(FIRMWARE_VENDOR));
310efiSystemTable->FirmwareRevision = FIRMWARE_REVISION;
311
312// XXX: We may need to have basic implementations of ConIn/ConOut/StdErr
313// The EFI spec states that all handles are invalid after boot services have been
314// exited so we can probably get by with leaving the handles as zero.
315efiSystemTable->ConsoleInHandle = 0;
316efiSystemTable->ConIn = 0;
317
318efiSystemTable->ConsoleOutHandle = 0;
319efiSystemTable->ConOut = 0;
320
321efiSystemTable->StandardErrorHandle = 0;
322efiSystemTable->StdErr = 0;
323
324efiSystemTable->RuntimeServices = ptov64((EFI_PTR32)&fakeEfiPages->efiRuntimeServices);
325// According to the EFI spec, BootServices aren't valid after the
326// boot process is exited so we can probably do without it.
327// Apple didn't provide a definition for it in pexpert/i386/efi.h
328// so I'm guessing they don't use it.
329efiSystemTable->BootServices = 0;
330
331efiSystemTable->NumberOfTableEntries = 0;
332efiSystemTable->ConfigurationTable = ptov64((EFI_PTR32)fakeEfiPages->efiConfigurationTable);
333
334// We're done.Now CRC32 the thing so the kernel will accept it
335gST64->Hdr.CRC32 = crc32(0L, gST64, gST64->Hdr.HeaderSize);
336
337// --------------------------------------------------------------------
338// Runtime services
339EFI_RUNTIME_SERVICES_64 *efiRuntimeServices = &fakeEfiPages->efiRuntimeServices;
340efiRuntimeServices->Hdr.Signature = EFI_RUNTIME_SERVICES_SIGNATURE;
341efiRuntimeServices->Hdr.Revision = EFI_RUNTIME_SERVICES_REVISION;
342efiRuntimeServices->Hdr.HeaderSize = sizeof(EFI_RUNTIME_SERVICES_64);
343efiRuntimeServices->Hdr.CRC32 = 0;
344efiRuntimeServices->Hdr.Reserved = 0;
345
346// There are a number of function pointers in the efiRuntimeServices table.
347// These are the Foundation (e.g. core) services and are expected to be present on
348// all EFI-compliant machines.Some kernel extensions (notably AppleEFIRuntime)
349// will call these without checking to see if they are null.
350//
351// We don't really feel like doing an EFI implementation in the bootloader
352// but it is nice if we can at least prevent a complete crash by
353// at least providing some sort of implementation until one can be provided
354// nicely in a kext.
355
356void (*voidret_fp)() = (void*)fakeEfiPages->voidret_instructions;
357void (*unsupportedret_fp)() = (void*)fakeEfiPages->unsupportedret_instructions;
358efiRuntimeServices->GetTime = ptov64((EFI_PTR32)unsupportedret_fp);
359efiRuntimeServices->SetTime = ptov64((EFI_PTR32)unsupportedret_fp);
360efiRuntimeServices->GetWakeupTime = ptov64((EFI_PTR32)unsupportedret_fp);
361efiRuntimeServices->SetWakeupTime = ptov64((EFI_PTR32)unsupportedret_fp);
362efiRuntimeServices->SetVirtualAddressMap = ptov64((EFI_PTR32)unsupportedret_fp);
363efiRuntimeServices->ConvertPointer = ptov64((EFI_PTR32)unsupportedret_fp);
364efiRuntimeServices->GetVariable = ptov64((EFI_PTR32)unsupportedret_fp);
365efiRuntimeServices->GetNextVariableName = ptov64((EFI_PTR32)unsupportedret_fp);
366efiRuntimeServices->SetVariable = ptov64((EFI_PTR32)unsupportedret_fp);
367efiRuntimeServices->GetNextHighMonotonicCount = ptov64((EFI_PTR32)unsupportedret_fp);
368efiRuntimeServices->ResetSystem = ptov64((EFI_PTR32)voidret_fp);
369
370// We're done.Now CRC32 the thing so the kernel will accept it
371efiRuntimeServices->Hdr.CRC32 = crc32(0L, efiRuntimeServices, efiRuntimeServices->Hdr.HeaderSize);
372
373// --------------------------------------------------------------------
374// Finish filling in the rest of the boot args that we need.
375//Azi: bootargs
376bootArgs->efiSystemTable = (uint32_t)efiSystemTable;
377bootArgs->efiMode = kBootArgsEfiMode64;
378
379// The bootArgs structure as a whole is bzero'd so we don't need to fill in
380// things like efiRuntimeServices* and what not.
381//
382// In fact, the only code that seems to use that is the hibernate code so it
383// knows not to save the pages. It even checks to make sure its nonzero.
384}
385
386/*
387 * In addition to the EFI tables there is also the EFI device tree node.
388 * In particular, we need /efi/platform to have an FSBFrequency key. Without it,
389 * the tsc_init function will panic very early on in kernel startup, before
390 * the console is available.
391 */
392
393/*==========================================================================
394 * FSB Frequency detection
395 */
396
397/* These should be const but DT__AddProperty takes char* */
398static const char const TSC_Frequency_prop[] = "TSCFrequency";
399static const char const FSB_Frequency_prop[] = "FSBFrequency";
400static const char const CPU_Frequency_prop[] = "CPUFrequency";
401
402/*==========================================================================
403 * SMBIOS
404 */
405
406/* From Foundation/Efi/Guid/Smbios/SmBios.c */
407EFI_GUID const gEfiSmbiosTableGuid = EFI_SMBIOS_TABLE_GUID;
408
409#define SMBIOS_RANGE_START 0x000F0000
410#define SMBIOS_RANGE_END 0x000FFFFF
411
412/* '_SM_' in little endian: */
413#define SMBIOS_ANCHOR_UINT32_LE 0x5f4d535f
414
415#define EFI_ACPI_TABLE_GUID \
416 { \
417 0xeb9d2d30, 0x2d88, 0x11d3, { 0x9a, 0x16, 0x0, 0x90, 0x27, 0x3f, 0xc1, 0x4d } \
418 }
419
420#define EFI_ACPI_20_TABLE_GUID \
421 { \
422 0x8868e871, 0xe4f1, 0x11d3, { 0xbc, 0x22, 0x0, 0x80, 0xc7, 0x3c, 0x88, 0x81 } \
423 }
424
425EFI_GUID gEfiAcpiTableGuid = EFI_ACPI_TABLE_GUID;
426EFI_GUID gEfiAcpi20TableGuid = EFI_ACPI_20_TABLE_GUID;
427
428
429/*==========================================================================
430 * Fake EFI implementation
431 */
432
433/* These should be const but DT__AddProperty takes char* */
434static const char const FIRMWARE_REVISION_PROP[] = "firmware-revision";
435static const char const FIRMWARE_ABI_PROP[] = "firmware-abi";
436static const char const FIRMWARE_VENDOR_PROP[] = "firmware-vendor";
437static const char const FIRMWARE_ABI_32_PROP_VALUE[] = "EFI32";
438static const char const FIRMWARE_ABI_64_PROP_VALUE[] = "EFI64";
439static const char const SYSTEM_ID_PROP[] = "system-id";
440static const char const SYSTEM_SERIAL_PROP[] = "SystemSerialNumber";
441static const char const SYSTEM_TYPE_PROP[] = "system-type";
442static const char const MODEL_PROP[] = "Model";
443//netkas
444static charBOOT_UUID_PROP[] = "boot-uuid";
445static charuuidStr[64]; //Azi: also declared on options.c (processBootOptions)
446
447static charDEV_PATH_SUP[] = "DevicePathsSupported";
448static uint32_tDevPathSup = 1;
449//DHP
450//static EFI_UINT8 const BOOT_ARGS[] = { 0x00 };
451static EFI_UINT8 constBOOT_FILE_PATH[] =
452{
4530x04, 0x04, 0x50, 0x00, 0x5c, 0x00, 0x53, 0x00, 0x79, 0x00, 0x73, 0x00, 0x74, 0x00,
4540x65, 0x00, 0x6d, 0x00, 0x5c, 0x00, 0x4c, 0x00, 0x69, 0x00, 0x62, 0x00, 0x72, 0x00,
4550x61, 0x00, 0x72, 0x00, 0x79, 0x00, 0x5c, 0x00, 0x43, 0x00, 0x6f, 0x00, 0x72, 0x00,
4560x65, 0x00, 0x53, 0x00, 0x65, 0x00, 0x72, 0x00, 0x76, 0x00, 0x69, 0x00, 0x63, 0x00,
4570x65, 0x00, 0x73, 0x00, 0x5c, 0x00, 0x62, 0x00, 0x6f, 0x00, 0x6f, 0x00, 0x74, 0x00,
4580x2e, 0x00, 0x65, 0x00, 0x66, 0x00, 0x69, 0x00, 0x00, 0x00, 0x7f, 0xff, 0x04, 0x00
459};
460static EFI_UINT8 const MACHINE_SIGNATURE[] = { 0x00, 0x00, 0x00, 0x00 };
461
462
463
464/*
465 * Get an smbios option string option to convert to EFI_CHAR16 string
466 */
467
468static EFI_CHAR16* getSmbiosChar16(const char * key, size_t* len)
469{
470const char*src = getStringForKey(key, &bootInfo->smbiosConfig);
471EFI_CHAR16* dst = 0;
472size_t i = 0;
473
474if (!key || !(*key) || !len || !src) return 0;
475
476*len = strlen(src);
477dst = (EFI_CHAR16*) malloc( ((*len)+1) * 2 );
478for (; i < (*len); i++) dst[i] = src[i];
479dst[(*len)] = '\0';
480*len = ((*len)+1)*2; // return the CHAR16 bufsize including zero terminated CHAR16
481return dst;
482}
483
484/*
485 * Get the SystemID from the bios dmi info
486 */
487
488staticEFI_CHAR8* getSmbiosUUID()
489{
490static EFI_CHAR8 uuid[UUID_LEN];
491int i, isZero, isOnes;
492//struct SMBEntryPoint*smbios;
493SMBByte*p;
494
495//smbios = getSmbios(SMBIOS_PATCHED); // checks for _SM_ anchor and table header checksum
496//if (smbios==NULL) return 0; // getSmbios() return a non null value if smbios is found
497
498//p = (SMBByte*) FindFirstDmiTableOfType(1, 0x19); // Type 1: (3.3.2) System Information
499p = (SMBByte*)Platform.UUID;
500//if (p == NULL) return NULL;
501
502//verbose("Found SMBIOS System Information Table 1\n");
503//p += 8;
504
505for (i=0, isZero=1, isOnes=1; i<UUID_LEN; i++)
506{
507if (p[i] != 0x00) isZero = 0;
508if (p[i] != 0xff) isOnes = 0;
509}
510
511if (isZero || isOnes) // empty or setable means: no uuid present
512{
513verbose("No UUID present in SMBIOS System Information Table\n");
514return 0;
515}
516
517memcpy(uuid, p, UUID_LEN);
518return uuid;
519}
520
521/*
522 * return a binary UUID value from SystemId=<uuid> if found,
523 * or from the bios if not, or from a fixed value if no bios value is found
524 */
525
526static EFI_CHAR8* getSystemID()
527{
528// unable to determine UUID for host. Error: 35 fix
529const char *sysId = getStringForKey(kSystemIDKey, &bootInfo->bootConfig);
530EFI_CHAR8* ret = getUUIDFromString(sysId);
531
532if (!sysId || !ret) // try bios dmi info UUID extraction
533{
534ret = getSmbiosUUID();
535sysId = 0;
536}
537
538if (!ret) // no bios dmi UUID available, set a fixed value for system-id
539ret=getUUIDFromString((sysId = (const char*) SYSTEM_ID));
540
541// apply a nice formatting to the displayed output
542verbose("Customizing SystemID with : %s\n", getStringFromUUID(ret));
543return ret;
544}
545
546/*
547 * Must be called AFTER setup Acpi because we need to take care of correct
548 * facp content to reflect in ioregs
549 */
550
551void setupSystemType()
552{
553Node *node = DT__FindNode("/", false);
554if (node == 0) stop("Couldn't get root node");
555// we need to write this property after facp parsing
556// Export system-type only if it has been overrriden by the SystemType option
557DT__AddProperty(node, SYSTEM_TYPE_PROP, sizeof(Platform.Type), &Platform.Type);
558}
559
560void setupEfiDeviceTree(void)
561{
562 EFI_CHAR8* ret = 0;
563EFI_CHAR16* ret16 = 0;
564size_t len = 0;
565Node*node;
566
567node = DT__FindNode("/", false);
568
569if (node == 0) stop("Couldn't get root node");
570
571//Azi: "needed" on Lion; geekbench report: ?p?le Inc. Mac-F227BEC8 5.00
572// it's catching stuff from the real board --> (5.00) - DHP ??
573const char *boardID = getStringForKey("SMboardproduct", &bootInfo->smbiosConfig);
574if (boardID) DT__AddProperty(node, "board-id", strlen(boardID) + 1, (EFI_CHAR16*)boardID);
575
576// We could also just do DT__FindNode("/efi/platform", true)
577// But I think eventually we want to fill stuff in the efi node
578// too so we might as well create it so we have a pointer for it too.
579node = DT__AddChild(node, "efi");
580
581if (archCpuType == CPU_TYPE_I386)
582{
583DT__AddProperty(node, FIRMWARE_ABI_PROP, sizeof(FIRMWARE_ABI_32_PROP_VALUE), (char*)FIRMWARE_ABI_32_PROP_VALUE);
584}
585else
586{
587DT__AddProperty(node, FIRMWARE_ABI_PROP, sizeof(FIRMWARE_ABI_64_PROP_VALUE), (char*)FIRMWARE_ABI_64_PROP_VALUE);
588}
589
590 DT__AddProperty(node, FIRMWARE_REVISION_PROP, sizeof(FIRMWARE_REVISION), (EFI_UINT32*)&FIRMWARE_REVISION);
591DT__AddProperty(node, FIRMWARE_VENDOR_PROP, sizeof(FIRMWARE_VENDOR), (EFI_CHAR16*)FIRMWARE_VENDOR);
592
593// TODO: Fill in other efi properties if necessary
594
595// Set up the /efi/runtime-services table node similar to the way a child node of configuration-table
596// is set up. That is, name and table properties
597Node *runtimeServicesNode = DT__AddChild(node, "runtime-services");
598
599 if (archCpuType == CPU_TYPE_I386)
600{
601// The value of the table property is the 32-bit physical address for the RuntimeServices table.
602// Since the EFI system table already has a pointer to it, we simply use the address of that pointer
603// for the pointer to the property data. Warning.. DT finalization calls free on that but we're not
604// the only thing to use a non-malloc'd pointer for something in the DT
605
606DT__AddProperty(runtimeServicesNode, "table", sizeof(uint64_t), &gST32->RuntimeServices);
607}
608else
609{
610DT__AddProperty(runtimeServicesNode, "table", sizeof(uint64_t), &gST64->RuntimeServices);
611}
612
613 // Set up the /efi/configuration-table node which will eventually have several child nodes for
614// all of the configuration tables needed by various kernel extensions.
615gEfiConfigurationTableNode = DT__AddChild(node, "configuration-table");
616
617// Now fill in the /efi/platform Node
618Node *efiPlatformNode = DT__AddChild(node, "platform");
619
620// NOTE WELL: If you do add FSB Frequency detection, make sure to store
621// the value in the fsbFrequency global and not an malloc'd pointer
622// because the DT_AddProperty function does not copy its args.
623
624// Export FSB, TSC and CPU frequencies for use by the kernel or KEXTs
625if (Platform.CPU.FSBFrequency != 0)
626DT__AddProperty(efiPlatformNode, FSB_Frequency_prop, sizeof(uint64_t), &Platform.CPU.FSBFrequency);
627/*Azi: TSC & CPU don't show in any Mac dump (snow) i own in efiPlatformNode!!??? disable?
628if (Platform.CPU.TSCFrequency != 0)
629DT__AddProperty(efiPlatformNode, TSC_Frequency_prop, sizeof(uint64_t), &Platform.CPU.TSCFrequency);
630
631if (Platform.CPU.CPUFrequency != 0)
632DT__AddProperty(efiPlatformNode, CPU_Frequency_prop, sizeof(uint64_t), &Platform.CPU.CPUFrequency);
633*/
634// Export system-id.
635if ((ret = getSystemID()))
636DT__AddProperty(efiPlatformNode, SYSTEM_ID_PROP, UUID_LEN, (EFI_UINT32*) ret);
637
638 // Export SystemSerialNumber if present
639if ((ret16 = getSmbiosChar16("SMserial", &len)))
640DT__AddProperty(efiPlatformNode, SYSTEM_SERIAL_PROP, len, ret16);
641//Azi: this is done too late for kc adler generation... hum
642// Export Model if present
643if ((ret16 = getSmbiosChar16("SMproductname", &len)))
644DT__AddProperty(efiPlatformNode, MODEL_PROP, len, ret16);//*****
645//*****: these seem the only ones that influence KC adler creation, specialy the one above...
646
647//Azi: ?number? of supported device paths
648// Satisfying AppleACPIPlatform.kext - DHP
649DT__AddProperty(efiPlatformNode, DEV_PATH_SUP, sizeof(uint32_t), &DevPathSup);
650//Azi: nvram shit...
651//static EFI_UINT8 const audioVolume[] = { 0x00 };
652//Node *root = DT__FindNode("/AppleEFIRuntime", false);
653//Node *nvramNode = DT__AddChild(root, "AppleEFINVRAM");
654//Node *nvramNode = DT__FindNode("/options", true);
655//DT__AddProperty(nvramNode, "SystemAudioVolume", sizeof(audioVolume), &audioVolume);
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//DT__AddProperty(chosenNode, "boot-args", sizeof(BOOT_ARGS), &BOOT_ARGS);
661DT__AddProperty(chosenNode, "boot-args", sizeof(bootArgs->CommandLine), &bootArgs->CommandLine); //Azi: keep ??
662
663// Adding the root path for kextcache. - DHP
664//DT__AddProperty(chosenNode, "boot-device-path", 38, ((gPlatform.OSType & 3) == 3)
665//? "\\boot.efi" : "\\System\\Library\\CoreServices\\boot.efi");
666//Azi: this data is not constant on Mac's and it's in "hex" format... investigate*****
667DT__AddProperty(chosenNode, "boot-device-path", 38, "\\System\\Library\\CoreServices\\boot.efi");//*****
668
669// Adding the default kernel name (mach_kernel) for kextcache. - DHP
670DT__AddProperty(chosenNode, "boot-file", sizeof(bootInfo->bootFile), bootInfo->bootFile);//*****
671
672DT__AddProperty(chosenNode, "boot-file-path", sizeof(BOOT_FILE_PATH), &BOOT_FILE_PATH);
673
674// rooting via boot-uuid from /chosen: ...
675if (gBootVolume->fs_getuuid && gBootVolume->fs_getuuid (gBootVolume, uuidStr) == 0)
676{
677DT__AddProperty(chosenNode, BOOT_UUID_PROP, 64, uuidStr);
678}
679
680DT__AddProperty(chosenNode, "machine-signature", sizeof(MACHINE_SIGNATURE), &MACHINE_SIGNATURE);
681//Azi: end chosen stuff
682// Fill /efi/device-properties node.
683setupDeviceProperties(node);
684}
685
686/*
687 * Load the smbios.plist override config file if any
688 */
689
690//static - testing earlier load of smbios.plist (read below)
691void setupSmbiosConfigFile(const char *filename)
692{
693chardirSpecSMBIOS[128] = "";
694const char *override_pathname = NULL;
695intlen = 0, fd = 0;
696//extern void scan_mem();
697
698// Take in account user overriding
699// also doesn't work ??????? damn it! :(
700if (getValueForKey(kSMBIOSKey, &override_pathname, &len, &bootInfo->bootConfig))
701{
702// Specify a path to a file, e.g. SMBIOS=/Extra/macProXY.plist
703strcpy(dirSpecSMBIOS, override_pathname);
704fd = loadConfigFile(dirSpecSMBIOS, &bootInfo->smbiosConfig);
705if (fd >= 0) goto success_fd;
706}
707
708// Check rd's root.
709sprintf(dirSpecSMBIOS, "rd(0,0)/%s", filename);
710fd = loadConfigFile(dirSpecSMBIOS, &bootInfo->smbiosConfig);
711if (fd >= 0) goto success_fd;
712
713// Check booter volume/rdbt for specific OS folders.
714sprintf(dirSpecSMBIOS, "bt(0,0)/Extra/%s/%s", &gMacOSVersion, filename);
715fd = loadConfigFile(dirSpecSMBIOS, &bootInfo->smbiosConfig);
716if (fd >= 0) goto success_fd;
717
718// Check booter volume/rdbt Extra.
719sprintf(dirSpecSMBIOS, "bt(0,0)/Extra/%s", filename);
720fd = loadConfigFile(dirSpecSMBIOS, &bootInfo->smbiosConfig);
721//if (fd >= 0) goto success_fd;
722
723success_fd:
724//if (loadConfigFile(dirSpecSMBIOS, &bootInfo->smbiosConfig) == -1) //Azi: causes double print.
725if (fd >= 0)
726verbose("SMBIOS replacement found and loaded.\n");
727else
728verbose("No SMBIOS replacement provided.\n");
729
730// get a chance to scan mem dynamically if user asks for it while having the config options loaded as well,
731// as opposed to when it was in scan_platform(); also load the orig. smbios so that we can access dmi info without
732// patching the smbios yet
733//getSmbios(SMBIOS_ORIGINAL);
734//scan_mem(); //Azi: moved to setupFakeEfi, testing early load of smbios.plist to set
735//SMproductname & SMboardproduct for ioreg injection (kernelcache(adler) & Lion?)
736//smbios_p = (EFI_PTR32)getSmbios(SMBIOS_PATCHED);// process smbios asap
737}
738
739/*
740 * Installs all the needed configuration table entries
741 */
742
743static void setupEfiConfigurationTable()
744{
745smbios_p = (EFI_PTR32)getSmbios(SMBIOS_PATCHED);
746addConfigurationTable(&gEfiSmbiosTableGuid, &smbios_p, NULL); //Azi: add alias back??
747
748// Setup ACPI with DSDT overrides (mackerintel's patch)
749setupAcpi();
750
751// We've obviously changed the count.. so fix up the CRC32
752if (archCpuType == CPU_TYPE_I386)
753{
754gST32->Hdr.CRC32 = 0;
755gST32->Hdr.CRC32 = crc32(0L, gST32, gST32->Hdr.HeaderSize);
756}
757else
758{
759gST64->Hdr.CRC32 = 0;
760gST64->Hdr.CRC32 = crc32(0L, gST64, gST64->Hdr.HeaderSize);
761}
762}
763
764/**
765what for ??
766**/
767void saveOriginalSMBIOS(void)
768{
769Node *node;
770SMBEntryPoint *origeps;
771void *tableAddress;
772
773node = DT__FindNode("/efi/platform", false);
774if (!node)
775{
776verbose("/efi/platform node not found\n");
777return;
778}
779
780origeps = getSmbios(SMBIOS_ORIGINAL);
781if (!origeps)
782{
783return;
784}
785
786tableAddress = (void *)AllocateKernelMemory(origeps->dmi.tableLength);
787if (!tableAddress)
788{
789return;
790}
791
792memcpy(tableAddress, (void *)origeps->dmi.tableAddress, origeps->dmi.tableLength);
793DT__AddProperty(node, "SMBIOS", origeps->dmi.tableLength, tableAddress);
794}
795
796/*
797 * Entrypoint from boot.c
798 */
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: 847