1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
|
/* $OpenBSD: boot.c,v 1.35 2020/05/26 16:34:41 deraadt Exp $ */
/* $NetBSD: boot.c,v 1.3 2001/05/31 08:55:19 mrg Exp $ */
/*
* Copyright (c) 1997, 1999 Eduardo E. Horvath. All rights reserved.
* Copyright (c) 1997 Jason R. Thorpe. All rights reserved.
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
* Copyright (C) 1995, 1996 TooLs GmbH.
* All rights reserved.
*
* ELF support derived from NetBSD/alpha's boot loader, written
* by Christopher G. Demetriou.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by TooLs GmbH.
* 4. The name of TooLs GmbH may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* First try for the boot code
*
* Input syntax is:
* [promdev[{:|,}partition]]/[filename] [flags]
*/
#define ELFSIZE 64
#include <lib/libsa/stand.h>
#include <lib/libkern/funcs.h>
#include <sys/param.h>
#include <sys/exec.h>
#include <sys/exec_elf.h>
#include <sys/reboot.h>
#include <sys/disklabel.h>
#include <machine/cpu.h>
#include <lib/libsa/arc4.h>
#ifdef SOFTRAID
#include <sys/param.h>
#include <sys/queue.h>
#include <dev/biovar.h>
#include <dev/softraidvar.h>
#include <lib/libsa/softraid.h>
#include "disk.h"
#include "softraid_sparc64.h"
#endif
#include "ofdev.h"
#include "openfirm.h"
#ifdef BOOT_DEBUG
uint32_t boot_debug = 0
/* | BOOT_D_OFDEV */
/* | BOOT_D_OFNET */
;
#endif
#define MEG (1024*1024)
/*
* Boot device is derived from ROM provided information, or if there is none,
* this list is used in sequence, to find a kernel.
*/
char *kernels[] = {
"bsd",
NULL
};
char bootdev[128];
char bootfile[128];
int boothowto;
int debug;
char rnddata[BOOTRANDOM_MAX];
struct rc4_ctx randomctx;
int elf64_exec(int, Elf64_Ehdr *, u_int64_t *, void **, void **);
/*
* parse:
* [kernel-name] [-options]
* leave kernel-name in passed-in string
* put options into *howtop
* return -1 iff syntax error (no - before options)
*/
static int
parseargs(char *str, int *howtop)
{
char *cp;
int i;
*howtop = 0;
cp = str;
while (*cp == ' ')
++cp;
if (*cp != '-') {
while (*cp && *cp != ' ')
*str++ = *cp++;
while (*cp == ' ')
++cp;
}
/*
* Note that, if only options have been passed, without a kernel
* name, str == cp and options will be ignored at the boot blocks
* level.
* This a feature intended to make `boot -a' behave as intended.
* If you want the bootblocks to handle arguments explicitly, a
* kernel filename needs to be provided (as in `boot bsd -a').
*/
*str = 0;
switch (*cp) {
default:
printf("boot options string <%s> must start with -\n", cp);
return -1;
case 0:
return 0;
case '-':
break;
}
++cp;
while (*cp) {
switch (*cp++) {
case 'a':
*howtop |= RB_ASKNAME;
break;
case 'd':
if (!debug) debug = 1;
break;
case 'D':
debug = 2;
break;
}
}
return 0;
}
static void
chain(u_int64_t pentry, char *args, void *ssym, void *esym)
{
extern char end[];
void (*entry)();
int l, machine_tag;
long newargs[3];
entry = (void *)(long)pentry;
/*
* When we come in args consists of a pointer to the boot
* string. We need to fix it so it takes into account
* other params such as romp.
*/
/*
* Stash pointer to end of symbol table after the argument
* strings.
*/
l = strlen(args) + 1;
bcopy(&esym, args + l, sizeof(esym));
l += sizeof(esym);
/*
* Tell the kernel we're an OpenFirmware system.
*/
#define SPARC_MACHINE_OPENFIRMWARE 0x44444230
machine_tag = SPARC_MACHINE_OPENFIRMWARE;
bcopy(&machine_tag, args + l, sizeof(machine_tag));
l += sizeof(machine_tag);
/*
* Since we don't need the boot string (we can get it from /chosen)
* we won't pass it in. Just pass in esym and magic #
*/
newargs[0] = SPARC_MACHINE_OPENFIRMWARE;
newargs[1] = (long)esym;
newargs[2] = (long)ssym;
args = (char *)newargs;
l = sizeof(newargs);
#ifdef DEBUG
printf("chain: calling OF_chain(%x, %x, %x, %x, %x)\n",
(void *)RELOC, end - (char *)RELOC, entry, args, l);
#endif
/* if -D is set then pause in the PROM. */
if (debug > 1) OF_enter();
OF_chain((void *)RELOC, ((end - (char *)RELOC)+PAGE_SIZE)%PAGE_SIZE,
entry, args, l);
panic("chain");
}
int
loadfile(int fd, char *args)
{
union {
Elf64_Ehdr elf64;
} hdr;
int rval;
u_int64_t entry = 0;
void *ssym;
void *esym;
ssym = NULL;
esym = NULL;
/* Load the header. */
#ifdef DEBUG
printf("loadfile: reading header\n");
#endif
if ((rval = read(fd, &hdr, sizeof(hdr))) != sizeof(hdr)) {
if (rval == -1)
printf("read header: %s\n", strerror(errno));
else
printf("read header: short read (only %d of %d)\n",
rval, sizeof(hdr));
rval = 1;
goto err;
}
/* Determine file type, load kernel. */
if (bcmp(hdr.elf64.e_ident, ELFMAG, SELFMAG) == 0 &&
hdr.elf64.e_ident[EI_CLASS] == ELFCLASS64) {
printf("Booting %s\n", opened_name);
rval = elf64_exec(fd, &hdr.elf64, &entry, &ssym, &esym);
} else {
rval = 1;
printf("unknown executable format\n");
}
if (rval)
goto err;
printf(" start=0x%lx\n", (unsigned long)entry);
close(fd);
#ifdef SOFTRAID
if (bootdev_dip)
OF_close(bootdev_dip->sr_handle);
sr_clear_keys();
#endif
chain(entry, args, ssym, esym);
/* NOTREACHED */
err:
close(fd);
return (rval);
}
static int
upgrade(void)
{
struct stat sb;
if (stat("/bsd.upgrade", &sb) < 0)
return 0;
return 1;
}
int
loadrandom(char *path, char *buf, size_t buflen)
{
struct stat sb;
int fd, i, error = 0;
#define O_RDONLY 0
fd = open(path, O_RDONLY);
if (fd == -1)
return -1;
if (fstat(fd, &sb) == -1) {
error = -1;
goto done;
}
if (read(fd, buf, buflen) != buflen) {
error = -1;
goto done;
}
if (sb.st_mode & S_ISTXT) {
printf("NOTE: random seed is being reused.\n");
error = -1;
goto done;
}
fchmod(fd, sb.st_mode | S_ISTXT);
done:
close(fd);
return (error);
}
#ifdef SOFTRAID
/* Set bootdev_dip to the softraid boot volume, if specified. */
static int
srbootdev(const char *bootline)
{
struct sr_boot_volume *bv;
int unit;
bootdev_dip = NULL;
/*
* Look for softraid disks in bootline.
* E.g. 'sr0', 'sr0:bsd', or 'sr0a:/bsd'
*/
if (bootline[0] == 's' && bootline[1] == 'r' &&
'0' <= bootline[2] && bootline[2] <= '9') {
unit = bootline[2] - '0';
/* Create a fake diskinfo for this softraid volume. */
SLIST_FOREACH(bv, &sr_volumes, sbv_link)
if (bv->sbv_unit == unit)
break;
if (bv == NULL) {
printf("Unknown device: sr%d\n", unit);
return ENODEV;
}
if ((bv->sbv_flags & BIOC_SCBOOTABLE) == 0) {
printf("device sr%d is not bootable\n", unit);
return ENODEV;
}
if (bv->sbv_level == 'C' && bv->sbv_keys == NULL)
if (sr_crypto_unlock_volume(bv) != 0)
return EPERM;
if (bv->sbv_diskinfo == NULL) {
struct sr_boot_chunk *bc;
struct diskinfo *dip, *bc_dip;
int sr_handle;
/* All reads will come from the boot chunk. */
bc = sr_vol_boot_chunk(bv);
if (bc == NULL)
return ENXIO;
bc_dip = (struct diskinfo *)bc->sbc_diskinfo;
sr_handle = OF_open(bc_dip->path);
if (sr_handle == -1)
return EIO;
dip = alloc(sizeof(struct diskinfo));
bzero(dip, sizeof(*dip));
dip->sr_vol = bv;
dip->sr_handle = sr_handle;
bv->sbv_diskinfo = dip;
}
/* strategy() and devopen() will use bootdev_dip */
bootdev_dip = bv->sbv_diskinfo;
/* Attempt to read disklabel. */
bv->sbv_part = 'c';
if (sr_getdisklabel(bv, &bootdev_dip->disklabel)) {
OF_close(bootdev_dip->sr_handle);
free(bv->sbv_diskinfo, sizeof(struct diskinfo));
bv->sbv_diskinfo = NULL;
bootdev_dip = NULL;
return ERDLAB;
}
}
return 0;
}
#endif
int
main(void)
{
extern char version[];
int chosen;
char bootline[512]; /* Should check size? */
char *cp;
int i, fd;
#ifdef SOFTRAID
int err;
#endif
char **bootlp;
char *just_bootline[2];
printf(">> OpenBSD BOOT %s\n", version);
/*
* Get the boot arguments from Openfirmware
*/
if ((chosen = OF_finddevice("/chosen")) == -1 ||
OF_getprop(chosen, "bootpath", bootdev, sizeof bootdev) < 0 ||
OF_getprop(chosen, "bootargs", bootline, sizeof bootline) < 0) {
printf("Invalid Openfirmware environment\n");
exit();
}
#ifdef SOFTRAID
diskprobe();
srprobe();
err = srbootdev(bootline);
if (err) {
printf("Cannot boot from softraid: %s\n", strerror(err));
_rtt();
}
#endif
/*
* case 1: boot net -a
* -> getln loop
* case 2: boot net kernel [options]
* -> boot kernel, getln loop
* case 3: boot net [options]
* -> iterate boot list, getln loop
*/
bootlp = kernels;
if (parseargs(bootline, &boothowto) == -1 ||
(boothowto & RB_ASKNAME)) {
bootlp = 0;
} else if (*bootline) {
just_bootline[0] = bootline;
just_bootline[1] = 0;
bootlp = just_bootline;
}
if (bootlp == kernels && upgrade()) {
just_bootline[0] = "/bsd.upgrade";
just_bootline[1] = 0;
bootlp = just_bootline;
printf("upgrade detected: switching to %s\n", *bootlp);
}
for (;;) {
if (bootlp) {
cp = *bootlp++;
if (!cp) {
printf("\n");
bootlp = 0;
kernels[0] = 0; /* no more iteration */
} else if (cp != bootline) {
printf("Trying %s...\n", cp);
if (strlcpy(bootline, cp, sizeof bootline)
>= sizeof bootline) {
printf("bootargs too long: %s\n",
bootline);
_rtt();
}
}
}
if (!bootlp) {
printf("Boot: ");
getln(bootline, sizeof bootline);
if (parseargs(bootline, &boothowto) == -1)
continue;
if (!*bootline) {
bootlp = kernels;
continue;
}
if (strcmp(bootline, "exit") == 0 ||
strcmp(bootline, "halt") == 0) {
_rtt();
}
}
if (loadrandom(BOOTRANDOM, rnddata, sizeof(rnddata)) == 0)
boothowto |= RB_GOODRANDOM;
rc4_keysetup(&randomctx, rnddata, sizeof rnddata);
rc4_skip(&randomctx, 1536);
if ((fd = open(bootline, 0)) < 0) {
printf("open %s: %s\n", opened_name, strerror(errno));
continue;
}
/* XXX void, for now */
#ifdef DEBUG
if (debug)
printf("main: Calling loadfile(fd, %s)\n", opened_name);
#endif
(void)loadfile(fd, opened_name);
}
return 0;
}
|