Chameleon

Chameleon Svn Source Tree

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

Archive Download this file

Revision: 2308