sun68k.c revision 1.5 1 /* $NetBSD: sun68k.c,v 1.5 2002/04/25 18:11:54 tv Exp $ */
2
3 /*-
4 * Copyright (c) 1998, 2002 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Matt Fredette, Paul Kranenburg, and Luke Mewburn.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
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.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the NetBSD
21 * Foundation, Inc. and its contributors.
22 * 4. Neither the name of The NetBSD Foundation nor the names of its
23 * contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE.
37 */
38
39 #include <sys/cdefs.h>
40 #if defined(__RCSID) && !defined(__lint)
41 __RCSID("$NetBSD: sun68k.c,v 1.5 2002/04/25 18:11:54 tv Exp $");
42 #endif /* !__lint */
43
44 #if HAVE_CONFIG_H
45 #include "config.h"
46 #endif
47
48 #include <sys/param.h>
49 #include <sys/stat.h>
50
51 #include <assert.h>
52 #include <err.h>
53 #include <stddef.h>
54 #include <stdio.h>
55 #include <stdlib.h>
56 #include <string.h>
57 #include <unistd.h>
58
59 #if HAVE_CONFIG_H
60 #include "../../sys/dev/sun/sun_boot.h"
61 #else
62 #include <dev/sun/sun_boot.h>
63 #endif
64
65 #include "installboot.h"
66
67 int
68 sun68k_clearboot(ib_params *params)
69 {
70 char bb[SUN68K_BOOT_BLOCK_MAX_SIZE];
71 ssize_t rv;
72
73 assert(params != NULL);
74 assert(params->fsfd != -1);
75 assert(params->filesystem != NULL);
76
77 if (params->flags & IB_STARTBLOCK) {
78 warnx("Can't use `-b bno' with `-c'");
79 return (0);
80 }
81 /* first check that it _could_ exist here */
82 rv = pread(params->fsfd, &bb, sizeof(bb), SUN68K_BOOT_BLOCK_OFFSET);
83 if (rv == -1) {
84 warn("Reading `%s'", params->filesystem);
85 return (0);
86 } else if (rv != sizeof(bb)) {
87 warnx("Reading `%s': short read", params->filesystem);
88 return (0);
89 }
90
91 /* now clear it out to nothing */
92 memset(&bb, 0, sizeof(bb));
93
94 if (params->flags & IB_VERBOSE)
95 printf("%slearing boot block\n",
96 (params->flags & IB_NOWRITE) ? "Not c" : "C");
97 if (params->flags & IB_NOWRITE)
98 return (1);
99
100 rv = pwrite(params->fsfd, &bb, sizeof(bb), SUN68K_BOOT_BLOCK_OFFSET);
101 if (rv == -1) {
102 warn("Writing `%s'", params->filesystem);
103 return (0);
104 } else if (rv != sizeof(bb)) {
105 warnx("Writing `%s': short write", params->filesystem);
106 return (0);
107 }
108
109 return (1);
110 }
111
112 int
113 sun68k_setboot(ib_params *params)
114 {
115 struct stat bootstrapsb;
116 char bb[SUN68K_BOOT_BLOCK_MAX_SIZE];
117 uint32_t startblock;
118 int retval;
119 ssize_t rv;
120 size_t bbi;
121 struct sun68k_bbinfo *bbinfop; /* bbinfo in prototype image */
122 uint32_t maxblk, nblk, blk_i;
123 ib_block *blocks = NULL;
124
125 assert(params != NULL);
126 assert(params->fsfd != -1);
127 assert(params->filesystem != NULL);
128 assert(params->fstype != NULL);
129 assert(params->s1fd != -1);
130 assert(params->stage1 != NULL);
131 assert(SUN68K_BBINFO_MAGICSIZE == 32);
132
133 if (params->stage2 == NULL) {
134 warnx("You must provide a secondary bootstrap");
135 return (0);
136 }
137
138 retval = 0;
139
140 if (fstat(params->s1fd, &bootstrapsb) == -1) {
141 warn("Examining `%s'", params->stage1);
142 goto done;
143 }
144 if (!S_ISREG(bootstrapsb.st_mode)) {
145 warnx("`%s' must be a regular file", params->stage1);
146 goto done;
147 }
148 if (bootstrapsb.st_size > sizeof(bb)) {
149 warnx("`%s' cannot be larger than %lu bytes",
150 params->stage1, (unsigned long)sizeof(bb));
151 goto done;
152 }
153
154 memset(&bb, 0, SUN68K_BOOT_BLOCK_MAX_SIZE);
155 rv = read(params->s1fd, &bb, sizeof(bb));
156 if (rv == -1) {
157 warn("Reading `%s'", params->stage1);
158 goto done;
159 }
160
161 /*
162 * Quick sanity check that the bootstrap given
163 * is *not* an ELF executable.
164 */
165 if (memcmp(bb + 1, "ELF", strlen("ELF")) == 0) {
166 warn("`%s' is an ELF executable; need raw binary",
167 params->stage1);
168 goto done;
169 }
170
171 /* Look for the bbinfo structure. */
172 for (bbi = 0; bbi < sizeof(bb); bbi += sizeof(uint32_t)) {
173 bbinfop = (void *) (bb + bbi);
174 if (memcmp(bbinfop->bbi_magic, SUN68K_BBINFO_MAGIC,
175 SUN68K_BBINFO_MAGICSIZE) == 0)
176 break;
177 }
178 if (bbi >= sizeof(bb)) {
179 warn("`%s' does not have a bbinfo structure\n",
180 params->stage1);
181 goto done;
182 }
183 maxblk = be32toh(bbinfop->bbi_block_count);
184
185 /* Allocate space for our block list. */
186 blocks = malloc(sizeof(*blocks) * maxblk);
187 if (blocks == NULL) {
188 warn("Allocating %lu bytes",
189 (unsigned long) sizeof(*blocks) * maxblk);
190 goto done;
191 }
192
193 /* Make sure the (probably new) secondary bootstrap is on disk. */
194 sync(); sleep(1); sync();
195
196 /* Collect the blocks for the secondary bootstrap. */
197 nblk = maxblk;
198 if (! params->fstype->findstage2(params, &nblk, blocks))
199 goto done;
200 if (nblk == 0) {
201 warnx("Secondary bootstrap `%s' is empty",
202 params->stage2);
203 goto done;
204 }
205
206 /* Save those blocks in the primary bootstrap. */
207 bbinfop->bbi_block_count = htobe32(nblk);
208 bbinfop->bbi_block_size = htobe32(blocks[0].blocksize);
209 for (blk_i = 0; blk_i < nblk; blk_i++) {
210 bbinfop->bbi_block_table[blk_i] =
211 htobe32(blocks[blk_i].block);
212 if (blocks[blk_i].blocksize < blocks[0].blocksize &&
213 blk_i + 1 != nblk) {
214 warnx("Secondary bootstrap `%s' blocks do not have " \
215 "a uniform size\n", params->stage2);
216 goto done;
217 }
218 }
219
220 if (params->flags & IB_STARTBLOCK)
221 startblock = params->startblock;
222 else
223 startblock = SUN68K_BOOT_BLOCK_OFFSET /
224 SUN68K_BOOT_BLOCK_BLOCKSIZE;
225
226 if (params->flags & IB_VERBOSE) {
227 printf("Bootstrap start sector: %#x\n", startblock);
228 printf("Bootstrap byte count: %#x\n", (unsigned)rv);
229 printf("Bootstrap block table: %u entries avail, %u used:",
230 maxblk, nblk);
231 for (blk_i = 0; blk_i < nblk; blk_i++)
232 printf(" %u", blocks[blk_i].block);
233 printf("\n%sriting bootstrap\n",
234 (params->flags & IB_NOWRITE) ? "Not w" : "W");
235 }
236 if (params->flags & IB_NOWRITE) {
237 retval = 1;
238 goto done;
239 }
240
241 rv = pwrite(params->fsfd, &bb, SUN68K_BOOT_BLOCK_MAX_SIZE,
242 startblock * SUN68K_BOOT_BLOCK_BLOCKSIZE);
243 if (rv == -1) {
244 warn("Writing `%s'", params->filesystem);
245 goto done;
246 } else if (rv != SUN68K_BOOT_BLOCK_MAX_SIZE) {
247 warnx("Writing `%s': short write", params->filesystem);
248 goto done;
249 } else {
250
251 /* Sync filesystems (to clean in-memory superblock?) */
252 sync();
253
254 retval = 1;
255 }
256
257 done:
258 if (blocks != NULL)
259 free (blocks);
260 return (retval);
261 }
262