Home | History | Annotate | Line # | Download | only in newfs
newfs.c revision 1.70
      1  1.70       dsl /*	$NetBSD: newfs.c,v 1.70 2003/09/11 12:19:45 dsl Exp $	*/
      2  1.67       agc 
      3  1.67       agc /*
      4  1.67       agc  * Copyright (c) 1983, 1989, 1993, 1994
      5  1.67       agc  *	The Regents of the University of California.  All rights reserved.
      6  1.67       agc  *
      7  1.67       agc  * Redistribution and use in source and binary forms, with or without
      8  1.67       agc  * modification, are permitted provided that the following conditions
      9  1.67       agc  * are met:
     10  1.67       agc  * 1. Redistributions of source code must retain the above copyright
     11  1.67       agc  *    notice, this list of conditions and the following disclaimer.
     12  1.67       agc  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.67       agc  *    notice, this list of conditions and the following disclaimer in the
     14  1.67       agc  *    documentation and/or other materials provided with the distribution.
     15  1.67       agc  * 3. Neither the name of the University nor the names of its contributors
     16  1.67       agc  *    may be used to endorse or promote products derived from this software
     17  1.67       agc  *    without specific prior written permission.
     18  1.67       agc  *
     19  1.67       agc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20  1.67       agc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21  1.67       agc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22  1.67       agc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23  1.67       agc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24  1.67       agc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25  1.67       agc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26  1.67       agc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27  1.67       agc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28  1.67       agc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29  1.67       agc  * SUCH DAMAGE.
     30  1.67       agc  */
     31  1.18       cgd 
     32   1.1       cgd /*
     33  1.64      fvdl  * Copyright (c) 2002 Networks Associates Technology, Inc.
     34  1.64      fvdl  * All rights reserved.
     35  1.64      fvdl  *
     36  1.64      fvdl  * This software was developed for the FreeBSD Project by Marshall
     37  1.64      fvdl  * Kirk McKusick and Network Associates Laboratories, the Security
     38  1.64      fvdl  * Research Division of Network Associates, Inc. under DARPA/SPAWAR
     39  1.64      fvdl  * contract N66001-01-C-8035 ("CBOSS"), as part of the DARPA CHATS
     40  1.64      fvdl  * research program
     41  1.64      fvdl  *
     42   1.1       cgd  * Redistribution and use in source and binary forms, with or without
     43   1.1       cgd  * modification, are permitted provided that the following conditions
     44   1.1       cgd  * are met:
     45   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     46   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     47   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     48   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     49   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     50   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     51   1.1       cgd  *    must display the following acknowledgement:
     52   1.1       cgd  *	This product includes software developed by the University of
     53   1.1       cgd  *	California, Berkeley and its contributors.
     54   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     55   1.1       cgd  *    may be used to endorse or promote products derived from this software
     56   1.1       cgd  *    without specific prior written permission.
     57   1.1       cgd  *
     58   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     59   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     60   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     61   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     62   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     63   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     64   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     65   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     66   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     67   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     68   1.1       cgd  * SUCH DAMAGE.
     69   1.1       cgd  */
     70   1.1       cgd 
     71  1.25  christos #include <sys/cdefs.h>
     72   1.1       cgd #ifndef lint
     73  1.25  christos __COPYRIGHT("@(#) Copyright (c) 1983, 1989, 1993, 1994\n\
     74  1.25  christos 	The Regents of the University of California.  All rights reserved.\n");
     75   1.1       cgd #endif /* not lint */
     76   1.1       cgd 
     77   1.1       cgd #ifndef lint
     78  1.18       cgd #if 0
     79  1.27     lukem static char sccsid[] = "@(#)newfs.c	8.13 (Berkeley) 5/1/95";
     80  1.18       cgd #else
     81  1.70       dsl __RCSID("$NetBSD: newfs.c,v 1.70 2003/09/11 12:19:45 dsl Exp $");
     82  1.18       cgd #endif
     83   1.1       cgd #endif /* not lint */
     84   1.1       cgd 
     85   1.1       cgd /*
     86   1.1       cgd  * newfs: friendly front end to mkfs
     87   1.1       cgd  */
     88   1.1       cgd #include <sys/param.h>
     89   1.1       cgd #include <sys/ioctl.h>
     90   1.1       cgd #include <sys/disklabel.h>
     91   1.1       cgd #include <sys/file.h>
     92   1.1       cgd #include <sys/mount.h>
     93  1.19   thorpej #include <sys/sysctl.h>
     94  1.30  drochner #include <sys/wait.h>
     95   1.1       cgd 
     96  1.10   mycroft #include <ufs/ufs/dir.h>
     97  1.27     lukem #include <ufs/ufs/dinode.h>
     98  1.32      fvdl #include <ufs/ufs/ufsmount.h>
     99  1.10   mycroft #include <ufs/ffs/fs.h>
    100  1.10   mycroft 
    101  1.10   mycroft #include <ctype.h>
    102  1.37      tron #include <disktab.h>
    103  1.54    simonb #include <err.h>
    104   1.1       cgd #include <errno.h>
    105  1.54    simonb #include <grp.h>
    106  1.10   mycroft #include <paths.h>
    107  1.54    simonb #include <pwd.h>
    108  1.54    simonb #include <signal.h>
    109   1.1       cgd #include <stdio.h>
    110  1.10   mycroft #include <stdlib.h>
    111   1.1       cgd #include <string.h>
    112  1.10   mycroft #include <syslog.h>
    113  1.10   mycroft #include <unistd.h>
    114  1.20   thorpej #include <util.h>
    115  1.10   mycroft 
    116  1.10   mycroft #include "mntopts.h"
    117  1.25  christos #include "dkcksum.h"
    118  1.25  christos #include "extern.h"
    119  1.10   mycroft 
    120  1.10   mycroft struct mntopt mopts[] = {
    121  1.10   mycroft 	MOPT_STDOPTS,
    122  1.10   mycroft 	MOPT_ASYNC,
    123  1.22       cgd 	MOPT_UPDATE,
    124  1.60  christos 	MOPT_GETARGS,
    125  1.23       tls 	MOPT_NOATIME,
    126  1.10   mycroft 	{ NULL },
    127  1.10   mycroft };
    128  1.10   mycroft 
    129  1.40    simonb static struct disklabel *getdisklabel(char *, int);
    130  1.40    simonb static void rewritelabel(char *, int, struct disklabel *);
    131  1.54    simonb static gid_t mfs_group(const char *);
    132  1.54    simonb static uid_t mfs_user(const char *);
    133  1.43     lukem static int strsuftoi(const char *, const char *, int, int);
    134  1.40    simonb static void usage(void);
    135  1.40    simonb int main(int, char *[]);
    136   1.1       cgd 
    137   1.1       cgd #define	COMPAT			/* allow non-labeled disks */
    138   1.1       cgd 
    139   1.1       cgd /*
    140   1.1       cgd  * The following two constants set the default block and fragment sizes.
    141   1.1       cgd  * Both constants must be a power of 2 and meet the following constraints:
    142   1.1       cgd  *	MINBSIZE <= DESBLKSIZE <= MAXBSIZE
    143   1.1       cgd  *	sectorsize <= DESFRAGSIZE <= DESBLKSIZE
    144   1.1       cgd  *	DESBLKSIZE / DESFRAGSIZE <= 8
    145   1.1       cgd  */
    146  1.53  augustss /*
    147  1.53  augustss  * For file systems smaller than SMALL_FSSIZE we use the S_DFL_* defaults,
    148  1.53  augustss  * otherwise if less than MEDIUM_FSSIZE use M_DFL_*, otherwise use
    149  1.53  augustss  * L_DFL_*.
    150  1.53  augustss  */
    151  1.54    simonb #define	SMALL_FSSIZE	(20*1024*2)
    152  1.53  augustss #define	S_DFL_FRAGSIZE	512
    153  1.53  augustss #define	S_DFL_BLKSIZE	4096
    154  1.54    simonb #define	MEDIUM_FSSIZE	(1000*1024*2)
    155  1.53  augustss #define	M_DFL_FRAGSIZE	1024
    156  1.53  augustss #define	M_DFL_BLKSIZE	8192
    157  1.53  augustss #define	L_DFL_FRAGSIZE	2048
    158  1.53  augustss #define	L_DFL_BLKSIZE	16384
    159   1.1       cgd 
    160  1.65       dbj /* Apple requires the fragment size to be at least APPLEUFS_DIRBLKSIZ
    161  1.65       dbj  * but the block size cannot be larger than Darwin's PAGE_SIZE.  See
    162  1.65       dbj  * the mount check in Darwin's ffs_mountfs for an explanation.
    163  1.65       dbj  */
    164  1.65       dbj #define APPLEUFS_DFL_FRAGSIZE APPLEUFS_DIRBLKSIZ /* 1024 */
    165  1.65       dbj #define APPLEUFS_DFL_BLKSIZE 4096 /* default Darwin PAGE_SIZE */
    166  1.65       dbj 
    167   1.1       cgd /*
    168  1.43     lukem  * Default sector size.
    169  1.43     lukem  */
    170  1.54    simonb #define	DFL_SECSIZE	512
    171  1.43     lukem 
    172  1.43     lukem /*
    173   1.1       cgd  * MAXBLKPG determines the maximum number of data blocks which are
    174   1.1       cgd  * placed in a single cylinder group. The default is one indirect
    175   1.1       cgd  * block worth of data blocks.
    176   1.1       cgd  */
    177  1.64      fvdl #define	MAXBLKPG_UFS1(bsize)	((bsize) / sizeof(int32_t))
    178  1.64      fvdl #define	MAXBLKPG_UFS2(bsize)	((bsize) / sizeof(int64_t))
    179   1.1       cgd 
    180   1.1       cgd /*
    181   1.1       cgd  * Each file system has a number of inodes statically allocated.
    182   1.1       cgd  * We allocate one inode slot per NFPI fragments, expecting this
    183   1.1       cgd  * to be far more than we will ever need.
    184   1.1       cgd  */
    185   1.1       cgd #define	NFPI		4
    186   1.1       cgd 
    187   1.1       cgd 
    188   1.1       cgd int	mfs;			/* run as the memory based filesystem */
    189   1.1       cgd int	Nflag;			/* run without writing file system */
    190  1.64      fvdl int	Oflag = 1;		/* format as an 4.3BSD file system */
    191  1.64      fvdl int64_t	fssize;			/* file system size */
    192   1.1       cgd int	sectorsize;		/* bytes/sector */
    193   1.1       cgd int	fsize = 0;		/* fragment size */
    194   1.1       cgd int	bsize = 0;		/* block size */
    195  1.64      fvdl int	maxbsize = 0;		/* maximum clustering */
    196   1.1       cgd int	minfree = MINFREE;	/* free space threshold */
    197   1.1       cgd int	opt = DEFAULTOPT;	/* optimization preference (space or time) */
    198   1.1       cgd int	density;		/* number of bytes per inode */
    199  1.70       dsl int	num_inodes;		/* number of inoder (overrides density) */
    200  1.36   mycroft int	maxcontig = 0;		/* max contiguous blocks to allocate */
    201   1.1       cgd int	maxbpg;			/* maximum blocks per file in a cyl group */
    202  1.47     lukem int	avgfilesize = AVFILESIZ;/* expected average file size */
    203  1.47     lukem int	avgfpdir = AFPDIR;	/* expected number of files per directory */
    204  1.10   mycroft int	mntflags = MNT_ASYNC;	/* flags to be passed to mount */
    205   1.1       cgd u_long	memleft;		/* virtual memory available */
    206   1.1       cgd caddr_t	membase;		/* start address of memory based filesystem */
    207  1.43     lukem int	needswap;		/* Filesystem not in native byte order */
    208   1.1       cgd #ifdef COMPAT
    209   1.1       cgd char	*disktype;
    210   1.1       cgd int	unlabeled;
    211   1.1       cgd #endif
    212  1.61       dbj char *appleufs_volname = 0; /* Apple UFS volume name */
    213  1.61       dbj int isappleufs = 0;
    214   1.1       cgd 
    215   1.1       cgd char	device[MAXPATHLEN];
    216   1.1       cgd 
    217  1.10   mycroft int
    218  1.40    simonb main(int argc, char *argv[])
    219   1.1       cgd {
    220  1.25  christos 	struct partition *pp;
    221  1.25  christos 	struct disklabel *lp;
    222  1.14       cgd 	struct disklabel mfsfakelabel;
    223   1.1       cgd 	struct partition oldpartition;
    224  1.10   mycroft 	struct statfs *mp;
    225  1.58     lukem 	int ch, fsi, fso, len, maxpartitions, n, Fflag, Iflag, Zflag;
    226  1.43     lukem 	char *cp, *endp, *s1, *s2, *special;
    227  1.43     lukem 	const char *opstring;
    228  1.43     lukem 	long long llsize;
    229  1.53  augustss 	int dfl_fragsize, dfl_blksize;
    230  1.30  drochner #ifdef MFS
    231  1.30  drochner 	char mountfromname[100];
    232  1.30  drochner 	pid_t pid, res;
    233  1.30  drochner 	struct statfs sf;
    234  1.56     lukem 	int status;
    235  1.56     lukem #endif
    236  1.54    simonb 	mode_t mfsmode;
    237  1.54    simonb 	uid_t mfsuid;
    238  1.54    simonb 	gid_t mfsgid;
    239   1.1       cgd 
    240  1.43     lukem 	cp = NULL;
    241  1.43     lukem 	fsi = fso = -1;
    242  1.58     lukem 	Fflag = Iflag = Zflag = 0;
    243  1.42       cgd 	if (strstr(getprogname(), "mfs")) {
    244   1.1       cgd 		mfs = 1;
    245  1.54    simonb 		mfsmode = 01777; /* default mode for a /tmp-type directory */
    246  1.54    simonb 		mfsuid = 0;	/* user root */
    247  1.54    simonb 		mfsgid = 0;	/* group wheel */
    248   1.1       cgd 		Nflag++;
    249   1.1       cgd 	}
    250   1.1       cgd 
    251  1.19   thorpej 	maxpartitions = getmaxpartitions();
    252  1.19   thorpej 	if (maxpartitions > 26)
    253  1.25  christos 		errx(1, "insane maxpartitions value %d", maxpartitions);
    254  1.19   thorpej 
    255  1.10   mycroft 	opstring = mfs ?
    256  1.70       dsl 	    "NT:a:b:c:d:e:f:g:h:i:m:n:o:p:s:u:" :
    257  1.70       dsl 	    "B:FINO:S:T:Za:b:c:d:e:f:g:h:i:l:m:n:o:p:r:s:u:v:";
    258  1.26     lukem 	while ((ch = getopt(argc, argv, opstring)) != -1)
    259  1.10   mycroft 		switch (ch) {
    260  1.33    bouyer 		case 'B':
    261  1.33    bouyer 			if (strcmp(optarg, "be") == 0) {
    262  1.33    bouyer #if BYTE_ORDER == LITTLE_ENDIAN
    263  1.33    bouyer 				needswap = 1;
    264  1.33    bouyer #endif
    265  1.33    bouyer 			} else if (strcmp(optarg, "le") == 0) {
    266  1.33    bouyer #if BYTE_ORDER == BIG_ENDIAN
    267  1.33    bouyer 				needswap = 1;
    268  1.33    bouyer #endif
    269  1.33    bouyer 			} else
    270  1.33    bouyer 				usage();
    271  1.33    bouyer 			break;
    272  1.43     lukem 		case 'F':
    273  1.43     lukem 			Fflag = 1;
    274  1.43     lukem 			break;
    275  1.58     lukem 		case 'I':
    276  1.58     lukem 			Iflag = 1;
    277  1.58     lukem 			break;
    278  1.10   mycroft 		case 'N':
    279  1.10   mycroft 			Nflag = 1;
    280   1.1       cgd 			break;
    281  1.10   mycroft 		case 'O':
    282  1.64      fvdl 			Oflag = strsuftoi("format", optarg, 0, 2);
    283   1.1       cgd 			break;
    284   1.1       cgd 		case 'S':
    285  1.43     lukem 			sectorsize = strsuftoi("sector size",
    286  1.43     lukem 			    optarg, 1, INT_MAX);
    287   1.1       cgd 			break;
    288   1.1       cgd #ifdef COMPAT
    289   1.1       cgd 		case 'T':
    290   1.1       cgd 			disktype = optarg;
    291   1.1       cgd 			break;
    292   1.1       cgd #endif
    293  1.43     lukem 		case 'Z':
    294  1.43     lukem 			Zflag = 1;
    295  1.43     lukem 			break;
    296   1.1       cgd 		case 'a':
    297  1.43     lukem 			maxcontig = strsuftoi("maximum contiguous blocks",
    298  1.43     lukem 			    optarg, 1, INT_MAX);
    299   1.1       cgd 			break;
    300   1.1       cgd 		case 'b':
    301  1.43     lukem 			bsize = strsuftoi("block size",
    302  1.50     lukem 			    optarg, MINBSIZE, MAXBSIZE);
    303   1.1       cgd 			break;
    304  1.68       dsl 		case 'c':	/* was cylinders per group... */
    305   1.1       cgd 			break;
    306   1.1       cgd 		case 'd':
    307  1.64      fvdl 			maxbsize = strsuftoi("maximum extent size",
    308  1.43     lukem 			    optarg, 0, INT_MAX);
    309   1.1       cgd 			break;
    310   1.1       cgd 		case 'e':
    311  1.43     lukem 			maxbpg = strsuftoi(
    312  1.43     lukem 			    "blocks per file in a cylinder group",
    313  1.43     lukem 			    optarg, 1, INT_MAX);
    314   1.1       cgd 			break;
    315   1.1       cgd 		case 'f':
    316  1.43     lukem 			fsize = strsuftoi("fragment size",
    317  1.50     lukem 			    optarg, 1, MAXBSIZE);
    318   1.1       cgd 			break;
    319  1.47     lukem 		case 'g':
    320  1.54    simonb 			if (mfs)
    321  1.54    simonb 				mfsgid = mfs_group(optarg);
    322  1.54    simonb 			else {
    323  1.54    simonb 				avgfilesize = strsuftoi("average file size",
    324  1.54    simonb 				    optarg, 1, INT_MAX);
    325  1.54    simonb 			}
    326  1.47     lukem 			break;
    327  1.47     lukem 		case 'h':
    328  1.47     lukem 			avgfpdir = strsuftoi("expected files per directory",
    329  1.47     lukem 			    optarg, 1, INT_MAX);
    330  1.47     lukem 			break;
    331   1.1       cgd 		case 'i':
    332  1.43     lukem 			density = strsuftoi("bytes per inode",
    333  1.43     lukem 			    optarg, 1, INT_MAX);
    334   1.1       cgd 			break;
    335   1.1       cgd 		case 'm':
    336  1.43     lukem 			minfree = strsuftoi("free space %",
    337  1.43     lukem 			    optarg, 0, 99);
    338   1.1       cgd 			break;
    339  1.70       dsl 		case 'n':
    340  1.70       dsl 			num_inodes = strsuftoi("number of inodes",
    341  1.70       dsl 			    optarg, 1, INT_MAX);
    342  1.70       dsl 			break;
    343   1.1       cgd 		case 'o':
    344  1.10   mycroft 			if (mfs)
    345  1.27     lukem 				getmntopts(optarg, mopts, &mntflags, 0);
    346  1.10   mycroft 			else {
    347  1.10   mycroft 				if (strcmp(optarg, "space") == 0)
    348  1.10   mycroft 					opt = FS_OPTSPACE;
    349  1.10   mycroft 				else if (strcmp(optarg, "time") == 0)
    350  1.10   mycroft 					opt = FS_OPTTIME;
    351  1.10   mycroft 				else
    352  1.25  christos 				    errx(1, "%s %s",
    353  1.25  christos 					"unknown optimization preference: ",
    354  1.25  christos 					"use `space' or `time'.");
    355  1.10   mycroft 			}
    356   1.1       cgd 			break;
    357   1.1       cgd 		case 'p':
    358  1.54    simonb 			if (mfs) {
    359  1.54    simonb 				if ((mfsmode = strtol(optarg, NULL, 8)) <= 0)
    360  1.54    simonb 					errx(1, "bad mode `%s'", optarg);
    361  1.64      fvdl 			} else
    362  1.64      fvdl 				errx(1, "unknown option 'p'");
    363   1.1       cgd 			break;
    364   1.1       cgd 		case 's':
    365  1.43     lukem 			llsize = strtoll(optarg, &endp, 10);
    366  1.43     lukem 			if (endp[0] != '\0' && endp[1] != '\0')
    367  1.43     lukem 				llsize = -1;
    368  1.43     lukem 			else {
    369  1.43     lukem 				int	ssiz;
    370  1.43     lukem 
    371  1.43     lukem 				ssiz = (sectorsize ? sectorsize : DFL_SECSIZE);
    372  1.43     lukem 				switch (tolower((unsigned char)endp[0])) {
    373  1.43     lukem 				case 'b':
    374  1.43     lukem 					llsize /= ssiz;
    375  1.43     lukem 					break;
    376  1.43     lukem 				case 'k':
    377  1.43     lukem 					llsize *= 1024 / ssiz;
    378  1.43     lukem 					break;
    379  1.43     lukem 				case 'm':
    380  1.43     lukem 					llsize *= 1024 * 1024 / ssiz;
    381  1.43     lukem 					break;
    382  1.43     lukem 				case 'g':
    383  1.43     lukem 					llsize *= 1024 * 1024 * 1024 / ssiz;
    384  1.43     lukem 					break;
    385  1.43     lukem 				case '\0':
    386  1.43     lukem 				case 's':
    387  1.43     lukem 					break;
    388  1.43     lukem 				default:
    389  1.43     lukem 					llsize = -1;
    390  1.41    simonb 				}
    391  1.41    simonb 			}
    392  1.64      fvdl 			if (llsize > LLONG_MAX)
    393  1.43     lukem 				errx(1, "file system size `%s' is too large.",
    394  1.43     lukem 				    optarg);
    395  1.43     lukem 			if (llsize <= 0)
    396  1.43     lukem 				errx(1,
    397  1.43     lukem 			    "`%s' is not a valid number for file system size.",
    398  1.43     lukem 				    optarg);
    399  1.64      fvdl 			fssize = llsize;
    400   1.1       cgd 			break;
    401   1.1       cgd 		case 'u':
    402  1.54    simonb 			if (mfs)
    403  1.54    simonb 				mfsuid = mfs_user(optarg);
    404  1.64      fvdl 			else
    405  1.64      fvdl 				errx(1, "deprecated option 'u'");
    406   1.1       cgd 			break;
    407  1.61       dbj 		case 'v':
    408  1.61       dbj 			appleufs_volname = optarg;
    409  1.61       dbj 			if (strchr(appleufs_volname, ':') || strchr(appleufs_volname, '/'))
    410  1.61       dbj 				errx(1,"Apple UFS volume name cannot contain ':' or '/'");
    411  1.61       dbj 			if (appleufs_volname[0] == '\0')
    412  1.61       dbj 				errx(1,"Apple UFS volume name cannot be zero length");
    413  1.61       dbj 			isappleufs = 1;
    414  1.61       dbj 			break;
    415   1.1       cgd 		case '?':
    416   1.1       cgd 		default:
    417   1.1       cgd 			usage();
    418   1.1       cgd 		}
    419   1.1       cgd 	argc -= optind;
    420   1.1       cgd 	argv += optind;
    421  1.60  christos 	if (mntflags & MNT_GETARGS)
    422  1.60  christos 		goto doit;
    423   1.1       cgd 
    424   1.1       cgd 	if (argc != 2 && (mfs || argc != 1))
    425   1.1       cgd 		usage();
    426   1.1       cgd 
    427   1.1       cgd 	special = argv[0];
    428  1.49     lukem 	if (Fflag || mfs) {
    429  1.14       cgd 		/*
    430  1.49     lukem 		 * it's a file system image or an MFS, so fake up a label.
    431  1.49     lukem 		 * XXX
    432  1.14       cgd 		 */
    433  1.43     lukem 		if (!sectorsize)
    434  1.43     lukem 			sectorsize = DFL_SECSIZE;
    435  1.43     lukem 
    436  1.43     lukem 		if (Fflag && !Nflag) {	/* creating image in a regular file */
    437  1.44     lukem 			if (fssize == 0)
    438  1.44     lukem 				errx(1, "need to specify size when using -F");
    439  1.69       dsl 			fso = open(special, O_RDWR | O_CREAT, 0777);
    440  1.43     lukem 			if (fso == -1)
    441  1.43     lukem 				err(1, "can't open file %s", special);
    442  1.44     lukem 			if ((fsi = dup(fso)) == -1)
    443  1.44     lukem 				err(1, "can't dup(2) image fd");
    444  1.48     lukem 		/* XXXLUKEM: only ftruncate() regular files ? */
    445  1.43     lukem 			if (ftruncate(fso, (off_t)fssize * sectorsize) == -1)
    446  1.64      fvdl 				err(1, "can't resize %s to %lld",
    447  1.64      fvdl 				    special, (long long)fssize);
    448  1.43     lukem 
    449  1.69       dsl 			if (Zflag) {	/* pre-zero (and de-sparce) the file */
    450  1.43     lukem 				char	*buf;
    451  1.45     lukem 				int	bufsize, i;
    452  1.45     lukem 				off_t	bufrem;
    453  1.45     lukem 				struct statfs sfs;
    454  1.45     lukem 
    455  1.45     lukem 				if (fstatfs(fso, &sfs) == -1) {
    456  1.45     lukem 					warn("can't fstatfs `%s'", special);
    457  1.45     lukem 					bufsize = 8192;
    458  1.45     lukem 				} else
    459  1.45     lukem 					bufsize = sfs.f_iosize;
    460  1.43     lukem 
    461  1.45     lukem 				if ((buf = calloc(1, bufsize)) == NULL)
    462  1.43     lukem 					err(1, "can't malloc buffer of %d",
    463  1.45     lukem 					bufsize);
    464  1.45     lukem 				bufrem = fssize * sectorsize;
    465  1.43     lukem 				printf(
    466  1.45     lukem     "Creating file system image in `%s', size %lld bytes, in %d byte chunks.\n",
    467  1.45     lukem 				    special, (long long)bufrem, bufsize);
    468  1.45     lukem 				while (bufrem > 0) {
    469  1.45     lukem 					i = write(fso, buf,
    470  1.45     lukem 					    MIN(bufsize, bufrem));
    471  1.45     lukem 					if (i == -1)
    472  1.45     lukem 						err(1, "writing image");
    473  1.45     lukem 					bufrem -= i;
    474  1.43     lukem 				}
    475  1.70       dsl 				free(buf);
    476  1.43     lukem 			}
    477  1.43     lukem 
    478  1.43     lukem 		}
    479  1.14       cgd 
    480  1.14       cgd 		memset(&mfsfakelabel, 0, sizeof(mfsfakelabel));
    481  1.43     lukem 		mfsfakelabel.d_secsize = sectorsize;
    482  1.43     lukem 		mfsfakelabel.d_nsectors = 64;	/* these 3 add up to 16MB */
    483  1.14       cgd 		mfsfakelabel.d_ntracks = 16;
    484  1.14       cgd 		mfsfakelabel.d_ncylinders = 16;
    485  1.43     lukem 		mfsfakelabel.d_secpercyl =
    486  1.43     lukem 		    mfsfakelabel.d_nsectors * mfsfakelabel.d_ntracks;
    487  1.43     lukem 		mfsfakelabel.d_secperunit =
    488  1.43     lukem 		    mfsfakelabel.d_ncylinders * mfsfakelabel.d_secpercyl;
    489  1.49     lukem 		mfsfakelabel.d_rpm = 10000;
    490  1.14       cgd 		mfsfakelabel.d_interleave = 1;
    491  1.14       cgd 		mfsfakelabel.d_npartitions = 1;
    492  1.43     lukem 		mfsfakelabel.d_partitions[0].p_size = mfsfakelabel.d_secperunit;
    493  1.14       cgd 		mfsfakelabel.d_partitions[0].p_fsize = 1024;
    494  1.14       cgd 		mfsfakelabel.d_partitions[0].p_frag = 8;
    495  1.14       cgd 		mfsfakelabel.d_partitions[0].p_cpg = 16;
    496  1.14       cgd 
    497  1.14       cgd 		lp = &mfsfakelabel;
    498  1.14       cgd 		pp = &mfsfakelabel.d_partitions[0];
    499  1.49     lukem 	} else {	/* !Fflag && !mfs */
    500  1.49     lukem 		fsi = opendisk(special, O_RDONLY, device, sizeof(device), 0);
    501  1.49     lukem 		special = device;
    502  1.49     lukem 		if (fsi < 0)
    503  1.49     lukem 			err(1, "%s: open for read", special);
    504  1.49     lukem 
    505  1.49     lukem 		if (Nflag) {
    506  1.49     lukem 			fso = -1;
    507  1.49     lukem 		} else {
    508  1.49     lukem 			fso = open(special, O_WRONLY);
    509  1.49     lukem 			if (fso < 0)
    510  1.49     lukem 				err(1, "%s: open for write", special);
    511  1.49     lukem 
    512  1.49     lukem 			/* Bail if target special is mounted */
    513  1.49     lukem 			n = getmntinfo(&mp, MNT_NOWAIT);
    514  1.49     lukem 			if (n == 0)
    515  1.49     lukem 				err(1, "%s: getmntinfo", special);
    516  1.49     lukem 
    517  1.49     lukem 			len = sizeof(_PATH_DEV) - 1;
    518  1.49     lukem 			s1 = special;
    519  1.49     lukem 			if (strncmp(_PATH_DEV, s1, len) == 0)
    520  1.49     lukem 				s1 += len;
    521  1.49     lukem 
    522  1.49     lukem 			while (--n >= 0) {
    523  1.49     lukem 				s2 = mp->f_mntfromname;
    524  1.49     lukem 				if (strncmp(_PATH_DEV, s2, len) == 0) {
    525  1.49     lukem 					s2 += len - 1;
    526  1.49     lukem 					*s2 = 'r';
    527  1.49     lukem 				}
    528  1.49     lukem 				if (strcmp(s1, s2) == 0 ||
    529  1.49     lukem 				    strcmp(s1, &s2[1]) == 0)
    530  1.49     lukem 					errx(1, "%s is mounted on %s",
    531  1.49     lukem 					    special, mp->f_mntonname);
    532  1.49     lukem 				++mp;
    533  1.10   mycroft 			}
    534  1.10   mycroft 		}
    535  1.11   mycroft 		cp = strchr(argv[0], '\0') - 1;
    536  1.25  christos 		if (cp == 0 || ((*cp < 'a' || *cp > ('a' + maxpartitions - 1))
    537  1.25  christos 		    && !isdigit(*cp)))
    538  1.25  christos 			errx(1, "can't figure out file system partition");
    539   1.1       cgd #ifdef COMPAT
    540  1.49     lukem 		if (disktype == NULL)
    541  1.10   mycroft 			disktype = argv[1];
    542   1.1       cgd #endif
    543  1.10   mycroft 		lp = getdisklabel(special, fsi);
    544  1.10   mycroft 		if (isdigit(*cp))
    545  1.10   mycroft 			pp = &lp->d_partitions[0];
    546  1.10   mycroft 		else
    547  1.10   mycroft 			pp = &lp->d_partitions[*cp - 'a'];
    548  1.10   mycroft 		if (pp->p_size == 0)
    549  1.25  christos 			errx(1, "`%c' partition is unavailable", *cp);
    550  1.61       dbj 		if (pp->p_fstype == FS_APPLEUFS)
    551  1.61       dbj 			isappleufs = 1;
    552  1.61       dbj 		if (isappleufs) {
    553  1.61       dbj 			if (!Iflag && (pp->p_fstype != FS_APPLEUFS))
    554  1.61       dbj 				errx(1, "`%c' partition type is not `Apple UFS'", *cp);
    555  1.61       dbj 		} else {
    556  1.61       dbj 			if (!Iflag && (pp->p_fstype != FS_BSDFFS))
    557  1.61       dbj 				errx(1, "`%c' partition type is not `4.2BSD'", *cp);
    558  1.61       dbj 		}
    559  1.49     lukem 	}	/* !Fflag && !mfs */
    560  1.43     lukem 
    561   1.1       cgd 	if (fssize == 0)
    562   1.1       cgd 		fssize = pp->p_size;
    563  1.43     lukem 	if (fssize > pp->p_size && !mfs && !Fflag)
    564  1.25  christos 		errx(1, "maximum file system size on the `%c' partition is %d",
    565  1.25  christos 		    *cp, pp->p_size);
    566   1.1       cgd 	if (sectorsize == 0) {
    567   1.1       cgd 		sectorsize = lp->d_secsize;
    568   1.1       cgd 		if (sectorsize <= 0)
    569  1.25  christos 			errx(1, "no default sector size");
    570   1.1       cgd 	}
    571  1.53  augustss 
    572  1.65       dbj 	if (isappleufs) {
    573  1.65       dbj 		dfl_fragsize = APPLEUFS_DFL_FRAGSIZE;
    574  1.65       dbj 		dfl_blksize = APPLEUFS_DFL_BLKSIZE;
    575  1.65       dbj 	} else if (fssize < SMALL_FSSIZE) {
    576  1.53  augustss 		dfl_fragsize = S_DFL_FRAGSIZE;
    577  1.53  augustss 		dfl_blksize = S_DFL_BLKSIZE;
    578  1.53  augustss 	} else if (fssize < MEDIUM_FSSIZE) {
    579  1.53  augustss 		dfl_fragsize = M_DFL_FRAGSIZE;
    580  1.53  augustss 		dfl_blksize = M_DFL_BLKSIZE;
    581  1.53  augustss 	} else {
    582  1.53  augustss 		dfl_fragsize = L_DFL_FRAGSIZE;
    583  1.53  augustss 		dfl_blksize = L_DFL_BLKSIZE;
    584  1.53  augustss 	}
    585  1.53  augustss 
    586   1.1       cgd 	if (fsize == 0) {
    587   1.1       cgd 		fsize = pp->p_fsize;
    588   1.1       cgd 		if (fsize <= 0)
    589  1.53  augustss 			fsize = MAX(dfl_fragsize, lp->d_secsize);
    590   1.1       cgd 	}
    591   1.1       cgd 	if (bsize == 0) {
    592   1.1       cgd 		bsize = pp->p_frag * pp->p_fsize;
    593   1.1       cgd 		if (bsize <= 0)
    594  1.53  augustss 			bsize = MIN(dfl_blksize, 8 * fsize);
    595   1.1       cgd 	}
    596  1.65       dbj 
    597  1.65       dbj 	if (isappleufs && (fsize < APPLEUFS_DFL_FRAGSIZE)) {
    598  1.65       dbj 		warnx("Warning: chosen fsize of %d is less than Apple UFS minimum of %d",
    599  1.65       dbj 			fsize,APPLEUFS_DFL_FRAGSIZE);
    600  1.65       dbj 	}
    601  1.65       dbj 	if (isappleufs && (bsize > APPLEUFS_DFL_BLKSIZE)) {
    602  1.65       dbj 		warnx("Warning: chosen bsize of %d is greater than Apple UFS maximum of %d",
    603  1.65       dbj 			bsize,APPLEUFS_DFL_BLKSIZE);
    604  1.65       dbj 	}
    605  1.65       dbj 
    606  1.10   mycroft 	/*
    607  1.10   mycroft 	 * Maxcontig sets the default for the maximum number of blocks
    608  1.10   mycroft 	 * that may be allocated sequentially. With filesystem clustering
    609  1.10   mycroft 	 * it is possible to allocate contiguous blocks up to the maximum
    610  1.10   mycroft 	 * transfer size permitted by the controller or buffering.
    611  1.10   mycroft 	 */
    612  1.10   mycroft 	if (maxcontig == 0)
    613  1.27     lukem 		maxcontig = MAX(1, MIN(MAXPHYS, MAXBSIZE) / bsize);
    614   1.1       cgd 	if (density == 0)
    615   1.1       cgd 		density = NFPI * fsize;
    616   1.8       cgd 	if (minfree < MINFREE && opt != FS_OPTSPACE) {
    617  1.25  christos 		warnx("%s %s %d%%", "Warning: changing optimization to space",
    618  1.25  christos 		    "because minfree is less than", MINFREE);
    619   1.1       cgd 		opt = FS_OPTSPACE;
    620   1.1       cgd 	}
    621  1.64      fvdl 	if (maxbpg == 0) {
    622  1.64      fvdl 		if (Oflag <= 1)
    623  1.64      fvdl 			maxbpg = MAXBLKPG_UFS1(bsize);
    624  1.64      fvdl 		else
    625  1.64      fvdl 			maxbpg = MAXBLKPG_UFS2(bsize);
    626  1.64      fvdl 	}
    627   1.1       cgd 	oldpartition = *pp;
    628  1.54    simonb 	mkfs(pp, special, fsi, fso, mfsmode, mfsuid, mfsgid);
    629  1.43     lukem 	if (!Nflag && memcmp(pp, &oldpartition, sizeof(oldpartition)) && !Fflag)
    630   1.1       cgd 		rewritelabel(special, fso, lp);
    631   1.1       cgd 	if (!Nflag)
    632   1.1       cgd 		close(fso);
    633   1.1       cgd 	close(fsi);
    634   1.1       cgd #ifdef MFS
    635   1.1       cgd 	if (mfs) {
    636   1.1       cgd 		struct mfs_args args;
    637   1.1       cgd 
    638  1.30  drochner 		switch (pid = fork()) {
    639  1.30  drochner 		case -1:
    640  1.30  drochner 			perror("mfs");
    641  1.30  drochner 			exit(10);
    642  1.30  drochner 		case 0:
    643  1.34   mycroft 			(void)snprintf(mountfromname, sizeof(mountfromname),
    644  1.34   mycroft 			    "mfs:%d", getpid());
    645  1.30  drochner 			break;
    646  1.30  drochner 		default:
    647  1.34   mycroft 			(void)snprintf(mountfromname, sizeof(mountfromname),
    648  1.34   mycroft 			    "mfs:%d", pid);
    649  1.30  drochner 			for (;;) {
    650  1.30  drochner 				/*
    651  1.30  drochner 				 * spin until the mount succeeds
    652  1.30  drochner 				 * or the child exits
    653  1.30  drochner 				 */
    654  1.30  drochner 				usleep(1);
    655  1.30  drochner 
    656  1.30  drochner 				/*
    657  1.30  drochner 				 * XXX Here is a race condition: another process
    658  1.30  drochner 				 * can mount a filesystem which hides our
    659  1.30  drochner 				 * ramdisk before we see the success.
    660  1.30  drochner 				 */
    661  1.30  drochner 				if (statfs(argv[1], &sf) < 0)
    662  1.30  drochner 					err(88, "statfs %s", argv[1]);
    663  1.30  drochner 				if (!strcmp(sf.f_mntfromname, mountfromname) &&
    664  1.30  drochner 				    !strncmp(sf.f_mntonname, argv[1],
    665  1.30  drochner 					     MNAMELEN) &&
    666  1.30  drochner 				    !strcmp(sf.f_fstypename, "mfs"))
    667  1.30  drochner 					exit(0);
    668  1.30  drochner 
    669  1.30  drochner 				res = waitpid(pid, &status, WNOHANG);
    670  1.30  drochner 				if (res == -1)
    671  1.30  drochner 					err(11, "waitpid");
    672  1.30  drochner 				if (res != pid)
    673  1.30  drochner 					continue;
    674  1.31  drochner 				if (WIFEXITED(status)) {
    675  1.31  drochner 					if (WEXITSTATUS(status) == 0)
    676  1.31  drochner 						exit(0);
    677  1.30  drochner 					errx(1, "%s: mount: %s", argv[1],
    678  1.30  drochner 					     strerror(WEXITSTATUS(status)));
    679  1.31  drochner 				} else
    680  1.30  drochner 					errx(11, "abnormal termination");
    681  1.30  drochner 			}
    682  1.30  drochner 			/* NOTREACHED */
    683  1.30  drochner 		}
    684  1.30  drochner 
    685  1.30  drochner 		(void) setsid();
    686  1.30  drochner 		(void) close(0);
    687  1.30  drochner 		(void) close(1);
    688  1.30  drochner 		(void) close(2);
    689  1.30  drochner 		(void) chdir("/");
    690  1.30  drochner 
    691  1.30  drochner 		args.fspec = mountfromname;
    692  1.10   mycroft 		args.export.ex_root = -2;
    693  1.10   mycroft 		if (mntflags & MNT_RDONLY)
    694  1.10   mycroft 			args.export.ex_flags = MNT_EXRDONLY;
    695  1.10   mycroft 		else
    696  1.10   mycroft 			args.export.ex_flags = 0;
    697   1.1       cgd 		args.base = membase;
    698   1.1       cgd 		args.size = fssize * sectorsize;
    699  1.60  christos doit:
    700  1.60  christos 		if (mount(MOUNT_MFS, argv[1], mntflags, &args) < 0) {
    701  1.60  christos 			if (mntflags & MNT_GETARGS)
    702  1.60  christos 				err(1, "mount `%s' failed", argv[1]);
    703  1.30  drochner 			exit(errno); /* parent prints message */
    704  1.60  christos 		}
    705  1.60  christos 		if (mntflags & MNT_GETARGS)
    706  1.60  christos 			printf("base=%p, size=%ld\n", args.base, args.size);
    707   1.1       cgd 	}
    708   1.1       cgd #endif
    709   1.1       cgd 	exit(0);
    710   1.1       cgd }
    711   1.1       cgd 
    712   1.1       cgd #ifdef COMPAT
    713  1.39        is const char lmsg[] = "%s: can't read disk label; disk type must be specified";
    714   1.1       cgd #else
    715  1.39        is const char lmsg[] = "%s: can't read disk label";
    716   1.1       cgd #endif
    717   1.1       cgd 
    718  1.25  christos static struct disklabel *
    719  1.40    simonb getdisklabel(char *s, volatile int fd)
    720  1.40    simonb /* XXX why is fs volatile?! */
    721   1.1       cgd {
    722   1.1       cgd 	static struct disklabel lab;
    723   1.1       cgd 
    724  1.24       tls 	if (ioctl(fd, DIOCGDINFO, &lab) < 0) {
    725   1.1       cgd #ifdef COMPAT
    726   1.1       cgd 		if (disktype) {
    727  1.25  christos 			struct disklabel *lp;
    728   1.1       cgd 
    729   1.1       cgd 			unlabeled++;
    730   1.1       cgd 			lp = getdiskbyname(disktype);
    731   1.1       cgd 			if (lp == NULL)
    732  1.25  christos 				errx(1, "%s: unknown disk type", disktype);
    733   1.1       cgd 			return (lp);
    734   1.1       cgd 		}
    735   1.1       cgd #endif
    736  1.10   mycroft 		warn("ioctl (GDINFO)");
    737  1.25  christos 		errx(1, lmsg, s);
    738   1.1       cgd 	}
    739   1.1       cgd 	return (&lab);
    740   1.1       cgd }
    741   1.1       cgd 
    742  1.25  christos static void
    743  1.40    simonb rewritelabel(char *s, volatile int fd, struct disklabel *lp)
    744  1.40    simonb /* XXX why is fd volatile?! */
    745   1.1       cgd {
    746   1.1       cgd #ifdef COMPAT
    747   1.1       cgd 	if (unlabeled)
    748   1.1       cgd 		return;
    749   1.1       cgd #endif
    750   1.1       cgd 	lp->d_checksum = 0;
    751   1.1       cgd 	lp->d_checksum = dkcksum(lp);
    752   1.1       cgd 	if (ioctl(fd, DIOCWDINFO, (char *)lp) < 0) {
    753  1.57   thorpej 		if (errno == ESRCH)
    754  1.57   thorpej 			return;
    755  1.10   mycroft 		warn("ioctl (WDINFO)");
    756  1.25  christos 		errx(1, "%s: can't rewrite disk label", s);
    757   1.1       cgd 	}
    758  1.35      matt #if __vax__
    759   1.1       cgd 	if (lp->d_type == DTYPE_SMD && lp->d_flags & D_BADSECT) {
    760  1.25  christos 		int i;
    761   1.1       cgd 		int cfd;
    762   1.1       cgd 		daddr_t alt;
    763  1.62       scw 		off_t loff;
    764   1.1       cgd 		char specname[64];
    765   1.1       cgd 		char blk[1024];
    766   1.1       cgd 		char *cp;
    767   1.1       cgd 
    768   1.1       cgd 		/*
    769   1.1       cgd 		 * Make name for 'c' partition.
    770   1.1       cgd 		 */
    771  1.66    itojun 		strlcpy(specname, s, sizeof(specname));
    772   1.1       cgd 		cp = specname + strlen(specname) - 1;
    773   1.1       cgd 		if (!isdigit(*cp))
    774   1.1       cgd 			*cp = 'c';
    775   1.1       cgd 		cfd = open(specname, O_WRONLY);
    776   1.1       cgd 		if (cfd < 0)
    777  1.28     enami 			err(1, "%s: open", specname);
    778  1.62       scw 		if ((loff = getlabeloffset()) < 0)
    779  1.62       scw 			err(1, "getlabeloffset()");
    780  1.11   mycroft 		memset(blk, 0, sizeof(blk));
    781  1.62       scw 		*(struct disklabel *)(blk + loff) = *lp;
    782   1.1       cgd 		alt = lp->d_ncylinders * lp->d_secpercyl - lp->d_nsectors;
    783   1.1       cgd 		for (i = 1; i < 11 && i < lp->d_nsectors; i += 2) {
    784  1.17       cgd 			off_t offset;
    785  1.17       cgd 
    786  1.17       cgd 			offset = alt + i;
    787  1.17       cgd 			offset *= lp->d_secsize;
    788  1.17       cgd 			if (lseek(cfd, offset, SEEK_SET) == -1)
    789  1.25  christos 				err(1, "lseek to badsector area: ");
    790   1.1       cgd 			if (write(cfd, blk, lp->d_secsize) < lp->d_secsize)
    791  1.10   mycroft 				warn("alternate label %d write", i/2);
    792   1.1       cgd 		}
    793   1.1       cgd 		close(cfd);
    794   1.1       cgd 	}
    795   1.1       cgd #endif
    796   1.1       cgd }
    797   1.1       cgd 
    798  1.54    simonb static gid_t
    799  1.54    simonb mfs_group(const char *gname)
    800  1.54    simonb {
    801  1.54    simonb 	struct group *gp;
    802  1.54    simonb 
    803  1.54    simonb 	if (!(gp = getgrnam(gname)) && !isdigit((unsigned char)*gname))
    804  1.54    simonb 		errx(1, "unknown gname %s", gname);
    805  1.54    simonb 	return gp ? gp->gr_gid : atoi(gname);
    806  1.54    simonb }
    807  1.54    simonb 
    808  1.54    simonb static uid_t
    809  1.54    simonb mfs_user(const char *uname)
    810  1.54    simonb {
    811  1.54    simonb 	struct passwd *pp;
    812  1.54    simonb 
    813  1.54    simonb 	if (!(pp = getpwnam(uname)) && !isdigit((unsigned char)*uname))
    814  1.54    simonb 		errx(1, "unknown user %s", uname);
    815  1.54    simonb 	return pp ? pp->pw_uid : atoi(uname);
    816  1.54    simonb }
    817  1.54    simonb 
    818  1.43     lukem static int
    819  1.43     lukem strsuftoi(const char *desc, const char *arg, int min, int max)
    820  1.43     lukem {
    821  1.43     lukem 	long long result;
    822  1.43     lukem 	char	*ep;
    823  1.43     lukem 
    824  1.43     lukem 	errno = 0;
    825  1.43     lukem 	result = strtoll(arg, &ep, 10);
    826  1.43     lukem 	if (ep[0] != '\0' && ep[1] != '\0')
    827  1.43     lukem 		errx(1, "%s `%s' is not a valid number.", desc, arg);
    828  1.43     lukem 	switch (tolower((unsigned char)ep[0])) {
    829  1.43     lukem 	case '\0':
    830  1.43     lukem 	case 'b':
    831  1.43     lukem 		break;
    832  1.43     lukem 	case 'k':
    833  1.43     lukem 		result <<= 10;
    834  1.43     lukem 		break;
    835  1.43     lukem 	case 'm':
    836  1.43     lukem 		result <<= 20;
    837  1.43     lukem 		break;
    838  1.43     lukem 	case 'g':
    839  1.43     lukem 		result <<= 30;
    840  1.43     lukem 		break;
    841  1.43     lukem 	default:
    842  1.43     lukem 		errx(1, "`%s' is not a valid suffix for %s.", ep, desc);
    843  1.43     lukem 	}
    844  1.43     lukem 	if (result < min)
    845  1.43     lukem 		errx(1, "%s `%s' (%lld) is less than minimum (%d).",
    846  1.43     lukem 		    desc, arg, result, min);
    847  1.43     lukem 	if (result > max)
    848  1.43     lukem 		errx(1, "%s `%s' (%lld) is greater than maximum (%d).",
    849  1.43     lukem 		    desc, arg, result, max);
    850  1.43     lukem 	return ((int)result);
    851  1.43     lukem }
    852  1.43     lukem 
    853  1.54    simonb #define	NEWFS		1
    854  1.54    simonb #define	MFS_MOUNT	2
    855  1.54    simonb #define	BOTH		NEWFS | MFS_MOUNT
    856  1.54    simonb 
    857  1.54    simonb struct help_strings {
    858  1.54    simonb 	int flags;
    859  1.54    simonb 	const char *str;
    860  1.54    simonb } const help_strings[] = {
    861  1.54    simonb 	{ NEWFS,	"-B byteorder\tbyte order (`be' or `le')" },
    862  1.54    simonb 	{ NEWFS,	"-F \t\tcreate file system image in regular file" },
    863  1.58     lukem 	{ NEWFS,	"-I \t\tdo not check that the file system type is '4.2BSD'" },
    864  1.54    simonb 	{ BOTH,		"-N \t\tdo not create file system, just print out "
    865  1.54    simonb 			    "parameters" },
    866  1.64      fvdl 	{ NEWFS,	"-O N\t\tfilesystem format: 0 ==> 4.3BSD, 1 ==> FFS, 2==> UFS2" },
    867  1.54    simonb 	{ NEWFS,	"-S secsize\tsector size" },
    868  1.54    simonb #ifdef COMPAT
    869  1.54    simonb 	{ NEWFS,	"-T disktype\tdisk type" },
    870  1.54    simonb #endif
    871  1.54    simonb 	{ NEWFS,	"-Z \t\tpre-zero the image file (with -F)" },
    872  1.54    simonb 	{ BOTH,		"-a maxcontig\tmaximum contiguous blocks" },
    873  1.54    simonb 	{ BOTH,		"-b bsize\tblock size" },
    874  1.64      fvdl 	{ BOTH,		"-c blocks\tblocks per cylinder group" },
    875  1.64      fvdl 	{ BOTH,		"-d maxbsize\t maximum extent size" },
    876  1.54    simonb 	{ BOTH,		"-e maxbpg\tmaximum blocks per file in a cylinder group"
    877  1.54    simonb 			    },
    878  1.54    simonb 	{ BOTH,		"-f fsize\tfrag size" },
    879  1.54    simonb 	{ NEWFS,	"-g avgfilesize\taverage file size" },
    880  1.54    simonb 	{ MFS_MOUNT,	"-g groupname\tgroup name of mount point" },
    881  1.54    simonb 	{ BOTH,		"-h avgfpdir\taverage files per directory" },
    882  1.54    simonb 	{ BOTH,		"-i density\tnumber of bytes per inode" },
    883  1.54    simonb 	{ BOTH,		"-m minfree\tminimum free space %%" },
    884  1.70       dsl 	{ BOTH,		"-n inodes\tnumder of inodes" },
    885  1.54    simonb 	{ BOTH,		"-o optim\toptimization preference (`space' or `time')"
    886  1.54    simonb 			    },
    887  1.54    simonb 	{ MFS_MOUNT,	"-p perm\t\tpermissions (in octal)" },
    888  1.54    simonb 	{ BOTH,		"-s fssize\tfile system size (sectors)" },
    889  1.54    simonb 	{ MFS_MOUNT,	"-u username\tuser name of mount point" },
    890  1.61       dbj 	{ NEWFS,	"-v volname\tApple UFS volume name" },
    891  1.54    simonb 	{ 0, NULL }
    892  1.54    simonb };
    893  1.54    simonb 
    894  1.25  christos static void
    895  1.40    simonb usage(void)
    896   1.1       cgd {
    897  1.54    simonb 	int match;
    898  1.54    simonb 	const struct help_strings *hs;
    899  1.43     lukem 
    900   1.1       cgd 	if (mfs) {
    901   1.1       cgd 		fprintf(stderr,
    902  1.43     lukem 		    "usage: %s [ fsoptions ] special-device mount-point\n",
    903  1.42       cgd 			getprogname());
    904   1.1       cgd 	} else
    905   1.1       cgd 		fprintf(stderr,
    906  1.43     lukem 		    "usage: %s [ fsoptions ] special-device%s\n",
    907  1.42       cgd 		    getprogname(),
    908   1.1       cgd #ifdef COMPAT
    909   1.1       cgd 		    " [device-type]");
    910   1.1       cgd #else
    911   1.1       cgd 		    "");
    912   1.1       cgd #endif
    913   1.1       cgd 	fprintf(stderr, "where fsoptions are:\n");
    914  1.54    simonb 
    915  1.54    simonb 	match = mfs ? MFS_MOUNT : NEWFS;
    916  1.54    simonb 	for (hs = help_strings; hs->flags != 0; hs++)
    917  1.54    simonb 		if (hs->flags & match)
    918  1.54    simonb 			fprintf(stderr, "\t%s\n", hs->str);
    919   1.1       cgd 	exit(1);
    920   1.1       cgd }
    921