1 /* $NetBSD: boot1.c,v 1.18 2009/11/18 21:02:16 dsl Exp $ */
4 * Copyright (c) 2003 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
32 #include <sys/cdefs.h>
33 __RCSID("$NetBSD: boot1.c,v 1.18 2009/11/18 21:02:16 dsl Exp $");
35 #include <lib/libsa/stand.h>
36 #include <lib/libkern/libkern.h>
37 #include <biosdisk_ll.h>
39 #include <sys/param.h>
40 #include <sys/bootblock.h>
41 #include <sys/disklabel.h>
42 #include <dev/raidframe/raidframevar.h> /* For RF_PROTECTED_SECTORS */
45 #define STR(x) XSTR(x)
47 static uint32_t bios_sector
;
49 static struct biosdisk_ll d
;
51 const char *boot1(uint32_t, uint32_t *);
52 extern void putstr(const char *);
54 extern struct disklabel ptn_disklabel
;
59 return open("boot", 0);
63 boot1(uint32_t biosdev
, uint32_t *sector
)
68 bios_sector
= *sector
;
71 putstr("\r\nNetBSD/x86 " STR(FS
) " Primary Bootstrap\r\n");
73 if (set_geometry(&d
, NULL
))
74 return "set_geometry\r\n";
77 * We default to the filesystem at the start of the
84 * Maybe the filesystem is enclosed in a raid set.
85 * add in size of raidframe header and try again.
86 * (Maybe this should only be done if the filesystem
87 * magic number is absent.)
89 bios_sector
+= RF_PROTECTED_SECTORS
;
94 * Nothing at the start of the MBR partition, fallback on
95 * partition 'a' from the disklabel in this MBR partition.
97 if (ptn_disklabel
.d_magic
!= DISKMAGIC
||
98 ptn_disklabel
.d_magic2
!= DISKMAGIC
||
99 ptn_disklabel
.d_partitions
[0].p_fstype
== FS_UNUSED
)
101 bios_sector
= ptn_disklabel
.d_partitions
[0].p_offset
;
102 *sector
= bios_sector
;
103 if (ptn_disklabel
.d_partitions
[0].p_fstype
== FS_RAID
)
104 bios_sector
+= RF_PROTECTED_SECTORS
;
109 /* if we fail here, so will fstat, so keep going */
110 if (fd
== -1 || fstat(fd
, &sb
) == -1)
111 return "Can't open /boot\r\n";
113 biosdev
= (uint32_t)sb
.st_size
;
115 if (biosdev
> SECONDARY_MAX_LOAD
)
116 return "/boot too large\r\n";
119 if (read(fd
, (void *)SECONDARY_LOAD_ADDRESS
, biosdev
) != biosdev
)
120 return "/boot load failed\r\n";
122 if (*(uint32_t *)(SECONDARY_LOAD_ADDRESS
+ 4) != X86_BOOT_MAGIC_2
)
123 return "Invalid /boot file format\r\n";
125 /* We need to jump to the secondary bootstrap in realmode */
130 blkdevstrategy(void *devdata
, int flag
, daddr_t dblk
, size_t size
, void *buf
, size_t *rsize
)
135 if (size
& (BIOSDISK_DEFAULT_SECSIZE
- 1))
141 if (size
!= 0 && readsects(&d
, bios_sector
+ dblk
,
142 size
/ BIOSDISK_DEFAULT_SECSIZE
,