Home | History | Annotate | Line # | Download | only in ffs
ffs_inode.c revision 1.87
      1 /*	$NetBSD: ffs_inode.c,v 1.87 2007/06/05 12:31:34 yamt Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1982, 1986, 1989, 1993
      5  *	The Regents of the University of California.  All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  * 3. Neither the name of the University nor the names of its contributors
     16  *    may be used to endorse or promote products derived from this software
     17  *    without specific prior written permission.
     18  *
     19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29  * SUCH DAMAGE.
     30  *
     31  *	@(#)ffs_inode.c	8.13 (Berkeley) 4/21/95
     32  */
     33 
     34 #include <sys/cdefs.h>
     35 __KERNEL_RCSID(0, "$NetBSD: ffs_inode.c,v 1.87 2007/06/05 12:31:34 yamt Exp $");
     36 
     37 #if defined(_KERNEL_OPT)
     38 #include "opt_ffs.h"
     39 #include "opt_quota.h"
     40 #endif
     41 
     42 #include <sys/param.h>
     43 #include <sys/systm.h>
     44 #include <sys/mount.h>
     45 #include <sys/proc.h>
     46 #include <sys/file.h>
     47 #include <sys/buf.h>
     48 #include <sys/vnode.h>
     49 #include <sys/kernel.h>
     50 #include <sys/malloc.h>
     51 #include <sys/trace.h>
     52 #include <sys/resourcevar.h>
     53 #include <sys/kauth.h>
     54 
     55 #include <ufs/ufs/quota.h>
     56 #include <ufs/ufs/inode.h>
     57 #include <ufs/ufs/ufsmount.h>
     58 #include <ufs/ufs/ufs_extern.h>
     59 #include <ufs/ufs/ufs_bswap.h>
     60 
     61 #include <ufs/ffs/fs.h>
     62 #include <ufs/ffs/ffs_extern.h>
     63 
     64 static int ffs_indirtrunc(struct inode *, daddr_t, daddr_t, daddr_t, int,
     65 			  int64_t *);
     66 
     67 /*
     68  * Update the access, modified, and inode change times as specified
     69  * by the IN_ACCESS, IN_UPDATE, and IN_CHANGE flags respectively.
     70  * The IN_MODIFIED flag is used to specify that the inode needs to be
     71  * updated but that the times have already been set. The access
     72  * and modified times are taken from the second and third parameters;
     73  * the inode change time is always taken from the current time. If
     74  * UPDATE_WAIT flag is set, or UPDATE_DIROP is set and we are not doing
     75  * softupdates, then wait for the disk write of the inode to complete.
     76  */
     77 
     78 int
     79 ffs_update(struct vnode *vp, const struct timespec *acc,
     80     const struct timespec *mod, int updflags)
     81 {
     82 	struct fs *fs;
     83 	struct buf *bp;
     84 	struct inode *ip;
     85 	int error;
     86 	void *cp;
     87 	int waitfor, flags;
     88 
     89 	if (vp->v_mount->mnt_flag & MNT_RDONLY)
     90 		return (0);
     91 	ip = VTOI(vp);
     92 	FFS_ITIMES(ip, acc, mod, NULL);
     93 	if (updflags & UPDATE_CLOSE)
     94 		flags = ip->i_flag & (IN_MODIFIED | IN_ACCESSED);
     95 	else
     96 		flags = ip->i_flag & IN_MODIFIED;
     97 	if (flags == 0)
     98 		return (0);
     99 	fs = ip->i_fs;
    100 
    101 	if ((flags & IN_MODIFIED) != 0 &&
    102 	    (vp->v_mount->mnt_flag & MNT_ASYNC) == 0) {
    103 		waitfor = updflags & UPDATE_WAIT;
    104 		if ((updflags & UPDATE_DIROP) && !DOINGSOFTDEP(vp))
    105 			waitfor |= UPDATE_WAIT;
    106 	} else
    107 		waitfor = 0;
    108 
    109 	/*
    110 	 * Ensure that uid and gid are correct. This is a temporary
    111 	 * fix until fsck has been changed to do the update.
    112 	 */
    113 	if (fs->fs_magic == FS_UFS1_MAGIC &&			/* XXX */
    114 	    fs->fs_old_inodefmt < FS_44INODEFMT) {		/* XXX */
    115 		ip->i_ffs1_ouid = ip->i_uid;	/* XXX */
    116 		ip->i_ffs1_ogid = ip->i_gid;	/* XXX */
    117 	}							/* XXX */
    118 	error = bread(ip->i_devvp,
    119 		      fsbtodb(fs, ino_to_fsba(fs, ip->i_number)),
    120 		      (int)fs->fs_bsize, NOCRED, &bp);
    121 	if (error) {
    122 		brelse(bp);
    123 		return (error);
    124 	}
    125 	ip->i_flag &= ~(IN_MODIFIED | IN_ACCESSED);
    126 	if (DOINGSOFTDEP(vp))
    127 		softdep_update_inodeblock(ip, bp, waitfor);
    128 	else if (ip->i_ffs_effnlink != ip->i_nlink)
    129 		panic("ffs_update: bad link cnt");
    130 	if (fs->fs_magic == FS_UFS1_MAGIC) {
    131 		cp = (char *)bp->b_data +
    132 		    (ino_to_fsbo(fs, ip->i_number) * DINODE1_SIZE);
    133 #ifdef FFS_EI
    134 		if (UFS_FSNEEDSWAP(fs))
    135 			ffs_dinode1_swap(ip->i_din.ffs1_din,
    136 			    (struct ufs1_dinode *)cp);
    137 		else
    138 #endif
    139 			memcpy(cp, ip->i_din.ffs1_din, DINODE1_SIZE);
    140 	} else {
    141 		cp = (char *)bp->b_data +
    142 		    (ino_to_fsbo(fs, ip->i_number) * DINODE2_SIZE);
    143 #ifdef FFS_EI
    144 		if (UFS_FSNEEDSWAP(fs))
    145 			ffs_dinode2_swap(ip->i_din.ffs2_din,
    146 			    (struct ufs2_dinode *)cp);
    147 		else
    148 #endif
    149 			memcpy(cp, ip->i_din.ffs2_din, DINODE2_SIZE);
    150 	}
    151 	if (waitfor) {
    152 		return (bwrite(bp));
    153 	} else {
    154 		bdwrite(bp);
    155 		return (0);
    156 	}
    157 }
    158 
    159 #define	SINGLE	0	/* index of single indirect block */
    160 #define	DOUBLE	1	/* index of double indirect block */
    161 #define	TRIPLE	2	/* index of triple indirect block */
    162 /*
    163  * Truncate the inode oip to at most length size, freeing the
    164  * disk blocks.
    165  */
    166 int
    167 ffs_truncate(struct vnode *ovp, off_t length, int ioflag, kauth_cred_t cred,
    168     struct lwp *l)
    169 {
    170 	daddr_t lastblock;
    171 	struct inode *oip = VTOI(ovp);
    172 	daddr_t bn, lastiblock[NIADDR], indir_lbn[NIADDR];
    173 	daddr_t blks[NDADDR + NIADDR];
    174 	struct fs *fs;
    175 	int offset, pgoffset, level;
    176 	int64_t count, blocksreleased = 0;
    177 	int i, aflag, nblocks;
    178 	int error, allerror = 0;
    179 	off_t osize;
    180 	int sync;
    181 	struct ufsmount *ump = oip->i_ump;
    182 
    183 	if (ovp->v_type == VCHR || ovp->v_type == VBLK ||
    184 	    ovp->v_type == VFIFO || ovp->v_type == VSOCK) {
    185 		KASSERT(oip->i_size == 0);
    186 		return 0;
    187 	}
    188 
    189 	if (length < 0)
    190 		return (EINVAL);
    191 
    192 	if (ovp->v_type == VLNK &&
    193 	    (oip->i_size < ump->um_maxsymlinklen ||
    194 	     (ump->um_maxsymlinklen == 0 && DIP(oip, blocks) == 0))) {
    195 		KDASSERT(length == 0);
    196 		memset(SHORTLINK(oip), 0, (size_t)oip->i_size);
    197 		oip->i_size = 0;
    198 		DIP_ASSIGN(oip, size, 0);
    199 		oip->i_flag |= IN_CHANGE | IN_UPDATE;
    200 		return (ffs_update(ovp, NULL, NULL, 0));
    201 	}
    202 	if (oip->i_size == length) {
    203 		oip->i_flag |= IN_CHANGE | IN_UPDATE;
    204 		return (ffs_update(ovp, NULL, NULL, 0));
    205 	}
    206 #ifdef QUOTA
    207 	if ((error = getinoquota(oip)) != 0)
    208 		return (error);
    209 #endif
    210 	fs = oip->i_fs;
    211 	if (length > ump->um_maxfilesize)
    212 		return (EFBIG);
    213 
    214 	if ((oip->i_flags & SF_SNAPSHOT) != 0)
    215 		ffs_snapremove(ovp);
    216 
    217 	osize = oip->i_size;
    218 	aflag = ioflag & IO_SYNC ? B_SYNC : 0;
    219 
    220 	/*
    221 	 * Lengthen the size of the file. We must ensure that the
    222 	 * last byte of the file is allocated. Since the smallest
    223 	 * value of osize is 0, length will be at least 1.
    224 	 */
    225 
    226 	if (osize < length) {
    227 		if (lblkno(fs, osize) < NDADDR &&
    228 		    lblkno(fs, osize) != lblkno(fs, length) &&
    229 		    blkroundup(fs, osize) != osize) {
    230 			off_t eob;
    231 
    232 			eob = blkroundup(fs, osize);
    233 			uvm_vnp_setwritesize(ovp, eob);
    234 			error = ufs_balloc_range(ovp, osize, eob - osize,
    235 			    cred, aflag);
    236 			if (error)
    237 				return error;
    238 			if (ioflag & IO_SYNC) {
    239 				simple_lock(&ovp->v_interlock);
    240 				VOP_PUTPAGES(ovp,
    241 				    trunc_page(osize & fs->fs_bmask),
    242 				    round_page(eob), PGO_CLEANIT | PGO_SYNCIO);
    243 			}
    244 		}
    245 		uvm_vnp_setwritesize(ovp, length);
    246 		error = ufs_balloc_range(ovp, length - 1, 1, cred, aflag);
    247 		if (error) {
    248 			(void) ffs_truncate(ovp, osize, ioflag & IO_SYNC,
    249 			    cred, l);
    250 			return (error);
    251 		}
    252 		uvm_vnp_setsize(ovp, length);
    253 		oip->i_flag |= IN_CHANGE | IN_UPDATE;
    254 		KASSERT(ovp->v_size == oip->i_size);
    255 		return (ffs_update(ovp, NULL, NULL, 0));
    256 	}
    257 
    258 	/*
    259 	 * When truncating a regular file down to a non-block-aligned size,
    260 	 * we must zero the part of last block which is past the new EOF.
    261 	 * We must synchronously flush the zeroed pages to disk
    262 	 * since the new pages will be invalidated as soon as we
    263 	 * inform the VM system of the new, smaller size.
    264 	 * We must do this before acquiring the GLOCK, since fetching
    265 	 * the pages will acquire the GLOCK internally.
    266 	 * So there is a window where another thread could see a whole
    267 	 * zeroed page past EOF, but that's life.
    268 	 */
    269 
    270 	offset = blkoff(fs, length);
    271 	pgoffset = length & PAGE_MASK;
    272 	if (ovp->v_type == VREG && (pgoffset != 0 || offset != 0) &&
    273 	    osize > length) {
    274 		daddr_t lbn;
    275 		voff_t eoz;
    276 		int size;
    277 
    278 		if (offset != 0) {
    279 			error = ufs_balloc_range(ovp, length - 1, 1, cred,
    280 			    aflag);
    281 			if (error)
    282 				return error;
    283 		}
    284 		lbn = lblkno(fs, length);
    285 		size = blksize(fs, oip, lbn);
    286 		eoz = MIN(MAX(lblktosize(fs, lbn) + size, round_page(pgoffset)),
    287 		    osize);
    288 		uvm_vnp_zerorange(ovp, length, eoz - length);
    289 		if (round_page(eoz) > round_page(length)) {
    290 			simple_lock(&ovp->v_interlock);
    291 			error = VOP_PUTPAGES(ovp, round_page(length),
    292 			    round_page(eoz),
    293 			    PGO_CLEANIT | PGO_DEACTIVATE |
    294 			    ((ioflag & IO_SYNC) ? PGO_SYNCIO : 0));
    295 			if (error)
    296 				return error;
    297 		}
    298 	}
    299 
    300 	genfs_node_wrlock(ovp);
    301 
    302 	if (DOINGSOFTDEP(ovp)) {
    303 		if (length > 0) {
    304 			/*
    305 			 * If a file is only partially truncated, then
    306 			 * we have to clean up the data structures
    307 			 * describing the allocation past the truncation
    308 			 * point. Finding and deallocating those structures
    309 			 * is a lot of work. Since partial truncation occurs
    310 			 * rarely, we solve the problem by syncing the file
    311 			 * so that it will have no data structures left.
    312 			 */
    313 			if ((error = VOP_FSYNC(ovp, cred, FSYNC_WAIT,
    314 			    0, 0, l)) != 0) {
    315 				genfs_node_unlock(ovp);
    316 				return (error);
    317 			}
    318 			if (oip->i_flag & IN_SPACECOUNTED)
    319 				fs->fs_pendingblocks -= DIP(oip, blocks);
    320 		} else {
    321 			uvm_vnp_setsize(ovp, length);
    322 #ifdef QUOTA
    323  			(void) chkdq(oip, -DIP(oip, blocks), NOCRED, 0);
    324 #endif
    325 			softdep_setup_freeblocks(oip, length, 0);
    326 			(void) vinvalbuf(ovp, 0, cred, l, 0, 0);
    327 			genfs_node_unlock(ovp);
    328 			oip->i_flag |= IN_CHANGE | IN_UPDATE;
    329 			return (ffs_update(ovp, NULL, NULL, 0));
    330 		}
    331 	}
    332 	oip->i_size = length;
    333 	DIP_ASSIGN(oip, size, length);
    334 	uvm_vnp_setsize(ovp, length);
    335 	/*
    336 	 * Calculate index into inode's block list of
    337 	 * last direct and indirect blocks (if any)
    338 	 * which we want to keep.  Lastblock is -1 when
    339 	 * the file is truncated to 0.
    340 	 */
    341 	lastblock = lblkno(fs, length + fs->fs_bsize - 1) - 1;
    342 	lastiblock[SINGLE] = lastblock - NDADDR;
    343 	lastiblock[DOUBLE] = lastiblock[SINGLE] - NINDIR(fs);
    344 	lastiblock[TRIPLE] = lastiblock[DOUBLE] - NINDIR(fs) * NINDIR(fs);
    345 	nblocks = btodb(fs->fs_bsize);
    346 	/*
    347 	 * Update file and block pointers on disk before we start freeing
    348 	 * blocks.  If we crash before free'ing blocks below, the blocks
    349 	 * will be returned to the free list.  lastiblock values are also
    350 	 * normalized to -1 for calls to ffs_indirtrunc below.
    351 	 */
    352 	sync = 0;
    353 	for (level = TRIPLE; level >= SINGLE; level--) {
    354 		blks[NDADDR + level] = DIP(oip, ib[level]);
    355 		if (lastiblock[level] < 0 && blks[NDADDR + level] != 0) {
    356 			sync = 1;
    357 			DIP_ASSIGN(oip, ib[level], 0);
    358 			lastiblock[level] = -1;
    359 		}
    360 	}
    361 	for (i = 0; i < NDADDR; i++) {
    362 		blks[i] = DIP(oip, db[i]);
    363 		if (i > lastblock && blks[i] != 0) {
    364 			sync = 1;
    365 			DIP_ASSIGN(oip, db[i], 0);
    366 		}
    367 	}
    368 	oip->i_flag |= IN_CHANGE | IN_UPDATE;
    369 	if (sync) {
    370 		error = ffs_update(ovp, NULL, NULL, UPDATE_WAIT);
    371 		if (error && !allerror)
    372 			allerror = error;
    373 	}
    374 
    375 	/*
    376 	 * Having written the new inode to disk, save its new configuration
    377 	 * and put back the old block pointers long enough to process them.
    378 	 * Note that we save the new block configuration so we can check it
    379 	 * when we are done.
    380 	 */
    381 	for (i = 0; i < NDADDR; i++) {
    382 		bn = DIP(oip, db[i]);
    383 		DIP_ASSIGN(oip, db[i], blks[i]);
    384 		blks[i] = bn;
    385 	}
    386 	for (i = 0; i < NIADDR; i++) {
    387 		bn = DIP(oip, ib[i]);
    388 		DIP_ASSIGN(oip, ib[i], blks[NDADDR + i]);
    389 		blks[NDADDR + i] = bn;
    390 	}
    391 
    392 	oip->i_size = osize;
    393 	DIP_ASSIGN(oip, size, osize);
    394 	error = vtruncbuf(ovp, lastblock + 1, 0, 0);
    395 	if (error && !allerror)
    396 		allerror = error;
    397 
    398 	/*
    399 	 * Indirect blocks first.
    400 	 */
    401 	indir_lbn[SINGLE] = -NDADDR;
    402 	indir_lbn[DOUBLE] = indir_lbn[SINGLE] - NINDIR(fs) - 1;
    403 	indir_lbn[TRIPLE] = indir_lbn[DOUBLE] - NINDIR(fs) * NINDIR(fs) - 1;
    404 	for (level = TRIPLE; level >= SINGLE; level--) {
    405 		if (oip->i_ump->um_fstype == UFS1)
    406 			bn = ufs_rw32(oip->i_ffs1_ib[level],UFS_FSNEEDSWAP(fs));
    407 		else
    408 			bn = ufs_rw64(oip->i_ffs2_ib[level],UFS_FSNEEDSWAP(fs));
    409 		if (bn != 0) {
    410 			error = ffs_indirtrunc(oip, indir_lbn[level],
    411 			    fsbtodb(fs, bn), lastiblock[level], level, &count);
    412 			if (error)
    413 				allerror = error;
    414 			blocksreleased += count;
    415 			if (lastiblock[level] < 0) {
    416 				DIP_ASSIGN(oip, ib[level], 0);
    417 				ffs_blkfree(fs, oip->i_devvp, bn, fs->fs_bsize,
    418 				    oip->i_number);
    419 				blocksreleased += nblocks;
    420 			}
    421 		}
    422 		if (lastiblock[level] >= 0)
    423 			goto done;
    424 	}
    425 
    426 	/*
    427 	 * All whole direct blocks or frags.
    428 	 */
    429 	for (i = NDADDR - 1; i > lastblock; i--) {
    430 		long bsize;
    431 
    432 		if (oip->i_ump->um_fstype == UFS1)
    433 			bn = ufs_rw32(oip->i_ffs1_db[i], UFS_FSNEEDSWAP(fs));
    434 		else
    435 			bn = ufs_rw64(oip->i_ffs2_db[i], UFS_FSNEEDSWAP(fs));
    436 		if (bn == 0)
    437 			continue;
    438 		DIP_ASSIGN(oip, db[i], 0);
    439 		bsize = blksize(fs, oip, i);
    440 		ffs_blkfree(fs, oip->i_devvp, bn, bsize, oip->i_number);
    441 		blocksreleased += btodb(bsize);
    442 	}
    443 	if (lastblock < 0)
    444 		goto done;
    445 
    446 	/*
    447 	 * Finally, look for a change in size of the
    448 	 * last direct block; release any frags.
    449 	 */
    450 	if (oip->i_ump->um_fstype == UFS1)
    451 		bn = ufs_rw32(oip->i_ffs1_db[lastblock], UFS_FSNEEDSWAP(fs));
    452 	else
    453 		bn = ufs_rw64(oip->i_ffs2_db[lastblock], UFS_FSNEEDSWAP(fs));
    454 	if (bn != 0) {
    455 		long oldspace, newspace;
    456 
    457 		/*
    458 		 * Calculate amount of space we're giving
    459 		 * back as old block size minus new block size.
    460 		 */
    461 		oldspace = blksize(fs, oip, lastblock);
    462 		oip->i_size = length;
    463 		DIP_ASSIGN(oip, size, length);
    464 		newspace = blksize(fs, oip, lastblock);
    465 		if (newspace == 0)
    466 			panic("itrunc: newspace");
    467 		if (oldspace - newspace > 0) {
    468 			/*
    469 			 * Block number of space to be free'd is
    470 			 * the old block # plus the number of frags
    471 			 * required for the storage we're keeping.
    472 			 */
    473 			bn += numfrags(fs, newspace);
    474 			ffs_blkfree(fs, oip->i_devvp, bn, oldspace - newspace,
    475 			    oip->i_number);
    476 			blocksreleased += btodb(oldspace - newspace);
    477 		}
    478 	}
    479 
    480 done:
    481 #ifdef DIAGNOSTIC
    482 	for (level = SINGLE; level <= TRIPLE; level++)
    483 		if (blks[NDADDR + level] != DIP(oip, ib[level]))
    484 			panic("itrunc1");
    485 	for (i = 0; i < NDADDR; i++)
    486 		if (blks[i] != DIP(oip, db[i]))
    487 			panic("itrunc2");
    488 	if (length == 0 &&
    489 	    (!LIST_EMPTY(&ovp->v_cleanblkhd) || !LIST_EMPTY(&ovp->v_dirtyblkhd)))
    490 		panic("itrunc3");
    491 #endif /* DIAGNOSTIC */
    492 	/*
    493 	 * Put back the real size.
    494 	 */
    495 	oip->i_size = length;
    496 	DIP_ASSIGN(oip, size, length);
    497 	DIP_ADD(oip, blocks, -blocksreleased);
    498 	genfs_node_unlock(ovp);
    499 	oip->i_flag |= IN_CHANGE;
    500 #ifdef QUOTA
    501 	(void) chkdq(oip, -blocksreleased, NOCRED, 0);
    502 #endif
    503 	KASSERT(ovp->v_type != VREG || ovp->v_size == oip->i_size);
    504 	return (allerror);
    505 }
    506 
    507 /*
    508  * Release blocks associated with the inode ip and stored in the indirect
    509  * block bn.  Blocks are free'd in LIFO order up to (but not including)
    510  * lastbn.  If level is greater than SINGLE, the block is an indirect block
    511  * and recursive calls to indirtrunc must be used to cleanse other indirect
    512  * blocks.
    513  *
    514  * NB: triple indirect blocks are untested.
    515  */
    516 static int
    517 ffs_indirtrunc(struct inode *ip, daddr_t lbn, daddr_t dbn, daddr_t lastbn,
    518     int level, int64_t *countp)
    519 {
    520 	int i;
    521 	struct buf *bp;
    522 	struct fs *fs = ip->i_fs;
    523 	int32_t *bap1 = NULL;
    524 	int64_t *bap2 = NULL;
    525 	struct vnode *vp;
    526 	daddr_t nb, nlbn, last;
    527 	char *copy = NULL;
    528 	int64_t blkcount, factor, blocksreleased = 0;
    529 	int nblocks;
    530 	int error = 0, allerror = 0;
    531 #ifdef FFS_EI
    532 	const int needswap = UFS_FSNEEDSWAP(fs);
    533 #endif
    534 #define RBAP(ip, i) (((ip)->i_ump->um_fstype == UFS1) ? \
    535 	    ufs_rw32(bap1[i], needswap) : ufs_rw64(bap2[i], needswap))
    536 #define BAP_ASSIGN(ip, i, value)					\
    537 	do {								\
    538 		if ((ip)->i_ump->um_fstype == UFS1)			\
    539 			bap1[i] = (value);				\
    540 		else							\
    541 			bap2[i] = (value);				\
    542 	} while(0)
    543 
    544 	/*
    545 	 * Calculate index in current block of last
    546 	 * block to be kept.  -1 indicates the entire
    547 	 * block so we need not calculate the index.
    548 	 */
    549 	factor = 1;
    550 	for (i = SINGLE; i < level; i++)
    551 		factor *= NINDIR(fs);
    552 	last = lastbn;
    553 	if (lastbn > 0)
    554 		last /= factor;
    555 	nblocks = btodb(fs->fs_bsize);
    556 	/*
    557 	 * Get buffer of block pointers, zero those entries corresponding
    558 	 * to blocks to be free'd, and update on disk copy first.  Since
    559 	 * double(triple) indirect before single(double) indirect, calls
    560 	 * to bmap on these blocks will fail.  However, we already have
    561 	 * the on disk address, so we have to set the b_blkno field
    562 	 * explicitly instead of letting bread do everything for us.
    563 	 */
    564 	vp = ITOV(ip);
    565 	bp = getblk(vp, lbn, (int)fs->fs_bsize, 0, 0);
    566 	if (bp->b_flags & (B_DONE | B_DELWRI)) {
    567 		/* Braces must be here in case trace evaluates to nothing. */
    568 		trace(TR_BREADHIT, pack(vp, fs->fs_bsize), lbn);
    569 	} else {
    570 		trace(TR_BREADMISS, pack(vp, fs->fs_bsize), lbn);
    571 		curproc->p_stats->p_ru.ru_inblock++;	/* pay for read */
    572 		bp->b_flags |= B_READ;
    573 		if (bp->b_bcount > bp->b_bufsize)
    574 			panic("ffs_indirtrunc: bad buffer size");
    575 		bp->b_blkno = dbn;
    576 		BIO_SETPRIO(bp, BPRIO_TIMECRITICAL);
    577 		VOP_STRATEGY(vp, bp);
    578 		error = biowait(bp);
    579 	}
    580 	if (error) {
    581 		brelse(bp);
    582 		*countp = 0;
    583 		return (error);
    584 	}
    585 
    586 	if (ip->i_ump->um_fstype == UFS1)
    587 		bap1 = (int32_t *)bp->b_data;
    588 	else
    589 		bap2 = (int64_t *)bp->b_data;
    590 	if (lastbn >= 0) {
    591 		copy = malloc(fs->fs_bsize, M_TEMP, M_WAITOK);
    592 		memcpy((void *)copy, bp->b_data, (u_int)fs->fs_bsize);
    593 		for (i = last + 1; i < NINDIR(fs); i++)
    594 			BAP_ASSIGN(ip, i, 0);
    595 		error = bwrite(bp);
    596 		if (error)
    597 			allerror = error;
    598 		if (ip->i_ump->um_fstype == UFS1)
    599 			bap1 = (int32_t *)copy;
    600 		else
    601 			bap2 = (int64_t *)copy;
    602 	}
    603 
    604 	/*
    605 	 * Recursively free totally unused blocks.
    606 	 */
    607 	for (i = NINDIR(fs) - 1, nlbn = lbn + 1 - i * factor; i > last;
    608 	    i--, nlbn += factor) {
    609 		nb = RBAP(ip, i);
    610 		if (nb == 0)
    611 			continue;
    612 		if (level > SINGLE) {
    613 			error = ffs_indirtrunc(ip, nlbn, fsbtodb(fs, nb),
    614 					       (daddr_t)-1, level - 1,
    615 					       &blkcount);
    616 			if (error)
    617 				allerror = error;
    618 			blocksreleased += blkcount;
    619 		}
    620 		ffs_blkfree(fs, ip->i_devvp, nb, fs->fs_bsize, ip->i_number);
    621 		blocksreleased += nblocks;
    622 	}
    623 
    624 	/*
    625 	 * Recursively free last partial block.
    626 	 */
    627 	if (level > SINGLE && lastbn >= 0) {
    628 		last = lastbn % factor;
    629 		nb = RBAP(ip, i);
    630 		if (nb != 0) {
    631 			error = ffs_indirtrunc(ip, nlbn, fsbtodb(fs, nb),
    632 					       last, level - 1, &blkcount);
    633 			if (error)
    634 				allerror = error;
    635 			blocksreleased += blkcount;
    636 		}
    637 	}
    638 
    639 	if (copy != NULL) {
    640 		FREE(copy, M_TEMP);
    641 	} else {
    642 		bp->b_flags |= B_INVAL;
    643 		brelse(bp);
    644 	}
    645 
    646 	*countp = blocksreleased;
    647 	return (allerror);
    648 }
    649 
    650 void
    651 ffs_itimes(struct inode *ip, const struct timespec *acc,
    652     const struct timespec *mod, const struct timespec *cre)
    653 {
    654 	struct timespec now;
    655 
    656 	if (!(ip->i_flag & (IN_ACCESS | IN_CHANGE | IN_UPDATE | IN_MODIFY))) {
    657 		return;
    658 	}
    659 
    660 	vfs_timestamp(&now);
    661 	if (ip->i_flag & IN_ACCESS) {
    662 		if (acc == NULL)
    663 			acc = &now;
    664 		DIP_ASSIGN(ip, atime, acc->tv_sec);
    665 		DIP_ASSIGN(ip, atimensec, acc->tv_nsec);
    666 	}
    667 	if (ip->i_flag & (IN_UPDATE | IN_MODIFY)) {
    668 		if ((ip->i_flags & SF_SNAPSHOT) == 0) {
    669 			if (mod == NULL)
    670 				mod = &now;
    671 			DIP_ASSIGN(ip, mtime, mod->tv_sec);
    672 			DIP_ASSIGN(ip, mtimensec, mod->tv_nsec);
    673 		}
    674 		ip->i_modrev++;
    675 	}
    676 	if (ip->i_flag & (IN_CHANGE | IN_MODIFY)) {
    677 		if (cre == NULL)
    678 			cre = &now;
    679 		DIP_ASSIGN(ip, ctime, cre->tv_sec);
    680 		DIP_ASSIGN(ip, ctimensec, cre->tv_nsec);
    681 	}
    682 	if (ip->i_flag & (IN_ACCESS | IN_MODIFY))
    683 		ip->i_flag |= IN_ACCESSED;
    684 	if (ip->i_flag & (IN_UPDATE | IN_CHANGE))
    685 		ip->i_flag |= IN_MODIFIED;
    686 	ip->i_flag &= ~(IN_ACCESS | IN_CHANGE | IN_UPDATE | IN_MODIFY);
    687 }
    688