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

Archive Download this file

Revision: 2027