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
|
/* $OpenBSD: sparc64_installboot.c,v 1.11 2022/09/05 11:12:20 kn Exp $ */
/*
* Copyright (c) 2012, 2013 Joel Sing <jsing@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/param.h> /* DEV_BSIZE */
#include <sys/stat.h>
#include <err.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <ufs/ffs/fs.h>
#include "installboot.h"
char *bootldr;
char *blkstore;
char *ldrstore;
size_t blksize;
size_t ldrsize;
void
md_init(void)
{
stages = 2;
stage1 = "/usr/mdec/bootblk";
stage2 = "/usr/mdec/ofwboot";
bootldr = "/ofwboot";
}
void
md_loadboot(void)
{
struct stat sb;
size_t blocks;
int fd;
/* Load first-stage boot block. */
if ((fd = open(stage1, O_RDONLY)) == -1)
err(1, "open");
if (fstat(fd, &sb) == -1)
err(1, "fstat");
blocks = howmany((size_t)sb.st_size, DEV_BSIZE);
blksize = blocks * DEV_BSIZE;
if (verbose)
fprintf(stderr, "boot block is %zu bytes "
"(%zu blocks @ %u bytes = %zu bytes)\n",
(ssize_t)sb.st_size, blocks, DEV_BSIZE, blksize);
if (blksize > SBSIZE - DEV_BSIZE)
errx(1, "boot blocks too big (%zu > %d)",
blksize, SBSIZE - DEV_BSIZE);
blkstore = calloc(1, blksize);
if (blkstore == NULL)
err(1, "calloc");
if (read(fd, blkstore, sb.st_size) != (ssize_t)sb.st_size)
err(1, "read");
close(fd);
/* Load second-stage boot loader. */
if ((fd = open(stage2, O_RDONLY)) == -1)
err(1, "open");
if (fstat(fd, &sb) == -1)
err(1, "stat");
ldrsize = sb.st_size;
ldrstore = malloc(ldrsize);
if (ldrstore == NULL)
err(1, "malloc");
if (read(fd, ldrstore, ldrsize) != (ssize_t)sb.st_size)
err(1, "read");
close(fd);
}
void
md_prepareboot(int devfd, char *dev)
{
}
void
md_installboot(int devfd, char *dev)
{
static int prefixed = 0;
/* XXX - is this necessary? */
sync();
/*
* sr_install_bootblk() calls md_installboot() for every softraid chunk
* but the path must be prefixed only once.
*/
if (!prefixed++)
bootldr = fileprefix(root, bootldr);
if (bootldr == NULL)
exit(1);
if (verbose)
fprintf(stderr, "%s %s to %s\n",
(nowrite ? "would copy" : "copying"), stage2, bootldr);
if (!nowrite)
if (filecopy(stage2, bootldr) == -1)
exit(1);
/* Write bootblock into the superblock. */
if (verbose)
fprintf(stderr, "%s boot block to disk %s\n",
(nowrite ? "would write" : "writing"), dev);
if (nowrite)
return;
if (pwrite(devfd, blkstore, blksize, DEV_BSIZE) != (ssize_t)blksize)
err(1, "pwrite");
}
|