Chameleon

Chameleon Svn Source Tree

Root/branches/zenith432/i386/boot2/boot.c

1/*
2 * Copyright (c) 1999-2003 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * Portions Copyright (c) 1999-2003 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 2.0 (the "License").You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
12 * this file.
13 *
14 * The Original Code and all software distributed under the License are
15 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
20 * under the License.
21 *
22 * @APPLE_LICENSE_HEADER_END@
23 */
24
25/*
26 * Mach Operating System
27 * Copyright (c) 1990 Carnegie-Mellon University
28 * Copyright (c) 1989 Carnegie-Mellon University
29 * All rights reserved. The CMU software License Agreement specifies
30 * the terms and conditions for use and redistribution.
31 *
32 * INTEL CORPORATION PROPRIETARY INFORMATION
33 *
34 * This software is supplied under the terms of a license agreement or
35 * nondisclosure agreement with Intel Corporation and may not be copied
36 * nor disclosed except in accordance with the terms of that agreement.
37 *
38 *Copyright 1988, 1989 by Intel Corporation
39 *
40 *
41 * Copyright 1993 NeXT Computer, Inc.
42 * All rights reserved.
43 *
44 * Completely reworked by Sam Streeper (sam_s@NeXT.com)
45 * Reworked again by Curtis Galloway (galloway@NeXT.com)
46 */
47
48#include "boot.h"
49#include "bootstruct.h"
50#include "fake_efi.h"
51#include "sl.h"
52#include "libsa.h"
53#include "ramdisk.h"
54#include "gui.h"
55#include "platform.h"
56#include "modules.h"
57#include "device_tree.h"
58
59#ifndef DEBUG_BOOT2
60#define DEBUG_BOOT2 0
61#endif
62
63#if DEBUG_BOOT2
64#define DBG(x...)printf(x)
65#else
66#define DBG(x...)msglog(x)
67#endif
68
69/*
70 * How long to wait (in seconds) to load the
71 * kernel after displaying the "boot:" prompt.
72 */
73#define kBootErrorTimeout 5
74
75boolgOverrideKernel;
76boolgEnableCDROMRescan;
77boolgScanSingleDrive;
78booluseGUI;
79
80static intinterruptsAvailable = 0;
81
82static boolgUnloadPXEOnExit = false;
83
84static chargCacheNameAdler[64 + 256];
85char*gPlatformName = gCacheNameAdler;
86
87chargRootDevice[ROOT_DEVICE_SIZE];
88chargMKextName[512];
89intbvCount = 0;
90intgDeviceCount = 0;
91//intmenucount = 0;
92longgBootMode; /* defaults to 0 == kBootModeNormal */
93
94BVRefbvr;
95BVRefmenuBVR;
96BVRefbvChain;
97
98static unsigned longAdler32(unsigned char *buffer, long length);
99//static voidselectBiosDevice(void);
100
101/** options.c **/
102extern char* msgbuf;
103void showTextBuffer(char *buf, int size);
104
105//==========================================================================
106// Zero the BSS.
107
108static void zeroBSS(void)
109{
110extern char bss_start __asm("section$start$__DATA$__bss");
111extern char bss_end __asm("section$end$__DATA$__bss");
112extern char common_start __asm("section$start$__DATA$__common");
113extern char common_end __asm("section$end$__DATA$__common");
114
115bzero(&bss_start, (&bss_end - &bss_start));
116bzero(&common_start, (&common_end - &common_start));
117}
118
119//==========================================================================
120// Malloc error function
121
122static void malloc_error(char *addr, size_t size, const char *file, int line)
123{
124stop("\nMemory allocation error! Addr: 0x%x, Size: 0x%x, File: %s, Line: %d\n",
125 (unsigned)addr, (unsigned)size, file, line);
126}
127
128//==========================================================================
129//Initializes the runtime. Right now this means zeroing the BSS and initializing malloc.
130//
131void initialize_runtime(void)
132{
133zeroBSS();
134malloc_init(0, 0, 0, malloc_error);
135}
136
137//==========================================================================
138// ExecKernel - Load the kernel image (mach-o) and jump to its entry point.
139
140static int ExecKernel(void *binary)
141{
142intret;
143entry_tkernelEntry;
144
145bootArgs->kaddr = bootArgs->ksize = 0;
146execute_hook("ExecKernel", (void *)binary, NULL, NULL, NULL);
147
148ret = DecodeKernel(binary,
149 &kernelEntry,
150 (char **) &bootArgs->kaddr,
151 (int *)&bootArgs->ksize);
152
153if ( ret != 0 )
154{
155return ret;
156}
157
158// Reserve space for boot args
159reserveKernBootStruct();
160
161// Notify modules that the kernel has been decoded
162execute_hook("DecodedKernel", (void *)binary, (void *)bootArgs->kaddr, (void *)bootArgs->ksize, NULL);
163
164setupFakeEfi();
165
166// Load boot drivers from the specifed root path.
167//if (!gHaveKernelCache)
168{
169LoadDrivers("/");
170}
171
172execute_hook("DriversLoaded", (void *)binary, NULL, NULL, NULL);
173
174clearActivityIndicator();
175
176if (gErrors)
177{
178printf("Errors encountered while starting up the computer.\n");
179printf("Pausing %d seconds...\n", kBootErrorTimeout);
180sleep(kBootErrorTimeout);
181}
182
183md0Ramdisk();
184
185// Cleanup the PXE base code.
186
187if ( (gBootFileType == kNetworkDeviceType) && gUnloadPXEOnExit )
188{
189if ( (ret = nbpUnloadBaseCode()) != nbpStatusSuccess )
190{
191printf("nbpUnloadBaseCode error %d\n", (int)ret);
192sleep(2);
193}
194}
195
196bool dummyVal;
197if (getBoolForKey(kWaitForKeypressKey, &dummyVal, &bootInfo->chameleonConfig) && dummyVal)
198{
199showTextBuffer(msgbuf, strlen(msgbuf));
200}
201
202usb_loop();
203
204#if DEBUG
205if (interruptsAvailable) ShowInterruptCounters();
206#endif
207
208// If we were in text mode, switch to graphics mode.
209// This will draw the boot graphics unless we are in
210// verbose mode.
211if (gVerboseMode)
212{
213setVideoMode(GRAPHICS_MODE, 0);
214}
215else
216{
217drawBootGraphics();
218}
219
220DBG("Starting Darwin/%s [%s]\n",( archCpuType == CPU_TYPE_I386 ) ? "x86" : "x86_64", gDarwinBuildVerStr);
221DBG("Boot Args: %s\n", bootArgs->CommandLine);
222
223setupBooterLog();
224
225finalizeBootStruct();
226
227// Jump to kernel's entry point. There's no going back now.
228if (MacOSVerCurrent >= MacOSVer2Int("10.7"))
229{
230// Notify modules that the kernel is about to be started
231execute_hook("Kernel Start", (void *)kernelEntry, (void *)bootArgs, NULL, NULL);
232
233if (interruptsAvailable)
234{
235DisableInterrupts();
236}
237
238// Masking out so that Lion doesn't doublefault
239outb(0x21, 0xff);/* Maskout all interrupts Pic1 */
240outb(0xa1, 0xff);/* Maskout all interrupts Pic2 */
241
242startprog( kernelEntry, bootArgs );
243}
244else
245{
246// Notify modules that the kernel is about to be started
247execute_hook("Kernel Start", (void*)kernelEntry, (void*)bootArgsPreLion, NULL, NULL);
248
249if (interruptsAvailable)
250{
251DisableInterrupts();
252}
253
254
255startprog( kernelEntry, bootArgsPreLion );
256}
257
258// Not reached
259__builtin_unreachable();
260}
261
262//==========================================================================
263// LoadKernelCache - Try to load Kernel Cache.
264// return the length of the loaded cache file or -1 on error
265long LoadKernelCache(const char* cacheFile, void **binary)
266{
267charkernelCacheFile[512];
268charkernelCachePath[512];
269longflags, ret=-1;
270unsigned long adler32;
271u_int32_t time, cachetime, kerneltime, exttime;
272
273if((gBootMode & kBootModeSafe) != 0)
274{
275DBG("Kernel Cache ignored.\n");
276return -1;
277}
278
279// Use specify kernel cache file if not empty
280if (cacheFile[0] != 0)
281{
282strlcpy(kernelCacheFile, cacheFile, sizeof(kernelCacheFile));
283verbose("Specified kernel cache file path: %s\n", cacheFile);
284}
285else
286{
287// Lion, Mountain Lion, Mavericks and Yosemite prelink kernel cache file
288if (MacOSVerCurrent >= MacOSVer2Int("10.7")) // OSX is Lion (10.7) or newer
289{
290snprintf(kernelCacheFile, sizeof(kernelCacheFile), "%skernelcache", kDefaultCachePathSnow);
291verbose("Kernel Cache file path (Mac OS X 10.7 and newer): %s\n", kernelCacheFile);
292}
293// Snow Leopard prelink kernel cache file
294else
295{
296if (MacOSVerCurrent >= MacOSVer2Int("10.6")) // OSX is Snow (10.6)
297{
298snprintf(kernelCacheFile, sizeof(kernelCacheFile), "kernelcache_%s",
299(archCpuType == CPU_TYPE_I386) ? "i386" : "x86_64");
300
301intlnam = strlen(kernelCacheFile) + 9; //with adler32
302char*name;
303u_int32_t prev_time = 0;
304
305struct dirstuff* cacheDir = opendir(kDefaultCachePathSnow);
306
307/* TODO: handle error? */
308if (cacheDir)
309{
310while(readdir(cacheDir, (const char**)&name, &flags, &time) >= 0)
311{
312if (((flags & kFileTypeMask) != kFileTypeDirectory) && time > prev_time
313&& strstr(name, kernelCacheFile) && (name[lnam] != '.'))
314{
315snprintf(kernelCacheFile, sizeof(kernelCacheFile), "%s%s", kDefaultCachePathSnow, name);
316prev_time = time;
317}
318}
319verbose("Kernel Cache file path (Mac OS X 10.6.X): %s\n", kernelCacheFile);
320}
321closedir(cacheDir);
322}
323else
324{
325// Leopard prelink kernel cache file
326// Reset cache name.
327bzero(gCacheNameAdler + 64, sizeof(gCacheNameAdler) - 64);
328snprintf(gCacheNameAdler + 64, sizeof(gCacheNameAdler) - 64, "%s,%s", gRootDevice, bootInfo->bootFile);
329adler32 = Adler32((unsigned char *)gCacheNameAdler, sizeof(gCacheNameAdler));
330snprintf(kernelCacheFile, sizeof(kernelCacheFile), "%s.%08lX", kDefaultCachePathLeo, adler32);
331verbose("Reseted kernel cache file path: %s\n", kernelCacheFile);
332}
333}
334}
335
336// Check if the kernel cache file exists
337ret = -1;
338
339// If boot from a boot helper partition check the kernel cache file on it
340if (gBootVolume->flags & kBVFlagBooter)
341{
342snprintf(kernelCachePath, sizeof(kernelCachePath), "/com.apple.boot.P/%s", kernelCacheFile);
343ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime);
344
345if ((ret == -1) || ((flags & kFileTypeMask) != kFileTypeFlat))
346{
347snprintf(kernelCachePath, sizeof(kernelCachePath), "/com.apple.boot.R/%s", kernelCacheFile);
348ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime);
349
350if ((ret == -1) || ((flags & kFileTypeMask) != kFileTypeFlat))
351{
352snprintf(kernelCachePath, sizeof(kernelCachePath), "/com.apple.boot.S/%s", kernelCacheFile);
353ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime);
354
355if ((ret == -1) || ((flags & kFileTypeMask) != kFileTypeFlat))
356{
357snprintf(kernelCachePath, sizeof(kernelCachePath), "/com.apple.recovery.boot/kernelcache", kernelCacheFile);
358ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime);
359
360if ((flags & kFileTypeMask) != kFileTypeFlat)
361{
362ret = -1;
363}
364}
365}
366}
367}
368
369// If not found, use the original kernel cache path.
370if (ret == -1)
371{
372strlcpy(kernelCachePath, kernelCacheFile, sizeof(kernelCachePath));
373ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime);
374
375if ((flags & kFileTypeMask) != kFileTypeFlat)
376{
377ret = -1;
378}
379}
380
381// Exit if kernel cache file wasn't found
382if (ret == -1)
383{
384DBG("No Kernel Cache File '%s' found\n", kernelCacheFile);
385return -1;
386}
387
388// Check if the kernel cache file is more recent (mtime)
389// than the kernel file or the S/L/E directory
390ret = GetFileInfo(NULL, bootInfo->bootFile, &flags, &kerneltime);
391
392// Check if the kernel file is more recent than the cache file
393if ((ret == 0) && ((flags & kFileTypeMask) == kFileTypeFlat) && (kerneltime > cachetime))
394{
395DBG("Kernel file '%s' is more recent than Kernel Cache '%s'! Ignoring Kernel Cache.\n", bootInfo->bootFile, kernelCacheFile);
396return -1;
397}
398
399ret = GetFileInfo("/System/Library/", "Extensions", &flags, &exttime);
400
401// Check if the S/L/E directory time is more recent than the cache file
402if ((ret == 0) && ((flags & kFileTypeMask) == kFileTypeDirectory) && (exttime > cachetime))
403{
404DBG("Folder '/System/Library/Extensions' is more recent than Kernel Cache file '%s'! Ignoring Kernel Cache.\n", kernelCacheFile);
405return -1;
406}
407
408// Since the kernel cache file exists and is the most recent try to load it
409DBG("Loading Kernel Cache from: '%s%s' (%s)\n", gBootVolume->label, gBootVolume->altlabel, gBootVolume->type_name);
410
411ret = LoadThinFatFile(kernelCachePath, binary);
412return ret; // ret contain the length of the binary
413}
414
415//==========================================================================
416// This is the entrypoint from real-mode which functions exactly as it did
417// before. Multiboot does its own runtime initialization, does some of its
418// own things, and then calls common_boot.
419void boot(int biosdev)
420{
421// Enable A20 gate before accessing memory above 1Mb.
422enableA20();
423initialize_runtime();
424common_boot(biosdev);
425}
426
427//==========================================================================
428// The 'main' function for the booter. Called by boot0 when booting
429// from a block device, or by the network booter.
430//
431// arguments:
432// biosdev - Value passed from boot1/NBP to specify the device
433// that the booter was loaded from.
434//
435// If biosdev is kBIOSDevNetwork, then this function will return if
436// booting was unsuccessful. This allows the PXE firmware to try the
437// next boot device on its list.
438void common_boot(int biosdev)
439{
440bool quiet;
441bool firstRun = true;
442bool instantMenu;
443bool rescanPrompt;
444intstatus;
445unsigned intallowBVFlags = kBVFlagSystemVolume | kBVFlagForeignBoot;
446unsigned intdenyBVFlags = kBVFlagEFISystem;
447
448// Set reminder to unload the PXE base code. Neglect to unload
449// the base code will result in a hang or kernel panic.
450gUnloadPXEOnExit = true;
451
452// Record the device that the booter was loaded from.
453gBIOSDev = biosdev & kBIOSDevMask;
454
455// Initialize boot-log
456initBooterLog();
457
458// Enable interrupts
459interruptsAvailable = SetupInterrupts();
460if (interruptsAvailable)
461{
462EnableInterrupts();
463}
464
465// Initialize boot info structure.
466initKernBootStruct();
467
468// Setup VGA text mode.
469// Not sure if it is safe to call setVideoMode() before the
470// config table has been loaded. Call video_mode() instead.
471#if DEBUG
472printf("before video_mode\n");
473#endif
474video_mode( 2 ); // 80x25 mono text mode.
475#if DEBUG
476printf("after video_mode\n");
477#endif
478
479// Scan and record the system's hardware information.
480scan_platform();
481
482// First get info for boot volume.
483scanBootVolumes(gBIOSDev, 0);
484bvChain = getBVChainForBIOSDev(gBIOSDev);
485setBootGlobals(bvChain);
486
487// Load boot.plist config file
488status = loadChameleonConfig(&bootInfo->chameleonConfig, bvChain);
489
490if (getBoolForKey(kQuietBootKey, &quiet, &bootInfo->chameleonConfig) && quiet)
491{
492gBootMode |= kBootModeQuiet;
493}
494
495// Override firstRun to get to the boot menu instantly by setting "Instant Menu"=y in system config
496if (getBoolForKey(kInstantMenuKey, &instantMenu, &bootInfo->chameleonConfig) && instantMenu)
497{
498firstRun = false;
499}
500
501// Loading preboot ramdisk if exists.
502loadPrebootRAMDisk();
503
504// Disable rescan option by default
505gEnableCDROMRescan = false;
506
507// Enable it with Rescan=y in system config
508if (getBoolForKey(kRescanKey, &gEnableCDROMRescan, &bootInfo->chameleonConfig)&& gEnableCDROMRescan)
509{
510gEnableCDROMRescan = true;
511}
512
513// Disable rescanPrompt option by default
514rescanPrompt = false;
515
516// Ask the user for Rescan option by setting "Rescan Prompt"=y in system config.
517if (getBoolForKey(kRescanPromptKey, &rescanPrompt , &bootInfo->chameleonConfig) && rescanPrompt && biosDevIsCDROM(gBIOSDev))
518{
519gEnableCDROMRescan = promptForRescanOption();
520}
521
522// Enable touching a single BIOS device only if "Scan Single Drive"=y is set in system config.
523if (getBoolForKey(kScanSingleDriveKey, &gScanSingleDrive, &bootInfo->chameleonConfig) && gScanSingleDrive)
524{
525gScanSingleDrive = true;
526}
527
528// Create a list of partitions on device(s).
529if (gScanSingleDrive)
530{
531scanBootVolumes(gBIOSDev, &bvCount);
532}
533else
534{
535scanDisks(gBIOSDev, &bvCount);
536}
537
538// Create a separated bvr chain using the specified filters.
539bvChain = newFilteredBVChain(0x80, 0xFF, allowBVFlags, denyBVFlags, &gDeviceCount);
540
541gBootVolume = selectBootVolume(bvChain);
542
543// Intialize module system
544init_module_system();
545
546#if DEBUG
547printf("Default: %d, ->biosdev: %d, ->part_no: %d ->flags: 0x%08X\n",
548gBootVolume, gBootVolume->biosdev, gBootVolume->part_no, gBootVolume->flags);
549printf("bt(0,0): %d, ->biosdev: %d, ->part_no: %d ->flags: 0x%08X\n",
550gBIOSBootVolume, gBIOSBootVolume->biosdev, gBIOSBootVolume->part_no, gBIOSBootVolume->flags);
551getchar();
552#endif
553
554useGUI = true;
555// Override useGUI default
556getBoolForKey(kGUIKey, &useGUI, &bootInfo->chameleonConfig);
557if (useGUI && initGUI())
558{
559// initGUI() returned with an error, disabling GUI.
560useGUI = false;
561}
562
563setBootGlobals(bvChain);
564
565// Parse args, load and start kernel.
566while (1)
567{
568booltryresume, tryresumedefault, forceresume;
569booluseKernelCache = true; // by default try to use the prelinked kernel
570const char*val;
571intlen, ret = -1;
572longflags;
573u_int32_tsleeptime, time;
574void*binary = (void *)kLoadAddr;
575
576charbootFile[sizeof(bootInfo->bootFile)];
577charbootFilePath[512];
578charkernelCacheFile[512];
579
580// Initialize globals.
581sysConfigValid = false;
582gErrors = false;
583
584status = getBootOptions(firstRun);
585firstRun = false;
586if (status == -1) continue;
587
588status = processBootOptions();
589// Status == 1 means to chainboot
590if ( status ==1 ) break;
591// Status == -1 means that the config file couldn't be loaded or that gBootVolume is NULL
592if ( status == -1 )
593{
594// gBootVolume == NULL usually means the user hit escape.
595if (gBootVolume == NULL)
596{
597freeFilteredBVChain(bvChain);
598
599if (gEnableCDROMRescan)
600rescanBIOSDevice(gBIOSDev);
601
602bvChain = newFilteredBVChain(0x80, 0xFF, allowBVFlags, denyBVFlags, &gDeviceCount);
603setBootGlobals(bvChain);
604setupDeviceList(&bootInfo->themeConfig);
605}
606continue;
607}
608
609// Other status (e.g. 0) means that we should proceed with boot.
610
611// Turn off any GUI elements
612if ( bootArgs->Video.v_display == GRAPHICS_MODE )
613{
614gui.devicelist.draw = false;
615gui.bootprompt.draw = false;
616gui.menu.draw = false;
617gui.infobox.draw = false;
618gui.logo.draw = false;
619drawBackground();
620updateVRAM();
621}
622
623if (platformCPUFeature(CPU_FEATURE_EM64T))
624{
625archCpuType = CPU_TYPE_X86_64;
626}
627else
628{
629archCpuType = CPU_TYPE_I386;
630}
631
632if (getValueForKey(karch, &val, &len, &bootInfo->chameleonConfig))
633{
634if (strncmp(val, "i386", 4) == 0)
635{
636archCpuType = CPU_TYPE_I386;
637}
638}
639
640if (getValueForKey(kKernelArchKey, &val, &len, &bootInfo->chameleonConfig)) {
641if (strncmp(val, "i386", 4) == 0)
642{
643archCpuType = CPU_TYPE_I386;
644}
645}
646
647// Notify modules that we are attempting to boot
648execute_hook("PreBoot", NULL, NULL, NULL, NULL);
649
650if (!getBoolForKey (kWake, &tryresume, &bootInfo->chameleonConfig))
651{
652tryresume = true;
653tryresumedefault = true;
654}
655else
656{
657tryresumedefault = false;
658}
659
660if (!getBoolForKey (kForceWake, &forceresume, &bootInfo->chameleonConfig)) {
661forceresume = false;
662}
663
664if (forceresume)
665{
666tryresume = true;
667tryresumedefault = false;
668}
669
670while (tryresume)
671{
672const char *tmp;
673BVRef bvr;
674if (!getValueForKey(kWakeImage, &val, &len, &bootInfo->chameleonConfig))
675val = "/private/var/vm/sleepimage";
676
677// Do this first to be sure that root volume is mounted
678ret = GetFileInfo(0, val, &flags, &sleeptime);
679
680if ((bvr = getBootVolumeRef(val, &tmp)) == NULL)
681break;
682
683// Can't check if it was hibernation Wake=y is required
684if (bvr->modTime == 0 && tryresumedefault)
685break;
686
687if ((ret != 0) || ((flags & kFileTypeMask) != kFileTypeFlat))
688break;
689
690if (!forceresume && ((sleeptime+3)<bvr->modTime))
691{
692#if DEBUG
693printf ("Hibernate image is too old by %d seconds. Use ForceWake=y to override\n",
694bvr->modTime-sleeptime);
695#endif
696break;
697}
698
699HibernateBoot((char *)val);
700break;
701}
702
703getBoolForKey(kUseKernelCache, &useKernelCache, &bootInfo->chameleonConfig);
704if (useKernelCache)
705{
706do
707{
708// Determine the name of the Kernel Cache
709if (getValueForKey(kKernelCacheKey, &val, &len, &bootInfo->bootConfig))
710{
711if (val[0] == '\\')
712{
713len--;
714val++;
715}
716/* FIXME: check len vs sizeof(kernelCacheFile) */
717strlcpy(kernelCacheFile, val, len + 1);
718}
719else
720{
721kernelCacheFile[0] = 0; // Use default kernel cache file
722}
723
724if (gOverrideKernel && kernelCacheFile[0] == 0)
725{
726DBG("Using a non default kernel (%s) without specifying 'Kernel Cache' path, KernelCache will not be used\n", bootInfo->bootFile);
727useKernelCache = false;
728break;
729}
730
731if (gMKextName[0] != 0)
732{
733DBG("Using a specific MKext Cache (%s), KernelCache will not be used\n", gMKextName);
734useKernelCache = false;
735break;
736}
737
738if (gBootFileType != kBlockDeviceType)
739{
740useKernelCache = false;
741}
742
743} while(0);
744}
745else
746{
747DBG("Kernel Cache using disabled by user.\n");
748}
749
750do
751{
752if (useKernelCache)
753{
754ret = LoadKernelCache(kernelCacheFile, &binary);
755if (ret >= 0)
756{
757break;
758}
759}
760
761bool bootFileWithDevice = false;
762// Check if bootFile start with a device ex: bt(0,0)/Extra/mach_kernel
763if (strncmp(bootInfo->bootFile,"bt(",3) == 0 ||
764strncmp(bootInfo->bootFile,"hd(",3) == 0 ||
765strncmp(bootInfo->bootFile,"rd(",3) == 0)
766bootFileWithDevice = true;
767
768// bootFile must start with a / if it not start with a device name
769if (!bootFileWithDevice && (bootInfo->bootFile)[0] != '/')
770{
771if (MacOSVerCurrent >= MacOSVer2Int("10.10")) // OSX is 10.10 or newer
772{
773snprintf(bootFile, sizeof(bootFile), kDefaultKernelPathForYos "%s", bootInfo->bootFile); // Yosemite
774}
775else
776{
777snprintf(bootFile, sizeof(bootFile), "/%s", bootInfo->bootFile); // append a leading '/'
778}
779}
780else
781{
782strlcpy(bootFile, bootInfo->bootFile, sizeof(bootFile));
783}
784
785// Try to load kernel image from alternate locations on boot helper partitions.
786ret = -1;
787if ((gBootVolume->flags & kBVFlagBooter) && !bootFileWithDevice)
788{
789snprintf(bootFilePath, sizeof(bootFilePath), "com.apple.boot.P%s", bootFile);
790ret = GetFileInfo(NULL, bootFilePath, &flags, &time);
791if (ret == -1)
792{
793snprintf(bootFilePath, sizeof(bootFilePath), "com.apple.boot.R%s", bootFile);
794ret = GetFileInfo(NULL, bootFilePath, &flags, &time);
795if (ret == -1)
796{
797snprintf(bootFilePath, sizeof(bootFilePath), "com.apple.boot.S%s", bootFile);
798ret = GetFileInfo(NULL, bootFilePath, &flags, &time);
799}
800}
801}
802if (ret == -1)
803{
804// No alternate location found, using the original kernel image path.
805strlcpy(bootFilePath, bootFile, sizeof(bootFilePath));
806}
807
808DBG("Loading kernel from: '%s' (%s)\n", gBootVolume->label, gBootVolume->type_name);
809ret = LoadThinFatFile(bootFilePath, &binary);
810if (ret <= 0 && archCpuType == CPU_TYPE_X86_64)
811{
812archCpuType = CPU_TYPE_I386;
813ret = LoadThinFatFile(bootFilePath, &binary);
814}
815} while (0);
816
817clearActivityIndicator();
818
819#if DEBUG
820printf("Pausing...");
821sleep(8);
822#endif
823
824if (ret <= 0)
825{
826printf("Can't find boot file: '%s'\n", bootFile);
827sleep(1);
828
829if (gBootFileType == kNetworkDeviceType)
830{
831// Return control back to PXE. Don't unload PXE base code.
832gUnloadPXEOnExit = false;
833break;
834}
835pause();
836
837}
838else
839{
840/* Won't return if successful. */
841ret = ExecKernel(binary);
842}
843}
844
845// chainboot
846if (status == 1)
847{
848// if we are already in graphics-mode,
849if (getVideoMode() == GRAPHICS_MODE)
850{
851setVideoMode(VGA_TEXT_MODE, 0); // switch back to text mode.
852}
853}
854
855if ((gBootFileType == kNetworkDeviceType) && gUnloadPXEOnExit)
856{
857nbpUnloadBaseCode();
858}
859
860if (interruptsAvailable)
861{
862DisableInterrupts();
863}
864}
865
866/*!
867Selects a new BIOS device, taking care to update the global state appropriately.
868 */
869/*
870static void selectBiosDevice(void)
871{
872struct DiskBVMap *oldMap = diskResetBootVolumes(gBIOSDev);
873CacheReset();
874diskFreeMap(oldMap);
875oldMap = NULL;
876
877int dev = selectAlternateBootDevice(gBIOSDev);
878
879BVRef bvchain = scanBootVolumes(dev, 0);
880BVRef bootVol = selectBootVolume(bvchain);
881gBootVolume = bootVol;
882setRootVolume(bootVol);
883gBIOSDev = dev;
884}
885*/
886
887bool checkOSVersion(const char * version)
888{
889if ( (sizeof(version) > 4) && ('.' != version[4]) && ('\0' != version[4]) )
890{
891return ((gMacOSVersion[0] == version[0]) && (gMacOSVersion[1] == version[1])
892&& (gMacOSVersion[2] == version[2]) && (gMacOSVersion[3] == version[3])
893&& (gMacOSVersion[4] == version[4]));
894}
895else
896{
897return ((gMacOSVersion[0] == version[0]) && (gMacOSVersion[1] == version[1])
898&& (gMacOSVersion[2] == version[2]) && (gMacOSVersion[3] == version[3]));
899}
900}
901
902uint32_t getMacOSVerCurrent()
903{
904MacOSVerCurrent = MacOSVer2Int(gBootVolume->OSVersion);
905return MacOSVerCurrent;
906}
907
908#define BASE 65521L /* largest prime smaller than 65536 */
909#define NMAX 5000
910// NMAX (was 5521) the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1
911
912#define DO1(buf, i){s1 += buf[i]; s2 += s1;}
913#define DO2(buf, i)DO1(buf, i); DO1(buf, i + 1);
914#define DO4(buf, i)DO2(buf, i); DO2(buf, i + 2);
915#define DO8(buf, i)DO4(buf, i); DO4(buf, i + 4);
916#define DO16(buf)DO8(buf, 0); DO8(buf, 8);
917
918unsigned long Adler32(unsigned char *buf, long len)
919{
920unsigned long s1 = 1; // adler & 0xffff;
921unsigned long s2 = 0; // (adler >> 16) & 0xffff;
922unsigned long result;
923int k;
924
925while (len > 0) {
926k = len < NMAX ? len : NMAX;
927len -= k;
928while (k >= 16) {
929DO16(buf);
930buf += 16;
931k -= 16;
932}
933if (k != 0) do {
934s1 += *buf++;
935s2 += s1;
936} while (--k);
937s1 %= BASE;
938s2 %= BASE;
939}
940result = (s2 << 16) | s1;
941return OSSwapHostToBigInt32(result);
942}
943

Archive Download this file

Revision: 2595