Home | History | Annotate | Line # | Download | only in lfs
lfs_balloc.c revision 1.80
      1  1.80  dholland /*	$NetBSD: lfs_balloc.c,v 1.80 2013/07/28 01:25:06 dholland Exp $	*/
      2   1.2       cgd 
      3  1.11  perseant /*-
      4  1.36  perseant  * Copyright (c) 1999, 2000, 2001, 2002, 2003 The NetBSD Foundation, Inc.
      5  1.11  perseant  * All rights reserved.
      6  1.11  perseant  *
      7  1.11  perseant  * This code is derived from software contributed to The NetBSD Foundation
      8  1.11  perseant  * by Konrad E. Schroder <perseant (at) hhhh.org>.
      9  1.11  perseant  *
     10  1.11  perseant  * Redistribution and use in source and binary forms, with or without
     11  1.11  perseant  * modification, are permitted provided that the following conditions
     12  1.11  perseant  * are met:
     13  1.11  perseant  * 1. Redistributions of source code must retain the above copyright
     14  1.11  perseant  *    notice, this list of conditions and the following disclaimer.
     15  1.11  perseant  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.11  perseant  *    notice, this list of conditions and the following disclaimer in the
     17  1.11  perseant  *    documentation and/or other materials provided with the distribution.
     18  1.11  perseant  *
     19  1.11  perseant  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  1.11  perseant  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  1.11  perseant  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  1.11  perseant  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  1.11  perseant  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  1.11  perseant  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  1.11  perseant  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  1.11  perseant  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  1.11  perseant  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  1.11  perseant  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  1.11  perseant  * POSSIBILITY OF SUCH DAMAGE.
     30  1.11  perseant  */
     31   1.1   mycroft /*
     32   1.1   mycroft  * Copyright (c) 1989, 1991, 1993
     33   1.1   mycroft  *	The Regents of the University of California.  All rights reserved.
     34   1.1   mycroft  *
     35   1.1   mycroft  * Redistribution and use in source and binary forms, with or without
     36   1.1   mycroft  * modification, are permitted provided that the following conditions
     37   1.1   mycroft  * are met:
     38   1.1   mycroft  * 1. Redistributions of source code must retain the above copyright
     39   1.1   mycroft  *    notice, this list of conditions and the following disclaimer.
     40   1.1   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     41   1.1   mycroft  *    notice, this list of conditions and the following disclaimer in the
     42   1.1   mycroft  *    documentation and/or other materials provided with the distribution.
     43  1.43       agc  * 3. Neither the name of the University nor the names of its contributors
     44   1.1   mycroft  *    may be used to endorse or promote products derived from this software
     45   1.1   mycroft  *    without specific prior written permission.
     46   1.1   mycroft  *
     47   1.1   mycroft  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     48   1.1   mycroft  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     49   1.1   mycroft  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     50   1.1   mycroft  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     51   1.1   mycroft  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     52   1.1   mycroft  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     53   1.1   mycroft  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     54   1.1   mycroft  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     55   1.1   mycroft  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     56   1.1   mycroft  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     57   1.1   mycroft  * SUCH DAMAGE.
     58   1.1   mycroft  *
     59   1.5      fvdl  *	@(#)lfs_balloc.c	8.4 (Berkeley) 5/8/95
     60   1.1   mycroft  */
     61  1.30     lukem 
     62  1.30     lukem #include <sys/cdefs.h>
     63  1.80  dholland __KERNEL_RCSID(0, "$NetBSD: lfs_balloc.c,v 1.80 2013/07/28 01:25:06 dholland Exp $");
     64   1.8    scottr 
     65  1.28       mrg #if defined(_KERNEL_OPT)
     66   1.8    scottr #include "opt_quota.h"
     67   1.9    scottr #endif
     68   1.8    scottr 
     69   1.1   mycroft #include <sys/param.h>
     70   1.3  christos #include <sys/systm.h>
     71   1.1   mycroft #include <sys/buf.h>
     72   1.1   mycroft #include <sys/proc.h>
     73   1.1   mycroft #include <sys/vnode.h>
     74   1.1   mycroft #include <sys/mount.h>
     75   1.1   mycroft #include <sys/resourcevar.h>
     76  1.55  perseant #include <sys/tree.h>
     77   1.1   mycroft #include <sys/trace.h>
     78  1.61      elad #include <sys/kauth.h>
     79   1.1   mycroft 
     80   1.1   mycroft #include <miscfs/specfs/specdev.h>
     81   1.1   mycroft 
     82  1.73  dholland #include <ufs/lfs/ulfs_quotacommon.h>
     83  1.73  dholland #include <ufs/lfs/ulfs_inode.h>
     84  1.73  dholland #include <ufs/lfs/ulfsmount.h>
     85  1.73  dholland #include <ufs/lfs/ulfs_extern.h>
     86   1.1   mycroft 
     87   1.1   mycroft #include <ufs/lfs/lfs.h>
     88   1.1   mycroft #include <ufs/lfs/lfs_extern.h>
     89  1.78  dholland #include <ufs/lfs/lfs_kernel.h>
     90   1.5      fvdl 
     91  1.36  perseant #include <uvm/uvm.h>
     92  1.36  perseant 
     93  1.61      elad int lfs_fragextend(struct vnode *, int, int, daddr_t, struct buf **, kauth_cred_t);
     94   1.5      fvdl 
     95  1.49  perseant u_int64_t locked_fakequeue_count;
     96  1.49  perseant 
     97  1.16  perseant /*
     98  1.16  perseant  * Allocate a block, and to inode and filesystem block accounting for it
     99  1.16  perseant  * and for any indirect blocks the may need to be created in order for
    100  1.16  perseant  * this block to be created.
    101  1.16  perseant  *
    102  1.16  perseant  * Blocks which have never been accounted for (i.e., which "do not exist")
    103  1.75  dholland  * have disk address 0, which is translated by ulfs_bmap to the special value
    104  1.75  dholland  * UNASSIGNED == -1, as in the historical ULFS.
    105  1.50     perry  *
    106  1.16  perseant  * Blocks which have been accounted for but which have not yet been written
    107  1.16  perseant  * to disk are given the new special disk address UNWRITTEN == -2, so that
    108  1.16  perseant  * they can be differentiated from completely new blocks.
    109  1.16  perseant  */
    110  1.75  dholland /* VOP_BWRITE ULFS_NIADDR+2 times */
    111   1.1   mycroft int
    112  1.61      elad lfs_balloc(struct vnode *vp, off_t startoffset, int iosize, kauth_cred_t cred,
    113  1.57      yamt     int flags, struct buf **bpp)
    114  1.14      fvdl {
    115   1.5      fvdl 	int offset;
    116  1.46   mycroft 	daddr_t daddr, idaddr;
    117  1.57      yamt 	struct buf *ibp, *bp;
    118   1.1   mycroft 	struct inode *ip;
    119   1.1   mycroft 	struct lfs *fs;
    120  1.75  dholland 	struct indir indirs[ULFS_NIADDR+2], *idp;
    121  1.35      fvdl 	daddr_t	lbn, lastblock;
    122  1.69   mlelstv 	int bcount;
    123  1.11  perseant 	int error, frags, i, nsize, osize, num;
    124  1.14      fvdl 
    125   1.1   mycroft 	ip = VTOI(vp);
    126   1.1   mycroft 	fs = ip->i_lfs;
    127  1.77  christos 	offset = lfs_blkoff(fs, startoffset);
    128  1.41      yamt 	KASSERT(iosize <= fs->lfs_bsize);
    129  1.77  christos 	lbn = lfs_lblkno(fs, startoffset);
    130  1.36  perseant 	/* (void)lfs_check(vp, lbn, 0); */
    131  1.36  perseant 
    132  1.52  perseant 	ASSERT_MAYBE_SEGLOCK(fs);
    133  1.52  perseant 
    134  1.50     perry 	/*
    135   1.1   mycroft 	 * Three cases: it's a block beyond the end of file, it's a block in
    136   1.1   mycroft 	 * the file that may or may not have been assigned a disk address or
    137  1.19  perseant 	 * we're writing an entire block.
    138  1.19  perseant 	 *
    139  1.19  perseant 	 * Note, if the daddr is UNWRITTEN, the block already exists in
    140  1.37  perseant 	 * the cache (it was read or written earlier).	If so, make sure
    141  1.19  perseant 	 * we don't count it as a new block or zero out its contents. If
    142  1.19  perseant 	 * it did not, make sure we allocate any necessary indirect
    143  1.19  perseant 	 * blocks.
    144  1.19  perseant 	 *
    145   1.5      fvdl 	 * If we are writing a block beyond the end of the file, we need to
    146  1.11  perseant 	 * check if the old last block was a fragment.	If it was, we need
    147   1.5      fvdl 	 * to rewrite it.
    148   1.1   mycroft 	 */
    149  1.50     perry 
    150  1.36  perseant 	if (bpp)
    151  1.36  perseant 		*bpp = NULL;
    152  1.50     perry 
    153   1.5      fvdl 	/* Check for block beyond end of file and fragment extension needed. */
    154  1.77  christos 	lastblock = lfs_lblkno(fs, ip->i_size);
    155  1.75  dholland 	if (lastblock < ULFS_NDADDR && lastblock < lbn) {
    156  1.77  christos 		osize = lfs_blksize(fs, ip, lastblock);
    157   1.5      fvdl 		if (osize < fs->lfs_bsize && osize > 0) {
    158   1.5      fvdl 			if ((error = lfs_fragextend(vp, osize, fs->lfs_bsize,
    159  1.36  perseant 						    lastblock,
    160  1.57      yamt 						    (bpp ? &bp : NULL), cred)))
    161  1.31       chs 				return (error);
    162  1.40      fvdl 			ip->i_ffs1_size = ip->i_size =
    163  1.40      fvdl 			    (lastblock + 1) * fs->lfs_bsize;
    164  1.40      fvdl 			uvm_vnp_setsize(vp, ip->i_size);
    165   1.5      fvdl 			ip->i_flag |= IN_CHANGE | IN_UPDATE;
    166  1.36  perseant 			if (bpp)
    167  1.70   hannken 				(void) VOP_BWRITE(bp->b_vp, bp);
    168   1.5      fvdl 		}
    169   1.5      fvdl 	}
    170   1.5      fvdl 
    171   1.5      fvdl 	/*
    172   1.5      fvdl 	 * If the block we are writing is a direct block, it's the last
    173   1.5      fvdl 	 * block in the file, and offset + iosize is less than a full
    174   1.5      fvdl 	 * block, we can write one or more fragments.  There are two cases:
    175   1.5      fvdl 	 * the block is brand new and we should allocate it the correct
    176   1.5      fvdl 	 * size or it already exists and contains some fragments and
    177   1.5      fvdl 	 * may need to extend it.
    178   1.5      fvdl 	 */
    179  1.77  christos 	if (lbn < ULFS_NDADDR && lfs_lblkno(fs, ip->i_size) <= lbn) {
    180  1.77  christos 		osize = lfs_blksize(fs, ip, lbn);
    181  1.77  christos 		nsize = lfs_fragroundup(fs, offset + iosize);
    182  1.77  christos 		if (lfs_lblktosize(fs, lbn) >= ip->i_size) {
    183   1.5      fvdl 			/* Brand new block or fragment */
    184  1.77  christos 			frags = lfs_numfrags(fs, nsize);
    185  1.69   mlelstv 			if (!ISSPACE(fs, frags, cred))
    186  1.51  perseant 				return ENOSPC;
    187  1.36  perseant 			if (bpp) {
    188  1.57      yamt 				*bpp = bp = getblk(vp, lbn, nsize, 0, 0);
    189  1.36  perseant 				bp->b_blkno = UNWRITTEN;
    190  1.57      yamt 				if (flags & B_CLRBUF)
    191  1.38  perseant 					clrbuf(bp);
    192  1.36  perseant 			}
    193  1.69   mlelstv 			ip->i_lfs_effnblks += frags;
    194  1.64        ad 			mutex_enter(&lfs_lock);
    195  1.69   mlelstv 			fs->lfs_bfree -= frags;
    196  1.64        ad 			mutex_exit(&lfs_lock);
    197  1.40      fvdl 			ip->i_ffs1_db[lbn] = UNWRITTEN;
    198  1.19  perseant 		} else {
    199  1.11  perseant 			if (nsize <= osize) {
    200  1.11  perseant 				/* No need to extend */
    201  1.67   hannken 				if (bpp && (error = bread(vp, lbn, osize,
    202  1.67   hannken 				    NOCRED, 0, &bp)))
    203  1.11  perseant 					return error;
    204  1.11  perseant 			} else {
    205  1.11  perseant 				/* Extend existing block */
    206  1.11  perseant 				if ((error =
    207  1.36  perseant 				     lfs_fragextend(vp, osize, nsize, lbn,
    208  1.57      yamt 						    (bpp ? &bp : NULL), cred)))
    209  1.19  perseant 					return error;
    210  1.11  perseant 			}
    211  1.36  perseant 			if (bpp)
    212  1.36  perseant 				*bpp = bp;
    213   1.5      fvdl 		}
    214  1.19  perseant 		return 0;
    215  1.19  perseant 	}
    216  1.19  perseant 
    217  1.75  dholland 	error = ulfs_bmaparray(vp, lbn, &daddr, &indirs[0], &num, NULL, NULL);
    218  1.19  perseant 	if (error)
    219  1.19  perseant 		return (error);
    220  1.49  perseant 
    221  1.49  perseant 	daddr = (daddr_t)((int32_t)daddr); /* XXX ondisk32 */
    222  1.49  perseant 	KASSERT(daddr <= LFS_MAX_DADDR);
    223  1.49  perseant 
    224  1.19  perseant 	/*
    225  1.19  perseant 	 * Do byte accounting all at once, so we can gracefully fail *before*
    226  1.19  perseant 	 * we start assigning blocks.
    227  1.19  perseant 	 */
    228  1.79  dholland 	frags = fs->um_seqinc;
    229  1.19  perseant 	bcount = 0;
    230  1.19  perseant 	if (daddr == UNASSIGNED) {
    231  1.69   mlelstv 		bcount = frags;
    232  1.19  perseant 	}
    233  1.19  perseant 	for (i = 1; i < num; ++i) {
    234  1.19  perseant 		if (!indirs[i].in_exists) {
    235  1.69   mlelstv 			bcount += frags;
    236  1.19  perseant 		}
    237  1.19  perseant 	}
    238  1.57      yamt 	if (ISSPACE(fs, bcount, cred)) {
    239  1.64        ad 		mutex_enter(&lfs_lock);
    240  1.53  perseant 		fs->lfs_bfree -= bcount;
    241  1.64        ad 		mutex_exit(&lfs_lock);
    242  1.21  perseant 		ip->i_lfs_effnblks += bcount;
    243   1.5      fvdl 	} else {
    244  1.19  perseant 		return ENOSPC;
    245  1.19  perseant 	}
    246  1.19  perseant 
    247  1.19  perseant 	if (daddr == UNASSIGNED) {
    248  1.40      fvdl 		if (num > 0 && ip->i_ffs1_ib[indirs[0].in_off] == 0) {
    249  1.40      fvdl 			ip->i_ffs1_ib[indirs[0].in_off] = UNWRITTEN;
    250  1.19  perseant 		}
    251  1.19  perseant 
    252   1.5      fvdl 		/*
    253  1.19  perseant 		 * Create new indirect blocks if necessary
    254   1.5      fvdl 		 */
    255  1.46   mycroft 		if (num > 1) {
    256  1.40      fvdl 			idaddr = ip->i_ffs1_ib[indirs[0].in_off];
    257  1.46   mycroft 			for (i = 1; i < num; ++i) {
    258  1.46   mycroft 				ibp = getblk(vp, indirs[i].in_lbn,
    259  1.46   mycroft 				    fs->lfs_bsize, 0,0);
    260  1.46   mycroft 				if (!indirs[i].in_exists) {
    261  1.46   mycroft 					clrbuf(ibp);
    262  1.46   mycroft 					ibp->b_blkno = UNWRITTEN;
    263  1.64        ad 				} else if (!(ibp->b_oflags & (BO_DELWRI | BO_DONE))) {
    264  1.77  christos 					ibp->b_blkno = LFS_FSBTODB(fs, idaddr);
    265  1.46   mycroft 					ibp->b_flags |= B_READ;
    266  1.48   hannken 					VOP_STRATEGY(vp, ibp);
    267  1.46   mycroft 					biowait(ibp);
    268  1.46   mycroft 				}
    269  1.46   mycroft 				/*
    270  1.46   mycroft 				 * This block exists, but the next one may not.
    271  1.46   mycroft 				 * If that is the case mark it UNWRITTEN to keep
    272  1.46   mycroft 				 * the accounting straight.
    273  1.46   mycroft 				 */
    274  1.46   mycroft 				/* XXX ondisk32 */
    275  1.46   mycroft 				if (((int32_t *)ibp->b_data)[indirs[i].in_off] == 0)
    276  1.46   mycroft 					((int32_t *)ibp->b_data)[indirs[i].in_off] =
    277  1.46   mycroft 						UNWRITTEN;
    278  1.46   mycroft 				/* XXX ondisk32 */
    279  1.46   mycroft 				idaddr = ((int32_t *)ibp->b_data)[indirs[i].in_off];
    280  1.52  perseant #ifdef DEBUG
    281  1.52  perseant 				if (vp == fs->lfs_ivnode) {
    282  1.52  perseant 					LFS_ENTER_LOG("balloc", __FILE__,
    283  1.52  perseant 						__LINE__, indirs[i].in_lbn,
    284  1.52  perseant 						ibp->b_flags, curproc->p_pid);
    285  1.52  perseant 				}
    286  1.52  perseant #endif
    287  1.70   hannken 				if ((error = VOP_BWRITE(ibp->b_vp, ibp)))
    288  1.46   mycroft 					return error;
    289  1.19  perseant 			}
    290  1.19  perseant 		}
    291  1.50     perry 	}
    292  1.19  perseant 
    293  1.19  perseant 
    294  1.19  perseant 	/*
    295  1.36  perseant 	 * Get the existing block from the cache, if requested.
    296  1.19  perseant 	 */
    297  1.36  perseant 	if (bpp)
    298  1.77  christos 		*bpp = bp = getblk(vp, lbn, lfs_blksize(fs, ip, lbn), 0, 0);
    299  1.50     perry 
    300  1.49  perseant 	/*
    301  1.49  perseant 	 * Do accounting on blocks that represent pages.
    302  1.49  perseant 	 */
    303  1.49  perseant 	if (!bpp)
    304  1.49  perseant 		lfs_register_block(vp, lbn);
    305  1.49  perseant 
    306  1.50     perry 	/*
    307   1.5      fvdl 	 * The block we are writing may be a brand new block
    308  1.19  perseant 	 * in which case we need to do accounting.
    309  1.15  perseant 	 *
    310  1.75  dholland 	 * We can tell a truly new block because ulfs_bmaparray will say
    311  1.19  perseant 	 * it is UNASSIGNED.  Once we allocate it we will assign it the
    312  1.19  perseant 	 * disk address UNWRITTEN.
    313   1.5      fvdl 	 */
    314  1.16  perseant 	if (daddr == UNASSIGNED) {
    315  1.36  perseant 		if (bpp) {
    316  1.57      yamt 			if (flags & B_CLRBUF)
    317  1.36  perseant 				clrbuf(bp);
    318  1.50     perry 
    319  1.36  perseant 			/* Note the new address */
    320  1.36  perseant 			bp->b_blkno = UNWRITTEN;
    321  1.36  perseant 		}
    322  1.50     perry 
    323  1.19  perseant 		switch (num) {
    324  1.19  perseant 		    case 0:
    325  1.40      fvdl 			ip->i_ffs1_db[lbn] = UNWRITTEN;
    326  1.19  perseant 			break;
    327  1.19  perseant 		    case 1:
    328  1.40      fvdl 			ip->i_ffs1_ib[indirs[0].in_off] = UNWRITTEN;
    329  1.19  perseant 			break;
    330  1.19  perseant 		    default:
    331  1.19  perseant 			idp = &indirs[num - 1];
    332  1.19  perseant 			if (bread(vp, idp->in_lbn, fs->lfs_bsize, NOCRED,
    333  1.67   hannken 				  B_MODIFY, &ibp))
    334  1.35      fvdl 				panic("lfs_balloc: bread bno %lld",
    335  1.35      fvdl 				    (long long)idp->in_lbn);
    336  1.35      fvdl 			/* XXX ondisk32 */
    337  1.35      fvdl 			((int32_t *)ibp->b_data)[idp->in_off] = UNWRITTEN;
    338  1.52  perseant #ifdef DEBUG
    339  1.52  perseant 			if (vp == fs->lfs_ivnode) {
    340  1.52  perseant 				LFS_ENTER_LOG("balloc", __FILE__,
    341  1.52  perseant 					__LINE__, idp->in_lbn,
    342  1.52  perseant 					ibp->b_flags, curproc->p_pid);
    343  1.52  perseant 			}
    344  1.52  perseant #endif
    345  1.70   hannken 			VOP_BWRITE(ibp->b_vp, ibp);
    346  1.15  perseant 		}
    347  1.64        ad 	} else if (bpp && !(bp->b_oflags & (BO_DONE|BO_DELWRI))) {
    348  1.15  perseant 		/*
    349  1.15  perseant 		 * Not a brand new block, also not in the cache;
    350  1.15  perseant 		 * read it in from disk.
    351  1.15  perseant 		 */
    352  1.15  perseant 		if (iosize == fs->lfs_bsize)
    353   1.5      fvdl 			/* Optimization: I/O is unnecessary. */
    354   1.5      fvdl 			bp->b_blkno = daddr;
    355  1.15  perseant 		else {
    356   1.5      fvdl 			/*
    357   1.5      fvdl 			 * We need to read the block to preserve the
    358   1.5      fvdl 			 * existing bytes.
    359   1.5      fvdl 			 */
    360   1.1   mycroft 			bp->b_blkno = daddr;
    361   1.1   mycroft 			bp->b_flags |= B_READ;
    362  1.48   hannken 			VOP_STRATEGY(vp, bp);
    363  1.31       chs 			return (biowait(bp));
    364   1.1   mycroft 		}
    365   1.1   mycroft 	}
    366  1.50     perry 
    367   1.5      fvdl 	return (0);
    368   1.5      fvdl }
    369   1.5      fvdl 
    370  1.25  perseant /* VOP_BWRITE 1 time */
    371   1.5      fvdl int
    372  1.61      elad lfs_fragextend(struct vnode *vp, int osize, int nsize, daddr_t lbn, struct buf **bpp,
    373  1.61      elad     kauth_cred_t cred)
    374   1.5      fvdl {
    375   1.5      fvdl 	struct inode *ip;
    376   1.5      fvdl 	struct lfs *fs;
    377  1.69   mlelstv 	long frags;
    378   1.5      fvdl 	int error;
    379  1.11  perseant 	extern long locked_queue_bytes;
    380  1.26  perseant 	size_t obufsize;
    381   1.5      fvdl 
    382   1.5      fvdl 	ip = VTOI(vp);
    383   1.5      fvdl 	fs = ip->i_lfs;
    384  1.77  christos 	frags = (long)lfs_numfrags(fs, nsize - osize);
    385  1.18  perseant 	error = 0;
    386  1.18  perseant 
    387  1.60  perseant 	ASSERT_NO_SEGLOCK(fs);
    388  1.52  perseant 
    389  1.18  perseant 	/*
    390  1.36  perseant 	 * Get the seglock so we don't enlarge blocks while a segment
    391  1.36  perseant 	 * is being written.  If we're called with bpp==NULL, though,
    392  1.36  perseant 	 * we are only pretending to change a buffer, so we don't have to
    393  1.36  perseant 	 * lock.
    394  1.18  perseant 	 */
    395  1.26  perseant     top:
    396  1.36  perseant 	if (bpp) {
    397  1.62        ad 		rw_enter(&fs->lfs_fraglock, RW_READER);
    398  1.44      yamt 		LFS_DEBUG_COUNTLOCKED("frag");
    399  1.36  perseant 	}
    400  1.36  perseant 
    401  1.69   mlelstv 	if (!ISSPACE(fs, frags, cred)) {
    402  1.18  perseant 		error = ENOSPC;
    403  1.18  perseant 		goto out;
    404   1.5      fvdl 	}
    405  1.36  perseant 
    406  1.36  perseant 	/*
    407  1.36  perseant 	 * If we are not asked to actually return the block, all we need
    408  1.36  perseant 	 * to do is allocate space for it.  UBC will handle dirtying the
    409  1.36  perseant 	 * appropriate things and making sure it all goes to disk.
    410  1.36  perseant 	 * Don't bother to read in that case.
    411  1.36  perseant 	 */
    412  1.67   hannken 	if (bpp && (error = bread(vp, lbn, osize, NOCRED, 0, bpp))) {
    413  1.18  perseant 		goto out;
    414   1.5      fvdl 	}
    415  1.80  dholland #if defined(LFS_QUOTA) || defined(LFS_QUOTA2)
    416  1.76  dholland 	if ((error = lfs_chkdq(ip, frags, cred, 0))) {
    417  1.36  perseant 		if (bpp)
    418  1.63        ad 			brelse(*bpp, 0);
    419  1.19  perseant 		goto out;
    420  1.19  perseant 	}
    421  1.19  perseant #endif
    422  1.13  perseant 	/*
    423  1.26  perseant 	 * Adjust accounting for lfs_avail.  If there's not enough room,
    424  1.26  perseant 	 * we will have to wait for the cleaner, which we can't do while
    425  1.26  perseant 	 * holding a block busy or while holding the seglock.  In that case,
    426  1.26  perseant 	 * release both and start over after waiting.
    427  1.26  perseant 	 */
    428  1.33  perseant 
    429  1.64        ad 	if (bpp && ((*bpp)->b_oflags & BO_DELWRI)) {
    430  1.69   mlelstv 		if (!lfs_fits(fs, frags)) {
    431  1.36  perseant 			if (bpp)
    432  1.63        ad 				brelse(*bpp, 0);
    433  1.80  dholland #if defined(LFS_QUOTA) || defined(LFS_QUOTA2)
    434  1.76  dholland 			lfs_chkdq(ip, -frags, cred, 0);
    435  1.26  perseant #endif
    436  1.62        ad 			rw_exit(&fs->lfs_fraglock);
    437  1.69   mlelstv 			lfs_availwait(fs, frags);
    438  1.26  perseant 			goto top;
    439  1.26  perseant 		}
    440  1.69   mlelstv 		fs->lfs_avail -= frags;
    441  1.26  perseant 	}
    442  1.26  perseant 
    443  1.64        ad 	mutex_enter(&lfs_lock);
    444  1.69   mlelstv 	fs->lfs_bfree -= frags;
    445  1.64        ad 	mutex_exit(&lfs_lock);
    446  1.69   mlelstv 	ip->i_lfs_effnblks += frags;
    447   1.5      fvdl 	ip->i_flag |= IN_CHANGE | IN_UPDATE;
    448  1.26  perseant 
    449  1.36  perseant 	if (bpp) {
    450  1.36  perseant 		obufsize = (*bpp)->b_bufsize;
    451  1.47        pk 		allocbuf(*bpp, nsize, 1);
    452  1.26  perseant 
    453  1.36  perseant 		/* Adjust locked-list accounting */
    454  1.65        ad 		if (((*bpp)->b_flags & B_LOCKED) != 0 &&
    455  1.64        ad 		    (*bpp)->b_iodone == NULL) {
    456  1.64        ad 			mutex_enter(&lfs_lock);
    457  1.36  perseant 			locked_queue_bytes += (*bpp)->b_bufsize - obufsize;
    458  1.64        ad 			mutex_exit(&lfs_lock);
    459  1.52  perseant 		}
    460  1.26  perseant 
    461  1.68    cegger 		memset((char *)((*bpp)->b_data) + osize, 0, (u_int)(nsize - osize));
    462  1.36  perseant 	}
    463  1.18  perseant 
    464  1.18  perseant     out:
    465  1.36  perseant 	if (bpp) {
    466  1.62        ad 		rw_exit(&fs->lfs_fraglock);
    467  1.36  perseant 	}
    468  1.18  perseant 	return (error);
    469   1.1   mycroft }
    470  1.49  perseant 
    471  1.59     perry static inline int
    472  1.55  perseant lge(struct lbnentry *a, struct lbnentry *b)
    473  1.53  perseant {
    474  1.55  perseant 	return a->lbn - b->lbn;
    475  1.53  perseant }
    476  1.53  perseant 
    477  1.55  perseant SPLAY_PROTOTYPE(lfs_splay, lbnentry, entry, lge);
    478  1.55  perseant 
    479  1.55  perseant SPLAY_GENERATE(lfs_splay, lbnentry, entry, lge);
    480  1.53  perseant 
    481  1.49  perseant /*
    482  1.49  perseant  * Record this lbn as being "write pending".  We used to have this information
    483  1.49  perseant  * on the buffer headers, but since pages don't have buffer headers we
    484  1.49  perseant  * record it here instead.
    485  1.49  perseant  */
    486  1.49  perseant void
    487  1.49  perseant lfs_register_block(struct vnode *vp, daddr_t lbn)
    488  1.49  perseant {
    489  1.49  perseant 	struct lfs *fs;
    490  1.49  perseant 	struct inode *ip;
    491  1.49  perseant 	struct lbnentry *lbp;
    492  1.53  perseant 
    493  1.53  perseant 	ip = VTOI(vp);
    494  1.49  perseant 
    495  1.49  perseant 	/* Don't count metadata */
    496  1.53  perseant 	if (lbn < 0 || vp->v_type != VREG || ip->i_number == LFS_IFILE_INUM)
    497  1.49  perseant 		return;
    498  1.49  perseant 
    499  1.49  perseant 	fs = ip->i_lfs;
    500  1.49  perseant 
    501  1.52  perseant 	ASSERT_NO_SEGLOCK(fs);
    502  1.52  perseant 
    503  1.49  perseant 	/* If no space, wait for the cleaner */
    504  1.77  christos 	lfs_availwait(fs, lfs_btofsb(fs, 1 << fs->lfs_bshift));
    505  1.49  perseant 
    506  1.49  perseant 	lbp = (struct lbnentry *)pool_get(&lfs_lbnentry_pool, PR_WAITOK);
    507  1.49  perseant 	lbp->lbn = lbn;
    508  1.64        ad 	mutex_enter(&lfs_lock);
    509  1.55  perseant 	if (SPLAY_INSERT(lfs_splay, &ip->i_lfs_lbtree, lbp) != NULL) {
    510  1.64        ad 		mutex_exit(&lfs_lock);
    511  1.55  perseant 		/* Already there */
    512  1.55  perseant 		pool_put(&lfs_lbnentry_pool, lbp);
    513  1.55  perseant 		return;
    514  1.55  perseant 	}
    515  1.52  perseant 
    516  1.56  perseant 	++ip->i_lfs_nbtree;
    517  1.77  christos 	fs->lfs_favail += lfs_btofsb(fs, (1 << fs->lfs_bshift));
    518  1.56  perseant 	fs->lfs_pages += fs->lfs_bsize >> PAGE_SHIFT;
    519  1.49  perseant 	++locked_fakequeue_count;
    520  1.56  perseant 	lfs_subsys_pages += fs->lfs_bsize >> PAGE_SHIFT;
    521  1.64        ad 	mutex_exit(&lfs_lock);
    522  1.49  perseant }
    523  1.49  perseant 
    524  1.49  perseant static void
    525  1.53  perseant lfs_do_deregister(struct lfs *fs, struct inode *ip, struct lbnentry *lbp)
    526  1.49  perseant {
    527  1.52  perseant 	ASSERT_MAYBE_SEGLOCK(fs);
    528  1.52  perseant 
    529  1.64        ad 	mutex_enter(&lfs_lock);
    530  1.56  perseant 	--ip->i_lfs_nbtree;
    531  1.55  perseant 	SPLAY_REMOVE(lfs_splay, &ip->i_lfs_lbtree, lbp);
    532  1.77  christos 	if (fs->lfs_favail > lfs_btofsb(fs, (1 << fs->lfs_bshift)))
    533  1.77  christos 		fs->lfs_favail -= lfs_btofsb(fs, (1 << fs->lfs_bshift));
    534  1.56  perseant 	fs->lfs_pages -= fs->lfs_bsize >> PAGE_SHIFT;
    535  1.49  perseant 	if (locked_fakequeue_count > 0)
    536  1.49  perseant 		--locked_fakequeue_count;
    537  1.56  perseant 	lfs_subsys_pages -= fs->lfs_bsize >> PAGE_SHIFT;
    538  1.64        ad 	mutex_exit(&lfs_lock);
    539  1.64        ad 
    540  1.64        ad 	pool_put(&lfs_lbnentry_pool, lbp);
    541  1.49  perseant }
    542  1.49  perseant 
    543  1.49  perseant void
    544  1.49  perseant lfs_deregister_block(struct vnode *vp, daddr_t lbn)
    545  1.49  perseant {
    546  1.49  perseant 	struct lfs *fs;
    547  1.49  perseant 	struct inode *ip;
    548  1.49  perseant 	struct lbnentry *lbp;
    549  1.55  perseant 	struct lbnentry tmp;
    550  1.53  perseant 
    551  1.53  perseant 	ip = VTOI(vp);
    552  1.49  perseant 
    553  1.49  perseant 	/* Don't count metadata */
    554  1.53  perseant 	if (lbn < 0 || vp->v_type != VREG || ip->i_number == LFS_IFILE_INUM)
    555  1.49  perseant 		return;
    556  1.49  perseant 
    557  1.49  perseant 	fs = ip->i_lfs;
    558  1.55  perseant 	tmp.lbn = lbn;
    559  1.55  perseant 	lbp = SPLAY_FIND(lfs_splay, &ip->i_lfs_lbtree, &tmp);
    560  1.49  perseant 	if (lbp == NULL)
    561  1.49  perseant 		return;
    562  1.49  perseant 
    563  1.53  perseant 	lfs_do_deregister(fs, ip, lbp);
    564  1.49  perseant }
    565  1.55  perseant 
    566  1.55  perseant void
    567  1.55  perseant lfs_deregister_all(struct vnode *vp)
    568  1.55  perseant {
    569  1.55  perseant 	struct lbnentry *lbp, *nlbp;
    570  1.55  perseant 	struct lfs_splay *hd;
    571  1.55  perseant 	struct lfs *fs;
    572  1.55  perseant 	struct inode *ip;
    573  1.55  perseant 
    574  1.55  perseant 	ip = VTOI(vp);
    575  1.55  perseant 	fs = ip->i_lfs;
    576  1.55  perseant 	hd = &ip->i_lfs_lbtree;
    577  1.55  perseant 
    578  1.55  perseant 	for (lbp = SPLAY_MIN(lfs_splay, hd); lbp != NULL; lbp = nlbp) {
    579  1.55  perseant 		nlbp = SPLAY_NEXT(lfs_splay, hd, lbp);
    580  1.55  perseant 		lfs_do_deregister(fs, ip, lbp);
    581  1.55  perseant 	}
    582  1.55  perseant }
    583