Пример #1
0
/*
 * Release blocks associated with the inode ip and stored in the indirect
 * block bn.  Blocks are free'd in LIFO order up to (but not including)
 * lastbn.  If level is greater than SINGLE, the block is an indirect block
 * and recursive calls to indirtrunc must be used to cleanse other indirect
 * blocks.
 *
 * NB: triple indirect blocks are untested.
 */
int
ffs_indirtrunc(struct inode *ip, daddr64_t lbn, daddr64_t dbn,
    daddr64_t lastbn, int level, long *countp)
{
	int i;
	struct buf *bp;
	struct fs *fs = ip->i_fs;
	struct vnode *vp;
	void *copy = NULL;
	daddr64_t nb, nlbn, last;
	long blkcount, factor;
	int nblocks, blocksreleased = 0;
	int error = 0, allerror = 0;
	int32_t *bap1 = NULL;
#ifdef FFS2
	int64_t *bap2 = NULL;
#endif

	/*
	 * Calculate index in current block of last
	 * block to be kept.  -1 indicates the entire
	 * block so we need not calculate the index.
	 */
	factor = 1;
	for (i = SINGLE; i < level; i++)
		factor *= NINDIR(fs);
	last = lastbn;
	if (lastbn > 0)
		last /= factor;
	nblocks = btodb(fs->fs_bsize);
	/*
	 * Get buffer of block pointers, zero those entries corresponding
	 * to blocks to be free'd, and update on disk copy first.  Since
	 * double(triple) indirect before single(double) indirect, calls
	 * to bmap on these blocks will fail.  However, we already have
	 * the on disk address, so we have to set the b_blkno field
	 * explicitly instead of letting bread do everything for us.
	 */
	vp = ITOV(ip);
	bp = getblk(vp, lbn, (int)fs->fs_bsize, 0, 0);
	if (!(bp->b_flags & (B_DONE | B_DELWRI))) {
		curproc->p_ru.ru_inblock++;		/* pay for read */
		bcstats.pendingreads++;
		bcstats.numreads++;
		bp->b_flags |= B_READ;
		if (bp->b_bcount > bp->b_bufsize)
			panic("ffs_indirtrunc: bad buffer size");
		bp->b_blkno = dbn;
		VOP_STRATEGY(bp);
		error = biowait(bp);
	}
	if (error) {
		brelse(bp);
		*countp = 0;
		return (error);
	}

#ifdef FFS2
	if (ip->i_ump->um_fstype == UM_UFS2)
		bap2 = (int64_t *)bp->b_data;
	else
#endif
		bap1 = (int32_t *)bp->b_data;

	if (lastbn != -1) {
		copy = malloc(fs->fs_bsize, M_TEMP, M_WAITOK);
		bcopy(bp->b_data, copy, (u_int) fs->fs_bsize);

		for (i = last + 1; i < NINDIR(fs); i++)
			BAP_ASSIGN(ip, i, 0);

		if (!DOINGASYNC(vp)) {
			error = bwrite(bp);
			if (error)
				allerror = error;
		} else {
			bawrite(bp);
		}

#ifdef FFS2
		if (ip->i_ump->um_fstype == UM_UFS2)
			bap2 = (int64_t *)copy;
		else
#endif
			bap1 = (int32_t *)copy;
	}

	/*
	 * Recursively free totally unused blocks.
	 */
	for (i = NINDIR(fs) - 1, nlbn = lbn + 1 - i * factor; i > last;
	    i--, nlbn += factor) {
		nb = BAP(ip, i);
		if (nb == 0)
			continue;
		if (level > SINGLE) {
			error = ffs_indirtrunc(ip, nlbn, fsbtodb(fs, nb),
					       (daddr64_t)-1, level - 1,
					       &blkcount);
			if (error)
				allerror = error;
			blocksreleased += blkcount;
		}
		ffs_blkfree(ip, nb, fs->fs_bsize);
		blocksreleased += nblocks;
	}

	/*
	 * Recursively free last partial block.
	 */
	if (level > SINGLE && lastbn >= 0) {
		last = lastbn % factor;
		nb = BAP(ip, i);
		if (nb != 0) {
			error = ffs_indirtrunc(ip, nlbn, fsbtodb(fs, nb),
					       last, level - 1, &blkcount);
			if (error)
				allerror = error;
			blocksreleased += blkcount;
		}
	}
	if (copy != NULL) {
		free(copy, M_TEMP);
	} else {
		bp->b_flags |= B_INVAL;
		brelse(bp);
	}
		
	*countp = blocksreleased;
	return (allerror);
}
Пример #2
0
/*
 * Release blocks associated with the inode ip and stored in the indirect
 * block bn.  Blocks are free'd in LIFO order up to (but not including)
 * lastbn.  If level is greater than SINGLE, the block is an indirect block
 * and recursive calls to indirtrunc must be used to cleanse other indirect
 * blocks.
 *
 * NB: triple indirect blocks are untested.
 */
