1289629Semaste/*	$FreeBSD: stable/11/sbin/newfs_msdos/mkfs_msdos.h 336329 2018-07-16 04:06:34Z delphij $	*/
2291218Semaste/*	$NetBSD: mkfs_msdos.h,v 1.3 2015/10/16 17:38:17 christos Exp $	*/
3289629Semaste
4289376Semaste/*-
5289629Semaste * Copyright (c) 2013 The NetBSD Foundation, Inc.
6289376Semaste * All rights reserved.
7289376Semaste *
8289629Semaste * This code is derived from software contributed to The NetBSD Foundation
9289629Semaste * by Christos Zoulas.
10289376Semaste *
11289376Semaste * Redistribution and use in source and binary forms, with or without
12289376Semaste * modification, are permitted provided that the following conditions
13289376Semaste * are met:
14289376Semaste * 1. Redistributions of source code must retain the above copyright
15289376Semaste *    notice, this list of conditions and the following disclaimer.
16289376Semaste * 2. Redistributions in binary form must reproduce the above copyright
17289376Semaste *    notice, this list of conditions and the following disclaimer in the
18289376Semaste *    documentation and/or other materials provided with the distribution.
19289376Semaste *
20289629Semaste * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21289629Semaste * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22289629Semaste * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23289629Semaste * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24289629Semaste * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25289629Semaste * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26289629Semaste * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27289629Semaste * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28289629Semaste * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29289629Semaste * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30289629Semaste * POSSIBILITY OF SUCH DAMAGE.
31289376Semaste */
32289376Semaste
33289629Semaste#include <sys/types.h>
34289629Semaste#include <stdbool.h>
35289629Semaste#define ALLOPTS \
36289629SemasteAOPT('@', off_t, offset, 0, "Offset in device") \
37336329SdelphijAOPT('A', bool, align, -2, "Attempt to cluster align root directory") \
38289629SemasteAOPT('B', const char *, bootstrap, -1, "Bootstrap file") \
39289629SemasteAOPT('C', off_t, create_size, 0, "Create file") \
40289629SemasteAOPT('F', uint8_t,  fat_type, 12, "FAT type (12, 16, or 32)") \
41289629SemasteAOPT('I', uint32_t, volume_id, 0, "Volume ID") \
42289629SemasteAOPT('L', const char *, volume_label, -1, "Volume Label") \
43289629SemasteAOPT('N', bool, no_create, -2, "Don't create filesystem, print params only") \
44289629SemasteAOPT('O', const char *, OEM_string, -1, "OEM string") \
45289629SemasteAOPT('S', uint16_t, bytes_per_sector, 1, "Bytes per sector") \
46336328SdelphijAOPT('T', time_t, timestamp, 0, "Timestamp") \
47289629SemasteAOPT('a', uint32_t, sectors_per_fat, 1, "Sectors per FAT") \
48289629SemasteAOPT('b', uint32_t, block_size, 1, "Block size") \
49289629SemasteAOPT('c', uint8_t, sectors_per_cluster, 1, "Sectors per cluster") \
50289629SemasteAOPT('e', uint16_t, directory_entries, 1, "Directory entries") \
51289629SemasteAOPT('f', const char *, floppy, -1, "Standard format floppies (160,180,320,360,640,720,1200,1232,1440,2880)") \
52289629SemasteAOPT('h', uint16_t, drive_heads, 1, "Drive heads") \
53289629SemasteAOPT('i', uint16_t, info_sector, 1, "Info sector") \
54289629SemasteAOPT('k', uint16_t, backup_sector, 1, "Backup sector") \
55289629SemasteAOPT('m', uint8_t, media_descriptor, 0, "Media descriptor") \
56289629SemasteAOPT('n', uint8_t, num_FAT, 1, "Number of FATs") \
57289629SemasteAOPT('o', uint32_t, hidden_sectors, 0, "Hidden sectors") \
58289629SemasteAOPT('r', uint16_t, reserved_sectors, 1, "Reserved sectors") \
59289629SemasteAOPT('s', uint32_t, size, 1, "File System size") \
60289629SemasteAOPT('u', uint16_t, sectors_per_track, 1, "Sectors per track")
61289629Semaste
62289376Semastestruct msdos_options {
63289629Semaste#define AOPT(_opt, _type, _name, _min, _desc) _type _name;
64289629SemasteALLOPTS
65336329Sdelphij#undef AOPT
66336328Sdelphij	uint32_t timestamp_set:1;
67289629Semaste	uint32_t volume_id_set:1;
68289629Semaste	uint32_t media_descriptor_set:1;
69289629Semaste	uint32_t hidden_sectors_set:1;
70289376Semaste};
71289376Semaste
72289376Semasteint mkfs_msdos(const char *, const char *, const struct msdos_options *);
73