Home | History | Annotate | Line # | Download | only in fsck_lfs
lfs.c revision 1.8.2.1
      1  1.8.2.1      tron /* $NetBSD: lfs.c,v 1.8.2.1 2005/05/07 11:21:29 tron Exp $ */
      2      1.1  perseant /*-
      3      1.1  perseant  * Copyright (c) 2003 The NetBSD Foundation, Inc.
      4      1.1  perseant  * All rights reserved.
      5      1.1  perseant  *
      6      1.1  perseant  * This code is derived from software contributed to The NetBSD Foundation
      7      1.1  perseant  * by Konrad E. Schroder <perseant (at) hhhh.org>.
      8      1.1  perseant  *
      9      1.1  perseant  * Redistribution and use in source and binary forms, with or without
     10      1.1  perseant  * modification, are permitted provided that the following conditions
     11      1.1  perseant  * are met:
     12      1.1  perseant  * 1. Redistributions of source code must retain the above copyright
     13      1.1  perseant  *    notice, this list of conditions and the following disclaimer.
     14      1.1  perseant  * 2. Redistributions in binary form must reproduce the above copyright
     15      1.1  perseant  *    notice, this list of conditions and the following disclaimer in the
     16      1.1  perseant  *    documentation and/or other materials provided with the distribution.
     17      1.1  perseant  * 3. All advertising materials mentioning features or use of this software
     18      1.1  perseant  *    must display the following acknowledgement:
     19      1.1  perseant  *	This product includes software developed by the NetBSD
     20      1.1  perseant  *	Foundation, Inc. and its contributors.
     21      1.1  perseant  * 4. Neither the name of The NetBSD Foundation nor the names of its
     22      1.1  perseant  *    contributors may be used to endorse or promote products derived
     23      1.1  perseant  *    from this software without specific prior written permission.
     24      1.1  perseant  *
     25      1.1  perseant  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     26      1.1  perseant  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27      1.1  perseant  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28      1.1  perseant  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     29      1.1  perseant  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30      1.1  perseant  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31      1.1  perseant  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32      1.1  perseant  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33      1.1  perseant  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34      1.1  perseant  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35      1.1  perseant  * POSSIBILITY OF SUCH DAMAGE.
     36      1.1  perseant  */
     37      1.1  perseant /*
     38      1.1  perseant  * Copyright (c) 1989, 1991, 1993
     39      1.1  perseant  *	The Regents of the University of California.  All rights reserved.
     40      1.1  perseant  * (c) UNIX System Laboratories, Inc.
     41      1.1  perseant  * All or some portions of this file are derived from material licensed
     42      1.1  perseant  * to the University of California by American Telephone and Telegraph
     43      1.1  perseant  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
     44      1.1  perseant  * the permission of UNIX System Laboratories, Inc.
     45      1.1  perseant  *
     46      1.1  perseant  * Redistribution and use in source and binary forms, with or without
     47      1.1  perseant  * modification, are permitted provided that the following conditions
     48      1.1  perseant  * are met:
     49      1.1  perseant  * 1. Redistributions of source code must retain the above copyright
     50      1.1  perseant  *    notice, this list of conditions and the following disclaimer.
     51      1.1  perseant  * 2. Redistributions in binary form must reproduce the above copyright
     52      1.1  perseant  *    notice, this list of conditions and the following disclaimer in the
     53      1.1  perseant  *    documentation and/or other materials provided with the distribution.
     54      1.7       agc  * 3. Neither the name of the University nor the names of its contributors
     55      1.1  perseant  *    may be used to endorse or promote products derived from this software
     56      1.1  perseant  *    without specific prior written permission.
     57      1.1  perseant  *
     58      1.1  perseant  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     59      1.1  perseant  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     60      1.1  perseant  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     61      1.1  perseant  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     62      1.1  perseant  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     63      1.1  perseant  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     64      1.1  perseant  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     65      1.1  perseant  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     66      1.1  perseant  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     67      1.1  perseant  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     68      1.1  perseant  * SUCH DAMAGE.
     69      1.1  perseant  *
     70      1.1  perseant  *	@(#)ufs_bmap.c	8.8 (Berkeley) 8/11/95
     71      1.1  perseant  */
     72      1.1  perseant 
     73      1.1  perseant 
     74      1.1  perseant #include <sys/types.h>
     75      1.1  perseant #include <sys/param.h>
     76      1.1  perseant #include <sys/time.h>
     77      1.1  perseant #include <sys/buf.h>
     78      1.1  perseant #include <sys/mount.h>
     79      1.1  perseant 
     80      1.1  perseant #include <ufs/ufs/inode.h>
     81      1.1  perseant #include <ufs/ufs/ufsmount.h>
     82      1.1  perseant #define vnode uvnode
     83      1.1  perseant #include <ufs/lfs/lfs.h>
     84      1.1  perseant #undef vnode
     85      1.1  perseant 
     86      1.1  perseant #include <assert.h>
     87      1.1  perseant #include <err.h>
     88      1.1  perseant #include <errno.h>
     89      1.1  perseant #include <stdarg.h>
     90      1.1  perseant #include <stdio.h>
     91      1.1  perseant #include <stdlib.h>
     92      1.1  perseant #include <string.h>
     93      1.1  perseant #include <unistd.h>
     94      1.1  perseant 
     95      1.1  perseant #include "bufcache.h"
     96      1.1  perseant #include "vnode.h"
     97      1.1  perseant #include "lfs.h"
     98      1.1  perseant #include "segwrite.h"
     99      1.1  perseant 
    100      1.1  perseant #define panic call_panic
    101      1.1  perseant 
    102      1.1  perseant extern u_int32_t cksum(void *, size_t);
    103      1.1  perseant extern u_int32_t lfs_sb_cksum(struct dlfs *);
    104      1.8  perseant extern void pwarn(const char *, ...);
    105      1.1  perseant 
    106      1.1  perseant extern struct uvnodelst vnodelist;
    107  1.8.2.1      tron extern struct uvnodelst getvnodelist[VNODE_HASH_MAX];
    108      1.1  perseant extern int nvnodes;
    109      1.1  perseant 
    110      1.1  perseant int fsdirty = 0;
    111      1.1  perseant void (*panic_func)(int, const char *, va_list) = my_vpanic;
    112      1.1  perseant 
    113      1.1  perseant /*
    114      1.1  perseant  * LFS buffer and uvnode operations
    115      1.1  perseant  */
    116      1.1  perseant 
    117      1.1  perseant int
    118      1.1  perseant lfs_vop_strategy(struct ubuf * bp)
    119      1.1  perseant {
    120      1.1  perseant 	int count;
    121      1.1  perseant 
    122      1.1  perseant 	if (bp->b_flags & B_READ) {
    123      1.1  perseant 		count = pread(bp->b_vp->v_fd, bp->b_data, bp->b_bcount,
    124      1.1  perseant 		    dbtob(bp->b_blkno));
    125      1.1  perseant 		if (count == bp->b_bcount)
    126      1.1  perseant 			bp->b_flags |= B_DONE;
    127      1.1  perseant 	} else {
    128      1.1  perseant 		count = pwrite(bp->b_vp->v_fd, bp->b_data, bp->b_bcount,
    129      1.1  perseant 		    dbtob(bp->b_blkno));
    130      1.1  perseant 		if (count == 0) {
    131      1.1  perseant 			perror("pwrite");
    132      1.1  perseant 			return -1;
    133      1.1  perseant 		}
    134      1.1  perseant 		bp->b_flags &= ~B_DELWRI;
    135      1.1  perseant 		reassignbuf(bp, bp->b_vp);
    136      1.1  perseant 	}
    137      1.1  perseant 	return 0;
    138      1.1  perseant }
    139      1.1  perseant 
    140      1.1  perseant int
    141      1.1  perseant lfs_vop_bwrite(struct ubuf * bp)
    142      1.1  perseant {
    143      1.1  perseant 	struct lfs *fs;
    144      1.1  perseant 
    145      1.1  perseant 	fs = bp->b_vp->v_fs;
    146      1.1  perseant 	if (!(bp->b_flags & B_DELWRI)) {
    147      1.1  perseant 		fs->lfs_avail -= btofsb(fs, bp->b_bcount);
    148      1.1  perseant 	}
    149      1.1  perseant 	bp->b_flags |= B_DELWRI | B_LOCKED;
    150      1.1  perseant 	reassignbuf(bp, bp->b_vp);
    151      1.1  perseant 	brelse(bp);
    152      1.1  perseant 	return 0;
    153      1.1  perseant }
    154      1.1  perseant 
    155      1.1  perseant /*
    156      1.1  perseant  * ufs_bmaparray does the bmap conversion, and if requested returns the
    157      1.1  perseant  * array of logical blocks which must be traversed to get to a block.
    158      1.1  perseant  * Each entry contains the offset into that block that gets you to the
    159      1.1  perseant  * next block and the disk address of the block (if it is assigned).
    160      1.1  perseant  */
    161      1.1  perseant int
    162      1.1  perseant ufs_bmaparray(struct lfs * fs, struct uvnode * vp, daddr_t bn, daddr_t * bnp, struct indir * ap, int *nump)
    163      1.1  perseant {
    164      1.1  perseant 	struct inode *ip;
    165      1.1  perseant 	struct ubuf *bp;
    166      1.1  perseant 	struct indir a[NIADDR + 1], *xap;
    167      1.1  perseant 	daddr_t daddr;
    168      1.1  perseant 	daddr_t metalbn;
    169      1.1  perseant 	int error, num;
    170      1.1  perseant 
    171      1.1  perseant 	ip = VTOI(vp);
    172      1.1  perseant 
    173      1.1  perseant 	if (bn >= 0 && bn < NDADDR) {
    174      1.1  perseant 		if (nump != NULL)
    175      1.1  perseant 			*nump = 0;
    176      1.2      fvdl 		*bnp = fsbtodb(fs, ip->i_ffs1_db[bn]);
    177      1.1  perseant 		if (*bnp == 0)
    178      1.1  perseant 			*bnp = -1;
    179      1.1  perseant 		return (0);
    180      1.1  perseant 	}
    181      1.1  perseant 	xap = ap == NULL ? a : ap;
    182      1.1  perseant 	if (!nump)
    183      1.1  perseant 		nump = &num;
    184      1.1  perseant 	if ((error = ufs_getlbns(fs, vp, bn, xap, nump)) != 0)
    185      1.1  perseant 		return (error);
    186      1.1  perseant 
    187      1.1  perseant 	num = *nump;
    188      1.1  perseant 
    189      1.1  perseant 	/* Get disk address out of indirect block array */
    190      1.2      fvdl 	daddr = ip->i_ffs1_ib[xap->in_off];
    191      1.1  perseant 
    192      1.1  perseant 	for (bp = NULL, ++xap; --num; ++xap) {
    193      1.1  perseant 		/* Exit the loop if there is no disk address assigned yet and
    194      1.1  perseant 		 * the indirect block isn't in the cache, or if we were
    195      1.1  perseant 		 * looking for an indirect block and we've found it. */
    196      1.1  perseant 
    197      1.1  perseant 		metalbn = xap->in_lbn;
    198      1.1  perseant 		if ((daddr == 0 && !incore(vp, metalbn)) || metalbn == bn)
    199      1.1  perseant 			break;
    200      1.1  perseant 		/*
    201      1.1  perseant 		 * If we get here, we've either got the block in the cache
    202      1.1  perseant 		 * or we have a disk address for it, go fetch it.
    203      1.1  perseant 		 */
    204      1.1  perseant 		if (bp)
    205      1.1  perseant 			brelse(bp);
    206      1.1  perseant 
    207      1.1  perseant 		xap->in_exists = 1;
    208      1.1  perseant 		bp = getblk(vp, metalbn, fs->lfs_bsize);
    209      1.1  perseant 
    210      1.1  perseant 		if (!(bp->b_flags & (B_DONE | B_DELWRI))) {
    211      1.1  perseant 			bp->b_blkno = fsbtodb(fs, daddr);
    212      1.1  perseant 			bp->b_flags |= B_READ;
    213      1.1  perseant 			VOP_STRATEGY(bp);
    214      1.1  perseant 		}
    215      1.1  perseant 		daddr = ((ufs_daddr_t *) bp->b_data)[xap->in_off];
    216      1.1  perseant 	}
    217      1.1  perseant 	if (bp)
    218      1.1  perseant 		brelse(bp);
    219      1.1  perseant 
    220      1.1  perseant 	daddr = fsbtodb(fs, (ufs_daddr_t) daddr);
    221      1.1  perseant 	*bnp = daddr == 0 ? -1 : daddr;
    222      1.1  perseant 	return (0);
    223      1.1  perseant }
    224      1.1  perseant 
    225      1.1  perseant /*
    226      1.1  perseant  * Create an array of logical block number/offset pairs which represent the
    227      1.1  perseant  * path of indirect blocks required to access a data block.  The first "pair"
    228      1.1  perseant  * contains the logical block number of the appropriate single, double or
    229      1.1  perseant  * triple indirect block and the offset into the inode indirect block array.
    230      1.1  perseant  * Note, the logical block number of the inode single/double/triple indirect
    231      1.2      fvdl  * block appears twice in the array, once with the offset into the i_ffs1_ib and
    232      1.1  perseant  * once with the offset into the page itself.
    233      1.1  perseant  */
    234      1.1  perseant int
    235      1.1  perseant ufs_getlbns(struct lfs * fs, struct uvnode * vp, daddr_t bn, struct indir * ap, int *nump)
    236      1.1  perseant {
    237      1.1  perseant 	daddr_t metalbn, realbn;
    238      1.1  perseant 	int64_t blockcnt;
    239      1.1  perseant 	int lbc;
    240      1.1  perseant 	int i, numlevels, off;
    241      1.1  perseant 	int lognindir, indir;
    242      1.1  perseant 
    243      1.1  perseant 	if (nump)
    244      1.1  perseant 		*nump = 0;
    245      1.1  perseant 	numlevels = 0;
    246      1.1  perseant 	realbn = bn;
    247      1.1  perseant 	if (bn < 0)
    248      1.1  perseant 		bn = -bn;
    249      1.1  perseant 
    250      1.1  perseant 	lognindir = -1;
    251      1.1  perseant 	for (indir = fs->lfs_nindir; indir; indir >>= 1)
    252      1.1  perseant 		++lognindir;
    253      1.1  perseant 
    254      1.1  perseant 	/* Determine the number of levels of indirection.  After this loop is
    255      1.1  perseant 	 * done, blockcnt indicates the number of data blocks possible at the
    256      1.1  perseant 	 * given level of indirection, and NIADDR - i is the number of levels
    257      1.1  perseant 	 * of indirection needed to locate the requested block. */
    258      1.1  perseant 
    259      1.1  perseant 	bn -= NDADDR;
    260      1.1  perseant 	for (lbc = 0, i = NIADDR;; i--, bn -= blockcnt) {
    261      1.1  perseant 		if (i == 0)
    262      1.1  perseant 			return (EFBIG);
    263      1.1  perseant 
    264      1.1  perseant 		lbc += lognindir;
    265      1.1  perseant 		blockcnt = (int64_t) 1 << lbc;
    266      1.1  perseant 
    267      1.1  perseant 		if (bn < blockcnt)
    268      1.1  perseant 			break;
    269      1.1  perseant 	}
    270      1.1  perseant 
    271      1.1  perseant 	/* Calculate the address of the first meta-block. */
    272      1.1  perseant 	if (realbn >= 0)
    273      1.1  perseant 		metalbn = -(realbn - bn + NIADDR - i);
    274      1.1  perseant 	else
    275      1.1  perseant 		metalbn = -(-realbn - bn + NIADDR - i);
    276      1.1  perseant 
    277      1.1  perseant 	/* At each iteration, off is the offset into the bap array which is an
    278      1.1  perseant 	 * array of disk addresses at the current level of indirection. The
    279      1.1  perseant 	 * logical block number and the offset in that block are stored into
    280      1.1  perseant 	 * the argument array. */
    281      1.1  perseant 	ap->in_lbn = metalbn;
    282      1.1  perseant 	ap->in_off = off = NIADDR - i;
    283      1.1  perseant 	ap->in_exists = 0;
    284      1.1  perseant 	ap++;
    285      1.1  perseant 	for (++numlevels; i <= NIADDR; i++) {
    286      1.1  perseant 		/* If searching for a meta-data block, quit when found. */
    287      1.1  perseant 		if (metalbn == realbn)
    288      1.1  perseant 			break;
    289      1.1  perseant 
    290      1.1  perseant 		lbc -= lognindir;
    291      1.1  perseant 		blockcnt = (int64_t) 1 << lbc;
    292      1.1  perseant 		off = (bn >> lbc) & (fs->lfs_nindir - 1);
    293      1.1  perseant 
    294      1.1  perseant 		++numlevels;
    295      1.1  perseant 		ap->in_lbn = metalbn;
    296      1.1  perseant 		ap->in_off = off;
    297      1.1  perseant 		ap->in_exists = 0;
    298      1.1  perseant 		++ap;
    299      1.1  perseant 
    300      1.1  perseant 		metalbn -= -1 + (off << lbc);
    301      1.1  perseant 	}
    302      1.1  perseant 	if (nump)
    303      1.1  perseant 		*nump = numlevels;
    304      1.1  perseant 	return (0);
    305      1.1  perseant }
    306      1.1  perseant 
    307      1.1  perseant int
    308      1.1  perseant lfs_vop_bmap(struct uvnode * vp, daddr_t lbn, daddr_t * daddrp)
    309      1.1  perseant {
    310      1.1  perseant 	return ufs_bmaparray(vp->v_fs, vp, lbn, daddrp, NULL, NULL);
    311      1.1  perseant }
    312      1.1  perseant 
    313      1.1  perseant /* Search a block for a specific dinode. */
    314      1.2      fvdl struct ufs1_dinode *
    315      1.1  perseant lfs_ifind(struct lfs * fs, ino_t ino, struct ubuf * bp)
    316      1.1  perseant {
    317      1.2      fvdl 	struct ufs1_dinode *dip = (struct ufs1_dinode *) bp->b_data;
    318      1.2      fvdl 	struct ufs1_dinode *ldip, *fin;
    319      1.1  perseant 
    320      1.1  perseant 	fin = dip + INOPB(fs);
    321      1.1  perseant 
    322      1.1  perseant 	/*
    323      1.1  perseant 	 * Read the inode block backwards, since later versions of the
    324      1.1  perseant 	 * inode will supercede earlier ones.  Though it is unlikely, it is
    325      1.1  perseant 	 * possible that the same inode will appear in the same inode block.
    326      1.1  perseant 	 */
    327      1.1  perseant 	for (ldip = fin - 1; ldip >= dip; --ldip)
    328      1.1  perseant 		if (ldip->di_inumber == ino)
    329      1.1  perseant 			return (ldip);
    330      1.1  perseant 	return NULL;
    331      1.1  perseant }
    332      1.1  perseant 
    333      1.1  perseant /*
    334      1.1  perseant  * lfs_raw_vget makes us a new vnode from the inode at the given disk address.
    335      1.1  perseant  * XXX it currently loses atime information.
    336      1.1  perseant  */
    337      1.1  perseant struct uvnode *
    338      1.1  perseant lfs_raw_vget(struct lfs * fs, ino_t ino, int fd, ufs_daddr_t daddr)
    339      1.1  perseant {
    340      1.1  perseant 	struct uvnode *vp;
    341      1.1  perseant 	struct inode *ip;
    342      1.2      fvdl 	struct ufs1_dinode *dip;
    343      1.1  perseant 	struct ubuf *bp;
    344  1.8.2.1      tron 	int i, hash;
    345      1.1  perseant 
    346      1.1  perseant 	vp = (struct uvnode *) malloc(sizeof(*vp));
    347      1.1  perseant 	memset(vp, 0, sizeof(*vp));
    348      1.1  perseant 	vp->v_fd = fd;
    349      1.1  perseant 	vp->v_fs = fs;
    350      1.1  perseant 	vp->v_usecount = 0;
    351      1.1  perseant 	vp->v_strategy_op = lfs_vop_strategy;
    352      1.1  perseant 	vp->v_bwrite_op = lfs_vop_bwrite;
    353      1.1  perseant 	vp->v_bmap_op = lfs_vop_bmap;
    354      1.5      yamt 	LIST_INIT(&vp->v_cleanblkhd);
    355      1.5      yamt 	LIST_INIT(&vp->v_dirtyblkhd);
    356      1.1  perseant 
    357      1.6      yamt 	ip = (struct inode *) malloc(sizeof(*ip));
    358      1.1  perseant 	memset(ip, 0, sizeof(*ip));
    359      1.1  perseant 
    360      1.2      fvdl 	ip->i_din.ffs1_din = (struct ufs1_dinode *)
    361      1.2      fvdl 	    malloc(sizeof(struct ufs1_dinode));
    362      1.2      fvdl 	memset(ip->i_din.ffs1_din, 0, sizeof (struct ufs1_dinode));
    363      1.2      fvdl 
    364      1.1  perseant 	/* Initialize the inode -- from lfs_vcreate. */
    365      1.1  perseant 	ip->inode_ext.lfs = malloc(sizeof(struct lfs_inode_ext));
    366      1.1  perseant 	memset(ip->inode_ext.lfs, 0, sizeof(struct lfs_inode_ext));
    367      1.1  perseant 	vp->v_data = ip;
    368      1.1  perseant 	/* ip->i_vnode = vp; */
    369      1.1  perseant 	ip->i_number = ino;
    370      1.1  perseant 	ip->i_lockf = 0;
    371      1.1  perseant 	ip->i_diroff = 0;
    372      1.1  perseant 	ip->i_lfs_effnblks = 0;
    373      1.1  perseant 	ip->i_flag = 0;
    374      1.1  perseant 
    375      1.1  perseant 	/* Load inode block and find inode */
    376      1.8  perseant 	if (daddr > 0) {
    377  1.8.2.1      tron 		bread(fs->lfs_devvp, fsbtodb(fs, daddr), fs->lfs_ibsize, NULL, &bp);
    378      1.8  perseant 		bp->b_flags |= B_AGE;
    379      1.8  perseant 		dip = lfs_ifind(fs, ino, bp);
    380      1.8  perseant 		if (dip == NULL) {
    381      1.8  perseant 			brelse(bp);
    382      1.8  perseant 			free(ip);
    383      1.8  perseant 			free(vp);
    384      1.8  perseant 			return NULL;
    385      1.8  perseant 		}
    386      1.8  perseant 		memcpy(ip->i_din.ffs1_din, dip, sizeof(*dip));
    387      1.1  perseant 		brelse(bp);
    388      1.1  perseant 	}
    389      1.1  perseant 	ip->i_number = ino;
    390  1.8.2.1      tron 	/* ip->i_devvp = fs->lfs_devvp; */
    391      1.1  perseant 	ip->i_lfs = fs;
    392      1.1  perseant 
    393      1.2      fvdl 	ip->i_ffs_effnlink = ip->i_ffs1_nlink;
    394      1.2      fvdl 	ip->i_lfs_effnblks = ip->i_ffs1_blocks;
    395      1.2      fvdl 	ip->i_lfs_osize = ip->i_ffs1_size;
    396      1.1  perseant #if 0
    397      1.1  perseant 	if (fs->lfs_version > 1) {
    398      1.2      fvdl 		ip->i_ffs1_atime = ts.tv_sec;
    399      1.2      fvdl 		ip->i_ffs1_atimensec = ts.tv_nsec;
    400      1.1  perseant 	}
    401      1.1  perseant #endif
    402      1.1  perseant 
    403      1.1  perseant 	memset(ip->i_lfs_fragsize, 0, NDADDR * sizeof(*ip->i_lfs_fragsize));
    404      1.1  perseant 	for (i = 0; i < NDADDR; i++)
    405      1.2      fvdl 		if (ip->i_ffs1_db[i] != 0)
    406      1.1  perseant 			ip->i_lfs_fragsize[i] = blksize(fs, ip, i);
    407      1.6      yamt 
    408      1.6      yamt 	++nvnodes;
    409  1.8.2.1      tron 	hash = ((int)(intptr_t)fs + ino) & (VNODE_HASH_MAX - 1);
    410  1.8.2.1      tron 	LIST_INSERT_HEAD(&getvnodelist[hash], vp, v_getvnodes);
    411      1.6      yamt 	LIST_INSERT_HEAD(&vnodelist, vp, v_mntvnodes);
    412      1.1  perseant 
    413      1.1  perseant 	return vp;
    414      1.1  perseant }
    415      1.1  perseant 
    416      1.1  perseant static struct uvnode *
    417      1.1  perseant lfs_vget(void *vfs, ino_t ino)
    418      1.1  perseant {
    419      1.1  perseant 	struct lfs *fs = (struct lfs *)vfs;
    420      1.1  perseant 	ufs_daddr_t daddr;
    421      1.1  perseant 	struct ubuf *bp;
    422      1.1  perseant 	IFILE *ifp;
    423      1.1  perseant 
    424      1.1  perseant 	LFS_IENTRY(ifp, fs, ino, bp);
    425      1.1  perseant 	daddr = ifp->if_daddr;
    426      1.1  perseant 	brelse(bp);
    427      1.1  perseant 	if (daddr == 0)
    428      1.1  perseant 		return NULL;
    429      1.1  perseant 	return lfs_raw_vget(fs, ino, fs->lfs_ivnode->v_fd, daddr);
    430      1.1  perseant }
    431      1.1  perseant 
    432      1.1  perseant /* Check superblock magic number and checksum */
    433      1.1  perseant static int
    434      1.1  perseant check_sb(struct lfs *fs)
    435      1.1  perseant {
    436      1.1  perseant 	u_int32_t checksum;
    437      1.1  perseant 
    438      1.1  perseant 	if (fs->lfs_magic != LFS_MAGIC) {
    439      1.1  perseant 		printf("Superblock magic number (0x%lx) does not match "
    440      1.1  perseant 		       "expected 0x%lx\n", (unsigned long) fs->lfs_magic,
    441      1.1  perseant 		       (unsigned long) LFS_MAGIC);
    442      1.1  perseant 		return 1;
    443      1.1  perseant 	}
    444      1.1  perseant 	/* checksum */
    445      1.1  perseant 	checksum = lfs_sb_cksum(&(fs->lfs_dlfs));
    446      1.1  perseant 	if (fs->lfs_cksum != checksum) {
    447      1.1  perseant 		printf("Superblock checksum (%lx) does not match computed checksum (%lx)\n",
    448      1.1  perseant 		    (unsigned long) fs->lfs_cksum, (unsigned long) checksum);
    449      1.1  perseant 		return 1;
    450      1.1  perseant 	}
    451      1.1  perseant 	return 0;
    452      1.1  perseant }
    453      1.1  perseant 
    454      1.1  perseant /* Initialize LFS library; load superblocks and choose which to use. */
    455      1.1  perseant struct lfs *
    456      1.8  perseant lfs_init(int devfd, daddr_t sblkno, daddr_t idaddr, int dummy_read, int debug)
    457      1.1  perseant {
    458      1.1  perseant 	struct uvnode *devvp;
    459      1.1  perseant 	struct ubuf *bp;
    460      1.1  perseant 	int tryalt;
    461      1.1  perseant 	struct lfs *fs, *altfs;
    462      1.1  perseant 	int error;
    463      1.1  perseant 
    464      1.1  perseant 	vfs_init();
    465      1.1  perseant 
    466      1.1  perseant 	devvp = (struct uvnode *) malloc(sizeof(*devvp));
    467      1.5      yamt 	memset(devvp, 0, sizeof(*devvp));
    468      1.1  perseant 	devvp->v_fs = NULL;
    469      1.1  perseant 	devvp->v_fd = devfd;
    470      1.1  perseant 	devvp->v_strategy_op = raw_vop_strategy;
    471      1.1  perseant 	devvp->v_bwrite_op = raw_vop_bwrite;
    472      1.1  perseant 	devvp->v_bmap_op = raw_vop_bmap;
    473      1.5      yamt 	LIST_INIT(&devvp->v_cleanblkhd);
    474      1.5      yamt 	LIST_INIT(&devvp->v_dirtyblkhd);
    475      1.1  perseant 
    476      1.1  perseant 	tryalt = 0;
    477      1.8  perseant 	if (dummy_read) {
    478      1.8  perseant 		if (sblkno == 0)
    479      1.8  perseant 			sblkno = btodb(LFS_LABELPAD);
    480      1.8  perseant 		fs = (struct lfs *) malloc(sizeof(*fs));
    481      1.8  perseant 		memset(fs, 0, sizeof(*fs));
    482  1.8.2.1      tron 		fs->lfs_devvp = devvp;
    483      1.8  perseant 	} else {
    484      1.8  perseant 		if (sblkno == 0) {
    485      1.8  perseant 			sblkno = btodb(LFS_LABELPAD);
    486      1.8  perseant 			tryalt = 1;
    487      1.8  perseant 		} else if (debug) {
    488      1.8  perseant 			printf("No -b flag given, not attempting to verify checkpoint\n");
    489      1.8  perseant 		}
    490      1.8  perseant 		error = bread(devvp, sblkno, LFS_SBPAD, NOCRED, &bp);
    491      1.8  perseant 		fs = (struct lfs *) malloc(sizeof(*fs));
    492      1.8  perseant 		memset(fs, 0, sizeof(*fs));
    493      1.8  perseant 		fs->lfs_dlfs = *((struct dlfs *) bp->b_data);
    494  1.8.2.1      tron 		fs->lfs_devvp = devvp;
    495      1.1  perseant 		bp->b_flags |= B_INVAL;
    496      1.1  perseant 		brelse(bp);
    497      1.8  perseant 
    498      1.8  perseant 		if (tryalt) {
    499      1.8  perseant 			error = bread(devvp, fsbtodb(fs, fs->lfs_sboffs[1]),
    500      1.8  perseant 		    	LFS_SBPAD, NOCRED, &bp);
    501      1.8  perseant 			altfs = (struct lfs *) malloc(sizeof(*altfs));
    502      1.8  perseant 			memset(altfs, 0, sizeof(*altfs));
    503      1.8  perseant 			altfs->lfs_dlfs = *((struct dlfs *) bp->b_data);
    504  1.8.2.1      tron 			altfs->lfs_devvp = devvp;
    505      1.8  perseant 			bp->b_flags |= B_INVAL;
    506      1.8  perseant 			brelse(bp);
    507      1.8  perseant 
    508      1.8  perseant 			if (check_sb(fs) || fs->lfs_idaddr <= 0) {
    509      1.1  perseant 				if (debug)
    510      1.8  perseant 					printf("Primary superblock is no good, using first alternate\n");
    511      1.8  perseant 				free(fs);
    512      1.8  perseant 				fs = altfs;
    513      1.1  perseant 			} else {
    514      1.8  perseant 				/* If both superblocks check out, try verification */
    515      1.8  perseant 				if (check_sb(altfs)) {
    516      1.8  perseant 					if (debug)
    517      1.8  perseant 						printf("First alternate superblock is no good, using primary\n");
    518      1.1  perseant 					free(altfs);
    519      1.1  perseant 				} else {
    520      1.8  perseant 					if (lfs_verify(fs, altfs, devvp, debug) == fs) {
    521      1.8  perseant 						free(altfs);
    522      1.8  perseant 					} else {
    523      1.8  perseant 						free(fs);
    524      1.8  perseant 						fs = altfs;
    525      1.8  perseant 					}
    526      1.1  perseant 				}
    527      1.1  perseant 			}
    528      1.1  perseant 		}
    529      1.8  perseant 		if (check_sb(fs)) {
    530      1.8  perseant 			free(fs);
    531      1.8  perseant 			return NULL;
    532      1.8  perseant 		}
    533      1.1  perseant 	}
    534      1.8  perseant 
    535      1.1  perseant 	/* Compatibility */
    536      1.1  perseant 	if (fs->lfs_version < 2) {
    537      1.1  perseant 		fs->lfs_sumsize = LFS_V1_SUMMARY_SIZE;
    538      1.1  perseant 		fs->lfs_ibsize = fs->lfs_bsize;
    539      1.1  perseant 		fs->lfs_start = fs->lfs_sboffs[0];
    540      1.1  perseant 		fs->lfs_tstamp = fs->lfs_otstamp;
    541      1.1  perseant 		fs->lfs_fsbtodb = 0;
    542      1.1  perseant 	}
    543      1.8  perseant 
    544      1.8  perseant 	if (!dummy_read) {
    545      1.8  perseant 		fs->lfs_suflags = (u_int32_t **) malloc(2 * sizeof(u_int32_t *));
    546      1.8  perseant 		fs->lfs_suflags[0] = (u_int32_t *) malloc(fs->lfs_nseg * sizeof(u_int32_t));
    547      1.8  perseant 		fs->lfs_suflags[1] = (u_int32_t *) malloc(fs->lfs_nseg * sizeof(u_int32_t));
    548      1.8  perseant 	}
    549      1.1  perseant 
    550      1.1  perseant 	if (idaddr == 0)
    551      1.1  perseant 		idaddr = fs->lfs_idaddr;
    552  1.8.2.1      tron 	else
    553  1.8.2.1      tron 		fs->lfs_idaddr = idaddr;
    554      1.8  perseant 	/* NB: If dummy_read!=0, idaddr==0 here so we get a fake inode. */
    555      1.8  perseant 	fs->lfs_ivnode = lfs_raw_vget(fs,
    556      1.8  perseant 		(dummy_read ? LFS_IFILE_INUM : fs->lfs_ifile), devvp->v_fd,
    557      1.8  perseant 		idaddr);
    558      1.1  perseant 
    559      1.1  perseant 	register_vget((void *)fs, lfs_vget);
    560      1.1  perseant 
    561      1.1  perseant 	return fs;
    562      1.1  perseant }
    563      1.1  perseant 
    564      1.1  perseant /*
    565      1.1  perseant  * Check partial segment validity between fs->lfs_offset and the given goal.
    566  1.8.2.1      tron  *
    567  1.8.2.1      tron  * If goal == 0, just keep on going until the segments stop making sense,
    568  1.8.2.1      tron  * and return the address of the last valid partial segment.
    569  1.8.2.1      tron  *
    570  1.8.2.1      tron  * If goal != 0, return the address of the first partial segment that failed,
    571  1.8.2.1      tron  * or "goal" if we reached it without failure (the partial segment *at* goal
    572  1.8.2.1      tron  * need not be valid).
    573      1.1  perseant  */
    574      1.1  perseant ufs_daddr_t
    575      1.1  perseant try_verify(struct lfs *osb, struct uvnode *devvp, ufs_daddr_t goal, int debug)
    576      1.1  perseant {
    577      1.1  perseant 	ufs_daddr_t daddr, odaddr;
    578      1.1  perseant 	SEGSUM *sp;
    579      1.1  perseant 	int bc, flag;
    580      1.1  perseant 	struct ubuf *bp;
    581      1.1  perseant 	ufs_daddr_t nodirop_daddr;
    582      1.1  perseant 	u_int64_t serial;
    583      1.1  perseant 
    584  1.8.2.1      tron 	odaddr = -1;
    585      1.1  perseant 	daddr = osb->lfs_offset;
    586      1.1  perseant 	nodirop_daddr = daddr;
    587      1.1  perseant 	serial = osb->lfs_serial;
    588      1.1  perseant 	while (daddr != goal) {
    589      1.1  perseant 		flag = 0;
    590      1.1  perseant oncemore:
    591      1.1  perseant 		/* Read in summary block */
    592      1.1  perseant 		bread(devvp, fsbtodb(osb, daddr), osb->lfs_sumsize, NULL, &bp);
    593      1.1  perseant 		sp = (SEGSUM *)bp->b_data;
    594      1.1  perseant 
    595      1.1  perseant 		/*
    596      1.1  perseant 		 * Could be a superblock instead of a segment summary.
    597      1.1  perseant 		 * XXX should use gseguse, but right now we need to do more
    598      1.1  perseant 		 * setup before we can...fix this
    599      1.1  perseant 		 */
    600      1.1  perseant 		if (sp->ss_magic != SS_MAGIC ||
    601      1.1  perseant 		    sp->ss_ident != osb->lfs_ident ||
    602      1.1  perseant 		    sp->ss_serial < serial ||
    603      1.1  perseant 		    sp->ss_sumsum != cksum(&sp->ss_datasum, osb->lfs_sumsize -
    604      1.1  perseant 			sizeof(sp->ss_sumsum))) {
    605      1.1  perseant 			brelse(bp);
    606      1.1  perseant 			if (flag == 0) {
    607      1.1  perseant 				flag = 1;
    608      1.1  perseant 				daddr += btofsb(osb, LFS_SBPAD);
    609      1.1  perseant 				goto oncemore;
    610      1.1  perseant 			}
    611      1.1  perseant 			break;
    612      1.1  perseant 		}
    613      1.1  perseant 		++serial;
    614      1.1  perseant 		bc = check_summary(osb, sp, daddr, debug, devvp, NULL);
    615      1.1  perseant 		if (bc == 0) {
    616      1.1  perseant 			brelse(bp);
    617      1.1  perseant 			break;
    618      1.1  perseant 		}
    619      1.1  perseant 		assert (bc > 0);
    620      1.1  perseant 		odaddr = daddr;
    621      1.1  perseant 		daddr += btofsb(osb, osb->lfs_sumsize + bc);
    622      1.1  perseant 		if (dtosn(osb, odaddr) != dtosn(osb, daddr) ||
    623      1.1  perseant 		    dtosn(osb, daddr) != dtosn(osb, daddr +
    624      1.1  perseant 			btofsb(osb, osb->lfs_sumsize + osb->lfs_bsize))) {
    625      1.1  perseant 			daddr = sp->ss_next;
    626      1.1  perseant 		}
    627      1.1  perseant 		if (!(sp->ss_flags & SS_CONT))
    628      1.1  perseant 			nodirop_daddr = daddr;
    629      1.1  perseant 		brelse(bp);
    630      1.1  perseant 	}
    631      1.1  perseant 
    632      1.1  perseant 	if (goal == 0)
    633      1.1  perseant 		return nodirop_daddr;
    634      1.1  perseant 	else
    635      1.1  perseant 		return daddr;
    636      1.1  perseant }
    637      1.1  perseant 
    638      1.1  perseant /* Use try_verify to check whether the newer superblock is valid. */
    639      1.1  perseant struct lfs *
    640      1.1  perseant lfs_verify(struct lfs *sb0, struct lfs *sb1, struct uvnode *devvp, int debug)
    641      1.1  perseant {
    642      1.1  perseant 	ufs_daddr_t daddr;
    643      1.1  perseant 	struct lfs *osb, *nsb;
    644      1.1  perseant 
    645      1.1  perseant 	/*
    646      1.1  perseant 	 * Verify the checkpoint of the newer superblock,
    647      1.1  perseant 	 * if the timestamp/serial number of the two superblocks is
    648      1.1  perseant 	 * different.
    649      1.1  perseant 	 */
    650      1.1  perseant 
    651      1.1  perseant 	if (debug)
    652      1.1  perseant 		printf("sb0 %lld, sb1 %lld\n", (long long) sb0->lfs_serial,
    653      1.1  perseant 		    (long long) sb1->lfs_serial);
    654      1.1  perseant 
    655      1.1  perseant 	if ((sb0->lfs_version == 1 &&
    656      1.1  perseant 		sb0->lfs_otstamp != sb1->lfs_otstamp) ||
    657      1.1  perseant 	    (sb0->lfs_version > 1 &&
    658      1.1  perseant 		sb0->lfs_serial != sb1->lfs_serial)) {
    659      1.1  perseant 		if (sb0->lfs_version == 1) {
    660      1.1  perseant 			if (sb0->lfs_otstamp > sb1->lfs_otstamp) {
    661      1.1  perseant 				osb = sb1;
    662      1.1  perseant 				nsb = sb0;
    663      1.1  perseant 			} else {
    664      1.1  perseant 				osb = sb0;
    665      1.1  perseant 				nsb = sb1;
    666      1.1  perseant 			}
    667      1.1  perseant 		} else {
    668      1.1  perseant 			if (sb0->lfs_serial > sb1->lfs_serial) {
    669      1.1  perseant 				osb = sb1;
    670      1.1  perseant 				nsb = sb0;
    671      1.1  perseant 			} else {
    672      1.1  perseant 				osb = sb0;
    673      1.1  perseant 				nsb = sb1;
    674      1.1  perseant 			}
    675      1.1  perseant 		}
    676      1.1  perseant 		if (debug) {
    677      1.1  perseant 			printf("Attempting to verify newer checkpoint...");
    678      1.1  perseant 			fflush(stdout);
    679      1.1  perseant 		}
    680      1.1  perseant 		daddr = try_verify(osb, devvp, nsb->lfs_offset, debug);
    681      1.1  perseant 
    682      1.1  perseant 		if (debug)
    683      1.1  perseant 			printf("done.\n");
    684      1.1  perseant 		if (daddr == nsb->lfs_offset) {
    685      1.8  perseant 			pwarn("** Newer checkpoint verified, recovered %lld seconds of data\n",
    686      1.1  perseant 			    (long long) nsb->lfs_tstamp - (long long) osb->lfs_tstamp);
    687      1.1  perseant 			sbdirty();
    688      1.1  perseant 		} else {
    689      1.8  perseant 			pwarn("** Newer checkpoint invalid, lost %lld seconds of data\n", (long long) nsb->lfs_tstamp - (long long) osb->lfs_tstamp);
    690      1.1  perseant 		}
    691      1.1  perseant 		return (daddr == nsb->lfs_offset ? nsb : osb);
    692      1.1  perseant 	}
    693      1.1  perseant 	/* Nothing to check */
    694      1.1  perseant 	return osb;
    695      1.1  perseant }
    696      1.1  perseant 
    697      1.1  perseant /* Verify a partial-segment summary; return the number of bytes on disk. */
    698      1.1  perseant int
    699      1.1  perseant check_summary(struct lfs *fs, SEGSUM *sp, ufs_daddr_t pseg_addr, int debug,
    700      1.1  perseant 	      struct uvnode *devvp, void (func(ufs_daddr_t, FINFO *)))
    701      1.1  perseant {
    702      1.1  perseant 	FINFO *fp;
    703      1.1  perseant 	int bc;			/* Bytes in partial segment */
    704      1.1  perseant 	int nblocks;
    705      1.1  perseant 	ufs_daddr_t seg_addr, daddr;
    706      1.1  perseant 	ufs_daddr_t *dp, *idp;
    707      1.1  perseant 	struct ubuf *bp;
    708      1.1  perseant 	int i, j, k, datac, len;
    709      1.1  perseant 	long sn;
    710      1.1  perseant 	u_int32_t *datap;
    711      1.1  perseant 	u_int32_t ccksum;
    712      1.1  perseant 
    713      1.1  perseant 	sn = dtosn(fs, pseg_addr);
    714      1.1  perseant 	seg_addr = sntod(fs, sn);
    715      1.1  perseant 
    716      1.1  perseant 	/* We've already checked the sumsum, just do the data bounds and sum */
    717      1.1  perseant 
    718      1.1  perseant 	/* Count the blocks. */
    719      1.1  perseant 	nblocks = howmany(sp->ss_ninos, INOPB(fs));
    720      1.1  perseant 	bc = nblocks << (fs->lfs_version > 1 ? fs->lfs_ffshift : fs->lfs_bshift);
    721      1.1  perseant 	assert(bc >= 0);
    722      1.1  perseant 
    723      1.1  perseant 	fp = (FINFO *) (sp + 1);
    724      1.1  perseant 	for (i = 0; i < sp->ss_nfinfo; i++) {
    725      1.1  perseant 		nblocks += fp->fi_nblocks;
    726      1.1  perseant 		bc += fp->fi_lastlength + ((fp->fi_nblocks - 1)
    727      1.1  perseant 					   << fs->lfs_bshift);
    728      1.1  perseant 		assert(bc >= 0);
    729      1.1  perseant 		fp = (FINFO *) (fp->fi_blocks + fp->fi_nblocks);
    730      1.1  perseant 	}
    731      1.1  perseant 	datap = (u_int32_t *) malloc(nblocks * sizeof(*datap));
    732      1.1  perseant 	datac = 0;
    733      1.1  perseant 
    734      1.1  perseant 	dp = (ufs_daddr_t *) sp;
    735      1.1  perseant 	dp += fs->lfs_sumsize / sizeof(ufs_daddr_t);
    736      1.1  perseant 	dp--;
    737      1.1  perseant 
    738      1.1  perseant 	idp = dp;
    739      1.1  perseant 	daddr = pseg_addr + btofsb(fs, fs->lfs_sumsize);
    740      1.1  perseant 	fp = (FINFO *) (sp + 1);
    741      1.1  perseant 	for (i = 0, j = 0;
    742      1.1  perseant 	     i < sp->ss_nfinfo || j < howmany(sp->ss_ninos, INOPB(fs)); i++) {
    743      1.1  perseant 		if (i >= sp->ss_nfinfo && *idp != daddr) {
    744      1.8  perseant 			pwarn("Not enough inode blocks in pseg at 0x%" PRIx32
    745      1.1  perseant 			      ": found %d, wanted %d\n",
    746      1.1  perseant 			      pseg_addr, j, howmany(sp->ss_ninos, INOPB(fs)));
    747      1.1  perseant 			if (debug)
    748      1.8  perseant 				pwarn("*idp=%x, daddr=%" PRIx32 "\n", *idp,
    749      1.1  perseant 				      daddr);
    750      1.1  perseant 			break;
    751      1.1  perseant 		}
    752      1.1  perseant 		while (j < howmany(sp->ss_ninos, INOPB(fs)) && *idp == daddr) {
    753      1.1  perseant 			bread(devvp, fsbtodb(fs, daddr), fs->lfs_ibsize, NOCRED, &bp);
    754      1.1  perseant 			datap[datac++] = ((u_int32_t *) (bp->b_data))[0];
    755      1.1  perseant 			brelse(bp);
    756      1.1  perseant 
    757      1.1  perseant 			++j;
    758      1.1  perseant 			daddr += btofsb(fs, fs->lfs_ibsize);
    759      1.1  perseant 			--idp;
    760      1.1  perseant 		}
    761      1.1  perseant 		if (i < sp->ss_nfinfo) {
    762      1.1  perseant 			if (func)
    763      1.1  perseant 				func(daddr, fp);
    764      1.1  perseant 			for (k = 0; k < fp->fi_nblocks; k++) {
    765      1.1  perseant 				len = (k == fp->fi_nblocks - 1 ?
    766      1.1  perseant 				       fp->fi_lastlength
    767      1.1  perseant 				       : fs->lfs_bsize);
    768      1.1  perseant 				bread(devvp, fsbtodb(fs, daddr), len, NOCRED, &bp);
    769      1.1  perseant 				datap[datac++] = ((u_int32_t *) (bp->b_data))[0];
    770      1.1  perseant 				brelse(bp);
    771      1.1  perseant 				daddr += btofsb(fs, len);
    772      1.1  perseant 			}
    773      1.1  perseant 			fp = (FINFO *) (fp->fi_blocks + fp->fi_nblocks);
    774      1.1  perseant 		}
    775      1.1  perseant 	}
    776      1.1  perseant 
    777      1.1  perseant 	if (datac != nblocks) {
    778      1.8  perseant 		pwarn("Partial segment at 0x%llx expected %d blocks counted %d\n",
    779      1.1  perseant 		    (long long) pseg_addr, nblocks, datac);
    780      1.1  perseant 	}
    781      1.1  perseant 	ccksum = cksum(datap, nblocks * sizeof(u_int32_t));
    782      1.1  perseant 	/* Check the data checksum */
    783      1.1  perseant 	if (ccksum != sp->ss_datasum) {
    784      1.8  perseant 		pwarn("Partial segment at 0x%" PRIx32 " data checksum"
    785      1.1  perseant 		      " mismatch: given 0x%x, computed 0x%x\n",
    786      1.1  perseant 		      pseg_addr, sp->ss_datasum, ccksum);
    787      1.1  perseant 		free(datap);
    788      1.1  perseant 		return 0;
    789      1.1  perseant 	}
    790      1.1  perseant 	free(datap);
    791      1.1  perseant 	assert(bc >= 0);
    792      1.1  perseant 	return bc;
    793      1.1  perseant }
    794      1.1  perseant 
    795      1.1  perseant /* print message and exit */
    796      1.1  perseant void
    797      1.1  perseant my_vpanic(int fatal, const char *fmt, va_list ap)
    798      1.1  perseant {
    799      1.1  perseant         (void) vprintf(fmt, ap);
    800      1.1  perseant 	exit(8);
    801      1.1  perseant }
    802      1.1  perseant 
    803      1.1  perseant void
    804      1.1  perseant call_panic(const char *fmt, ...)
    805      1.1  perseant {
    806      1.1  perseant 	va_list ap;
    807      1.1  perseant 
    808      1.1  perseant 	va_start(ap, fmt);
    809      1.1  perseant         panic_func(1, fmt, ap);
    810      1.1  perseant 	va_end(ap);
    811      1.1  perseant }
    812