2 * Copyright (c) 1998 Robert Nordier
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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
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.
27 * $FreeBSD: head/sbin/newfs_msdos/newfs_msdos.c 291385 2015-11-27 14:40:21Z emaste $
30 #include <sys/param.h>
40 #include "mkfs_msdos.h"
42 #define argto1(arg, lo, msg) argtou(arg, lo, 0xff, msg)
43 #define argto2(arg, lo, msg) argtou(arg, lo, 0xffff, msg)
44 #define argto4(arg, lo, msg) argtou(arg, lo, 0xffffffff, msg)
45 #define argtox(arg, lo, msg) argtou(arg, lo, UINT_MAX, msg)
47 static u_int
argtou(const char *, u_int
, u_int
, const char *);
48 static off_t
argtooff(const char *, const char *);
49 static void usage(void);
52 * Construct a FAT12, FAT16, or FAT32 file system.
55 main(int argc
, char *argv
[])
57 static const char opts
[] = "@:NB:C:F:I:L:O:S:a:b:c:e:f:h:i:k:m:n:o:r:s:u:";
58 struct msdos_options o
;
59 const char *fname
, *dtype
;
63 memset(&o
, 0, sizeof(o
));
65 while ((ch
= getopt(argc
, argv
, opts
)) != -1)
68 o
.offset
= argtooff(optarg
, "offset");
77 o
.create_size
= argtooff(optarg
, "create size");
80 if (strcmp(optarg
, "12") &&
81 strcmp(optarg
, "16") &&
83 errx(1, "%s: bad FAT type", optarg
);
84 o
.fat_type
= atoi(optarg
);
87 o
.volume_id
= argto4(optarg
, 0, "volume ID");
91 o
.volume_label
= optarg
;
94 o
.OEM_string
= optarg
;
97 o
.bytes_per_sector
= argto2(optarg
, 1, "bytes/sector");
100 o
.sectors_per_fat
= argto4(optarg
, 1, "sectors/FAT");
103 o
.block_size
= argtox(optarg
, 1, "block size");
104 o
.sectors_per_cluster
= 0;
107 o
.sectors_per_cluster
= argto1(optarg
, 1, "sectors/cluster");
111 o
.directory_entries
= argto2(optarg
, 1, "directory entries");
117 o
.drive_heads
= argto2(optarg
, 1, "drive heads");
120 o
.info_sector
= argto2(optarg
, 1, "info sector");
123 o
.backup_sector
= argto2(optarg
, 1, "backup sector");
126 o
.media_descriptor
= argto1(optarg
, 0, "media descriptor");
127 o
.media_descriptor_set
= 1;
130 o
.num_FAT
= argto1(optarg
, 1, "number of FATs");
133 o
.hidden_sectors
= argto4(optarg
, 0, "hidden sectors");
134 o
.hidden_sectors_set
= 1;
137 o
.reserved_sectors
= argto2(optarg
, 1, "reserved sectors");
140 o
.size
= argto4(optarg
, 1, "file system size");
143 o
.sectors_per_track
= argto2(optarg
, 1, "sectors/track");
150 if (argc
< 1 || argc
> 2)
153 if (!o
.create_size
&& !strchr(fname
, '/')) {
154 snprintf(buf
, sizeof(buf
), "%s%s", _PATH_DEV
, fname
);
155 if (!(fname
= strdup(buf
)))
159 return !!mkfs_msdos(fname
, dtype
, &o
);
163 * Convert and check a numeric option argument.
166 argtou(const char *arg
, u_int lo
, u_int hi
, const char *msg
)
172 x
= strtoul(arg
, &s
, 0);
173 if (errno
|| !*arg
|| *s
|| x
< lo
|| x
> hi
)
174 errx(1, "%s: bad %s", arg
, msg
);
179 * Same for off_t, with optional skmgpP suffix
182 argtooff(const char *arg
, const char *msg
)
188 x
= strtoll(arg
, &s
, 0);
189 /* allow at most one extra char */
190 if (errno
|| x
< 0 || (s
[0] && s
[1]) )
191 errx(1, "%s: bad %s", arg
, msg
);
192 if (*s
) { /* the extra char is the multiplier */
195 errx(1, "%s: bad %s", arg
, msg
);
198 case 's': /* sector */
200 x
<<= 9; /* times 512 */
203 case 'k': /* kilobyte */
205 x
<<= 10; /* times 1024 */
208 case 'm': /* megabyte */
210 x
<<= 20; /* times 1024*1024 */
213 case 'g': /* gigabyte */
215 x
<<= 30; /* times 1024*1024*1024 */
218 case 'p': /* partition start */
220 case 'l': /* partition length */
222 errx(1, "%s: not supported yet %s", arg
, msg
);
230 * Print usage message.
236 "usage: %s [ -options ] special [disktype]\n", getprogname());
237 fprintf(stderr
, "where the options are:\n");
242 #define AOPT(_opt, _type, _name, _min, _desc) { _opt, _desc },
246 for (size_t i
= 0; i
< NELEM(opts
); i
++)
247 fprintf(stderr
, "\t-%c %s\n", opts
[i
].o
, opts
[i
].h
);