Chameleon

Chameleon Svn Source Tree

Root/branches/Bungo/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");
99extern char bss_end __asm("section$end$__DATA$__bss");
100extern char common_start __asm("section$start$__DATA$__common");
101extern 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 ) {
175printf("nbpUnloadBaseCode error %d\n", (int) ret);
176sleep(2);
177}
178}
179
180bool dummyVal;
181if (getBoolForKey(kWaitForKeypressKey, &dummyVal, &bootInfo->chameleonConfig) && dummyVal) {
182showTextBuffer(msgbuf, strlen(msgbuf));
183}
184
185usb_loop();
186
187// If we were in text mode, switch to graphics mode.
188// This will draw the boot graphics unless we are in
189// verbose mode.
190if (gVerboseMode) {
191setVideoMode( GRAPHICS_MODE, 0 );
192} else {
193drawBootGraphics();
194}
195setupBooterLog();
196
197finalizeBootStruct();
198
199// Jump to kernel's entry point. There's no going back now.
200if ((checkOSVersion("10.7")) || (checkOSVersion("10.8")) || (checkOSVersion("10.9")))
201{
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} else {
212// Notify modules that the kernel is about to be started
213execute_hook("Kernel Start", (void*)kernelEntry, (void*)bootArgsPreLion, NULL, NULL);
214
215startprog( kernelEntry, bootArgsPreLion );
216}
217
218// Not reached
219return 0;
220}
221
222
223//==========================================================================
224// LoadKernelCache - Try to load Kernel Cache.
225// return the length of the loaded cache file or -1 on error
226long LoadKernelCache(const char* cacheFile, void **binary)
227{
228charkernelCacheFile[512];
229charkernelCachePath[512];
230longflags, time, cachetime, kerneltime, exttime, ret=-1;
231unsigned long adler32;
232
233if((gBootMode & kBootModeSafe) != 0) {
234verbose("Kernel Cache ignored.\n");
235return -1;
236}
237
238// Use specify kernel cache file if not empty
239if (cacheFile[0] != 0)
240{
241strlcpy(kernelCacheFile, cacheFile, sizeof(kernelCacheFile));
242}
243else
244{
245// Lion, Mountain Lion and Mavericks prelink kernel cache file
246if ((checkOSVersion("10.7")) || (checkOSVersion("10.8")) || (checkOSVersion("10.9")))
247{
248snprintf(kernelCacheFile, sizeof(kernelCacheFile), "%skernelcache", kDefaultCachePathSnow);
249}
250// Snow Leopard prelink kernel cache file
251else if (checkOSVersion("10.6")) {
252snprintf(kernelCacheFile, sizeof(kernelCacheFile), "kernelcache_%s",
253(archCpuType == CPU_TYPE_I386) ? "i386" : "x86_64");
254int lnam = strlen(kernelCacheFile) + 9; //with adler32
255
256char* name;
257long prev_time = 0;
258
259struct dirstuff* cacheDir = opendir(kDefaultCachePathSnow);
260/* TODO: handle error? */
261if (cacheDir) {
262while(readdir(cacheDir, (const char**)&name, &flags, &time) >= 0) {
263if (((flags & kFileTypeMask) != kFileTypeDirectory) && time > prev_time
264&& strstr(name, kernelCacheFile) && (name[lnam] != '.')) {
265snprintf(kernelCacheFile, sizeof(kernelCacheFile), "%s%s", kDefaultCachePathSnow, name);
266prev_time = time;
267}
268}
269}
270closedir(cacheDir);
271} else {
272// Reset cache name.
273bzero(gCacheNameAdler + 64, sizeof(gCacheNameAdler) - 64);
274snprintf(gCacheNameAdler + 64, sizeof(gCacheNameAdler) - 64,
275"%s,%s",
276gRootDevice, bootInfo->bootFile);
277adler32 = Adler32((unsigned char *)gCacheNameAdler, sizeof(gCacheNameAdler));
278snprintf(kernelCacheFile, sizeof(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) {
287snprintf(kernelCachePath, sizeof(kernelCachePath), "com.apple.boot.P%s", kernelCacheFile);
288ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime);
289if ((ret == -1) || ((flags & kFileTypeMask) != kFileTypeFlat)) {
290snprintf(kernelCachePath, sizeof(kernelCachePath), "com.apple.boot.R%s", kernelCacheFile);
291ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime);
292if ((ret == -1) || ((flags & kFileTypeMask) != kFileTypeFlat)) {
293snprintf(kernelCachePath, sizeof(kernelCachePath), "com.apple.boot.S%s", kernelCacheFile);
294ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime);
295if ((flags & kFileTypeMask) != kFileTypeFlat) {
296ret = -1;
297}
298}
299}
300}
301// If not found, use the original kernel cache path.
302if (ret == -1) {
303strlcpy(kernelCachePath, kernelCacheFile, sizeof(kernelCachePath));
304ret = GetFileInfo(NULL, kernelCachePath, &flags, &cachetime);
305if ((flags & kFileTypeMask) != kFileTypeFlat) {
306ret = -1;
307}
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}
619/* FIXME: check len vs sizeof(kernelCacheFile) */
620strlcpy(kernelCacheFile, val, len + 1);
621} else {
622kernelCacheFile[0] = 0; // Use default kernel cache file
623}
624
625if (gOverrideKernel && kernelCacheFile[0] == 0) {
626verbose("Using a non default kernel (%s) without specifying 'Kernel Cache' path, KernelCache will not be used\n",
627bootInfo->bootFile);
628useKernelCache = false;
629break;
630}
631if (gMKextName[0] != 0) {
632verbose("Using a specific MKext Cache (%s), KernelCache will not be used\n",
633gMKextName);
634useKernelCache = false;
635break;
636}
637if (gBootFileType != kBlockDeviceType)
638useKernelCache = false;
639
640} while(0);
641
642do {
643if (useKernelCache) {
644ret = LoadKernelCache(kernelCacheFile, &binary);
645if (ret >= 0)
646break;
647}
648
649bool bootFileWithDevice = false;
650// Check if bootFile start with a device ex: bt(0,0)/Extra/mach_kernel
651if (strncmp(bootInfo->bootFile,"bt(",3) == 0 ||
652strncmp(bootInfo->bootFile,"hd(",3) == 0 ||
653strncmp(bootInfo->bootFile,"rd(",3) == 0)
654bootFileWithDevice = true;
655
656// bootFile must start with a / if it not start with a device name
657if (!bootFileWithDevice && (bootInfo->bootFile)[0] != '/')
658snprintf(bootFile, sizeof(bootFile), "/%s", bootInfo->bootFile); // append a leading /
659else
660strlcpy(bootFile, bootInfo->bootFile, sizeof(bootFile));
661
662// Try to load kernel image from alternate locations on boot helper partitions.
663ret = -1;
664if ((gBootVolume->flags & kBVFlagBooter) && !bootFileWithDevice) {
665snprintf(bootFilePath, sizeof(bootFilePath), "com.apple.boot.P%s", bootFile);
666ret = GetFileInfo(NULL, bootFilePath, &flags, &time);
667if (ret == -1)
668{
669snprintf(bootFilePath, sizeof(bootFilePath), "com.apple.boot.R%s", bootFile);
670ret = GetFileInfo(NULL, bootFilePath, &flags, &time);
671if (ret == -1)
672{
673snprintf(bootFilePath, sizeof(bootFilePath), "com.apple.boot.S%s", bootFile);
674ret = GetFileInfo(NULL, bootFilePath, &flags, &time);
675}
676}
677}
678if (ret == -1) {
679// No alternate location found, using the original kernel image path.
680strlcpy(bootFilePath, bootFile, sizeof(bootFilePath));
681}
682
683verbose("Loading kernel %s\n", bootFilePath);
684ret = LoadThinFatFile(bootFilePath, &binary);
685if (ret <= 0 && archCpuType == CPU_TYPE_X86_64)
686{
687archCpuType = CPU_TYPE_I386;
688ret = LoadThinFatFile(bootFilePath, &binary);
689}
690} while (0);
691
692clearActivityIndicator();
693
694#if DEBUG
695printf("Pausing...");
696sleep(8);
697#endif
698
699if (ret <= 0) {
700printf("Can't find %s\n", bootFile);
701sleep(1);
702
703if (gBootFileType == kNetworkDeviceType) {
704// Return control back to PXE. Don't unload PXE base code.
705gUnloadPXEOnExit = false;
706break;
707}
708pause();
709
710} else {
711/* Won't return if successful. */
712ret = ExecKernel(binary);
713}
714}
715
716// chainboot
717if (status == 1) {
718// if we are already in graphics-mode,
719if (getVideoMode() == GRAPHICS_MODE) {
720setVideoMode(VGA_TEXT_MODE, 0); // switch back to text mode.
721}
722}
723
724if ((gBootFileType == kNetworkDeviceType) && gUnloadPXEOnExit) {
725nbpUnloadBaseCode();
726}
727}
728
729/*!
730Selects a new BIOS device, taking care to update the global state appropriately.
731 */
732/*
733static void selectBiosDevice(void)
734{
735struct DiskBVMap *oldMap = diskResetBootVolumes(gBIOSDev);
736CacheReset();
737diskFreeMap(oldMap);
738oldMap = NULL;
739
740int dev = selectAlternateBootDevice(gBIOSDev);
741
742BVRef bvchain = scanBootVolumes(dev, 0);
743BVRef bootVol = selectBootVolume(bvchain);
744gBootVolume = bootVol;
745setRootVolume(bootVol);
746gBIOSDev = dev;
747}
748*/
749
750bool checkOSVersion(const char * version)
751{
752return ((gMacOSVersion[0] == version[0]) && (gMacOSVersion[1] == version[1])
753&& (gMacOSVersion[2] == version[2]) && (gMacOSVersion[3] == version[3]));
754}
755
756static void getOSVersion()
757{
758strncpy(gMacOSVersion, gBootVolume->OSVersion, sizeof(gMacOSVersion));
759}
760
761#define BASE 65521L /* largest prime smaller than 65536 */
762#define NMAX 5000
763// NMAX (was 5521) the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1
764
765#define DO1(buf, i){s1 += buf[i]; s2 += s1;}
766#define DO2(buf, i)DO1(buf, i); DO1(buf, i + 1);
767#define DO4(buf, i)DO2(buf, i); DO2(buf, i + 2);
768#define DO8(buf, i)DO4(buf, i); DO4(buf, i + 4);
769#define DO16(buf)DO8(buf, 0); DO8(buf, 8);
770
771unsigned long Adler32(unsigned char *buf, long len)
772{
773unsigned long s1 = 1; // adler & 0xffff;
774unsigned long s2 = 0; // (adler >> 16) & 0xffff;
775unsigned long result;
776int k;
777
778while (len > 0) {
779k = len < NMAX ? len : NMAX;
780len -= k;
781while (k >= 16) {
782DO16(buf);
783buf += 16;
784k -= 16;
785}
786if (k != 0) do {
787s1 += *buf++;
788s2 += s1;
789} while (--k);
790s1 %= BASE;
791s2 %= BASE;
792}
793result = (s2 << 16) | s1;
794return OSSwapHostToBigInt32(result);
795}
796

Archive Download this file

Revision: 2340