Home | History | Annotate | Line # | Download | only in fsck_lfs
pass5.c revision 1.8
      1  1.8  perseant /* $NetBSD: pass5.c,v 1.8 2000/11/21 06:24:26 perseant Exp $	 */
      2  1.4  perseant 
      3  1.4  perseant /*-
      4  1.4  perseant  * Copyright (c) 2000 The NetBSD Foundation, Inc.
      5  1.4  perseant  * All rights reserved.
      6  1.4  perseant  *
      7  1.4  perseant  * This code is derived from software contributed to The NetBSD Foundation
      8  1.4  perseant  * by Konrad E. Schroder <perseant (at) hhhh.org>.
      9  1.4  perseant  *
     10  1.4  perseant  * Redistribution and use in source and binary forms, with or without
     11  1.4  perseant  * modification, are permitted provided that the following conditions
     12  1.4  perseant  * are met:
     13  1.4  perseant  * 1. Redistributions of source code must retain the above copyright
     14  1.4  perseant  *    notice, this list of conditions and the following disclaimer.
     15  1.4  perseant  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.4  perseant  *    notice, this list of conditions and the following disclaimer in the
     17  1.4  perseant  *    documentation and/or other materials provided with the distribution.
     18  1.4  perseant  * 3. All advertising materials mentioning features or use of this software
     19  1.4  perseant  *    must display the following acknowledgement:
     20  1.4  perseant  *      This product includes software developed by the NetBSD
     21  1.4  perseant  *      Foundation, Inc. and its contributors.
     22  1.4  perseant  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.4  perseant  *    contributors may be used to endorse or promote products derived
     24  1.4  perseant  *    from this software without specific prior written permission.
     25  1.4  perseant  *
     26  1.4  perseant  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.4  perseant  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.4  perseant  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.4  perseant  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.4  perseant  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.4  perseant  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.4  perseant  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.4  perseant  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.4  perseant  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.4  perseant  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.4  perseant  * POSSIBILITY OF SUCH DAMAGE.
     37  1.4  perseant  */
     38  1.1  perseant 
     39  1.1  perseant #include <sys/param.h>
     40  1.1  perseant #include <sys/time.h>
     41  1.1  perseant #include <ufs/ufs/dinode.h>
     42  1.3  perseant #include <ufs/ufs/dir.h>
     43  1.3  perseant #include <sys/mount.h>
     44  1.3  perseant #include <ufs/lfs/lfs.h>
     45  1.3  perseant 
     46  1.1  perseant #include <string.h>
     47  1.1  perseant #include "fsck.h"
     48  1.1  perseant #include "extern.h"
     49  1.3  perseant #include "fsutil.h"
     50  1.3  perseant 
     51  1.4  perseant extern SEGUSE  *seg_table;
     52  1.1  perseant 
     53  1.1  perseant void
     54  1.1  perseant pass5()
     55  1.1  perseant {
     56  1.4  perseant 	SEGUSE         *su;
     57  1.3  perseant 	struct bufarea *bp;
     58  1.4  perseant 	int             i;
     59  1.6  perseant 	unsigned long   bb; /* total number of used blocks (lower bound) */
     60  1.6  perseant 	unsigned long   ubb; /* upper bound number of used blocks */
     61  1.6  perseant 	unsigned long   avail; /* blocks available for writing */
     62  1.8  perseant 	unsigned long	dmeta; /* blocks in segsums and inodes */
     63  1.7  perseant 	int             nclean; /* clean segments */
     64  1.3  perseant 
     65  1.3  perseant 	/*
     66  1.3  perseant 	 * Check segment holdings against actual holdings.  Check for
     67  1.3  perseant 	 * "clean" segments that contain live data.
     68  1.3  perseant 	 */
     69  1.7  perseant 	nclean = 0;
     70  1.6  perseant 	avail = 0;
     71  1.6  perseant 	bb = ubb = 0;
     72  1.8  perseant 	dmeta = 0;
     73  1.4  perseant 	for (i = 0; i < sblock.lfs_nseg; i++) {
     74  1.3  perseant 		su = lfs_gseguse(i, &bp);
     75  1.3  perseant 		if (!(su->su_flags & SEGUSE_DIRTY) &&
     76  1.4  perseant 		    seg_table[i].su_nbytes > 0) {
     77  1.3  perseant 			pwarn("%d bytes contained in 'clean' segment %d\n",
     78  1.3  perseant 			      seg_table[i].su_nbytes, i);
     79  1.4  perseant 			if (preen || reply("fix")) {
     80  1.3  perseant 				su->su_flags |= SEGUSE_DIRTY;
     81  1.3  perseant 				dirty(bp);
     82  1.3  perseant 			}
     83  1.3  perseant 		}
     84  1.3  perseant 		if ((su->su_flags & SEGUSE_DIRTY) &&
     85  1.4  perseant 		    su->su_nbytes != seg_table[i].su_nbytes) {
     86  1.5  perseant 			pwarn("segment %d claims %d bytes but has %d",
     87  1.3  perseant 			      i, su->su_nbytes, seg_table[i].su_nbytes);
     88  1.5  perseant 			if (su->su_nbytes > seg_table[i].su_nbytes)
     89  1.5  perseant 				pwarn(" (high by %d)\n", su->su_nbytes -
     90  1.5  perseant 				      seg_table[i].su_nbytes);
     91  1.5  perseant 			else
     92  1.5  perseant 				pwarn(" (low by %d)\n", - su->su_nbytes +
     93  1.5  perseant 				      seg_table[i].su_nbytes);
     94  1.4  perseant 			if (preen || reply("fix")) {
     95  1.3  perseant 				su->su_nbytes = seg_table[i].su_nbytes;
     96  1.3  perseant 				dirty(bp);
     97  1.1  perseant 			}
     98  1.1  perseant 		}
     99  1.6  perseant 		if (su->su_flags & SEGUSE_DIRTY) {
    100  1.6  perseant 			bb += btodb(su->su_nbytes) + su->su_nsums;
    101  1.6  perseant 			ubb += btodb(su->su_nbytes) + su->su_nsums + fsbtodb(&sblock, su->su_ninos);
    102  1.8  perseant 			dmeta += btodb(LFS_SUMMARY_SIZE * su->su_nsums);
    103  1.8  perseant 			dmeta += fsbtodb(&sblock, su->su_ninos);
    104  1.6  perseant 		} else {
    105  1.7  perseant 			nclean++;
    106  1.6  perseant 			avail += fsbtodb(&sblock, sblock.lfs_ssize);
    107  1.6  perseant 			if (su->su_flags & SEGUSE_SUPERBLOCK)
    108  1.6  perseant 				avail -= btodb(LFS_SBPAD);
    109  1.6  perseant 		}
    110  1.3  perseant 		bp->b_flags &= ~B_INUSE;
    111  1.6  perseant 	}
    112  1.6  perseant 	/* Also may be available bytes in current seg */
    113  1.6  perseant 	i = datosn(&sblock, sblock.lfs_offset);
    114  1.6  perseant 	avail += sntoda(&sblock, i + 1) - sblock.lfs_offset;
    115  1.6  perseant 	/* But do not count minfreesegs */
    116  1.6  perseant 	avail -= fsbtodb(&sblock, sblock.lfs_ssize) *
    117  1.6  perseant 		(sblock.lfs_minfreeseg - (sblock.lfs_minfreeseg / 2));
    118  1.6  perseant 
    119  1.8  perseant 	if (dmeta != sblock.lfs_dmeta) {
    120  1.8  perseant 		pwarn("dmeta given as %d, should be %ld\n", sblock.lfs_dmeta,
    121  1.8  perseant 			dmeta);
    122  1.8  perseant 		if (preen || reply("fix")) {
    123  1.8  perseant 			sblock.lfs_dmeta = dmeta;
    124  1.8  perseant 			sbdirty();
    125  1.8  perseant 		}
    126  1.8  perseant 	}
    127  1.6  perseant 	if (avail != sblock.lfs_avail) {
    128  1.6  perseant 		pwarn("avail given as %d, should be %ld\n", sblock.lfs_avail,
    129  1.6  perseant 		      avail);
    130  1.6  perseant 		if (preen || reply("fix")) {
    131  1.6  perseant 			sblock.lfs_avail = avail;
    132  1.7  perseant 			sbdirty();
    133  1.7  perseant 		}
    134  1.7  perseant 	}
    135  1.7  perseant 	if (nclean != sblock.lfs_nclean) {
    136  1.7  perseant 		pwarn("nclean given as %d, should be %d\n", sblock.lfs_nclean,
    137  1.7  perseant 		      nclean);
    138  1.7  perseant 		if (preen || reply("fix")) {
    139  1.7  perseant 			sblock.lfs_nclean = nclean;
    140  1.6  perseant 			sbdirty();
    141  1.6  perseant 		}
    142  1.6  perseant 	}
    143  1.6  perseant 	if (sblock.lfs_bfree > sblock.lfs_dsize - bb ||
    144  1.6  perseant 	    sblock.lfs_bfree < sblock.lfs_dsize - ubb) {
    145  1.6  perseant 		pwarn("bfree given as %d, should be between %ld and %ld\n",
    146  1.6  perseant 		      sblock.lfs_bfree, sblock.lfs_dsize - ubb,
    147  1.6  perseant 		      sblock.lfs_dsize - bb);
    148  1.6  perseant 		if (preen || reply("fix")) {
    149  1.6  perseant 			sblock.lfs_bfree = sblock.lfs_dsize - (ubb + bb) / 2;
    150  1.6  perseant 			sbdirty();
    151  1.6  perseant 		}
    152  1.1  perseant 	}
    153  1.1  perseant }
    154