xref: /csrg-svn/sbin/newlfs/lfs.c (revision 56192)
151149Sbostic /*-
251149Sbostic  * Copyright (c) 1991 The Regents of the University of California.
351149Sbostic  * All rights reserved.
451149Sbostic  *
551149Sbostic  * %sccs.include.redist.c%
651149Sbostic  */
751149Sbostic 
851149Sbostic #ifndef lint
9*56192Smargo static char sccsid[] = "@(#)lfs.c	5.21 (Berkeley) 09/03/92";
1051149Sbostic #endif /* not lint */
1151149Sbostic 
1251149Sbostic #include <sys/param.h>
1351149Sbostic #include <sys/disklabel.h>
1451864Sbostic #include <sys/time.h>
1552205Sbostic #include <sys/mount.h>
1651866Sbostic 
1751866Sbostic #include <ufs/ufs/dir.h>
1851866Sbostic #include <ufs/ufs/quota.h>
1951866Sbostic #include <ufs/ufs/dinode.h>
2051866Sbostic #include <ufs/lfs/lfs.h>
2151866Sbostic 
2251149Sbostic #include <unistd.h>
2351149Sbostic #include <errno.h>
2451149Sbostic #include <stdlib.h>
2551149Sbostic #include <string.h>
2651149Sbostic #include "config.h"
2751149Sbostic #include "extern.h"
2851149Sbostic 
2955389Sbostic /*
3055389Sbostic  * This table is indexed by the log base 2 of the block size.
3155389Sbostic  * It returns the maximum file size allowed in a file system
3255389Sbostic  * with the specified block size.  For block sizes smaller than
3355389Sbostic  * 8K, the size is limited by tha maximum number of blocks that
3455389Sbostic  * can be reached by triply indirect blocks:
3555389Sbostic  *	NDADDR + INOPB(bsize) + INOPB(bsize)^2 + INOPB(bsize)^3
3655389Sbostic  * For block size of 8K or larger, the file size is limited by the
3755389Sbostic  * number of blocks that can be represented in the file system.  Since
3855389Sbostic  * we use negative block numbers to represent indirect blocks, we can
3955389Sbostic  * have a maximum of 2^31 blocks.
4055389Sbostic  */
4155389Sbostic 
4255389Sbostic u_quad_t maxtable[] = {
4355389Sbostic 	/*    1 */ -1,
4455389Sbostic 	/*    2 */ -1,
4555389Sbostic 	/*    4 */ -1,
4655389Sbostic 	/*    8 */ -1,
4755389Sbostic 	/*   16 */ -1,
4855389Sbostic 	/*   32 */ -1,
4955389Sbostic 	/*   64 */ -1,
5055389Sbostic 	/*  128 */ -1,
5155389Sbostic 	/*  256 */ -1,
5255389Sbostic 	/*  512 */ NDADDR + 128 + 128 * 128 + 128 * 128 * 128,
5355389Sbostic 	/* 1024 */ NDADDR + 256 + 256 * 256 + 256 * 256 * 256,
5455389Sbostic 	/* 2048 */ NDADDR + 512 + 512 * 512 + 512 * 512 * 512,
5555389Sbostic 	/* 4096 */ NDADDR + 1024 + 1024 * 1024 + 1024 * 1024 * 1024,
5655389Sbostic 	/* 8192 */ 2 ^ 31,
5755389Sbostic 	/* 16 K */ 2 ^ 31,
5855389Sbostic 	/* 32 K */ 2 ^ 31
5955389Sbostic };
6055389Sbostic 
6151866Sbostic static struct lfs lfs_default =  {
6251149Sbostic 	/* lfs_magic */		LFS_MAGIC,
6351149Sbostic 	/* lfs_version */	LFS_VERSION,
6451149Sbostic 	/* lfs_size */		0,
6551866Sbostic 	/* lfs_ssize */		DFL_LFSSEG/DFL_LFSBLOCK,
6651149Sbostic 	/* lfs_dsize */		0,
6751149Sbostic 	/* lfs_bsize */		DFL_LFSBLOCK,
6851864Sbostic 	/* lfs_fsize */		DFL_LFSBLOCK,
6951864Sbostic 	/* lfs_frag */		1,
7051149Sbostic 	/* lfs_free */		LFS_FIRST_INUM,
7151864Sbostic 	/* lfs_bfree */		0,
7251864Sbostic 	/* lfs_nfiles */	0,
7356031Sbostic 	/* lfs_avail */		0,
7456031Sbostic 	/* lfs_uinodes */	0,
7551149Sbostic 	/* lfs_idaddr */	0,
7651149Sbostic 	/* lfs_ifile */		LFS_IFILE_INUM,
7751149Sbostic 	/* lfs_lastseg */	0,
7851864Sbostic 	/* lfs_nextseg */	0,
7951866Sbostic 	/* lfs_curseg */	0,
8051866Sbostic 	/* lfs_offset */	0,
8154263Sbostic 	/* lfs_lastpseg */	0,
8251149Sbostic 	/* lfs_tstamp */	0,
8351149Sbostic 	/* lfs_minfree */	MINFREE,
8455389Sbostic 	/* lfs_maxfilesize */	0,
8551866Sbostic 	/* lfs_dbpseg */	DFL_LFSSEG/DEV_BSIZE,
8651149Sbostic 	/* lfs_inopb */		DFL_LFSBLOCK/sizeof(struct dinode),
8751149Sbostic 	/* lfs_ifpb */		DFL_LFSBLOCK/sizeof(IFILE),
8851866Sbostic 	/* lfs_sepb */		DFL_LFSBLOCK/sizeof(SEGUSE),
8951149Sbostic 	/* lfs_nindir */	DFL_LFSBLOCK/sizeof(daddr_t),
9051149Sbostic 	/* lfs_nseg */		0,
9151149Sbostic 	/* lfs_nspf */		0,
9251866Sbostic 	/* lfs_cleansz */	0,
9351149Sbostic 	/* lfs_segtabsz */	0,
9451149Sbostic 	/* lfs_segmask */	DFL_LFSSEG_MASK,
9551149Sbostic 	/* lfs_segshift */	DFL_LFSSEG_SHIFT,
9651149Sbostic 	/* lfs_bmask */		DFL_LFSBLOCK_MASK,
9751149Sbostic 	/* lfs_bshift */	DFL_LFSBLOCK_SHIFT,
9851149Sbostic 	/* lfs_ffmask */	0,
9951149Sbostic 	/* lfs_ffshift */	0,
10051149Sbostic 	/* lfs_fbmask */	0,
10151149Sbostic 	/* lfs_fbshift */	0,
10251149Sbostic 	/* lfs_fsbtodb */	0,
10355596Sbostic 	/* lfs_sushift */	0,
10451149Sbostic 	/* lfs_sboffs */	{ 0 },
10551864Sbostic 	/* lfs_ivnode */	NULL,
10654710Sbostic 	/* lfs_seglock */	0,
10751864Sbostic 	/* lfs_iocount */	0,
10854263Sbostic 	/* lfs_writer */	0,
10954263Sbostic 	/* lfs_dirops */	0,
11054263Sbostic 	/* lfs_doifile */	0,
11156031Sbostic 	/* lfs_nactive */	0,
11251149Sbostic 	/* lfs_fmod */		0,
11351149Sbostic 	/* lfs_clean */		0,
11451149Sbostic 	/* lfs_ronly */		0,
11551149Sbostic 	/* lfs_flags */		0,
11651149Sbostic 	/* lfs_fsmnt */		{ 0 },
11751864Sbostic 	/* lfs_pad */		{ 0 },
11851149Sbostic 	/* lfs_cksum */		0
11951149Sbostic };
12051149Sbostic 
12151864Sbostic 
12251864Sbostic struct direct lfs_root_dir[] = {
12354715Sbostic 	{ ROOTINO, sizeof(struct direct), DT_DIR, 1, "."},
12454715Sbostic 	{ ROOTINO, sizeof(struct direct), DT_DIR, 2, ".."},
12554715Sbostic 	{ LFS_IFILE_INUM, sizeof(struct direct), DT_REG, 5, "ifile"},
12654715Sbostic 	{ LOSTFOUNDINO, sizeof(struct direct), DT_DIR, 10, "lost+found"},
12751864Sbostic };
12851864Sbostic 
12951864Sbostic struct direct lfs_lf_dir[] = {
13054715Sbostic         { LOSTFOUNDINO, sizeof(struct direct), DT_DIR, 1, "." },
13154715Sbostic         { ROOTINO, sizeof(struct direct), DT_DIR, 2, ".." },
13251864Sbostic };
13351864Sbostic 
13451864Sbostic static daddr_t make_dinode
13551866Sbostic 	__P((ino_t, struct dinode *, int, daddr_t, struct lfs *));
13651864Sbostic static void make_dir __P(( void *, struct direct *, int));
13751149Sbostic static void put __P((int, off_t, void *, size_t));
13851149Sbostic 
13951149Sbostic int
14051149Sbostic make_lfs(fd, lp, partp, minfree, block_size, seg_size)
14151149Sbostic 	int fd;
14251149Sbostic 	struct disklabel *lp;
14351149Sbostic 	struct partition *partp;
14451149Sbostic 	int minfree;
14551149Sbostic 	int block_size;
14651149Sbostic 	int seg_size;
14751149Sbostic {
14851149Sbostic 	struct dinode *dip;	/* Pointer to a disk inode */
14951864Sbostic 	struct dinode *dpagep;	/* Pointer to page of disk inodes */
15051866Sbostic 	CLEANERINFO *cleaninfo;	/* Segment cleaner information table */
15151149Sbostic 	FINFO file_info;	/* File info structure in summary blocks */
15251149Sbostic 	IFILE *ifile;		/* Pointer to array of ifile structures */
15351149Sbostic 	IFILE *ip;		/* Pointer to array of ifile structures */
15451866Sbostic 	struct lfs *lfsp;	/* Superblock */
15551864Sbostic 	SEGUSE *segp;		/* Segment usage table */
15651864Sbostic 	SEGUSE *segtable;	/* Segment usage table */
15751149Sbostic 	SEGSUM summary;		/* Segment summary structure */
15851866Sbostic 	SEGSUM *sp;		/* Segment summary pointer */
15951149Sbostic 	daddr_t	last_sb_addr;	/* Address of superblocks */
16051864Sbostic 	daddr_t last_addr;	/* Previous segment address */
16151149Sbostic 	daddr_t	sb_addr;	/* Address of superblocks */
16251864Sbostic 	daddr_t	seg_addr;	/* Address of current segment */
16351866Sbostic 	void *ipagep;		/* Pointer to the page we use to write stuff */
16451149Sbostic 	void *sump;		/* Used to copy stuff into segment buffer */
16551149Sbostic 	u_long *block_array;	/* Array of logical block nos to put in sum */
16651866Sbostic 	u_long blocks_used;	/* Number of blocks in first segment */
16751866Sbostic 	u_long *dp;		/* Used to computed checksum on data */
16851866Sbostic 	u_long *datasump;	/* Used to computed checksum on data */
16951149Sbostic 	int block_array_size;	/* How many entries in block array */
17051149Sbostic 	int bsize;		/* Block size */
17151149Sbostic 	int db_per_fb;		/* Disk blocks per file block */
17251864Sbostic 	int i, j;
17351866Sbostic 	int off;		/* Offset at which to write */
17451149Sbostic 	int sb_interval;	/* number of segs between super blocks */
17551149Sbostic 	int seg_seek;		/* Seek offset for a segment */
17651149Sbostic 	int ssize;		/* Segment size */
17751149Sbostic 	int sum_size;		/* Size of the summary block */
17851149Sbostic 
17951149Sbostic 	lfsp = &lfs_default;
18051149Sbostic 
18151149Sbostic 	if (!(bsize = block_size))
18251149Sbostic 		bsize = DFL_LFSBLOCK;
18351149Sbostic 	if (!(ssize = seg_size))
18451149Sbostic 		ssize = DFL_LFSSEG;
18551149Sbostic 
18651149Sbostic 	/* Modify parts of superblock overridden by command line arguments */
18751149Sbostic 	if (bsize != DFL_LFSBLOCK) {
18851149Sbostic 		lfsp->lfs_bshift = log2(bsize);
18951149Sbostic 		if (1 << lfsp->lfs_bshift != bsize)
19051149Sbostic 			fatal("%d: block size not a power of 2", bsize);
19151149Sbostic 		lfsp->lfs_bsize = bsize;
19251864Sbostic 		lfsp->lfs_fsize = bsize;
19351149Sbostic 		lfsp->lfs_bmask = bsize - 1;
19451149Sbostic 		lfsp->lfs_inopb = bsize / sizeof(struct dinode);
19551149Sbostic /* MIS -- should I round to power of 2 */
19651149Sbostic 		lfsp->lfs_ifpb = bsize / sizeof(IFILE);
19751866Sbostic 		lfsp->lfs_sepb = bsize / sizeof(SEGUSE);
19851149Sbostic 		lfsp->lfs_nindir = bsize / sizeof(daddr_t);
19951149Sbostic 	}
20051149Sbostic 
20151149Sbostic 	if (ssize != DFL_LFSSEG) {
20251149Sbostic 		lfsp->lfs_segshift = log2(ssize);
20351149Sbostic 		if (1 << lfsp->lfs_segshift != ssize)
20451149Sbostic 			fatal("%d: segment size not power of 2", ssize);
20551149Sbostic 		lfsp->lfs_ssize = ssize;
20651149Sbostic 		lfsp->lfs_segmask = ssize - 1;
20751149Sbostic 	}
20851149Sbostic 	lfsp->lfs_ssize = ssize >> lfsp->lfs_bshift;
20951149Sbostic 
21051149Sbostic 	if (minfree)
21151149Sbostic 		lfsp->lfs_minfree = minfree;
21251149Sbostic 
21351149Sbostic 	/*
21451149Sbostic 	 * Fill in parts of superblock that can be computed from file system
21551149Sbostic 	 * size, disk geometry and current time.
21651149Sbostic 	 */
21751149Sbostic 	db_per_fb = bsize/lp->d_secsize;
21851149Sbostic 	lfsp->lfs_fsbtodb = log2(db_per_fb);
21955596Sbostic 	lfsp->lfs_sushift = log2(lfsp->lfs_sepb);
22051149Sbostic 	lfsp->lfs_size = partp->p_size >> lfsp->lfs_fsbtodb;
22151149Sbostic 	lfsp->lfs_dsize = lfsp->lfs_size - (LFS_LABELPAD >> lfsp->lfs_bshift);
22251149Sbostic 	lfsp->lfs_nseg = lfsp->lfs_dsize / lfsp->lfs_ssize;
22355389Sbostic 	lfsp->lfs_maxfilesize = maxtable[lfsp->lfs_bshift] << lfsp->lfs_bshift;
22451864Sbostic 
22551864Sbostic 	/*
22656031Sbostic 	 * The number of free blocks is set from the number of segments times
227*56192Smargo 	 * the segment size - 2 (that we never write because we need to make
228*56192Smargo 	 * sure the cleaner can run).  Then we'll subtract off the room for the
22956031Sbostic 	 * superblocks ifile entries and segment usage table.
23051864Sbostic 	 */
231*56192Smargo 	lfsp->lfs_dsize = fsbtodb(lfsp, (lfsp->lfs_nseg - 2) * lfsp->lfs_ssize);
232*56192Smargo 	lfsp->lfs_bfree = lfsp->lfs_dsize;
23351149Sbostic 	lfsp->lfs_segtabsz = SEGTABSIZE_SU(lfsp);
23451866Sbostic 	lfsp->lfs_cleansz = CLEANSIZE_SU(lfsp);
23551149Sbostic 	if ((lfsp->lfs_tstamp = time(NULL)) == -1)
23651149Sbostic 		fatal("time: %s", strerror(errno));
23751149Sbostic 	if ((sb_interval = lfsp->lfs_nseg / LFS_MAXNUMSB) < LFS_MIN_SBINTERVAL)
23851149Sbostic 		sb_interval = LFS_MIN_SBINTERVAL;
23951149Sbostic 
24051149Sbostic 	/*
24151149Sbostic 	 * Now, lay out the file system.  We need to figure out where
24251149Sbostic 	 * the superblocks go, initialize the checkpoint information
24351149Sbostic 	 * for the first two superblocks, initialize the segment usage
24451149Sbostic 	 * information, put the segusage information in the ifile, create
24551149Sbostic 	 * the first block of IFILE structures, and link all the IFILE
24651149Sbostic 	 * structures into a free list.
24751149Sbostic 	 */
24851149Sbostic 
24951149Sbostic 	/* Figure out where the superblocks are going to live */
25051149Sbostic 	lfsp->lfs_sboffs[0] = LFS_LABELPAD/lp->d_secsize;
25151149Sbostic 	for (i = 1; i < LFS_MAXNUMSB; i++) {
25251149Sbostic 		sb_addr = ((i * sb_interval) <<
25351149Sbostic 		    (lfsp->lfs_segshift - lfsp->lfs_bshift + lfsp->lfs_fsbtodb))
25451149Sbostic 		    + lfsp->lfs_sboffs[0];
25551149Sbostic 		if (sb_addr > partp->p_size)
25651149Sbostic 			break;
25751149Sbostic 		lfsp->lfs_sboffs[i] = sb_addr;
25851149Sbostic 	}
25951149Sbostic 	last_sb_addr = lfsp->lfs_sboffs[i - 1];
26051149Sbostic 	lfsp->lfs_lastseg = lfsp->lfs_sboffs[0];
26151864Sbostic 	lfsp->lfs_nextseg =
26251864Sbostic 	    lfsp->lfs_sboffs[1] ? lfsp->lfs_sboffs[1] : lfsp->lfs_sboffs[0];
26351866Sbostic 	lfsp->lfs_curseg = lfsp->lfs_lastseg;
26451149Sbostic 
26551149Sbostic 	/*
26651149Sbostic 	 * Initialize the segment usage table.  The first segment will
26751866Sbostic 	 * contain the superblock, the cleanerinfo (cleansz), the segusage
26851866Sbostic 	 * table * (segtabsz), 1 block's worth of IFILE entries, the root
26951866Sbostic 	 * directory, the lost+found directory and one block's worth of
27051866Sbostic 	 * inodes (containing the ifile, root, and l+f inodes).
27151149Sbostic 	 */
27251866Sbostic 	if (!(cleaninfo = malloc(lfsp->lfs_cleansz << lfsp->lfs_bshift)))
27351866Sbostic 		fatal("%s", strerror(errno));
27451930Sbostic 	cleaninfo->clean = lfsp->lfs_nseg - 1;
27551930Sbostic 	cleaninfo->dirty = 1;
27651930Sbostic 
27751149Sbostic 	if (!(segtable = malloc(lfsp->lfs_segtabsz << lfsp->lfs_bshift)))
27851149Sbostic 		fatal("%s", strerror(errno));
27951149Sbostic 	segp = segtable;
28051866Sbostic 	blocks_used = lfsp->lfs_segtabsz + lfsp->lfs_cleansz + 4;
28156031Sbostic 	segp->su_nbytes = ((blocks_used - 1) << lfsp->lfs_bshift) +
28256031Sbostic 	    3 * sizeof(struct dinode) + LFS_SUMMARY_SIZE;
28351149Sbostic 	segp->su_lastmod = lfsp->lfs_tstamp;
28455596Sbostic 	segp->su_nsums = 1;	/* 1 summary blocks */
28555596Sbostic 	segp->su_ninos = 1;	/* 1 inode block */
28651930Sbostic 	segp->su_flags = SEGUSE_SUPERBLOCK | SEGUSE_DIRTY;
28756031Sbostic 	lfsp->lfs_bfree -= LFS_SUMMARY_SIZE / lp->d_secsize;
28856031Sbostic 	lfsp->lfs_bfree -=
28956031Sbostic 	     fsbtodb(lfsp, lfsp->lfs_cleansz + lfsp->lfs_segtabsz + 4);
29051149Sbostic 
29151866Sbostic 	/*
29251866Sbostic 	 * Now figure out the address of the ifile inode. The inode block
29351866Sbostic 	 * appears immediately after the segment summary.
29451866Sbostic 	 */
29551866Sbostic 	lfsp->lfs_idaddr = (LFS_LABELPAD + LFS_SBPAD + LFS_SUMMARY_SIZE) /
29651866Sbostic 	    lp->d_secsize;
29751149Sbostic 
29851149Sbostic 	for (segp = segtable + 1, i = 1; i < lfsp->lfs_nseg; i++, segp++) {
29951864Sbostic 		if ((i % sb_interval) == 0) {
30051930Sbostic 			segp->su_flags = SEGUSE_SUPERBLOCK;
30155596Sbostic 			lfsp->lfs_bfree -= (LFS_SBPAD / lp->d_secsize);
30252088Sbostic 		} else
30351930Sbostic 			segp->su_flags = 0;
30451149Sbostic 		segp->su_lastmod = 0;
30552088Sbostic 		segp->su_nbytes = 0;
30655596Sbostic 		segp->su_ninos = 0;
30755713Sbostic 		segp->su_nsums = 0;
30851149Sbostic 	}
30951149Sbostic 
31056031Sbostic 	/*
31156031Sbostic 	 * Initialize dynamic accounting.  The blocks available for
31256031Sbostic 	 * writing are the bfree blocks minus 1 segment summary for
31356031Sbostic 	 * each segment since you can't write any new data without
31456031Sbostic 	 * creating a segment summary - 2 segments that the cleaner
31556031Sbostic 	 * needs.
31656031Sbostic 	 */
31756031Sbostic 	lfsp->lfs_avail = lfsp->lfs_bfree - lfsp->lfs_nseg -
31856031Sbostic 		fsbtodb(lfsp, 2 * lfsp->lfs_ssize);
31956031Sbostic 	lfsp->lfs_uinodes = 0;
32051149Sbostic 	/*
32151149Sbostic 	 * Ready to start writing segments.  The first segment is different
32251149Sbostic 	 * because it contains the segment usage table and the ifile inode
32351864Sbostic 	 * as well as a superblock.  For the rest of the segments, set the
32451864Sbostic 	 * time stamp to be 0 so that the first segment is the most recent.
32551864Sbostic 	 * For each segment that is supposed to contain a copy of the super
32651864Sbostic 	 * block, initialize its first few blocks and its segment summary
32751864Sbostic 	 * to indicate this.
32851149Sbostic 	 */
32951864Sbostic 	lfsp->lfs_nfiles = LFS_FIRST_INUM - 1;
33051149Sbostic 	lfsp->lfs_cksum =
33151866Sbostic 	    cksum(lfsp, sizeof(struct lfs) - sizeof(lfsp->lfs_cksum));
33251149Sbostic 
33351864Sbostic 	/* Now create a block of disk inodes */
33451864Sbostic 	if (!(dpagep = malloc(lfsp->lfs_bsize)))
33551864Sbostic 		fatal("%s", strerror(errno));
33651864Sbostic 	dip = (struct dinode *)dpagep;
33751864Sbostic 	bzero(dip, lfsp->lfs_bsize);
33851864Sbostic 
33951866Sbostic 	/* Create a block of IFILE structures. */
34051866Sbostic 	if (!(ipagep = malloc(lfsp->lfs_bsize)))
34151149Sbostic 		fatal("%s", strerror(errno));
34251866Sbostic 	ifile = (IFILE *)ipagep;
34351864Sbostic 
34451866Sbostic 	/*
34551866Sbostic 	 * Initialize IFILE.  It is the next block following the
34651866Sbostic 	 * block of inodes (whose address has been calculated in
34751866Sbostic 	 * lfsp->lfs_idaddr;
34851866Sbostic 	 */
34951866Sbostic 	sb_addr = lfsp->lfs_idaddr + lfsp->lfs_bsize / lp->d_secsize;
35051866Sbostic 	sb_addr = make_dinode(LFS_IFILE_INUM, dip,
35151866Sbostic 	    lfsp->lfs_cleansz + lfsp->lfs_segtabsz+1, sb_addr, lfsp);
35251864Sbostic 	dip->di_mode = IFREG|IREAD|IWRITE;
35351864Sbostic 	ip = &ifile[LFS_IFILE_INUM];
35451864Sbostic 	ip->if_version = 1;
35551864Sbostic 	ip->if_daddr = lfsp->lfs_idaddr;
35651864Sbostic 
35751864Sbostic 	/* Initialize the ROOT Directory */
35851864Sbostic 	sb_addr = make_dinode(ROOTINO, ++dip, 1, sb_addr, lfsp);
35951864Sbostic 	dip->di_mode = IFDIR|IREAD|IWRITE|IEXEC;
36051864Sbostic 	dip->di_size = DIRBLKSIZ;
36151864Sbostic 	dip->di_nlink = 3;
36251864Sbostic 	ip = &ifile[ROOTINO];
36351864Sbostic 	ip->if_version = 1;
36451864Sbostic 	ip->if_daddr = lfsp->lfs_idaddr;
36551864Sbostic 
36651864Sbostic 	/* Initialize the lost+found Directory */
36751864Sbostic 	sb_addr = make_dinode(LOSTFOUNDINO, ++dip, 1, sb_addr, lfsp);
36851864Sbostic 	dip->di_mode = IFDIR|IREAD|IWRITE|IEXEC;
36951864Sbostic 	dip->di_size = DIRBLKSIZ;
37051864Sbostic 	dip->di_nlink = 2;
37151864Sbostic 	ip = &ifile[LOSTFOUNDINO];
37251864Sbostic 	ip->if_version = 1;
37351864Sbostic 	ip->if_daddr = lfsp->lfs_idaddr;
37451864Sbostic 
37551864Sbostic 	/* Make all the other dinodes invalid */
37651864Sbostic 	for (i = INOPB(lfsp)-3, dip++; i; i--, dip++)
37751864Sbostic 		dip->di_inum = LFS_UNUSED_INUM;
37851864Sbostic 
37951864Sbostic 
38051864Sbostic 	/* Link remaining IFILE entries in free list */
38151864Sbostic 	for (ip = &ifile[LFS_FIRST_INUM], i = LFS_FIRST_INUM;
38251864Sbostic 	    i < lfsp->lfs_ifpb; ++ip) {
38351149Sbostic 		ip->if_version = 1;
38451149Sbostic 		ip->if_daddr = LFS_UNUSED_DADDR;
38551149Sbostic 		ip->if_nextfree = ++i;
38651149Sbostic 	}
38751149Sbostic 	ifile[lfsp->lfs_ifpb - 1].if_nextfree = LFS_UNUSED_INUM;
38851149Sbostic 
38951866Sbostic 	/* Now, write the segment */
39051149Sbostic 
39151866Sbostic 	/* Compute a checksum across all the data you're writing */
39251866Sbostic 	dp = datasump = malloc (blocks_used * sizeof(u_long));
39355654Sbostic 	*dp++ = ((u_long *)dpagep)[0];		/* inode block */
39451866Sbostic 	for (i = 0; i < lfsp->lfs_cleansz; i++)
39551866Sbostic 		*dp++ = ((u_long *)cleaninfo)[(i << lfsp->lfs_bshift) /
39651866Sbostic 		    sizeof(u_long)];		/* Cleaner info */
39751866Sbostic 	for (i = 0; i < lfsp->lfs_segtabsz; i++)
39851866Sbostic 		*dp++ = ((u_long *)segtable)[(i << lfsp->lfs_bshift) /
39951866Sbostic 		    sizeof(u_long)];		/* Segusage table */
40051866Sbostic 	*dp++ = ((u_long *)ifile)[0];		/* Ifile */
40151866Sbostic 
40251866Sbostic 	/* Still need the root and l+f bytes; get them later */
40351866Sbostic 
40451866Sbostic 	/* Write out the inode block */
40551866Sbostic 	off = LFS_LABELPAD + LFS_SBPAD + LFS_SUMMARY_SIZE;
40651866Sbostic 	put(fd, off, dpagep, lfsp->lfs_bsize);
40751866Sbostic 	free(dpagep);
40851866Sbostic 	off += lfsp->lfs_bsize;
40951866Sbostic 
41051866Sbostic 	/* Write out the ifile */
41151866Sbostic 
41251866Sbostic 	put(fd, off, cleaninfo, lfsp->lfs_cleansz << lfsp->lfs_bshift);
41351866Sbostic 	off += (lfsp->lfs_cleansz << lfsp->lfs_bshift);
41451866Sbostic 	(void)free(cleaninfo);
41551866Sbostic 
41651866Sbostic 	put(fd, off, segtable, lfsp->lfs_segtabsz << lfsp->lfs_bshift);
41751866Sbostic 	off += (lfsp->lfs_segtabsz << lfsp->lfs_bshift);
41851866Sbostic 	(void)free(segtable);
41951866Sbostic 
42051866Sbostic 	put(fd, off, ifile, lfsp->lfs_bsize);
42151866Sbostic 	off += lfsp->lfs_bsize;
42251866Sbostic 
42351866Sbostic 	/*
42451866Sbostic 	 * use ipagep for space for writing out other stuff.  It used to
42551866Sbostic 	 * contain the ifile, but we're done with it.
42651866Sbostic 	 */
42751866Sbostic 
42851864Sbostic 	/* Write out the root and lost and found directories */
42951866Sbostic 	bzero(ipagep, lfsp->lfs_bsize);
43051866Sbostic 	make_dir(ipagep, lfs_root_dir,
43151864Sbostic 	    sizeof(lfs_root_dir) / sizeof(struct direct));
43251866Sbostic 	*dp++ = ((u_long *)ipagep)[0];
43351866Sbostic 	put(fd, off, ipagep, lfsp->lfs_bsize);
43451866Sbostic 	off += lfsp->lfs_bsize;
43551149Sbostic 
43651866Sbostic 	bzero(ipagep, lfsp->lfs_bsize);
43751866Sbostic 	make_dir(ipagep, lfs_lf_dir,
43851864Sbostic 		sizeof(lfs_lf_dir) / sizeof(struct direct));
43951866Sbostic 	*dp++ = ((u_long *)ipagep)[0];
44051866Sbostic 	put(fd, off, ipagep, lfsp->lfs_bsize);
44151149Sbostic 
44251866Sbostic 	/* Write Supberblock */
44351866Sbostic 	lfsp->lfs_offset = (off + lfsp->lfs_bsize) / lp->d_secsize;
44451866Sbostic 	put(fd, LFS_LABELPAD, lfsp, sizeof(struct lfs));
44551149Sbostic 
44651866Sbostic 	/*
44751866Sbostic 	 * Finally, calculate all the fields for the summary structure
44851866Sbostic 	 * and write it.
44951866Sbostic 	 */
45051866Sbostic 
45151864Sbostic 	summary.ss_next = lfsp->lfs_nextseg;
45251149Sbostic 	summary.ss_create = lfsp->lfs_tstamp;
45351866Sbostic 	summary.ss_nfinfo = 3;
45451866Sbostic 	summary.ss_ninos = 3;
45551866Sbostic 	summary.ss_datasum = cksum(datasump, sizeof(u_long) * blocks_used);
45651149Sbostic 
45751864Sbostic 	/*
45851864Sbostic 	 * Make sure that we don't overflow a summary block. We have to
45951866Sbostic 	 * record: FINFO structures for ifile, root, and l+f.  The number
46051866Sbostic 	 * of blocks recorded for the ifile is determined by the size of
46151866Sbostic 	 * the cleaner info and the segments usage table.  There is room
46251866Sbostic 	 * for one block included in sizeof(FINFO) so we don't need to add
46351866Sbostic 	 * any extra space for the ROOT and L+F, and one block of the ifile
46451866Sbostic 	 * is already counted.  Finally, we leave room for 1 inode block
46551866Sbostic 	 * address.
46651864Sbostic 	 */
46753248Sbostic 	sum_size = 3*sizeof(FINFO) + sizeof(SEGSUM) + sizeof(daddr_t) +
46851866Sbostic 	    (lfsp->lfs_cleansz + lfsp->lfs_segtabsz) * sizeof(u_long);
46951149Sbostic #define	SUMERR \
47051149Sbostic "Multiple summary blocks in segment 1 not yet implemented\nsummary is %d bytes."
47151149Sbostic 	if (sum_size > LFS_SUMMARY_SIZE)
47251149Sbostic 		fatal(SUMERR, sum_size);
47351149Sbostic 
47451866Sbostic 		block_array_size = lfsp->lfs_cleansz + lfsp->lfs_segtabsz + 1;
47551149Sbostic 
47651149Sbostic 	if (!(block_array = malloc(block_array_size *sizeof(int))))
47751149Sbostic 		fatal("%s: %s", special, strerror(errno));
47851149Sbostic 
47951149Sbostic 	/* fill in the array */
48051866Sbostic 	for (i = 0; i < block_array_size; i++)
48151149Sbostic 		block_array[i] = i;
48251149Sbostic 
48351149Sbostic 	/* copy into segment */
48451866Sbostic 	sump = ipagep;
48551149Sbostic 	bcopy(&summary, sump, sizeof(SEGSUM));
48651149Sbostic 	sump += sizeof(SEGSUM);
48751149Sbostic 
48851149Sbostic 	/* Now, add the ifile */
48951866Sbostic 	file_info.fi_nblocks = block_array_size;
49051149Sbostic 	file_info.fi_version = 1;
49151149Sbostic 	file_info.fi_ino = LFS_IFILE_INUM;
49251149Sbostic 
49351149Sbostic 	bcopy(&file_info, sump, sizeof(FINFO) - sizeof(u_long));
49451149Sbostic 	sump += sizeof(FINFO) - sizeof(u_long);
49551149Sbostic 	bcopy(block_array, sump, sizeof(u_long) * file_info.fi_nblocks);
49651864Sbostic 	sump += sizeof(u_long) * file_info.fi_nblocks;
49751149Sbostic 
49851864Sbostic 	/* Now, add the root directory */
49951864Sbostic 	file_info.fi_nblocks = 1;
50051864Sbostic 	file_info.fi_version = 1;
50151864Sbostic 	file_info.fi_ino = ROOTINO;
50251864Sbostic 	file_info.fi_blocks[0] = 0;
50351864Sbostic 	bcopy(&file_info, sump, sizeof(FINFO));
50451864Sbostic 	sump += sizeof(FINFO);
50551864Sbostic 
50651864Sbostic 	/* Now, add the lost and found */
50751864Sbostic 	file_info.fi_ino = LOSTFOUNDINO;
50851864Sbostic 	bcopy(&file_info, sump, sizeof(FINFO));
50951864Sbostic 
51051866Sbostic 	((daddr_t *)ipagep)[LFS_SUMMARY_SIZE / sizeof(daddr_t) - 1] =
51151866Sbostic 	    lfsp->lfs_idaddr;
51251866Sbostic 	((SEGSUM *)ipagep)->ss_sumsum = cksum(ipagep+sizeof(summary.ss_sumsum),
51351866Sbostic 	    LFS_SUMMARY_SIZE - sizeof(summary.ss_sumsum));
51451866Sbostic 	put(fd, LFS_LABELPAD + LFS_SBPAD, ipagep, LFS_SUMMARY_SIZE);
51551864Sbostic 
51651866Sbostic 	sp = (SEGSUM *)ipagep;
51751866Sbostic 	sp->ss_create = 0;
51851866Sbostic 	sp->ss_nfinfo = 0;
51951866Sbostic 	sp->ss_ninos = 0;
52051866Sbostic 	sp->ss_datasum = 0;
52151149Sbostic 
52255480Sbostic 	/* Now write the summary block for the next partial so it's invalid */
52355480Sbostic 	lfsp->lfs_tstamp = 0;
52455480Sbostic 	off += lfsp->lfs_bsize;
52555480Sbostic 	sp->ss_sumsum =
52655480Sbostic 	    cksum(&sp->ss_datasum, LFS_SUMMARY_SIZE - sizeof(sp->ss_sumsum));
52755480Sbostic 	put(fd, off, sp, LFS_SUMMARY_SIZE);
52855480Sbostic 
52951149Sbostic 	/* Now, write rest of segments containing superblocks */
53051864Sbostic 	lfsp->lfs_cksum =
53151866Sbostic 	    cksum(lfsp, sizeof(struct lfs) - sizeof(lfsp->lfs_cksum));
53251864Sbostic 	for (seg_addr = last_addr = lfsp->lfs_sboffs[0], j = 1, i = 1;
53351864Sbostic 	    i < lfsp->lfs_nseg; i++) {
53451149Sbostic 
53551864Sbostic 		seg_addr += lfsp->lfs_ssize << lfsp->lfs_fsbtodb;
53651866Sbostic 		sp->ss_next = last_addr;
53751866Sbostic 		last_addr = seg_addr;
53851866Sbostic 		seg_seek = seg_addr * lp->d_secsize;
53951866Sbostic 
54051864Sbostic 		if (seg_addr == lfsp->lfs_sboffs[j]) {
54151864Sbostic 			if (j < (LFS_MAXNUMSB - 2))
54251864Sbostic 				j++;
54351866Sbostic 			put(fd, seg_seek, lfsp, sizeof(struct lfs));
54451866Sbostic 			seg_seek += LFS_SBPAD;
54551866Sbostic 		}
54651149Sbostic 
54751149Sbostic 		/* Summary */
54851866Sbostic 		sp->ss_sumsum = cksum(&sp->ss_datasum,
54951866Sbostic 		    LFS_SUMMARY_SIZE - sizeof(sp->ss_sumsum));
55051866Sbostic 		put(fd, seg_seek, sp, LFS_SUMMARY_SIZE);
55151149Sbostic 	}
55251866Sbostic 	free(ipagep);
55351864Sbostic 	close(fd);
55451149Sbostic 	return (0);
55551149Sbostic }
55651149Sbostic 
55751149Sbostic static void
55851149Sbostic put(fd, off, p, len)
55951149Sbostic 	int fd;
56051149Sbostic 	off_t off;
56151149Sbostic 	void *p;
56251149Sbostic 	size_t len;
56351149Sbostic {
56451149Sbostic 	int wbytes;
56551149Sbostic 
56651149Sbostic 	if (lseek(fd, off, SEEK_SET) < 0)
56751149Sbostic 		fatal("%s: %s", special, strerror(errno));
56851149Sbostic 	if ((wbytes = write(fd, p, len)) < 0)
56951149Sbostic 		fatal("%s: %s", special, strerror(errno));
57051149Sbostic 	if (wbytes != len)
57151149Sbostic 		fatal("%s: short write (%d, not %d)", special, wbytes, len);
57251149Sbostic }
57351864Sbostic 
57451864Sbostic /*
57551864Sbostic  * Create the root directory for this file system and the lost+found
57651864Sbostic  * directory.
57751864Sbostic  */
57851864Sbostic 
57951864Sbostic 	u_long	d_ino;			/* inode number of entry */
58051864Sbostic 	u_short	d_reclen;		/* length of this record */
58151864Sbostic 	u_short	d_namlen;		/* length of string in d_name */
58251864Sbostic 	char	d_name[MAXNAMLEN + 1];	/* name with length <= MAXNAMLEN */
58355389Sbostic void
58451864Sbostic lfsinit()
58555389Sbostic {}
58651864Sbostic 
58751864Sbostic static daddr_t
58851864Sbostic make_dinode(ino, dip, nblocks, saddr, lfsp)
58951864Sbostic 	ino_t ino;				/* inode we're creating */
59051864Sbostic 	struct dinode *dip;			/* disk inode */
59151864Sbostic 	int nblocks;				/* number of blocks in file */
59251864Sbostic 	daddr_t saddr;				/* starting block address */
59351866Sbostic 	struct lfs *lfsp;			/* superblock */
59451864Sbostic {
59551864Sbostic 	int db_per_fb, i;
59651864Sbostic 
59751864Sbostic 	dip->di_nlink = 1;
59855440Sbostic 	dip->di_blocks = nblocks << lfsp->lfs_fsbtodb;
59951864Sbostic 
60055480Sbostic 	dip->di_size = (nblocks << lfsp->lfs_bshift);
60154715Sbostic 	dip->di_atime.ts_sec = dip->di_mtime.ts_sec =
60254715Sbostic 	    dip->di_ctime.ts_sec = lfsp->lfs_tstamp;
60354715Sbostic 	dip->di_atime.ts_nsec = dip->di_mtime.ts_nsec =
60454715Sbostic 	    dip->di_ctime.ts_nsec = 0;
60551864Sbostic 	dip->di_inum = ino;
60651864Sbostic 
60751864Sbostic #define	SEGERR \
60851864Sbostic "File requires more than the number of direct blocks; increase block or segment size."
60951864Sbostic 	if (NDADDR < nblocks)
61051864Sbostic 		fatal("%s", SEGERR);
61151864Sbostic 
61251864Sbostic 	/* Assign the block addresses for the ifile */
61351864Sbostic 	db_per_fb = 1 << lfsp->lfs_fsbtodb;
61455440Sbostic 	for (i = 0; i < nblocks; i++, saddr += db_per_fb)
61551864Sbostic 		dip->di_db[i] = saddr;
61651864Sbostic 
61751864Sbostic 	return (saddr);
61851864Sbostic }
61951864Sbostic 
62051864Sbostic 
62151864Sbostic /*
62251864Sbostic  * Construct a set of directory entries in "bufp".  We assume that all the
62351864Sbostic  * entries in protodir fir in the first DIRBLKSIZ.
62451864Sbostic  */
62551864Sbostic static void
62651864Sbostic make_dir(bufp, protodir, entries)
62751864Sbostic 	void *bufp;
62851864Sbostic 	register struct direct *protodir;
62951864Sbostic 	int entries;
63051864Sbostic {
63151864Sbostic 	char *cp;
63251864Sbostic 	int i, spcleft;
63351864Sbostic 
63451864Sbostic 	spcleft = DIRBLKSIZ;
63551864Sbostic 	for (cp = bufp, i = 0; i < entries - 1; i++) {
63654715Sbostic 		protodir[i].d_reclen = DIRSIZ(NEWDIRFMT, &protodir[i]);
63751864Sbostic 		bcopy(&protodir[i], cp, protodir[i].d_reclen);
63851864Sbostic 		cp += protodir[i].d_reclen;
63951864Sbostic 		if ((spcleft -= protodir[i].d_reclen) < 0)
64051864Sbostic 			fatal("%s: %s", special, "directory too big");
64151864Sbostic 	}
64251864Sbostic 	protodir[i].d_reclen = spcleft;
64354715Sbostic 	bcopy(&protodir[i], cp, DIRSIZ(NEWDIRFMT, &protodir[i]));
64451864Sbostic }
645