static int
ffs_indirtrunc(struct inode *ip, daddr_t lbn, daddr_t dbn, daddr_t lastbn,
               int level, int64_t *countp)
{
    int i;
    struct buf *bp;
    struct fs *fs = ip->i_fs;
    int32_t *bap1 = NULL;
    int64_t *bap2 = NULL;
    struct vnode *vp;
    daddr_t nb, nlbn, last;
    char *copy = NULL;
    int64_t blkcount, factor, blocksreleased = 0;
    int nblocks;
    int error = 0, allerror = 0;
    const int needswap = UFS_FSNEEDSWAP(fs);
#define RBAP(ip, i) (((ip)->i_ump->um_fstype == UFS1) ? \
	    ufs_rw32(bap1[i], needswap) : ufs_rw64(bap2[i], needswap))
#define BAP_ASSIGN(ip, i, value)					\
	do {								\
		if ((ip)->i_ump->um_fstype == UFS1)			\
			bap1[i] = (value);				\
		else							\
			bap2[i] = (value);				\
	} while(0)

    /*
     * Calculate index in current block of last
     * block to be kept.  -1 indicates the entire
     * block so we need not calculate the index.
     */
    factor = 1;
    for (i = SINGLE; i < level; i++)
        factor *= FFS_NINDIR(fs);
    last = lastbn;
    if (lastbn > 0)
        last /= factor;
    nblocks = btodb(fs->fs_bsize);
    /*
     * Get buffer of block pointers, zero those entries corresponding
     * to blocks to be free'd, and update on disk copy first.  Since
     * double(triple) indirect before single(double) indirect, calls
     * to bmap on these blocks will fail.  However, we already have
     * the on disk address, so we have to set the b_blkno field
     * explicitly instead of letting bread do everything for us.
     */
    vp = ITOV(ip);
    error = ffs_getblk(vp, lbn, FFS_NOBLK, fs->fs_bsize, false, &bp);
    if (error) {
        *countp = 0;
        return error;
    }
    if (bp->b_oflags & (BO_DONE | BO_DELWRI)) {
        /* Braces must be here in case trace evaluates to nothing. */
        trace(TR_BREADHIT, pack(vp, fs->fs_bsize), lbn);
    } else {
        trace(TR_BREADMISS, pack(vp, fs->fs_bsize), lbn);
        curlwp->l_ru.ru_inblock++;	/* pay for read */
        bp->b_flags |= B_READ;
        bp->b_flags &= ~B_COWDONE;	/* we change blkno below */
        if (bp->b_bcount > bp->b_bufsize)
            panic("ffs_indirtrunc: bad buffer size");
        bp->b_blkno = dbn;
        BIO_SETPRIO(bp, BPRIO_TIMECRITICAL);
        VOP_STRATEGY(vp, bp);
        error = biowait(bp);
        if (error == 0)
            error = fscow_run(bp, true);
    }
    if (error) {
        brelse(bp, 0);
        *countp = 0;
        return (error);
    }

    if (ip->i_ump->um_fstype == UFS1)
        bap1 = (int32_t *)bp->b_data;
    else
        bap2 = (int64_t *)bp->b_data;
    if (lastbn >= 0) {
        copy = kmem_alloc(fs->fs_bsize, KM_SLEEP);
        memcpy((void *)copy, bp->b_data, (u_int)fs->fs_bsize);
        for (i = last + 1; i < FFS_NINDIR(fs); i++)
            BAP_ASSIGN(ip, i, 0);
        error = bwrite(bp);
        if (error)
            allerror = error;
        if (ip->i_ump->um_fstype == UFS1)
            bap1 = (int32_t *)copy;
        else
            bap2 = (int64_t *)copy;
    }

    /*
     * Recursively free totally unused blocks.
     */
    for (i = FFS_NINDIR(fs) - 1, nlbn = lbn + 1 - i * factor; i > last;
            i--, nlbn += factor) {
        nb = RBAP(ip, i);
        if (nb == 0)
            continue;
        if (level > SINGLE) {
            error = ffs_indirtrunc(ip, nlbn, FFS_FSBTODB(fs, nb),
                                   (daddr_t)-1, level - 1,
                                   &blkcount);
            if (error)
                allerror = error;
            blocksreleased += blkcount;
        }
        if ((ip->i_ump->um_mountp->mnt_wapbl) &&
                ((level > SINGLE) || (ITOV(ip)->v_type != VREG))) {
            UFS_WAPBL_REGISTER_DEALLOCATION(ip->i_ump->um_mountp,
                                            FFS_FSBTODB(fs, nb), fs->fs_bsize);
        } else
            ffs_blkfree(fs, ip->i_devvp, nb, fs->fs_bsize,
                        ip->i_number);
        blocksreleased += nblocks;
    }

    /*
     * Recursively free last partial block.
     */
    if (level > SINGLE && lastbn >= 0) {
        last = lastbn % factor;
        nb = RBAP(ip, i);
        if (nb != 0) {
            error = ffs_indirtrunc(ip, nlbn, FFS_FSBTODB(fs, nb),
                                   last, level - 1, &blkcount);
            if (error)
                allerror = error;
            blocksreleased += blkcount;
        }
    }

    if (copy != NULL) {
        kmem_free(copy, fs->fs_bsize);
    } else {
        brelse(bp, BC_INVAL);
    }

    *countp = blocksreleased;
    return (allerror);
}