Chameleon

Chameleon Svn Source Tree

Root/branches/azimutz/Chazi/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 * Mach Operating System
26 * Copyright (c) 1990 Carnegie-Mellon University
27 * Copyright (c) 1989 Carnegie-Mellon University
28 * All rights reserved. The CMU software License Agreement specifies
29 * the terms and conditions for use and redistribution.
30 */
31
32/*
33 * INTEL CORPORATION PROPRIETARY INFORMATION
34 *
35 * This software is supplied under the terms of a license agreement or
36 * nondisclosure agreement with Intel Corporation and may not be copied
37 * nor disclosed except in accordance with the terms of that agreement.
38 *
39 * Copyright 1988, 1989 by Intel Corporation
40 */
41
42/*
43 * Copyright 1993 NeXT Computer, Inc.
44 * All rights reserved.
45 */
46
47/*
48 * Completely reworked by Sam Streeper (sam_s@NeXT.com)
49 * Reworked again by Curtis Galloway (galloway@NeXT.com)
50 */
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
62long gBootMode; /* defaults to 0 == kBootModeNormal */
63bool gOverrideKernel;
64static char gBootKernelCacheFile[512];
65static char gCacheNameAdler[64 + 256];
66//char *gPlatformName = gCacheNameAdler; disabled
67char gRootDevice[512];
68char gMKextName[512];
69bool gEnableCDROMRescan;
70bool gScanSingleDrive;
71
72int bvCount = 0;
73//intmenucount = 0;
74int gDeviceCount = 0;
75
76BVRef bvr;
77BVRef menuBVR;
78BVRef bvChain;
79bool useGUI;
80
81//static void selectBiosDevice(void);
82static unsigned long Adler32(unsigned char *buffer, long length);
83
84
85static bool gUnloadPXEOnExit = false;
86
87/*
88 * How long to wait (in seconds) to load the
89 * kernel after displaying the "boot:" prompt.
90 */
91#define kBootErrorTimeout 5
92
93/*
94 * Default path to kernel cache file
95 */
96#define kDefaultCachePath "/System/Library/Caches/com.apple.kernelcaches/kernelcache"
97
98//==========================================================================
99// Zero the BSS.
100
101static void zeroBSS(void)
102{
103extern char _DATA__bss__begin, _DATA__bss__end;
104extern char _DATA__common__begin, _DATA__common__end;
105
106bzero(&_DATA__bss__begin, (&_DATA__bss__end - &_DATA__bss__begin));
107bzero(&_DATA__common__begin, (&_DATA__common__end - &_DATA__common__begin));
108}
109
110//==========================================================================
111// Malloc error function
112
113static void malloc_error(char *addr, size_t size, const char *file, int line)
114{
115stop("\nMemory allocation error! Addr=0x%x, Size=0x%x, File=%s, Line=%d\n", (unsigned)addr, (unsigned)size, file, line);
116}
117
118//==========================================================================
119//Initializes the runtime. Right now this means zeroing the BSS and initializing malloc.
120//
121void initialize_runtime(void)
122{
123zeroBSS();
124malloc_init(0, 0, 0, malloc_error);
125}
126
127//==========================================================================
128// execKernel - Load the kernel image (mach-o) and jump to its entry point.
129
130static int ExecKernel(void *binary)
131{
132 entry_t kernelEntry;
133 int ret;
134
135 bootArgs->kaddr = bootArgs->ksize = 0;
136
137 ret = DecodeKernel(binary,
138 &kernelEntry,
139 (char **) &bootArgs->kaddr,
140 (int *)&bootArgs->ksize );
141
142 if ( ret != 0 )
143 return ret;
144
145 // Reserve space for boot args
146 reserveKernBootStruct();
147
148 // Load boot drivers from the specifed root path.
149
150 if (!gHaveKernelCache) {
151 LoadDrivers("/");
152 }
153
154 clearActivityIndicator();
155
156 if (gErrors) {
157 printf("Errors encountered while starting up the computer.\n");
158 printf("Pausing %d seconds...\n", kBootErrorTimeout);
159 sleep(kBootErrorTimeout);
160 }
161
162 setupFakeEfi();
163
164 md0Ramdisk();
165
166 verbose("Starting Darwin %s\n",( archCpuType == CPU_TYPE_I386 ) ? "x86" : "x86_64");
167
168 // Cleanup the PXE base code.
169
170 if ( (gBootFileType == kNetworkDeviceType) && gUnloadPXEOnExit ) {
171if ( (ret = nbpUnloadBaseCode()) != nbpStatusSuccess )
172 {
173 printf("nbpUnloadBaseCode error %d\n", (int) ret);
174 sleep(2);
175 }
176 }
177
178 bool dummyVal;
179
180//Azi: Wait=y is breaking other keys when typed "after them" at boot prompt.
181// Works properly if typed in first place or used on Boot.plist.
182if (getBoolForKey(kWaitForKeypressKey, &dummyVal, &bootInfo->bootConfig) && dummyVal) {
183pause();
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.
191
192 if(gVerboseMode)
193 setVideoMode( GRAPHICS_MODE, 0 );
194 else
195 drawBootGraphics();
196
197setupBooterLog();
198
199 finalizeBootStruct();
200
201 // Jump to kernel's entry point. There's no going back now.
202
203 startprog( kernelEntry, bootArgs );
204
205 // Not reached
206
207 return 0;
208}
209
210//==========================================================================
211// This is the entrypoint from real-mode which functions exactly as it did
212// before. Multiboot does its own runtime initialization, does some of its
213// own things, and then calls common_boot.
214void boot(int biosdev)
215{
216initialize_runtime();
217// Enable A20 gate before accessing memory above 1Mb.
218enableA20();
219common_boot(biosdev);
220}
221
222//==========================================================================
223// The 'main' function for the booter. Called by boot0 when booting
224// from a block device, or by the network booter.
225//
226// arguments:
227// biosdev - Value passed from boot1/NBP to specify the device
228// that the booter was loaded from.
229//
230// If biosdev is kBIOSDevNetwork, then this function will return if
231// booting was unsuccessful. This allows the PXE firmware to try the
232// next boot device on its list.
233void common_boot(int biosdev)
234{
235 int status;
236 char *bootFile;
237 unsigned long adler32;
238 bool quiet;
239 bool firstRun = true;
240 bool instantMenu;
241 bool rescanPrompt;
242 unsigned int allowBVFlags = kBVFlagSystemVolume|kBVFlagForeignBoot;
243 unsigned int denyBVFlags = kBVFlagEFISystem;
244
245 // Set reminder to unload the PXE base code. Neglect to unload
246 // the base code will result in a hang or kernel panic.
247 gUnloadPXEOnExit = true;
248
249 // Record the device that the booter was loaded from.
250 gBIOSDev = biosdev & kBIOSDevMask;
251
252 // Initialize boot info structure.
253 initKernBootStruct();
254
255initBooterLog();
256
257 // Setup VGA text mode.
258 // Not sure if it is safe to call setVideoMode() before the
259 // config table has been loaded. Call video_mode() instead.
260#if DEBUG
261 printf("before video_mode\n");
262#endif
263 video_mode( 2 ); // 80x25 mono text mode.
264#if DEBUG
265 printf("after video_mode\n");
266#endif
267
268 // Scan and record the system's hardware information.
269 scan_platform();
270
271 // First get info for boot volume.
272 scanBootVolumes(gBIOSDev, 0);
273 bvChain = getBVChainForBIOSDev(gBIOSDev);
274 setBootGlobals(bvChain);
275
276 // Load boot.plist config file
277 status = loadSystemConfig(&bootInfo->bootConfig);
278
279 if (getBoolForKey(kQuietBootKey, &quiet, &bootInfo->bootConfig) && quiet) {
280 gBootMode |= kBootModeQuiet;
281 }
282
283 // Override firstRun to get to the boot menu instantly by setting "Instant Menu"=y in system config
284 if (getBoolForKey(kInstantMenuKey, &instantMenu, &bootInfo->bootConfig) && instantMenu) {
285 firstRun = false;
286 }
287
288 // Loading preboot ramdisk if exists.
289 loadPrebootRAMDisk();
290
291 // Disable rescan option by default
292 gEnableCDROMRescan = false;
293
294 // Enable it with Rescan=y in system config
295 if (getBoolForKey(kRescanKey, &gEnableCDROMRescan, &bootInfo->bootConfig) && gEnableCDROMRescan) {
296 gEnableCDROMRescan = true;
297 }
298
299 // Ask the user for Rescan option by setting "Rescan Prompt"=y in system config.
300 rescanPrompt = false;
301 if (getBoolForKey(kRescanPromptKey, &rescanPrompt , &bootInfo->bootConfig) && rescanPrompt && biosDevIsCDROM(gBIOSDev)) {
302 gEnableCDROMRescan = promptForRescanOption();
303 }
304
305 // Enable touching a single BIOS device only if "Scan Single Drive"=y is set in system config.
306 if (getBoolForKey(kScanSingleDriveKey, &gScanSingleDrive, &bootInfo->bootConfig) && gScanSingleDrive) {
307 gScanSingleDrive = true;
308 }
309
310 // Create a list of partitions on device(s).
311 if (gScanSingleDrive) {
312 scanBootVolumes(gBIOSDev, &bvCount);
313 } else {
314 scanDisks(gBIOSDev, &bvCount);
315 }
316
317 // Create a separated bvr chain using the specified filters.
318 bvChain = newFilteredBVChain(0x80, 0xFF, allowBVFlags, denyBVFlags, &gDeviceCount);
319
320 gBootVolume = selectBootVolume(bvChain);
321
322#if DEBUG
323 printf(" Default: %d, ->biosdev: %d, ->part_no: %d ->flags: %d\n", gBootVolume, gBootVolume->biosdev, gBootVolume->part_no, gBootVolume->flags);
324 printf(" bt(0,0): %d, ->biosdev: %d, ->part_no: %d ->flags: %d\n", gBIOSBootVolume, gBIOSBootVolume->biosdev, gBIOSBootVolume->part_no, gBIOSBootVolume->flags);
325 getc();
326#endif
327
328 useGUI = true;
329 // Override useGUI default
330 getBoolForKey(kGUIKey, &useGUI, &bootInfo->bootConfig);
331
332/*
333 * AutoResolution
334 */
335// Before initGui, patch the video bios with the correct resolution
336UInt32 params[4];
337params[3] = 0;
338
339// default to "false" as it doesn't work for everyone atm.
340// http://forum.voodooprojects.org/index.php/topic,1227.0.html
341gAutoResolution = false;
342
343getBoolForKey(kAutoResolutionKey, &gAutoResolution, &bootInfo->bootConfig);
344
345//Open the VBios and store VBios or Tables
346map = openVbios(CT_UNKWN);
347
348if (gAutoResolution == true)
349{
350//Get Resolution from Graphics Mode key or EDID
351int count = getNumberArrayFromProperty(kGraphicsModeKey, params, 4);
352if (count < 3)
353getResolution(params);
354else
355{
356if ( params[2] == 256 ) params[2] = 8;
357if ( params[2] == 555 ) params[2] = 16;
358if ( params[2] == 888 ) params[2] = 32;
359}
360
361#ifdef AUTORES_DEBUG
362printf("Resolution: %dx%d\n",params[0], params[1]);
363#endif
364
365//perfom the actual VBIOS patching
366if (params[0] != 0 && params[1] != 0)
367patchVbios(map, params[0], params[1], params[2], 0, 0);
368}
369
370 if (useGUI && initGUI())
371{
372// initGUI() returned with an error, disabling GUI.
373useGUI = false;
374}
375
376 setBootGlobals(bvChain);
377
378 // Parse args, load and start kernel.
379 while (1) {
380 const char *val;
381 int len;
382 int trycache;
383 long flags, cachetime, kerneltime, exttime, sleeptime, time;
384 int ret = -1;
385 void *binary = (void *)kLoadAddr;
386 bool tryresume;
387 bool tryresumedefault;
388 bool forceresume;
389
390 // additional variable for testing alternate kernel image locations on boot helper partitions.
391 char bootFileSpec[512];
392
393 // Initialize globals.
394
395 sysConfigValid = false;
396 gErrors = false;
397
398 status = getBootOptions(firstRun);
399 firstRun = false;
400 if (status == -1) continue;
401
402//Azi: i'm now almost sure that here is the right place to do this! - test (gBootVolume == NULL)
403// Turn off any GUI elements, draw background and update VRAM.
404if ( bootArgs->Video.v_display == GRAPHICS_MODE )
405{
406gui.devicelist.draw = false;
407gui.bootprompt.draw = false;
408gui.menu.draw = false;
409gui.infobox.draw = false;
410gui.logo.draw = false;
411drawBackground();
412updateVRAM();
413}
414
415//
416//AutoResolution - Reapply the patch or cancel if Graphics Mode was incorrect
417// or EDID Info was insane
418getBoolForKey(kAutoResolutionKey, &gAutoResolution, &bootInfo->bootConfig);
419
420//Restore the vbios for Cancelation
421if ((gAutoResolution == false) && map)
422{
423restoreVbios(map);
424closeVbios(map);
425}
426
427if ((gAutoResolution == true) && map)
428{
429// If mode has been switched during boot menu
430// use the new resolution
431if (map->hasSwitched == true)
432{
433params[0] = map->currentX;
434params[1] = map->currentY;
435params[2] = 32;
436}
437else
438{
439//or get resolution from Graphics Mode or EDID
440int count = getNumberArrayFromProperty(kGraphicsModeKey, params, 4);
441if (count < 3)
442getResolution(params);
443else
444{
445if ( params[2] == 256 ) params[2] = 8;
446if ( params[2] == 555 ) params[2] = 16;
447if ( params[2] == 888 ) params[2] = 32;
448}
449}
450
451//Resolution has changed, reapply the patch
452if ((params[0] != 0) && (params[1] != 0) && (params[0] != map->currentX) &&
453(params[1] != map->currentY))
454{
455patchVbios(map, params[0], params[1], params[2], 0, 0);
456}
457closeVbios(map);
458}
459
460 status = processBootOptions();
461// Status == 1 means to chainboot
462if ( status ==1 ) break;
463// Status == -1 means that gBootVolume is NULL. Config file is not mandatory anymore!
464if ( status == -1 )
465{
466// gBootVolume == NULL usually means the user hit escape.
467if (gBootVolume == NULL)
468{
469freeFilteredBVChain(bvChain);
470
471if (gEnableCDROMRescan)
472rescanBIOSDevice(gBIOSDev);
473
474bvChain = newFilteredBVChain(0x80, 0xFF, allowBVFlags, denyBVFlags, &gDeviceCount);
475setBootGlobals(bvChain);
476setupDeviceList(&bootInfo->themeConfig);
477}
478continue;
479}
480
481 // Other status (e.g. 0) means that we should proceed with boot.
482
483// If cpu doesn't handle 64 bit instructions,...
484if (!platformCPUFeature(CPU_FEATURE_EM64T) ||
485// ... user forced i386 kernel architecture on cpu with "em64t"...
486getValueForKey(kArchI386Flag, &val, &len, &bootInfo->bootConfig) ||
487// ... or forced Legacy Mode...
488getValueForKey(kLegacyModeFlag, &val, &len, &bootInfo->bootConfig))
489{
490// ... use i386 kernel arch.
491archCpuType = CPU_TYPE_I386;
492}
493else
494{
495// Else use x86_64 kernel arch.
496archCpuType = CPU_TYPE_X86_64;
497}
498// Override i386/-legacy, if flagged on Boot.plist.
499if (getValueForKey(kArchX86_64Flag, &val, &len, &bootInfo->bootConfig))
500{
501archCpuType = CPU_TYPE_X86_64;
502}
503
504if (!getBoolForKey (kWake, &tryresume, &bootInfo->bootConfig)) {
505tryresume = true;
506tryresumedefault = true;
507} else {
508tryresumedefault = false;
509}
510
511if (!getBoolForKey (kForceWake, &forceresume, &bootInfo->bootConfig)) {
512forceresume = false;
513}
514
515if (forceresume) {
516tryresume = true;
517tryresumedefault = false;
518}
519
520while (tryresume) {
521const char *tmp;
522BVRef bvr;
523if (!getValueForKey(kWakeImage, &val, &len, &bootInfo->bootConfig))
524val="/private/var/vm/sleepimage";
525
526// Do this first to be sure that root volume is mounted
527ret = GetFileInfo(0, val, &flags, &sleeptime);
528
529if ((bvr = getBootVolumeRef(val, &tmp)) == NULL)
530break;
531
532// Can't check if it was hibernation Wake=y is required
533if (bvr->modTime == 0 && tryresumedefault)
534break;
535
536if ((ret != 0) || ((flags & kFileTypeMask) != kFileTypeFlat))
537break;
538
539if (!forceresume && ((sleeptime+3)<bvr->modTime)) {
540printf ("Hibernate image is too old by %d seconds. Use ForceWake=y to override\n",bvr->modTime-sleeptime);
541break;
542}
543
544HibernateBoot((char *)val);
545break;
546}
547
548 // Reset cache name.
549 bzero(gCacheNameAdler + 64, sizeof(gCacheNameAdler) - 64);
550
551 sprintf(gCacheNameAdler + 64, "%s,%s", gRootDevice, bootInfo->bootFile);
552
553 adler32 = Adler32((unsigned char *)gCacheNameAdler, sizeof(gCacheNameAdler));
554
555 if (getValueForKey(kKernelCacheKey, &val, &len, &bootInfo->bootConfig)) {
556 strlcpy(gBootKernelCacheFile, val, len+1);
557 } else {
558 sprintf(gBootKernelCacheFile, "%s.%08lX", kDefaultCachePath, adler32);
559 }
560
561 // Check for cache file.
562 trycache = (((gBootMode & kBootModeSafe) == 0) &&
563 !gOverrideKernel &&
564 (gBootFileType == kBlockDeviceType) &&
565 (gMKextName[0] == '\0') &&
566 (gBootKernelCacheFile[0] != '\0'));
567
568verbose("Loading Darwin %s\n", gMacOSVersion);
569
570 if (trycache) do {
571
572 // if we haven't found the kernel yet, don't use the cache
573 ret = GetFileInfo(NULL, bootInfo->bootFile, &flags, &kerneltime);
574 if ((ret != 0) || ((flags & kFileTypeMask) != kFileTypeFlat)) {
575 trycache = 0;
576 break;
577 }
578 ret = GetFileInfo(NULL, gBootKernelCacheFile, &flags, &cachetime);
579 if ((ret != 0) || ((flags & kFileTypeMask) != kFileTypeFlat)
580 || (cachetime < kerneltime)) {
581 trycache = 0;
582 break;
583 }
584 ret = GetFileInfo("/System/Library/", "Extensions", &flags, &exttime);
585 if ((ret == 0) && ((flags & kFileTypeMask) == kFileTypeDirectory)
586 && (cachetime < exttime)) {
587 trycache = 0;
588 break;
589 }
590 if (kerneltime > exttime) {
591 exttime = kerneltime;
592 }
593 if (cachetime != (exttime + 1)) {
594 trycache = 0;
595 break;
596 }
597 } while (0);
598
599 do {
600 if (trycache) {
601 bootFile = gBootKernelCacheFile;
602 verbose("Loading kernel cache %s\n", bootFile);
603 ret = LoadFile(bootFile);
604 binary = (void *)kLoadAddr;
605 if (ret >= 0) {
606 break;
607 }
608 }
609 bootFile = bootInfo->bootFile;
610
611 // Try to load kernel image from alternate locations on boot helper partitions.
612 sprintf(bootFileSpec, "com.apple.boot.P/%s", bootFile);
613 ret = GetFileInfo(NULL, bootFileSpec, &flags, &time);
614 if (ret == -1)
615 {
616 sprintf(bootFileSpec, "com.apple.boot.R/%s", bootFile);
617 ret = GetFileInfo(NULL, bootFileSpec, &flags, &time);
618 if (ret == -1)
619 {
620 sprintf(bootFileSpec, "com.apple.boot.S/%s", bootFile);
621 ret = GetFileInfo(NULL, bootFileSpec, &flags, &time);
622 if (ret == -1)
623 {
624 // Not found any alternate locations, using the original kernel image path.
625 strcpy(bootFileSpec, bootFile);
626 }
627 }
628 }
629
630 verbose("Loading kernel %s\n", bootFileSpec);
631 ret = LoadThinFatFile(bootFileSpec, &binary);
632 if (ret <= 0 && archCpuType == CPU_TYPE_X86_64)
633 {
634 archCpuType = CPU_TYPE_I386;
635 ret = LoadThinFatFile(bootFileSpec, &binary);
636 }
637
638 } while (0);
639
640 clearActivityIndicator();
641#if DEBUG
642 printf("Pausing...");
643 sleep(8);
644#endif
645
646 if (ret <= 0) {
647printf("Can't find %s\n", bootFile);
648
649sleep(1);
650
651 if (gBootFileType == kNetworkDeviceType) {
652 // Return control back to PXE. Don't unload PXE base code.
653 gUnloadPXEOnExit = false;
654 break;
655 }
656 } else {
657 /* Won't return if successful. */
658 ret = ExecKernel(binary);
659 }
660 }
661
662 // chainboot
663 if (status==1) {
664if (getVideoMode() == GRAPHICS_MODE) {// if we are already in graphics-mode,
665setVideoMode(VGA_TEXT_MODE, 0);// switch back to text mode
666}
667 }
668
669 if ((gBootFileType == kNetworkDeviceType) && gUnloadPXEOnExit) {
670nbpUnloadBaseCode();
671 }
672}
673
674/*!
675 Selects a new BIOS device, taking care to update the global state appropriately.
676 */
677/*
678static void selectBiosDevice(void)
679{
680 struct DiskBVMap *oldMap = diskResetBootVolumes(gBIOSDev);
681 CacheReset();
682 diskFreeMap(oldMap);
683 oldMap = NULL;
684
685 int dev = selectAlternateBootDevice(gBIOSDev);
686
687 BVRef bvchain = scanBootVolumes(dev, 0);
688 BVRef bootVol = selectBootVolume(bvchain);
689 gBootVolume = bootVol;
690 setRootVolume(bootVol);
691 gBIOSDev = dev;
692}
693*/
694
695#define BASE 65521L /* largest prime smaller than 65536 */
696#define NMAX 5000
697// NMAX (was 5521) the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1
698
699#define DO1(buf,i) {s1 += buf[i]; s2 += s1;}
700#define DO2(buf,i) DO1(buf,i); DO1(buf,i+1);
701#define DO4(buf,i) DO2(buf,i); DO2(buf,i+2);
702#define DO8(buf,i) DO4(buf,i); DO4(buf,i+4);
703#define DO16(buf) DO8(buf,0); DO8(buf,8);
704
705unsigned long Adler32(unsigned char *buf, long len)
706{
707 unsigned long s1 = 1; // adler & 0xffff;
708 unsigned long s2 = 0; // (adler >> 16) & 0xffff;
709 unsigned long result;
710 int k;
711
712 while (len > 0) {
713 k = len < NMAX ? len : NMAX;
714 len -= k;
715 while (k >= 16) {
716 DO16(buf);
717 buf += 16;
718 k -= 16;
719 }
720 if (k != 0) do {
721 s1 += *buf++;
722 s2 += s1;
723 } while (--k);
724 s1 %= BASE;
725 s2 %= BASE;
726 }
727 result = (s2 << 16) | s1;
728 return OSSwapHostToBigInt32(result);
729}
730

Archive Download this file

Revision: 469