Chameleon

Chameleon Svn Source Tree

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

Archive Download this file

Revision: 2502