Home | History | Annotate | Line # | Download | only in fsck_lfs
pass0.c revision 1.37
      1  1.37  dholland /* $NetBSD: pass0.c,v 1.37 2015/07/28 05:09:34 dholland Exp $	 */
      2   1.3    kleink 
      3  1.14  perseant /*-
      4  1.14  perseant  * Copyright (c) 1999, 2000, 2001, 2002, 2003 The NetBSD Foundation, Inc.
      5  1.14  perseant  * All rights reserved.
      6  1.14  perseant  *
      7  1.14  perseant  * This code is derived from software contributed to The NetBSD Foundation
      8  1.14  perseant  * by Konrad E. Schroder <perseant (at) hhhh.org>.
      9  1.14  perseant  *
     10  1.14  perseant  * Redistribution and use in source and binary forms, with or without
     11  1.14  perseant  * modification, are permitted provided that the following conditions
     12  1.14  perseant  * are met:
     13  1.14  perseant  * 1. Redistributions of source code must retain the above copyright
     14  1.14  perseant  *    notice, this list of conditions and the following disclaimer.
     15  1.14  perseant  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.14  perseant  *    notice, this list of conditions and the following disclaimer in the
     17  1.14  perseant  *    documentation and/or other materials provided with the distribution.
     18  1.14  perseant  *
     19  1.14  perseant  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  1.14  perseant  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  1.14  perseant  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  1.14  perseant  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  1.14  perseant  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  1.14  perseant  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  1.14  perseant  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  1.14  perseant  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  1.14  perseant  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  1.14  perseant  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  1.14  perseant  * POSSIBILITY OF SUCH DAMAGE.
     30  1.14  perseant  */
     31  1.14  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.16       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.14  perseant #include <sys/types.h>
     61   1.1  perseant #include <sys/param.h>
     62   1.1  perseant #include <sys/time.h>
     63  1.14  perseant #include <sys/buf.h>
     64  1.14  perseant #include <sys/mount.h>
     65  1.14  perseant 
     66  1.34  dholland #define vnode uvnode
     67   1.1  perseant #include <ufs/lfs/lfs.h>
     68  1.37  dholland #include <ufs/lfs/lfs_accessors.h>
     69  1.35  dholland #include <ufs/lfs/lfs_inode.h>
     70  1.14  perseant #undef vnode
     71   1.1  perseant 
     72  1.28  perseant #include <assert.h>
     73  1.26  perseant #include <err.h>
     74   1.1  perseant #include <stdio.h>
     75   1.1  perseant #include <stdlib.h>
     76   1.1  perseant #include <string.h>
     77  1.29  christos #include <util.h>
     78   1.1  perseant 
     79  1.14  perseant #include "bufcache.h"
     80  1.14  perseant #include "vnode.h"
     81  1.24  christos #include "lfs_user.h"
     82  1.14  perseant 
     83   1.1  perseant #include "fsck.h"
     84   1.1  perseant #include "extern.h"
     85   1.1  perseant #include "fsutil.h"
     86   1.1  perseant 
     87  1.14  perseant extern int fake_cleanseg;
     88   1.1  perseant 
     89   1.1  perseant /*
     90   1.1  perseant  * Pass 0.  Check the LFS partial segments for valid checksums, correcting
     91   1.1  perseant  * if necessary.  Also check for valid offsets for inode and finfo blocks.
     92   1.1  perseant  */
     93   1.5  perseant /*
     94   1.5  perseant  * XXX more could be done here---consistency between inode-held blocks and
     95   1.5  perseant  * finfo blocks, for one thing.
     96   1.5  perseant  */
     97   1.1  perseant 
     98  1.14  perseant #define dbshift (fs->lfs_bshift - fs->lfs_blktodb)
     99   1.1  perseant 
    100   1.6  perseant void
    101  1.17   xtraeme pass0(void)
    102   1.1  perseant {
    103  1.14  perseant 	daddr_t daddr;
    104  1.15  perseant 	CLEANERINFO *cip;
    105  1.14  perseant 	IFILE *ifp;
    106  1.27  perseant 	struct ubuf *bp, *cbp;
    107  1.28  perseant 	ino_t ino, plastino, nextino, lowfreeino, freehd;
    108  1.28  perseant 	char *visited;
    109  1.15  perseant 	int writeit = 0;
    110   1.5  perseant 
    111   1.5  perseant 	/*
    112  1.28  perseant 	 * Check the inode free list for inuse inodes, and cycles.
    113   1.6  perseant 	 * Make sure that all free inodes are in fact on the list.
    114  1.28  perseant 	 */
    115  1.29  christos 	visited = ecalloc(maxino, sizeof(*visited));
    116  1.10     lukem 	plastino = 0;
    117  1.19  perseant 	lowfreeino = maxino;
    118  1.27  perseant 	LFS_CLEANERINFO(cip, fs, cbp);
    119  1.28  perseant 	freehd = ino = cip->free_head;
    120  1.30        ad 	brelse(cbp, 0);
    121  1.27  perseant 
    122   1.5  perseant 	while (ino) {
    123  1.19  perseant 		if (lowfreeino > ino)
    124  1.19  perseant 			lowfreeino = ino;
    125   1.7  perseant 		if (ino >= maxino) {
    126  1.28  perseant 			pwarn("OUT OF RANGE INO %llu ON FREE LIST\n",
    127  1.27  perseant 			    (unsigned long long)ino);
    128   1.7  perseant 			break;
    129   1.7  perseant 		}
    130   1.6  perseant 		if (visited[ino]) {
    131  1.27  perseant 			pwarn("INO %llu ALREADY FOUND ON FREE LIST\n",
    132  1.22  christos 			    (unsigned long long)ino);
    133   1.6  perseant 			if (preen || reply("FIX") == 1) {
    134  1.10     lukem 				/* plastino can't be zero */
    135  1.14  perseant 				LFS_IENTRY(ifp, fs, plastino, bp);
    136   1.6  perseant 				ifp->if_nextfree = 0;
    137  1.14  perseant 				VOP_BWRITE(bp);
    138   1.6  perseant 			}
    139   1.6  perseant 			break;
    140   1.6  perseant 		}
    141  1.28  perseant 		visited[ino] = 1;
    142  1.14  perseant 		LFS_IENTRY(ifp, fs, ino, bp);
    143   1.5  perseant 		nextino = ifp->if_nextfree;
    144   1.5  perseant 		daddr = ifp->if_daddr;
    145  1.30        ad 		brelse(bp, 0);
    146   1.5  perseant 		if (daddr) {
    147  1.27  perseant 			pwarn("INO %llu WITH DADDR 0x%llx ON FREE LIST\n",
    148  1.22  christos 			    (unsigned long long)ino, (long long) daddr);
    149   1.5  perseant 			if (preen || reply("FIX") == 1) {
    150  1.10     lukem 				if (plastino == 0) {
    151  1.28  perseant 					freehd = nextino;
    152   1.5  perseant 					sbdirty();
    153   1.5  perseant 				} else {
    154  1.14  perseant 					LFS_IENTRY(ifp, fs, plastino, bp);
    155   1.5  perseant 					ifp->if_nextfree = nextino;
    156  1.14  perseant 					VOP_BWRITE(bp);
    157   1.5  perseant 				}
    158   1.5  perseant 				ino = nextino;
    159   1.5  perseant 				continue;
    160   1.5  perseant 			}
    161   1.5  perseant 		}
    162  1.10     lukem 		plastino = ino;
    163   1.5  perseant 		ino = nextino;
    164   1.6  perseant 	}
    165  1.15  perseant 
    166  1.15  perseant 
    167   1.6  perseant 	/*
    168   1.6  perseant 	 * Make sure all free inodes were found on the list
    169   1.6  perseant 	 */
    170  1.33  dholland 	for (ino = maxino - 1; ino > ULFS_ROOTINO; --ino) {
    171   1.6  perseant 		if (visited[ino])
    172   1.6  perseant 			continue;
    173   1.6  perseant 
    174  1.14  perseant 		LFS_IENTRY(ifp, fs, ino, bp);
    175   1.6  perseant 		if (ifp->if_daddr) {
    176  1.30        ad 			brelse(bp, 0);
    177   1.6  perseant 			continue;
    178   1.6  perseant 		}
    179  1.27  perseant 		pwarn("INO %llu FREE BUT NOT ON FREE LIST\n",
    180  1.22  christos 		    (unsigned long long)ino);
    181   1.6  perseant 		if (preen || reply("FIX") == 1) {
    182  1.28  perseant 			assert(ino != freehd);
    183  1.28  perseant 			ifp->if_nextfree = freehd;
    184  1.27  perseant 			VOP_BWRITE(bp);
    185  1.27  perseant 
    186  1.28  perseant 			freehd = ino;
    187   1.6  perseant 			sbdirty();
    188  1.27  perseant 
    189  1.27  perseant 			/* If freelist was empty, this is the tail */
    190  1.27  perseant 			if (plastino == 0)
    191  1.27  perseant 				plastino = ino;
    192  1.14  perseant 		} else
    193  1.30        ad 			brelse(bp, 0);
    194   1.5  perseant 	}
    195  1.15  perseant 
    196  1.27  perseant 	LFS_CLEANERINFO(cip, fs, cbp);
    197  1.28  perseant 	if (cip->free_head != freehd) {
    198  1.28  perseant 		/* They've already given us permission for this change */
    199  1.28  perseant 		cip->free_head = freehd;
    200  1.28  perseant 		writeit = 1;
    201  1.28  perseant 	}
    202  1.36  dholland 	if (freehd != lfs_sb_getfreehd(fs)) {
    203  1.36  dholland 		pwarn("FREE LIST HEAD IN SUPERBLOCK SHOULD BE %u (WAS %ju)\n",
    204  1.36  dholland 			lfs_sb_getfreehd(fs), (uintmax_t)freehd);
    205  1.15  perseant 		if (preen || reply("FIX")) {
    206  1.36  dholland 			lfs_sb_setfreehd(fs, freehd);
    207  1.27  perseant 			sbdirty();
    208  1.15  perseant 		}
    209  1.15  perseant 	}
    210  1.15  perseant 	if (cip->free_tail != plastino) {
    211  1.27  perseant 		pwarn("FREE LIST TAIL SHOULD BE %llu (WAS %llu)\n",
    212  1.27  perseant 		    (unsigned long long)plastino,
    213  1.27  perseant 		    (unsigned long long)cip->free_tail);
    214  1.15  perseant 		if (preen || reply("FIX")) {
    215  1.15  perseant 			cip->free_tail = plastino;
    216  1.15  perseant 			writeit = 1;
    217  1.15  perseant 		}
    218  1.15  perseant 	}
    219  1.28  perseant 
    220  1.18  perseant 	if (writeit)
    221  1.27  perseant 		LFS_SYNC_CLEANERINFO(cip, fs, cbp, writeit);
    222  1.18  perseant 	else
    223  1.30        ad 		brelse(cbp, 0);
    224  1.19  perseant 
    225  1.36  dholland 	if (lfs_sb_getfreehd(fs) == 0) {
    226  1.20  perseant 		pwarn("%sree list head is 0x0\n", preen ? "f" : "F");
    227  1.28  perseant 		if (preen || reply("FIX"))
    228  1.21  perseant 			extend_ifile(fs);
    229  1.20  perseant 	}
    230   1.1  perseant }
    231