hp300.c revision 1.3 1 1.2 uwe /* $NetBSD: hp300.c,v 1.3 2003/11/10 10:48:30 dsl Exp $ */
2 1.1 dsl
3 1.1 dsl /*-
4 1.1 dsl * Copyright (c) 2003 The NetBSD Foundation, Inc.
5 1.1 dsl * All rights reserved.
6 1.1 dsl *
7 1.1 dsl * This code is derived from software contributed to The NetBSD Foundation
8 1.1 dsl * by David Laight.
9 1.1 dsl *
10 1.1 dsl * Redistribution and use in source and binary forms, with or without
11 1.1 dsl * modification, are permitted provided that the following conditions
12 1.1 dsl * are met:
13 1.1 dsl * 1. Redistributions of source code must retain the above copyright
14 1.1 dsl * notice, this list of conditions and the following disclaimer.
15 1.1 dsl * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 dsl * notice, this list of conditions and the following disclaimer in the
17 1.1 dsl * documentation and/or other materials provided with the distribution.
18 1.1 dsl * 3. All advertising materials mentioning features or use of this software
19 1.1 dsl * must display the following acknowledgement:
20 1.1 dsl * This product includes software developed by the NetBSD
21 1.1 dsl * Foundation, Inc. and its contributors.
22 1.1 dsl * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 dsl * contributors may be used to endorse or promote products derived
24 1.1 dsl * from this software without specific prior written permission.
25 1.1 dsl *
26 1.1 dsl * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 dsl * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 dsl * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 dsl * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 dsl * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 dsl * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 dsl * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 dsl * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 dsl * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 dsl * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 dsl * POSSIBILITY OF SUCH DAMAGE.
37 1.1 dsl */
38 1.1 dsl
39 1.1 dsl #if HAVE_NBTOOL_CONFIG_H
40 1.1 dsl #include "nbtool_config.h"
41 1.1 dsl #endif
42 1.1 dsl
43 1.1 dsl #include <sys/cdefs.h>
44 1.1 dsl #if !defined(__lint)
45 1.2 uwe __RCSID("$NetBSD: hp300.c,v 1.3 2003/11/10 10:48:30 dsl Exp $");
46 1.1 dsl #endif /* !__lint */
47 1.1 dsl
48 1.3 dsl /* We need the target disklabel.h, not the hosts one..... */
49 1.3 dsl #ifdef HAVE_NBTOOL_CONFIG_H
50 1.3 dsl #include "nbtool_config.h"
51 1.3 dsl #undef __HAVE_OLD_DISKLABEL /* host's <machine/types.h> may define this */
52 1.3 dsl #include "../../sys/arch/hp300/include/disklabel.h"
53 1.3 dsl #include "../../sys/sys/disklabel.h"
54 1.3 dsl #else
55 1.1 dsl #include <sys/disklabel.h>
56 1.3 dsl #endif
57 1.1 dsl #include <sys/fcntl.h>
58 1.1 dsl #include <sys/ioctl.h>
59 1.1 dsl #include <sys/mman.h>
60 1.1 dsl #include <sys/param.h>
61 1.1 dsl
62 1.1 dsl #include <assert.h>
63 1.1 dsl #include <err.h>
64 1.1 dsl #include <md5.h>
65 1.1 dsl #include <stddef.h>
66 1.1 dsl #include <stdio.h>
67 1.1 dsl #include <stdlib.h>
68 1.1 dsl #include <string.h>
69 1.1 dsl #include <unistd.h>
70 1.1 dsl
71 1.1 dsl #include "installboot.h"
72 1.1 dsl #include "hp300_volhdr.h"
73 1.1 dsl
74 1.1 dsl int
75 1.1 dsl hp300_setboot(ib_params *params)
76 1.1 dsl {
77 1.1 dsl int retval;
78 1.1 dsl uint8_t *bootstrap;
79 1.1 dsl ssize_t rv;
80 1.1 dsl struct partition *boot;
81 1.1 dsl struct hp300_lifdir *lifdir;
82 1.1 dsl int offset;
83 1.1 dsl int i;
84 1.3 dsl uint secsize;
85 1.3 dsl uint64_t boot_size, boot_offset;
86 1.3 dsl char label_buf[DEV_BSIZE];
87 1.3 dsl struct disklabel *label = (void *)label_buf;
88 1.1 dsl
89 1.1 dsl assert(params != NULL);
90 1.1 dsl assert(params->fsfd != -1);
91 1.1 dsl assert(params->filesystem != NULL);
92 1.1 dsl assert(params->s1fd != -1);
93 1.1 dsl assert(params->stage1 != NULL);
94 1.1 dsl
95 1.1 dsl retval = 0;
96 1.1 dsl bootstrap = MAP_FAILED;
97 1.1 dsl
98 1.3 dsl if (params->flags & IB_APPEND) {
99 1.3 dsl if (!S_ISREG(params->fsstat.st_mode)) {
100 1.3 dsl warnx(
101 1.3 dsl "`%s' must be a regular file to append a bootstrap",
102 1.3 dsl params->filesystem);
103 1.3 dsl goto done;
104 1.3 dsl }
105 1.3 dsl boot_offset = roundup(params->fsstat.st_size, HP300_SECTSIZE);
106 1.3 dsl } else {
107 1.3 dsl /*
108 1.3 dsl * The bootstrap can be well over 8k, and must go into a BOOT
109 1.3 dsl * partition. Read NetBSD label to locate BOOT partition.
110 1.3 dsl */
111 1.3 dsl if (pread(params->fsfd, label, DEV_BSIZE, 2 * DEV_BSIZE)
112 1.3 dsl != DEV_BSIZE) {
113 1.3 dsl warn("reading disklabel");
114 1.3 dsl goto done;
115 1.3 dsl }
116 1.3 dsl /* And a quick validation - must be a big-endian label */
117 1.3 dsl secsize = be32toh(label->d_secsize);
118 1.3 dsl if (label->d_magic != be32toh(DISKMAGIC) ||
119 1.3 dsl label->d_magic2 != be32toh(DISKMAGIC) ||
120 1.3 dsl secsize == 0 || secsize & (secsize - 1) ||
121 1.3 dsl be32toh(label->d_npartitions) > MAXMAXPARTITIONS) {
122 1.3 dsl warnx("Invalid disklabel in %s", params->filesystem);
123 1.3 dsl goto done;
124 1.3 dsl }
125 1.3 dsl
126 1.3 dsl i = be32toh(label->d_npartitions);
127 1.3 dsl for (boot = label->d_partitions; ; boot++) {
128 1.3 dsl if (--i < 0) {
129 1.3 dsl warnx("No BOOT partition");
130 1.3 dsl goto done;
131 1.3 dsl }
132 1.3 dsl if (boot->p_fstype == FS_BOOT)
133 1.3 dsl break;
134 1.3 dsl }
135 1.3 dsl boot_size = be32toh(boot->p_size) * (uint64_t)secsize;
136 1.3 dsl boot_offset = be32toh(boot->p_offset) * (uint64_t)secsize;
137 1.1 dsl
138 1.3 dsl /*
139 1.3 dsl * We put the entire LIF file into the BOOT partition even when
140 1.3 dsl * it doesn't start at the beginning of the disk.
141 1.3 dsl *
142 1.3 dsl * Maybe we ought to be able to take a binary file and add
143 1.3 dsl * it to the LIF filesystem.
144 1.3 dsl */
145 1.3 dsl if (boot_size < params->s1stat.st_size) {
146 1.3 dsl warn("BOOT partition too small (%llu < %llu)",
147 1.3 dsl (unsigned long long)boot_size,
148 1.3 dsl (unsigned long long)params->s1stat.st_size);
149 1.1 dsl goto done;
150 1.1 dsl }
151 1.1 dsl }
152 1.1 dsl
153 1.1 dsl bootstrap = mmap(NULL, params->s1stat.st_size, PROT_READ | PROT_WRITE,
154 1.1 dsl MAP_PRIVATE, params->s1fd, 0);
155 1.1 dsl if (bootstrap == MAP_FAILED) {
156 1.1 dsl warn("mmaping `%s'", params->stage1);
157 1.1 dsl goto done;
158 1.1 dsl }
159 1.1 dsl
160 1.1 dsl /* Relocate files, sanity check LIF directory on the way */
161 1.1 dsl lifdir = (void *)(bootstrap + HP300_SECTSIZE * 2);
162 1.1 dsl for (i = 0; i < 8; lifdir++, i++) {
163 1.1 dsl int addr = be32toh(lifdir->dir_addr);
164 1.1 dsl int limit = (params->s1stat.st_size - 1) / HP300_SECTSIZE + 1;
165 1.1 dsl if (addr + be32toh(lifdir->dir_length) > limit) {
166 1.1 dsl warnx("LIF entry %d larger (%d %d) than LIF file",
167 1.1 dsl i, addr + be32toh(lifdir->dir_length), limit);
168 1.1 dsl goto done;
169 1.1 dsl }
170 1.3 dsl if (addr != 0 && boot_offset != 0)
171 1.3 dsl lifdir->dir_addr = htobe32(addr + boot_offset
172 1.3 dsl / HP300_SECTSIZE);
173 1.1 dsl }
174 1.1 dsl
175 1.1 dsl if (params->flags & IB_NOWRITE) {
176 1.1 dsl retval = 1;
177 1.1 dsl goto done;
178 1.1 dsl }
179 1.1 dsl
180 1.1 dsl /* Write LIF volume header and directory to sectors 0 and 1 */
181 1.1 dsl rv = pwrite(params->fsfd, bootstrap, 1024, 0);
182 1.1 dsl if (rv != 1024) {
183 1.1 dsl if (rv == -1)
184 1.1 dsl warn("Writing `%s'", params->filesystem);
185 1.1 dsl else
186 1.1 dsl warnx("Writing `%s': short write", params->filesystem);
187 1.1 dsl goto done;
188 1.1 dsl }
189 1.1 dsl
190 1.1 dsl /* Write files to BOOT partition */
191 1.3 dsl offset = boot_offset <= HP300_SECTSIZE * 16 ? HP300_SECTSIZE * 16 : 0;
192 1.3 dsl i = params->s1stat.st_size - offset;
193 1.3 dsl rv = pwrite(params->fsfd, bootstrap + offset, i, boot_offset + offset);
194 1.3 dsl if (rv != i) {
195 1.1 dsl if (rv == -1)
196 1.1 dsl warn("Writing boot filesystem of `%s'",
197 1.1 dsl params->filesystem);
198 1.1 dsl else
199 1.3 dsl warnx("Writing boot filesystem of `%s': short write",
200 1.3 dsl params->filesystem);
201 1.1 dsl goto done;
202 1.1 dsl }
203 1.1 dsl
204 1.1 dsl retval = 1;
205 1.1 dsl
206 1.1 dsl done:
207 1.1 dsl if (bootstrap != MAP_FAILED)
208 1.1 dsl munmap(bootstrap, params->s1stat.st_size);
209 1.1 dsl return retval;
210 1.1 dsl }
211