blob: 5fc8b0242a7840a7a43e40ec67fef69c60568c76 [file] [log] [blame]
San Mehat72eead42009-07-06 11:10:03 -07001/*
2 * Copyright (c) 1998 Robert Nordier
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS
16 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY
19 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
21 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
23 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
25 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#ifndef lint
29static const char rcsid[] =
Daniel Rosenberg33e7b132014-07-08 19:26:02 -070030 "$FreeBSD: src/sbin/newfs_msdos/newfs_msdos.c,v 1.33 2009/04/11 14:56:29 ed Exp $";
San Mehat72eead42009-07-06 11:10:03 -070031#endif /* not lint */
32
33#include <sys/param.h>
34
Dan Willemsena2288222018-04-25 17:50:47 -070035#ifdef __APPLE__
36#elif defined(ANDROID)
37#include <linux/fs.h>
38#include <linux/hdreg.h>
39#include <stdarg.h>
40#include <sys/ioctl.h>
41#else
Daniel Rosenberg33e7b132014-07-08 19:26:02 -070042#include <sys/fdcio.h>
43#include <sys/disk.h>
44#include <sys/disklabel.h>
45#include <sys/mount.h>
San Mehat72eead42009-07-06 11:10:03 -070046#endif
47
48#include <sys/stat.h>
49#include <sys/time.h>
50
51#include <ctype.h>
52#include <err.h>
53#include <errno.h>
54#include <fcntl.h>
55#include <inttypes.h>
56#include <paths.h>
57#include <stdio.h>
58#include <stdlib.h>
59#include <string.h>
60#include <time.h>
61#include <unistd.h>
62
Dan Willemsena2288222018-04-25 17:50:47 -070063#ifndef __unused
64#define __unused __attribute__((__unused__))
65#endif
66
Daniel Rosenberg33e7b132014-07-08 19:26:02 -070067#define MAXU16 0xffff /* maximum unsigned 16-bit quantity */
68#define BPN 4 /* bits per nibble */
69#define NPB 2 /* nibbles per byte */
San Mehat72eead42009-07-06 11:10:03 -070070
Daniel Rosenberg33e7b132014-07-08 19:26:02 -070071#define DOSMAGIC 0xaa55 /* DOS magic number */
72#define MINBPS 512 /* minimum bytes per sector */
73#define MAXSPC 128 /* maximum sectors per cluster */
74#define MAXNFT 16 /* maximum number of FATs */
75#define DEFBLK 4096 /* default block size */
76#define DEFBLK16 2048 /* default block size FAT16 */
77#define DEFRDE 512 /* default root directory entries */
78#define RESFTE 2 /* reserved FAT entries */
79#define MINCLS12 1 /* minimum FAT12 clusters */
80#define MINCLS16 0x1000 /* minimum FAT16 clusters */
81#define MINCLS32 2 /* minimum FAT32 clusters */
82#define MAXCLS12 0xfed /* maximum FAT12 clusters */
83#define MAXCLS16 0xfff5 /* maximum FAT16 clusters */
84#define MAXCLS32 0xffffff5 /* maximum FAT32 clusters */
San Mehat72eead42009-07-06 11:10:03 -070085
Daniel Rosenberg33e7b132014-07-08 19:26:02 -070086#define mincls(fat) ((fat) == 12 ? MINCLS12 : \
87 (fat) == 16 ? MINCLS16 : \
88 MINCLS32)
San Mehat72eead42009-07-06 11:10:03 -070089
Daniel Rosenberg33e7b132014-07-08 19:26:02 -070090#define maxcls(fat) ((fat) == 12 ? MAXCLS12 : \
91 (fat) == 16 ? MAXCLS16 : \
92 MAXCLS32)
San Mehat72eead42009-07-06 11:10:03 -070093
Daniel Rosenberg33e7b132014-07-08 19:26:02 -070094#define mk1(p, x) \
San Mehat72eead42009-07-06 11:10:03 -070095 (p) = (u_int8_t)(x)
96
Daniel Rosenberg33e7b132014-07-08 19:26:02 -070097#define mk2(p, x) \
98 (p)[0] = (u_int8_t)(x), \
San Mehat72eead42009-07-06 11:10:03 -070099 (p)[1] = (u_int8_t)((x) >> 010)
100
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700101#define mk4(p, x) \
102 (p)[0] = (u_int8_t)(x), \
103 (p)[1] = (u_int8_t)((x) >> 010), \
104 (p)[2] = (u_int8_t)((x) >> 020), \
San Mehat72eead42009-07-06 11:10:03 -0700105 (p)[3] = (u_int8_t)((x) >> 030)
106
107#define argto1(arg, lo, msg) argtou(arg, lo, 0xff, msg)
108#define argto2(arg, lo, msg) argtou(arg, lo, 0xffff, msg)
109#define argto4(arg, lo, msg) argtou(arg, lo, 0xffffffff, msg)
110#define argtox(arg, lo, msg) argtou(arg, lo, UINT_MAX, msg)
111
112struct bs {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700113 u_int8_t jmp[3]; /* bootstrap entry point */
114 u_int8_t oem[8]; /* OEM name and version */
San Mehat72eead42009-07-06 11:10:03 -0700115};
116
117struct bsbpb {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700118 u_int8_t bps[2]; /* bytes per sector */
119 u_int8_t spc; /* sectors per cluster */
120 u_int8_t res[2]; /* reserved sectors */
121 u_int8_t nft; /* number of FATs */
122 u_int8_t rde[2]; /* root directory entries */
123 u_int8_t sec[2]; /* total sectors */
124 u_int8_t mid; /* media descriptor */
125 u_int8_t spf[2]; /* sectors per FAT */
126 u_int8_t spt[2]; /* sectors per track */
127 u_int8_t hds[2]; /* drive heads */
128 u_int8_t hid[4]; /* hidden sectors */
129 u_int8_t bsec[4]; /* big total sectors */
San Mehat72eead42009-07-06 11:10:03 -0700130};
131
132struct bsxbpb {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700133 u_int8_t bspf[4]; /* big sectors per FAT */
134 u_int8_t xflg[2]; /* FAT control flags */
135 u_int8_t vers[2]; /* file system version */
136 u_int8_t rdcl[4]; /* root directory start cluster */
137 u_int8_t infs[2]; /* file system info sector */
138 u_int8_t bkbs[2]; /* backup boot sector */
139 u_int8_t rsvd[12]; /* reserved */
San Mehat72eead42009-07-06 11:10:03 -0700140};
141
142struct bsx {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700143 u_int8_t drv; /* drive number */
144 u_int8_t rsvd; /* reserved */
145 u_int8_t sig; /* extended boot signature */
146 u_int8_t volid[4]; /* volume ID number */
147 u_int8_t label[11]; /* volume label */
148 u_int8_t type[8]; /* file system type */
San Mehat72eead42009-07-06 11:10:03 -0700149};
150
151struct de {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700152 u_int8_t namext[11]; /* name and extension */
153 u_int8_t attr; /* attributes */
154 u_int8_t rsvd[10]; /* reserved */
155 u_int8_t time[2]; /* creation time */
156 u_int8_t date[2]; /* creation date */
157 u_int8_t clus[2]; /* starting cluster */
158 u_int8_t size[4]; /* size */
San Mehat72eead42009-07-06 11:10:03 -0700159};
160
161struct bpb {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700162 u_int bps; /* bytes per sector */
163 u_int spc; /* sectors per cluster */
164 u_int res; /* reserved sectors */
165 u_int nft; /* number of FATs */
166 u_int rde; /* root directory entries */
167 u_int sec; /* total sectors */
168 u_int mid; /* media descriptor */
169 u_int spf; /* sectors per FAT */
170 u_int spt; /* sectors per track */
171 u_int hds; /* drive heads */
172 u_int hid; /* hidden sectors */
173 u_int bsec; /* big total sectors */
174 u_int bspf; /* big sectors per FAT */
175 u_int rdcl; /* root directory start cluster */
176 u_int infs; /* file system info sector */
177 u_int bkbs; /* backup boot sector */
San Mehat72eead42009-07-06 11:10:03 -0700178};
179
180#define BPBGAP 0, 0, 0, 0, 0, 0
181
182static struct {
183 const char *name;
184 struct bpb bpb;
185} const stdfmt[] = {
186 {"160", {512, 1, 1, 2, 64, 320, 0xfe, 1, 8, 1, BPBGAP}},
187 {"180", {512, 1, 1, 2, 64, 360, 0xfc, 2, 9, 1, BPBGAP}},
188 {"320", {512, 2, 1, 2, 112, 640, 0xff, 1, 8, 2, BPBGAP}},
189 {"360", {512, 2, 1, 2, 112, 720, 0xfd, 2, 9, 2, BPBGAP}},
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700190 {"640", {512, 2, 1, 2, 112, 1280, 0xfb, 2, 8, 2, BPBGAP}},
San Mehat72eead42009-07-06 11:10:03 -0700191 {"720", {512, 2, 1, 2, 112, 1440, 0xf9, 3, 9, 2, BPBGAP}},
192 {"1200", {512, 1, 1, 2, 224, 2400, 0xf9, 7, 15, 2, BPBGAP}},
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700193 {"1232", {1024,1, 1, 2, 192, 1232, 0xfe, 2, 8, 2, BPBGAP}},
San Mehat72eead42009-07-06 11:10:03 -0700194 {"1440", {512, 1, 1, 2, 224, 2880, 0xf0, 9, 18, 2, BPBGAP}},
195 {"2880", {512, 2, 1, 2, 240, 5760, 0xf0, 9, 36, 2, BPBGAP}}
196};
197
198static const u_int8_t bootcode[] = {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700199 0xfa, /* cli */
200 0x31, 0xc0, /* xor ax,ax */
201 0x8e, 0xd0, /* mov ss,ax */
202 0xbc, 0x00, 0x7c, /* mov sp,7c00h */
203 0xfb, /* sti */
204 0x8e, 0xd8, /* mov ds,ax */
205 0xe8, 0x00, 0x00, /* call $ + 3 */
206 0x5e, /* pop si */
207 0x83, 0xc6, 0x19, /* add si,+19h */
208 0xbb, 0x07, 0x00, /* mov bx,0007h */
209 0xfc, /* cld */
210 0xac, /* lodsb */
211 0x84, 0xc0, /* test al,al */
212 0x74, 0x06, /* jz $ + 8 */
213 0xb4, 0x0e, /* mov ah,0eh */
214 0xcd, 0x10, /* int 10h */
215 0xeb, 0xf5, /* jmp $ - 9 */
216 0x30, 0xe4, /* xor ah,ah */
217 0xcd, 0x16, /* int 16h */
218 0xcd, 0x19, /* int 19h */
San Mehat72eead42009-07-06 11:10:03 -0700219 0x0d, 0x0a,
220 'N', 'o', 'n', '-', 's', 'y', 's', 't',
221 'e', 'm', ' ', 'd', 'i', 's', 'k',
222 0x0d, 0x0a,
223 'P', 'r', 'e', 's', 's', ' ', 'a', 'n',
224 'y', ' ', 'k', 'e', 'y', ' ', 't', 'o',
225 ' ', 'r', 'e', 'b', 'o', 'o', 't',
226 0x0d, 0x0a,
227 0
228};
229
230static void check_mounted(const char *, mode_t);
231static void getstdfmt(const char *, struct bpb *);
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700232static void getdiskinfo(int, const char *, const char *, int, struct bpb *);
San Mehat72eead42009-07-06 11:10:03 -0700233static void print_bpb(struct bpb *);
234static u_int ckgeom(const char *, u_int, const char *);
235static u_int argtou(const char *, u_int, u_int, const char *);
236static off_t argtooff(const char *, const char *);
237static int oklabel(const char *);
238static void mklabel(u_int8_t *, const char *);
239static void setstr(u_int8_t *, const char *, size_t);
240static void usage(void);
241
San Mehat72eead42009-07-06 11:10:03 -0700242/*
243 * Construct a FAT12, FAT16, or FAT32 file system.
244 */
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700245int newfs_msdos_main(int argc, char *argv[])
San Mehat72eead42009-07-06 11:10:03 -0700246{
Daniel Rosenberg052f2752014-07-15 16:56:20 -0700247 static const char opts[] = "@:NAB:C:F:I:L:O:S:a:b:c:e:f:h:i:k:m:n:o:r:s:u:";
San Mehat72eead42009-07-06 11:10:03 -0700248 const char *opt_B = NULL, *opt_L = NULL, *opt_O = NULL, *opt_f = NULL;
249 u_int opt_F = 0, opt_I = 0, opt_S = 0, opt_a = 0, opt_b = 0, opt_c = 0;
250 u_int opt_e = 0, opt_h = 0, opt_i = 0, opt_k = 0, opt_m = 0, opt_n = 0;
251 u_int opt_o = 0, opt_r = 0, opt_s = 0, opt_u = 0;
Daniel Rosenberg052f2752014-07-15 16:56:20 -0700252 u_int opt_A = 0;
San Mehat72eead42009-07-06 11:10:03 -0700253 int opt_N = 0;
254 int Iflag = 0, mflag = 0, oflag = 0;
255 char buf[MAXPATHLEN];
256 struct stat sb;
257 struct timeval tv;
258 struct bpb bpb;
259 struct tm *tm;
260 struct bs *bs;
261 struct bsbpb *bsbpb;
262 struct bsxbpb *bsxbpb;
263 struct bsx *bsx;
264 struct de *de;
265 u_int8_t *img;
266 const char *fname, *dtype, *bname;
267 ssize_t n;
268 time_t now;
269 u_int fat, bss, rds, cls, dir, lsn, x, x1, x2;
Daniel Rosenberg052f2752014-07-15 16:56:20 -0700270 u_int extra_res, alignment=0, set_res, set_spf, set_spc, tempx, attempts=0;
San Mehat72eead42009-07-06 11:10:03 -0700271 int ch, fd, fd1;
272 off_t opt_create = 0, opt_ofs = 0;
273
274 while ((ch = getopt(argc, argv, opts)) != -1)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700275 switch (ch) {
276 case '@':
277 opt_ofs = argtooff(optarg, "offset");
278 break;
279 case 'N':
280 opt_N = 1;
281 break;
Daniel Rosenberg052f2752014-07-15 16:56:20 -0700282 case 'A':
283 opt_A = 1;
284 break;
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700285 case 'B':
286 opt_B = optarg;
287 break;
288 case 'C':
289 opt_create = argtooff(optarg, "create size");
290 break;
291 case 'F':
292 if (strcmp(optarg, "12") && strcmp(optarg, "16") && strcmp(optarg, "32"))
293 errx(1, "%s: bad FAT type", optarg);
294 opt_F = atoi(optarg);
295 break;
296 case 'I':
297 opt_I = argto4(optarg, 0, "volume ID");
298 Iflag = 1;
299 break;
300 case 'L':
301 if (!oklabel(optarg))
302 errx(1, "%s: bad volume label", optarg);
303 opt_L = optarg;
304 break;
305 case 'O':
306 if (strlen(optarg) > 8)
307 errx(1, "%s: bad OEM string", optarg);
308 opt_O = optarg;
309 break;
310 case 'S':
311 opt_S = argto2(optarg, 1, "bytes/sector");
312 break;
313 case 'a':
314 opt_a = argto4(optarg, 1, "sectors/FAT");
315 break;
316 case 'b':
317 opt_b = argtox(optarg, 1, "block size");
318 opt_c = 0;
319 break;
320 case 'c':
321 opt_c = argto1(optarg, 1, "sectors/cluster");
322 opt_b = 0;
323 break;
324 case 'e':
325 opt_e = argto2(optarg, 1, "directory entries");
326 break;
327 case 'f':
328 opt_f = optarg;
329 break;
330 case 'h':
331 opt_h = argto2(optarg, 1, "drive heads");
332 break;
333 case 'i':
334 opt_i = argto2(optarg, 1, "info sector");
335 break;
336 case 'k':
337 opt_k = argto2(optarg, 1, "backup sector");
338 break;
339 case 'm':
340 opt_m = argto1(optarg, 0, "media descriptor");
341 mflag = 1;
342 break;
343 case 'n':
344 opt_n = argto1(optarg, 1, "number of FATs");
345 break;
346 case 'o':
347 opt_o = argto4(optarg, 0, "hidden sectors");
348 oflag = 1;
349 break;
350 case 'r':
351 opt_r = argto2(optarg, 1, "reserved sectors");
352 break;
353 case 's':
354 opt_s = argto4(optarg, 1, "file system size");
355 break;
356 case 'u':
357 opt_u = argto2(optarg, 1, "sectors/track");
358 break;
359 default:
360 usage();
361 }
San Mehat72eead42009-07-06 11:10:03 -0700362 argc -= optind;
363 argv += optind;
364 if (argc < 1 || argc > 2)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700365 usage();
San Mehat72eead42009-07-06 11:10:03 -0700366 fname = *argv++;
367 if (!opt_create && !strchr(fname, '/')) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700368 snprintf(buf, sizeof(buf), "%s%s", _PATH_DEV, fname);
369 if (!(fname = strdup(buf)))
370 err(1, "%s", buf);
San Mehat72eead42009-07-06 11:10:03 -0700371 }
372 dtype = *argv;
Daniel Rosenberg052f2752014-07-15 16:56:20 -0700373 if (opt_A) {
374 if (opt_r)
375 errx(1, "align (-A) is incompatible with -r");
376 if (opt_N)
377 errx(1, "align (-A) is incompatible with -N");
378 }
San Mehat72eead42009-07-06 11:10:03 -0700379 if (opt_create) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700380 if (opt_N)
381 errx(1, "create (-C) is incompatible with -N");
382 fd = open(fname, O_RDWR | O_CREAT | O_TRUNC, 0644);
383 if (fd == -1)
384 errx(1, "failed to create %s", fname);
385 if (ftruncate(fd, opt_create))
386 errx(1, "failed to initialize %jd bytes", (intmax_t)opt_create);
San Mehat72eead42009-07-06 11:10:03 -0700387 } else if ((fd = open(fname, opt_N ? O_RDONLY : O_RDWR)) == -1)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700388 err(1, "%s", fname);
San Mehat72eead42009-07-06 11:10:03 -0700389 if (fstat(fd, &sb))
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700390 err(1, "%s", fname);
San Mehat72eead42009-07-06 11:10:03 -0700391 if (opt_create) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700392 if (!S_ISREG(sb.st_mode))
393 warnx("warning, %s is not a regular file", fname);
San Mehat72eead42009-07-06 11:10:03 -0700394 } else {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700395 if (!S_ISCHR(sb.st_mode))
396 warnx("warning, %s is not a character device", fname);
San Mehat72eead42009-07-06 11:10:03 -0700397 }
398 if (!opt_N)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700399 check_mounted(fname, sb.st_mode);
San Mehat72eead42009-07-06 11:10:03 -0700400 if (opt_ofs && opt_ofs != lseek(fd, opt_ofs, SEEK_SET))
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700401 errx(1, "cannot seek to %jd", (intmax_t)opt_ofs);
San Mehat72eead42009-07-06 11:10:03 -0700402 memset(&bpb, 0, sizeof(bpb));
403 if (opt_f) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700404 getstdfmt(opt_f, &bpb);
405 bpb.bsec = bpb.sec;
406 bpb.sec = 0;
407 bpb.bspf = bpb.spf;
408 bpb.spf = 0;
San Mehat72eead42009-07-06 11:10:03 -0700409 }
410 if (opt_h)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700411 bpb.hds = opt_h;
San Mehat72eead42009-07-06 11:10:03 -0700412 if (opt_u)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700413 bpb.spt = opt_u;
San Mehat72eead42009-07-06 11:10:03 -0700414 if (opt_S)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700415 bpb.bps = opt_S;
San Mehat72eead42009-07-06 11:10:03 -0700416 if (opt_s)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700417 bpb.bsec = opt_s;
San Mehat72eead42009-07-06 11:10:03 -0700418 if (oflag)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700419 bpb.hid = opt_o;
San Mehat72eead42009-07-06 11:10:03 -0700420 if (!(opt_f || (opt_h && opt_u && opt_S && opt_s && oflag))) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700421 off_t delta;
422 getdiskinfo(fd, fname, dtype, oflag, &bpb);
San Mehat661aff62010-03-03 12:40:21 -0800423 if (opt_s) {
424 bpb.bsec = opt_s;
425 }
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700426 bpb.bsec -= (opt_ofs / bpb.bps);
427 delta = bpb.bsec % bpb.spt;
428 if (delta != 0) {
429 warnx("trim %d sectors from %d to adjust to a multiple of %d",
430 (int)delta, bpb.bsec, bpb.spt);
431 bpb.bsec -= delta;
432 }
433 if (bpb.spc == 0) { /* set defaults */
434 if (bpb.bsec <= 6000) /* about 3MB -> 512 bytes */
435 bpb.spc = 1;
436 else if (bpb.bsec <= (1<<17)) /* 64M -> 4k */
437 bpb.spc = 8;
438 else if (bpb.bsec <= (1<<19)) /* 256M -> 8k */
439 bpb.spc = 16;
440 else if (bpb.bsec <= (1<<22)) /* 2G -> 16k, some versions of windows
441 require a minimum of 65527 clusters */
442 bpb.spc = 32;
443 else
444 bpb.spc = 64; /* otherwise 32k */
445 }
San Mehat72eead42009-07-06 11:10:03 -0700446 }
447 if (!powerof2(bpb.bps))
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700448 errx(1, "bytes/sector (%u) is not a power of 2", bpb.bps);
San Mehat72eead42009-07-06 11:10:03 -0700449 if (bpb.bps < MINBPS)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700450 errx(1, "bytes/sector (%u) is too small; minimum is %u",
451 bpb.bps, MINBPS);
San Mehat72eead42009-07-06 11:10:03 -0700452 if (!(fat = opt_F)) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700453 if (opt_f)
454 fat = 12;
455 else if (!opt_e && (opt_i || opt_k))
456 fat = 32;
San Mehat72eead42009-07-06 11:10:03 -0700457 }
458 if ((fat == 32 && opt_e) || (fat != 32 && (opt_i || opt_k)))
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700459 errx(1, "-%c is not a legal FAT%s option",
460 fat == 32 ? 'e' : opt_i ? 'i' : 'k',
461 fat == 32 ? "32" : "12/16");
San Mehat72eead42009-07-06 11:10:03 -0700462 if (opt_f && fat == 32)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700463 bpb.rde = 0;
San Mehat72eead42009-07-06 11:10:03 -0700464 if (opt_b) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700465 if (!powerof2(opt_b))
466 errx(1, "block size (%u) is not a power of 2", opt_b);
467 if (opt_b < bpb.bps)
468 errx(1, "block size (%u) is too small; minimum is %u",
469 opt_b, bpb.bps);
470 if (opt_b > bpb.bps * MAXSPC)
471 errx(1, "block size (%u) is too large; maximum is %u", opt_b, bpb.bps * MAXSPC);
472 bpb.spc = opt_b / bpb.bps;
San Mehat72eead42009-07-06 11:10:03 -0700473 }
474 if (opt_c) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700475 if (!powerof2(opt_c))
476 errx(1, "sectors/cluster (%u) is not a power of 2", opt_c);
477 bpb.spc = opt_c;
San Mehat72eead42009-07-06 11:10:03 -0700478 }
479 if (opt_r)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700480 bpb.res = opt_r;
San Mehat72eead42009-07-06 11:10:03 -0700481 if (opt_n) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700482 if (opt_n > MAXNFT)
483 errx(1, "number of FATs (%u) is too large; maximum is %u", opt_n, MAXNFT);
484 bpb.nft = opt_n;
San Mehat72eead42009-07-06 11:10:03 -0700485 }
486 if (opt_e)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700487 bpb.rde = opt_e;
San Mehat72eead42009-07-06 11:10:03 -0700488 if (mflag) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700489 if (opt_m < 0xf0)
490 errx(1, "illegal media descriptor (%#x)", opt_m);
491 bpb.mid = opt_m;
San Mehat72eead42009-07-06 11:10:03 -0700492 }
493 if (opt_a)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700494 bpb.bspf = opt_a;
San Mehat72eead42009-07-06 11:10:03 -0700495 if (opt_i)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700496 bpb.infs = opt_i;
San Mehat72eead42009-07-06 11:10:03 -0700497 if (opt_k)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700498 bpb.bkbs = opt_k;
San Mehat72eead42009-07-06 11:10:03 -0700499 bss = 1;
500 bname = NULL;
501 fd1 = -1;
502 if (opt_B) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700503 bname = opt_B;
504 if (!strchr(bname, '/')) {
505 snprintf(buf, sizeof(buf), "/boot/%s", bname);
506 if (!(bname = strdup(buf)))
507 err(1, "%s", buf);
508 }
509 if ((fd1 = open(bname, O_RDONLY)) == -1 || fstat(fd1, &sb))
510 err(1, "%s", bname);
511 if (!S_ISREG(sb.st_mode) || sb.st_size % bpb.bps ||
512 sb.st_size < bpb.bps || sb.st_size > bpb.bps * MAXU16)
513 errx(1, "%s: inappropriate file type or format", bname);
514 bss = sb.st_size / bpb.bps;
San Mehat72eead42009-07-06 11:10:03 -0700515 }
516 if (!bpb.nft)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700517 bpb.nft = 2;
San Mehat72eead42009-07-06 11:10:03 -0700518 if (!fat) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700519 if (bpb.bsec < (bpb.res ? bpb.res : bss) +
520 howmany((RESFTE + (bpb.spc ? MINCLS16 : MAXCLS12 + 1)) *
521 ((bpb.spc ? 16 : 12) / BPN), bpb.bps * NPB) *
522 bpb.nft +
523 howmany(bpb.rde ? bpb.rde : DEFRDE,
524 bpb.bps / sizeof(struct de)) +
525 (bpb.spc ? MINCLS16 : MAXCLS12 + 1) *
526 (bpb.spc ? bpb.spc : howmany(DEFBLK, bpb.bps)))
527 fat = 12;
528 else if (bpb.rde || bpb.bsec <
529 (bpb.res ? bpb.res : bss) +
530 howmany((RESFTE + MAXCLS16) * 2, bpb.bps) * bpb.nft +
531 howmany(DEFRDE, bpb.bps / sizeof(struct de)) +
532 (MAXCLS16 + 1) *
533 (bpb.spc ? bpb.spc : howmany(8192, bpb.bps)))
534 fat = 16;
535 else
536 fat = 32;
San Mehat72eead42009-07-06 11:10:03 -0700537 }
538 x = bss;
539 if (fat == 32) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700540 if (!bpb.infs) {
541 if (x == MAXU16 || x == bpb.bkbs)
542 errx(1, "no room for info sector");
543 bpb.infs = x;
544 }
545 if (bpb.infs != MAXU16 && x <= bpb.infs)
546 x = bpb.infs + 1;
547 if (!bpb.bkbs) {
548 if (x == MAXU16)
549 errx(1, "no room for backup sector");
550 bpb.bkbs = x;
551 } else if (bpb.bkbs != MAXU16 && bpb.bkbs == bpb.infs)
552 errx(1, "backup sector would overwrite info sector");
553 if (bpb.bkbs != MAXU16 && x <= bpb.bkbs)
554 x = bpb.bkbs + 1;
San Mehat72eead42009-07-06 11:10:03 -0700555 }
Daniel Rosenberg052f2752014-07-15 16:56:20 -0700556
557 extra_res = 0;
558 set_res = !bpb.res;
559 set_spf = !bpb.bspf;
560 set_spc = !bpb.spc;
561 tempx = x;
562 /*
563 * Attempt to align if opt_A is set. This is done by increasing the number
564 * of reserved blocks. This can cause other factors to change, which can in
565 * turn change the alignment. This should take at most 2 iterations, as
566 * increasing the reserved amount may cause the FAT size to decrease by 1,
567 * requiring another nft reserved blocks. If spc changes, it will
568 * be half of its previous size, and thus will not throw off alignment.
569 */
570 do {
571 x = tempx;
572 if (set_res)
573 bpb.res = (fat == 32 ? MAX(x, MAX(16384 / bpb.bps, 4)) : x) + extra_res;
574 else if (bpb.res < x)
575 errx(1, "too few reserved sectors");
576 if (fat != 32 && !bpb.rde)
577 bpb.rde = DEFRDE;
578 rds = howmany(bpb.rde, bpb.bps / sizeof(struct de));
579 if (set_spc)
580 for (bpb.spc = howmany(fat == 16 ? DEFBLK16 : DEFBLK, bpb.bps);
581 bpb.spc < MAXSPC &&
582 bpb.res +
583 howmany((RESFTE + maxcls(fat)) * (fat / BPN),
584 bpb.bps * NPB) * bpb.nft +
585 rds +
586 (u_int64_t)(maxcls(fat) + 1) * bpb.spc <= bpb.bsec;
587 bpb.spc <<= 1);
588 if (fat != 32 && bpb.bspf > MAXU16)
589 errx(1, "too many sectors/FAT for FAT12/16");
590 x1 = bpb.res + rds;
591 x = bpb.bspf ? bpb.bspf : 1;
592 if (x1 + (u_int64_t)x * bpb.nft > bpb.bsec)
593 errx(1, "meta data exceeds file system size");
594 x1 += x * bpb.nft;
595 x = (u_int64_t)(bpb.bsec - x1) * bpb.bps * NPB /
596 (bpb.spc * bpb.bps * NPB + fat / BPN * bpb.nft);
597 x2 = howmany((RESFTE + MIN(x, maxcls(fat))) * (fat / BPN), bpb.bps * NPB);
598 if (set_spf) {
Daniel Rosenberg8218b6a2014-10-10 14:40:48 -0700599 if (!bpb.bspf) {
600 bpb.bspf = x2;
601 }
Daniel Rosenberg052f2752014-07-15 16:56:20 -0700602 x1 += (bpb.bspf - 1) * bpb.nft;
603 }
604 if(set_res) {
605 /* attempt to align root directory */
606 alignment = (bpb.res + bpb.bspf * bpb.nft) % bpb.spc;
607 extra_res += bpb.spc - alignment;
608 }
609 attempts++;
610 } while(opt_A && alignment != 0 && attempts < 2);
611 if (alignment != 0)
612 warnx("warning: Alignment failed.");
613
San Mehat72eead42009-07-06 11:10:03 -0700614 cls = (bpb.bsec - x1) / bpb.spc;
615 x = (u_int64_t)bpb.bspf * bpb.bps * NPB / (fat / BPN) - RESFTE;
616 if (cls > x)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700617 cls = x;
San Mehat72eead42009-07-06 11:10:03 -0700618 if (bpb.bspf < x2)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700619 warnx("warning: sectors/FAT limits file system to %u clusters", cls);
San Mehat72eead42009-07-06 11:10:03 -0700620 if (cls < mincls(fat))
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700621 errx(1, "%u clusters too few clusters for FAT%u, need %u", cls, fat, mincls(fat));
San Mehat72eead42009-07-06 11:10:03 -0700622 if (cls > maxcls(fat)) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700623 cls = maxcls(fat);
624 bpb.bsec = x1 + (cls + 1) * bpb.spc - 1;
625 warnx("warning: FAT type limits file system to %u sectors", bpb.bsec);
San Mehat72eead42009-07-06 11:10:03 -0700626 }
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700627 printf("%s: %u sector%s in %u FAT%u cluster%s (%u bytes/cluster)\n",
628 fname, cls * bpb.spc, cls * bpb.spc == 1 ? "" : "s", cls, fat,
629 cls == 1 ? "" : "s", bpb.bps * bpb.spc);
San Mehat72eead42009-07-06 11:10:03 -0700630 if (!bpb.mid)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700631 bpb.mid = !bpb.hid ? 0xf0 : 0xf8;
San Mehat72eead42009-07-06 11:10:03 -0700632 if (fat == 32)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700633 bpb.rdcl = RESFTE;
San Mehat72eead42009-07-06 11:10:03 -0700634 if (bpb.hid + bpb.bsec <= MAXU16) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700635 bpb.sec = bpb.bsec;
636 bpb.bsec = 0;
San Mehat72eead42009-07-06 11:10:03 -0700637 }
638 if (fat != 32) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700639 bpb.spf = bpb.bspf;
640 bpb.bspf = 0;
San Mehat72eead42009-07-06 11:10:03 -0700641 }
642 print_bpb(&bpb);
643 if (!opt_N) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700644 gettimeofday(&tv, NULL);
645 now = tv.tv_sec;
646 tm = localtime(&now);
647 if (!(img = malloc(bpb.bps)))
648 err(1, "%u", bpb.bps);
649 dir = bpb.res + (bpb.spf ? bpb.spf : bpb.bspf) * bpb.nft;
650 for (lsn = 0; lsn < dir + (fat == 32 ? bpb.spc : rds); lsn++) {
651 x = lsn;
652 if (opt_B && fat == 32 && bpb.bkbs != MAXU16 && bss <= bpb.bkbs && x >= bpb.bkbs) {
653 x -= bpb.bkbs;
654 if (!x && lseek(fd1, opt_ofs, SEEK_SET))
655 err(1, "%s", bname);
656 }
657 if (opt_B && x < bss) {
658 if ((n = read(fd1, img, bpb.bps)) == -1)
659 err(1, "%s", bname);
660 if ((unsigned)n != bpb.bps)
661 errx(1, "%s: can't read sector %u", bname, x);
662 } else
663 memset(img, 0, bpb.bps);
664 if (!lsn || (fat == 32 && bpb.bkbs != MAXU16 && lsn == bpb.bkbs)) {
665 x1 = sizeof(struct bs);
666 bsbpb = (struct bsbpb *)(img + x1);
667 mk2(bsbpb->bps, bpb.bps);
668 mk1(bsbpb->spc, bpb.spc);
669 mk2(bsbpb->res, bpb.res);
670 mk1(bsbpb->nft, bpb.nft);
671 mk2(bsbpb->rde, bpb.rde);
672 mk2(bsbpb->sec, bpb.sec);
673 mk1(bsbpb->mid, bpb.mid);
674 mk2(bsbpb->spf, bpb.spf);
675 mk2(bsbpb->spt, bpb.spt);
676 mk2(bsbpb->hds, bpb.hds);
677 mk4(bsbpb->hid, bpb.hid);
678 mk4(bsbpb->bsec, bpb.bsec);
679 x1 += sizeof(struct bsbpb);
680 if (fat == 32) {
681 bsxbpb = (struct bsxbpb *)(img + x1);
682 mk4(bsxbpb->bspf, bpb.bspf);
683 mk2(bsxbpb->xflg, 0);
684 mk2(bsxbpb->vers, 0);
685 mk4(bsxbpb->rdcl, bpb.rdcl);
686 mk2(bsxbpb->infs, bpb.infs);
687 mk2(bsxbpb->bkbs, bpb.bkbs);
688 x1 += sizeof(struct bsxbpb);
689 }
690 bsx = (struct bsx *)(img + x1);
691 mk1(bsx->sig, 0x29);
692 if (Iflag)
693 x = opt_I;
694 else
695 x = (((u_int)(1 + tm->tm_mon) << 8 |
696 (u_int)tm->tm_mday) +
697 ((u_int)tm->tm_sec << 8 |
698 (u_int)(tv.tv_usec / 10))) << 16 |
699 ((u_int)(1900 + tm->tm_year) +
700 ((u_int)tm->tm_hour << 8 |
701 (u_int)tm->tm_min));
702 mk4(bsx->volid, x);
703 mklabel(bsx->label, opt_L ? opt_L : "NO NAME");
George Burgess IVe7aa2b22016-03-02 14:02:55 -0800704 snprintf(buf, sizeof(buf), "FAT%u", fat);
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700705 setstr(bsx->type, buf, sizeof(bsx->type));
706 if (!opt_B) {
707 x1 += sizeof(struct bsx);
708 bs = (struct bs *)img;
709 mk1(bs->jmp[0], 0xeb);
710 mk1(bs->jmp[1], x1 - 2);
711 mk1(bs->jmp[2], 0x90);
712 setstr(bs->oem, opt_O ? opt_O : "BSD 4.4",
713 sizeof(bs->oem));
714 memcpy(img + x1, bootcode, sizeof(bootcode));
715 mk2(img + MINBPS - 2, DOSMAGIC);
716 }
717 } else if (fat == 32 && bpb.infs != MAXU16 &&
718 (lsn == bpb.infs || (bpb.bkbs != MAXU16 &&
719 lsn == bpb.bkbs + bpb.infs))) {
720 mk4(img, 0x41615252);
721 mk4(img + MINBPS - 28, 0x61417272);
722 mk4(img + MINBPS - 24, 0xffffffff);
723 mk4(img + MINBPS - 20, bpb.rdcl);
724 mk2(img + MINBPS - 2, DOSMAGIC);
725 } else if (lsn >= bpb.res && lsn < dir &&
726 !((lsn - bpb.res) % (bpb.spf ? bpb.spf : bpb.bspf))) {
727 mk1(img[0], bpb.mid);
728 for (x = 1; x < fat * (fat == 32 ? 3 : 2) / 8; x++)
729 mk1(img[x], fat == 32 && x % 4 == 3 ? 0x0f : 0xff);
730 } else if (lsn == dir && opt_L) {
731 de = (struct de *)img;
732 mklabel(de->namext, opt_L);
733 mk1(de->attr, 050);
734 x = (u_int)tm->tm_hour << 11 |
735 (u_int)tm->tm_min << 5 |
736 (u_int)tm->tm_sec >> 1;
737 mk2(de->time, x);
738 x = (u_int)(tm->tm_year - 80) << 9 |
739 (u_int)(tm->tm_mon + 1) << 5 |
740 (u_int)tm->tm_mday;
741 mk2(de->date, x);
742 }
743 if ((n = write(fd, img, bpb.bps)) == -1)
744 err(1, "%s", fname);
745 if ((unsigned)n != bpb.bps) {
746 errx(1, "%s: can't write sector %u", fname, lsn);
San Mehateab453c2010-01-10 11:10:21 -0800747 exit(1);
748 }
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700749 }
Ting-Yuan Huang58da81d2016-11-15 16:27:03 -0800750 free(img);
San Mehat72eead42009-07-06 11:10:03 -0700751 }
752 return 0;
753}
754
755/*
756 * Exit with error if file system is mounted.
757 */
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700758static void check_mounted(const char *fname, mode_t mode)
San Mehat72eead42009-07-06 11:10:03 -0700759{
Mark Salyzynaa907762014-05-08 09:31:43 -0700760#ifdef ANDROID
761 warnx("Skipping mount checks");
762#else
San Mehat72eead42009-07-06 11:10:03 -0700763 struct statfs *mp;
764 const char *s1, *s2;
765 size_t len;
766 int n, r;
767
San Mehat72eead42009-07-06 11:10:03 -0700768 if (!(n = getmntinfo(&mp, MNT_NOWAIT)))
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700769 err(1, "getmntinfo");
San Mehat72eead42009-07-06 11:10:03 -0700770 len = strlen(_PATH_DEV);
771 s1 = fname;
772 if (!strncmp(s1, _PATH_DEV, len))
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700773 s1 += len;
San Mehat72eead42009-07-06 11:10:03 -0700774 r = S_ISCHR(mode) && s1 != fname && *s1 == 'r';
775 for (; n--; mp++) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700776 s2 = mp->f_mntfromname;
777 if (!strncmp(s2, _PATH_DEV, len))
778 s2 += len;
779 if ((r && s2 != mp->f_mntfromname && !strcmp(s1 + 1, s2)) || !strcmp(s1, s2))
780 errx(1, "%s is mounted on %s", fname, mp->f_mntonname);
San Mehat72eead42009-07-06 11:10:03 -0700781 }
782#endif
783}
784
785/*
786 * Get a standard format.
787 */
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700788static void getstdfmt(const char *fmt, struct bpb *bpb)
San Mehat72eead42009-07-06 11:10:03 -0700789{
790 u_int x, i;
791
792 x = sizeof(stdfmt) / sizeof(stdfmt[0]);
793 for (i = 0; i < x && strcmp(fmt, stdfmt[i].name); i++);
794 if (i == x)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700795 errx(1, "%s: unknown standard format", fmt);
San Mehat72eead42009-07-06 11:10:03 -0700796 *bpb = stdfmt[i].bpb;
797}
798
799/*
800 * Get disk slice, partition, and geometry information.
801 */
802
Dan Willemsena2288222018-04-25 17:50:47 -0700803#ifdef __APPLE__
804static void getdiskinfo(__unused int fd, __unused const char* fname, __unused const char* dtype,
805 __unused int oflag, __unused struct bpb* bpb) {}
806#elif ANDROID
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700807static void getdiskinfo(int fd, const char *fname, const char *dtype,
808 __unused int oflag,struct bpb *bpb)
San Mehat72eead42009-07-06 11:10:03 -0700809{
810 struct hd_geometry geom;
Johan Redestigc0654192015-03-30 16:24:55 +0200811 u_long block_size;
San Mehat72eead42009-07-06 11:10:03 -0700812
813 if (ioctl(fd, BLKSSZGET, &bpb->bps)) {
San Mehatff3bcd02010-01-05 13:49:11 -0800814 fprintf(stderr, "Error getting bytes / sector (%s)\n", strerror(errno));
San Mehat72eead42009-07-06 11:10:03 -0700815 exit(1);
816 }
817
818 ckgeom(fname, bpb->bps, "bytes/sector");
819
Johan Redestigc0654192015-03-30 16:24:55 +0200820 if (ioctl(fd, BLKGETSIZE, &block_size)) {
San Mehatff3bcd02010-01-05 13:49:11 -0800821 fprintf(stderr, "Error getting blocksize (%s)\n", strerror(errno));
San Mehat72eead42009-07-06 11:10:03 -0700822 exit(1);
823 }
824
Johan Redestigc0654192015-03-30 16:24:55 +0200825 if (block_size > UINT32_MAX) {
826 fprintf(stderr, "Error blocksize too large: %lu\n", block_size);
827 exit(1);
828 }
829
830 bpb->bsec = (u_int)block_size;
831
San Mehat72eead42009-07-06 11:10:03 -0700832 if (ioctl(fd, HDIO_GETGEO, &geom)) {
San Mehatff3bcd02010-01-05 13:49:11 -0800833 fprintf(stderr, "Error getting gemoetry (%s) - trying sane values\n", strerror(errno));
834 geom.heads = 64;
835 geom.sectors = 63;
San Mehat72eead42009-07-06 11:10:03 -0700836 }
837
San Mehateab453c2010-01-10 11:10:21 -0800838 if (!geom.heads) {
839 printf("Bogus heads from kernel - setting sane value\n");
840 geom.heads = 64;
841 }
842
843 if (!geom.sectors) {
844 printf("Bogus sectors from kernel - setting sane value\n");
845 geom.sectors = 63;
846 }
847
San Mehat72eead42009-07-06 11:10:03 -0700848 bpb->spt = geom.sectors;
849 ckgeom(fname, bpb->spt, "sectors/track");
850
851 bpb->hds = geom.heads;
852 ckgeom(fname, bpb->hds, "drive heads");
853}
854
855#else
856
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700857static void getdiskinfo(int fd, const char *fname, const char *dtype,
858 __unused int oflag, struct bpb *bpb)
San Mehat72eead42009-07-06 11:10:03 -0700859{
860 struct disklabel *lp, dlp;
861 struct fd_type type;
862 off_t ms, hs = 0;
863
864 lp = NULL;
865
866 /* If the user specified a disk type, try to use that */
867 if (dtype != NULL) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700868 lp = getdiskbyname(dtype);
San Mehat72eead42009-07-06 11:10:03 -0700869 }
870
871 /* Maybe it's a floppy drive */
872 if (lp == NULL) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700873 if (ioctl(fd, DIOCGMEDIASIZE, &ms) == -1) {
874 struct stat st;
San Mehat72eead42009-07-06 11:10:03 -0700875
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700876 if (fstat(fd, &st))
877 err(1, "Cannot get disk size");
878 /* create a fake geometry for a file image */
879 ms = st.st_size;
880 dlp.d_secsize = 512;
881 dlp.d_nsectors = 63;
882 dlp.d_ntracks = 255;
883 dlp.d_secperunit = ms / dlp.d_secsize;
884 lp = &dlp;
885 } else if (ioctl(fd, FD_GTYPE, &type) != -1) {
886 dlp.d_secsize = 128 << type.secsize;
887 dlp.d_nsectors = type.sectrac;
888 dlp.d_ntracks = type.heads;
889 dlp.d_secperunit = ms / dlp.d_secsize;
890 lp = &dlp;
891 }
San Mehat72eead42009-07-06 11:10:03 -0700892 }
893
894 /* Maybe it's a fixed drive */
895 if (lp == NULL) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700896 if (ioctl(fd, DIOCGDINFO, &dlp) == -1) {
897 if (bpb->bps == 0 && ioctl(fd, DIOCGSECTORSIZE, &dlp.d_secsize) == -1)
898 errx(1, "Cannot get sector size, %s", strerror(errno));
San Mehat72eead42009-07-06 11:10:03 -0700899
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700900 /* XXX Should we use bpb->bps if it's set? */
901 dlp.d_secperunit = ms / dlp.d_secsize;
San Mehat72eead42009-07-06 11:10:03 -0700902
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700903 if (bpb->spt == 0 && ioctl(fd, DIOCGFWSECTORS, &dlp.d_nsectors) == -1) {
904 warnx("Cannot get number of sectors per track, %s", strerror(errno));
905 dlp.d_nsectors = 63;
906 }
907 if (bpb->hds == 0 && ioctl(fd, DIOCGFWHEADS, &dlp.d_ntracks) == -1) {
908 warnx("Cannot get number of heads, %s", strerror(errno));
909 if (dlp.d_secperunit <= 63*1*1024)
910 dlp.d_ntracks = 1;
911 else if (dlp.d_secperunit <= 63*16*1024)
912 dlp.d_ntracks = 16;
913 else
914 dlp.d_ntracks = 255;
915 }
916 }
San Mehat72eead42009-07-06 11:10:03 -0700917
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700918 hs = (ms / dlp.d_secsize) - dlp.d_secperunit;
919 lp = &dlp;
San Mehat72eead42009-07-06 11:10:03 -0700920 }
921
922 if (bpb->bps == 0)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700923 bpb->bps = ckgeom(fname, lp->d_secsize, "bytes/sector");
San Mehat72eead42009-07-06 11:10:03 -0700924 if (bpb->spt == 0)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700925 bpb->spt = ckgeom(fname, lp->d_nsectors, "sectors/track");
San Mehat72eead42009-07-06 11:10:03 -0700926 if (bpb->hds == 0)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700927 bpb->hds = ckgeom(fname, lp->d_ntracks, "drive heads");
San Mehat72eead42009-07-06 11:10:03 -0700928 if (bpb->bsec == 0)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700929 bpb->bsec = lp->d_secperunit;
San Mehat72eead42009-07-06 11:10:03 -0700930 if (bpb->hid == 0)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700931 bpb->hid = hs;
San Mehat72eead42009-07-06 11:10:03 -0700932}
933#endif
934
935/*
936 * Print out BPB values.
937 */
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700938static void print_bpb(struct bpb *bpb)
San Mehat72eead42009-07-06 11:10:03 -0700939{
940 printf("bps=%u spc=%u res=%u nft=%u", bpb->bps, bpb->spc, bpb->res,
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700941 bpb->nft);
San Mehat72eead42009-07-06 11:10:03 -0700942 if (bpb->rde)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700943 printf(" rde=%u", bpb->rde);
San Mehat72eead42009-07-06 11:10:03 -0700944 if (bpb->sec)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700945 printf(" sec=%u", bpb->sec);
San Mehat72eead42009-07-06 11:10:03 -0700946 printf(" mid=%#x", bpb->mid);
947 if (bpb->spf)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700948 printf(" spf=%u", bpb->spf);
San Mehat72eead42009-07-06 11:10:03 -0700949 printf(" spt=%u hds=%u hid=%u", bpb->spt, bpb->hds, bpb->hid);
950 if (bpb->bsec)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700951 printf(" bsec=%u", bpb->bsec);
San Mehat72eead42009-07-06 11:10:03 -0700952 if (!bpb->spf) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700953 printf(" bspf=%u rdcl=%u", bpb->bspf, bpb->rdcl);
954 printf(" infs=");
955 printf(bpb->infs == MAXU16 ? "%#x" : "%u", bpb->infs);
956 printf(" bkbs=");
957 printf(bpb->bkbs == MAXU16 ? "%#x" : "%u", bpb->bkbs);
San Mehat72eead42009-07-06 11:10:03 -0700958 }
959 printf("\n");
960}
961
962/*
963 * Check a disk geometry value.
964 */
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700965static u_int ckgeom(const char *fname, u_int val, const char *msg)
San Mehat72eead42009-07-06 11:10:03 -0700966{
967 if (!val)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700968 errx(1, "%s: no default %s", fname, msg);
San Mehat72eead42009-07-06 11:10:03 -0700969 if (val > MAXU16)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700970 errx(1, "%s: illegal %s %d", fname, msg, val);
San Mehat72eead42009-07-06 11:10:03 -0700971 return val;
972}
973
974/*
975 * Convert and check a numeric option argument.
976 */
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700977static u_int argtou(const char *arg, u_int lo, u_int hi, const char *msg)
San Mehat72eead42009-07-06 11:10:03 -0700978{
979 char *s;
980 u_long x;
981
982 errno = 0;
983 x = strtoul(arg, &s, 0);
984 if (errno || !*arg || *s || x < lo || x > hi)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700985 errx(1, "%s: bad %s", arg, msg);
San Mehat72eead42009-07-06 11:10:03 -0700986 return x;
987}
988
989/*
990 * Same for off_t, with optional skmgpP suffix
991 */
Daniel Rosenberg33e7b132014-07-08 19:26:02 -0700992static off_t argtooff(const char *arg, const char *msg)
San Mehat72eead42009-07-06 11:10:03 -0700993{
994 char *s;
995 off_t x;
996
997 x = strtoll(arg, &s, 0);
998 /* allow at most one extra char */
999 if (errno || x < 0 || (s[0] && s[1]) )
Daniel Rosenberg33e7b132014-07-08 19:26:02 -07001000 errx(1, "%s: bad %s", arg, msg);
1001 if (*s) { /* the extra char is the multiplier */
1002 switch (*s) {
1003 default:
1004 errx(1, "%s: bad %s", arg, msg);
1005 /* notreached */
San Mehat72eead42009-07-06 11:10:03 -07001006
Daniel Rosenberg33e7b132014-07-08 19:26:02 -07001007 case 's': /* sector */
1008 case 'S':
1009 x <<= 9; /* times 512 */
1010 break;
San Mehat72eead42009-07-06 11:10:03 -07001011
Daniel Rosenberg33e7b132014-07-08 19:26:02 -07001012 case 'k': /* kilobyte */
1013 case 'K':
1014 x <<= 10; /* times 1024 */
1015 break;
San Mehat72eead42009-07-06 11:10:03 -07001016
Daniel Rosenberg33e7b132014-07-08 19:26:02 -07001017 case 'm': /* megabyte */
1018 case 'M':
1019 x <<= 20; /* times 1024*1024 */
1020 break;
San Mehat72eead42009-07-06 11:10:03 -07001021
Daniel Rosenberg33e7b132014-07-08 19:26:02 -07001022 case 'g': /* gigabyte */
1023 case 'G':
1024 x <<= 30; /* times 1024*1024*1024 */
1025 break;
1026
1027 case 'p': /* partition start */
1028 case 'P': /* partition start */
1029 case 'l': /* partition length */
1030 case 'L': /* partition length */
1031 errx(1, "%s: not supported yet %s", arg, msg);
1032 /* notreached */
1033 }
San Mehat72eead42009-07-06 11:10:03 -07001034 }
1035 return x;
1036}
1037
1038/*
1039 * Check a volume label.
1040 */
Daniel Rosenberg33e7b132014-07-08 19:26:02 -07001041static int oklabel(const char *src)
San Mehat72eead42009-07-06 11:10:03 -07001042{
1043 int c, i;
1044
1045 for (i = 0; i <= 11; i++) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -07001046 c = (u_char)*src++;
1047 if (c < ' ' + !i || strchr("\"*+,./:;<=>?[\\]|", c))
1048 break;
San Mehat72eead42009-07-06 11:10:03 -07001049 }
1050 return i && !c;
1051}
1052
1053/*
1054 * Make a volume label.
1055 */
Daniel Rosenberg33e7b132014-07-08 19:26:02 -07001056static void mklabel(u_int8_t *dest, const char *src)
San Mehat72eead42009-07-06 11:10:03 -07001057{
1058 int c, i;
1059
1060 for (i = 0; i < 11; i++) {
Daniel Rosenberg33e7b132014-07-08 19:26:02 -07001061 c = *src ? toupper(*src++) : ' ';
1062 *dest++ = !i && c == '\xe5' ? 5 : c;
San Mehat72eead42009-07-06 11:10:03 -07001063 }
1064}
1065
1066/*
1067 * Copy string, padding with spaces.
1068 */
Daniel Rosenberg33e7b132014-07-08 19:26:02 -07001069static void setstr(u_int8_t *dest, const char *src, size_t len)
San Mehat72eead42009-07-06 11:10:03 -07001070{
1071 while (len--)
Daniel Rosenberg33e7b132014-07-08 19:26:02 -07001072 *dest++ = *src ? *src++ : ' ';
San Mehat72eead42009-07-06 11:10:03 -07001073}
1074
1075/*
1076 * Print usage message.
1077 */
Daniel Rosenberg33e7b132014-07-08 19:26:02 -07001078static void usage(void)
San Mehat72eead42009-07-06 11:10:03 -07001079{
Daniel Rosenberg33e7b132014-07-08 19:26:02 -07001080 fprintf(stderr,
1081 "usage: newfs_msdos [ -options ] special [disktype]\n"
1082 "where the options are:\n"
1083 "\t-@ create file system at specified offset\n"
Daniel Rosenberg052f2752014-07-15 16:56:20 -07001084 "\t-A Attempt to cluster align root directory\n"
Daniel Rosenberg33e7b132014-07-08 19:26:02 -07001085 "\t-B get bootstrap from file\n"
1086 "\t-C create image file with specified size\n"
1087 "\t-F FAT type (12, 16, or 32)\n"
1088 "\t-I volume ID\n"
1089 "\t-L volume label\n"
1090 "\t-N don't create file system: just print out parameters\n"
1091 "\t-O OEM string\n"
1092 "\t-S bytes/sector\n"
1093 "\t-a sectors/FAT\n"
1094 "\t-b block size\n"
1095 "\t-c sectors/cluster\n"
1096 "\t-e root directory entries\n"
1097 "\t-f standard format\n"
1098 "\t-h drive heads\n"
1099 "\t-i file system info sector\n"
1100 "\t-k backup boot sector\n"
1101 "\t-m media descriptor\n"
1102 "\t-n number of FATs\n"
1103 "\t-o hidden sectors\n"
1104 "\t-r reserved sectors\n"
1105 "\t-s file system size (sectors)\n"
1106 "\t-u sectors/track\n");
1107 exit(1);
San Mehat72eead42009-07-06 11:10:03 -07001108}