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, (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{
250sprintf(kernelCacheFile, "%skernelcache", kDefaultCachePathSnow);
251}
252// Snow Leopard prelink kernel cache file
253else if (checkOSVersion("10.6")) {
254sprintf(kernelCacheFile, "kernelcache_%s", (archCpuType == CPU_TYPE_I386)
255? "i386" : "x86_64");
256int lnam = strlen(kernelCacheFile) + 9; //with adler32
257
258char* name;
259long prev_time = 0;
260
261struct dirstuff* cacheDir = opendir(kDefaultCachePathSnow);
262
263while(readdir(cacheDir, (const char**)&name, &flags, &time) >= 0)
264{
265if (((flags & kFileTypeMask) != kFileTypeDirectory) && time > prev_time
266&& strstr(name, kernelCacheFile) && (name[lnam] != '.'))
267{
268sprintf(kernelCacheFile, "%s%s", kDefaultCachePathSnow, name);
269prev_time = time;
270}
271}
272}
273else {
274// Reset cache name.
275bzero(gCacheNameAdler + 64, sizeof(gCacheNameAdler) - 64);
276sprintf(gCacheNameAdler + 64, "%s,%s", gRootDevice, bootInfo->bootFile);
277adler32 = Adler32((unsigned char *)gCacheNameAdler, sizeof(gCacheNameAdler));
278sprintf(kernelCacheFile, "%s.%08lX", kDefaultCachePathLeo, adler32);
279}
280}
281
282// Check if the kernel cache file exists
283ret = -1;
284
285// If boot from a boot helper partition check the kernel cache file on it
286if (gBootVolume->flags & kBVFlagBooter) {
287sprintf(kernelCachePath, "com.apple.boot.P%s", kernelCacheFile);
288ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime);
289if ((ret == -1) || ((flags & kFileTypeMask) != kFileTypeFlat))
290{
291sprintf(kernelCachePath, "com.apple.boot.R%s", kernelCacheFile);
292ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime);
293if ((ret == -1) || ((flags & kFileTypeMask) != kFileTypeFlat))
294{
295sprintf(kernelCachePath, "com.apple.boot.S%s", kernelCacheFile);
296ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime);
297if ((flags & kFileTypeMask) != kFileTypeFlat)
298ret = -1;
299}
300}
301}
302// If not found, use the original kernel cache path.
303if (ret == -1) {
304strcpy(kernelCachePath, kernelCacheFile);
305ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime);
306if ((flags & kFileTypeMask) != kFileTypeFlat)
307ret = -1;
308}
309
310// Exit if kernel cache file wasn't found
311if (ret == -1) {
312verbose("No Kernel Cache File '%s' found\n", kernelCacheFile);
313return -1;
314}
315
316// Check if the kernel cache file is more recent (mtime)
317// than the kernel file or the S/L/E directory
318ret = GetFileInfo(NULL, bootInfo->bootFile, &flags, &kerneltime);
319// Check if the kernel file is more recent than the cache file
320if ((ret == 0) && ((flags & kFileTypeMask) == kFileTypeFlat)
321&& (kerneltime > cachetime)) {
322verbose("Kernel file (%s) is more recent than KernelCache (%s), ignoring KernelCache\n",
323bootInfo->bootFile, kernelCacheFile);
324return -1;
325}
326
327ret = GetFileInfo("/System/Library/", "Extensions", &flags, &exttime);
328// Check if the S/L/E directory time is more recent than the cache file
329if ((ret == 0) && ((flags & kFileTypeMask) == kFileTypeDirectory)
330&& (exttime > cachetime)) {
331verbose("/System/Library/Extensions is more recent than KernelCache (%s), ignoring KernelCache\n",
332kernelCacheFile);
333return -1;
334}
335
336// Since the kernel cache file exists and is the most recent try to load it
337verbose("Loading kernel cache %s\n", kernelCachePath);
338
339ret = LoadThinFatFile(kernelCachePath, binary);
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 = true; // by default try to use the prelinked kernel
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
609getBoolForKey(kUseKernelCache, &useKernelCache, &bootInfo->chameleonConfig);
610if (useKernelCache) do {
611
612// Determine the name of the Kernel Cache
613if (getValueForKey(kKernelCacheKey, &val, &len, &bootInfo->bootConfig)) {
614if (val[0] == '\\')
615{
616len--;
617val++;
618}
619strlcpy(kernelCacheFile, val, len + 1);
620} else {
621kernelCacheFile[0] = 0; // Use default kernel cache file
622}
623
624if (gOverrideKernel && kernelCacheFile[0] == 0) {
625verbose("Using a non default kernel (%s) without specifying 'Kernel Cache' path, KernelCache will not be used\n",
626bootInfo->bootFile);
627useKernelCache = false;
628break;
629}
630if (gMKextName[0] != 0) {
631verbose("Using a specific MKext Cache (%s), KernelCache will not be used\n",
632gMKextName);
633useKernelCache = false;
634break;
635}
636if (gBootFileType != kBlockDeviceType)
637useKernelCache = false;
638
639} while(0);
640
641do {
642if (useKernelCache) {
643ret = LoadKernelCache(kernelCacheFile, &binary);
644if (ret >= 0)
645break;
646}
647
648bool bootFileWithDevice = false;
649// Check if bootFile start with a device ex: bt(0,0)/Extra/mach_kernel
650if (strncmp(bootInfo->bootFile,"bt(",3) == 0 ||
651strncmp(bootInfo->bootFile,"hd(",3) == 0 ||
652strncmp(bootInfo->bootFile,"rd(",3) == 0)
653bootFileWithDevice = true;
654
655// bootFile must start with a / if it not start with a device name
656if (!bootFileWithDevice && (bootInfo->bootFile)[0] != '/')
657sprintf(bootFile, "/%s", bootInfo->bootFile); // append a leading /
658else
659strlcpy(bootFile, bootInfo->bootFile, sizeof(bootFile));
660
661// Try to load kernel image from alternate locations on boot helper partitions.
662ret = -1;
663if ((gBootVolume->flags & kBVFlagBooter) && !bootFileWithDevice) {
664sprintf(bootFilePath, "com.apple.boot.P%s", bootFile);
665ret = GetFileInfo(NULL, bootFilePath, &flags, &time);
666if (ret == -1)
667{
668sprintf(bootFilePath, "com.apple.boot.R%s", bootFile);
669ret = GetFileInfo(NULL, bootFilePath, &flags, &time);
670if (ret == -1)
671{
672sprintf(bootFilePath, "com.apple.boot.S%s", bootFile);
673ret = GetFileInfo(NULL, bootFilePath, &flags, &time);
674}
675}
676}
677if (ret == -1) {
678// No alternate location found, using the original kernel image path.
679strlcpy(bootFilePath, bootFile,sizeof(bootFilePath));
680}
681
682verbose("Loading kernel %s\n", bootFilePath);
683ret = LoadThinFatFile(bootFilePath, &binary);
684if (ret <= 0 && archCpuType == CPU_TYPE_X86_64)
685{
686archCpuType = CPU_TYPE_I386;
687ret = LoadThinFatFile(bootFilePath, &binary);
688}
689} while (0);
690
691clearActivityIndicator();
692
693#if DEBUG
694printf("Pausing...");
695sleep(8);
696#endif
697
698if (ret <= 0) {
699printf("Can't find %s\n", bootFile);
700sleep(1);
701
702if (gBootFileType == kNetworkDeviceType) {
703// Return control back to PXE. Don't unload PXE base code.
704gUnloadPXEOnExit = false;
705break;
706}
707pause();
708
709} else {
710/* Won't return if successful. */
711ret = ExecKernel(binary);
712}
713}
714
715// chainboot
716if (status == 1) {
717// if we are already in graphics-mode,
718if (getVideoMode() == GRAPHICS_MODE) {
719setVideoMode(VGA_TEXT_MODE, 0); // switch back to text mode.
720}
721}
722
723if ((gBootFileType == kNetworkDeviceType) && gUnloadPXEOnExit) {
724nbpUnloadBaseCode();
725}
726}
727
728/*!
729Selects a new BIOS device, taking care to update the global state appropriately.
730 */
731/*
732static void selectBiosDevice(void)
733{
734struct DiskBVMap *oldMap = diskResetBootVolumes(gBIOSDev);
735CacheReset();
736diskFreeMap(oldMap);
737oldMap = NULL;
738
739int dev = selectAlternateBootDevice(gBIOSDev);
740
741BVRef bvchain = scanBootVolumes(dev, 0);
742BVRef bootVol = selectBootVolume(bvchain);
743gBootVolume = bootVol;
744setRootVolume(bootVol);
745gBIOSDev = dev;
746}
747*/
748
749bool checkOSVersion(const char * version)
750{
751return ((gMacOSVersion[0] == version[0]) && (gMacOSVersion[1] == version[1])
752&& (gMacOSVersion[2] == version[2]) && (gMacOSVersion[3] == version[3]));
753}
754
755static void getOSVersion()
756{
757strlcpy(gMacOSVersion, gBootVolume->OSVersion, sizeof(gMacOSVersion));
758}
759
760#define BASE 65521L /* largest prime smaller than 65536 */
761#define NMAX 5000
762// NMAX (was 5521) the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1
763
764#define DO1(buf, i){s1 += buf[i]; s2 += s1;}
765#define DO2(buf, i)DO1(buf, i); DO1(buf, i + 1);
766#define DO4(buf, i)DO2(buf, i); DO2(buf, i + 2);
767#define DO8(buf, i)DO4(buf, i); DO4(buf, i + 4);
768#define DO16(buf)DO8(buf, 0); DO8(buf, 8);
769
770unsigned long Adler32(unsigned char *buf, long len)
771{
772unsigned long s1 = 1; // adler & 0xffff;
773unsigned long s2 = 0; // (adler >> 16) & 0xffff;
774unsigned long result;
775int k;
776
777while (len > 0) {
778k = len < NMAX ? len : NMAX;
779len -= k;
780while (k >= 16) {
781DO16(buf);
782buf += 16;
783k -= 16;
784}
785if (k != 0) do {
786s1 += *buf++;
787s2 += s1;
788} while (--k);
789s1 %= BASE;
790s2 %= BASE;
791}
792result = (s2 << 16) | s1;
793return OSSwapHostToBigInt32(result);
794}
795

Archive Download this file

Revision: 2245