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

Archive Download this file

Revision: 2082