Chameleon

Chameleon Svn Source Tree

Root/trunk/i386/libsaio/fake_efi.c

1
2/*
3 * Copyright 2007 David F. Elliott. All rights reserved.
4 */
5#include "saio_types.h"
6#include "libsaio.h"
7#include "boot.h"
8#include "bootstruct.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.h"
16#include "device_inject.h"
17#include "convert.h"
18#include "pci.h"
19#include "sl.h"
20
21#ifndef DEBUG_EFI
22#define DEBUG_EFI 0
23#endif
24
25#if DEBUG_EFI
26#define DBG(x...)printf(x)
27#else
28#define DBG(x...)
29#endif
30
31extern void setup_pci_devs(pci_dt_t *pci_dt);
32
33/*
34 * Modern Darwin kernels require some amount of EFI because Apple machines all
35 * have EFI. Modifying the kernel source to not require EFI is of course
36 * possible but would have to be maintained as a separate patch because it is
37 * unlikely that Apple wishes to add legacy support to their kernel.
38 *
39 * As you can see from the Apple-supplied code in bootstruct.c, it seems that
40 * the intention was clearly to modify this booter to provide EFI-like structures
41 * to the kernel rather than modifying the kernel to handle non-EFI stuff. This
42 * makes a lot of sense from an engineering point of view as it means the kernel
43 * for the as yet unreleased EFI-only Macs could still be booted by the non-EFI
44 * DTK systems so long as the kernel checked to ensure the boot tables were
45 * filled in appropriately.Modern xnu requires a system table and a runtime
46 * services table and performs no checks whatsoever to ensure the pointers to
47 * these tables are non-NULL. Therefore, any modern xnu kernel will page fault
48 * early on in the boot process if the system table pointer is zero.
49 *
50 * Even before that happens, the tsc_init function in modern xnu requires the FSB
51 * Frequency to be a property in the /efi/platform node of the device tree or else
52 * it panics the bootstrap process very early on.
53 *
54 * As of this writing, the current implementation found here is good enough
55 * to make the currently available xnu kernel boot without modification on a
56 * system with an appropriate processor. With a minor source modification to
57 * the tsc_init function to remove the explicit check for Core or Core 2
58 * processors the kernel can be made to boot on other processors so long as
59 * the code can be executed by the processor and the machine contains the
60 * necessary hardware.
61 */
62
63/*==========================================================================
64 * Utility function to make a device tree string from an EFI_GUID
65 */
66static inline char * mallocStringForGuid(EFI_GUID const *pGuid)
67{
68char *string = malloc(37);
69efi_guid_unparse_upper(pGuid, string);
70return string;
71}
72
73/*==========================================================================
74 * Function to map 32 bit physical address to 64 bit virtual address
75 */
76static uint64_t ptov64(uint32_t addr)
77{
78return ((uint64_t)addr | 0xFFFFFF8000000000ULL);
79}
80
81// ==========================================================================
82
83EFI_UINT32 getCPUTick(void)
84{
85uint32_t out;
86__asm__ volatile (
87"rdtsc\n"
88"shl $32,%%edx\n"
89"or %%edx,%%eax\n"
90: "=a" (out)
91:
92: "%edx"
93);
94return out;
95}
96
97/*==========================================================================
98 * Fake EFI implementation
99 */
100
101/* Identify ourselves as the EFI firmware vendor */
102static EFI_CHAR16 const FIRMWARE_VENDOR[] = {'C','h','a','m','e','l','e','o','n','_','2','.','3', 0};
103// Bungo
104//static EFI_UINT32 const FIRMWARE_REVISION = 132; /* FIXME: Find a constant for this. */
105static EFI_UINT32 const FIRMWARE_REVISION = 0x0001000a; // got from real MBP6,1
106// Bungo
107/* Default platform system_id (fix by IntVar)
108 static EFI_CHAR8 const SYSTEM_ID[] = "0123456789ABCDEF"; //random value gen by uuidgen
109 */
110
111/* Just a ret instruction */
112static uint8_t const VOIDRET_INSTRUCTIONS[] = {0xc3};
113
114/* movl $0x80000003,%eax; ret */
115static uint8_t const UNSUPPORTEDRET_INSTRUCTIONS_32[] = {0xb8, 0x03, 0x00, 0x00, 0x80, 0xc3};
116static uint8_t const UNSUPPORTEDRET_INSTRUCTIONS_64[] = {0x48, 0xb8, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xc3};
117
118EFI_SYSTEM_TABLE_32 *gST32 = NULL;
119EFI_SYSTEM_TABLE_64 *gST64 = NULL;
120Node *gEfiConfigurationTableNode = NULL;
121
122// ==========================================================================
123
124extern EFI_STATUS addConfigurationTable(EFI_GUID const *pGuid, void *table, char const *alias)
125{
126EFI_UINTN i = 0;
127
128//Azi: as is, cpu's with em64t will use EFI64 on pre 10.6 systems,
129// wich seems to cause no problem. In case it does, force i386 arch.
130if (archCpuType == CPU_TYPE_I386)
131{
132i = gST32->NumberOfTableEntries;
133}
134else
135{
136i = gST64->NumberOfTableEntries;
137}
138
139// We only do adds, not modifications and deletes like InstallConfigurationTable
140if (i >= MAX_CONFIGURATION_TABLE_ENTRIES)
141{
142stop("Fake EFI [ERROR]: Ran out of space for configuration tables [%d]. Increase the reserved size in the code.\n", i);
143}
144
145if (pGuid == NULL)
146{
147return EFI_INVALID_PARAMETER;
148}
149
150if (table != NULL)
151{
152// FIXME
153//((EFI_CONFIGURATION_TABLE_64 *)gST->ConfigurationTable)[i].VendorGuid = *pGuid;
154//((EFI_CONFIGURATION_TABLE_64 *)gST->ConfigurationTable)[i].VendorTable = (EFI_PTR64)table;
155
156//++gST->NumberOfTableEntries;
157
158Node *tableNode = DT__AddChild(gEfiConfigurationTableNode, mallocStringForGuid(pGuid));
159
160// Use the pointer to the GUID we just stuffed into the system table
161DT__AddProperty(tableNode, "guid", sizeof(EFI_GUID), (void *)pGuid);
162
163// The "table" property is the 32-bit (in our implementation) physical address of the table
164DT__AddProperty(tableNode, "table", sizeof(void *) * 2, table);
165
166// Assume the alias pointer is a global or static piece of data
167if (alias != NULL)
168{
169DT__AddProperty(tableNode, "alias", strlen(alias)+1, (char *)alias);
170}
171
172return EFI_SUCCESS;
173}
174return EFI_UNSUPPORTED;
175}
176
177// ==========================================================================
178
179//Azi: crc32 done in place, on the cases were it wasn't.
180/*static inline void fixupEfiSystemTableCRC32(EFI_SYSTEM_TABLE_64 *efiSystemTable)
181{
182efiSystemTable->Hdr.CRC32 = 0;
183efiSystemTable->Hdr.CRC32 = crc32(0L, efiSystemTable, efiSystemTable->Hdr.HeaderSize);
184}*/
185
186/*
187 * What we do here is simply allocate a fake EFI system table and a fake EFI
188 * runtime services table.
189 *
190 * Because we build against modern headers with kBootArgsRevision 4 we
191 * also take care to set efiMode = 32.
192 */
193void setupEfiTables32(void)
194{
195// We use the fake_efi_pages struct so that we only need to do one kernel
196// memory allocation for all needed EFI data. Otherwise, small allocations
197// like the FIRMWARE_VENDOR string would take up an entire page.
198// NOTE WELL: Do NOT assume this struct has any particular layout within itself.
199// It is absolutely not intended to be publicly exposed anywhere
200// We say pages (plural) although right now we are well within the 1 page size
201// and probably will stay that way.
202struct fake_efi_pages
203{
204EFI_SYSTEM_TABLE_32 efiSystemTable;
205EFI_RUNTIME_SERVICES_32 efiRuntimeServices;
206EFI_CONFIGURATION_TABLE_32 efiConfigurationTable[MAX_CONFIGURATION_TABLE_ENTRIES];
207EFI_CHAR16 firmwareVendor[sizeof(FIRMWARE_VENDOR)/sizeof(EFI_CHAR16)];
208uint8_t voidret_instructions[sizeof(VOIDRET_INSTRUCTIONS)/sizeof(uint8_t)];
209uint8_t unsupportedret_instructions[sizeof(UNSUPPORTEDRET_INSTRUCTIONS_32)/sizeof(uint8_t)];
210};
211
212struct fake_efi_pages *fakeEfiPages = (struct fake_efi_pages *)AllocateKernelMemory(sizeof(struct fake_efi_pages));
213
214// Zero out all the tables in case fields are added later
215//bzero(fakeEfiPages, sizeof(struct fake_efi_pages));
216
217// --------------------------------------------------------------------
218// Initialize some machine code that will return EFI_UNSUPPORTED for
219// functions returning int and simply return for void functions.
220memcpy(fakeEfiPages->voidret_instructions, VOIDRET_INSTRUCTIONS, sizeof(VOIDRET_INSTRUCTIONS));
221memcpy(fakeEfiPages->unsupportedret_instructions, UNSUPPORTEDRET_INSTRUCTIONS_32, sizeof(UNSUPPORTEDRET_INSTRUCTIONS_32));
222
223// --------------------------------------------------------------------
224// System table
225EFI_SYSTEM_TABLE_32 *efiSystemTable = gST32 = &fakeEfiPages->efiSystemTable;
226efiSystemTable->Hdr.Signature = EFI_SYSTEM_TABLE_SIGNATURE;
227efiSystemTable->Hdr.Revision = EFI_SYSTEM_TABLE_REVISION;
228efiSystemTable->Hdr.HeaderSize = sizeof(EFI_SYSTEM_TABLE_32);
229efiSystemTable->Hdr.CRC32 = 0; // Initialize to zero and then do CRC32
230efiSystemTable->Hdr.Reserved = 0;
231
232efiSystemTable->FirmwareVendor = (EFI_PTR32)&fakeEfiPages->firmwareVendor;
233memcpy(fakeEfiPages->firmwareVendor, FIRMWARE_VENDOR, sizeof(FIRMWARE_VENDOR));
234efiSystemTable->FirmwareRevision = FIRMWARE_REVISION;
235
236// XXX: We may need to have basic implementations of ConIn/ConOut/StdErr
237// The EFI spec states that all handles are invalid after boot services have been
238// exited so we can probably get by with leaving the handles as zero.
239efiSystemTable->ConsoleInHandle = 0;
240efiSystemTable->ConIn = 0;
241
242efiSystemTable->ConsoleOutHandle = 0;
243efiSystemTable->ConOut = 0;
244
245efiSystemTable->StandardErrorHandle = 0;
246efiSystemTable->StdErr = 0;
247
248efiSystemTable->RuntimeServices = (EFI_PTR32)&fakeEfiPages->efiRuntimeServices;
249
250// According to the EFI spec, BootServices aren't valid after the
251// boot process is exited so we can probably do without it.
252// Apple didn't provide a definition for it in pexpert/i386/efi.h
253// so I'm guessing they don't use it.
254efiSystemTable->BootServices = 0;
255
256efiSystemTable->NumberOfTableEntries = 0;
257efiSystemTable->ConfigurationTable = (EFI_PTR32)fakeEfiPages->efiConfigurationTable;
258
259// We're done. Now CRC32 the thing so the kernel will accept it.
260// Must be initialized to zero before CRC32, done above.
261gST32->Hdr.CRC32 = crc32(0L, gST32, gST32->Hdr.HeaderSize);
262
263// --------------------------------------------------------------------
264// Runtime services
265EFI_RUNTIME_SERVICES_32 *efiRuntimeServices = &fakeEfiPages->efiRuntimeServices;
266efiRuntimeServices->Hdr.Signature = EFI_RUNTIME_SERVICES_SIGNATURE;
267efiRuntimeServices->Hdr.Revision = EFI_RUNTIME_SERVICES_REVISION;
268efiRuntimeServices->Hdr.HeaderSize = sizeof(EFI_RUNTIME_SERVICES_32);
269efiRuntimeServices->Hdr.CRC32 = 0;
270efiRuntimeServices->Hdr.Reserved = 0;
271
272// There are a number of function pointers in the efiRuntimeServices table.
273// These are the Foundation (e.g. core) services and are expected to be present on
274// all EFI-compliant machines.Some kernel extensions (notably AppleEFIRuntime)
275// will call these without checking to see if they are null.
276//
277// We don't really feel like doing an EFI implementation in the bootloader
278// but it is nice if we can at least prevent a complete crash by
279// at least providing some sort of implementation until one can be provided
280// nicely in a kext.
281void (*voidret_fp)() = (void *)fakeEfiPages->voidret_instructions;
282void (*unsupportedret_fp)() = (void *)fakeEfiPages->unsupportedret_instructions;
283efiRuntimeServices->GetTime = (EFI_PTR32)unsupportedret_fp;
284efiRuntimeServices->SetTime = (EFI_PTR32)unsupportedret_fp;
285efiRuntimeServices->GetWakeupTime = (EFI_PTR32)unsupportedret_fp;
286efiRuntimeServices->SetWakeupTime = (EFI_PTR32)unsupportedret_fp;
287efiRuntimeServices->SetVirtualAddressMap = (EFI_PTR32)unsupportedret_fp;
288efiRuntimeServices->ConvertPointer = (EFI_PTR32)unsupportedret_fp;
289efiRuntimeServices->GetVariable = (EFI_PTR32)unsupportedret_fp;
290efiRuntimeServices->GetNextVariableName = (EFI_PTR32)unsupportedret_fp;
291efiRuntimeServices->SetVariable = (EFI_PTR32)unsupportedret_fp;
292efiRuntimeServices->GetNextHighMonotonicCount = (EFI_PTR32)unsupportedret_fp;
293efiRuntimeServices->ResetSystem = (EFI_PTR32)voidret_fp;
294
295// We're done.Now CRC32 the thing so the kernel will accept it
296efiRuntimeServices->Hdr.CRC32 = crc32(0L, efiRuntimeServices, efiRuntimeServices->Hdr.HeaderSize);
297
298// --------------------------------------------------------------------
299// Finish filling in the rest of the boot args that we need.
300bootArgs->efiSystemTable = (uint32_t)efiSystemTable;
301bootArgs->efiMode = kBootArgsEfiMode32;
302
303// The bootArgs structure as a whole is bzero'd so we don't need to fill in
304// things like efiRuntimeServices* and what not.
305//
306// In fact, the only code that seems to use that is the hibernate code so it
307// knows not to save the pages. It even checks to make sure its nonzero.
308}
309
310void setupEfiTables64(void)
311{
312struct fake_efi_pages
313{
314EFI_SYSTEM_TABLE_64 efiSystemTable;
315EFI_RUNTIME_SERVICES_64 efiRuntimeServices;
316EFI_CONFIGURATION_TABLE_64 efiConfigurationTable[MAX_CONFIGURATION_TABLE_ENTRIES];
317EFI_CHAR16 firmwareVendor[sizeof(FIRMWARE_VENDOR)/sizeof(EFI_CHAR16)];
318uint8_t voidret_instructions[sizeof(VOIDRET_INSTRUCTIONS)/sizeof(uint8_t)];
319uint8_t unsupportedret_instructions[sizeof(UNSUPPORTEDRET_INSTRUCTIONS_64)/sizeof(uint8_t)];
320};
321
322struct fake_efi_pages *fakeEfiPages = (struct fake_efi_pages *)AllocateKernelMemory(sizeof(struct fake_efi_pages));
323
324// Zero out all the tables in case fields are added later
325//bzero(fakeEfiPages, sizeof(struct fake_efi_pages));
326
327// --------------------------------------------------------------------
328// Initialize some machine code that will return EFI_UNSUPPORTED for
329// functions returning int and simply return for void functions.
330memcpy(fakeEfiPages->voidret_instructions, VOIDRET_INSTRUCTIONS, sizeof(VOIDRET_INSTRUCTIONS));
331memcpy(fakeEfiPages->unsupportedret_instructions, UNSUPPORTEDRET_INSTRUCTIONS_64, sizeof(UNSUPPORTEDRET_INSTRUCTIONS_64));
332
333// --------------------------------------------------------------------
334// System table
335EFI_SYSTEM_TABLE_64 *efiSystemTable = gST64 = &fakeEfiPages->efiSystemTable;
336efiSystemTable->Hdr.Signature = EFI_SYSTEM_TABLE_SIGNATURE;
337efiSystemTable->Hdr.Revision = EFI_SYSTEM_TABLE_REVISION;
338efiSystemTable->Hdr.HeaderSize = sizeof(EFI_SYSTEM_TABLE_64);
339efiSystemTable->Hdr.CRC32 = 0; // Initialize to zero and then do CRC32
340efiSystemTable->Hdr.Reserved = 0;
341
342efiSystemTable->FirmwareVendor = ptov64((EFI_PTR32)&fakeEfiPages->firmwareVendor);
343memcpy(fakeEfiPages->firmwareVendor, FIRMWARE_VENDOR, sizeof(FIRMWARE_VENDOR));
344efiSystemTable->FirmwareRevision = FIRMWARE_REVISION;
345
346// XXX: We may need to have basic implementations of ConIn/ConOut/StdErr
347// The EFI spec states that all handles are invalid after boot services have been
348// exited so we can probably get by with leaving the handles as zero.
349efiSystemTable->ConsoleInHandle = 0;
350efiSystemTable->ConIn = 0;
351
352efiSystemTable->ConsoleOutHandle = 0;
353efiSystemTable->ConOut = 0;
354
355efiSystemTable->StandardErrorHandle = 0;
356efiSystemTable->StdErr = 0;
357
358efiSystemTable->RuntimeServices = ptov64((EFI_PTR32)&fakeEfiPages->efiRuntimeServices);
359// According to the EFI spec, BootServices aren't valid after the
360// boot process is exited so we can probably do without it.
361// Apple didn't provide a definition for it in pexpert/i386/efi.h
362// so I'm guessing they don't use it.
363efiSystemTable->BootServices = 0;
364
365efiSystemTable->NumberOfTableEntries = 0;
366efiSystemTable->ConfigurationTable = ptov64((EFI_PTR32)fakeEfiPages->efiConfigurationTable);
367
368// We're done.Now CRC32 the thing so the kernel will accept it
369gST64->Hdr.CRC32 = crc32(0L, gST64, gST64->Hdr.HeaderSize);
370
371// --------------------------------------------------------------------
372// Runtime services
373EFI_RUNTIME_SERVICES_64 *efiRuntimeServices = &fakeEfiPages->efiRuntimeServices;
374efiRuntimeServices->Hdr.Signature = EFI_RUNTIME_SERVICES_SIGNATURE;
375efiRuntimeServices->Hdr.Revision = EFI_RUNTIME_SERVICES_REVISION;
376efiRuntimeServices->Hdr.HeaderSize = sizeof(EFI_RUNTIME_SERVICES_64);
377efiRuntimeServices->Hdr.CRC32 = 0;
378efiRuntimeServices->Hdr.Reserved = 0;
379
380// There are a number of function pointers in the efiRuntimeServices table.
381// These are the Foundation (e.g. core) services and are expected to be present on
382// all EFI-compliant machines.Some kernel extensions (notably AppleEFIRuntime)
383// will call these without checking to see if they are null.
384//
385// We don't really feel like doing an EFI implementation in the bootloader
386// but it is nice if we can at least prevent a complete crash by
387// at least providing some sort of implementation until one can be provided
388// nicely in a kext.
389
390void (*voidret_fp)() = (void *)fakeEfiPages->voidret_instructions;
391void (*unsupportedret_fp)() = (void *)fakeEfiPages->unsupportedret_instructions;
392efiRuntimeServices->GetTime = ptov64((EFI_PTR32)unsupportedret_fp);
393efiRuntimeServices->SetTime = ptov64((EFI_PTR32)unsupportedret_fp);
394efiRuntimeServices->GetWakeupTime = ptov64((EFI_PTR32)unsupportedret_fp);
395efiRuntimeServices->SetWakeupTime = ptov64((EFI_PTR32)unsupportedret_fp);
396efiRuntimeServices->SetVirtualAddressMap = ptov64((EFI_PTR32)unsupportedret_fp);
397efiRuntimeServices->ConvertPointer = ptov64((EFI_PTR32)unsupportedret_fp);
398efiRuntimeServices->GetVariable = ptov64((EFI_PTR32)unsupportedret_fp);
399efiRuntimeServices->GetNextVariableName = ptov64((EFI_PTR32)unsupportedret_fp);
400efiRuntimeServices->SetVariable = ptov64((EFI_PTR32)unsupportedret_fp);
401efiRuntimeServices->GetNextHighMonotonicCount = ptov64((EFI_PTR32)unsupportedret_fp);
402efiRuntimeServices->ResetSystem = ptov64((EFI_PTR32)voidret_fp);
403
404// We're done.Now CRC32 the thing so the kernel will accept it
405efiRuntimeServices->Hdr.CRC32 = crc32(0L, efiRuntimeServices, efiRuntimeServices->Hdr.HeaderSize);
406
407// --------------------------------------------------------------------
408// Finish filling in the rest of the boot args that we need.
409bootArgs->efiSystemTable = (uint32_t)efiSystemTable;
410bootArgs->efiMode = kBootArgsEfiMode64;
411
412// The bootArgs structure as a whole is bzero'd so we don't need to fill in
413// things like efiRuntimeServices* and what not.
414//
415// In fact, the only code that seems to use that is the hibernate code so it
416// knows not to save the pages. It even checks to make sure its nonzero.
417}
418
419/*
420 * In addition to the EFI tables there is also the EFI device tree node.
421 * In particular, we need /efi/platform to have an FSBFrequency key. Without it,
422 * the tsc_init function will panic very early on in kernel startup, before
423 * the console is available.
424 */
425
426/*==========================================================================
427 * FSB Frequency detection
428 */
429
430/* These should be const but DT__AddProperty takes char* */
431static const char TSC_Frequency_prop[] = "TSCFrequency";
432static const char FSB_Frequency_prop[] = "FSBFrequency";
433static const char CPU_Frequency_prop[] = "CPUFrequency";
434
435/*==========================================================================
436 * SMBIOS
437 */
438
439/* From Foundation/Efi/Guid/Smbios/SmBios.c */
440EFI_GUID constgEfiSmbiosTableGuid = SMBIOS_TABLE_GUID;
441
442#define SMBIOS_RANGE_START0x000F0000
443#define SMBIOS_RANGE_END0x000FFFFF
444
445/* '_SM_' in little endian: */
446#define SMBIOS_ANCHOR_UINT32_LE 0x5f4d535f
447
448EFI_GUID gEfiAcpiTableGuid = ACPI_TABLE_GUID;
449EFI_GUID gEfiAcpi20TableGuid = ACPI_20_TABLE_GUID;
450
451
452/*==========================================================================
453 * Fake EFI implementation
454 */
455
456/* These should be const but DT__AddProperty takes char* */
457static const char FIRMWARE_REVISION_PROP[] = "firmware-revision";
458static const char FIRMWARE_ABI_PROP[] = "firmware-abi";
459static const char FIRMWARE_VENDOR_PROP[] = "firmware-vendor";
460static const char FIRMWARE_ABI_32_PROP_VALUE[] = "EFI32";
461static const char FIRMWARE_ABI_64_PROP_VALUE[] = "EFI64";
462static const char EFI_MODE_PROP[] = "efi-mode"; //Bungo
463static const char SYSTEM_ID_PROP[] = "system-id";
464static const char SYSTEM_SERIAL_PROP[] = "SystemSerialNumber";
465static const char SYSTEM_TYPE_PROP[] = "system-type";
466static const char MODEL_PROP[] = "Model";
467static const char BOARDID_PROP[] = "board-id";
468static const char DEV_PATH_SUP[] = "DevicePathsSupported";
469static const char START_POWER_EV[] = "StartupPowerEvents";
470static const char MACHINE_SIG_PROP[] = "machine-signature";
471static EFI_UINT8 const DEVICE_PATHS_SUPPORTED[] = { 0x01, 0x00, 0x00, 0x00 };
472static EFI_UINT8 const STARTUP_POWER_EVENTS[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
473static EFI_UINT8 const COMPAT_MODE[] = { 0x01, 0x00, 0x00, 0x00 };
474
475/*
476 * Get an smbios option string option to convert to EFI_CHAR16 string
477 */
478static EFI_CHAR16 *getSmbiosChar16(const char *key, size_t *len)
479{
480const char*src = getStringForKey(key, &bootInfo->smbiosConfig);
481EFI_CHAR16* dst = 0;
482size_t i = 0;
483
484if (!key || !(*key) || !len || !src)
485{
486return 0;
487}
488
489*len = strlen(src);
490dst = (EFI_CHAR16 *) malloc( ((*len)+1) * 2 );
491for (; i < (*len); i++)
492{
493dst[i] = src[i];
494}
495dst[(*len)] = '\0';
496*len = ((*len)+1)*2; // return the CHAR16 bufsize including zero terminated CHAR16
497return dst;
498}
499
500// Bungo
501/*
502 * Get the SystemID from the bios dmi info
503
504staticEFI_CHAR8 *getSmbiosUUID()
505{
506static EFI_CHAR8uuid[UUID_LEN];
507inti;
508intisZero;
509intisOnes;
510SMBByte*p;
511
512p = (SMBByte *)Platform.UUID;
513
514for (i=0, isZero=1, isOnes=1; i<UUID_LEN; i++)
515{
516if (p[i] != 0x00)
517{
518isZero = 0;
519}
520
521if (p[i] != 0xff)
522{
523isOnes = 0;
524}
525}
526
527if (isZero || isOnes) // empty or setable means: no uuid present
528{
529verbose("No UUID present in SMBIOS System Information Table\n");
530return 0;
531}
532
533memcpy(uuid, p, UUID_LEN);
534return uuid;
535}
536
537
538// return a binary UUID value from the overriden SystemID and SMUUID if found,
539// or from the bios if not, or from a fixed value if no bios value is found
540
541static EFI_CHAR8 *getSystemID()
542{
543// unable to determine UUID for host. Error: 35 fix
544// Rek: new SMsystemid option conforming to smbios notation standards, this option should
545// belong to smbios config only ...
546const char *sysId = getStringForKey(kSystemID, &bootInfo->chameleonConfig);
547EFI_CHAR8*ret = getUUIDFromString(sysId);
548
549if (!sysId || !ret) // try bios dmi info UUID extraction
550{
551ret = getSmbiosUUID();
552sysId = 0;
553}
554
555if (!ret)
556{
557// no bios dmi UUID available, set a fixed value for system-id
558ret=getUUIDFromString((sysId = (const char *) SYSTEM_ID));
559}
560verbose("Customizing SystemID with : %s\n", getStringFromUUID(ret)); // apply a nice formatting to the displayed output
561return ret;
562}
563 */
564
565/*
566 * Must be called AFTER setupAcpi because we need to take care of correct
567 * FACP content to reflect in ioregs
568 */
569void setupSystemType()
570{
571Node *node = DT__FindNode("/", false);
572if (node == 0)
573{
574stop("Couldn't get root '/' node");
575}
576// we need to write this property after facp parsing
577// Export system-type only if it has been overrriden by the SystemType option
578DT__AddProperty(node, SYSTEM_TYPE_PROP, sizeof(Platform.Type), &Platform.Type);
579}
580
581static void setupEfiDeviceTree(void)
582{
583// EFI_CHAR8*ret = 0; Bungo: not used
584EFI_CHAR16*ret16 = 0;
585size_t len = 0;
586Node*node;
587
588node = DT__FindNode("/", false);
589
590if (node == 0)
591{
592stop("Couldn't get root node");
593}
594
595// We could also just do DT__FindNode("/efi/platform", true)
596// But I think eventually we want to fill stuff in the efi node
597// too so we might as well create it so we have a pointer for it too.
598node = DT__AddChild(node, "efi");
599
600if (archCpuType == CPU_TYPE_I386)
601{
602DT__AddProperty(node, FIRMWARE_ABI_PROP, sizeof(FIRMWARE_ABI_32_PROP_VALUE), (char *)FIRMWARE_ABI_32_PROP_VALUE);
603}
604else
605{
606DT__AddProperty(node, FIRMWARE_ABI_PROP, sizeof(FIRMWARE_ABI_64_PROP_VALUE), (char *)FIRMWARE_ABI_64_PROP_VALUE);
607}
608
609DT__AddProperty(node, EFI_MODE_PROP, sizeof(EFI_UINT8), (EFI_UINT8 *)&bootArgs->efiMode);
610
611DT__AddProperty(node, FIRMWARE_REVISION_PROP, sizeof(FIRMWARE_REVISION), (EFI_UINT32 *)&FIRMWARE_REVISION);
612DT__AddProperty(node, FIRMWARE_VENDOR_PROP, sizeof(FIRMWARE_VENDOR), (EFI_CHAR16 *)FIRMWARE_VENDOR);
613
614// TODO: Fill in other efi properties if necessary
615
616// Set up the /efi/runtime-services table node similar to the way a child node of configuration-table
617// is set up. That is, name and table properties
618Node *runtimeServicesNode = DT__AddChild(node, "runtime-services");
619
620if (archCpuType == CPU_TYPE_I386)
621{
622// The value of the table property is the 32-bit physical address for the RuntimeServices table.
623// Since the EFI system table already has a pointer to it, we simply use the address of that pointer
624// for the pointer to the property data. Warning.. DT finalization calls free on that but we're not
625// the only thing to use a non-malloc'd pointer for something in the DT
626
627DT__AddProperty(runtimeServicesNode, "table", sizeof(uint64_t), &gST32->RuntimeServices);
628}
629else
630{
631DT__AddProperty(runtimeServicesNode, "table", sizeof(uint64_t), &gST64->RuntimeServices);
632}
633
634// Set up the /efi/configuration-table node which will eventually have several child nodes for
635// all of the configuration tables needed by various kernel extensions.
636gEfiConfigurationTableNode = DT__AddChild(node, "configuration-table");
637
638// New node: /efi/kernel-compatibility
639Node *efiKernelComNode = DT__AddChild(node, "kernel-compatibility");
640
641if (MacOSVerCurrent >= MacOSVer2Int("10.9"))
642{
643DT__AddProperty(efiKernelComNode, "x86_64", sizeof(COMPAT_MODE), (EFI_UINT8 *) &COMPAT_MODE);
644}
645else
646{
647DT__AddProperty(efiKernelComNode, "i386", sizeof(COMPAT_MODE), (EFI_UINT8 *) &COMPAT_MODE);
648DT__AddProperty(efiKernelComNode, "x86_64", sizeof(COMPAT_MODE), (EFI_UINT8 *) &COMPAT_MODE);
649}
650
651// Now fill in the /efi/platform Node
652Node *efiPlatformNode = DT__AddChild(node, "platform");
653
654// NOTE WELL: If you do add FSB Frequency detection, make sure to store
655// the value in the fsbFrequency global and not an malloc'd pointer
656// because the DT_AddProperty function does not copy its args.
657
658if (Platform.CPU.FSBFrequency != 0)
659{
660DT__AddProperty(efiPlatformNode, FSB_Frequency_prop, sizeof(uint64_t), &Platform.CPU.FSBFrequency);
661}
662
663// Export TSC and CPU frequencies for use by the kernel or KEXTs
664if (Platform.CPU.TSCFrequency != 0)
665{
666DT__AddProperty(efiPlatformNode, TSC_Frequency_prop, sizeof(uint64_t), &Platform.CPU.TSCFrequency);
667}
668
669if (Platform.CPU.CPUFrequency != 0)
670{
671DT__AddProperty(efiPlatformNode, CPU_Frequency_prop, sizeof(uint64_t), &Platform.CPU.CPUFrequency);
672}
673
674DT__AddProperty(efiPlatformNode,START_POWER_EV, sizeof(STARTUP_POWER_EVENTS), (EFI_UINT8 *) &STARTUP_POWER_EVENTS);
675
676DT__AddProperty(efiPlatformNode,DEV_PATH_SUP, sizeof(DEVICE_PATHS_SUPPORTED), (EFI_UINT8 *) &DEVICE_PATHS_SUPPORTED);
677
678// Bungo
679/* Export system-id. Can be disabled with SystemId=No in com.apple.Boot.plist
680if ((ret=getSystemID()))
681{
682DT__AddProperty(efiPlatformNode, SYSTEM_ID_PROP, UUID_LEN, (EFI_UINT32 *) ret);
683}
684*/
685
686DT__AddProperty(efiPlatformNode, SYSTEM_ID_PROP, UUID_LEN, (EFI_UINT32 *)Platform.UUID);
687
688// Export SystemSerialNumber if present
689if ((ret16=getSmbiosChar16("SMserial", &len)))
690{
691DT__AddProperty(efiPlatformNode, SYSTEM_SERIAL_PROP, len, ret16);
692}
693
694// Export Model if present
695if ((ret16=getSmbiosChar16("SMproductname", &len)))
696{
697DT__AddProperty(efiPlatformNode, MODEL_PROP, len, ret16);
698}
699
700// Fill /efi/device-properties node.
701setupDeviceProperties(node);
702}
703
704/*
705 * Must be called AFTER getSmbios
706 */
707void setupBoardId()
708{
709Node *node;
710node = DT__FindNode("/", false);
711if (node == 0)
712{
713stop("Couldn't get root '/' node");
714}
715const char *boardid = getStringForKey("SMboardproduct", &bootInfo->smbiosConfig);
716if (boardid)
717{
718DT__AddProperty(node, BOARDID_PROP, strlen(boardid)+1, (EFI_CHAR16*)boardid);
719}
720}
721
722/*
723 * Populate the chosen node
724 */
725
726void setupChosenNode()
727{
728Node *chosenNode;
729chosenNode = DT__FindNode("/chosen", false);
730if (chosenNode == 0)
731{
732stop("setupChosenNode: Couldn't get '/chosen' node");
733}
734
735int length = strlen(gBootUUIDString);
736if (length)
737{
738DT__AddProperty(chosenNode, "boot-uuid", length + 1, gBootUUIDString);
739}
740
741length = strlen(bootArgs->CommandLine);
742DT__AddProperty(chosenNode, "boot-args", length + 1, bootArgs->CommandLine);
743
744length = strlen(bootInfo->bootFile);
745DT__AddProperty(chosenNode, "boot-file", length + 1, bootInfo->bootFile);
746
747//DT__AddProperty(chosenNode, "boot-device-path", bootDPsize, gBootDP);
748
749//DT__AddProperty(chosenNode, "boot-file-path", bootFPsize, gBootFP);
750
751//DT__AddProperty(chosenNode, "boot-kernelcache-adler32", sizeof(adler32), adler32);
752
753DT__AddProperty(chosenNode, MACHINE_SIG_PROP, sizeof(Platform.HWSignature), (EFI_UINT32 *)&Platform.HWSignature);
754
755if (MacOSVerCurrent >= MacOSVer2Int("10.10"))
756{
757//
758// Pike R. Alpha - 12 October 2014
759//
760UInt8 index = 0;
761EFI_UINT16 PMTimerValue = 0;
762EFI_UINT32 randomValue = 0, cpuTick = 0;
763EFI_UINT32 ecx = 0, edx = 0, esi = 0, edi = 0;
764
765// LEAF_1 - Feature Information (Function 01h).
766if (Platform.CPU.CPUID[CPUID_1][2] & 0x40000000)// Checking ecx:bit-30
767{
768//
769// i5/i7 Ivy Bridge and Haswell processors with RDRAND support.
770//
771EFI_UINT32 seedBuffer[16] = {0};
772//
773// Main loop to get 16 dwords (four bytes each).
774//
775for (index = 0; index < 16; index++)// 0x17e12:
776{
777randomValue = computeRand();// callq0x18e20
778cpuTick = (EFI_UINT32) getCPUTick();// callq0x121a7
779randomValue = (randomValue ^ cpuTick);// xor%rdi,%rax
780seedBuffer[index] = randomValue;// mov%rax,(%r15,%rsi,8)
781}// jb0x17e12
782
783DT__AddProperty(chosenNode, "random-seed", sizeof(seedBuffer), (EFI_UINT32 *) &seedBuffer);
784}
785else
786{
787//
788// All other processors without RDRAND support.
789//
790EFI_UINT8 seedBuffer[64] = {0};
791//
792// Main loop to get the 64 bytes.
793//
794do// 0x17e55:
795{
796//
797// FIXME: PM Timer is usually @ 0x408, but its position is relocatable
798// via PCI-to-ISA bridge. The location is reported in ACPI FADT,
799// PM Timer Block address - zenith432
800//
801PMTimerValue = inw(0x408);// in(%dx),%ax
802esi = PMTimerValue;// movzwl%ax,%esi
803
804if (esi < ecx)// cmp%ecx,%esi
805{
806continue;// jb0x17e55(retry)
807}
808
809cpuTick = (EFI_UINT32) getCPUTick();// callq0x121a7
810//printf("value: 0x%x\n", getCPUTick());
811ecx = (cpuTick >> 8);// mov%rax,%rcx
812// shr$0x8,%rcx
813edx = (cpuTick >> 0x10);// mov%rax,%rdx
814// shr$0x10,%rdx
815edi = esi;// mov%rsi,%rdi
816edi = (edi ^ cpuTick);// xor%rax,%rdi
817edi = (edi ^ ecx);// xor%rcx,%rdi
818edi = (edi ^ edx);// xor%rdx,%rdi
819
820seedBuffer[index] = (edi & 0xff);// mov%dil,(%r15,%r12,1)
821
822edi = (edi & 0x2f);// and$0x2f,%edi
823edi = (edi + esi);// add%esi,%edi
824index++;// incr12
825ecx = (edi & 0xffff);// movzwl%di,%ecx
826
827} while (index < 64);// cmp%r14d,%r12d
828// jne0x17e55(next)
829
830DT__AddProperty(chosenNode, "random-seed", sizeof(seedBuffer), (EFI_UINT8 *) &seedBuffer);
831
832}
833}
834}
835
836/*
837 * Load the smbios.plist override config file if any
838 */
839static void setupSmbiosConfigFile(const char *filename)
840{
841chardirSpecSMBIOS[128];
842const char*override_pathname = NULL;
843intlen = 0, err = 0;
844extern void scan_mem();
845
846// Take in account user overriding
847if (getValueForKey(kSMBIOSKey, &override_pathname, &len, &bootInfo->chameleonConfig) && len > 0)
848{
849// Specify a path to a file, e.g. SMBIOS=/Extra/macProXY.plist
850strcpy(dirSpecSMBIOS, override_pathname);
851err = loadConfigFile(dirSpecSMBIOS, &bootInfo->smbiosConfig);
852}
853else
854{
855// Check selected volume's Extra.
856sprintf(dirSpecSMBIOS, "/Extra/%s", filename);
857err = loadConfigFile(dirSpecSMBIOS, &bootInfo->smbiosConfig);
858}
859
860if (err)
861{
862verbose("No SMBIOS replacement found.\n");
863}
864
865// get a chance to scan mem dynamically if user asks for it while having the config options
866// loaded as well, as opposed to when it was in scan_platform(); also load the orig. smbios
867// so that we can access dmi info, without patching the smbios yet.
868scan_mem();
869}
870
871/*
872 * Installs all the needed configuration table entries
873 */
874static void setupEfiConfigurationTable()
875{
876smbios_p = (EFI_PTR32)getSmbios(SMBIOS_PATCHED);
877addConfigurationTable(&gEfiSmbiosTableGuid, &smbios_p, NULL);
878
879setupBoardId(); //need to be called after getSmbios
880
881// Setup ACPI with DSDT overrides (mackerintel's patch)
882setupAcpi();
883
884// We've obviously changed the count.. so fix up the CRC32
885if (archCpuType == CPU_TYPE_I386)
886{
887gST32->Hdr.CRC32 = 0;
888gST32->Hdr.CRC32 = crc32(0L, gST32, gST32->Hdr.HeaderSize);
889}
890else
891{
892gST64->Hdr.CRC32 = 0;
893gST64->Hdr.CRC32 = crc32(0L, gST64, gST64->Hdr.HeaderSize);
894}
895
896// Setup the chosen node
897setupChosenNode();
898}
899
900void saveOriginalSMBIOS(void)
901{
902Node *node;
903SMBEntryPoint *origeps;
904void *tableAddress;
905
906node = DT__FindNode("/efi/platform", false);
907if (!node)
908{
909DBG("saveOriginalSMBIOS: '/efi/platform' node not found\n");
910return;
911}
912
913origeps = getSmbios(SMBIOS_ORIGINAL);
914if (!origeps)
915{
916DBG("saveOriginalSMBIOS: original SMBIOS not found\n");
917return;
918}
919
920tableAddress = (void *)AllocateKernelMemory(origeps->dmi.tableLength);
921if (!tableAddress)
922{
923DBG("saveOriginalSMBIOS: can not allocate memory for original SMBIOS\n");
924return;
925}
926
927memcpy(tableAddress, (void *)origeps->dmi.tableAddress, origeps->dmi.tableLength);
928DT__AddProperty(node, "SMBIOS", origeps->dmi.tableLength, tableAddress);
929}
930
931/*
932 * Entrypoint from boot.c
933 */
934void setupFakeEfi(void)
935{
936// Generate efi device strings
937setup_pci_devs(root_pci_dev);
938
939readSMBIOSInfo(getSmbios(SMBIOS_ORIGINAL));
940
941// load smbios.plist file if any
942setupSmbiosConfigFile("smbios.plist");
943
944setupSMBIOSTable();
945
946// Initialize the base table
947if (archCpuType == CPU_TYPE_I386)
948{
949setupEfiTables32();
950}
951else
952{
953setupEfiTables64();
954}
955
956// Initialize the device tree
957setupEfiDeviceTree();
958
959saveOriginalSMBIOS();
960
961// Add configuration table entries to both the services table and the device tree
962setupEfiConfigurationTable();
963}
964

Archive Download this file

Revision: 2683