Chameleon

Chameleon Svn Source Tree

Root/trunk/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{
155printf("Decoding kernel failed.\n");
156pause();
157return ret;
158}
159
160// Reserve space for boot args
161reserveKernBootStruct();
162
163// Notify modules that the kernel has been decoded
164execute_hook("DecodedKernel", (void *)binary, (void *)bootArgs->kaddr, (void *)bootArgs->ksize, NULL);
165
166setupFakeEfi();
167
168// Load boot drivers from the specifed root path.
169//if (!gHaveKernelCache)
170{
171LoadDrivers("/");
172}
173
174execute_hook("DriversLoaded", (void *)binary, NULL, NULL, NULL);
175
176clearActivityIndicator();
177
178if (gErrors)
179{
180printf("Errors encountered while starting up the computer.\n");
181printf("Pausing %d seconds...\n", kBootErrorTimeout);
182sleep(kBootErrorTimeout);
183}
184
185md0Ramdisk();
186
187// Cleanup the PXE base code.
188
189if ( (gBootFileType == kNetworkDeviceType) && gUnloadPXEOnExit )
190{
191if ( (ret = nbpUnloadBaseCode()) != nbpStatusSuccess )
192{
193printf("nbpUnloadBaseCode error %d\n", (int)ret);
194sleep(2);
195}
196}
197
198bool dummyVal;
199if (getBoolForKey(kWaitForKeypressKey, &dummyVal, &bootInfo->chameleonConfig) && dummyVal)
200{
201showTextBuffer(msgbuf, strlen(msgbuf));
202}
203
204usb_loop();
205
206#if DEBUG
207if (interruptsAvailable) ShowInterruptCounters();
208#endif
209
210// If we were in text mode, switch to graphics mode.
211// This will draw the boot graphics unless we are in
212// verbose mode.
213if (gVerboseMode)
214{
215setVideoMode(GRAPHICS_MODE, 0);
216}
217else
218{
219drawBootGraphics();
220}
221
222DBG("Starting Darwin/%s [%s]\n",( archCpuType == CPU_TYPE_I386 ) ? "x86" : "x86_64", gDarwinBuildVerStr);
223DBG("Boot Args: %s\n", bootArgs->CommandLine);
224
225setupBooterLog();
226
227finalizeBootStruct();
228
229// Jump to kernel's entry point. There's no going back now.
230if ( TIGER || LEOPARD || SNOW_LEOPARD )
231{
232// Notify modules that the kernel is about to be started
233execute_hook("Kernel Start", (void *)kernelEntry, (void *)bootArgsPreLion, NULL, NULL);
234
235startprog( kernelEntry, bootArgsPreLion );
236}
237else
238{
239// Notify modules that the kernel is about to be started
240execute_hook("Kernel Start", (void *)kernelEntry, (void *)bootArgs, NULL, NULL);
241
242// Masking out so that Lion doesn't doublefault
243outb(0x21, 0xff);/* Maskout all interrupts Pic1 */
244outb(0xa1, 0xff);/* Maskout all interrupts Pic2 */
245
246startprog( kernelEntry, bootArgs );
247}
248
249// Not reached
250__builtin_unreachable();
251}
252
253//==========================================================================
254// LoadKernelCache - Try to load Kernel Cache.
255// return the length of the loaded cache file or -1 on error
256long LoadKernelCache(const char *cacheFile, void **binary)
257{
258charkernelCacheFile[512];
259charkernelCachePath[512];
260longflags, ret=-1;
261unsigned long adler32;
262u_int32_t time, cachetime, kerneltime, exttime;
263
264if((gBootMode & kBootModeSafe) != 0)
265{
266DBG("Kernel Cache ignored.\n");
267return -1;
268}
269
270// Use specify kernel cache file if not empty
271if (cacheFile[0] != 0)
272{
273strlcpy(kernelCacheFile, cacheFile, sizeof(kernelCacheFile));
274verbose("Specified kernel cache file path: %s\n", cacheFile);
275}
276else
277{
278// Leopard prelink kernel cache file
279if ( TIGER || LEOPARD ) // OSX is 10.4 or 10.5
280{
281// Reset cache name.
282bzero(gCacheNameAdler + 64, sizeof(gCacheNameAdler) - 64);
283snprintf(gCacheNameAdler + 64, sizeof(gCacheNameAdler) - 64, "%s,%s", gRootDevice, bootInfo->bootFile);
284adler32 = Adler32((unsigned char *)gCacheNameAdler, sizeof(gCacheNameAdler));
285snprintf(kernelCacheFile, sizeof(kernelCacheFile), "%s.%08lX", kDefaultCachePathLeo, adler32);
286verbose("Reseted kernel cache file path: %s\n", kernelCacheFile);
287
288}
289// Snow Leopard prelink kernel cache file
290else if ( SNOW_LEOPARD )
291{
292snprintf(kernelCacheFile, sizeof(kernelCacheFile), "kernelcache_%s",
293(archCpuType == CPU_TYPE_I386) ? "i386" : "x86_64");
294
295intlnam = strlen(kernelCacheFile) + 9; //with adler32
296char*name;
297u_int32_tprev_time = 0;
298
299struct dirstuff *cacheDir = opendir(kDefaultCachePathSnow);
300
301/* TODO: handle error? */
302if (cacheDir)
303{
304while(readdir(cacheDir, (const char**)&name, &flags, &time) >= 0)
305{
306if (((flags & kFileTypeMask) != kFileTypeDirectory) && time > prev_time
307&& strstr(name, kernelCacheFile) && (name[lnam] != '.'))
308{
309snprintf(kernelCacheFile, sizeof(kernelCacheFile), "%s%s", kDefaultCachePathSnow, name);
310prev_time = time;
311}
312}
313verbose("Kernel Cache file path (Mac OS X 10.6.X): %s\n", kernelCacheFile);
314}
315closedir(cacheDir);
316}
317else
318{
319// Lion, Mountain Lion, Mavericks and Yosemite prelink kernel cache file
320// for 10.7 10.8 10.9 10.10
321snprintf(kernelCacheFile, sizeof(kernelCacheFile), "%skernelcache", kDefaultCachePathSnow);
322verbose("Kernel Cache file path (Mac OS X 10.7 and newer): %s\n", kernelCacheFile);
323
324}
325}
326
327// Check if the kernel cache file exists
328ret = -1;
329
330// If boot from a boot helper partition check the kernel cache file on it
331if (gBootVolume->flags & kBVFlagBooter)
332{
333snprintf(kernelCachePath, sizeof(kernelCachePath), "/com.apple.boot.P/%s", kernelCacheFile);
334ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime);
335
336if ((ret == -1) || ((flags & kFileTypeMask) != kFileTypeFlat))
337{
338snprintf(kernelCachePath, sizeof(kernelCachePath), "/com.apple.boot.R/%s", kernelCacheFile);
339ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime);
340
341if ((ret == -1) || ((flags & kFileTypeMask) != kFileTypeFlat))
342{
343snprintf(kernelCachePath, sizeof(kernelCachePath), "/com.apple.boot.S/%s", kernelCacheFile);
344ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime);
345
346if ((ret == -1) || ((flags & kFileTypeMask) != kFileTypeFlat))
347{
348snprintf(kernelCachePath, sizeof(kernelCachePath), "/com.apple.recovery.boot/kernelcache", kernelCacheFile);
349ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime);
350
351if ((flags & kFileTypeMask) != kFileTypeFlat)
352{
353ret = -1;
354}
355}
356}
357}
358}
359
360// If not found, use the original kernel cache path.
361if (ret == -1)
362{
363strlcpy(kernelCachePath, kernelCacheFile, sizeof(kernelCachePath));
364ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime);
365
366if ((flags & kFileTypeMask) != kFileTypeFlat)
367{
368ret = -1;
369}
370}
371
372// Exit if kernel cache file wasn't found
373if (ret == -1)
374{
375DBG("No Kernel Cache File '%s' found\n", kernelCacheFile);
376return -1;
377}
378
379// Check if the kernel cache file is more recent (mtime)
380// than the kernel file or the S/L/E directory
381ret = GetFileInfo(NULL, bootInfo->bootFile, &flags, &kerneltime);
382
383// Check if the kernel file is more recent than the cache file
384if ((ret == 0) && ((flags & kFileTypeMask) == kFileTypeFlat) && (kerneltime > cachetime))
385{
386DBG("Kernel file '%s' is more recent than Kernel Cache '%s'! Ignoring Kernel Cache.\n", bootInfo->bootFile, kernelCacheFile);
387return -1;
388}
389
390ret = GetFileInfo("/System/Library/", "Extensions", &flags, &exttime);
391
392// Check if the S/L/E directory time is more recent than the cache file
393if ((ret == 0) && ((flags & kFileTypeMask) == kFileTypeDirectory) && (exttime > cachetime))
394{
395DBG("Folder '/System/Library/Extensions' is more recent than Kernel Cache file '%s'! Ignoring Kernel Cache.\n", kernelCacheFile);
396return -1;
397}
398
399// Since the kernel cache file exists and is the most recent try to load it
400DBG("Loading Kernel Cache from: '%s%s' (%s)\n", gBootVolume->label, gBootVolume->altlabel, gBootVolume->type_name);
401
402ret = LoadThinFatFile(kernelCachePath, binary);
403return ret; // ret contain the length of the binary
404}
405
406//==========================================================================
407// This is the entrypoint from real-mode which functions exactly as it did
408// before. Multiboot does its own runtime initialization, does some of its
409// own things, and then calls common_boot.
410void boot(int biosdev)
411{
412// Enable A20 gate before accessing memory above 1Mb.
413enableA20();
414initialize_runtime();
415common_boot(biosdev);
416}
417
418//==========================================================================
419// The 'main' function for the booter. Called by boot0 when booting
420// from a block device, or by the network booter.
421//
422// arguments:
423// biosdev - Value passed from boot1/NBP to specify the device
424// that the booter was loaded from.
425//
426// If biosdev is kBIOSDevNetwork, then this function will return if
427// booting was unsuccessful. This allows the PXE firmware to try the
428// next boot device on its list.
429void common_boot(int biosdev)
430{
431bool quiet;
432bool firstRun = true;
433bool instantMenu;
434bool rescanPrompt;
435intstatus;
436unsigned intallowBVFlags = kBVFlagSystemVolume | kBVFlagForeignBoot;
437unsigned intdenyBVFlags = kBVFlagEFISystem;
438
439// Set reminder to unload the PXE base code. Neglect to unload
440// the base code will result in a hang or kernel panic.
441gUnloadPXEOnExit = true;
442
443// Record the device that the booter was loaded from.
444gBIOSDev = biosdev & kBIOSDevMask;
445
446// Initialize boot-log
447initBooterLog();
448
449// Enable interrupts
450interruptsAvailable = SetupInterrupts();
451if (interruptsAvailable)
452{
453EnableInterrupts();
454}
455
456// Initialize boot info structure.
457initKernBootStruct();
458
459// Setup VGA text mode.
460// Not sure if it is safe to call setVideoMode() before the
461// config table has been loaded. Call video_mode() instead.
462#if DEBUG
463printf("before video_mode\n");
464#endif
465video_mode( 2 ); // 80x25 mono text mode.
466#if DEBUG
467printf("after video_mode\n");
468#endif
469
470// Scan and record the system's hardware information.
471scan_platform();
472
473// First get info for boot volume.
474scanBootVolumes(gBIOSDev, 0);
475bvChain = getBVChainForBIOSDev(gBIOSDev);
476setBootGlobals(bvChain);
477
478// Load boot.plist config file
479status = loadChameleonConfig(&bootInfo->chameleonConfig, bvChain);
480
481if (getBoolForKey(kQuietBootKey, &quiet, &bootInfo->chameleonConfig) && quiet)
482{
483gBootMode |= kBootModeQuiet;
484}
485
486// Override firstRun to get to the boot menu instantly by setting "Instant Menu"=y in system config
487if (getBoolForKey(kInstantMenuKey, &instantMenu, &bootInfo->chameleonConfig) && instantMenu)
488{
489firstRun = false;
490}
491
492// Loading preboot ramdisk if exists.
493loadPrebootRAMDisk();
494
495// Disable rescan option by default
496gEnableCDROMRescan = false;
497
498// Enable it with Rescan=y in system config
499if (getBoolForKey(kRescanKey, &gEnableCDROMRescan, &bootInfo->chameleonConfig)&& gEnableCDROMRescan)
500{
501gEnableCDROMRescan = true;
502}
503
504// Disable rescanPrompt option by default
505rescanPrompt = false;
506
507// Ask the user for Rescan option by setting "Rescan Prompt"=y in system config.
508if (getBoolForKey(kRescanPromptKey, &rescanPrompt , &bootInfo->chameleonConfig) && rescanPrompt && biosDevIsCDROM(gBIOSDev))
509{
510gEnableCDROMRescan = promptForRescanOption();
511}
512
513// Enable touching a single BIOS device only if "Scan Single Drive"=y is set in system config.
514if (getBoolForKey(kScanSingleDriveKey, &gScanSingleDrive, &bootInfo->chameleonConfig) && gScanSingleDrive)
515{
516gScanSingleDrive = true;
517}
518
519// Create a list of partitions on device(s).
520if (gScanSingleDrive)
521{
522scanBootVolumes(gBIOSDev, &bvCount);
523}
524else
525{
526scanDisks(gBIOSDev, &bvCount);
527}
528
529// Create a separated bvr chain using the specified filters.
530bvChain = newFilteredBVChain(0x80, 0xFF, allowBVFlags, denyBVFlags, &gDeviceCount);
531
532gBootVolume = selectBootVolume(bvChain);
533
534// Intialize module system
535init_module_system();
536
537#if DEBUG
538printf("Default: %d, ->biosdev: %d, ->part_no: %d ->flags: 0x%08X\n",
539gBootVolume, gBootVolume->biosdev, gBootVolume->part_no, gBootVolume->flags);
540printf("bt(0,0): %d, ->biosdev: %d, ->part_no: %d ->flags: 0x%08X\n",
541gBIOSBootVolume, gBIOSBootVolume->biosdev, gBIOSBootVolume->part_no, gBIOSBootVolume->flags);
542getchar();
543#endif
544
545useGUI = true;
546// Override useGUI default
547getBoolForKey(kGUIKey, &useGUI, &bootInfo->chameleonConfig);
548if (useGUI && initGUI())
549{
550// initGUI() returned with an error, disabling GUI.
551useGUI = false;
552}
553
554setBootGlobals(bvChain);
555
556// Parse args, load and start kernel.
557while (1)
558{
559booltryresume, tryresumedefault, forceresume;
560booluseKernelCache = true; // by default try to use the prelinked kernel
561const char*val;
562intlen, ret = -1;
563longflags;
564u_int32_tsleeptime, time;
565void*binary = (void *)kLoadAddr;
566
567charbootFile[sizeof(bootInfo->bootFile)];
568charbootFilePath[512];
569charkernelCacheFile[512];
570
571// Initialize globals.
572sysConfigValid = false;
573gErrors = false;
574
575status = getBootOptions(firstRun);
576firstRun = false;
577if (status == -1) continue;
578
579status = processBootOptions();
580// Status == 1 means to chainboot
581if ( status ==1 ) break;
582// Status == -1 means that the config file couldn't be loaded or that gBootVolume is NULL
583if ( status == -1 )
584{
585// gBootVolume == NULL usually means the user hit escape.
586if (gBootVolume == NULL)
587{
588freeFilteredBVChain(bvChain);
589
590if (gEnableCDROMRescan)
591rescanBIOSDevice(gBIOSDev);
592
593bvChain = newFilteredBVChain(0x80, 0xFF, allowBVFlags, denyBVFlags, &gDeviceCount);
594setBootGlobals(bvChain);
595setupDeviceList(&bootInfo->themeConfig);
596}
597continue;
598}
599
600// Other status (e.g. 0) means that we should proceed with boot.
601
602// Turn off any GUI elements
603if ( bootArgs->Video.v_display == GRAPHICS_MODE )
604{
605gui.devicelist.draw = false;
606gui.bootprompt.draw = false;
607gui.menu.draw = false;
608gui.infobox.draw = false;
609gui.logo.draw = false;
610drawBackground();
611updateVRAM();
612}
613
614if (platformCPUFeature(CPU_FEATURE_EM64T))
615{
616archCpuType = CPU_TYPE_X86_64;
617}
618else
619{
620archCpuType = CPU_TYPE_I386;
621}
622
623if (getValueForKey(karch, &val, &len, &bootInfo->chameleonConfig))
624{
625if (strncmp(val, "x86_64", sizeof("x86_64") ) == 0)
626{
627archCpuType = CPU_TYPE_X86_64;
628}
629else if (strncmp(val, "i386", sizeof("i386") ) == 0)
630{
631archCpuType = CPU_TYPE_I386;
632}
633else
634{
635DBG("Incorrect parameter for option 'arch =' , please use x86_64 or i386\n");
636}
637}
638
639if (getValueForKey(kKernelArchKey, &val, &len, &bootInfo->chameleonConfig)) {
640if (strncmp(val, "i386", sizeof("i386") ) == 0)
641{
642archCpuType = CPU_TYPE_I386;
643}
644}
645
646// Notify modules that we are attempting to boot
647execute_hook("PreBoot", NULL, NULL, NULL, NULL);
648
649if (!getBoolForKey (kWake, &tryresume, &bootInfo->chameleonConfig))
650{
651tryresume = true;
652tryresumedefault = true;
653}
654else
655{
656tryresumedefault = false;
657}
658
659if (!getBoolForKey (kForceWake, &forceresume, &bootInfo->chameleonConfig)) {
660forceresume = false;
661}
662
663if (forceresume)
664{
665tryresume = true;
666tryresumedefault = false;
667}
668
669while (tryresume)
670{
671const char *tmp;
672BVRef bvr;
673if (!getValueForKey(kWakeImage, &val, &len, &bootInfo->chameleonConfig))
674val = "/private/var/vm/sleepimage";
675
676// Do this first to be sure that root volume is mounted
677ret = GetFileInfo(0, val, &flags, &sleeptime);
678
679if ((bvr = getBootVolumeRef(val, &tmp)) == NULL)
680break;
681
682// Can't check if it was hibernation Wake=y is required
683if (bvr->modTime == 0 && tryresumedefault)
684break;
685
686if ((ret != 0) || ((flags & kFileTypeMask) != kFileTypeFlat))
687break;
688
689if (!forceresume && ((sleeptime+3)<bvr->modTime))
690{
691#if DEBUG
692printf ("Hibernate image is too old by %d seconds. Use ForceWake=y to override\n",
693bvr->modTime-sleeptime);
694#endif
695break;
696}
697
698HibernateBoot((char *)val);
699break;
700}
701
702getBoolForKey(kUseKernelCache, &useKernelCache, &bootInfo->chameleonConfig);
703if (useKernelCache)
704{
705do
706{
707// Determine the name of the Kernel Cache
708if (getValueForKey(kKernelCacheKey, &val, &len, &bootInfo->bootConfig))
709{
710if (val[0] == '\\')
711{
712len--;
713val++;
714}
715/* FIXME: check len vs sizeof(kernelCacheFile) */
716strlcpy(kernelCacheFile, val, len + 1);
717}
718else
719{
720kernelCacheFile[0] = 0; // Use default kernel cache file
721}
722
723if (gOverrideKernel && kernelCacheFile[0] == 0)
724{
725DBG("Using a non default kernel (%s) without specifying 'Kernel Cache' path, KernelCache will not be used\n", bootInfo->bootFile);
726useKernelCache = false;
727break;
728}
729
730if (gMKextName[0] != 0)
731{
732DBG("Using a specific MKext Cache (%s), KernelCache will not be used\n", gMKextName);
733useKernelCache = false;
734break;
735}
736
737if (gBootFileType != kBlockDeviceType)
738{
739useKernelCache = false;
740}
741
742} while(0);
743}
744else
745{
746DBG("Kernel Cache using disabled by user.\n");
747}
748
749do
750{
751if (useKernelCache)
752{
753ret = LoadKernelCache(kernelCacheFile, &binary);
754if (ret >= 0)
755{
756break;
757}
758}
759
760bool bootFileWithDevice = false;
761// Check if bootFile start with a device ex: bt(0,0)/Extra/mach_kernel
762if (strncmp(bootInfo->bootFile, "bt(", sizeof("bt(") ) == 0 ||
763strncmp(bootInfo->bootFile, "hd(", sizeof("hd(") ) == 0 ||
764strncmp(bootInfo->bootFile, "rd(", sizeof("rd(") ) == 0)
765bootFileWithDevice = true;
766
767// bootFile must start with a / if it not start with a device name
768if (!bootFileWithDevice && (bootInfo->bootFile)[0] != '/')
769{
770if ( !YOSEMITE ) // Is not Yosemite 10.10
771{
772snprintf(bootFile, sizeof(bootFile), "/%s", bootInfo->bootFile); // append a leading /
773}
774else
775{
776snprintf(bootFile, sizeof(bootFile), kDefaultKernelPathForYos"%s", bootInfo->bootFile); // Yosemite
777}
778}
779else
780{
781strlcpy(bootFile, bootInfo->bootFile, sizeof(bootFile));
782}
783
784// Try to load kernel image from alternate locations on boot helper partitions.
785ret = -1;
786if ((gBootVolume->flags & kBVFlagBooter) && !bootFileWithDevice)
787{
788snprintf(bootFilePath, sizeof(bootFilePath), "com.apple.boot.P%s", bootFile);
789ret = GetFileInfo(NULL, bootFilePath, &flags, &time);
790if (ret == -1)
791{
792snprintf(bootFilePath, sizeof(bootFilePath), "com.apple.boot.R%s", bootFile);
793ret = GetFileInfo(NULL, bootFilePath, &flags, &time);
794if (ret == -1)
795{
796snprintf(bootFilePath, sizeof(bootFilePath), "com.apple.boot.S%s", bootFile);
797ret = GetFileInfo(NULL, bootFilePath, &flags, &time);
798}
799}
800}
801if (ret == -1)
802{
803// No alternate location found, using the original kernel image path.
804strlcpy(bootFilePath, bootFile, sizeof(bootFilePath));
805}
806
807DBG("Loading kernel from: '%s' (%s)\n", gBootVolume->label, gBootVolume->type_name);
808ret = LoadThinFatFile(bootFilePath, &binary);
809if (ret <= 0 && archCpuType == CPU_TYPE_X86_64)
810{
811archCpuType = CPU_TYPE_I386;
812ret = LoadThinFatFile(bootFilePath, &binary);
813}
814} while (0);
815
816clearActivityIndicator();
817
818#if DEBUG
819printf("Pausing...");
820sleep(8);
821#endif
822
823if (ret <= 0)
824{
825printf("Can't find boot file: '%s'\n", bootFile);
826sleep(1);
827
828if (gBootFileType == kNetworkDeviceType)
829{
830// Return control back to PXE. Don't unload PXE base code.
831gUnloadPXEOnExit = false;
832break;
833}
834pause();
835
836}
837else
838{
839/* Won't return if successful. */
840ret = ExecKernel(binary);
841}
842}
843
844// chainboot
845if (status == 1)
846{
847// if we are already in graphics-mode,
848if (getVideoMode() == GRAPHICS_MODE)
849{
850setVideoMode(VGA_TEXT_MODE, 0); // switch back to text mode.
851}
852}
853
854if ((gBootFileType == kNetworkDeviceType) && gUnloadPXEOnExit)
855{
856nbpUnloadBaseCode();
857}
858
859if (interruptsAvailable)
860{
861DisableInterrupts();
862}
863}
864
865/*!
866Selects a new BIOS device, taking care to update the global state appropriately.
867 */
868/*
869static void selectBiosDevice(void)
870{
871struct DiskBVMap *oldMap = diskResetBootVolumes(gBIOSDev);
872CacheReset();
873diskFreeMap(oldMap);
874oldMap = NULL;
875
876int dev = selectAlternateBootDevice(gBIOSDev);
877
878BVRef bvchain = scanBootVolumes(dev, 0);
879BVRef bootVol = selectBootVolume(bvchain);
880gBootVolume = bootVol;
881setRootVolume(bootVol);
882gBIOSDev = dev;
883}
884*/
885
886bool checkOSVersion(const char * version)
887{
888if ( (sizeof(version) > 4) && ('.' != version[4]) && ('\0' != version[4]) )
889{
890return ((gMacOSVersion[0] == version[0]) && (gMacOSVersion[1] == version[1])
891&& (gMacOSVersion[2] == version[2]) && (gMacOSVersion[3] == version[3])
892&& (gMacOSVersion[4] == version[4]));
893}
894else
895{
896return ((gMacOSVersion[0] == version[0]) && (gMacOSVersion[1] == version[1])
897&& (gMacOSVersion[2] == version[2]) && (gMacOSVersion[3] == version[3]));
898}
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: 2624