Home | History | Annotate | Line # | Download | only in fsck_lfs
setup.c revision 1.37
      1  1.37   mlelstv /* $NetBSD: setup.c,v 1.37 2010/02/16 23:20:30 mlelstv Exp $ */
      2   1.1  perseant 
      3  1.13  perseant /*-
      4  1.13  perseant  * Copyright (c) 2003 The NetBSD Foundation, Inc.
      5  1.13  perseant  * All rights reserved.
      6  1.13  perseant  *
      7  1.13  perseant  * This code is derived from software contributed to The NetBSD Foundation
      8  1.13  perseant  * by Konrad E. Schroder <perseant (at) hhhh.org>.
      9  1.13  perseant  *
     10  1.13  perseant  * Redistribution and use in source and binary forms, with or without
     11  1.13  perseant  * modification, are permitted provided that the following conditions
     12  1.13  perseant  * are met:
     13  1.13  perseant  * 1. Redistributions of source code must retain the above copyright
     14  1.13  perseant  *    notice, this list of conditions and the following disclaimer.
     15  1.13  perseant  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.13  perseant  *    notice, this list of conditions and the following disclaimer in the
     17  1.13  perseant  *    documentation and/or other materials provided with the distribution.
     18  1.13  perseant  *
     19  1.13  perseant  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  1.13  perseant  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  1.13  perseant  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  1.13  perseant  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  1.13  perseant  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  1.13  perseant  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  1.13  perseant  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  1.13  perseant  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  1.13  perseant  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  1.13  perseant  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  1.13  perseant  * POSSIBILITY OF SUCH DAMAGE.
     30  1.13  perseant  */
     31   1.1  perseant /*
     32   1.1  perseant  * Copyright (c) 1980, 1986, 1993
     33   1.1  perseant  *	The Regents of the University of California.  All rights reserved.
     34   1.1  perseant  *
     35   1.1  perseant  * Redistribution and use in source and binary forms, with or without
     36   1.1  perseant  * modification, are permitted provided that the following conditions
     37   1.1  perseant  * are met:
     38   1.1  perseant  * 1. Redistributions of source code must retain the above copyright
     39   1.1  perseant  *    notice, this list of conditions and the following disclaimer.
     40   1.1  perseant  * 2. Redistributions in binary form must reproduce the above copyright
     41   1.1  perseant  *    notice, this list of conditions and the following disclaimer in the
     42   1.1  perseant  *    documentation and/or other materials provided with the distribution.
     43  1.17       agc  * 3. Neither the name of the University nor the names of its contributors
     44   1.1  perseant  *    may be used to endorse or promote products derived from this software
     45   1.1  perseant  *    without specific prior written permission.
     46   1.1  perseant  *
     47   1.1  perseant  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     48   1.1  perseant  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     49   1.1  perseant  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     50   1.1  perseant  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     51   1.1  perseant  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     52   1.1  perseant  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     53   1.1  perseant  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     54   1.1  perseant  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     55   1.1  perseant  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     56   1.1  perseant  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     57   1.1  perseant  * SUCH DAMAGE.
     58   1.1  perseant  */
     59   1.1  perseant 
     60   1.1  perseant /* #define DKTYPENAMES */
     61   1.1  perseant #define FSTYPENAMES
     62  1.13  perseant #include <sys/types.h>
     63   1.1  perseant #include <sys/param.h>
     64   1.1  perseant #include <sys/time.h>
     65  1.13  perseant #include <sys/buf.h>
     66  1.13  perseant #include <sys/mount.h>
     67  1.13  perseant #include <sys/queue.h>
     68   1.1  perseant #include <sys/stat.h>
     69   1.1  perseant #include <sys/ioctl.h>
     70   1.1  perseant #include <sys/disklabel.h>
     71  1.37   mlelstv #include <sys/disk.h>
     72   1.1  perseant #include <sys/file.h>
     73   1.1  perseant 
     74  1.13  perseant #include <ufs/ufs/inode.h>
     75  1.13  perseant #include <ufs/ufs/ufsmount.h>
     76  1.13  perseant #define vnode uvnode
     77   1.1  perseant #include <ufs/lfs/lfs.h>
     78  1.13  perseant #undef vnode
     79   1.1  perseant 
     80   1.1  perseant #include <ctype.h>
     81   1.1  perseant #include <err.h>
     82   1.1  perseant #include <errno.h>
     83   1.1  perseant #include <stdio.h>
     84   1.1  perseant #include <stdlib.h>
     85  1.37   mlelstv #include <unistd.h>
     86   1.1  perseant #include <string.h>
     87  1.29  perseant #include <time.h>
     88  1.32  christos #include <util.h>
     89   1.1  perseant 
     90  1.13  perseant #include "bufcache.h"
     91  1.13  perseant #include "vnode.h"
     92  1.26  christos #include "lfs_user.h"
     93  1.13  perseant 
     94   1.1  perseant #include "fsck.h"
     95   1.1  perseant #include "extern.h"
     96   1.1  perseant #include "fsutil.h"
     97   1.1  perseant 
     98  1.29  perseant extern u_int32_t cksum(void *, size_t);
     99  1.18   minoura static uint64_t calcmaxfilesize(int);
    100   1.1  perseant 
    101  1.13  perseant ufs_daddr_t *din_table;
    102  1.13  perseant SEGUSE *seg_table;
    103   1.4  perseant 
    104   1.1  perseant #ifdef DKTYPENAMES
    105  1.13  perseant int useless(void);
    106   1.1  perseant 
    107   1.1  perseant int
    108   1.1  perseant useless(void)
    109   1.1  perseant {
    110  1.13  perseant 	char **foo = (char **) dktypenames;
    111  1.13  perseant 	char **bar = (char **) fscknames;
    112   1.1  perseant 
    113   1.5  perseant 	return foo - bar;
    114   1.1  perseant }
    115   1.1  perseant #endif
    116   1.1  perseant 
    117  1.18   minoura /*
    118  1.18   minoura  * calculate the maximum file size allowed with the specified block shift.
    119  1.18   minoura  */
    120  1.18   minoura static uint64_t
    121  1.18   minoura calcmaxfilesize(int bshift)
    122  1.18   minoura {
    123  1.18   minoura 	uint64_t nptr; /* number of block pointers per block */
    124  1.18   minoura 	uint64_t maxblock;
    125  1.18   minoura 
    126  1.18   minoura 	nptr = (1 << bshift) / sizeof(uint32_t);
    127  1.18   minoura 	maxblock = NDADDR + nptr + nptr * nptr + nptr * nptr * nptr;
    128  1.18   minoura 
    129  1.18   minoura 	return maxblock << bshift;
    130  1.18   minoura }
    131  1.20  perseant 
    132  1.20  perseant void
    133  1.20  perseant reset_maxino(ino_t len)
    134  1.20  perseant {
    135  1.29  perseant 	if (debug)
    136  1.29  perseant 		pwarn("maxino reset from %lld to %lld\n", (long long)maxino,
    137  1.29  perseant 			(long long)len);
    138  1.29  perseant 
    139  1.32  christos 	din_table = erealloc(din_table, len * sizeof(*din_table));
    140  1.32  christos 	statemap = erealloc(statemap, len * sizeof(char));
    141  1.32  christos 	typemap = erealloc(typemap, len * sizeof(char));
    142  1.32  christos 	lncntp = erealloc(lncntp, len * sizeof(int16_t));
    143  1.20  perseant 
    144  1.20  perseant 	memset(din_table + maxino, 0, (len - maxino) * sizeof(*din_table));
    145  1.29  perseant 	memset(statemap + maxino, USTATE, (len - maxino) * sizeof(char));
    146  1.20  perseant 	memset(typemap + maxino, 0, (len - maxino) * sizeof(char));
    147  1.20  perseant 	memset(lncntp + maxino, 0, (len - maxino) * sizeof(int16_t));
    148  1.20  perseant 
    149  1.24  perseant 	maxino = len;
    150  1.24  perseant 
    151  1.29  perseant 	/*
    152  1.29  perseant 	 * We can't roll forward after allocating new inodes in previous
    153  1.29  perseant 	 * phases, or thy would conflict (lost+found, for example, might
    154  1.29  perseant 	 * disappear to be replaced by a file found in roll-forward).
    155  1.29  perseant 	 */
    156  1.29  perseant 	no_roll_forward = 1;
    157  1.29  perseant 
    158  1.20  perseant 	return;
    159  1.20  perseant }
    160  1.18   minoura 
    161  1.29  perseant extern time_t write_time;
    162  1.29  perseant 
    163   1.1  perseant int
    164   1.5  perseant setup(const char *dev)
    165   1.1  perseant {
    166  1.13  perseant 	long bmapsize;
    167  1.13  perseant 	struct stat statb;
    168  1.13  perseant 	int doskipclean;
    169  1.13  perseant 	u_int64_t maxfilesize;
    170  1.13  perseant 	int open_flags;
    171  1.13  perseant 	struct uvnode *ivp;
    172  1.13  perseant 	struct ubuf *bp;
    173  1.29  perseant 	int i, isdirty;
    174  1.29  perseant 	long sn, curseg;
    175  1.13  perseant 	SEGUSE *sup;
    176   1.1  perseant 
    177   1.1  perseant 	havesb = 0;
    178   1.1  perseant 	doskipclean = skipclean;
    179   1.1  perseant 	if (stat(dev, &statb) < 0) {
    180  1.29  perseant 		pfatal("Can't stat %s: %s\n", dev, strerror(errno));
    181   1.1  perseant 		return (0);
    182   1.1  perseant 	}
    183  1.29  perseant 	if (!S_ISCHR(statb.st_mode) && skipclean) {
    184   1.1  perseant 		pfatal("%s is not a character device", dev);
    185   1.1  perseant 		if (reply("CONTINUE") == 0)
    186   1.1  perseant 			return (0);
    187   1.1  perseant 	}
    188  1.13  perseant 	if (nflag)
    189  1.13  perseant 		open_flags = O_RDONLY;
    190  1.13  perseant 	else
    191  1.13  perseant 		open_flags = O_RDWR;
    192  1.13  perseant 
    193  1.13  perseant 	if ((fsreadfd = open(dev, open_flags)) < 0) {
    194  1.29  perseant 		pfatal("Can't open %s: %s\n", dev, strerror(errno));
    195   1.1  perseant 		return (0);
    196   1.1  perseant 	}
    197  1.13  perseant 	if (nflag) {
    198   1.1  perseant 		if (preen)
    199   1.1  perseant 			pfatal("NO WRITE ACCESS");
    200  1.21  perseant 		printf("** %s (NO WRITE)\n", dev);
    201  1.21  perseant 		quiet = 0;
    202  1.21  perseant 	} else if (!preen && !quiet)
    203  1.21  perseant 		printf("** %s\n", dev);
    204  1.21  perseant 
    205   1.1  perseant 	fsmodified = 0;
    206   1.1  perseant 	lfdir = 0;
    207  1.13  perseant 
    208  1.29  perseant 	/* Initialize time in case we have to write */
    209  1.29  perseant 	time(&write_time);
    210  1.29  perseant 
    211  1.20  perseant 	bufinit(0); /* XXX we could make a better guess */
    212  1.19  perseant 	fs = lfs_init(fsreadfd, bflag, idaddr, 0, debug);
    213  1.13  perseant 	if (fs == NULL) {
    214  1.13  perseant 		if (preen)
    215  1.13  perseant 			printf("%s: ", cdevname());
    216  1.34     lukem 		errexit("BAD SUPER BLOCK OR IFILE INODE NOT FOUND");
    217  1.13  perseant 	}
    218   1.1  perseant 
    219  1.20  perseant         /* Resize buffer cache now that we have a superblock to guess from. */
    220  1.20  perseant         bufrehash((fs->lfs_segtabsz + maxino / fs->lfs_ifpb) << 4);
    221  1.20  perseant 
    222  1.13  perseant 	if (fs->lfs_pflags & LFS_PF_CLEAN) {
    223  1.13  perseant 		if (doskipclean) {
    224  1.21  perseant 			if (!quiet)
    225  1.21  perseant 				pwarn("%sile system is clean; not checking\n",
    226  1.21  perseant 				      preen ? "f" : "** F");
    227  1.13  perseant 			return (-1);
    228   1.1  perseant 		}
    229  1.13  perseant 		if (!preen)
    230  1.13  perseant 			pwarn("** File system is already clean\n");
    231  1.13  perseant 	}
    232   1.9  perseant 
    233  1.29  perseant 	if (idaddr) {
    234  1.29  perseant 		daddr_t tdaddr;
    235  1.29  perseant 		SEGSUM *sp;
    236  1.29  perseant 		FINFO *fp;
    237  1.29  perseant 		int bc;
    238  1.29  perseant 
    239  1.29  perseant 		if (debug)
    240  1.29  perseant 			pwarn("adjusting offset, serial for -i 0x%lx\n",
    241  1.29  perseant 				(unsigned long)idaddr);
    242  1.29  perseant 		tdaddr = sntod(fs, dtosn(fs, idaddr));
    243  1.29  perseant 		if (sntod(fs, dtosn(fs, tdaddr)) == tdaddr) {
    244  1.30  perseant 			if (tdaddr == fs->lfs_start)
    245  1.30  perseant 				tdaddr += btofsb(fs, LFS_LABELPAD);
    246  1.29  perseant 			for (i = 0; i < LFS_MAXNUMSB; i++) {
    247  1.29  perseant 				if (fs->lfs_sboffs[i] == tdaddr)
    248  1.29  perseant 					tdaddr += btofsb(fs, LFS_SBPAD);
    249  1.29  perseant 				if (fs->lfs_sboffs[i] > tdaddr)
    250  1.29  perseant 					break;
    251  1.29  perseant 			}
    252  1.29  perseant 		}
    253  1.29  perseant 		fs->lfs_offset = tdaddr;
    254  1.29  perseant 		if (debug)
    255  1.29  perseant 			pwarn("begin with offset/serial 0x%x/%d\n",
    256  1.29  perseant 				(int)fs->lfs_offset, (int)fs->lfs_serial);
    257  1.29  perseant 		while (tdaddr < idaddr) {
    258  1.29  perseant 			bread(fs->lfs_devvp, fsbtodb(fs, tdaddr),
    259  1.29  perseant 			      fs->lfs_sumsize,
    260  1.36   hannken 			      NULL, 0, &bp);
    261  1.29  perseant 			sp = (SEGSUM *)bp->b_data;
    262  1.29  perseant 			if (sp->ss_sumsum != cksum(&sp->ss_datasum,
    263  1.29  perseant 						   fs->lfs_sumsize -
    264  1.29  perseant 						   sizeof(sp->ss_sumsum))) {
    265  1.33        ad 				brelse(bp, 0);
    266  1.30  perseant 				if (debug)
    267  1.30  perseant 					printf("bad cksum at %x\n",
    268  1.30  perseant 					       (unsigned)tdaddr);
    269  1.29  perseant 				break;
    270  1.29  perseant 			}
    271  1.29  perseant 			fp = (FINFO *)(sp + 1);
    272  1.29  perseant 			bc = howmany(sp->ss_ninos, INOPB(fs)) <<
    273  1.29  perseant 				(fs->lfs_version > 1 ? fs->lfs_ffshift :
    274  1.29  perseant 						       fs->lfs_bshift);
    275  1.29  perseant 			for (i = 0; i < sp->ss_nfinfo; i++) {
    276  1.29  perseant 				bc += fp->fi_lastlength + ((fp->fi_nblocks - 1)
    277  1.29  perseant 					<< fs->lfs_bshift);
    278  1.29  perseant 				fp = (FINFO *)(fp->fi_blocks + fp->fi_nblocks);
    279  1.29  perseant 			}
    280  1.29  perseant 
    281  1.29  perseant 			tdaddr += btofsb(fs, bc) + 1;
    282  1.29  perseant 			fs->lfs_offset = tdaddr;
    283  1.29  perseant 			fs->lfs_serial = sp->ss_serial + 1;
    284  1.33        ad 			brelse(bp, 0);
    285  1.29  perseant 		}
    286  1.29  perseant 
    287  1.29  perseant 		/*
    288  1.29  perseant 		 * Set curseg, nextseg appropriately -- inlined from
    289  1.29  perseant 		 * lfs_newseg()
    290  1.29  perseant 		 */
    291  1.29  perseant 		curseg = dtosn(fs, fs->lfs_offset);
    292  1.29  perseant 		fs->lfs_curseg = sntod(fs, curseg);
    293  1.29  perseant 		for (sn = curseg + fs->lfs_interleave;;) {
    294  1.29  perseant 			sn = (sn + 1) % fs->lfs_nseg;
    295  1.29  perseant 			if (sn == curseg)
    296  1.29  perseant 				errx(1, "init: no clean segments");
    297  1.29  perseant 			LFS_SEGENTRY(sup, fs, sn, bp);
    298  1.29  perseant 			isdirty = sup->su_flags & SEGUSE_DIRTY;
    299  1.33        ad 			brelse(bp, 0);
    300  1.29  perseant 
    301  1.29  perseant 			if (!isdirty)
    302  1.29  perseant 				break;
    303  1.29  perseant 		}
    304  1.29  perseant 
    305  1.29  perseant 		/* Skip superblock if necessary */
    306  1.29  perseant 		for (i = 0; i < LFS_MAXNUMSB; i++)
    307  1.29  perseant 			if (fs->lfs_offset == fs->lfs_sboffs[i])
    308  1.29  perseant 				fs->lfs_offset += btofsb(fs, LFS_SBPAD);
    309  1.29  perseant 
    310  1.29  perseant 		++fs->lfs_nactive;
    311  1.29  perseant 		fs->lfs_nextseg = sntod(fs, sn);
    312  1.29  perseant 		if (debug) {
    313  1.29  perseant 			pwarn("offset = 0x%" PRIx32 ", serial = %" PRId64 "\n",
    314  1.29  perseant 				fs->lfs_offset, fs->lfs_serial);
    315  1.29  perseant 			pwarn("curseg = %" PRIx32 ", nextseg = %" PRIx32 "\n",
    316  1.29  perseant 				fs->lfs_curseg, fs->lfs_nextseg);
    317  1.29  perseant 		}
    318  1.29  perseant 
    319  1.29  perseant 		if (!nflag && !skipclean) {
    320  1.29  perseant 			fs->lfs_idaddr = idaddr;
    321  1.29  perseant 			fsmodified = 1;
    322  1.29  perseant 			sbdirty();
    323  1.29  perseant 		}
    324  1.29  perseant 	}
    325  1.29  perseant 
    326   1.5  perseant 	if (debug) {
    327  1.29  perseant 		pwarn("idaddr    = 0x%lx\n", idaddr ? (unsigned long)idaddr :
    328  1.15  perseant 			(unsigned long)fs->lfs_idaddr);
    329  1.29  perseant 		pwarn("dev_bsize = %lu\n", dev_bsize);
    330  1.29  perseant 		pwarn("lfs_bsize = %lu\n", (unsigned long) fs->lfs_bsize);
    331  1.29  perseant 		pwarn("lfs_fsize = %lu\n", (unsigned long) fs->lfs_fsize);
    332  1.29  perseant 		pwarn("lfs_frag  = %lu\n", (unsigned long) fs->lfs_frag);
    333  1.29  perseant 		pwarn("lfs_inopb = %lu\n", (unsigned long) fs->lfs_inopb);
    334  1.13  perseant 	}
    335  1.13  perseant 	if (fs->lfs_version == 1)
    336  1.13  perseant 		maxfsblock = fs->lfs_size * (fs->lfs_bsize / dev_bsize);
    337  1.13  perseant 	else
    338  1.13  perseant 		maxfsblock = fs->lfs_size;
    339  1.18   minoura 	maxfilesize = calcmaxfilesize(fs->lfs_bshift);
    340  1.31  christos 	if (/* fs->lfs_minfree < 0 || */ fs->lfs_minfree > 99) {
    341   1.1  perseant 		pfatal("IMPOSSIBLE MINFREE=%d IN SUPERBLOCK",
    342  1.13  perseant 		    fs->lfs_minfree);
    343   1.1  perseant 		if (reply("SET TO DEFAULT") == 1) {
    344  1.13  perseant 			fs->lfs_minfree = 10;
    345   1.1  perseant 			sbdirty();
    346   1.1  perseant 		}
    347   1.1  perseant 	}
    348  1.13  perseant 	if (fs->lfs_bmask != fs->lfs_bsize - 1) {
    349  1.29  perseant 		pwarn("INCORRECT BMASK=0x%x IN SUPERBLOCK (SHOULD BE 0x%x)",
    350  1.13  perseant 		    (unsigned int) fs->lfs_bmask,
    351  1.13  perseant 		    (unsigned int) fs->lfs_bsize - 1);
    352  1.13  perseant 		fs->lfs_bmask = fs->lfs_bsize - 1;
    353   1.1  perseant 		if (preen)
    354   1.1  perseant 			printf(" (FIXED)\n");
    355   1.1  perseant 		if (preen || reply("FIX") == 1) {
    356   1.1  perseant 			sbdirty();
    357   1.1  perseant 		}
    358   1.1  perseant 	}
    359  1.13  perseant 	if (fs->lfs_ffmask != fs->lfs_fsize - 1) {
    360  1.13  perseant 		pwarn("INCORRECT FFMASK=%" PRId64 " IN SUPERBLOCK",
    361  1.13  perseant 		    fs->lfs_ffmask);
    362  1.13  perseant 		fs->lfs_ffmask = fs->lfs_fsize - 1;
    363   1.1  perseant 		if (preen)
    364   1.1  perseant 			printf(" (FIXED)\n");
    365   1.1  perseant 		if (preen || reply("FIX") == 1) {
    366   1.1  perseant 			sbdirty();
    367   1.1  perseant 		}
    368   1.1  perseant 	}
    369  1.13  perseant 	if (fs->lfs_fbmask != (1 << fs->lfs_fbshift) - 1) {
    370  1.13  perseant 		pwarn("INCORRECT FFMASK=%" PRId64 " IN SUPERBLOCK",
    371  1.13  perseant 		    fs->lfs_ffmask);
    372  1.13  perseant 		fs->lfs_fbmask = (1 << fs->lfs_fbshift) - 1;
    373  1.13  perseant 		if (preen)
    374  1.13  perseant 			printf(" (FIXED)\n");
    375  1.13  perseant 		if (preen || reply("FIX") == 1) {
    376  1.13  perseant 			sbdirty();
    377  1.13  perseant 		}
    378  1.13  perseant 	}
    379  1.13  perseant 	if (fs->lfs_maxfilesize != maxfilesize) {
    380   1.8     lukem 		pwarn(
    381  1.29  perseant 		    "INCORRECT MAXFILESIZE=%llu IN SUPERBLOCK (SHOULD BE %llu WITH BSHIFT %d)",
    382  1.13  perseant 		    (unsigned long long) fs->lfs_maxfilesize,
    383  1.20  perseant 		    (unsigned long long) maxfilesize, (int)fs->lfs_bshift);
    384   1.5  perseant 		if (preen)
    385   1.5  perseant 			printf(" (FIXED)\n");
    386   1.5  perseant 		if (preen || reply("FIX") == 1) {
    387  1.20  perseant 			fs->lfs_maxfilesize = maxfilesize;
    388   1.5  perseant 			sbdirty();
    389   1.1  perseant 		}
    390   1.5  perseant 	}
    391  1.16      fvdl 	if (fs->lfs_maxsymlinklen != MAXSYMLINKLEN_UFS1) {
    392   1.5  perseant 		pwarn("INCORRECT MAXSYMLINKLEN=%d IN SUPERBLOCK",
    393  1.13  perseant 		    fs->lfs_maxsymlinklen);
    394  1.16      fvdl 		fs->lfs_maxsymlinklen = MAXSYMLINKLEN_UFS1;
    395   1.5  perseant 		if (preen)
    396   1.5  perseant 			printf(" (FIXED)\n");
    397   1.5  perseant 		if (preen || reply("FIX") == 1) {
    398   1.5  perseant 			sbdirty();
    399   1.1  perseant 		}
    400   1.5  perseant 	}
    401  1.13  perseant 
    402  1.13  perseant 	/*
    403  1.13  perseant 	 * Read in the Ifile; we'll be using it a lot.
    404  1.13  perseant 	 * XXX If the Ifile is corrupted we are in bad shape.  We need to
    405  1.13  perseant 	 * XXX run through the segment headers of the entire disk to
    406  1.13  perseant 	 * XXX reconstruct the inode table, then pretend all segments are
    407  1.13  perseant 	 * XXX dirty while we do the rest.
    408  1.13  perseant 	 */
    409  1.13  perseant 	ivp = fs->lfs_ivnode;
    410  1.16      fvdl 	maxino = ((VTOI(ivp)->i_ffs1_size - (fs->lfs_cleansz + fs->lfs_segtabsz)
    411  1.13  perseant 		* fs->lfs_bsize) / fs->lfs_bsize) * fs->lfs_ifpb;
    412  1.13  perseant 	if (debug)
    413  1.29  perseant 		pwarn("maxino    = %llu\n", (unsigned long long)maxino);
    414  1.16      fvdl 	for (i = 0; i < VTOI(ivp)->i_ffs1_size; i += fs->lfs_bsize) {
    415  1.36   hannken 		bread(ivp, i >> fs->lfs_bshift, fs->lfs_bsize, NOCRED, 0, &bp);
    416  1.13  perseant 		/* XXX check B_ERROR */
    417  1.33        ad 		brelse(bp, 0);
    418  1.13  perseant 	}
    419  1.13  perseant 
    420   1.1  perseant 	/*
    421   1.1  perseant 	 * allocate and initialize the necessary maps
    422   1.1  perseant 	 */
    423  1.32  christos 	din_table = ecalloc(maxino, sizeof(*din_table));
    424  1.32  christos 	seg_table = ecalloc(fs->lfs_nseg, sizeof(SEGUSE));
    425  1.13  perseant 	/* Get segment flags */
    426  1.13  perseant 	for (i = 0; i < fs->lfs_nseg; i++) {
    427  1.13  perseant 		LFS_SEGENTRY(sup, fs, i, bp);
    428  1.13  perseant 		seg_table[i].su_flags = sup->su_flags & ~SEGUSE_ACTIVE;
    429  1.14  perseant 		if (preen)
    430  1.14  perseant 			seg_table[i].su_nbytes = sup->su_nbytes;
    431  1.33        ad 		brelse(bp, 0);
    432  1.13  perseant 	}
    433  1.13  perseant 
    434  1.13  perseant 	/* Initialize Ifile entry */
    435  1.13  perseant 	din_table[fs->lfs_ifile] = fs->lfs_idaddr;
    436  1.16      fvdl 	seg_table[dtosn(fs, fs->lfs_idaddr)].su_nbytes += DINODE1_SIZE;
    437  1.13  perseant 
    438   1.1  perseant #ifndef VERBOSE_BLOCKMAP
    439   1.1  perseant 	bmapsize = roundup(howmany(maxfsblock, NBBY), sizeof(int16_t));
    440  1.32  christos 	blockmap = ecalloc(bmapsize, sizeof(char));
    441   1.1  perseant #else
    442   1.5  perseant 	bmapsize = maxfsblock * sizeof(ino_t);
    443  1.32  christos 	blockmap = ecalloc(maxfsblock, sizeof(ino_t));
    444   1.1  perseant #endif
    445  1.32  christos 	statemap = ecalloc(maxino, sizeof(char));
    446  1.32  christos 	typemap = ecalloc(maxino, sizeof(char));
    447  1.32  christos 	lncntp = ecalloc(maxino, sizeof(int16_t));
    448  1.14  perseant 
    449  1.14  perseant 	if (preen) {
    450  1.14  perseant 		n_files = fs->lfs_nfiles;
    451  1.14  perseant 		n_blks  = fs->lfs_dsize - fs->lfs_bfree;
    452  1.14  perseant 		numdirs = maxino;
    453  1.14  perseant 		inplast = 0;
    454  1.14  perseant 		listmax = numdirs + 10;
    455  1.32  christos 		inpsort = ecalloc(listmax, sizeof(struct inoinfo *));
    456  1.32  christos 		inphead = ecalloc(numdirs, sizeof(struct inoinfo *));
    457  1.14  perseant 	}
    458  1.14  perseant 
    459   1.1  perseant 	return (1);
    460   1.1  perseant 
    461   1.1  perseant 	ckfini(0);
    462   1.1  perseant 	return (0);
    463   1.1  perseant }
    464   1.1  perseant 
    465