Home | History | Annotate | Line # | Download | only in newfs_lfs
make_lfs.c revision 1.14
      1 /*	$NetBSD: make_lfs.c,v 1.14 2009/02/22 20:28:05 ad Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 2003 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Konrad E. Schroder <perseant (at) hhhh.org>.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  *
     19  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  * POSSIBILITY OF SUCH DAMAGE.
     30  */
     31 /*-
     32  * Copyright (c) 1991, 1993
     33  *	The Regents of the University of California.  All rights reserved.
     34  *
     35  * Redistribution and use in source and binary forms, with or without
     36  * modification, are permitted provided that the following conditions
     37  * are met:
     38  * 1. Redistributions of source code must retain the above copyright
     39  *    notice, this list of conditions and the following disclaimer.
     40  * 2. Redistributions in binary form must reproduce the above copyright
     41  *    notice, this list of conditions and the following disclaimer in the
     42  *    documentation and/or other materials provided with the distribution.
     43  * 3. Neither the name of the University nor the names of its contributors
     44  *    may be used to endorse or promote products derived from this software
     45  *    without specific prior written permission.
     46  *
     47  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     48  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     49  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     50  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     51  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     52  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     53  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     54  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     55  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     56  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     57  * SUCH DAMAGE.
     58  */
     59 
     60 #include <sys/cdefs.h>
     61 #ifndef lint
     62 #if 0
     63 static char sccsid[] = "@(#)lfs.c	8.5 (Berkeley) 5/24/95";
     64 #else
     65 __RCSID("$NetBSD: make_lfs.c,v 1.14 2009/02/22 20:28:05 ad Exp $");
     66 #endif
     67 #endif /* not lint */
     68 
     69 #include <sys/param.h>
     70 #include <sys/disk.h>
     71 #include <sys/time.h>
     72 #include <sys/mount.h>
     73 #include <sys/stat.h>
     74 
     75 #include <ufs/ufs/dir.h>
     76 #include <ufs/ufs/quota.h>
     77 #include <ufs/ufs/inode.h>
     78 
     79 /* Override certain things to make <ufs/lfs/lfs.h> work */
     80 # undef simple_lock
     81 # define simple_lock(x)
     82 # undef simple_unlock
     83 # define simple_unlock(x)
     84 # define vnode uvnode
     85 # define buf ubuf
     86 # define panic call_panic
     87 #include <ufs/lfs/lfs.h>
     88 
     89 #include <err.h>
     90 #include <errno.h>
     91 #include <stdio.h>
     92 #include <stdlib.h>
     93 #include <string.h>
     94 #include <time.h>
     95 #include <unistd.h>
     96 
     97 #include "config.h"
     98 #include "extern.h"
     99 
    100 #include "bufcache.h"
    101 #include "vnode.h"
    102 #include "lfs_user.h"
    103 #include "segwrite.h"
    104 
    105 extern int Nflag; /* Don't write anything */
    106 ufs_daddr_t ifibc; /* How many indirect blocks */
    107 
    108 #ifdef MAKE_LF_DIR
    109 # define HIGHEST_USED_INO LOSTFOUNDINO
    110 #else
    111 # define HIGHEST_USED_INO ROOTINO
    112 #endif
    113 
    114 static struct lfs lfs_default =  {
    115 	.lfs_dlfs = { /* lfs_dlfs */
    116 		/* dlfs_magic */	LFS_MAGIC,
    117 		/* dlfs_version */	LFS_VERSION,
    118 		/* dlfs_size */		0,
    119 		/* dlfs_ssize */	DFL_LFSSEG,
    120 		/* dlfs_dsize */	0,
    121 		/* dlfs_bsize */	DFL_LFSBLOCK,
    122 		/* dlfs_fsize */	DFL_LFSFRAG,
    123 		/* dlfs_frag */		DFL_LFSBLOCK/DFL_LFSFRAG,
    124 		/* dlfs_freehd */	HIGHEST_USED_INO + 1,
    125 		/* dlfs_bfree */	0,
    126 		/* dlfs_nfiles */	0,
    127 		/* dlfs_avail */	0,
    128 		/* dlfs_uinodes */	0,
    129 		/* dlfs_idaddr */	0,
    130 		/* dlfs_ifile */	LFS_IFILE_INUM,
    131 		/* dlfs_lastseg */	0,
    132 		/* dlfs_nextseg */	0,
    133 		/* dlfs_curseg */	0,
    134 		/* dlfs_offset */	0,
    135 		/* dlfs_lastpseg */	0,
    136 		/* dlfs_inopf */	0,
    137 		/* dlfs_minfree */	MINFREE,
    138 		/* dlfs_maxfilesize */	0,
    139 		/* dlfs_fsbpseg */	0,
    140 		/* dlfs_inopb */	DFL_LFSBLOCK/sizeof(struct ufs1_dinode),
    141 		/* dlfs_ifpb */		DFL_LFSBLOCK/sizeof(IFILE),
    142 		/* dlfs_sepb */		DFL_LFSBLOCK/sizeof(SEGUSE),
    143 		/* XXX ondisk32 */
    144 		/* dlfs_nindir */	DFL_LFSBLOCK/sizeof(int32_t),
    145 		/* dlfs_nseg */		0,
    146 		/* dlfs_nspf */		0,
    147 		/* dlfs_cleansz */	0,
    148 		/* dlfs_segtabsz */	0,
    149 		/* dlfs_segmask */	DFL_LFSSEG_MASK,
    150 		/* dlfs_segshift */	DFL_LFSSEG_SHIFT,
    151 		/* dlfs_bshift */	DFL_LFSBLOCK_SHIFT,
    152 		/* dlfs_ffshift */	DFL_LFS_FFSHIFT,
    153 		/* dlfs_fbshift */	DFL_LFS_FBSHIFT,
    154 		/* dlfs_bmask */	DFL_LFSBLOCK_MASK,
    155 		/* dlfs_ffmask */	DFL_LFS_FFMASK,
    156 		/* dlfs_fbmask */	DFL_LFS_FBMASK,
    157 		/* dlfs_blktodb */	0,
    158 		/* dlfs_sushift */	0,
    159 		/* dlfs_maxsymlinklen */	MAXSYMLINKLEN_UFS1,
    160 		/* dlfs_sboffs */	{ 0 },
    161 		/* dlfs_nclean */       0,
    162 		/* dlfs_fsmnt */        { 0 },
    163 		/* dlfs_pflags */       LFS_PF_CLEAN,
    164 		/* dlfs_dmeta */	0,
    165 		/* dlfs_minfreeseg */   0,
    166 		/* dlfs_sumsize */	0,
    167 		/* dlfs_serial */	0,
    168 		/* dlfs_ibsize */	DFL_LFSFRAG,
    169 		/* dlfs_start */	0,
    170 		/* dlfs_tstamp */       0,
    171 		/* dlfs_inodefmt */     LFS_44INODEFMT,
    172 		/* dlfs_interleave */   0,
    173 		/* dlfs_ident */        0,
    174 		/* dlfs_fsbtodb */      0,
    175 		/* dlfs_resvseg */      0,
    176 
    177 		/* dlfs_pad */ 		{ 0 },
    178 		/* dlfs_cksum */	0
    179 	},
    180 };
    181 
    182 #define	UMASK	0755
    183 
    184 struct direct lfs_root_dir[] = {
    185 	{ ROOTINO, sizeof(struct direct), DT_DIR, 1, "."},
    186 	{ ROOTINO, sizeof(struct direct), DT_DIR, 2, ".."},
    187 	/* { LFS_IFILE_INUM, sizeof(struct direct), DT_REG, 5, "ifile"}, */
    188 #ifdef MAKE_LF_DIR
    189 	{ LOSTFOUNDINO, sizeof(struct direct), DT_DIR, 10, "lost+found"},
    190 #endif
    191 };
    192 
    193 #ifdef MAKE_LF_DIR
    194 struct direct lfs_lf_dir[] = {
    195         { LOSTFOUNDINO, sizeof(struct direct), DT_DIR, 1, "." },
    196         { ROOTINO, sizeof(struct direct), DT_DIR, 2, ".." },
    197 };
    198 #endif
    199 
    200 void pwarn(const char *, ...);
    201 static void make_dinode(ino_t, struct ufs1_dinode *, int, struct lfs *);
    202 static void make_dir( void *, struct direct *, int);
    203 static uint64_t maxfilesize(int);
    204 
    205 /*
    206  * calculate the maximum file size allowed with the specified block shift.
    207  */
    208 static uint64_t
    209 maxfilesize(int bshift)
    210 {
    211 	uint64_t nptr; /* number of block pointers per block */
    212 	uint64_t maxblock;
    213 
    214 	nptr = (1 << bshift) / sizeof(uint32_t);
    215 	maxblock = NDADDR + nptr + nptr * nptr + nptr * nptr * nptr;
    216 
    217 	return maxblock << bshift;
    218 }
    219 
    220 /*
    221  * Create the root directory for this file system and the lost+found
    222  * directory.
    223  */
    224 static void
    225 make_dinode(ino_t ino, struct ufs1_dinode *dip, int nfrags, struct lfs *fs)
    226 {
    227 	int fsb_per_blk, i;
    228 	int nblocks, bb, base, factor, lvl;
    229 
    230 	nblocks = howmany(nfrags, fs->lfs_frag);
    231 	if(nblocks >= NDADDR)
    232 		nfrags = roundup(nfrags, fs->lfs_frag);
    233 
    234 	dip->di_nlink = 1;
    235 	dip->di_blocks = fragstofsb(fs, nfrags);
    236 
    237 	dip->di_size = (nfrags << fs->lfs_ffshift);
    238 	dip->di_atime = dip->di_mtime = dip->di_ctime = fs->lfs_tstamp;
    239 	dip->di_atimensec = dip->di_mtimensec = dip->di_ctimensec = 0;
    240 	dip->di_inumber = ino;
    241 	dip->di_gen = 1;
    242 
    243 	fsb_per_blk = fragstofsb(fs, blkstofrags(fs, 1));
    244 
    245 	if (NDADDR < nblocks) {
    246 		/* Count up how many indirect blocks we need, recursively */
    247 		/* XXX We are only called with nblocks > 1 for Ifile */
    248 		bb = nblocks - NDADDR;
    249 		while (bb > 0) {
    250 			bb = howmany(bb, NINDIR(fs));
    251 			ifibc += bb;
    252 			--bb;
    253 		}
    254 		dip->di_blocks += fragstofsb(fs, blkstofrags(fs, ifibc));
    255 	}
    256 
    257 	/* Assign the block addresses for the ifile */
    258 	for (i = 0; i < MIN(nblocks,NDADDR); i++) {
    259 		dip->di_db[i] = 0x0;
    260 	}
    261 	if(nblocks > NDADDR) {
    262 		dip->di_ib[0] = 0x0;
    263 		bb = howmany(nblocks - NDADDR, NINDIR(fs)) - 1;
    264 		factor = NINDIR(fs);
    265 		base = -NDADDR - factor;
    266 		lvl = 1;
    267 		while (bb > 0) {
    268 			dip->di_ib[lvl] = 0x0;
    269 			bb = howmany(bb, NINDIR(fs));
    270 			--bb;
    271 			factor *= NINDIR(fs);
    272 			base -= factor;
    273 			++lvl;
    274 		}
    275 	}
    276 }
    277 
    278 /*
    279  * Construct a set of directory entries in "bufp".  We assume that all the
    280  * entries in protodir fir in the first DIRBLKSIZ.
    281  */
    282 static void
    283 make_dir(void *bufp, struct direct *protodir, int entries)
    284 {
    285 	char *cp;
    286 	int i, spcleft;
    287 
    288 	spcleft = DIRBLKSIZ;
    289 	for (cp = bufp, i = 0; i < entries - 1; i++) {
    290 		protodir[i].d_reclen = DIRSIZ(NEWDIRFMT, &protodir[i], 0);
    291 		memmove(cp, &protodir[i], protodir[i].d_reclen);
    292 		cp += protodir[i].d_reclen;
    293 		if ((spcleft -= protodir[i].d_reclen) < 0)
    294 			fatal("%s: %s", special, "directory too big");
    295 	}
    296 	protodir[i].d_reclen = spcleft;
    297 	memmove(cp, &protodir[i], DIRSIZ(NEWDIRFMT, &protodir[i], 0));
    298 }
    299 
    300 int
    301 make_lfs(int devfd, uint secsize, struct dkwedge_info *dkw, int minfree,
    302 	 int block_size, int frag_size, int seg_size, int minfreeseg,
    303 	 int resvseg, int version, daddr_t start, int ibsize, int interleave,
    304 	 u_int32_t roll_id)
    305 {
    306 	struct ufs1_dinode *dip;	/* Pointer to a disk inode */
    307 	CLEANERINFO *cip;	/* Segment cleaner information table */
    308 	IFILE *ip;		/* Pointer to array of ifile structures */
    309 	IFILE_V1 *ip_v1 = NULL;
    310 	struct lfs *fs;		/* Superblock */
    311 	SEGUSE *segp;		/* Segment usage table */
    312 	daddr_t	sb_addr;	/* Address of superblocks */
    313 	daddr_t	seg_addr;	/* Address of current segment */
    314 	int bsize;		/* Block size */
    315 	int fsize;		/* Fragment size */
    316 	int db_per_blk;		/* Disk blocks per file block */
    317 	int i, j;
    318 	int sb_interval;	/* number of segs between super blocks */
    319 	int ssize;		/* Segment size */
    320 	double fssize;
    321 	int warned_segtoobig=0;
    322 	int label_fsb, sb_fsb;
    323 	int curw, ww;
    324 	char tbuf[BUFSIZ];
    325 	struct ubuf *bp;
    326 	struct uvnode *vp, *save_devvp;
    327 	int bb, ubb, dmeta, labelskew;
    328 	u_int64_t tsepb, tnseg;
    329 
    330 	/*
    331 	 * Initialize buffer cache.  Use a ballpark guess of the length of
    332 	 * the segment table for the number of hash chains.
    333 	 */
    334 	tnseg = dkw->dkw_size / ((seg_size ? seg_size : DFL_LFSSEG) / secsize);
    335 	tsepb = (block_size ? block_size : DFL_LFSBLOCK) / sizeof(SEGSUM);
    336 	if (tnseg == 0)
    337 		fatal("zero size partition");
    338 	bufinit(tnseg / tsepb);
    339 
    340 	/* Initialize LFS subsystem with blank superblock and ifile. */
    341 	fs = lfs_init(devfd, start, (ufs_daddr_t)0, 1, 1/* XXX debug*/);
    342 	save_devvp = fs->lfs_devvp;
    343 	vp = fs->lfs_ivnode;
    344 	*fs = lfs_default;
    345 	fs->lfs_ivnode = vp;
    346 	fs->lfs_devvp = save_devvp;
    347 
    348 
    349 	/* Set version first of all since it is used to compute other fields */
    350 	fs->lfs_version = version;
    351 
    352 	/* If partition is not an LFS partition, warn that that is the case */
    353 	if (strcmp(dkw->dkw_ptype, DKW_PTYPE_LFS) != 0) {
    354 		fatal("partition label indicated fs type \"%s\", "
    355 		    "expected \"%s\"", dkw->dkw_ptype, DKW_PTYPE_LFS);
    356 	}
    357 
    358 	if (!(bsize = block_size))
    359 		bsize = DFL_LFSBLOCK;
    360 	if (!(fsize = frag_size))
    361 		fsize = DFL_LFSFRAG;
    362 	if (!(ssize = seg_size)) {
    363 		ssize = DFL_LFSSEG;
    364 	}
    365 	if (version > 1) {
    366 		if (ibsize == 0)
    367 			ibsize = fsize;
    368 		if (ibsize <= 0 || ibsize % fsize)
    369 			fatal("illegal inode block size: %d\n", ibsize);
    370 	} else if (ibsize && ibsize != bsize)
    371 		fatal("cannot specify inode block size when version == 1\n");
    372 
    373 	/* Sanity check: fsize<=bsize<ssize */
    374 	if (fsize > bsize) {
    375 		/* Only complain if fsize was explicitly set */
    376 		if(frag_size)
    377 			fatal("fragment size must be <= block size %d", bsize);
    378 		fsize = bsize;
    379 	}
    380 	if (bsize >= ssize) {
    381 		/* Only fatal if ssize was explicitly set */
    382 		if(seg_size)
    383 			fatal("block size must be < segment size");
    384 		warnx("%s: disklabel segment size (%d) too small, using default (%d)",
    385 		      progname, ssize, DFL_LFSSEG);
    386 		ssize = DFL_LFSSEG;
    387 	}
    388 	if (start < 0 || start >= dkw->dkw_size)
    389 		fatal("filesystem offset %ld out of range", (long)start);
    390 	if (version == 1) {
    391 		if (start)
    392 			warnx("filesystem offset ignored for version 1 filesystem");
    393 		start = LFS_LABELPAD / secsize;
    394 	}
    395 
    396     tryagain:
    397 	/* Modify parts of superblock overridden by command line arguments */
    398 	if (bsize != DFL_LFSBLOCK || fsize != DFL_LFSFRAG) {
    399 		fs->lfs_bshift = lfs_log2(bsize);
    400 		if (1 << fs->lfs_bshift != bsize)
    401 			fatal("%d: block size not a power of 2", bsize);
    402 		fs->lfs_bsize = bsize;
    403 		fs->lfs_fsize = fsize;
    404 		fs->lfs_bmask = bsize - 1;
    405 		fs->lfs_ffmask = fsize - 1;
    406 		fs->lfs_ffshift = lfs_log2(fsize);
    407 		if (1 << fs->lfs_ffshift != fsize)
    408 			fatal("%d: frag size not a power of 2", fsize);
    409 		fs->lfs_frag = numfrags(fs, bsize);
    410 		fs->lfs_fbmask = fs->lfs_frag - 1;
    411 		fs->lfs_fbshift = lfs_log2(fs->lfs_frag);
    412 		fs->lfs_ifpb = bsize / sizeof(IFILE);
    413 		/* XXX ondisk32 */
    414 		fs->lfs_nindir = bsize / sizeof(int32_t);
    415 	}
    416 
    417 	if (fs->lfs_version == 1) {
    418 		fs->lfs_sumsize = LFS_V1_SUMMARY_SIZE;
    419 		fs->lfs_segshift = lfs_log2(ssize);
    420 		if (1 << fs->lfs_segshift != ssize)
    421 			fatal("%d: segment size not power of 2", ssize);
    422 		fs->lfs_segmask = ssize - 1;
    423 		fs->lfs_ifpb = fs->lfs_bsize / sizeof(IFILE_V1);
    424 		fs->lfs_ibsize = fs->lfs_bsize;
    425 		fs->lfs_sepb = bsize / sizeof(SEGUSE_V1);
    426 		fs->lfs_ssize = ssize >> fs->lfs_bshift;
    427 	} else {
    428 		if (ssize % fsize) {
    429 			fprintf(stderr,
    430 				"Segment size %d is not a multiple of frag size; ",
    431 				 ssize);
    432 			ssize = roundup(ssize, fsize);
    433 			fprintf(stderr, "trying size %d.\n", ssize);
    434 			goto tryagain;
    435 		}
    436 		fs->lfs_sumsize = fsize;
    437 		fs->lfs_segshift = 0;
    438 		fs->lfs_segmask = 0;
    439 		fs->lfs_sepb = bsize / sizeof(SEGUSE);
    440 		fs->lfs_ssize = ssize;
    441 		fs->lfs_ibsize = ibsize;
    442 	}
    443 	fs->lfs_inopb = fs->lfs_ibsize / sizeof(struct ufs1_dinode);
    444 	fs->lfs_minfree = minfree;
    445 
    446 	if (version > 1) {
    447 		fs->lfs_inopf = secsize/DINODE1_SIZE;
    448 		fs->lfs_interleave = interleave;
    449 		if (roll_id == 0)
    450 			roll_id = arc4random();
    451 		fs->lfs_ident = roll_id;
    452 	}
    453 
    454 	/*
    455 	 * Fill in parts of superblock that can be computed from file system
    456 	 * size, disk geometry and current time.
    457 	 */
    458 	db_per_blk = bsize/secsize;
    459 	fs->lfs_blktodb = lfs_log2(db_per_blk);
    460 	fs->lfs_fsbtodb = lfs_log2(fsize / secsize);
    461 	if (version == 1) {
    462 		fs->lfs_sushift = lfs_log2(fs->lfs_sepb);
    463 		fs->lfs_fsbtodb = 0;
    464 		fs->lfs_size = dkw->dkw_size >> fs->lfs_blktodb;
    465 	}
    466 	label_fsb = btofsb(fs, roundup(LFS_LABELPAD, fsize));
    467 	sb_fsb = btofsb(fs, roundup(LFS_SBPAD, fsize));
    468 	fs->lfs_fsbpseg = dbtofsb(fs, ssize / secsize);
    469 	fs->lfs_size = dkw->dkw_size >> fs->lfs_fsbtodb;
    470 	fs->lfs_dsize = dbtofsb(fs, dkw->dkw_size) -
    471 		MAX(label_fsb, dbtofsb(fs, start));
    472 	fs->lfs_nseg = fs->lfs_dsize / segtod(fs, 1);
    473 
    474 	fs->lfs_nclean = fs->lfs_nseg - 1;
    475 	fs->lfs_maxfilesize = maxfilesize(fs->lfs_bshift);
    476 
    477 	if (minfreeseg == 0)
    478 		fs->lfs_minfreeseg = fs->lfs_nseg / DFL_MIN_FREE_SEGS;
    479 	else
    480 		fs->lfs_minfreeseg = minfreeseg;
    481 	if (fs->lfs_minfreeseg < MIN_FREE_SEGS)
    482 		fs->lfs_minfreeseg = MIN_FREE_SEGS;
    483 
    484 	if (resvseg == 0)
    485 		fs->lfs_resvseg = fs->lfs_minfreeseg / 2 + 1;
    486 	else
    487 		fs->lfs_resvseg = resvseg;
    488 	if (fs->lfs_resvseg < MIN_RESV_SEGS)
    489 		fs->lfs_resvseg = MIN_RESV_SEGS;
    490 
    491 	if(fs->lfs_nseg < fs->lfs_minfreeseg + 1
    492 	   || fs->lfs_nseg < LFS_MIN_SBINTERVAL + 1)
    493 	{
    494 		if(seg_size == 0 && ssize > (bsize<<1)) {
    495 			if(!warned_segtoobig) {
    496 				fprintf(stderr,"Segment size %d is too large; "
    497 					"trying smaller sizes.\n", ssize);
    498 				if (ssize == (bsize << 16)) {
    499 					fprintf(stderr, "(Did you perhaps "
    500 						"accidentally leave \"16\" "
    501 						"in the disklabel's sgs "
    502 						"field?)\n");
    503 				}
    504 			}
    505 			++warned_segtoobig;
    506 			ssize >>= 1;
    507 			goto tryagain;
    508 		}
    509 		fatal("Could not allocate enough segments with segment "
    510 			"size %d and block size %d;\nplease decrease the "
    511 			"segment size.\n", ssize, fs->lfs_bsize);
    512 	}
    513 
    514 	/*
    515 	 * Now that we've determined what we're going to do, announce it
    516 	 * to the user.
    517 	 */
    518         printf("Creating a version %d LFS", fs->lfs_version);
    519         if (fs->lfs_version > 1)
    520                 printf(" with roll-forward ident 0x%x", fs->lfs_ident);
    521         printf("\n");
    522         fssize = (double)fs->lfs_nseg;
    523         fssize *= (double)ssize;
    524         fssize /= 1048576.0;
    525         printf("%.1fMB in %d segments of size %d\n", fssize,
    526                fs->lfs_nseg, ssize);
    527 
    528 	/*
    529 	 * The number of free blocks is set from the number of segments
    530 	 * times the segment size - lfs_minfreesegs (that we never write
    531 	 * because we need to make sure the cleaner can run).  Then
    532 	 * we'll subtract off the room for the superblocks ifile entries
    533 	 * and segment usage table, and half a block per segment that can't
    534 	 * be written due to fragmentation.
    535 	 */
    536 	fs->lfs_dsize = (fs->lfs_nseg - fs->lfs_minfreeseg) *
    537 		segtod(fs, 1);
    538 	fs->lfs_bfree = fs->lfs_dsize;
    539 	fs->lfs_bfree -= dbtofsb(fs, ((fs->lfs_nseg / 2) <<
    540 		fs->lfs_blktodb));
    541 
    542 	fs->lfs_segtabsz = SEGTABSIZE_SU(fs);
    543 	fs->lfs_cleansz = CLEANSIZE_SU(fs);
    544 	if ((fs->lfs_tstamp = time(NULL)) == -1)
    545 		fatal("time: %s", strerror(errno));
    546 	if (version == 1)
    547 		fs->lfs_otstamp = fs->lfs_tstamp;
    548 
    549 	if ((sb_interval = fs->lfs_nseg / LFS_MAXNUMSB) < LFS_MIN_SBINTERVAL)
    550 		sb_interval = LFS_MIN_SBINTERVAL;
    551 
    552 	/*
    553 	 * Figure out where the superblocks are going to live.
    554 	 *
    555 	 * Make segment 0 start at either zero, or LFS_LABELPAD, or
    556 	 * >= LFS_SBPAD+LFS_LABELPAD, in order to prevent segment 0
    557 	 * from having half a superblock in it.
    558 	 */
    559 	if (fsbtodb(fs, dbtofsb(fs, start)) != start)
    560 		fatal("Segment 0 offset is not multiple of frag size\n");
    561 	if (start != 0 && dbtob(start) != LFS_LABELPAD &&
    562 	    dbtob(start) < LFS_SBPAD + LFS_LABELPAD) {
    563 		fatal("Using flags \"-O %" PRId64 "\" would result in the "
    564 		      "first segment containing only\npart of a superblock.  "
    565 		      "Please choose an offset of 0, %d, or %d or more,\n",
    566 		      start, btodb(LFS_LABELPAD),
    567 		      btodb(LFS_LABELPAD + LFS_SBPAD));
    568 	}
    569 	fs->lfs_sboffs[0] = label_fsb;
    570 	if (version == 1)
    571 		fs->lfs_start = fs->lfs_sboffs[0];
    572 	else
    573 		fs->lfs_start = dbtofsb(fs, start);
    574         fs->lfs_dsize -= sb_fsb;
    575 	for (i = 1; i < LFS_MAXNUMSB; i++) {
    576 		sb_addr = ((i * sb_interval) * segtod(fs, 1))
    577 		    + fs->lfs_sboffs[0];
    578 		/* Segment 0 eats the label, except for version 1 */
    579 		if (fs->lfs_version > 1 && fs->lfs_start < label_fsb)
    580 			sb_addr -= label_fsb - start;
    581 		if (sb_addr + sizeof(struct dlfs)
    582 		    >= dbtofsb(fs, dkw->dkw_size))
    583 			break;
    584 		fs->lfs_sboffs[i] = sb_addr;
    585 		fs->lfs_dsize -= sb_fsb;
    586 	}
    587 
    588 	/* We need >= 2 superblocks */
    589 	if(fs->lfs_sboffs[1] == 0x0) {
    590 		fatal("Could not assign a disk address for the second "
    591 		      "superblock.\nPlease decrease the segment size.\n");
    592 	}
    593 
    594 	fs->lfs_lastseg = sntod(fs, fs->lfs_nseg - 2);
    595 	fs->lfs_curseg = sntod(fs, fs->lfs_nseg - 1);
    596 	fs->lfs_offset = sntod(fs, fs->lfs_nseg);
    597 	fs->lfs_nextseg = sntod(fs, 0);
    598 
    599 	/*
    600 	 * Initialize the Ifile inode.  Do this before we do anything
    601 	 * with the Ifile or segment tables.
    602 	 */
    603 	dip = VTOI(fs->lfs_ivnode)->i_din.ffs1_din = (struct ufs1_dinode *)
    604 		malloc(sizeof(*dip));
    605 	if (dip == NULL)
    606 		err(1, NULL);
    607 	memset(dip, 0, sizeof(*dip));
    608 	dip->di_mode  = IFREG|IREAD|IWRITE;
    609 	dip->di_flags = SF_IMMUTABLE;
    610 	make_dinode(LFS_IFILE_INUM, dip,
    611 		blkstofrags(fs, fs->lfs_cleansz + fs->lfs_segtabsz + 1), fs);
    612 	dip->di_size = (fs->lfs_cleansz + fs->lfs_segtabsz + 1) << fs->lfs_bshift;
    613 	for (i = 0; i < NDADDR && i < (dip->di_size >> fs->lfs_bshift); i++)
    614 		VTOI(fs->lfs_ivnode)->i_lfs_fragsize[i] = fs->lfs_bsize;
    615 
    616 	/*
    617 	 * Set up in-superblock segment usage cache
    618 	 */
    619  	fs->lfs_suflags = (u_int32_t **) malloc(2 * sizeof(u_int32_t *));
    620 	if (fs->lfs_suflags == NULL)
    621 		err(1, NULL);
    622 	fs->lfs_suflags[0] = (u_int32_t *) malloc(fs->lfs_nseg * sizeof(u_int32_t));
    623 	if (fs->lfs_suflags[0] == NULL)
    624 		err(1, NULL);
    625 	fs->lfs_suflags[1] = (u_int32_t *) malloc(fs->lfs_nseg * sizeof(u_int32_t));
    626 	if (fs->lfs_suflags[1] == NULL)
    627 		err(1, NULL);
    628 
    629 	/*
    630 	 * Initialize the cleanerinfo block
    631 	 */
    632 	LFS_CLEANERINFO(cip, fs, bp);
    633 	cip->clean = fs->lfs_nseg;
    634 	cip->dirty = 0;
    635 	if (version > 1) {
    636 		cip->free_head = HIGHEST_USED_INO + 1;
    637 		cip->free_tail = fs->lfs_ifpb - 1;
    638 	}
    639 	LFS_SYNC_CLEANERINFO(cip, fs, bp, 1);
    640 
    641 	/*
    642 	 * Run through segment table and initialize that
    643 	 */
    644 	for (i = j = 0; i < fs->lfs_nseg; i++) {
    645 		LFS_SEGENTRY(segp, fs, i, bp);
    646 
    647 		if (i == 0 &&
    648 		    fs->lfs_start < btofsb(fs, LFS_LABELPAD + LFS_SBPAD)) {
    649 			segp->su_flags = SEGUSE_SUPERBLOCK;
    650 			fs->lfs_bfree -= sb_fsb;
    651 			++j;
    652 		}
    653 		if (i > 0) {
    654 			if ((i % sb_interval) == 0 && j < LFS_MAXNUMSB) {
    655 				segp->su_flags = SEGUSE_SUPERBLOCK;
    656 				fs->lfs_bfree -= sb_fsb;
    657 				++j;
    658 			} else
    659 				segp->su_flags = 0;
    660 		}
    661 		segp->su_lastmod = 0;
    662 		segp->su_nbytes = 0;
    663 		segp->su_ninos = 0;
    664 		segp->su_nsums = 0;
    665 
    666 		LFS_WRITESEGENTRY(segp, fs, i, bp);
    667 	}
    668 
    669 	/* Initialize root directory */
    670 	vp = lfs_raw_vget(fs, ROOTINO, devfd, 0x0);
    671 	dip = VTOI(vp)->i_din.ffs1_din;
    672 	make_dinode(ROOTINO, dip, howmany(DIRBLKSIZ,fs->lfs_fsize), fs);
    673 	dip->di_mode = IFDIR | UMASK;
    674 	VTOI(vp)->i_lfs_osize = dip->di_size = DIRBLKSIZ;
    675         VTOI(vp)->i_lfs_effnblks = dip->di_blocks =
    676 		btofsb(fs, roundup(DIRBLKSIZ,fs->lfs_fsize));
    677 	for (i = 0; i < NDADDR && i < howmany(DIRBLKSIZ, fs->lfs_bsize); i++)
    678 		VTOI(vp)->i_lfs_fragsize[i] = fs->lfs_bsize;
    679 	if (DIRBLKSIZ < fs->lfs_bsize)
    680 		VTOI(vp)->i_lfs_fragsize[i - 1] =
    681 			roundup(DIRBLKSIZ,fs->lfs_fsize);
    682 	bread(vp, 0, fs->lfs_fsize, NOCRED, 0, &bp);
    683 	make_dir(bp->b_data, lfs_root_dir,
    684 		 sizeof(lfs_root_dir) / sizeof(struct direct));
    685 	VOP_BWRITE(bp);
    686 
    687 #ifdef MAKE_LF_DIR
    688 	/* Initialize lost+found directory */
    689 	vp = lfs_raw_vget(fs, LOSTFOUNDINO, devfd, 0x0);
    690 	dip = VTOI(vp)->i_din.ffs1_din;
    691 	make_dinode(LOSTFOUNDINO, dip, howmany(DIRBLKSIZ,fs->lfs_fsize), fs);
    692 	dip->di_mode = IFDIR | UMASK;
    693 	VTOI(vp)->i_lfs_osize = dip->di_size = DIRBLKSIZ;
    694         VTOI(vp)->i_lfs_effnblks = dip->di_blocks =
    695 		btofsb(fs, roundup(DIRBLKSIZ,fs->lfs_fsize));
    696 	for (i = 0; i < NDADDR && i < howmany(DIRBLKSIZ, fs->lfs_bsize); i++)
    697 		VTOI(vp)->i_lfs_fragsize[i] = fs->lfs_bsize;
    698 	if (DIRBLKSIZ < fs->lfs_bsize)
    699 		VTOI(vp)->i_lfs_fragsize[i - 1] =
    700 			roundup(DIRBLKSIZ,fs->lfs_fsize);
    701 	bread(vp, 0, fs->lfs_fsize, NOCRED, 0, &bp);
    702 	make_dir(bp->b_data, lfs_lf_dir,
    703 		 sizeof(lfs_lf_dir) / sizeof(struct direct));
    704 	VOP_BWRITE(bp);
    705 #endif /* MAKE_LF_DIR */
    706 
    707 	/* Set their IFILE entry version numbers to 1 */
    708 	LFS_IENTRY(ip, fs, 1, bp);
    709 	if (version == 1) {
    710 		ip_v1 = (IFILE_V1 *)ip;
    711 		for (i = LFS_IFILE_INUM; i <= HIGHEST_USED_INO; i++) {
    712 			ip_v1->if_version = 1;
    713 			ip_v1->if_daddr = 0x0;
    714 			ip_v1->if_nextfree = 0;
    715 			++ip_v1;
    716 		}
    717 	} else {
    718 		for (i = LFS_IFILE_INUM; i <= HIGHEST_USED_INO; i++) {
    719 			ip->if_version = 1;
    720 			ip->if_daddr = 0x0;
    721 			ip->if_nextfree = 0;
    722 			++ip;
    723 		}
    724 	}
    725 	/* Link remaining IFILE entries in free list */
    726 	if (version == 1) {
    727 		for (;
    728 		     i < fs->lfs_ifpb; ++ip_v1) {
    729 			ip_v1->if_version = 1;
    730 			ip_v1->if_daddr = LFS_UNUSED_DADDR;
    731 			ip_v1->if_nextfree = ++i;
    732 		}
    733 		--ip_v1;
    734 		ip_v1->if_nextfree = LFS_UNUSED_INUM;
    735 	} else {
    736 		for (;
    737 		     i < fs->lfs_ifpb; ++ip) {
    738 			ip->if_version = 1;
    739 			ip->if_daddr = LFS_UNUSED_DADDR;
    740 			ip->if_nextfree = ++i;
    741 		}
    742 		--ip;
    743 		ip->if_nextfree = LFS_UNUSED_INUM;
    744 	}
    745 	VOP_BWRITE(bp);
    746 
    747 	/* Write it all to disk. */
    748 	if (!Nflag)
    749 		lfs_segwrite(fs, SEGM_CKP);
    750 
    751 	/*
    752 	 * Now that we've written everything, look to see what's available
    753 	 * for writing.
    754 	 */
    755 	fs->lfs_avail = 0;
    756 	bb = ubb = dmeta = 0;
    757 	for (i = 0; i < fs->lfs_nseg; i++) {
    758 		LFS_SEGENTRY(segp, fs, i, bp);
    759                 if (segp->su_flags & SEGUSE_DIRTY) {
    760                         bb += btofsb(fs, segp->su_nbytes +
    761                             segp->su_nsums * fs->lfs_sumsize);
    762                         ubb += btofsb(fs, segp->su_nbytes +
    763                             segp->su_nsums * fs->lfs_sumsize +
    764                             segp->su_ninos * fs->lfs_ibsize);
    765                         dmeta += btofsb(fs,
    766                             fs->lfs_sumsize * segp->su_nsums);
    767                         dmeta += btofsb(fs,
    768                             fs->lfs_ibsize * segp->su_ninos);
    769 		} else {
    770                         fs->lfs_avail += segtod(fs, 1);
    771                         if (segp->su_flags & SEGUSE_SUPERBLOCK)
    772                                 fs->lfs_avail -= btofsb(fs, LFS_SBPAD);
    773                         if (i == 0 && fs->lfs_version > 1 &&
    774                             fs->lfs_start < btofsb(fs, LFS_LABELPAD))
    775                                 fs->lfs_avail -= btofsb(fs, LFS_LABELPAD) -
    776                                     fs->lfs_start;
    777                 }
    778 		brelse(bp, 0);
    779         }
    780         /* Also may be available bytes in current seg */
    781         i = dtosn(fs, fs->lfs_offset);
    782         fs->lfs_avail += sntod(fs, i + 1) - fs->lfs_offset;
    783         /* But do not count minfreesegs */
    784         fs->lfs_avail -= segtod(fs, (fs->lfs_minfreeseg - (fs->lfs_minfreeseg / 2)));
    785 
    786         labelskew = 0;
    787         if (fs->lfs_version > 1 && fs->lfs_start < btofsb(fs, LFS_LABELPAD))
    788                 labelskew = btofsb(fs, LFS_LABELPAD);
    789         fs->lfs_bfree = fs->lfs_dsize - labelskew - (ubb + bb) / 2;
    790 
    791 	/* Put that in the Ifile version too, and write it */
    792 	LFS_CLEANERINFO(cip, fs, bp);
    793 	cip->bfree = fs->lfs_bfree;
    794 	cip->avail = fs->lfs_avail;
    795 	LFS_SYNC_CLEANERINFO(cip, fs, bp, 1);
    796 	if (!Nflag)
    797 		lfs_segwrite(fs, SEGM_CKP);
    798 
    799 	/*
    800 	 * Finally write out superblocks.
    801 	 */
    802 	printf("super-block backups (for fsck -b #) at:\n");
    803 	curw = 0;
    804 	for (i = 0; i < LFS_MAXNUMSB; i++) {
    805 		seg_addr = fs->lfs_sboffs[i];
    806 		if (seg_addr == 0)
    807 			break;
    808 
    809 		if (i != 0)
    810 			curw += printf(", ");
    811 		ww = snprintf(tbuf, sizeof(tbuf), "%lld",
    812 		    (long long)fsbtodb(fs, seg_addr));
    813 		curw += ww;
    814 		if (curw >= 78) {
    815 			printf("\n%s", tbuf);
    816 			curw = ww;
    817 		} else
    818 			printf("%s", tbuf);
    819 		fflush(stdout);
    820 
    821 		/* Leave the time stamp on the alt sb, zero the rest */
    822 		if (i == 2) {
    823 			fs->lfs_tstamp = 0;
    824 			fs->lfs_cksum = lfs_sb_cksum(&(fs->lfs_dlfs));
    825 		}
    826 		if (!Nflag)
    827 			lfs_writesuper(fs, seg_addr);
    828 	}
    829 	printf(".\n");
    830 
    831 	return 0;
    832 }
    833 
    834 /*
    835  * Compatibility with fsck_lfs, since the "generic" LFS userland code uses it.
    836  */
    837 void
    838 pwarn(const char *fmt, ...)
    839 {
    840         va_list ap;
    841 
    842         va_start(ap, fmt);
    843         vfprintf(stderr, fmt, ap);
    844         va_end(ap);
    845 }
    846