2000-01-16 08:56:14 +03:00
|
|
|
/* $NetBSD: lfs_inode.c,v 1.29 2000/01/16 05:56:14 perseant Exp $ */
|
1994-06-29 10:39:25 +04:00
|
|
|
|
1999-03-10 03:20:00 +03:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Konrad E. Schroder <perseant@hhhh.org>.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
1994-06-08 15:41:58 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1986, 1989, 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1998-03-01 05:20:01 +03:00
|
|
|
* @(#)lfs_inode.c 8.9 (Berkeley) 5/8/95
|
1994-06-08 15:41:58 +04:00
|
|
|
*/
|
|
|
|
|
1998-06-09 11:46:31 +04:00
|
|
|
#if defined(_KERNEL) && !defined(_LKM)
|
1998-06-08 08:27:50 +04:00
|
|
|
#include "opt_quota.h"
|
1998-06-09 11:46:31 +04:00
|
|
|
#endif
|
1998-06-08 08:27:50 +04:00
|
|
|
|
1994-06-08 15:41:58 +04:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/buf.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
|
|
|
|
#include <vm/vm.h>
|
|
|
|
|
|
|
|
#include <ufs/ufs/quota.h>
|
|
|
|
#include <ufs/ufs/inode.h>
|
|
|
|
#include <ufs/ufs/ufsmount.h>
|
|
|
|
#include <ufs/ufs/ufs_extern.h>
|
|
|
|
|
|
|
|
#include <ufs/lfs/lfs.h>
|
|
|
|
#include <ufs/lfs/lfs_extern.h>
|
|
|
|
|
1999-03-30 01:51:38 +04:00
|
|
|
static int lfs_vinvalbuf __P((struct vnode *, struct ucred *, struct proc *, ufs_daddr_t));
|
|
|
|
|
1994-06-08 15:41:58 +04:00
|
|
|
/* Search a block for a specific dinode. */
|
|
|
|
struct dinode *
|
|
|
|
lfs_ifind(fs, ino, dip)
|
|
|
|
struct lfs *fs;
|
|
|
|
ino_t ino;
|
|
|
|
register struct dinode *dip;
|
|
|
|
{
|
|
|
|
register int cnt;
|
|
|
|
register struct dinode *ldip;
|
1999-03-10 03:20:00 +03:00
|
|
|
|
1994-06-08 15:41:58 +04:00
|
|
|
for (cnt = INOPB(fs), ldip = dip + (cnt - 1); cnt--; --ldip)
|
|
|
|
if (ldip->di_inumber == ino)
|
|
|
|
return (ldip);
|
1999-03-10 03:20:00 +03:00
|
|
|
|
1994-06-08 15:41:58 +04:00
|
|
|
panic("lfs_ifind: dinode %u not found", ino);
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-02-10 01:28:45 +03:00
|
|
|
lfs_update(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:41:58 +04:00
|
|
|
struct vop_update_args /* {
|
1999-03-10 03:20:00 +03:00
|
|
|
struct vnode *a_vp;
|
|
|
|
struct timespec *a_access;
|
|
|
|
struct timespec *a_modify;
|
|
|
|
int a_waitfor;
|
|
|
|
} */ *ap = v;
|
1994-06-08 15:41:58 +04:00
|
|
|
struct inode *ip;
|
1998-03-01 05:20:01 +03:00
|
|
|
struct vnode *vp = ap->a_vp;
|
1999-03-10 03:20:00 +03:00
|
|
|
int mod, oflag;
|
1996-09-02 03:47:48 +04:00
|
|
|
struct timespec ts;
|
1999-06-01 07:00:40 +04:00
|
|
|
struct lfs *fs = VFSTOUFS(vp->v_mount)->um_lfs;
|
1999-03-10 03:20:00 +03:00
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
if (vp->v_mount->mnt_flag & MNT_RDONLY)
|
1994-06-08 15:41:58 +04:00
|
|
|
return (0);
|
1998-03-01 05:20:01 +03:00
|
|
|
ip = VTOI(vp);
|
1999-03-10 03:20:00 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If we are called from vinvalbuf, and the file's blocks have
|
|
|
|
* already been scheduled for writing, but the writes have not
|
|
|
|
* yet completed, lfs_vflush will not be called, and vinvalbuf
|
|
|
|
* will cause a panic. So, we must wait until any pending write
|
|
|
|
* for our inode completes, if we are called with LFS_SYNC set.
|
|
|
|
*/
|
|
|
|
while((ap->a_waitfor & LFS_SYNC) && WRITEINPROG(vp)) {
|
1999-04-12 04:25:13 +04:00
|
|
|
#ifdef DEBUG_LFS
|
1999-06-01 07:00:40 +04:00
|
|
|
printf("lfs_update: sleeping on inode %d (in-progress)\n",ip->i_number);
|
1999-04-12 04:25:13 +04:00
|
|
|
#endif
|
1999-03-10 03:20:00 +03:00
|
|
|
tsleep(vp, (PRIBIO+1), "lfs_update", 0);
|
|
|
|
}
|
1996-09-02 03:47:48 +04:00
|
|
|
mod = ip->i_flag & IN_MODIFIED;
|
1999-03-10 03:20:00 +03:00
|
|
|
oflag = ip->i_flag;
|
1996-09-02 03:47:48 +04:00
|
|
|
TIMEVAL_TO_TIMESPEC(&time, &ts);
|
1999-03-10 03:20:00 +03:00
|
|
|
LFS_ITIMES(ip,
|
|
|
|
ap->a_access ? ap->a_access : &ts,
|
|
|
|
ap->a_modify ? ap->a_modify : &ts, &ts);
|
|
|
|
if (!mod && (ip->i_flag & IN_MODIFIED))
|
1996-09-02 03:47:48 +04:00
|
|
|
ip->i_lfs->lfs_uinodes++;
|
1999-03-10 03:20:00 +03:00
|
|
|
if ((ip->i_flag & (IN_MODIFIED|IN_CLEANING)) == 0) {
|
1994-06-08 15:41:58 +04:00
|
|
|
return (0);
|
1999-03-10 03:20:00 +03:00
|
|
|
}
|
|
|
|
|
1994-06-08 15:41:58 +04:00
|
|
|
/* If sync, push back the vnode and any dirty blocks it may have. */
|
1999-06-01 07:00:40 +04:00
|
|
|
if(ap->a_waitfor & LFS_SYNC) {
|
|
|
|
/* Avoid flushing VDIROP. */
|
|
|
|
++fs->lfs_diropwait;
|
|
|
|
while(vp->v_flag & VDIROP) {
|
|
|
|
#ifdef DEBUG_LFS
|
|
|
|
printf("lfs_update: sleeping on inode %d (dirops)\n",ip->i_number);
|
|
|
|
#endif
|
|
|
|
if(fs->lfs_dirops==0)
|
1999-09-04 02:48:51 +04:00
|
|
|
lfs_flush_fs(vp->v_mount,SEGM_SYNC);
|
1999-06-01 07:00:40 +04:00
|
|
|
else
|
|
|
|
tsleep(&fs->lfs_writer, PRIBIO+1, "lfs_fsync", 0);
|
|
|
|
/* XXX KS - by falling out here, are we writing the vn
|
|
|
|
twice? */
|
|
|
|
}
|
|
|
|
--fs->lfs_diropwait;
|
|
|
|
return lfs_vflush(vp);
|
|
|
|
}
|
|
|
|
return 0;
|
1994-06-08 15:41:58 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Update segment usage information when removing a block. */
|
|
|
|
#define UPDATE_SEGUSE \
|
|
|
|
if (lastseg != -1) { \
|
|
|
|
LFS_SEGENTRY(sup, fs, lastseg, sup_bp); \
|
1999-03-10 03:20:00 +03:00
|
|
|
if (num > sup->su_nbytes) { \
|
1999-06-16 02:25:41 +04:00
|
|
|
printf("lfs_truncate: negative bytes: segment %d short by %d\n", \
|
|
|
|
lastseg, num - sup->su_nbytes); \
|
|
|
|
panic("lfs_truncate: negative bytes"); \
|
1999-03-10 03:20:00 +03:00
|
|
|
sup->su_nbytes = 0; \
|
|
|
|
} else \
|
1998-03-01 05:20:01 +03:00
|
|
|
sup->su_nbytes -= num; \
|
1994-06-08 15:41:58 +04:00
|
|
|
e1 = VOP_BWRITE(sup_bp); \
|
1998-03-01 05:20:01 +03:00
|
|
|
fragsreleased += numfrags(fs, num); \
|
1994-06-08 15:41:58 +04:00
|
|
|
}
|
|
|
|
|
1998-03-01 05:20:01 +03:00
|
|
|
#define SEGDEC(S) { \
|
1994-06-08 15:41:58 +04:00
|
|
|
if (daddr != 0) { \
|
|
|
|
if (lastseg != (seg = datosn(fs, daddr))) { \
|
|
|
|
UPDATE_SEGUSE; \
|
1998-03-01 05:20:01 +03:00
|
|
|
num = (S); \
|
1994-06-08 15:41:58 +04:00
|
|
|
lastseg = seg; \
|
|
|
|
} else \
|
1998-03-01 05:20:01 +03:00
|
|
|
num += (S); \
|
1994-06-08 15:41:58 +04:00
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Truncate the inode ip to at most length size. Update segment usage
|
|
|
|
* table information.
|
|
|
|
*/
|
|
|
|
/* ARGSUSED */
|
|
|
|
int
|
1996-02-10 01:28:45 +03:00
|
|
|
lfs_truncate(v)
|
|
|
|
void *v;
|
|
|
|
{
|
1994-06-08 15:41:58 +04:00
|
|
|
struct vop_truncate_args /* {
|
|
|
|
struct vnode *a_vp;
|
|
|
|
off_t a_length;
|
|
|
|
int a_flags;
|
|
|
|
struct ucred *a_cred;
|
|
|
|
struct proc *a_p;
|
1996-02-10 01:28:45 +03:00
|
|
|
} */ *ap = v;
|
1994-06-08 15:41:58 +04:00
|
|
|
register struct indir *inp;
|
|
|
|
register int i;
|
1998-03-01 05:20:01 +03:00
|
|
|
register ufs_daddr_t *daddrp;
|
1994-06-08 15:41:58 +04:00
|
|
|
register struct vnode *vp = ap->a_vp;
|
|
|
|
off_t length = ap->a_length;
|
|
|
|
struct buf *bp, *sup_bp;
|
|
|
|
struct ifile *ifp;
|
|
|
|
struct inode *ip;
|
|
|
|
struct lfs *fs;
|
|
|
|
struct indir a[NIADDR + 2], a_end[NIADDR + 2];
|
|
|
|
SEGUSE *sup;
|
1998-03-01 05:20:01 +03:00
|
|
|
ufs_daddr_t daddr, lastblock, lbn, olastblock;
|
|
|
|
ufs_daddr_t oldsize_lastblock, oldsize_newlast, newsize;
|
|
|
|
long off, a_released, fragsreleased, i_released;
|
1999-11-24 02:52:40 +03:00
|
|
|
int e1, e2, depth, lastseg, num, offset, seg, freesize, s;
|
1999-03-10 03:20:00 +03:00
|
|
|
|
1994-06-08 15:41:58 +04:00
|
|
|
ip = VTOI(vp);
|
1999-03-10 03:20:00 +03:00
|
|
|
|
1994-06-08 15:41:58 +04:00
|
|
|
if (vp->v_type == VLNK && vp->v_mount->mnt_maxsymlinklen > 0) {
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if (length != 0)
|
|
|
|
panic("lfs_truncate: partial truncate of symlink");
|
|
|
|
#endif
|
1997-06-11 14:09:37 +04:00
|
|
|
bzero((char *)&ip->i_ffs_shortlink, (u_int)ip->i_ffs_size);
|
|
|
|
ip->i_ffs_size = 0;
|
1994-06-08 15:41:58 +04:00
|
|
|
ip->i_flag |= IN_CHANGE | IN_UPDATE;
|
1999-03-06 00:09:48 +03:00
|
|
|
return (VOP_UPDATE(vp, NULL, NULL, 0));
|
1994-06-08 15:41:58 +04:00
|
|
|
}
|
1998-02-07 20:28:18 +03:00
|
|
|
uvm_vnp_setsize(vp, length);
|
1999-03-10 03:20:00 +03:00
|
|
|
|
1994-06-08 15:41:58 +04:00
|
|
|
fs = ip->i_lfs;
|
1999-03-10 03:20:00 +03:00
|
|
|
lfs_imtime(fs);
|
|
|
|
|
1994-06-08 15:41:58 +04:00
|
|
|
/* If length is larger than the file, just update the times. */
|
1997-06-11 14:09:37 +04:00
|
|
|
if (ip->i_ffs_size <= length) {
|
1994-06-08 15:41:58 +04:00
|
|
|
ip->i_flag |= IN_CHANGE | IN_UPDATE;
|
1999-03-06 00:09:48 +03:00
|
|
|
return (VOP_UPDATE(vp, NULL, NULL, 0));
|
1994-06-08 15:41:58 +04:00
|
|
|
}
|
|
|
|
|
1999-03-10 03:20:00 +03:00
|
|
|
/*
|
1999-03-26 00:39:18 +03:00
|
|
|
* Make sure no writes happen while we're truncating.
|
|
|
|
* Otherwise, blocks which are accounted for on the inode
|
|
|
|
* *and* which have been created for cleaning can coexist,
|
|
|
|
* and cause us to overcount, and panic below.
|
|
|
|
*
|
|
|
|
* XXX KS - too restrictive? Maybe only when cleaning?
|
1999-03-10 03:20:00 +03:00
|
|
|
*/
|
2000-01-16 08:56:14 +03:00
|
|
|
while(fs->lfs_seglock && fs->lfs_lockpid != ap->a_p->p_pid) {
|
1999-03-10 03:20:00 +03:00
|
|
|
tsleep(&fs->lfs_seglock, (PRIBIO+1), "lfs_truncate", 0);
|
|
|
|
}
|
|
|
|
|
1994-06-08 15:41:58 +04:00
|
|
|
/*
|
|
|
|
* Calculate index into inode's block list of last direct and indirect
|
|
|
|
* blocks (if any) which we want to keep. Lastblock is 0 when the
|
|
|
|
* file is truncated to 0.
|
|
|
|
*/
|
|
|
|
lastblock = lblkno(fs, length + fs->lfs_bsize - 1);
|
1997-06-11 14:09:37 +04:00
|
|
|
olastblock = lblkno(fs, ip->i_ffs_size + fs->lfs_bsize - 1) - 1;
|
1994-06-08 15:41:58 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Update the size of the file. If the file is not being truncated to
|
|
|
|
* a block boundry, the contents of the partial block following the end
|
1999-04-02 03:28:09 +04:00
|
|
|
* must be zero'd in case it ever becomes accessible again
|
1998-03-01 05:20:01 +03:00
|
|
|
* because of subsequent file growth. For this part of the code,
|
|
|
|
* oldsize_newlast refers to the old size of the new last block in the
|
|
|
|
* file.
|
1994-06-08 15:41:58 +04:00
|
|
|
*/
|
|
|
|
offset = blkoff(fs, length);
|
1998-03-01 05:20:01 +03:00
|
|
|
lbn = lblkno(fs, length);
|
|
|
|
oldsize_newlast = blksize(fs, ip, lbn);
|
|
|
|
|
|
|
|
/* Now set oldsize to the current size of the current last block */
|
|
|
|
oldsize_lastblock = blksize(fs, ip, olastblock);
|
1994-06-08 15:41:58 +04:00
|
|
|
if (offset == 0)
|
1997-06-11 14:09:37 +04:00
|
|
|
ip->i_ffs_size = length;
|
1994-06-08 15:41:58 +04:00
|
|
|
else {
|
|
|
|
#ifdef QUOTA
|
1996-02-10 01:28:45 +03:00
|
|
|
if ((e1 = getinoquota(ip)) != 0)
|
1994-06-08 15:41:58 +04:00
|
|
|
return (e1);
|
|
|
|
#endif
|
1999-02-10 16:14:08 +03:00
|
|
|
if ((e1 = bread(vp, lbn, oldsize_newlast, NOCRED, &bp)) != 0) {
|
1999-03-10 03:20:00 +03:00
|
|
|
printf("lfs_truncate: bread: %d\n",e1);
|
1999-02-10 16:14:08 +03:00
|
|
|
brelse(bp);
|
1994-06-08 15:41:58 +04:00
|
|
|
return (e1);
|
1999-02-10 16:14:08 +03:00
|
|
|
}
|
1997-06-11 14:09:37 +04:00
|
|
|
ip->i_ffs_size = length;
|
1998-02-07 20:28:18 +03:00
|
|
|
(void)uvm_vnp_uncache(vp);
|
1998-03-01 05:20:01 +03:00
|
|
|
newsize = blksize(fs, ip, lbn);
|
|
|
|
bzero((char *)bp->b_data + offset, (u_int)(newsize - offset));
|
1999-03-10 03:20:00 +03:00
|
|
|
#ifdef DEBUG
|
|
|
|
if(bp->b_flags & B_CALL)
|
|
|
|
panic("Can't allocbuf malloced buffer!");
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
allocbuf(bp, newsize);
|
|
|
|
if(oldsize_newlast > newsize)
|
|
|
|
ip->i_ffs_blocks -= btodb(oldsize_newlast - newsize);
|
|
|
|
if ((e1 = VOP_BWRITE(bp)) != 0) {
|
|
|
|
printf("lfs_truncate: bwrite: %d\n",e1);
|
1994-06-08 15:41:58 +04:00
|
|
|
return (e1);
|
1999-03-10 03:20:00 +03:00
|
|
|
}
|
1994-06-08 15:41:58 +04:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Modify sup->su_nbyte counters for each deleted block; keep track
|
1997-06-11 14:09:37 +04:00
|
|
|
* of number of blocks removed for ip->i_ffs_blocks.
|
1994-06-08 15:41:58 +04:00
|
|
|
*/
|
1998-03-01 05:20:01 +03:00
|
|
|
fragsreleased = 0;
|
1994-06-08 15:41:58 +04:00
|
|
|
num = 0;
|
|
|
|
lastseg = -1;
|
|
|
|
|
|
|
|
for (lbn = olastblock; lbn >= lastblock;) {
|
|
|
|
/* XXX use run length from bmap array to make this faster */
|
|
|
|
ufs_bmaparray(vp, lbn, &daddr, a, &depth, NULL);
|
1998-03-01 05:20:01 +03:00
|
|
|
if (lbn == olastblock) {
|
1994-06-08 15:41:58 +04:00
|
|
|
for (i = NIADDR + 2; i--;)
|
|
|
|
a_end[i] = a[i];
|
1998-03-01 05:20:01 +03:00
|
|
|
freesize = oldsize_lastblock;
|
|
|
|
} else
|
|
|
|
freesize = fs->lfs_bsize;
|
1994-06-08 15:41:58 +04:00
|
|
|
switch (depth) {
|
1999-03-10 03:20:00 +03:00
|
|
|
case 0: /* Direct block. */
|
1997-06-11 14:09:37 +04:00
|
|
|
daddr = ip->i_ffs_db[lbn];
|
1998-03-01 05:20:01 +03:00
|
|
|
SEGDEC(freesize);
|
1997-06-11 14:09:37 +04:00
|
|
|
ip->i_ffs_db[lbn] = 0;
|
1994-06-08 15:41:58 +04:00
|
|
|
--lbn;
|
|
|
|
break;
|
|
|
|
#ifdef DIAGNOSTIC
|
1999-03-10 03:20:00 +03:00
|
|
|
case 1: /* An indirect block. */
|
1994-06-08 15:41:58 +04:00
|
|
|
panic("lfs_truncate: ufs_bmaparray returned depth 1");
|
|
|
|
/* NOTREACHED */
|
|
|
|
#endif
|
1999-03-10 03:20:00 +03:00
|
|
|
default: /* Chain of indirect blocks. */
|
1994-06-08 15:41:58 +04:00
|
|
|
inp = a + --depth;
|
|
|
|
if (inp->in_off > 0 && lbn != lastblock) {
|
|
|
|
lbn -= inp->in_off < lbn - lastblock ?
|
1999-03-10 03:20:00 +03:00
|
|
|
inp->in_off : lbn - lastblock;
|
1994-06-08 15:41:58 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
for (; depth && (inp->in_off == 0 || lbn == lastblock);
|
1999-03-10 03:20:00 +03:00
|
|
|
--inp, --depth) {
|
1994-06-08 15:41:58 +04:00
|
|
|
if (bread(vp,
|
1999-03-10 03:20:00 +03:00
|
|
|
inp->in_lbn, fs->lfs_bsize, NOCRED, &bp))
|
1994-06-08 15:41:58 +04:00
|
|
|
panic("lfs_truncate: bread bno %d",
|
1999-03-10 03:20:00 +03:00
|
|
|
inp->in_lbn);
|
1998-03-01 05:20:01 +03:00
|
|
|
daddrp = (ufs_daddr_t *)bp->b_data + inp->in_off;
|
1994-06-08 15:41:58 +04:00
|
|
|
for (i = inp->in_off;
|
1999-03-10 03:20:00 +03:00
|
|
|
i++ <= a_end[depth].in_off;) {
|
1994-06-08 15:41:58 +04:00
|
|
|
daddr = *daddrp++;
|
1998-03-01 05:20:01 +03:00
|
|
|
SEGDEC(freesize);
|
1994-06-08 15:41:58 +04:00
|
|
|
}
|
|
|
|
a_end[depth].in_off = NINDIR(fs) - 1;
|
|
|
|
if (inp->in_off == 0)
|
|
|
|
brelse (bp);
|
|
|
|
else {
|
1998-03-01 05:20:01 +03:00
|
|
|
bzero((ufs_daddr_t *)bp->b_data +
|
1999-03-10 03:20:00 +03:00
|
|
|
inp->in_off, fs->lfs_bsize -
|
|
|
|
inp->in_off * sizeof(ufs_daddr_t));
|
|
|
|
if ((e1 = VOP_BWRITE(bp)) != 0) {
|
|
|
|
printf("lfs_truncate: indir bwrite: %d\n",e1);
|
1994-06-08 15:41:58 +04:00
|
|
|
return (e1);
|
1999-03-10 03:20:00 +03:00
|
|
|
}
|
1994-06-08 15:41:58 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (depth == 0 && a[1].in_off == 0) {
|
|
|
|
off = a[0].in_off;
|
1997-06-11 14:09:37 +04:00
|
|
|
daddr = ip->i_ffs_ib[off];
|
1998-03-01 05:20:01 +03:00
|
|
|
SEGDEC(freesize);
|
1997-06-11 14:09:37 +04:00
|
|
|
ip->i_ffs_ib[off] = 0;
|
1994-06-08 15:41:58 +04:00
|
|
|
}
|
|
|
|
if (lbn == lastblock || lbn <= NDADDR)
|
|
|
|
--lbn;
|
|
|
|
else {
|
|
|
|
lbn -= NINDIR(fs);
|
|
|
|
if (lbn < lastblock)
|
|
|
|
lbn = lastblock;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
UPDATE_SEGUSE;
|
1999-03-10 03:20:00 +03:00
|
|
|
|
1994-06-08 15:41:58 +04:00
|
|
|
/* If truncating the file to 0, update the version number. */
|
|
|
|
if (length == 0) {
|
|
|
|
LFS_IENTRY(ifp, fs, ip->i_number, bp);
|
|
|
|
++ifp->if_version;
|
|
|
|
(void) VOP_BWRITE(bp);
|
|
|
|
}
|
|
|
|
#ifdef DIAGNOSTIC
|
1998-03-01 05:20:01 +03:00
|
|
|
if (ip->i_ffs_blocks < fragstodb(fs, fragsreleased)) {
|
1999-03-10 03:20:00 +03:00
|
|
|
panic("lfs_truncate: frag count < 0 (%d<%ld), ino %d\n",
|
|
|
|
ip->i_ffs_blocks, fragstodb(fs, fragsreleased),
|
|
|
|
ip->i_number);
|
1998-03-01 05:20:01 +03:00
|
|
|
fragsreleased = dbtofrags(fs, ip->i_ffs_blocks);
|
1994-06-08 15:41:58 +04:00
|
|
|
}
|
|
|
|
#endif
|
1998-03-01 05:20:01 +03:00
|
|
|
ip->i_ffs_blocks -= fragstodb(fs, fragsreleased);
|
|
|
|
fs->lfs_bfree += fragstodb(fs, fragsreleased);
|
1994-06-08 15:41:58 +04:00
|
|
|
ip->i_flag |= IN_CHANGE | IN_UPDATE;
|
|
|
|
/*
|
|
|
|
* Traverse dirty block list counting number of dirty buffers
|
|
|
|
* that are being deleted out of the cache, so that the lfs_avail
|
|
|
|
* field can be updated.
|
|
|
|
*/
|
|
|
|
a_released = 0;
|
|
|
|
i_released = 0;
|
1999-11-24 02:52:40 +03:00
|
|
|
|
|
|
|
s = splbio();
|
1999-03-10 03:20:00 +03:00
|
|
|
for (bp = vp->v_dirtyblkhd.lh_first; bp; bp = bp->b_vnbufs.le_next) {
|
1999-04-12 04:30:08 +04:00
|
|
|
|
|
|
|
/* XXX KS - Don't miscount if we're not truncating to zero. */
|
|
|
|
if(length>0 && !(bp->b_lblkno >= 0 && bp->b_lblkno > lastblock)
|
|
|
|
&& !(bp->b_lblkno < 0 && bp->b_lblkno < -lastblock-NIADDR))
|
|
|
|
continue;
|
|
|
|
|
1994-06-08 15:41:58 +04:00
|
|
|
if (bp->b_flags & B_LOCKED) {
|
1998-03-01 05:20:01 +03:00
|
|
|
a_released += numfrags(fs, bp->b_bcount);
|
1994-06-08 15:41:58 +04:00
|
|
|
/*
|
|
|
|
* XXX
|
|
|
|
* When buffers are created in the cache, their block
|
|
|
|
* number is set equal to their logical block number.
|
|
|
|
* If that is still true, we are assuming that the
|
|
|
|
* blocks are new (not yet on disk) and weren't
|
|
|
|
* counted above. However, there is a slight chance
|
|
|
|
* that a block's disk address is equal to its logical
|
|
|
|
* block number in which case, we'll get an overcounting
|
|
|
|
* here.
|
|
|
|
*/
|
1999-03-10 03:20:00 +03:00
|
|
|
if (bp->b_blkno == bp->b_lblkno) {
|
1998-03-01 05:20:01 +03:00
|
|
|
i_released += numfrags(fs, bp->b_bcount);
|
1999-03-10 03:20:00 +03:00
|
|
|
}
|
1994-06-08 15:41:58 +04:00
|
|
|
}
|
1999-03-10 03:20:00 +03:00
|
|
|
}
|
1999-11-24 02:52:40 +03:00
|
|
|
splx(s);
|
1998-03-01 05:20:01 +03:00
|
|
|
fragsreleased = i_released;
|
1994-06-08 15:41:58 +04:00
|
|
|
#ifdef DIAGNOSTIC
|
1998-03-01 05:20:01 +03:00
|
|
|
if (fragsreleased > dbtofrags(fs, ip->i_ffs_blocks)) {
|
1999-03-10 03:20:00 +03:00
|
|
|
printf("lfs_inode: %ld frags released > %d in inode %d\n",
|
|
|
|
fragsreleased, dbtofrags(fs, ip->i_ffs_blocks),
|
|
|
|
ip->i_number);
|
1998-03-01 05:20:01 +03:00
|
|
|
fragsreleased = dbtofrags(fs, ip->i_ffs_blocks);
|
1994-06-08 15:41:58 +04:00
|
|
|
}
|
|
|
|
#endif
|
1998-03-01 05:20:01 +03:00
|
|
|
fs->lfs_bfree += fragstodb(fs, fragsreleased);
|
|
|
|
ip->i_ffs_blocks -= fragstodb(fs, fragsreleased);
|
1994-06-08 15:41:58 +04:00
|
|
|
#ifdef DIAGNOSTIC
|
1998-03-01 05:20:01 +03:00
|
|
|
if (length == 0 && ip->i_ffs_blocks != 0) {
|
1999-03-10 03:20:00 +03:00
|
|
|
printf("lfs_inode: trunc to zero, but %d blocks left on inode %d\n",
|
|
|
|
ip->i_ffs_blocks, ip->i_number);
|
|
|
|
panic("lfs_inode\n");
|
1998-03-01 05:20:01 +03:00
|
|
|
}
|
1994-06-08 15:41:58 +04:00
|
|
|
#endif
|
1998-03-01 05:20:01 +03:00
|
|
|
fs->lfs_avail += fragstodb(fs, a_released);
|
1999-03-30 01:51:38 +04:00
|
|
|
if(length>0)
|
1999-04-02 03:28:09 +04:00
|
|
|
e1 = lfs_vinvalbuf(vp, ap->a_cred, ap->a_p, lastblock-1);
|
1999-03-30 01:51:38 +04:00
|
|
|
else
|
|
|
|
e1 = vinvalbuf(vp, 0, ap->a_cred, ap->a_p, 0, 0);
|
1999-03-06 00:09:48 +03:00
|
|
|
e2 = VOP_UPDATE(vp, NULL, NULL, 0);
|
1999-03-10 03:20:00 +03:00
|
|
|
if(e1)
|
|
|
|
printf("lfs_truncate: vinvalbuf: %d\n",e1);
|
|
|
|
if(e2)
|
|
|
|
printf("lfs_truncate: update: %d\n",e2);
|
|
|
|
|
1994-06-08 15:41:58 +04:00
|
|
|
return (e1 ? e1 : e2 ? e2 : 0);
|
|
|
|
}
|
1999-03-30 01:51:38 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get rid of blocks a la vinvalbuf; but only blocks that are of a higher
|
|
|
|
* lblkno than the file size allows.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
lfs_vinvalbuf(vp, cred, p, maxblk)
|
|
|
|
register struct vnode *vp;
|
|
|
|
struct ucred *cred;
|
|
|
|
struct proc *p;
|
|
|
|
ufs_daddr_t maxblk;
|
|
|
|
{
|
|
|
|
register struct buf *bp;
|
|
|
|
struct buf *nbp, *blist;
|
1999-04-02 03:28:09 +04:00
|
|
|
int i, s, error, dirty;
|
1999-03-30 01:51:38 +04:00
|
|
|
|
1999-04-02 03:28:09 +04:00
|
|
|
top:
|
|
|
|
dirty=0;
|
1999-03-30 01:51:38 +04:00
|
|
|
for (i=0;i<2;i++) {
|
|
|
|
if(i==0)
|
|
|
|
blist = vp->v_cleanblkhd.lh_first;
|
|
|
|
else /* i == 1 */
|
|
|
|
blist = vp->v_dirtyblkhd.lh_first;
|
|
|
|
|
1999-11-24 02:52:40 +03:00
|
|
|
s = splbio();
|
1999-03-30 01:51:38 +04:00
|
|
|
for (bp = blist; bp; bp = nbp) {
|
|
|
|
nbp = bp->b_vnbufs.le_next;
|
1999-04-02 03:28:09 +04:00
|
|
|
|
|
|
|
if (bp->b_flags & B_GATHERED) {
|
|
|
|
error = tsleep(vp, PRIBIO+1, "lfs_vin2", 0);
|
|
|
|
splx(s);
|
|
|
|
if(error)
|
|
|
|
return error;
|
|
|
|
goto top;
|
|
|
|
}
|
1999-03-30 01:51:38 +04:00
|
|
|
if (bp->b_flags & B_BUSY) {
|
|
|
|
bp->b_flags |= B_WANTED;
|
|
|
|
error = tsleep((caddr_t)bp,
|
|
|
|
(PRIBIO + 1), "lfs_vinval", 0);
|
1999-11-24 02:52:40 +03:00
|
|
|
if (error) {
|
|
|
|
splx(s);
|
1999-03-30 01:51:38 +04:00
|
|
|
return (error);
|
1999-11-24 02:52:40 +03:00
|
|
|
}
|
1999-04-02 03:28:09 +04:00
|
|
|
goto top;
|
1999-03-30 01:51:38 +04:00
|
|
|
}
|
1999-04-02 03:28:09 +04:00
|
|
|
|
1999-03-30 01:51:38 +04:00
|
|
|
bp->b_flags |= B_BUSY;
|
|
|
|
if((bp->b_lblkno >= 0 && bp->b_lblkno > maxblk)
|
1999-04-02 03:28:09 +04:00
|
|
|
|| (bp->b_lblkno < 0 && bp->b_lblkno < -maxblk-(NIADDR-1)))
|
1999-03-30 01:51:38 +04:00
|
|
|
{
|
1999-04-02 03:28:09 +04:00
|
|
|
bp->b_flags |= B_INVAL | B_VFLUSH;
|
|
|
|
if(bp->b_flags & B_CALL) {
|
|
|
|
lfs_freebuf(bp);
|
|
|
|
} else {
|
|
|
|
brelse(bp);
|
|
|
|
}
|
|
|
|
++dirty;
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* This buffer is still on its free list.
|
|
|
|
* So don't brelse, but wake up any sleepers.
|
|
|
|
*/
|
1999-03-30 01:51:38 +04:00
|
|
|
bp->b_flags &= ~B_BUSY;
|
1999-04-02 03:28:09 +04:00
|
|
|
if(bp->b_flags & B_WANTED) {
|
|
|
|
bp->b_flags &= ~(B_WANTED|B_AGE);
|
|
|
|
wakeup(bp);
|
|
|
|
}
|
|
|
|
}
|
1999-03-30 01:51:38 +04:00
|
|
|
}
|
1999-11-24 02:52:40 +03:00
|
|
|
splx(s);
|
1999-03-30 01:51:38 +04:00
|
|
|
}
|
1999-04-02 03:28:09 +04:00
|
|
|
if(dirty)
|
|
|
|
goto top;
|
1999-03-30 01:51:38 +04:00
|
|
|
return (0);
|
|
|
|
}
|