Home | History | Annotate | Line # | Download | only in ffs
ffs_balloc.c revision 1.23.2.2
      1  1.23.2.2   nathanw /*	$NetBSD: ffs_balloc.c,v 1.23.2.2 2001/06/21 20:10:05 nathanw Exp $	*/
      2       1.2       cgd 
      3       1.1   mycroft /*
      4       1.1   mycroft  * Copyright (c) 1982, 1986, 1989, 1993
      5       1.1   mycroft  *	The Regents of the University of California.  All rights reserved.
      6       1.1   mycroft  *
      7       1.1   mycroft  * Redistribution and use in source and binary forms, with or without
      8       1.1   mycroft  * modification, are permitted provided that the following conditions
      9       1.1   mycroft  * are met:
     10       1.1   mycroft  * 1. Redistributions of source code must retain the above copyright
     11       1.1   mycroft  *    notice, this list of conditions and the following disclaimer.
     12       1.1   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1   mycroft  *    notice, this list of conditions and the following disclaimer in the
     14       1.1   mycroft  *    documentation and/or other materials provided with the distribution.
     15       1.1   mycroft  * 3. All advertising materials mentioning features or use of this software
     16       1.1   mycroft  *    must display the following acknowledgement:
     17       1.1   mycroft  *	This product includes software developed by the University of
     18       1.1   mycroft  *	California, Berkeley and its contributors.
     19       1.1   mycroft  * 4. Neither the name of the University nor the names of its contributors
     20       1.1   mycroft  *    may be used to endorse or promote products derived from this software
     21       1.1   mycroft  *    without specific prior written permission.
     22       1.1   mycroft  *
     23       1.1   mycroft  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24       1.1   mycroft  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25       1.1   mycroft  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26       1.1   mycroft  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27       1.1   mycroft  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28       1.1   mycroft  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29       1.1   mycroft  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30       1.1   mycroft  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31       1.1   mycroft  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32       1.1   mycroft  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33       1.1   mycroft  * SUCH DAMAGE.
     34       1.1   mycroft  *
     35       1.8      fvdl  *	@(#)ffs_balloc.c	8.8 (Berkeley) 6/16/95
     36       1.1   mycroft  */
     37       1.7       mrg 
     38  1.23.2.2   nathanw #if defined(_KERNEL_OPT)
     39      1.10    scottr #include "opt_quota.h"
     40      1.11    scottr #endif
     41       1.1   mycroft 
     42       1.1   mycroft #include <sys/param.h>
     43       1.1   mycroft #include <sys/systm.h>
     44       1.1   mycroft #include <sys/buf.h>
     45  1.23.2.1   nathanw #include <sys/lwp.h>
     46       1.1   mycroft #include <sys/proc.h>
     47       1.1   mycroft #include <sys/file.h>
     48      1.15      fvdl #include <sys/mount.h>
     49       1.1   mycroft #include <sys/vnode.h>
     50       1.9    bouyer #include <sys/mount.h>
     51       1.6       mrg 
     52       1.1   mycroft #include <ufs/ufs/quota.h>
     53       1.9    bouyer #include <ufs/ufs/ufsmount.h>
     54       1.1   mycroft #include <ufs/ufs/inode.h>
     55       1.1   mycroft #include <ufs/ufs/ufs_extern.h>
     56       1.9    bouyer #include <ufs/ufs/ufs_bswap.h>
     57       1.1   mycroft 
     58       1.1   mycroft #include <ufs/ffs/fs.h>
     59       1.1   mycroft #include <ufs/ffs/ffs_extern.h>
     60       1.1   mycroft 
     61      1.23       chs #include <uvm/uvm.h>
     62      1.23       chs 
     63       1.1   mycroft /*
     64       1.1   mycroft  * Balloc defines the structure of file system storage
     65       1.1   mycroft  * by allocating the physical blocks on a device given
     66       1.1   mycroft  * the inode and the logical block number in a file.
     67       1.1   mycroft  */
     68       1.3  christos int
     69      1.15      fvdl ffs_balloc(v)
     70      1.15      fvdl 	void *v;
     71      1.15      fvdl {
     72      1.15      fvdl 	struct vop_balloc_args /* {
     73      1.15      fvdl 		struct vnode *a_vp;
     74      1.15      fvdl 		off_t a_startpoint;
     75      1.15      fvdl 		int a_size;
     76      1.15      fvdl 		struct ucred *a_cred;
     77      1.15      fvdl 		int a_flags;
     78      1.23       chs 		struct buf **a_bpp;
     79      1.15      fvdl 	} */ *ap = v;
     80      1.15      fvdl 	ufs_daddr_t lbn;
     81       1.1   mycroft 	int size;
     82       1.1   mycroft 	struct ucred *cred;
     83       1.1   mycroft 	int flags;
     84      1.15      fvdl 	ufs_daddr_t nb;
     85       1.1   mycroft 	struct buf *bp, *nbp;
     86      1.15      fvdl 	struct vnode *vp = ap->a_vp;
     87      1.15      fvdl 	struct inode *ip = VTOI(vp);
     88      1.15      fvdl 	struct fs *fs = ip->i_fs;
     89       1.1   mycroft 	struct indir indirs[NIADDR + 2];
     90       1.8      fvdl 	ufs_daddr_t newb, *bap, pref;
     91       1.8      fvdl 	int deallocated, osize, nsize, num, i, error;
     92       1.8      fvdl 	ufs_daddr_t *allocib, *blkp, *allocblk, allociblk[NIADDR + 1];
     93      1.17      fvdl 	int unwindidx = -1;
     94      1.23       chs 	struct buf **bpp = ap->a_bpp;
     95      1.15      fvdl #ifdef FFS_EI
     96      1.15      fvdl 	const int needswap = UFS_FSNEEDSWAP(fs);
     97      1.15      fvdl #endif
     98      1.23       chs 	UVMHIST_FUNC("ffs_balloc"); UVMHIST_CALLED(ubchist);
     99       1.1   mycroft 
    100      1.15      fvdl 	lbn = lblkno(fs, ap->a_startoffset);
    101      1.15      fvdl 	size = blkoff(fs, ap->a_startoffset) + ap->a_size;
    102      1.15      fvdl 	if (size > fs->fs_bsize)
    103      1.15      fvdl 		panic("ffs_balloc: blk too big");
    104      1.23       chs 	if (bpp != NULL) {
    105      1.23       chs 		*bpp = NULL;
    106      1.23       chs 	}
    107      1.23       chs 	UVMHIST_LOG(ubchist, "vp %p lbn 0x%x size 0x%x", vp, lbn, size,0);
    108      1.23       chs 
    109      1.23       chs 	KASSERT(size <= fs->fs_bsize);
    110       1.8      fvdl 	if (lbn < 0)
    111       1.1   mycroft 		return (EFBIG);
    112      1.15      fvdl 	cred = ap->a_cred;
    113      1.15      fvdl 	flags = ap->a_flags;
    114       1.1   mycroft 
    115       1.1   mycroft 	/*
    116       1.1   mycroft 	 * If the next write will extend the file into a new block,
    117       1.1   mycroft 	 * and the file is currently composed of a fragment
    118       1.1   mycroft 	 * this fragment has to be extended to be a full block.
    119       1.1   mycroft 	 */
    120      1.23       chs 
    121       1.4    bouyer 	nb = lblkno(fs, ip->i_ffs_size);
    122       1.8      fvdl 	if (nb < NDADDR && nb < lbn) {
    123       1.1   mycroft 		osize = blksize(fs, ip, nb);
    124       1.1   mycroft 		if (osize < fs->fs_bsize && osize > 0) {
    125       1.1   mycroft 			error = ffs_realloccg(ip, nb,
    126       1.4    bouyer 				ffs_blkpref(ip, nb, (int)nb, &ip->i_ffs_db[0]),
    127      1.23       chs 				osize, (int)fs->fs_bsize, cred, bpp, &newb);
    128       1.1   mycroft 			if (error)
    129       1.1   mycroft 				return (error);
    130      1.15      fvdl 			if (DOINGSOFTDEP(vp))
    131      1.23       chs 				softdep_setup_allocdirect(ip, nb, newb,
    132      1.15      fvdl 				    ufs_rw32(ip->i_ffs_db[nb], needswap),
    133      1.23       chs 				    fs->fs_bsize, osize, bpp ? *bpp : NULL);
    134      1.23       chs 			ip->i_ffs_size = lblktosize(fs, nb + 1);
    135       1.6       mrg 			uvm_vnp_setsize(vp, ip->i_ffs_size);
    136      1.23       chs 			ip->i_ffs_db[nb] = ufs_rw32(newb, needswap);
    137       1.1   mycroft 			ip->i_flag |= IN_CHANGE | IN_UPDATE;
    138      1.23       chs 			if (bpp) {
    139      1.23       chs 				if (flags & B_SYNC)
    140      1.23       chs 					bwrite(*bpp);
    141      1.23       chs 				else
    142      1.23       chs 					bawrite(*bpp);
    143      1.23       chs 			}
    144       1.1   mycroft 		}
    145       1.1   mycroft 	}
    146      1.23       chs 
    147       1.1   mycroft 	/*
    148       1.1   mycroft 	 * The first NDADDR blocks are direct blocks
    149       1.1   mycroft 	 */
    150      1.23       chs 
    151       1.8      fvdl 	if (lbn < NDADDR) {
    152      1.15      fvdl 		nb = ufs_rw32(ip->i_ffs_db[lbn], needswap);
    153      1.23       chs 		if (nb != 0 && ip->i_ffs_size >= lblktosize(fs, lbn + 1)) {
    154      1.23       chs 
    155      1.23       chs 			/*
    156      1.23       chs 			 * The block is an already-allocated direct block
    157      1.23       chs 			 * and the file already extends past this block,
    158      1.23       chs 			 * thus this must be a whole block.
    159      1.23       chs 			 * Just read the block (if requested).
    160      1.23       chs 			 */
    161      1.23       chs 
    162      1.23       chs 			if (bpp != NULL) {
    163      1.23       chs 				error = bread(vp, lbn, fs->fs_bsize, NOCRED,
    164      1.23       chs 					      bpp);
    165      1.23       chs 				if (error) {
    166      1.23       chs 					brelse(*bpp);
    167      1.23       chs 					return (error);
    168      1.23       chs 				}
    169       1.1   mycroft 			}
    170       1.1   mycroft 			return (0);
    171       1.1   mycroft 		}
    172       1.1   mycroft 		if (nb != 0) {
    173      1.23       chs 
    174       1.1   mycroft 			/*
    175       1.1   mycroft 			 * Consider need to reallocate a fragment.
    176       1.1   mycroft 			 */
    177      1.23       chs 
    178       1.4    bouyer 			osize = fragroundup(fs, blkoff(fs, ip->i_ffs_size));
    179       1.1   mycroft 			nsize = fragroundup(fs, size);
    180       1.1   mycroft 			if (nsize <= osize) {
    181      1.23       chs 
    182      1.23       chs 				/*
    183      1.23       chs 				 * The existing block is already
    184      1.23       chs 				 * at least as big as we want.
    185      1.23       chs 				 * Just read the block (if requested).
    186      1.23       chs 				 */
    187      1.23       chs 
    188      1.23       chs 				if (bpp != NULL) {
    189      1.23       chs 					error = bread(vp, lbn, osize, NOCRED,
    190      1.23       chs 						      bpp);
    191      1.23       chs 					if (error) {
    192      1.23       chs 						brelse(*bpp);
    193      1.23       chs 						return (error);
    194      1.23       chs 					}
    195       1.1   mycroft 				}
    196      1.23       chs 				return 0;
    197       1.1   mycroft 			} else {
    198      1.23       chs 
    199      1.23       chs 				/*
    200      1.23       chs 				 * The existing block is smaller than we want,
    201      1.23       chs 				 * grow it.
    202      1.23       chs 				 */
    203      1.23       chs 
    204       1.8      fvdl 				error = ffs_realloccg(ip, lbn,
    205       1.8      fvdl 				    ffs_blkpref(ip, lbn, (int)lbn,
    206       1.8      fvdl 					&ip->i_ffs_db[0]), osize, nsize, cred,
    207      1.23       chs 					bpp, &newb);
    208       1.1   mycroft 				if (error)
    209       1.1   mycroft 					return (error);
    210      1.15      fvdl 				if (DOINGSOFTDEP(vp))
    211      1.15      fvdl 					softdep_setup_allocdirect(ip, lbn,
    212      1.23       chs 					    newb, nb, nsize, osize,
    213      1.23       chs 					    bpp ? *bpp : NULL);
    214       1.1   mycroft 			}
    215       1.1   mycroft 		} else {
    216      1.23       chs 
    217      1.23       chs 			/*
    218      1.23       chs 			 * the block was not previously allocated,
    219      1.23       chs 			 * allocate a new block or fragment.
    220      1.23       chs 			 */
    221      1.23       chs 
    222      1.23       chs 			if (ip->i_ffs_size < lblktosize(fs, lbn + 1))
    223       1.1   mycroft 				nsize = fragroundup(fs, size);
    224       1.1   mycroft 			else
    225       1.1   mycroft 				nsize = fs->fs_bsize;
    226       1.8      fvdl 			error = ffs_alloc(ip, lbn,
    227       1.8      fvdl 			    ffs_blkpref(ip, lbn, (int)lbn, &ip->i_ffs_db[0]),
    228       1.8      fvdl 				nsize, cred, &newb);
    229       1.1   mycroft 			if (error)
    230       1.1   mycroft 				return (error);
    231      1.23       chs 			if (bpp != NULL) {
    232      1.23       chs 				bp = getblk(vp, lbn, nsize, 0, 0);
    233      1.23       chs 				bp->b_blkno = fsbtodb(fs, newb);
    234      1.23       chs 				if (flags & B_CLRBUF)
    235      1.23       chs 					clrbuf(bp);
    236      1.23       chs 				*bpp = bp;
    237      1.23       chs 			}
    238      1.23       chs 			if (DOINGSOFTDEP(vp)) {
    239      1.15      fvdl 				softdep_setup_allocdirect(ip, lbn, newb, 0,
    240      1.23       chs 				    nsize, 0, bpp ? *bpp : NULL);
    241      1.23       chs 			}
    242       1.1   mycroft 		}
    243      1.23       chs 		ip->i_ffs_db[lbn] = ufs_rw32(newb, needswap);
    244       1.1   mycroft 		ip->i_flag |= IN_CHANGE | IN_UPDATE;
    245       1.1   mycroft 		return (0);
    246       1.1   mycroft 	}
    247       1.1   mycroft 	/*
    248       1.1   mycroft 	 * Determine the number of levels of indirection.
    249       1.1   mycroft 	 */
    250       1.1   mycroft 	pref = 0;
    251       1.8      fvdl 	if ((error = ufs_getlbns(vp, lbn, indirs, &num)) != 0)
    252       1.1   mycroft 		return(error);
    253      1.23       chs 
    254       1.1   mycroft #ifdef DIAGNOSTIC
    255       1.1   mycroft 	if (num < 1)
    256       1.1   mycroft 		panic ("ffs_balloc: ufs_bmaparray returned indirect block\n");
    257       1.1   mycroft #endif
    258       1.1   mycroft 	/*
    259       1.1   mycroft 	 * Fetch the first indirect block allocating if necessary.
    260       1.1   mycroft 	 */
    261       1.1   mycroft 	--num;
    262      1.15      fvdl 	nb = ufs_rw32(ip->i_ffs_ib[indirs[0].in_off], needswap);
    263       1.8      fvdl 	allocib = NULL;
    264       1.8      fvdl 	allocblk = allociblk;
    265       1.1   mycroft 	if (nb == 0) {
    266       1.8      fvdl 		pref = ffs_blkpref(ip, lbn, 0, (ufs_daddr_t *)0);
    267      1.18   mycroft 		error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, cred,
    268      1.18   mycroft 		    &newb);
    269       1.3  christos 		if (error)
    270       1.1   mycroft 			return (error);
    271       1.1   mycroft 		nb = newb;
    272       1.8      fvdl 		*allocblk++ = nb;
    273       1.1   mycroft 		bp = getblk(vp, indirs[1].in_lbn, fs->fs_bsize, 0, 0);
    274       1.8      fvdl 		bp->b_blkno = fsbtodb(fs, nb);
    275       1.1   mycroft 		clrbuf(bp);
    276      1.15      fvdl 		if (DOINGSOFTDEP(vp)) {
    277      1.15      fvdl 			softdep_setup_allocdirect(ip, NDADDR + indirs[0].in_off,
    278      1.15      fvdl 			    newb, 0, fs->fs_bsize, 0, bp);
    279      1.15      fvdl 			bdwrite(bp);
    280      1.15      fvdl 		} else {
    281      1.15      fvdl 			/*
    282      1.15      fvdl 			 * Write synchronously so that indirect blocks
    283      1.15      fvdl 			 * never point at garbage.
    284      1.15      fvdl 			 */
    285      1.15      fvdl 			if ((error = bwrite(bp)) != 0)
    286      1.15      fvdl 				goto fail;
    287      1.15      fvdl 		}
    288      1.18   mycroft 		unwindidx = 0;
    289       1.8      fvdl 		allocib = &ip->i_ffs_ib[indirs[0].in_off];
    290      1.15      fvdl 		*allocib = ufs_rw32(nb, needswap);
    291       1.1   mycroft 		ip->i_flag |= IN_CHANGE | IN_UPDATE;
    292       1.1   mycroft 	}
    293       1.1   mycroft 	/*
    294       1.1   mycroft 	 * Fetch through the indirect blocks, allocating as necessary.
    295       1.1   mycroft 	 */
    296       1.1   mycroft 	for (i = 1;;) {
    297       1.1   mycroft 		error = bread(vp,
    298       1.1   mycroft 		    indirs[i].in_lbn, (int)fs->fs_bsize, NOCRED, &bp);
    299       1.1   mycroft 		if (error) {
    300       1.1   mycroft 			brelse(bp);
    301       1.8      fvdl 			goto fail;
    302       1.1   mycroft 		}
    303       1.8      fvdl 		bap = (ufs_daddr_t *)bp->b_data;
    304      1.15      fvdl 		nb = ufs_rw32(bap[indirs[i].in_off], needswap);
    305       1.1   mycroft 		if (i == num)
    306       1.1   mycroft 			break;
    307      1.18   mycroft 		i++;
    308       1.1   mycroft 		if (nb != 0) {
    309       1.1   mycroft 			brelse(bp);
    310       1.1   mycroft 			continue;
    311       1.1   mycroft 		}
    312       1.1   mycroft 		if (pref == 0)
    313       1.8      fvdl 			pref = ffs_blkpref(ip, lbn, 0, (ufs_daddr_t *)0);
    314       1.3  christos 		error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, cred,
    315      1.18   mycroft 		    &newb);
    316       1.3  christos 		if (error) {
    317       1.1   mycroft 			brelse(bp);
    318       1.8      fvdl 			goto fail;
    319       1.1   mycroft 		}
    320       1.1   mycroft 		nb = newb;
    321       1.8      fvdl 		*allocblk++ = nb;
    322       1.1   mycroft 		nbp = getblk(vp, indirs[i].in_lbn, fs->fs_bsize, 0, 0);
    323       1.1   mycroft 		nbp->b_blkno = fsbtodb(fs, nb);
    324       1.1   mycroft 		clrbuf(nbp);
    325      1.15      fvdl 		if (DOINGSOFTDEP(vp)) {
    326      1.15      fvdl 			softdep_setup_allocindir_meta(nbp, ip, bp,
    327      1.15      fvdl 			    indirs[i - 1].in_off, nb);
    328      1.15      fvdl 			bdwrite(nbp);
    329      1.15      fvdl 		} else {
    330      1.15      fvdl 			/*
    331      1.15      fvdl 			 * Write synchronously so that indirect blocks
    332      1.15      fvdl 			 * never point at garbage.
    333      1.15      fvdl 			 */
    334      1.15      fvdl 			if ((error = bwrite(nbp)) != 0) {
    335      1.15      fvdl 				brelse(bp);
    336      1.15      fvdl 				goto fail;
    337      1.15      fvdl 			}
    338       1.1   mycroft 		}
    339      1.18   mycroft 		if (unwindidx < 0)
    340      1.18   mycroft 			unwindidx = i - 1;
    341      1.15      fvdl 		bap[indirs[i - 1].in_off] = ufs_rw32(nb, needswap);
    342       1.1   mycroft 		/*
    343       1.1   mycroft 		 * If required, write synchronously, otherwise use
    344       1.1   mycroft 		 * delayed write.
    345       1.1   mycroft 		 */
    346       1.1   mycroft 		if (flags & B_SYNC) {
    347       1.1   mycroft 			bwrite(bp);
    348       1.1   mycroft 		} else {
    349       1.1   mycroft 			bdwrite(bp);
    350       1.1   mycroft 		}
    351       1.1   mycroft 	}
    352       1.1   mycroft 	/*
    353       1.1   mycroft 	 * Get the data block, allocating if necessary.
    354       1.1   mycroft 	 */
    355       1.1   mycroft 	if (nb == 0) {
    356      1.19   mycroft 		pref = ffs_blkpref(ip, lbn, indirs[num].in_off, &bap[0]);
    357       1.3  christos 		error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, cred,
    358      1.18   mycroft 		    &newb);
    359       1.3  christos 		if (error) {
    360       1.1   mycroft 			brelse(bp);
    361       1.8      fvdl 			goto fail;
    362       1.1   mycroft 		}
    363       1.1   mycroft 		nb = newb;
    364       1.8      fvdl 		*allocblk++ = nb;
    365      1.23       chs 		if (bpp != NULL) {
    366      1.23       chs 			nbp = getblk(vp, lbn, fs->fs_bsize, 0, 0);
    367      1.23       chs 			nbp->b_blkno = fsbtodb(fs, nb);
    368      1.23       chs 			if (flags & B_CLRBUF)
    369      1.23       chs 				clrbuf(nbp);
    370      1.23       chs 			*bpp = nbp;
    371      1.23       chs 		}
    372      1.15      fvdl 		if (DOINGSOFTDEP(vp))
    373      1.15      fvdl 			softdep_setup_allocindir_page(ip, lbn, bp,
    374      1.23       chs 			    indirs[num].in_off, nb, 0, bpp ? *bpp : NULL);
    375      1.19   mycroft 		bap[indirs[num].in_off] = ufs_rw32(nb, needswap);
    376      1.23       chs 		if (allocib == NULL && unwindidx < 0) {
    377      1.23       chs 			unwindidx = i - 1;
    378      1.23       chs 		}
    379       1.1   mycroft 		/*
    380       1.1   mycroft 		 * If required, write synchronously, otherwise use
    381       1.1   mycroft 		 * delayed write.
    382       1.1   mycroft 		 */
    383       1.1   mycroft 		if (flags & B_SYNC) {
    384       1.1   mycroft 			bwrite(bp);
    385       1.1   mycroft 		} else {
    386       1.1   mycroft 			bdwrite(bp);
    387       1.1   mycroft 		}
    388       1.1   mycroft 		return (0);
    389       1.1   mycroft 	}
    390       1.1   mycroft 	brelse(bp);
    391      1.23       chs 	if (bpp != NULL) {
    392      1.23       chs 		if (flags & B_CLRBUF) {
    393      1.23       chs 			error = bread(vp, lbn, (int)fs->fs_bsize, NOCRED, &nbp);
    394      1.23       chs 			if (error) {
    395      1.23       chs 				brelse(nbp);
    396      1.23       chs 				goto fail;
    397      1.23       chs 			}
    398      1.23       chs 		} else {
    399      1.23       chs 			nbp = getblk(vp, lbn, fs->fs_bsize, 0, 0);
    400      1.23       chs 			nbp->b_blkno = fsbtodb(fs, nb);
    401      1.23       chs 			clrbuf(nbp);
    402       1.1   mycroft 		}
    403      1.23       chs 		*bpp = nbp;
    404       1.1   mycroft 	}
    405       1.1   mycroft 	return (0);
    406       1.8      fvdl fail:
    407       1.8      fvdl 	/*
    408       1.8      fvdl 	 * If we have failed part way through block allocation, we
    409       1.8      fvdl 	 * have to deallocate any indirect blocks that we have allocated.
    410      1.16      fvdl 	 * We have to fsync the file before we start to get rid of all
    411      1.16      fvdl 	 * of its dependencies so that we do not leave them dangling.
    412      1.16      fvdl 	 * We have to sync it at the end so that the soft updates code
    413      1.16      fvdl 	 * does not find any untracked changes. Although this is really
    414      1.16      fvdl 	 * slow, running out of disk space is not expected to be a common
    415      1.16      fvdl 	 * occurence. The error return from fsync is ignored as we already
    416      1.16      fvdl 	 * have an error to return to the user.
    417       1.8      fvdl 	 */
    418  1.23.2.1   nathanw 	(void) VOP_FSYNC(vp, cred, FSYNC_WAIT, 0, 0, curproc->l_proc);
    419       1.8      fvdl 	for (deallocated = 0, blkp = allociblk; blkp < allocblk; blkp++) {
    420       1.8      fvdl 		ffs_blkfree(ip, *blkp, fs->fs_bsize);
    421       1.8      fvdl 		deallocated += fs->fs_bsize;
    422       1.8      fvdl 	}
    423      1.18   mycroft 	if (unwindidx >= 0) {
    424      1.18   mycroft 		if (unwindidx == 0) {
    425      1.18   mycroft 			*allocib = 0;
    426      1.17      fvdl 		} else {
    427      1.18   mycroft 			int r;
    428      1.18   mycroft 
    429      1.18   mycroft 			r = bread(vp, indirs[unwindidx].in_lbn,
    430      1.18   mycroft 			    (int)fs->fs_bsize, NOCRED, &bp);
    431      1.18   mycroft 			if (r) {
    432      1.18   mycroft 				panic("Could not unwind indirect block, error %d", r);
    433      1.18   mycroft 				brelse(bp);
    434      1.18   mycroft 			} else {
    435      1.18   mycroft 				bap = (ufs_daddr_t *)bp->b_data;
    436      1.18   mycroft 				bap[indirs[unwindidx].in_off] = 0;
    437      1.18   mycroft 				if (flags & B_SYNC)
    438      1.18   mycroft 					bwrite(bp);
    439      1.18   mycroft 				else
    440      1.18   mycroft 					bdwrite(bp);
    441      1.18   mycroft 			}
    442      1.17      fvdl 		}
    443      1.19   mycroft 		for (i = unwindidx + 1; i <= num; i++) {
    444      1.19   mycroft 			bp = getblk(vp, indirs[i].in_lbn, (int)fs->fs_bsize, 0,
    445      1.19   mycroft 			    0);
    446      1.19   mycroft 			bp->b_flags |= B_INVAL;
    447      1.19   mycroft 			brelse(bp);
    448      1.19   mycroft 		}
    449      1.17      fvdl 	}
    450       1.8      fvdl 	if (deallocated) {
    451       1.8      fvdl #ifdef QUOTA
    452       1.8      fvdl 		/*
    453       1.8      fvdl 		 * Restore user's disk quota because allocation failed.
    454       1.8      fvdl 		 */
    455       1.8      fvdl 		(void)chkdq(ip, (long)-btodb(deallocated), cred, FORCE);
    456       1.8      fvdl #endif
    457       1.8      fvdl 		ip->i_ffs_blocks -= btodb(deallocated);
    458      1.13   mycroft 		ip->i_flag |= IN_CHANGE | IN_UPDATE;
    459       1.8      fvdl 	}
    460  1.23.2.1   nathanw 	(void) VOP_FSYNC(vp, cred, FSYNC_WAIT, 0, 0, curproc->l_proc);
    461       1.8      fvdl 	return (error);
    462      1.23       chs }
    463      1.23       chs 
    464      1.23       chs 
    465      1.23       chs int
    466      1.23       chs ffs_ballocn(v)
    467      1.23       chs 	void *v;
    468      1.23       chs {
    469      1.23       chs 	struct vop_ballocn_args /* {
    470      1.23       chs 		struct vnode *a_vp;
    471      1.23       chs 		off_t a_offset;
    472      1.23       chs 		off_t a_length;
    473      1.23       chs 		struct ucred *a_cred;
    474      1.23       chs 		int a_flags;
    475      1.23       chs 	} */ *ap = v;
    476      1.23       chs 
    477      1.23       chs 	off_t off, len;
    478      1.23       chs 	struct vnode *vp = ap->a_vp;
    479      1.23       chs 	struct inode *ip = VTOI(vp);
    480      1.23       chs 	struct fs *fs = ip->i_fs;
    481      1.23       chs 	int error, delta, bshift, bsize;
    482      1.23       chs 
    483      1.23       chs 	error = 0;
    484      1.23       chs 	bshift = fs->fs_bshift;
    485      1.23       chs 	bsize = 1 << bshift;
    486      1.23       chs 
    487      1.23       chs 	off = ap->a_offset;
    488      1.23       chs 	len = ap->a_length;
    489      1.23       chs 
    490      1.23       chs 	delta = off & (bsize - 1);
    491      1.23       chs 	off -= delta;
    492      1.23       chs 	len += delta;
    493      1.23       chs 
    494      1.23       chs 	while (len > 0) {
    495      1.23       chs 		bsize = min(bsize, len);
    496      1.23       chs 
    497      1.23       chs 		error = VOP_BALLOC(vp, off, bsize, ap->a_cred, ap->a_flags,
    498      1.23       chs 				   NULL);
    499      1.23       chs 		if (error) {
    500      1.23       chs 			goto out;
    501      1.23       chs 		}
    502      1.23       chs 
    503      1.23       chs 		/*
    504      1.23       chs 		 * increase file size now, VOP_BALLOC() requires that
    505      1.23       chs 		 * EOF be up-to-date before each call.
    506      1.23       chs 		 */
    507      1.23       chs 
    508      1.23       chs 		if (ip->i_ffs_size < off + bsize) {
    509      1.23       chs 			ip->i_ffs_size = off + bsize;
    510      1.23       chs 			if (vp->v_uvm.u_size < ip->i_ffs_size) {
    511      1.23       chs 				uvm_vnp_setsize(vp, ip->i_ffs_size);
    512      1.23       chs 			}
    513      1.23       chs 		}
    514      1.23       chs 
    515      1.23       chs 		off += bsize;
    516      1.23       chs 		len -= bsize;
    517      1.23       chs 	}
    518      1.23       chs 
    519      1.23       chs out:
    520      1.23       chs 	return error;
    521       1.1   mycroft }
    522