Home | History | Annotate | Line # | Download | only in fsck_lfs
pass0.c revision 1.35
      1  1.35  dholland /* $NetBSD: pass0.c,v 1.35 2013/06/08 02:16:03 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.35  dholland #include <ufs/lfs/lfs_inode.h>
     69  1.14  perseant #undef vnode
     70   1.1  perseant 
     71  1.28  perseant #include <assert.h>
     72  1.26  perseant #include <err.h>
     73   1.1  perseant #include <stdio.h>
     74   1.1  perseant #include <stdlib.h>
     75   1.1  perseant #include <string.h>
     76  1.29  christos #include <util.h>
     77   1.1  perseant 
     78  1.14  perseant #include "bufcache.h"
     79  1.14  perseant #include "vnode.h"
     80  1.24  christos #include "lfs_user.h"
     81  1.14  perseant 
     82   1.1  perseant #include "fsck.h"
     83   1.1  perseant #include "extern.h"
     84   1.1  perseant #include "fsutil.h"
     85   1.1  perseant 
     86  1.14  perseant extern int fake_cleanseg;
     87   1.1  perseant 
     88   1.1  perseant /*
     89   1.1  perseant  * Pass 0.  Check the LFS partial segments for valid checksums, correcting
     90   1.1  perseant  * if necessary.  Also check for valid offsets for inode and finfo blocks.
     91   1.1  perseant  */
     92   1.5  perseant /*
     93   1.5  perseant  * XXX more could be done here---consistency between inode-held blocks and
     94   1.5  perseant  * finfo blocks, for one thing.
     95   1.5  perseant  */
     96   1.1  perseant 
     97  1.14  perseant #define dbshift (fs->lfs_bshift - fs->lfs_blktodb)
     98   1.1  perseant 
     99   1.6  perseant void
    100  1.17   xtraeme pass0(void)
    101   1.1  perseant {
    102  1.14  perseant 	daddr_t daddr;
    103  1.15  perseant 	CLEANERINFO *cip;
    104  1.14  perseant 	IFILE *ifp;
    105  1.27  perseant 	struct ubuf *bp, *cbp;
    106  1.28  perseant 	ino_t ino, plastino, nextino, lowfreeino, freehd;
    107  1.28  perseant 	char *visited;
    108  1.15  perseant 	int writeit = 0;
    109   1.5  perseant 
    110   1.5  perseant 	/*
    111  1.28  perseant 	 * Check the inode free list for inuse inodes, and cycles.
    112   1.6  perseant 	 * Make sure that all free inodes are in fact on the list.
    113  1.28  perseant 	 */
    114  1.29  christos 	visited = ecalloc(maxino, sizeof(*visited));
    115  1.10     lukem 	plastino = 0;
    116  1.19  perseant 	lowfreeino = maxino;
    117  1.27  perseant 	LFS_CLEANERINFO(cip, fs, cbp);
    118  1.28  perseant 	freehd = ino = cip->free_head;
    119  1.30        ad 	brelse(cbp, 0);
    120  1.27  perseant 
    121   1.5  perseant 	while (ino) {
    122  1.19  perseant 		if (lowfreeino > ino)
    123  1.19  perseant 			lowfreeino = ino;
    124   1.7  perseant 		if (ino >= maxino) {
    125  1.28  perseant 			pwarn("OUT OF RANGE INO %llu ON FREE LIST\n",
    126  1.27  perseant 			    (unsigned long long)ino);
    127   1.7  perseant 			break;
    128   1.7  perseant 		}
    129   1.6  perseant 		if (visited[ino]) {
    130  1.27  perseant 			pwarn("INO %llu ALREADY FOUND ON FREE LIST\n",
    131  1.22  christos 			    (unsigned long long)ino);
    132   1.6  perseant 			if (preen || reply("FIX") == 1) {
    133  1.10     lukem 				/* plastino can't be zero */
    134  1.14  perseant 				LFS_IENTRY(ifp, fs, plastino, bp);
    135   1.6  perseant 				ifp->if_nextfree = 0;
    136  1.14  perseant 				VOP_BWRITE(bp);
    137   1.6  perseant 			}
    138   1.6  perseant 			break;
    139   1.6  perseant 		}
    140  1.28  perseant 		visited[ino] = 1;
    141  1.14  perseant 		LFS_IENTRY(ifp, fs, ino, bp);
    142   1.5  perseant 		nextino = ifp->if_nextfree;
    143   1.5  perseant 		daddr = ifp->if_daddr;
    144  1.30        ad 		brelse(bp, 0);
    145   1.5  perseant 		if (daddr) {
    146  1.27  perseant 			pwarn("INO %llu WITH DADDR 0x%llx ON FREE LIST\n",
    147  1.22  christos 			    (unsigned long long)ino, (long long) daddr);
    148   1.5  perseant 			if (preen || reply("FIX") == 1) {
    149  1.10     lukem 				if (plastino == 0) {
    150  1.28  perseant 					freehd = nextino;
    151   1.5  perseant 					sbdirty();
    152   1.5  perseant 				} else {
    153  1.14  perseant 					LFS_IENTRY(ifp, fs, plastino, bp);
    154   1.5  perseant 					ifp->if_nextfree = nextino;
    155  1.14  perseant 					VOP_BWRITE(bp);
    156   1.5  perseant 				}
    157   1.5  perseant 				ino = nextino;
    158   1.5  perseant 				continue;
    159   1.5  perseant 			}
    160   1.5  perseant 		}
    161  1.10     lukem 		plastino = ino;
    162   1.5  perseant 		ino = nextino;
    163   1.6  perseant 	}
    164  1.15  perseant 
    165  1.15  perseant 
    166   1.6  perseant 	/*
    167   1.6  perseant 	 * Make sure all free inodes were found on the list
    168   1.6  perseant 	 */
    169  1.33  dholland 	for (ino = maxino - 1; ino > ULFS_ROOTINO; --ino) {
    170   1.6  perseant 		if (visited[ino])
    171   1.6  perseant 			continue;
    172   1.6  perseant 
    173  1.14  perseant 		LFS_IENTRY(ifp, fs, ino, bp);
    174   1.6  perseant 		if (ifp->if_daddr) {
    175  1.30        ad 			brelse(bp, 0);
    176   1.6  perseant 			continue;
    177   1.6  perseant 		}
    178  1.27  perseant 		pwarn("INO %llu FREE BUT NOT ON FREE LIST\n",
    179  1.22  christos 		    (unsigned long long)ino);
    180   1.6  perseant 		if (preen || reply("FIX") == 1) {
    181  1.28  perseant 			assert(ino != freehd);
    182  1.28  perseant 			ifp->if_nextfree = freehd;
    183  1.27  perseant 			VOP_BWRITE(bp);
    184  1.27  perseant 
    185  1.28  perseant 			freehd = ino;
    186   1.6  perseant 			sbdirty();
    187  1.27  perseant 
    188  1.27  perseant 			/* If freelist was empty, this is the tail */
    189  1.27  perseant 			if (plastino == 0)
    190  1.27  perseant 				plastino = ino;
    191  1.14  perseant 		} else
    192  1.30        ad 			brelse(bp, 0);
    193   1.5  perseant 	}
    194  1.15  perseant 
    195  1.27  perseant 	LFS_CLEANERINFO(cip, fs, cbp);
    196  1.28  perseant 	if (cip->free_head != freehd) {
    197  1.28  perseant 		/* They've already given us permission for this change */
    198  1.28  perseant 		cip->free_head = freehd;
    199  1.28  perseant 		writeit = 1;
    200  1.28  perseant 	}
    201  1.28  perseant 	if (freehd != fs->lfs_freehd) {
    202  1.27  perseant 		pwarn("FREE LIST HEAD IN SUPERBLOCK SHOULD BE %d (WAS %d)\n",
    203  1.28  perseant 			(int)fs->lfs_freehd, (int)freehd);
    204  1.15  perseant 		if (preen || reply("FIX")) {
    205  1.28  perseant 			fs->lfs_freehd = freehd;
    206  1.27  perseant 			sbdirty();
    207  1.15  perseant 		}
    208  1.15  perseant 	}
    209  1.15  perseant 	if (cip->free_tail != plastino) {
    210  1.27  perseant 		pwarn("FREE LIST TAIL SHOULD BE %llu (WAS %llu)\n",
    211  1.27  perseant 		    (unsigned long long)plastino,
    212  1.27  perseant 		    (unsigned long long)cip->free_tail);
    213  1.15  perseant 		if (preen || reply("FIX")) {
    214  1.15  perseant 			cip->free_tail = plastino;
    215  1.15  perseant 			writeit = 1;
    216  1.15  perseant 		}
    217  1.15  perseant 	}
    218  1.28  perseant 
    219  1.18  perseant 	if (writeit)
    220  1.27  perseant 		LFS_SYNC_CLEANERINFO(cip, fs, cbp, writeit);
    221  1.18  perseant 	else
    222  1.30        ad 		brelse(cbp, 0);
    223  1.19  perseant 
    224  1.20  perseant 	if (fs->lfs_freehd == 0) {
    225  1.20  perseant 		pwarn("%sree list head is 0x0\n", preen ? "f" : "F");
    226  1.28  perseant 		if (preen || reply("FIX"))
    227  1.21  perseant 			extend_ifile(fs);
    228  1.20  perseant 	}
    229   1.1  perseant }
    230