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