newfs.c revision 1.83 1 1.83 wiz /* $NetBSD: newfs.c,v 1.83 2004/06/25 14:44:16 wiz 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.83 wiz __RCSID("$NetBSD: newfs.c,v 1.83 2004/06/25 14:44:16 wiz 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.76 wiz #include <limits.h>
107 1.10 mycroft #include <paths.h>
108 1.54 simonb #include <pwd.h>
109 1.54 simonb #include <signal.h>
110 1.76 wiz #include <stdint.h>
111 1.1 cgd #include <stdio.h>
112 1.10 mycroft #include <stdlib.h>
113 1.1 cgd #include <string.h>
114 1.10 mycroft #include <syslog.h>
115 1.10 mycroft #include <unistd.h>
116 1.20 thorpej #include <util.h>
117 1.10 mycroft
118 1.10 mycroft #include "mntopts.h"
119 1.25 christos #include "dkcksum.h"
120 1.25 christos #include "extern.h"
121 1.10 mycroft
122 1.10 mycroft struct mntopt mopts[] = {
123 1.10 mycroft MOPT_STDOPTS,
124 1.10 mycroft MOPT_ASYNC,
125 1.22 cgd MOPT_UPDATE,
126 1.60 christos MOPT_GETARGS,
127 1.23 tls MOPT_NOATIME,
128 1.10 mycroft { NULL },
129 1.10 mycroft };
130 1.10 mycroft
131 1.40 simonb static struct disklabel *getdisklabel(char *, int);
132 1.40 simonb static void rewritelabel(char *, int, struct disklabel *);
133 1.54 simonb static gid_t mfs_group(const char *);
134 1.54 simonb static uid_t mfs_user(const char *);
135 1.75 dsl static int64_t strsuftoi64(const char *, const char *, int64_t, int64_t, int *);
136 1.40 simonb static void usage(void);
137 1.40 simonb int main(int, char *[]);
138 1.1 cgd
139 1.1 cgd #define COMPAT /* allow non-labeled disks */
140 1.1 cgd
141 1.1 cgd /*
142 1.1 cgd * The following two constants set the default block and fragment sizes.
143 1.1 cgd * Both constants must be a power of 2 and meet the following constraints:
144 1.1 cgd * MINBSIZE <= DESBLKSIZE <= MAXBSIZE
145 1.1 cgd * sectorsize <= DESFRAGSIZE <= DESBLKSIZE
146 1.1 cgd * DESBLKSIZE / DESFRAGSIZE <= 8
147 1.1 cgd */
148 1.53 augustss /*
149 1.53 augustss * For file systems smaller than SMALL_FSSIZE we use the S_DFL_* defaults,
150 1.53 augustss * otherwise if less than MEDIUM_FSSIZE use M_DFL_*, otherwise use
151 1.53 augustss * L_DFL_*.
152 1.53 augustss */
153 1.54 simonb #define SMALL_FSSIZE (20*1024*2)
154 1.53 augustss #define S_DFL_FRAGSIZE 512
155 1.54 simonb #define MEDIUM_FSSIZE (1000*1024*2)
156 1.53 augustss #define M_DFL_FRAGSIZE 1024
157 1.53 augustss #define L_DFL_FRAGSIZE 2048
158 1.75 dsl #define DFL_FRAG_BLK 8
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.75 dsl struct partition *pp = NULL;
221 1.75 dsl struct disklabel *lp = NULL;
222 1.1 cgd struct partition oldpartition;
223 1.82 christos struct statvfs *mp;
224 1.75 dsl struct stat sb;
225 1.75 dsl int ch, fsi, fso, len, n, Fflag, Iflag, Zflag;
226 1.75 dsl uint ptn = 0; /* gcc -Wuninitialised */
227 1.75 dsl char *cp, *s1, *s2, *special;
228 1.43 lukem const char *opstring;
229 1.75 dsl int byte_sized = 0;
230 1.30 drochner #ifdef MFS
231 1.79 dsl struct mfs_args args;
232 1.30 drochner char mountfromname[100];
233 1.30 drochner pid_t pid, res;
234 1.82 christos struct statvfs sf;
235 1.56 lukem int status;
236 1.56 lukem #endif
237 1.75 dsl mode_t mfsmode = 01777; /* default mode for a /tmp-type directory */
238 1.75 dsl uid_t mfsuid = 0; /* user root */
239 1.75 dsl gid_t mfsgid = 0; /* group wheel */
240 1.1 cgd
241 1.43 lukem cp = NULL;
242 1.43 lukem fsi = fso = -1;
243 1.58 lukem Fflag = Iflag = Zflag = 0;
244 1.42 cgd if (strstr(getprogname(), "mfs")) {
245 1.1 cgd mfs = 1;
246 1.80 dsl } else {
247 1.80 dsl /* Undocumented, for ease of testing */
248 1.81 dsl if (argv[1] != NULL && !strcmp(argv[1], "-mfs")) {
249 1.80 dsl argv++;
250 1.80 dsl argc--;
251 1.80 dsl mfs = 1;
252 1.80 dsl }
253 1.1 cgd }
254 1.1 cgd
255 1.10 mycroft opstring = mfs ?
256 1.83 wiz "NT:a:b:d:e:f:g:h:i:m:n:o:p:s:u:" :
257 1.83 wiz "B:FINO:S:T:Za:b: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.75 dsl Oflag = strsuftoi64("format", optarg, 0, 2, NULL);
283 1.1 cgd break;
284 1.1 cgd case 'S':
285 1.75 dsl sectorsize = strsuftoi64("sector size",
286 1.75 dsl optarg, 1, INT_MAX, NULL);
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.75 dsl maxcontig = strsuftoi64("maximum contiguous blocks",
298 1.75 dsl optarg, 1, INT_MAX, NULL);
299 1.1 cgd break;
300 1.1 cgd case 'b':
301 1.75 dsl bsize = strsuftoi64("block size",
302 1.75 dsl optarg, MINBSIZE, MAXBSIZE, NULL);
303 1.1 cgd break;
304 1.1 cgd case 'd':
305 1.75 dsl maxbsize = strsuftoi64("maximum extent size",
306 1.75 dsl optarg, 0, INT_MAX, NULL);
307 1.1 cgd break;
308 1.1 cgd case 'e':
309 1.75 dsl maxbpg = strsuftoi64(
310 1.43 lukem "blocks per file in a cylinder group",
311 1.75 dsl optarg, 1, INT_MAX, NULL);
312 1.1 cgd break;
313 1.1 cgd case 'f':
314 1.75 dsl fsize = strsuftoi64("fragment size",
315 1.75 dsl optarg, 1, MAXBSIZE, NULL);
316 1.1 cgd break;
317 1.47 lukem case 'g':
318 1.54 simonb if (mfs)
319 1.54 simonb mfsgid = mfs_group(optarg);
320 1.54 simonb else {
321 1.75 dsl avgfilesize = strsuftoi64("average file size",
322 1.75 dsl optarg, 1, INT_MAX, NULL);
323 1.54 simonb }
324 1.47 lukem break;
325 1.47 lukem case 'h':
326 1.75 dsl avgfpdir = strsuftoi64("expected files per directory",
327 1.75 dsl optarg, 1, INT_MAX, NULL);
328 1.47 lukem break;
329 1.1 cgd case 'i':
330 1.75 dsl density = strsuftoi64("bytes per inode",
331 1.75 dsl optarg, 1, INT_MAX, NULL);
332 1.1 cgd break;
333 1.1 cgd case 'm':
334 1.75 dsl minfree = strsuftoi64("free space %",
335 1.75 dsl optarg, 0, 99, NULL);
336 1.1 cgd break;
337 1.70 dsl case 'n':
338 1.75 dsl num_inodes = strsuftoi64("number of inodes",
339 1.75 dsl optarg, 1, INT_MAX, NULL);
340 1.70 dsl break;
341 1.1 cgd case 'o':
342 1.10 mycroft if (mfs)
343 1.27 lukem getmntopts(optarg, mopts, &mntflags, 0);
344 1.10 mycroft else {
345 1.10 mycroft if (strcmp(optarg, "space") == 0)
346 1.10 mycroft opt = FS_OPTSPACE;
347 1.10 mycroft else if (strcmp(optarg, "time") == 0)
348 1.10 mycroft opt = FS_OPTTIME;
349 1.10 mycroft else
350 1.25 christos errx(1, "%s %s",
351 1.25 christos "unknown optimization preference: ",
352 1.25 christos "use `space' or `time'.");
353 1.10 mycroft }
354 1.1 cgd break;
355 1.1 cgd case 'p':
356 1.54 simonb if (mfs) {
357 1.54 simonb if ((mfsmode = strtol(optarg, NULL, 8)) <= 0)
358 1.54 simonb errx(1, "bad mode `%s'", optarg);
359 1.64 fvdl } else
360 1.64 fvdl errx(1, "unknown option 'p'");
361 1.1 cgd break;
362 1.1 cgd case 's':
363 1.75 dsl fssize = strsuftoi64("file system size",
364 1.75 dsl optarg, INT64_MIN, INT64_MAX, &byte_sized);
365 1.1 cgd break;
366 1.1 cgd case 'u':
367 1.54 simonb if (mfs)
368 1.54 simonb mfsuid = mfs_user(optarg);
369 1.64 fvdl else
370 1.64 fvdl errx(1, "deprecated option 'u'");
371 1.1 cgd break;
372 1.61 dbj case 'v':
373 1.61 dbj appleufs_volname = optarg;
374 1.61 dbj if (strchr(appleufs_volname, ':') || strchr(appleufs_volname, '/'))
375 1.61 dbj errx(1,"Apple UFS volume name cannot contain ':' or '/'");
376 1.61 dbj if (appleufs_volname[0] == '\0')
377 1.61 dbj errx(1,"Apple UFS volume name cannot be zero length");
378 1.61 dbj isappleufs = 1;
379 1.61 dbj break;
380 1.1 cgd case '?':
381 1.1 cgd default:
382 1.1 cgd usage();
383 1.1 cgd }
384 1.1 cgd argc -= optind;
385 1.1 cgd argv += optind;
386 1.79 dsl
387 1.79 dsl #ifdef MFS
388 1.79 dsl /* This is enough to get through the correct kernel code paths */
389 1.79 dsl memset(&args, 0, sizeof args);
390 1.79 dsl args.fspec = mountfromname;
391 1.81 dsl if (mntflags & (MNT_GETARGS | MNT_UPDATE)) {
392 1.81 dsl if (mount(MOUNT_MFS, argv[1], mntflags, &args) < 0)
393 1.81 dsl err(1, "mount `%s' failed", argv[1]);
394 1.81 dsl if (mntflags & MNT_GETARGS)
395 1.81 dsl printf("base=%p, size=%ld\n", args.base, args.size);
396 1.81 dsl exit(0);
397 1.81 dsl }
398 1.79 dsl #endif
399 1.1 cgd
400 1.1 cgd if (argc != 2 && (mfs || argc != 1))
401 1.1 cgd usage();
402 1.1 cgd
403 1.75 dsl memset(&oldpartition, 0, sizeof oldpartition);
404 1.75 dsl memset(&sb, 0, sizeof sb);
405 1.1 cgd special = argv[0];
406 1.49 lukem if (Fflag || mfs) {
407 1.14 cgd /*
408 1.75 dsl * It's a file system image or an MFS,
409 1.75 dsl * no label, use fixed default for sectorsize.
410 1.14 cgd */
411 1.75 dsl if (sectorsize == 0)
412 1.43 lukem sectorsize = DFL_SECSIZE;
413 1.43 lukem
414 1.80 dsl if (mfs) {
415 1.80 dsl /* Default filesystem size to that of supplied device */
416 1.80 dsl if (fssize == 0)
417 1.80 dsl stat(special, &sb);
418 1.80 dsl } else {
419 1.80 dsl /* creating image in a regular file */
420 1.75 dsl int fl;
421 1.75 dsl if (Nflag)
422 1.75 dsl fl = O_RDONLY;
423 1.75 dsl else {
424 1.75 dsl if (fssize > 0)
425 1.75 dsl fl = O_RDWR | O_CREAT;
426 1.75 dsl else
427 1.75 dsl fl = O_RDWR;
428 1.75 dsl }
429 1.75 dsl fsi = open(special, fl, 0777);
430 1.75 dsl if (fsi == -1)
431 1.43 lukem err(1, "can't open file %s", special);
432 1.75 dsl if (fstat(fsi, &sb) == -1)
433 1.75 dsl err(1, "can't fstat opened %s", special);
434 1.75 dsl if (!Nflag)
435 1.75 dsl fso = fsi;
436 1.43 lukem }
437 1.49 lukem } else { /* !Fflag && !mfs */
438 1.49 lukem fsi = opendisk(special, O_RDONLY, device, sizeof(device), 0);
439 1.49 lukem special = device;
440 1.75 dsl if (fsi < 0 || fstat(fsi, &sb) == -1)
441 1.49 lukem err(1, "%s: open for read", special);
442 1.49 lukem
443 1.75 dsl if (!Nflag) {
444 1.75 dsl fso = open(special, O_WRONLY, 0);
445 1.49 lukem if (fso < 0)
446 1.49 lukem err(1, "%s: open for write", special);
447 1.49 lukem
448 1.49 lukem /* Bail if target special is mounted */
449 1.49 lukem n = getmntinfo(&mp, MNT_NOWAIT);
450 1.49 lukem if (n == 0)
451 1.49 lukem err(1, "%s: getmntinfo", special);
452 1.49 lukem
453 1.49 lukem len = sizeof(_PATH_DEV) - 1;
454 1.49 lukem s1 = special;
455 1.49 lukem if (strncmp(_PATH_DEV, s1, len) == 0)
456 1.49 lukem s1 += len;
457 1.49 lukem
458 1.49 lukem while (--n >= 0) {
459 1.49 lukem s2 = mp->f_mntfromname;
460 1.49 lukem if (strncmp(_PATH_DEV, s2, len) == 0) {
461 1.49 lukem s2 += len - 1;
462 1.49 lukem *s2 = 'r';
463 1.49 lukem }
464 1.49 lukem if (strcmp(s1, s2) == 0 ||
465 1.49 lukem strcmp(s1, &s2[1]) == 0)
466 1.49 lukem errx(1, "%s is mounted on %s",
467 1.49 lukem special, mp->f_mntonname);
468 1.49 lukem ++mp;
469 1.10 mycroft }
470 1.10 mycroft }
471 1.75 dsl
472 1.1 cgd #ifdef COMPAT
473 1.49 lukem if (disktype == NULL)
474 1.10 mycroft disktype = argv[1];
475 1.1 cgd #endif
476 1.10 mycroft lp = getdisklabel(special, fsi);
477 1.75 dsl if (sectorsize == 0) {
478 1.75 dsl sectorsize = lp->d_secsize;
479 1.75 dsl if (sectorsize <= 0)
480 1.75 dsl errx(1, "no default sector size");
481 1.75 dsl }
482 1.75 dsl
483 1.75 dsl ptn = strchr(special, '\0')[-1] - 'a';
484 1.75 dsl if (ptn < lp->d_npartitions && ptn == DISKPART(sb.st_rdev)) {
485 1.75 dsl /* Assume partition really does match the label */
486 1.75 dsl pp = &lp->d_partitions[ptn];
487 1.75 dsl oldpartition = *pp;
488 1.75 dsl if (pp->p_size == 0)
489 1.75 dsl errx(1, "`%c' partition is unavailable",
490 1.75 dsl 'a' + ptn);
491 1.75 dsl if (pp->p_fstype == FS_APPLEUFS)
492 1.75 dsl isappleufs = 1;
493 1.75 dsl if (!Iflag) {
494 1.75 dsl if (isappleufs) {
495 1.75 dsl if (pp->p_fstype != FS_APPLEUFS)
496 1.75 dsl errx(1, "`%c' partition type is not `Apple UFS'", 'a' + ptn);
497 1.75 dsl } else {
498 1.75 dsl if (pp->p_fstype != FS_BSDFFS)
499 1.75 dsl errx(1, "`%c' partition type is not `4.2BSD'", 'a' + ptn);
500 1.75 dsl }
501 1.75 dsl }
502 1.61 dbj }
503 1.49 lukem } /* !Fflag && !mfs */
504 1.43 lukem
505 1.75 dsl if (byte_sized)
506 1.75 dsl fssize /= sectorsize;
507 1.75 dsl if (fssize <= 0) {
508 1.75 dsl if (sb.st_size != 0)
509 1.75 dsl fssize += sb.st_size / sectorsize;
510 1.75 dsl else
511 1.75 dsl fssize += oldpartition.p_size;
512 1.75 dsl if (fssize <= 0)
513 1.75 dsl errx(1, "Unable to determine file system size");
514 1.75 dsl }
515 1.75 dsl
516 1.75 dsl if (pp != NULL && fssize > pp->p_size)
517 1.75 dsl errx(1, "maximum file system size on `%s' is %d sectors",
518 1.75 dsl special, pp->p_size);
519 1.75 dsl
520 1.75 dsl /* XXXLUKEM: only ftruncate() regular files ? (dsl: or at all?) */
521 1.75 dsl if (Fflag && fso != -1
522 1.75 dsl && ftruncate(fso, (off_t)fssize * sectorsize) == -1)
523 1.75 dsl err(1, "can't ftruncate %s to %" PRId64, special, fssize);
524 1.75 dsl
525 1.75 dsl if (Zflag && fso != -1) { /* pre-zero (and de-sparce) the file */
526 1.75 dsl char *buf;
527 1.75 dsl int bufsize, i;
528 1.75 dsl off_t bufrem;
529 1.82 christos struct statvfs sfs;
530 1.75 dsl
531 1.82 christos if (fstatvfs(fso, &sfs) == -1) {
532 1.82 christos warn("can't fstatvfs `%s'", special);
533 1.75 dsl bufsize = 8192;
534 1.75 dsl } else
535 1.75 dsl bufsize = sfs.f_iosize;
536 1.75 dsl
537 1.75 dsl if ((buf = calloc(1, bufsize)) == NULL)
538 1.75 dsl err(1, "can't malloc buffer of %d",
539 1.75 dsl bufsize);
540 1.75 dsl bufrem = fssize * sectorsize;
541 1.75 dsl printf(
542 1.75 dsl "Creating file system image in `%s', size %lld bytes, in %d byte chunks.\n",
543 1.75 dsl special, (long long)bufrem, bufsize);
544 1.75 dsl while (bufrem > 0) {
545 1.75 dsl i = write(fso, buf, MIN(bufsize, bufrem));
546 1.75 dsl if (i == -1)
547 1.75 dsl err(1, "writing image");
548 1.75 dsl bufrem -= i;
549 1.75 dsl }
550 1.75 dsl free(buf);
551 1.53 augustss }
552 1.53 augustss
553 1.75 dsl /* Sort out fragment and block sizes */
554 1.1 cgd if (fsize == 0) {
555 1.75 dsl fsize = bsize / DFL_FRAG_BLK;
556 1.75 dsl if (fsize == 0)
557 1.75 dsl fsize = oldpartition.p_fsize;
558 1.75 dsl if (fsize <= 0) {
559 1.75 dsl if (isappleufs) {
560 1.75 dsl fsize = APPLEUFS_DFL_FRAGSIZE;
561 1.75 dsl } else {
562 1.75 dsl if (fssize < SMALL_FSSIZE)
563 1.75 dsl fsize = S_DFL_FRAGSIZE;
564 1.75 dsl else if (fssize < MEDIUM_FSSIZE)
565 1.75 dsl fsize = M_DFL_FRAGSIZE;
566 1.75 dsl else
567 1.75 dsl fsize = L_DFL_FRAGSIZE;
568 1.75 dsl if (fsize < sectorsize)
569 1.75 dsl fsize = sectorsize;
570 1.75 dsl }
571 1.75 dsl }
572 1.1 cgd }
573 1.1 cgd if (bsize == 0) {
574 1.75 dsl bsize = oldpartition.p_frag * oldpartition.p_fsize;
575 1.75 dsl if (bsize <= 0) {
576 1.75 dsl if (isappleufs)
577 1.75 dsl bsize = APPLEUFS_DFL_BLKSIZE;
578 1.75 dsl else
579 1.75 dsl bsize = DFL_FRAG_BLK * fsize;
580 1.75 dsl }
581 1.1 cgd }
582 1.65 dbj
583 1.65 dbj if (isappleufs && (fsize < APPLEUFS_DFL_FRAGSIZE)) {
584 1.65 dbj warnx("Warning: chosen fsize of %d is less than Apple UFS minimum of %d",
585 1.75 dsl fsize, APPLEUFS_DFL_FRAGSIZE);
586 1.65 dbj }
587 1.65 dbj if (isappleufs && (bsize > APPLEUFS_DFL_BLKSIZE)) {
588 1.65 dbj warnx("Warning: chosen bsize of %d is greater than Apple UFS maximum of %d",
589 1.75 dsl bsize, APPLEUFS_DFL_BLKSIZE);
590 1.65 dbj }
591 1.65 dbj
592 1.10 mycroft /*
593 1.10 mycroft * Maxcontig sets the default for the maximum number of blocks
594 1.10 mycroft * that may be allocated sequentially. With filesystem clustering
595 1.10 mycroft * it is possible to allocate contiguous blocks up to the maximum
596 1.10 mycroft * transfer size permitted by the controller or buffering.
597 1.10 mycroft */
598 1.10 mycroft if (maxcontig == 0)
599 1.27 lukem maxcontig = MAX(1, MIN(MAXPHYS, MAXBSIZE) / bsize);
600 1.1 cgd if (density == 0)
601 1.1 cgd density = NFPI * fsize;
602 1.8 cgd if (minfree < MINFREE && opt != FS_OPTSPACE) {
603 1.25 christos warnx("%s %s %d%%", "Warning: changing optimization to space",
604 1.25 christos "because minfree is less than", MINFREE);
605 1.1 cgd opt = FS_OPTSPACE;
606 1.1 cgd }
607 1.64 fvdl if (maxbpg == 0) {
608 1.64 fvdl if (Oflag <= 1)
609 1.64 fvdl maxbpg = MAXBLKPG_UFS1(bsize);
610 1.64 fvdl else
611 1.64 fvdl maxbpg = MAXBLKPG_UFS2(bsize);
612 1.64 fvdl }
613 1.54 simonb mkfs(pp, special, fsi, fso, mfsmode, mfsuid, mfsgid);
614 1.75 dsl if (!Nflag && pp != NULL
615 1.75 dsl && memcmp(pp, &oldpartition, sizeof(oldpartition)))
616 1.1 cgd rewritelabel(special, fso, lp);
617 1.75 dsl if (fsi != -1 && fsi != fso)
618 1.75 dsl close(fsi);
619 1.75 dsl if (fso != -1)
620 1.1 cgd close(fso);
621 1.1 cgd #ifdef MFS
622 1.1 cgd if (mfs) {
623 1.1 cgd
624 1.30 drochner switch (pid = fork()) {
625 1.30 drochner case -1:
626 1.30 drochner perror("mfs");
627 1.30 drochner exit(10);
628 1.30 drochner case 0:
629 1.34 mycroft (void)snprintf(mountfromname, sizeof(mountfromname),
630 1.34 mycroft "mfs:%d", getpid());
631 1.30 drochner break;
632 1.30 drochner default:
633 1.34 mycroft (void)snprintf(mountfromname, sizeof(mountfromname),
634 1.34 mycroft "mfs:%d", pid);
635 1.30 drochner for (;;) {
636 1.30 drochner /*
637 1.30 drochner * spin until the mount succeeds
638 1.30 drochner * or the child exits
639 1.30 drochner */
640 1.30 drochner usleep(1);
641 1.30 drochner
642 1.30 drochner /*
643 1.30 drochner * XXX Here is a race condition: another process
644 1.30 drochner * can mount a filesystem which hides our
645 1.30 drochner * ramdisk before we see the success.
646 1.30 drochner */
647 1.82 christos if (statvfs(argv[1], &sf) < 0)
648 1.82 christos err(88, "statvfs %s", argv[1]);
649 1.30 drochner if (!strcmp(sf.f_mntfromname, mountfromname) &&
650 1.30 drochner !strncmp(sf.f_mntonname, argv[1],
651 1.30 drochner MNAMELEN) &&
652 1.30 drochner !strcmp(sf.f_fstypename, "mfs"))
653 1.30 drochner exit(0);
654 1.30 drochner
655 1.30 drochner res = waitpid(pid, &status, WNOHANG);
656 1.30 drochner if (res == -1)
657 1.30 drochner err(11, "waitpid");
658 1.30 drochner if (res != pid)
659 1.30 drochner continue;
660 1.31 drochner if (WIFEXITED(status)) {
661 1.31 drochner if (WEXITSTATUS(status) == 0)
662 1.31 drochner exit(0);
663 1.30 drochner errx(1, "%s: mount: %s", argv[1],
664 1.30 drochner strerror(WEXITSTATUS(status)));
665 1.31 drochner } else
666 1.30 drochner errx(11, "abnormal termination");
667 1.30 drochner }
668 1.30 drochner /* NOTREACHED */
669 1.30 drochner }
670 1.30 drochner
671 1.30 drochner (void) setsid();
672 1.30 drochner (void) close(0);
673 1.30 drochner (void) close(1);
674 1.30 drochner (void) close(2);
675 1.30 drochner (void) chdir("/");
676 1.30 drochner
677 1.10 mycroft args.export.ex_root = -2;
678 1.10 mycroft if (mntflags & MNT_RDONLY)
679 1.10 mycroft args.export.ex_flags = MNT_EXRDONLY;
680 1.10 mycroft else
681 1.10 mycroft args.export.ex_flags = 0;
682 1.1 cgd args.base = membase;
683 1.1 cgd args.size = fssize * sectorsize;
684 1.81 dsl if (mount(MOUNT_MFS, argv[1], mntflags, &args) < 0)
685 1.30 drochner exit(errno); /* parent prints message */
686 1.1 cgd }
687 1.1 cgd #endif
688 1.1 cgd exit(0);
689 1.1 cgd }
690 1.1 cgd
691 1.1 cgd #ifdef COMPAT
692 1.39 is const char lmsg[] = "%s: can't read disk label; disk type must be specified";
693 1.1 cgd #else
694 1.39 is const char lmsg[] = "%s: can't read disk label";
695 1.1 cgd #endif
696 1.1 cgd
697 1.25 christos static struct disklabel *
698 1.75 dsl getdisklabel(char *s, int fd)
699 1.1 cgd {
700 1.1 cgd static struct disklabel lab;
701 1.1 cgd
702 1.1 cgd #ifdef COMPAT
703 1.77 drochner if (disktype) {
704 1.77 drochner struct disklabel *lp;
705 1.1 cgd
706 1.77 drochner unlabeled++;
707 1.77 drochner lp = getdiskbyname(disktype);
708 1.77 drochner if (lp == NULL)
709 1.77 drochner errx(1, "%s: unknown disk type", disktype);
710 1.77 drochner return (lp);
711 1.77 drochner }
712 1.1 cgd #endif
713 1.77 drochner if (ioctl(fd, DIOCGDINFO, &lab) < 0) {
714 1.10 mycroft warn("ioctl (GDINFO)");
715 1.25 christos errx(1, lmsg, s);
716 1.1 cgd }
717 1.1 cgd return (&lab);
718 1.1 cgd }
719 1.1 cgd
720 1.25 christos static void
721 1.75 dsl rewritelabel(char *s, int fd, struct disklabel *lp)
722 1.1 cgd {
723 1.1 cgd #ifdef COMPAT
724 1.1 cgd if (unlabeled)
725 1.1 cgd return;
726 1.1 cgd #endif
727 1.1 cgd lp->d_checksum = 0;
728 1.1 cgd lp->d_checksum = dkcksum(lp);
729 1.1 cgd if (ioctl(fd, DIOCWDINFO, (char *)lp) < 0) {
730 1.57 thorpej if (errno == ESRCH)
731 1.57 thorpej return;
732 1.10 mycroft warn("ioctl (WDINFO)");
733 1.25 christos errx(1, "%s: can't rewrite disk label", s);
734 1.1 cgd }
735 1.35 matt #if __vax__
736 1.1 cgd if (lp->d_type == DTYPE_SMD && lp->d_flags & D_BADSECT) {
737 1.25 christos int i;
738 1.1 cgd int cfd;
739 1.1 cgd daddr_t alt;
740 1.62 scw off_t loff;
741 1.1 cgd char specname[64];
742 1.1 cgd char blk[1024];
743 1.1 cgd char *cp;
744 1.1 cgd
745 1.1 cgd /*
746 1.1 cgd * Make name for 'c' partition.
747 1.1 cgd */
748 1.66 itojun strlcpy(specname, s, sizeof(specname));
749 1.1 cgd cp = specname + strlen(specname) - 1;
750 1.1 cgd if (!isdigit(*cp))
751 1.1 cgd *cp = 'c';
752 1.1 cgd cfd = open(specname, O_WRONLY);
753 1.1 cgd if (cfd < 0)
754 1.28 enami err(1, "%s: open", specname);
755 1.62 scw if ((loff = getlabeloffset()) < 0)
756 1.62 scw err(1, "getlabeloffset()");
757 1.11 mycroft memset(blk, 0, sizeof(blk));
758 1.62 scw *(struct disklabel *)(blk + loff) = *lp;
759 1.1 cgd alt = lp->d_ncylinders * lp->d_secpercyl - lp->d_nsectors;
760 1.1 cgd for (i = 1; i < 11 && i < lp->d_nsectors; i += 2) {
761 1.17 cgd off_t offset;
762 1.17 cgd
763 1.17 cgd offset = alt + i;
764 1.17 cgd offset *= lp->d_secsize;
765 1.17 cgd if (lseek(cfd, offset, SEEK_SET) == -1)
766 1.25 christos err(1, "lseek to badsector area: ");
767 1.1 cgd if (write(cfd, blk, lp->d_secsize) < lp->d_secsize)
768 1.10 mycroft warn("alternate label %d write", i/2);
769 1.1 cgd }
770 1.1 cgd close(cfd);
771 1.1 cgd }
772 1.1 cgd #endif
773 1.1 cgd }
774 1.1 cgd
775 1.54 simonb static gid_t
776 1.54 simonb mfs_group(const char *gname)
777 1.54 simonb {
778 1.54 simonb struct group *gp;
779 1.54 simonb
780 1.54 simonb if (!(gp = getgrnam(gname)) && !isdigit((unsigned char)*gname))
781 1.54 simonb errx(1, "unknown gname %s", gname);
782 1.54 simonb return gp ? gp->gr_gid : atoi(gname);
783 1.54 simonb }
784 1.54 simonb
785 1.54 simonb static uid_t
786 1.54 simonb mfs_user(const char *uname)
787 1.54 simonb {
788 1.54 simonb struct passwd *pp;
789 1.54 simonb
790 1.54 simonb if (!(pp = getpwnam(uname)) && !isdigit((unsigned char)*uname))
791 1.54 simonb errx(1, "unknown user %s", uname);
792 1.54 simonb return pp ? pp->pw_uid : atoi(uname);
793 1.54 simonb }
794 1.54 simonb
795 1.75 dsl static int64_t
796 1.75 dsl strsuftoi64(const char *desc, const char *arg, int64_t min, int64_t max, int *num_suffix)
797 1.43 lukem {
798 1.75 dsl int64_t result, r1;
799 1.75 dsl int shift = 0;
800 1.43 lukem char *ep;
801 1.43 lukem
802 1.43 lukem errno = 0;
803 1.75 dsl r1 = strtoll(arg, &ep, 10);
804 1.43 lukem if (ep[0] != '\0' && ep[1] != '\0')
805 1.43 lukem errx(1, "%s `%s' is not a valid number.", desc, arg);
806 1.75 dsl switch (ep[0]) {
807 1.43 lukem case '\0':
808 1.75 dsl case 's': case 'S':
809 1.75 dsl if (num_suffix != NULL)
810 1.75 dsl *num_suffix = 0;
811 1.43 lukem break;
812 1.75 dsl case 'g': case 'G':
813 1.75 dsl shift += 10;
814 1.75 dsl /* FALLTHROUGH */
815 1.75 dsl case 'm': case 'M':
816 1.75 dsl shift += 10;
817 1.75 dsl /* FALLTHROUGH */
818 1.75 dsl case 'k': case 'K':
819 1.75 dsl shift += 10;
820 1.75 dsl /* FALLTHROUGH */
821 1.75 dsl case 'b': case 'B':
822 1.75 dsl if (num_suffix != NULL)
823 1.75 dsl *num_suffix = 1;
824 1.43 lukem break;
825 1.43 lukem default:
826 1.43 lukem errx(1, "`%s' is not a valid suffix for %s.", ep, desc);
827 1.43 lukem }
828 1.75 dsl result = r1 << shift;
829 1.75 dsl if (errno == ERANGE || result >> shift != r1)
830 1.75 dsl errx(1, "%s `%s' is too large to convert.", desc, arg);
831 1.43 lukem if (result < min)
832 1.75 dsl errx(1, "%s `%s' (%" PRId64 ") is less than the minimum (%" PRId64 ").",
833 1.43 lukem desc, arg, result, min);
834 1.43 lukem if (result > max)
835 1.75 dsl errx(1, "%s `%s' (%" PRId64 ") is greater than the maximum (%" PRId64 ").",
836 1.43 lukem desc, arg, result, max);
837 1.75 dsl return result;
838 1.43 lukem }
839 1.43 lukem
840 1.54 simonb #define NEWFS 1
841 1.54 simonb #define MFS_MOUNT 2
842 1.54 simonb #define BOTH NEWFS | MFS_MOUNT
843 1.54 simonb
844 1.54 simonb struct help_strings {
845 1.54 simonb int flags;
846 1.54 simonb const char *str;
847 1.54 simonb } const help_strings[] = {
848 1.54 simonb { NEWFS, "-B byteorder\tbyte order (`be' or `le')" },
849 1.54 simonb { NEWFS, "-F \t\tcreate file system image in regular file" },
850 1.58 lukem { NEWFS, "-I \t\tdo not check that the file system type is '4.2BSD'" },
851 1.54 simonb { BOTH, "-N \t\tdo not create file system, just print out "
852 1.54 simonb "parameters" },
853 1.75 dsl { NEWFS, "-O N\t\tfilesystem format: 0 ==> 4.3BSD, 1 ==> FFS, 2 ==> UFS2" },
854 1.54 simonb { NEWFS, "-S secsize\tsector size" },
855 1.54 simonb #ifdef COMPAT
856 1.54 simonb { NEWFS, "-T disktype\tdisk type" },
857 1.54 simonb #endif
858 1.75 dsl { NEWFS, "-Z \t\tpre-zero the image file" },
859 1.54 simonb { BOTH, "-a maxcontig\tmaximum contiguous blocks" },
860 1.54 simonb { BOTH, "-b bsize\tblock size" },
861 1.75 dsl { BOTH, "-d maxbsize\tmaximum extent size" },
862 1.54 simonb { BOTH, "-e maxbpg\tmaximum blocks per file in a cylinder group"
863 1.54 simonb },
864 1.54 simonb { BOTH, "-f fsize\tfrag size" },
865 1.54 simonb { NEWFS, "-g avgfilesize\taverage file size" },
866 1.54 simonb { MFS_MOUNT, "-g groupname\tgroup name of mount point" },
867 1.54 simonb { BOTH, "-h avgfpdir\taverage files per directory" },
868 1.54 simonb { BOTH, "-i density\tnumber of bytes per inode" },
869 1.54 simonb { BOTH, "-m minfree\tminimum free space %%" },
870 1.78 jmmv { BOTH, "-n inodes\tnumber of inodes (overrides -i density)" },
871 1.54 simonb { BOTH, "-o optim\toptimization preference (`space' or `time')"
872 1.54 simonb },
873 1.54 simonb { MFS_MOUNT, "-p perm\t\tpermissions (in octal)" },
874 1.54 simonb { BOTH, "-s fssize\tfile system size (sectors)" },
875 1.54 simonb { MFS_MOUNT, "-u username\tuser name of mount point" },
876 1.61 dbj { NEWFS, "-v volname\tApple UFS volume name" },
877 1.54 simonb { 0, NULL }
878 1.54 simonb };
879 1.54 simonb
880 1.25 christos static void
881 1.40 simonb usage(void)
882 1.1 cgd {
883 1.54 simonb int match;
884 1.54 simonb const struct help_strings *hs;
885 1.43 lukem
886 1.1 cgd if (mfs) {
887 1.1 cgd fprintf(stderr,
888 1.43 lukem "usage: %s [ fsoptions ] special-device mount-point\n",
889 1.42 cgd getprogname());
890 1.1 cgd } else
891 1.1 cgd fprintf(stderr,
892 1.43 lukem "usage: %s [ fsoptions ] special-device%s\n",
893 1.42 cgd getprogname(),
894 1.1 cgd #ifdef COMPAT
895 1.75 dsl " [disk-type]");
896 1.1 cgd #else
897 1.1 cgd "");
898 1.1 cgd #endif
899 1.1 cgd fprintf(stderr, "where fsoptions are:\n");
900 1.54 simonb
901 1.54 simonb match = mfs ? MFS_MOUNT : NEWFS;
902 1.54 simonb for (hs = help_strings; hs->flags != 0; hs++)
903 1.54 simonb if (hs->flags & match)
904 1.54 simonb fprintf(stderr, "\t%s\n", hs->str);
905 1.1 cgd exit(1);
906 1.1 cgd }
907