Home | History | Annotate | Line # | Download | only in lfs
lfs_inode.c revision 1.36.2.1
      1  1.36.2.1   minoura /*	$NetBSD: lfs_inode.c,v 1.36.2.1 2000/06/22 17:10:37 minoura Exp $	*/
      2       1.2       cgd 
      3      1.18  perseant /*-
      4      1.18  perseant  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5      1.18  perseant  * All rights reserved.
      6      1.18  perseant  *
      7      1.18  perseant  * This code is derived from software contributed to The NetBSD Foundation
      8      1.18  perseant  * by Konrad E. Schroder <perseant (at) hhhh.org>.
      9      1.18  perseant  *
     10      1.18  perseant  * Redistribution and use in source and binary forms, with or without
     11      1.18  perseant  * modification, are permitted provided that the following conditions
     12      1.18  perseant  * are met:
     13      1.18  perseant  * 1. Redistributions of source code must retain the above copyright
     14      1.18  perseant  *    notice, this list of conditions and the following disclaimer.
     15      1.18  perseant  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.18  perseant  *    notice, this list of conditions and the following disclaimer in the
     17      1.18  perseant  *    documentation and/or other materials provided with the distribution.
     18      1.18  perseant  * 3. All advertising materials mentioning features or use of this software
     19      1.18  perseant  *    must display the following acknowledgement:
     20      1.18  perseant  *      This product includes software developed by the NetBSD
     21      1.18  perseant  *      Foundation, Inc. and its contributors.
     22      1.18  perseant  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23      1.18  perseant  *    contributors may be used to endorse or promote products derived
     24      1.18  perseant  *    from this software without specific prior written permission.
     25      1.18  perseant  *
     26      1.18  perseant  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27      1.18  perseant  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28      1.18  perseant  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29      1.18  perseant  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30      1.18  perseant  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31      1.18  perseant  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32      1.18  perseant  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33      1.18  perseant  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34      1.18  perseant  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35      1.18  perseant  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36      1.18  perseant  * POSSIBILITY OF SUCH DAMAGE.
     37      1.18  perseant  */
     38       1.1   mycroft /*
     39       1.1   mycroft  * Copyright (c) 1986, 1989, 1991, 1993
     40       1.1   mycroft  *	The Regents of the University of California.  All rights reserved.
     41       1.1   mycroft  *
     42       1.1   mycroft  * Redistribution and use in source and binary forms, with or without
     43       1.1   mycroft  * modification, are permitted provided that the following conditions
     44       1.1   mycroft  * are met:
     45       1.1   mycroft  * 1. Redistributions of source code must retain the above copyright
     46       1.1   mycroft  *    notice, this list of conditions and the following disclaimer.
     47       1.1   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     48       1.1   mycroft  *    notice, this list of conditions and the following disclaimer in the
     49       1.1   mycroft  *    documentation and/or other materials provided with the distribution.
     50       1.1   mycroft  * 3. All advertising materials mentioning features or use of this software
     51       1.1   mycroft  *    must display the following acknowledgement:
     52       1.1   mycroft  *	This product includes software developed by the University of
     53       1.1   mycroft  *	California, Berkeley and its contributors.
     54       1.1   mycroft  * 4. Neither the name of the University nor the names of its contributors
     55       1.1   mycroft  *    may be used to endorse or promote products derived from this software
     56       1.1   mycroft  *    without specific prior written permission.
     57       1.1   mycroft  *
     58       1.1   mycroft  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     59       1.1   mycroft  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     60       1.1   mycroft  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     61       1.1   mycroft  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     62       1.1   mycroft  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     63       1.1   mycroft  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     64       1.1   mycroft  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     65       1.1   mycroft  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     66       1.1   mycroft  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     67       1.1   mycroft  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     68       1.1   mycroft  * SUCH DAMAGE.
     69       1.1   mycroft  *
     70      1.12      fvdl  *	@(#)lfs_inode.c	8.9 (Berkeley) 5/8/95
     71       1.1   mycroft  */
     72      1.13    scottr 
     73      1.14    scottr #if defined(_KERNEL) && !defined(_LKM)
     74      1.13    scottr #include "opt_quota.h"
     75      1.14    scottr #endif
     76       1.1   mycroft 
     77       1.1   mycroft #include <sys/param.h>
     78       1.1   mycroft #include <sys/systm.h>
     79       1.1   mycroft #include <sys/mount.h>
     80       1.1   mycroft #include <sys/proc.h>
     81       1.1   mycroft #include <sys/file.h>
     82       1.1   mycroft #include <sys/buf.h>
     83       1.1   mycroft #include <sys/vnode.h>
     84       1.1   mycroft #include <sys/kernel.h>
     85       1.1   mycroft #include <sys/malloc.h>
     86       1.1   mycroft 
     87       1.1   mycroft #include <vm/vm.h>
     88       1.1   mycroft 
     89       1.1   mycroft #include <ufs/ufs/quota.h>
     90       1.1   mycroft #include <ufs/ufs/inode.h>
     91       1.1   mycroft #include <ufs/ufs/ufsmount.h>
     92       1.1   mycroft #include <ufs/ufs/ufs_extern.h>
     93       1.1   mycroft 
     94       1.1   mycroft #include <ufs/lfs/lfs.h>
     95       1.1   mycroft #include <ufs/lfs/lfs_extern.h>
     96       1.1   mycroft 
     97      1.21  perseant static int lfs_vinvalbuf __P((struct vnode *, struct ucred *, struct proc *, ufs_daddr_t));
     98      1.35  perseant extern int locked_queue_count;
     99      1.35  perseant extern long locked_queue_bytes;
    100      1.21  perseant 
    101       1.1   mycroft /* Search a block for a specific dinode. */
    102       1.1   mycroft struct dinode *
    103      1.30  perseant lfs_ifind(fs, ino, bp)
    104       1.1   mycroft 	struct lfs *fs;
    105       1.1   mycroft 	ino_t ino;
    106      1.30  perseant 	struct buf *bp;
    107       1.1   mycroft {
    108      1.32  augustss 	int cnt;
    109      1.32  augustss 	struct dinode *dip = (struct dinode *)bp->b_data;
    110      1.32  augustss 	struct dinode *ldip;
    111      1.18  perseant 
    112       1.1   mycroft 	for (cnt = INOPB(fs), ldip = dip + (cnt - 1); cnt--; --ldip)
    113       1.1   mycroft 		if (ldip->di_inumber == ino)
    114       1.1   mycroft 			return (ldip);
    115      1.18  perseant 
    116      1.30  perseant 	printf("offset is %d (seg %d)\n", fs->lfs_offset, datosn(fs,fs->lfs_offset));
    117      1.30  perseant 	printf("block is %d (seg %d)\n", bp->b_blkno, datosn(fs,bp->b_blkno));
    118       1.1   mycroft 	panic("lfs_ifind: dinode %u not found", ino);
    119       1.1   mycroft 	/* NOTREACHED */
    120       1.1   mycroft }
    121       1.1   mycroft 
    122       1.1   mycroft int
    123       1.4  christos lfs_update(v)
    124       1.4  christos 	void *v;
    125       1.4  christos {
    126       1.1   mycroft 	struct vop_update_args /* {
    127      1.18  perseant 				  struct vnode *a_vp;
    128      1.18  perseant 				  struct timespec *a_access;
    129      1.18  perseant 				  struct timespec *a_modify;
    130      1.36  perseant 				  int a_flags;
    131      1.18  perseant 				  } */ *ap = v;
    132       1.1   mycroft 	struct inode *ip;
    133      1.12      fvdl 	struct vnode *vp = ap->a_vp;
    134      1.18  perseant 	int mod, oflag;
    135       1.6   mycroft 	struct timespec ts;
    136      1.25  perseant 	struct lfs *fs = VFSTOUFS(vp->v_mount)->um_lfs;
    137      1.18  perseant 
    138      1.12      fvdl 	if (vp->v_mount->mnt_flag & MNT_RDONLY)
    139       1.1   mycroft 		return (0);
    140      1.12      fvdl 	ip = VTOI(vp);
    141      1.18  perseant 
    142      1.18  perseant 	/*
    143      1.18  perseant 	 * If we are called from vinvalbuf, and the file's blocks have
    144      1.18  perseant 	 * already been scheduled for writing, but the writes have not
    145      1.18  perseant 	 * yet completed, lfs_vflush will not be called, and vinvalbuf
    146      1.18  perseant 	 * will cause a panic.  So, we must wait until any pending write
    147      1.36  perseant 	 * for our inode completes, if we are called with UPDATE_WAIT set.
    148      1.18  perseant 	 */
    149      1.36  perseant 	while((ap->a_flags & (UPDATE_WAIT|UPDATE_DIROP)) == UPDATE_WAIT &&
    150      1.36  perseant 	    WRITEINPROG(vp)) {
    151      1.23  perseant #ifdef DEBUG_LFS
    152      1.25  perseant 		printf("lfs_update: sleeping on inode %d (in-progress)\n",ip->i_number);
    153      1.23  perseant #endif
    154      1.18  perseant 		tsleep(vp, (PRIBIO+1), "lfs_update", 0);
    155      1.18  perseant 	}
    156  1.36.2.1   minoura 	mod = ip->i_flag & (IN_MODIFIED | IN_ACCESSED);
    157      1.18  perseant 	oflag = ip->i_flag;
    158       1.6   mycroft 	TIMEVAL_TO_TIMESPEC(&time, &ts);
    159      1.18  perseant 	LFS_ITIMES(ip,
    160      1.18  perseant 		   ap->a_access ? ap->a_access : &ts,
    161      1.18  perseant 		   ap->a_modify ? ap->a_modify : &ts, &ts);
    162  1.36.2.1   minoura 	if (!mod && (ip->i_flag & (IN_MODIFIED | IN_ACCESSED)))
    163       1.6   mycroft 		ip->i_lfs->lfs_uinodes++;
    164  1.36.2.1   minoura 	if ((ip->i_flag & (IN_MODIFIED | IN_ACCESSED | IN_CLEANING)) == 0) {
    165       1.1   mycroft 		return (0);
    166      1.18  perseant 	}
    167      1.18  perseant 
    168       1.1   mycroft 	/* If sync, push back the vnode and any dirty blocks it may have. */
    169      1.36  perseant 	if((ap->a_flags & (UPDATE_WAIT|UPDATE_DIROP))==UPDATE_WAIT) {
    170      1.25  perseant 		/* Avoid flushing VDIROP. */
    171      1.25  perseant 		++fs->lfs_diropwait;
    172      1.25  perseant 		while(vp->v_flag & VDIROP) {
    173      1.25  perseant #ifdef DEBUG_LFS
    174      1.25  perseant 			printf("lfs_update: sleeping on inode %d (dirops)\n",ip->i_number);
    175      1.25  perseant #endif
    176      1.25  perseant 			if(fs->lfs_dirops==0)
    177      1.27  perseant 				lfs_flush_fs(vp->v_mount,SEGM_SYNC);
    178      1.25  perseant 			else
    179      1.25  perseant 				tsleep(&fs->lfs_writer, PRIBIO+1, "lfs_fsync", 0);
    180      1.25  perseant 			/* XXX KS - by falling out here, are we writing the vn
    181      1.25  perseant 			twice? */
    182      1.25  perseant 		}
    183      1.25  perseant 		--fs->lfs_diropwait;
    184      1.25  perseant 		return lfs_vflush(vp);
    185      1.25  perseant         }
    186      1.25  perseant 	return 0;
    187       1.1   mycroft }
    188       1.1   mycroft 
    189       1.1   mycroft /* Update segment usage information when removing a block. */
    190      1.35  perseant #define UPDATE_SEGUSE do { \
    191       1.1   mycroft 	if (lastseg != -1) { \
    192       1.1   mycroft 		LFS_SEGENTRY(sup, fs, lastseg, sup_bp); \
    193      1.18  perseant 		if (num > sup->su_nbytes) { \
    194      1.26  perseant 			printf("lfs_truncate: negative bytes: segment %d short by %d\n", \
    195      1.26  perseant 			      lastseg, num - sup->su_nbytes); \
    196      1.26  perseant 			panic("lfs_truncate: negative bytes"); \
    197      1.18  perseant 		      sup->su_nbytes = 0; \
    198      1.18  perseant 		} else \
    199      1.12      fvdl 		sup->su_nbytes -= num; \
    200       1.1   mycroft 		e1 = VOP_BWRITE(sup_bp); \
    201      1.35  perseant 	} \
    202      1.35  perseant 	fragsreleased += numfrags(fs, num); \
    203      1.35  perseant } while(0)
    204       1.1   mycroft 
    205      1.35  perseant #define SEGDEC(S) do { \
    206      1.35  perseant 	if (daddr > 0) { \
    207       1.1   mycroft 		if (lastseg != (seg = datosn(fs, daddr))) { \
    208       1.1   mycroft 			UPDATE_SEGUSE; \
    209      1.12      fvdl 			num = (S); \
    210       1.1   mycroft 			lastseg = seg; \
    211       1.1   mycroft 		} else \
    212      1.12      fvdl 			num += (S); \
    213      1.35  perseant 	} else if (daddr == UNWRITTEN) { \
    214      1.35  perseant 		fragsreleased += numfrags(fs,(S)); \
    215       1.1   mycroft 	} \
    216      1.35  perseant } while(0)
    217       1.1   mycroft 
    218       1.1   mycroft /*
    219       1.1   mycroft  * Truncate the inode ip to at most length size.  Update segment usage
    220       1.1   mycroft  * table information.
    221       1.1   mycroft  */
    222       1.1   mycroft /* ARGSUSED */
    223       1.1   mycroft int
    224       1.4  christos lfs_truncate(v)
    225       1.4  christos 	void *v;
    226       1.4  christos {
    227       1.1   mycroft 	struct vop_truncate_args /* {
    228       1.1   mycroft 		struct vnode *a_vp;
    229       1.1   mycroft 		off_t a_length;
    230       1.1   mycroft 		int a_flags;
    231       1.1   mycroft 		struct ucred *a_cred;
    232       1.1   mycroft 		struct proc *a_p;
    233       1.4  christos 	} */ *ap = v;
    234      1.32  augustss 	struct indir *inp;
    235      1.32  augustss 	int i;
    236      1.34  perseant         int error;
    237      1.32  augustss 	ufs_daddr_t *daddrp;
    238      1.32  augustss 	struct vnode *vp = ap->a_vp;
    239       1.1   mycroft 	off_t length = ap->a_length;
    240       1.1   mycroft 	struct buf *bp, *sup_bp;
    241       1.1   mycroft 	struct ifile *ifp;
    242       1.1   mycroft 	struct inode *ip;
    243       1.1   mycroft 	struct lfs *fs;
    244       1.1   mycroft 	struct indir a[NIADDR + 2], a_end[NIADDR + 2];
    245       1.1   mycroft 	SEGUSE *sup;
    246      1.12      fvdl 	ufs_daddr_t daddr, lastblock, lbn, olastblock;
    247      1.12      fvdl 	ufs_daddr_t oldsize_lastblock, oldsize_newlast, newsize;
    248      1.35  perseant 	long off, a_released, fragsreleased;
    249      1.28      fvdl 	int e1, e2, depth, lastseg, num, offset, seg, freesize, s;
    250      1.18  perseant 
    251      1.33  perseant 	if (length < 0)
    252      1.33  perseant 		return (EINVAL);
    253      1.33  perseant 
    254      1.18  perseant 	ip = VTOI(vp);
    255      1.33  perseant 	if (length == ip->i_ffs_size) /* XXX don't update times */
    256      1.33  perseant 		return 0;
    257       1.1   mycroft 
    258      1.31    bouyer 	if (vp->v_type == VLNK &&
    259      1.31    bouyer 	   (ip->i_ffs_size < vp->v_mount->mnt_maxsymlinklen ||
    260      1.31    bouyer 	     (vp->v_mount->mnt_maxsymlinklen == 0 &&
    261      1.31    bouyer 	      ip->i_din.ffs_din.di_blocks == 0))) {
    262       1.1   mycroft #ifdef DIAGNOSTIC
    263       1.1   mycroft 		if (length != 0)
    264       1.1   mycroft 			panic("lfs_truncate: partial truncate of symlink");
    265       1.1   mycroft #endif
    266       1.9    bouyer 		bzero((char *)&ip->i_ffs_shortlink, (u_int)ip->i_ffs_size);
    267       1.9    bouyer 		ip->i_ffs_size = 0;
    268       1.1   mycroft 		ip->i_flag |= IN_CHANGE | IN_UPDATE;
    269      1.17   mycroft 		return (VOP_UPDATE(vp, NULL, NULL, 0));
    270       1.1   mycroft 	}
    271      1.18  perseant 
    272       1.1   mycroft 	fs = ip->i_lfs;
    273      1.18  perseant 	lfs_imtime(fs);
    274      1.18  perseant 
    275       1.1   mycroft 	/* If length is larger than the file, just update the times. */
    276      1.33  perseant 	if (ip->i_ffs_size < length) {
    277      1.33  perseant 		if (length > fs->lfs_maxfilesize)
    278      1.33  perseant 			return (EFBIG);
    279      1.33  perseant 		/*
    280      1.33  perseant 		 * Allocate the new last block to ensure that any previously
    281      1.33  perseant 		 * existing fragments get extended.  (XXX Adding the new
    282      1.33  perseant 		 * block is not really necessary.)
    283      1.33  perseant 		 */
    284      1.34  perseant 		error = VOP_BALLOC(vp, length - 1, 1, ap->a_cred, 0, &bp);
    285      1.33  perseant 		if (error)
    286      1.33  perseant  			return (error);
    287      1.33  perseant 		VOP_BWRITE(bp);
    288      1.33  perseant 		ip->i_ffs_size = length;
    289      1.33  perseant 		uvm_vnp_setsize(vp, length);
    290      1.33  perseant 		(void) uvm_vnp_uncache(vp);
    291       1.1   mycroft 		ip->i_flag |= IN_CHANGE | IN_UPDATE;
    292      1.17   mycroft 		return (VOP_UPDATE(vp, NULL, NULL, 0));
    293       1.1   mycroft 	}
    294      1.33  perseant 	uvm_vnp_setsize(vp, length);
    295       1.1   mycroft 
    296      1.18  perseant 	/*
    297      1.35  perseant 	 * Make sure no writes to this inode can happen while we're
    298      1.35  perseant 	 * truncating.  Otherwise, blocks which are accounted for on the
    299      1.35  perseant 	 * inode *and* which have been created for cleaning can coexist,
    300      1.35  perseant 	 * and cause an overcounting.
    301      1.20  perseant 	 *
    302      1.35  perseant 	 * (We don't need to *hold* the seglock, though, because we already
    303      1.35  perseant 	 * hold the inode lock; draining the seglock is sufficient.)
    304      1.18  perseant 	 */
    305      1.35  perseant 	if (vp != fs->lfs_unlockvp) {
    306      1.35  perseant 		while(fs->lfs_seglock) {
    307      1.35  perseant 			tsleep(&fs->lfs_seglock, PRIBIO+1, "lfs_truncate", 0);
    308      1.35  perseant 		}
    309      1.18  perseant 	}
    310      1.18  perseant 
    311       1.1   mycroft 	/*
    312       1.1   mycroft 	 * Calculate index into inode's block list of last direct and indirect
    313       1.1   mycroft 	 * blocks (if any) which we want to keep.  Lastblock is 0 when the
    314       1.1   mycroft 	 * file is truncated to 0.
    315       1.1   mycroft 	 */
    316       1.1   mycroft 	lastblock = lblkno(fs, length + fs->lfs_bsize - 1);
    317       1.9    bouyer 	olastblock = lblkno(fs, ip->i_ffs_size + fs->lfs_bsize - 1) - 1;
    318       1.1   mycroft 
    319       1.1   mycroft 	/*
    320       1.1   mycroft 	 * Update the size of the file. If the file is not being truncated to
    321       1.1   mycroft 	 * a block boundry, the contents of the partial block following the end
    322      1.22  perseant 	 * must be zero'd in case it ever becomes accessible again
    323      1.12      fvdl 	 * because of subsequent file growth.  For this part of the code,
    324      1.12      fvdl 	 * oldsize_newlast refers to the old size of the new last block in the
    325      1.12      fvdl 	 * file.
    326       1.1   mycroft 	 */
    327       1.1   mycroft 	offset = blkoff(fs, length);
    328      1.12      fvdl 	lbn = lblkno(fs, length);
    329      1.12      fvdl 	oldsize_newlast = blksize(fs, ip, lbn);
    330      1.12      fvdl 
    331      1.12      fvdl 	/* Now set oldsize to the current size of the current last block */
    332      1.12      fvdl 	oldsize_lastblock = blksize(fs, ip, olastblock);
    333       1.1   mycroft 	if (offset == 0)
    334       1.9    bouyer 		ip->i_ffs_size = length;
    335       1.1   mycroft 	else {
    336       1.1   mycroft #ifdef QUOTA
    337       1.4  christos 		if ((e1 = getinoquota(ip)) != 0)
    338       1.1   mycroft 			return (e1);
    339       1.1   mycroft #endif
    340      1.15    bouyer 		if ((e1 = bread(vp, lbn, oldsize_newlast, NOCRED, &bp)) != 0) {
    341      1.18  perseant 			printf("lfs_truncate: bread: %d\n",e1);
    342      1.15    bouyer 			brelse(bp);
    343       1.1   mycroft 			return (e1);
    344      1.15    bouyer 		}
    345       1.9    bouyer 		ip->i_ffs_size = length;
    346      1.11       chs 		(void)uvm_vnp_uncache(vp);
    347      1.12      fvdl 		newsize = blksize(fs, ip, lbn);
    348      1.12      fvdl 		bzero((char *)bp->b_data + offset, (u_int)(newsize - offset));
    349      1.18  perseant #ifdef DEBUG
    350      1.18  perseant 		if(bp->b_flags & B_CALL)
    351      1.35  perseant 			panic("Can't allocbuf malloced buffer!");
    352      1.18  perseant 		else
    353      1.18  perseant #endif
    354      1.18  perseant 			allocbuf(bp, newsize);
    355      1.35  perseant 		if(bp->b_blkno != UNASSIGNED && oldsize_newlast > newsize) {
    356      1.18  perseant 			ip->i_ffs_blocks -= btodb(oldsize_newlast - newsize);
    357      1.35  perseant 		}
    358      1.18  perseant 		if ((e1 = VOP_BWRITE(bp)) != 0) {
    359      1.18  perseant 			printf("lfs_truncate: bwrite: %d\n",e1);
    360       1.1   mycroft 			return (e1);
    361      1.18  perseant 		}
    362       1.1   mycroft 	}
    363       1.1   mycroft 	/*
    364       1.1   mycroft 	 * Modify sup->su_nbyte counters for each deleted block; keep track
    365       1.9    bouyer 	 * of number of blocks removed for ip->i_ffs_blocks.
    366       1.1   mycroft 	 */
    367      1.12      fvdl 	fragsreleased = 0;
    368       1.1   mycroft 	num = 0;
    369       1.1   mycroft 	lastseg = -1;
    370       1.1   mycroft 
    371       1.1   mycroft 	for (lbn = olastblock; lbn >= lastblock;) {
    372       1.1   mycroft 		/* XXX use run length from bmap array to make this faster */
    373       1.1   mycroft 		ufs_bmaparray(vp, lbn, &daddr, a, &depth, NULL);
    374      1.12      fvdl 		if (lbn == olastblock) {
    375       1.1   mycroft 			for (i = NIADDR + 2; i--;)
    376       1.1   mycroft 				a_end[i] = a[i];
    377      1.12      fvdl 			freesize = oldsize_lastblock;
    378      1.12      fvdl 		} else
    379      1.12      fvdl 			freesize = fs->lfs_bsize;
    380       1.1   mycroft 		switch (depth) {
    381      1.18  perseant 		case 0:		/* Direct block. */
    382       1.9    bouyer 			daddr = ip->i_ffs_db[lbn];
    383      1.12      fvdl 			SEGDEC(freesize);
    384       1.9    bouyer 			ip->i_ffs_db[lbn] = 0;
    385       1.1   mycroft 			--lbn;
    386       1.1   mycroft 			break;
    387       1.1   mycroft #ifdef DIAGNOSTIC
    388      1.18  perseant 		case 1:		/* An indirect block. */
    389       1.1   mycroft 			panic("lfs_truncate: ufs_bmaparray returned depth 1");
    390       1.1   mycroft 			/* NOTREACHED */
    391       1.1   mycroft #endif
    392      1.18  perseant 		default:	/* Chain of indirect blocks. */
    393       1.1   mycroft 			inp = a + --depth;
    394       1.1   mycroft 			if (inp->in_off > 0 && lbn != lastblock) {
    395       1.1   mycroft 				lbn -= inp->in_off < lbn - lastblock ?
    396      1.18  perseant 					inp->in_off : lbn - lastblock;
    397       1.1   mycroft 				break;
    398       1.1   mycroft 			}
    399       1.1   mycroft 			for (; depth && (inp->in_off == 0 || lbn == lastblock);
    400      1.18  perseant 			     --inp, --depth) {
    401       1.1   mycroft 				if (bread(vp,
    402      1.18  perseant 					  inp->in_lbn, fs->lfs_bsize, NOCRED, &bp))
    403       1.1   mycroft 					panic("lfs_truncate: bread bno %d",
    404      1.18  perseant 					      inp->in_lbn);
    405      1.12      fvdl 				daddrp = (ufs_daddr_t *)bp->b_data + inp->in_off;
    406      1.35  perseant 				for (i = inp->in_off; i++ <= a_end[depth].in_off;) {
    407       1.1   mycroft 					daddr = *daddrp++;
    408      1.12      fvdl 					SEGDEC(freesize);
    409       1.1   mycroft 				}
    410       1.1   mycroft 				a_end[depth].in_off = NINDIR(fs) - 1;
    411      1.35  perseant 				if (inp->in_off == 0) {
    412      1.35  perseant 					bp->b_flags |= B_INVAL;
    413       1.1   mycroft 					brelse (bp);
    414      1.35  perseant 				} else {
    415      1.12      fvdl 					bzero((ufs_daddr_t *)bp->b_data +
    416      1.18  perseant 					      inp->in_off, fs->lfs_bsize -
    417      1.18  perseant 					      inp->in_off * sizeof(ufs_daddr_t));
    418      1.18  perseant 					if ((e1 = VOP_BWRITE(bp)) != 0) {
    419      1.18  perseant 						printf("lfs_truncate: indir bwrite: %d\n",e1);
    420       1.1   mycroft 						return (e1);
    421      1.18  perseant 					}
    422       1.1   mycroft 				}
    423       1.1   mycroft 			}
    424       1.1   mycroft 			if (depth == 0 && a[1].in_off == 0) {
    425       1.1   mycroft 				off = a[0].in_off;
    426       1.9    bouyer 				daddr = ip->i_ffs_ib[off];
    427      1.12      fvdl 				SEGDEC(freesize);
    428       1.9    bouyer 				ip->i_ffs_ib[off] = 0;
    429       1.1   mycroft 			}
    430       1.1   mycroft 			if (lbn == lastblock || lbn <= NDADDR)
    431       1.1   mycroft 				--lbn;
    432       1.1   mycroft 			else {
    433       1.1   mycroft 				lbn -= NINDIR(fs);
    434       1.1   mycroft 				if (lbn < lastblock)
    435       1.1   mycroft 					lbn = lastblock;
    436       1.1   mycroft 			}
    437       1.1   mycroft 		}
    438       1.1   mycroft 	}
    439       1.1   mycroft 	UPDATE_SEGUSE;
    440      1.18  perseant 
    441       1.1   mycroft 	/* If truncating the file to 0, update the version number. */
    442       1.1   mycroft 	if (length == 0) {
    443       1.1   mycroft 		LFS_IENTRY(ifp, fs, ip->i_number, bp);
    444       1.1   mycroft 		++ifp->if_version;
    445       1.1   mycroft 		(void) VOP_BWRITE(bp);
    446       1.1   mycroft 	}
    447       1.1   mycroft #ifdef DIAGNOSTIC
    448      1.12      fvdl 	if (ip->i_ffs_blocks < fragstodb(fs, fragsreleased)) {
    449      1.35  perseant 		printf("lfs_truncate: frag count < 0 (%d<%ld), ino %d\n",
    450      1.18  perseant 			    ip->i_ffs_blocks, fragstodb(fs, fragsreleased),
    451      1.18  perseant 			    ip->i_number);
    452      1.35  perseant 		if (length > 0)
    453      1.35  perseant 			panic("lfs_truncate: frag count < 0");
    454      1.12      fvdl 		fragsreleased = dbtofrags(fs, ip->i_ffs_blocks);
    455       1.1   mycroft 	}
    456       1.1   mycroft #endif
    457      1.12      fvdl 	ip->i_ffs_blocks -= fragstodb(fs, fragsreleased);
    458      1.12      fvdl 	fs->lfs_bfree +=  fragstodb(fs, fragsreleased);
    459       1.1   mycroft 	ip->i_flag |= IN_CHANGE | IN_UPDATE;
    460       1.1   mycroft 	/*
    461       1.1   mycroft 	 * Traverse dirty block list counting number of dirty buffers
    462       1.1   mycroft 	 * that are being deleted out of the cache, so that the lfs_avail
    463       1.1   mycroft 	 * field can be updated.
    464       1.1   mycroft 	 */
    465       1.1   mycroft 	a_released = 0;
    466      1.28      fvdl 
    467      1.28      fvdl 	s = splbio();
    468      1.18  perseant 	for (bp = vp->v_dirtyblkhd.lh_first; bp; bp = bp->b_vnbufs.le_next) {
    469      1.24  perseant 		/* XXX KS - Don't miscount if we're not truncating to zero. */
    470      1.24  perseant 		if(length>0 && !(bp->b_lblkno >= 0 && bp->b_lblkno > lastblock)
    471      1.24  perseant 		   && !(bp->b_lblkno < 0 && bp->b_lblkno < -lastblock-NIADDR))
    472      1.24  perseant 			continue;
    473      1.24  perseant 
    474      1.35  perseant 		if (bp->b_flags & B_LOCKED)
    475      1.12      fvdl 			a_released += numfrags(fs, bp->b_bcount);
    476      1.18  perseant 	}
    477      1.28      fvdl 	splx(s);
    478      1.35  perseant 
    479       1.1   mycroft #ifdef DIAGNOSTIC
    480      1.12      fvdl 	if (length == 0 && ip->i_ffs_blocks != 0) {
    481      1.18  perseant 		printf("lfs_inode: trunc to zero, but %d blocks left on inode %d\n",
    482      1.18  perseant 		       ip->i_ffs_blocks, ip->i_number);
    483      1.35  perseant 		panic("lfs_inode: trunc to zero\n");
    484      1.12      fvdl 	}
    485       1.1   mycroft #endif
    486      1.12      fvdl 	fs->lfs_avail += fragstodb(fs, a_released);
    487      1.21  perseant 	if(length>0)
    488      1.22  perseant 		e1 = lfs_vinvalbuf(vp, ap->a_cred, ap->a_p, lastblock-1);
    489      1.35  perseant 	else {
    490      1.21  perseant 		e1 = vinvalbuf(vp, 0, ap->a_cred, ap->a_p, 0, 0);
    491      1.35  perseant        		lfs_countlocked(&locked_queue_count,&locked_queue_bytes);
    492      1.35  perseant 	}
    493      1.35  perseant        	wakeup(&locked_queue_count);
    494      1.35  perseant 
    495      1.35  perseant 	if (length > 0) {
    496      1.35  perseant 		/*
    497      1.35  perseant 		 * Allocate the new last block to ensure that any previously
    498      1.35  perseant 		 * existing indirect blocks invalidated above are valid.
    499      1.35  perseant 		 * (Adding the block is not really necessary.)
    500      1.35  perseant 		 */
    501      1.35  perseant 		error = VOP_BALLOC(vp, length - 1, 1, ap->a_cred, 0, &bp);
    502      1.35  perseant 		if (error)
    503      1.35  perseant  			return (error);
    504      1.35  perseant 		VOP_BWRITE(bp);
    505      1.35  perseant 	}
    506      1.35  perseant 
    507      1.17   mycroft 	e2 = VOP_UPDATE(vp, NULL, NULL, 0);
    508      1.35  perseant 
    509      1.18  perseant 	if(e1)
    510      1.18  perseant 		printf("lfs_truncate: vinvalbuf: %d\n",e1);
    511      1.18  perseant 	if(e2)
    512      1.18  perseant 		printf("lfs_truncate: update: %d\n",e2);
    513      1.18  perseant 
    514       1.1   mycroft 	return (e1 ? e1 : e2 ? e2 : 0);
    515      1.21  perseant }
    516      1.21  perseant 
    517      1.21  perseant /*
    518      1.21  perseant  * Get rid of blocks a la vinvalbuf; but only blocks that are of a higher
    519      1.21  perseant  * lblkno than the file size allows.
    520      1.21  perseant  */
    521      1.21  perseant int
    522      1.21  perseant lfs_vinvalbuf(vp, cred, p, maxblk)
    523      1.32  augustss 	struct vnode *vp;
    524      1.21  perseant 	struct ucred *cred;
    525      1.21  perseant 	struct proc *p;
    526      1.21  perseant 	ufs_daddr_t maxblk;
    527      1.21  perseant {
    528      1.32  augustss 	struct buf *bp;
    529      1.21  perseant 	struct buf *nbp, *blist;
    530      1.22  perseant 	int i, s, error, dirty;
    531      1.21  perseant 
    532      1.22  perseant       top:
    533      1.22  perseant 	dirty=0;
    534      1.21  perseant 	for (i=0;i<2;i++) {
    535      1.21  perseant 		if(i==0)
    536      1.21  perseant 			blist = vp->v_cleanblkhd.lh_first;
    537      1.21  perseant 		else /* i == 1 */
    538      1.21  perseant 			blist = vp->v_dirtyblkhd.lh_first;
    539      1.21  perseant 
    540      1.28      fvdl 		s = splbio();
    541      1.21  perseant 		for (bp = blist; bp; bp = nbp) {
    542      1.21  perseant 			nbp = bp->b_vnbufs.le_next;
    543      1.22  perseant 
    544      1.22  perseant 			if (bp->b_flags & B_GATHERED) {
    545      1.35  perseant 				printf("lfs_vinvalbuf: gathered block ino %d lbn %d\n",
    546      1.35  perseant 					VTOI(vp)->i_number, bp->b_lblkno);
    547      1.22  perseant 				error = tsleep(vp, PRIBIO+1, "lfs_vin2", 0);
    548      1.22  perseant 				splx(s);
    549      1.22  perseant 				if(error)
    550      1.22  perseant 					return error;
    551      1.22  perseant 				goto top;
    552      1.22  perseant 			}
    553      1.21  perseant 			if (bp->b_flags & B_BUSY) {
    554      1.21  perseant 				bp->b_flags |= B_WANTED;
    555      1.21  perseant 				error = tsleep((caddr_t)bp,
    556      1.21  perseant 					(PRIBIO + 1), "lfs_vinval", 0);
    557      1.35  perseant 				splx(s);
    558      1.35  perseant 				if (error)
    559      1.21  perseant 					return (error);
    560      1.22  perseant 				goto top;
    561      1.21  perseant 			}
    562      1.22  perseant 
    563      1.21  perseant 			bp->b_flags |= B_BUSY;
    564      1.21  perseant 			if((bp->b_lblkno >= 0 && bp->b_lblkno > maxblk)
    565      1.22  perseant 			   || (bp->b_lblkno < 0 && bp->b_lblkno < -maxblk-(NIADDR-1)))
    566      1.21  perseant 			{
    567      1.35  perseant 				if(bp->b_flags & B_LOCKED) {
    568      1.35  perseant 					--locked_queue_count;
    569      1.35  perseant 					locked_queue_bytes -= bp->b_bufsize;
    570      1.35  perseant 				}
    571      1.22  perseant 				if(bp->b_flags & B_CALL) {
    572      1.22  perseant 					lfs_freebuf(bp);
    573      1.22  perseant 				} else {
    574      1.35  perseant 					bp->b_flags |= B_INVAL | B_VFLUSH;
    575      1.22  perseant 					brelse(bp);
    576      1.22  perseant 				}
    577      1.22  perseant 				++dirty;
    578      1.22  perseant 			} else {
    579      1.22  perseant 				/*
    580      1.22  perseant 				 * This buffer is still on its free list.
    581      1.22  perseant 				 * So don't brelse, but wake up any sleepers.
    582      1.22  perseant 				 */
    583      1.22  perseant 				bp->b_flags &= ~B_BUSY;
    584      1.22  perseant 				if(bp->b_flags & B_WANTED) {
    585      1.22  perseant 					bp->b_flags &= ~(B_WANTED|B_AGE);
    586      1.22  perseant 					wakeup(bp);
    587      1.22  perseant 				}
    588      1.21  perseant 			}
    589      1.21  perseant 		}
    590      1.28      fvdl 		splx(s);
    591      1.21  perseant 	}
    592      1.22  perseant 	if(dirty)
    593      1.22  perseant 		goto top;
    594      1.21  perseant 	return (0);
    595       1.1   mycroft }
    596