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
|
/* $OpenBSD: fdisk.c,v 1.80 2015/11/11 15:39:18 krw Exp $ */
/*
* Copyright (c) 1997 Tobias Weingartner
*
* 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/types.h>
#include <sys/fcntl.h>
#include <sys/disklabel.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <paths.h>
#include <stdint.h>
#include <err.h>
#include "disk.h"
#include "part.h"
#include "mbr.h"
#include "misc.h"
#include "cmd.h"
#include "user.h"
#include "gpt.h"
#define _PATH_MBR _PATH_BOOTDIR "mbr"
static unsigned char builtin_mbr[] = {
#include "mbrcode.h"
};
u_int32_t b_arg;
int g_flag;
int y_flag;
static void
usage(void)
{
extern char * __progname;
fprintf(stderr, "usage: %s "
"[-egy] [-i|-u] [-b blocks] [-c # -h # -s #] "
"[-f mbrfile] [-l blocks] disk\n"
"\t-b: add special boot partition; requires -i\n"
"\t-chs: specify disk geometry\n"
"\t-e: edit MBRs on disk interactively\n"
"\t-f: specify non-standard MBR template\n"
"\t-g: initialize disk with EFI/GPT partition; requires -i\n"
"\t-i: initialize disk with virgin MBR\n"
"\t-l: specify LBA block count\n"
"\t-u: update MBR code; preserve partition table\n"
"\t-y: do not ask questions\n"
"`disk' may be of the forms: sd0 or /dev/rsd0c.\n",
__progname);
exit(1);
}
int
main(int argc, char *argv[])
{
ssize_t len;
int ch, fd, error;
int i_flag = 0, e_flag = 0, f_flag = 0, u_flag = 0;
int c_arg = 0, h_arg = 0, s_arg = 0;
u_int32_t l_arg = 0;
char *query;
#ifdef HAS_MBR
char *mbrfile = _PATH_MBR;
#else
char *mbrfile = NULL;
#endif
struct dos_mbr dos_mbr;
while ((ch = getopt(argc, argv, "ieguf:c:h:s:l:b:y")) != -1) {
const char *errstr;
switch(ch) {
case 'i':
i_flag = 1;
break;
case 'u':
u_flag = 1;
break;
case 'e':
e_flag = 1;
break;
case 'f':
f_flag = 1;
mbrfile = optarg;
break;
case 'c':
c_arg = strtonum(optarg, 1, 262144, &errstr);
if (errstr)
errx(1, "Cylinder argument %s [1..262144].",
errstr);
break;
case 'h':
h_arg = strtonum(optarg, 1, 256, &errstr);
if (errstr)
errx(1, "Head argument %s [1..256].", errstr);
break;
case 's':
s_arg = strtonum(optarg, 1, 63, &errstr);
if (errstr)
errx(1, "Sector argument %s [1..63].", errstr);
break;
case 'g':
g_flag = 1;
break;
case 'b':
b_arg = strtonum(optarg, 64, UINT32_MAX, &errstr);
if (errstr)
errx(1, "Block argument %s [64..%u].", errstr,
UINT32_MAX);
break;
case 'l':
l_arg = strtonum(optarg, 64, UINT32_MAX, &errstr);
if (errstr)
errx(1, "Block argument %s [64..%u].", errstr,
UINT32_MAX);
break;
case 'y':
y_flag = 1;
break;
default:
usage();
}
}
argc -= optind;
argv += optind;
memset(&disk, 0, sizeof(disk));
/* Argument checking */
if (argc != 1 || (i_flag && u_flag))
usage();
else
disk.name = argv[0];
/* Start with the disklabel geometry and get the sector size. */
DISK_getlabelgeometry();
if (b_arg > 0 && i_flag == 0) {
warnx("-b specified without -i");
usage();
}
if (g_flag != 0 && i_flag == 0) {
warnx("-g specified without -i");
usage();
}
/* Get the GPT if present. */
if (GPT_get_gpt()) {
memset(&gh, 0, sizeof(gh));
memset(&gp, 0, sizeof(gp));
if (DL_GETDSIZE(&dl) > UINT32_MAX)
warnx("disk too large (%llu sectors). size truncated.",
(unsigned long long)DL_GETDSIZE(&dl));
}
if (c_arg | h_arg | s_arg) {
/* Use supplied geometry if it is completely specified. */
if (c_arg && h_arg && s_arg) {
disk.cylinders = c_arg;
disk.heads = h_arg;
disk.sectors = s_arg;
disk.size = c_arg * h_arg * s_arg;
} else
errx(1, "Please specify a full geometry with [-chs].");
} else if (l_arg) {
/* Use supplied size to calculate a geometry. */
disk.cylinders = l_arg / 64;
disk.heads = 1;
disk.sectors = 64;
disk.size = l_arg;
}
if (disk.size == 0 || disk.cylinders == 0 || disk.heads == 0 ||
disk.sectors == 0 || unit_types[SECTORS].conversion == 0)
errx(1, "Can't get disk geometry, please use [-chs] "
"to specify.");
/* Print out current MBRs on disk */
if ((i_flag + u_flag + e_flag) == 0)
USER_print_disk();
/* Create initial/default MBR. */
if (i_flag == 0) {
fd = DISK_open(disk.name, O_RDONLY);
error = MBR_read(fd, 0, &dos_mbr);
close(fd);
if (error)
errx(1, "Can't read sector 0!");
MBR_parse(&dos_mbr, 0, 0, &initial_mbr);
}
if (mbrfile != NULL && (fd = open(mbrfile, O_RDONLY)) == -1) {
warn("%s", mbrfile);
warnx("using builtin MBR");
memset(&initial_mbr, 0, sizeof(initial_mbr));
mbrfile = NULL;
}
if (mbrfile == NULL) {
if (MBR_protective_mbr(&initial_mbr) != 0) {
memcpy(&dos_mbr, builtin_mbr, sizeof(dos_mbr));
}
} else {
len = read(fd, &dos_mbr, sizeof(dos_mbr));
if (len == -1)
err(1, "Unable to read MBR from '%s'", mbrfile);
else if (len != sizeof(dos_mbr))
errx(1, "Unable to read complete MBR from '%s'",
mbrfile);
close(fd);
}
if (f_flag || MBR_protective_mbr(&initial_mbr) != 0) {
memset(&gh, 0, sizeof(struct gpt_header));
MBR_parse(&dos_mbr, 0, 0, &initial_mbr);
}
query = NULL;
if (i_flag) {
if (g_flag) {
MBR_init_GPT(&initial_mbr);
GPT_init();
query = "Do you wish to write new GPT?";
} else {
MBR_init(&initial_mbr);
query = "Do you wish to write new MBR and "
"partition table?";
}
} else if (u_flag) {
MBR_pcopy(&initial_mbr);
query = "Do you wish to write new MBR?";
}
if (query && ask_yn(query))
Xwrite(NULL, &initial_mbr);
if (e_flag)
USER_edit(0, 0);
return (0);
}
|