Home | History | Annotate | Line # | Download | only in ffs
ffs_balloc.c revision 1.40.10.1
      1  1.40.10.1      elad /*	$NetBSD: ffs_balloc.c,v 1.40.10.1 2006/03/08 01:39:12 elad Exp $	*/
      2        1.2       cgd 
      3        1.1   mycroft /*
      4       1.33      fvdl  * Copyright (c) 2002 Networks Associates Technology, Inc.
      5       1.33      fvdl  * All rights reserved.
      6       1.33      fvdl  *
      7       1.33      fvdl  * This software was developed for the FreeBSD Project by Marshall
      8       1.33      fvdl  * Kirk McKusick and Network Associates Laboratories, the Security
      9       1.33      fvdl  * Research Division of Network Associates, Inc. under DARPA/SPAWAR
     10       1.33      fvdl  * contract N66001-01-C-8035 ("CBOSS"), as part of the DARPA CHATS
     11       1.33      fvdl  * research program
     12       1.33      fvdl  *
     13        1.1   mycroft  * Copyright (c) 1982, 1986, 1989, 1993
     14        1.1   mycroft  *	The Regents of the University of California.  All rights reserved.
     15        1.1   mycroft  *
     16        1.1   mycroft  * Redistribution and use in source and binary forms, with or without
     17        1.1   mycroft  * modification, are permitted provided that the following conditions
     18        1.1   mycroft  * are met:
     19        1.1   mycroft  * 1. Redistributions of source code must retain the above copyright
     20        1.1   mycroft  *    notice, this list of conditions and the following disclaimer.
     21        1.1   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     22        1.1   mycroft  *    notice, this list of conditions and the following disclaimer in the
     23        1.1   mycroft  *    documentation and/or other materials provided with the distribution.
     24       1.34       agc  * 3. Neither the name of the University nor the names of its contributors
     25        1.1   mycroft  *    may be used to endorse or promote products derived from this software
     26        1.1   mycroft  *    without specific prior written permission.
     27        1.1   mycroft  *
     28        1.1   mycroft  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29        1.1   mycroft  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30        1.1   mycroft  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31        1.1   mycroft  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32        1.1   mycroft  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33        1.1   mycroft  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34        1.1   mycroft  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35        1.1   mycroft  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36        1.1   mycroft  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37        1.1   mycroft  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38        1.1   mycroft  * SUCH DAMAGE.
     39        1.1   mycroft  *
     40        1.8      fvdl  *	@(#)ffs_balloc.c	8.8 (Berkeley) 6/16/95
     41        1.1   mycroft  */
     42       1.28     lukem 
     43       1.28     lukem #include <sys/cdefs.h>
     44  1.40.10.1      elad __KERNEL_RCSID(0, "$NetBSD: ffs_balloc.c,v 1.40.10.1 2006/03/08 01:39:12 elad Exp $");
     45        1.7       mrg 
     46       1.24       mrg #if defined(_KERNEL_OPT)
     47       1.10    scottr #include "opt_quota.h"
     48       1.11    scottr #endif
     49        1.1   mycroft 
     50        1.1   mycroft #include <sys/param.h>
     51        1.1   mycroft #include <sys/systm.h>
     52        1.1   mycroft #include <sys/buf.h>
     53        1.1   mycroft #include <sys/file.h>
     54       1.15      fvdl #include <sys/mount.h>
     55        1.1   mycroft #include <sys/vnode.h>
     56        1.9    bouyer #include <sys/mount.h>
     57        1.6       mrg 
     58        1.1   mycroft #include <ufs/ufs/quota.h>
     59        1.9    bouyer #include <ufs/ufs/ufsmount.h>
     60        1.1   mycroft #include <ufs/ufs/inode.h>
     61        1.1   mycroft #include <ufs/ufs/ufs_extern.h>
     62        1.9    bouyer #include <ufs/ufs/ufs_bswap.h>
     63        1.1   mycroft 
     64        1.1   mycroft #include <ufs/ffs/fs.h>
     65        1.1   mycroft #include <ufs/ffs/ffs_extern.h>
     66        1.1   mycroft 
     67       1.23       chs #include <uvm/uvm.h>
     68       1.23       chs 
     69  1.40.10.1      elad static int ffs_balloc_ufs1(struct vnode *, off_t, int, kauth_cred_t, int,
     70       1.39      yamt     struct buf **);
     71  1.40.10.1      elad static int ffs_balloc_ufs2(struct vnode *, off_t, int, kauth_cred_t, int,
     72       1.39      yamt     struct buf **);
     73       1.33      fvdl 
     74        1.1   mycroft /*
     75        1.1   mycroft  * Balloc defines the structure of file system storage
     76        1.1   mycroft  * by allocating the physical blocks on a device given
     77        1.1   mycroft  * the inode and the logical block number in a file.
     78        1.1   mycroft  */
     79       1.33      fvdl 
     80        1.3  christos int
     81  1.40.10.1      elad ffs_balloc(struct vnode *vp, off_t off, int size, kauth_cred_t cred, int flags,
     82       1.39      yamt     struct buf **bpp)
     83       1.15      fvdl {
     84       1.33      fvdl 
     85       1.39      yamt 	if (VTOI(vp)->i_fs->fs_magic == FS_UFS2_MAGIC)
     86       1.39      yamt 		return ffs_balloc_ufs2(vp, off, size, cred, flags, bpp);
     87       1.33      fvdl 	else
     88       1.39      yamt 		return ffs_balloc_ufs1(vp, off, size, cred, flags, bpp);
     89       1.33      fvdl }
     90       1.33      fvdl 
     91       1.33      fvdl static int
     92  1.40.10.1      elad ffs_balloc_ufs1(struct vnode *vp, off_t off, int size, kauth_cred_t cred,
     93       1.39      yamt     int flags, struct buf **bpp)
     94       1.33      fvdl {
     95       1.33      fvdl 	daddr_t lbn, lastlbn;
     96        1.1   mycroft 	struct buf *bp, *nbp;
     97       1.15      fvdl 	struct inode *ip = VTOI(vp);
     98       1.15      fvdl 	struct fs *fs = ip->i_fs;
     99        1.1   mycroft 	struct indir indirs[NIADDR + 2];
    100       1.37   mycroft 	daddr_t newb, pref, nb;
    101       1.31      fvdl 	int32_t *bap;	/* XXX ondisk32 */
    102        1.8      fvdl 	int deallocated, osize, nsize, num, i, error;
    103       1.33      fvdl 	int32_t *blkp, *allocblk, allociblk[NIADDR + 1];
    104       1.33      fvdl 	int32_t *allocib;
    105       1.17      fvdl 	int unwindidx = -1;
    106       1.15      fvdl #ifdef FFS_EI
    107       1.15      fvdl 	const int needswap = UFS_FSNEEDSWAP(fs);
    108       1.15      fvdl #endif
    109       1.23       chs 	UVMHIST_FUNC("ffs_balloc"); UVMHIST_CALLED(ubchist);
    110        1.1   mycroft 
    111       1.39      yamt 	lbn = lblkno(fs, off);
    112       1.39      yamt 	size = blkoff(fs, off) + size;
    113       1.15      fvdl 	if (size > fs->fs_bsize)
    114       1.15      fvdl 		panic("ffs_balloc: blk too big");
    115       1.23       chs 	if (bpp != NULL) {
    116       1.23       chs 		*bpp = NULL;
    117       1.23       chs 	}
    118       1.23       chs 	UVMHIST_LOG(ubchist, "vp %p lbn 0x%x size 0x%x", vp, lbn, size,0);
    119       1.23       chs 
    120       1.23       chs 	KASSERT(size <= fs->fs_bsize);
    121        1.8      fvdl 	if (lbn < 0)
    122        1.1   mycroft 		return (EFBIG);
    123        1.1   mycroft 
    124        1.1   mycroft 	/*
    125        1.1   mycroft 	 * If the next write will extend the file into a new block,
    126        1.1   mycroft 	 * and the file is currently composed of a fragment
    127        1.1   mycroft 	 * this fragment has to be extended to be a full block.
    128        1.1   mycroft 	 */
    129       1.23       chs 
    130       1.33      fvdl 	lastlbn = lblkno(fs, ip->i_size);
    131       1.33      fvdl 	if (lastlbn < NDADDR && lastlbn < lbn) {
    132       1.33      fvdl 		nb = lastlbn;
    133        1.1   mycroft 		osize = blksize(fs, ip, nb);
    134        1.1   mycroft 		if (osize < fs->fs_bsize && osize > 0) {
    135        1.1   mycroft 			error = ffs_realloccg(ip, nb,
    136       1.33      fvdl 				    ffs_blkpref_ufs1(ip, lastlbn, nb,
    137       1.33      fvdl 					&ip->i_ffs1_db[0]),
    138       1.33      fvdl 				    osize, (int)fs->fs_bsize, cred, bpp, &newb);
    139        1.1   mycroft 			if (error)
    140        1.1   mycroft 				return (error);
    141       1.15      fvdl 			if (DOINGSOFTDEP(vp))
    142       1.23       chs 				softdep_setup_allocdirect(ip, nb, newb,
    143       1.33      fvdl 				    ufs_rw32(ip->i_ffs1_db[nb], needswap),
    144       1.23       chs 				    fs->fs_bsize, osize, bpp ? *bpp : NULL);
    145       1.33      fvdl 			ip->i_size = lblktosize(fs, nb + 1);
    146       1.33      fvdl 			ip->i_ffs1_size = ip->i_size;
    147       1.33      fvdl 			uvm_vnp_setsize(vp, ip->i_ffs1_size);
    148       1.37   mycroft 			ip->i_ffs1_db[nb] = ufs_rw32((u_int32_t)newb, needswap);
    149        1.1   mycroft 			ip->i_flag |= IN_CHANGE | IN_UPDATE;
    150       1.23       chs 			if (bpp) {
    151       1.23       chs 				if (flags & B_SYNC)
    152       1.23       chs 					bwrite(*bpp);
    153       1.23       chs 				else
    154       1.23       chs 					bawrite(*bpp);
    155       1.23       chs 			}
    156        1.1   mycroft 		}
    157        1.1   mycroft 	}
    158       1.23       chs 
    159        1.1   mycroft 	/*
    160        1.1   mycroft 	 * The first NDADDR blocks are direct blocks
    161        1.1   mycroft 	 */
    162       1.23       chs 
    163        1.8      fvdl 	if (lbn < NDADDR) {
    164       1.33      fvdl 		nb = ufs_rw32(ip->i_ffs1_db[lbn], needswap);
    165       1.33      fvdl 		if (nb != 0 && ip->i_size >= lblktosize(fs, lbn + 1)) {
    166       1.23       chs 
    167       1.23       chs 			/*
    168       1.23       chs 			 * The block is an already-allocated direct block
    169       1.23       chs 			 * and the file already extends past this block,
    170       1.23       chs 			 * thus this must be a whole block.
    171       1.23       chs 			 * Just read the block (if requested).
    172       1.23       chs 			 */
    173       1.23       chs 
    174       1.23       chs 			if (bpp != NULL) {
    175       1.23       chs 				error = bread(vp, lbn, fs->fs_bsize, NOCRED,
    176       1.23       chs 					      bpp);
    177       1.23       chs 				if (error) {
    178       1.23       chs 					brelse(*bpp);
    179       1.23       chs 					return (error);
    180       1.23       chs 				}
    181        1.1   mycroft 			}
    182        1.1   mycroft 			return (0);
    183        1.1   mycroft 		}
    184        1.1   mycroft 		if (nb != 0) {
    185       1.23       chs 
    186        1.1   mycroft 			/*
    187        1.1   mycroft 			 * Consider need to reallocate a fragment.
    188        1.1   mycroft 			 */
    189       1.23       chs 
    190       1.33      fvdl 			osize = fragroundup(fs, blkoff(fs, ip->i_size));
    191        1.1   mycroft 			nsize = fragroundup(fs, size);
    192        1.1   mycroft 			if (nsize <= osize) {
    193       1.23       chs 
    194       1.23       chs 				/*
    195       1.23       chs 				 * The existing block is already
    196       1.23       chs 				 * at least as big as we want.
    197       1.23       chs 				 * Just read the block (if requested).
    198       1.23       chs 				 */
    199       1.23       chs 
    200       1.23       chs 				if (bpp != NULL) {
    201       1.23       chs 					error = bread(vp, lbn, osize, NOCRED,
    202       1.23       chs 						      bpp);
    203       1.23       chs 					if (error) {
    204       1.23       chs 						brelse(*bpp);
    205       1.23       chs 						return (error);
    206       1.23       chs 					}
    207        1.1   mycroft 				}
    208       1.23       chs 				return 0;
    209        1.1   mycroft 			} else {
    210       1.23       chs 
    211       1.23       chs 				/*
    212       1.23       chs 				 * The existing block is smaller than we want,
    213       1.23       chs 				 * grow it.
    214       1.23       chs 				 */
    215       1.23       chs 
    216        1.8      fvdl 				error = ffs_realloccg(ip, lbn,
    217       1.33      fvdl 				    ffs_blkpref_ufs1(ip, lbn, (int)lbn,
    218       1.33      fvdl 					&ip->i_ffs1_db[0]), osize, nsize, cred,
    219       1.23       chs 					bpp, &newb);
    220        1.1   mycroft 				if (error)
    221        1.1   mycroft 					return (error);
    222       1.15      fvdl 				if (DOINGSOFTDEP(vp))
    223       1.15      fvdl 					softdep_setup_allocdirect(ip, lbn,
    224       1.23       chs 					    newb, nb, nsize, osize,
    225       1.23       chs 					    bpp ? *bpp : NULL);
    226        1.1   mycroft 			}
    227        1.1   mycroft 		} else {
    228       1.23       chs 
    229       1.23       chs 			/*
    230       1.23       chs 			 * the block was not previously allocated,
    231       1.23       chs 			 * allocate a new block or fragment.
    232       1.23       chs 			 */
    233       1.23       chs 
    234       1.33      fvdl 			if (ip->i_size < lblktosize(fs, lbn + 1))
    235        1.1   mycroft 				nsize = fragroundup(fs, size);
    236        1.1   mycroft 			else
    237        1.1   mycroft 				nsize = fs->fs_bsize;
    238        1.8      fvdl 			error = ffs_alloc(ip, lbn,
    239       1.33      fvdl 			    ffs_blkpref_ufs1(ip, lbn, (int)lbn,
    240       1.33      fvdl 				&ip->i_ffs1_db[0]),
    241        1.8      fvdl 				nsize, cred, &newb);
    242        1.1   mycroft 			if (error)
    243        1.1   mycroft 				return (error);
    244       1.23       chs 			if (bpp != NULL) {
    245       1.23       chs 				bp = getblk(vp, lbn, nsize, 0, 0);
    246       1.23       chs 				bp->b_blkno = fsbtodb(fs, newb);
    247       1.23       chs 				if (flags & B_CLRBUF)
    248       1.23       chs 					clrbuf(bp);
    249       1.23       chs 				*bpp = bp;
    250       1.23       chs 			}
    251       1.23       chs 			if (DOINGSOFTDEP(vp)) {
    252       1.15      fvdl 				softdep_setup_allocdirect(ip, lbn, newb, 0,
    253       1.23       chs 				    nsize, 0, bpp ? *bpp : NULL);
    254       1.23       chs 			}
    255        1.1   mycroft 		}
    256       1.37   mycroft 		ip->i_ffs1_db[lbn] = ufs_rw32((u_int32_t)newb, needswap);
    257        1.1   mycroft 		ip->i_flag |= IN_CHANGE | IN_UPDATE;
    258        1.1   mycroft 		return (0);
    259        1.1   mycroft 	}
    260       1.29       chs 
    261        1.1   mycroft 	/*
    262        1.1   mycroft 	 * Determine the number of levels of indirection.
    263        1.1   mycroft 	 */
    264       1.29       chs 
    265        1.1   mycroft 	pref = 0;
    266        1.8      fvdl 	if ((error = ufs_getlbns(vp, lbn, indirs, &num)) != 0)
    267       1.29       chs 		return (error);
    268       1.23       chs 
    269        1.1   mycroft 	/*
    270        1.1   mycroft 	 * Fetch the first indirect block allocating if necessary.
    271        1.1   mycroft 	 */
    272       1.29       chs 
    273        1.1   mycroft 	--num;
    274       1.33      fvdl 	nb = ufs_rw32(ip->i_ffs1_ib[indirs[0].in_off], needswap);
    275        1.8      fvdl 	allocib = NULL;
    276        1.8      fvdl 	allocblk = allociblk;
    277        1.1   mycroft 	if (nb == 0) {
    278       1.33      fvdl 		pref = ffs_blkpref_ufs1(ip, lbn, 0, (int32_t *)0);
    279       1.18   mycroft 		error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, cred,
    280       1.18   mycroft 		    &newb);
    281        1.3  christos 		if (error)
    282       1.27       chs 			goto fail;
    283        1.1   mycroft 		nb = newb;
    284        1.8      fvdl 		*allocblk++ = nb;
    285        1.1   mycroft 		bp = getblk(vp, indirs[1].in_lbn, fs->fs_bsize, 0, 0);
    286        1.8      fvdl 		bp->b_blkno = fsbtodb(fs, nb);
    287        1.1   mycroft 		clrbuf(bp);
    288       1.15      fvdl 		if (DOINGSOFTDEP(vp)) {
    289       1.15      fvdl 			softdep_setup_allocdirect(ip, NDADDR + indirs[0].in_off,
    290       1.15      fvdl 			    newb, 0, fs->fs_bsize, 0, bp);
    291       1.15      fvdl 			bdwrite(bp);
    292       1.15      fvdl 		} else {
    293       1.29       chs 
    294       1.15      fvdl 			/*
    295       1.15      fvdl 			 * Write synchronously so that indirect blocks
    296       1.15      fvdl 			 * never point at garbage.
    297       1.15      fvdl 			 */
    298       1.29       chs 
    299       1.15      fvdl 			if ((error = bwrite(bp)) != 0)
    300       1.15      fvdl 				goto fail;
    301       1.15      fvdl 		}
    302       1.18   mycroft 		unwindidx = 0;
    303       1.33      fvdl 		allocib = &ip->i_ffs1_ib[indirs[0].in_off];
    304       1.33      fvdl 		*allocib = ufs_rw32(nb, needswap);
    305        1.1   mycroft 		ip->i_flag |= IN_CHANGE | IN_UPDATE;
    306        1.1   mycroft 	}
    307       1.29       chs 
    308        1.1   mycroft 	/*
    309        1.1   mycroft 	 * Fetch through the indirect blocks, allocating as necessary.
    310        1.1   mycroft 	 */
    311       1.29       chs 
    312        1.1   mycroft 	for (i = 1;;) {
    313        1.1   mycroft 		error = bread(vp,
    314        1.1   mycroft 		    indirs[i].in_lbn, (int)fs->fs_bsize, NOCRED, &bp);
    315        1.1   mycroft 		if (error) {
    316        1.1   mycroft 			brelse(bp);
    317        1.8      fvdl 			goto fail;
    318        1.1   mycroft 		}
    319       1.31      fvdl 		bap = (int32_t *)bp->b_data;	/* XXX ondisk32 */
    320       1.15      fvdl 		nb = ufs_rw32(bap[indirs[i].in_off], needswap);
    321        1.1   mycroft 		if (i == num)
    322        1.1   mycroft 			break;
    323       1.18   mycroft 		i++;
    324        1.1   mycroft 		if (nb != 0) {
    325        1.1   mycroft 			brelse(bp);
    326        1.1   mycroft 			continue;
    327        1.1   mycroft 		}
    328        1.1   mycroft 		if (pref == 0)
    329       1.33      fvdl 			pref = ffs_blkpref_ufs1(ip, lbn, 0, (int32_t *)0);
    330        1.3  christos 		error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, cred,
    331       1.18   mycroft 		    &newb);
    332        1.3  christos 		if (error) {
    333        1.1   mycroft 			brelse(bp);
    334        1.8      fvdl 			goto fail;
    335        1.1   mycroft 		}
    336        1.1   mycroft 		nb = newb;
    337        1.8      fvdl 		*allocblk++ = nb;
    338        1.1   mycroft 		nbp = getblk(vp, indirs[i].in_lbn, fs->fs_bsize, 0, 0);
    339        1.1   mycroft 		nbp->b_blkno = fsbtodb(fs, nb);
    340        1.1   mycroft 		clrbuf(nbp);
    341       1.15      fvdl 		if (DOINGSOFTDEP(vp)) {
    342       1.15      fvdl 			softdep_setup_allocindir_meta(nbp, ip, bp,
    343       1.15      fvdl 			    indirs[i - 1].in_off, nb);
    344       1.15      fvdl 			bdwrite(nbp);
    345       1.15      fvdl 		} else {
    346       1.29       chs 
    347       1.15      fvdl 			/*
    348       1.15      fvdl 			 * Write synchronously so that indirect blocks
    349       1.15      fvdl 			 * never point at garbage.
    350       1.15      fvdl 			 */
    351       1.29       chs 
    352       1.15      fvdl 			if ((error = bwrite(nbp)) != 0) {
    353       1.15      fvdl 				brelse(bp);
    354       1.15      fvdl 				goto fail;
    355       1.15      fvdl 			}
    356        1.1   mycroft 		}
    357       1.18   mycroft 		if (unwindidx < 0)
    358       1.18   mycroft 			unwindidx = i - 1;
    359       1.33      fvdl 		bap[indirs[i - 1].in_off] = ufs_rw32(nb, needswap);
    360       1.29       chs 
    361        1.1   mycroft 		/*
    362        1.1   mycroft 		 * If required, write synchronously, otherwise use
    363        1.1   mycroft 		 * delayed write.
    364        1.1   mycroft 		 */
    365       1.29       chs 
    366        1.1   mycroft 		if (flags & B_SYNC) {
    367        1.1   mycroft 			bwrite(bp);
    368        1.1   mycroft 		} else {
    369        1.1   mycroft 			bdwrite(bp);
    370        1.1   mycroft 		}
    371        1.1   mycroft 	}
    372       1.29       chs 
    373       1.35   hannken 	if (flags & B_METAONLY) {
    374       1.35   hannken 		*bpp = bp;
    375       1.35   hannken 		return (0);
    376       1.35   hannken 	}
    377       1.35   hannken 
    378        1.1   mycroft 	/*
    379        1.1   mycroft 	 * Get the data block, allocating if necessary.
    380        1.1   mycroft 	 */
    381       1.29       chs 
    382        1.1   mycroft 	if (nb == 0) {
    383       1.33      fvdl 		pref = ffs_blkpref_ufs1(ip, lbn, indirs[num].in_off, &bap[0]);
    384        1.3  christos 		error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, cred,
    385       1.18   mycroft 		    &newb);
    386        1.3  christos 		if (error) {
    387        1.1   mycroft 			brelse(bp);
    388        1.8      fvdl 			goto fail;
    389        1.1   mycroft 		}
    390        1.1   mycroft 		nb = newb;
    391        1.8      fvdl 		*allocblk++ = nb;
    392       1.23       chs 		if (bpp != NULL) {
    393       1.23       chs 			nbp = getblk(vp, lbn, fs->fs_bsize, 0, 0);
    394       1.23       chs 			nbp->b_blkno = fsbtodb(fs, nb);
    395       1.23       chs 			if (flags & B_CLRBUF)
    396       1.23       chs 				clrbuf(nbp);
    397       1.23       chs 			*bpp = nbp;
    398       1.23       chs 		}
    399       1.15      fvdl 		if (DOINGSOFTDEP(vp))
    400       1.15      fvdl 			softdep_setup_allocindir_page(ip, lbn, bp,
    401       1.23       chs 			    indirs[num].in_off, nb, 0, bpp ? *bpp : NULL);
    402       1.33      fvdl 		bap[indirs[num].in_off] = ufs_rw32(nb, needswap);
    403       1.23       chs 		if (allocib == NULL && unwindidx < 0) {
    404       1.23       chs 			unwindidx = i - 1;
    405       1.23       chs 		}
    406       1.29       chs 
    407        1.1   mycroft 		/*
    408        1.1   mycroft 		 * If required, write synchronously, otherwise use
    409        1.1   mycroft 		 * delayed write.
    410        1.1   mycroft 		 */
    411       1.29       chs 
    412        1.1   mycroft 		if (flags & B_SYNC) {
    413        1.1   mycroft 			bwrite(bp);
    414        1.1   mycroft 		} else {
    415        1.1   mycroft 			bdwrite(bp);
    416        1.1   mycroft 		}
    417        1.1   mycroft 		return (0);
    418        1.1   mycroft 	}
    419        1.1   mycroft 	brelse(bp);
    420       1.23       chs 	if (bpp != NULL) {
    421       1.23       chs 		if (flags & B_CLRBUF) {
    422       1.23       chs 			error = bread(vp, lbn, (int)fs->fs_bsize, NOCRED, &nbp);
    423       1.23       chs 			if (error) {
    424       1.23       chs 				brelse(nbp);
    425       1.23       chs 				goto fail;
    426       1.23       chs 			}
    427       1.23       chs 		} else {
    428       1.23       chs 			nbp = getblk(vp, lbn, fs->fs_bsize, 0, 0);
    429       1.23       chs 			nbp->b_blkno = fsbtodb(fs, nb);
    430       1.23       chs 			clrbuf(nbp);
    431        1.1   mycroft 		}
    432       1.23       chs 		*bpp = nbp;
    433        1.1   mycroft 	}
    434        1.1   mycroft 	return (0);
    435       1.27       chs 
    436        1.8      fvdl fail:
    437       1.27       chs 	/*
    438       1.29       chs 	 * If we have failed part way through block allocation, we
    439       1.29       chs 	 * have to deallocate any indirect blocks that we have allocated.
    440       1.27       chs 	 */
    441       1.27       chs 
    442       1.29       chs 	if (unwindidx >= 0) {
    443       1.27       chs 
    444       1.29       chs 		/*
    445       1.29       chs 		 * First write out any buffers we've created to resolve their
    446       1.29       chs 		 * softdeps.  This must be done in reverse order of creation
    447       1.29       chs 		 * so that we resolve the dependencies in one pass.
    448       1.29       chs 		 * Write the cylinder group buffers for these buffers too.
    449       1.29       chs 		 */
    450       1.29       chs 
    451       1.29       chs 		for (i = num; i >= unwindidx; i--) {
    452       1.29       chs 			if (i == 0) {
    453       1.29       chs 				break;
    454       1.29       chs 			}
    455       1.29       chs 			bp = getblk(vp, indirs[i].in_lbn, (int)fs->fs_bsize, 0,
    456       1.29       chs 			    0);
    457       1.29       chs 			if (bp->b_flags & B_DELWRI) {
    458       1.29       chs 				nb = fsbtodb(fs, cgtod(fs, dtog(fs,
    459       1.30       chs 				    dbtofsb(fs, bp->b_blkno))));
    460       1.29       chs 				bwrite(bp);
    461       1.29       chs 				bp = getblk(ip->i_devvp, nb, (int)fs->fs_cgsize,
    462       1.29       chs 				    0, 0);
    463       1.29       chs 				if (bp->b_flags & B_DELWRI) {
    464       1.29       chs 					bwrite(bp);
    465       1.29       chs 				} else {
    466       1.29       chs 					bp->b_flags |= B_INVAL;
    467       1.29       chs 					brelse(bp);
    468       1.29       chs 				}
    469       1.29       chs 			} else {
    470       1.29       chs 				bp->b_flags |= B_INVAL;
    471       1.29       chs 				brelse(bp);
    472       1.29       chs 			}
    473       1.29       chs 		}
    474       1.36   mycroft 		if (DOINGSOFTDEP(vp) && unwindidx == 0) {
    475       1.36   mycroft 			ip->i_flag |= IN_CHANGE | IN_UPDATE;
    476       1.39      yamt 			ffs_update(vp, NULL, NULL, UPDATE_WAIT);
    477       1.27       chs 		}
    478       1.27       chs 
    479       1.29       chs 		/*
    480       1.29       chs 		 * Now that any dependencies that we created have been
    481       1.29       chs 		 * resolved, we can undo the partial allocation.
    482       1.29       chs 		 */
    483       1.27       chs 
    484       1.18   mycroft 		if (unwindidx == 0) {
    485       1.18   mycroft 			*allocib = 0;
    486       1.36   mycroft 			ip->i_flag |= IN_CHANGE | IN_UPDATE;
    487       1.36   mycroft 			if (DOINGSOFTDEP(vp))
    488       1.39      yamt 				ffs_update(vp, NULL, NULL, UPDATE_WAIT);
    489       1.17      fvdl 		} else {
    490       1.18   mycroft 			int r;
    491       1.29       chs 
    492       1.29       chs 			r = bread(vp, indirs[unwindidx].in_lbn,
    493       1.18   mycroft 			    (int)fs->fs_bsize, NOCRED, &bp);
    494       1.18   mycroft 			if (r) {
    495       1.18   mycroft 				panic("Could not unwind indirect block, error %d", r);
    496       1.18   mycroft 				brelse(bp);
    497       1.18   mycroft 			} else {
    498       1.31      fvdl 				bap = (int32_t *)bp->b_data; /* XXX ondisk32 */
    499       1.18   mycroft 				bap[indirs[unwindidx].in_off] = 0;
    500       1.29       chs 				bwrite(bp);
    501       1.18   mycroft 			}
    502       1.17      fvdl 		}
    503       1.19   mycroft 		for (i = unwindidx + 1; i <= num; i++) {
    504       1.19   mycroft 			bp = getblk(vp, indirs[i].in_lbn, (int)fs->fs_bsize, 0,
    505       1.19   mycroft 			    0);
    506       1.19   mycroft 			bp->b_flags |= B_INVAL;
    507       1.19   mycroft 			brelse(bp);
    508       1.19   mycroft 		}
    509       1.17      fvdl 	}
    510       1.29       chs 	for (deallocated = 0, blkp = allociblk; blkp < allocblk; blkp++) {
    511       1.35   hannken 		ffs_blkfree(fs, ip->i_devvp, *blkp, fs->fs_bsize, ip->i_number);
    512       1.29       chs 		deallocated += fs->fs_bsize;
    513       1.29       chs 	}
    514        1.8      fvdl 	if (deallocated) {
    515        1.8      fvdl #ifdef QUOTA
    516        1.8      fvdl 		/*
    517        1.8      fvdl 		 * Restore user's disk quota because allocation failed.
    518        1.8      fvdl 		 */
    519       1.33      fvdl 		(void)chkdq(ip, -btodb(deallocated), cred, FORCE);
    520       1.33      fvdl #endif
    521       1.33      fvdl 		ip->i_ffs1_blocks -= btodb(deallocated);
    522       1.33      fvdl 		ip->i_flag |= IN_CHANGE | IN_UPDATE;
    523       1.33      fvdl 	}
    524       1.33      fvdl 	return (error);
    525       1.33      fvdl }
    526       1.33      fvdl 
    527       1.33      fvdl static int
    528  1.40.10.1      elad ffs_balloc_ufs2(struct vnode *vp, off_t off, int size, kauth_cred_t cred,
    529       1.39      yamt     int flags, struct buf **bpp)
    530       1.33      fvdl {
    531       1.33      fvdl 	daddr_t lbn, lastlbn;
    532       1.33      fvdl 	struct buf *bp, *nbp;
    533       1.33      fvdl 	struct inode *ip = VTOI(vp);
    534       1.33      fvdl 	struct fs *fs = ip->i_fs;
    535       1.33      fvdl 	struct indir indirs[NIADDR + 2];
    536       1.33      fvdl 	daddr_t newb, pref, nb;
    537       1.33      fvdl 	int64_t *bap;
    538       1.33      fvdl 	int deallocated, osize, nsize, num, i, error;
    539       1.33      fvdl 	daddr_t *blkp, *allocblk, allociblk[NIADDR + 1];
    540       1.33      fvdl 	int64_t *allocib;
    541       1.33      fvdl 	int unwindidx = -1;
    542       1.33      fvdl #ifdef FFS_EI
    543       1.33      fvdl 	const int needswap = UFS_FSNEEDSWAP(fs);
    544       1.33      fvdl #endif
    545       1.33      fvdl 	UVMHIST_FUNC("ffs_balloc"); UVMHIST_CALLED(ubchist);
    546       1.33      fvdl 
    547       1.39      yamt 	lbn = lblkno(fs, off);
    548       1.39      yamt 	size = blkoff(fs, off) + size;
    549       1.33      fvdl 	if (size > fs->fs_bsize)
    550       1.33      fvdl 		panic("ffs_balloc: blk too big");
    551       1.33      fvdl 	if (bpp != NULL) {
    552       1.33      fvdl 		*bpp = NULL;
    553       1.33      fvdl 	}
    554       1.33      fvdl 	UVMHIST_LOG(ubchist, "vp %p lbn 0x%x size 0x%x", vp, lbn, size,0);
    555       1.33      fvdl 
    556       1.33      fvdl 	KASSERT(size <= fs->fs_bsize);
    557       1.33      fvdl 	if (lbn < 0)
    558       1.33      fvdl 		return (EFBIG);
    559       1.33      fvdl 
    560       1.33      fvdl #ifdef notyet
    561       1.33      fvdl 	/*
    562       1.33      fvdl 	 * Check for allocating external data.
    563       1.33      fvdl 	 */
    564       1.33      fvdl 	if (flags & IO_EXT) {
    565       1.33      fvdl 		if (lbn >= NXADDR)
    566       1.33      fvdl 			return (EFBIG);
    567       1.33      fvdl 		/*
    568       1.33      fvdl 		 * If the next write will extend the data into a new block,
    569       1.33      fvdl 		 * and the data is currently composed of a fragment
    570       1.33      fvdl 		 * this fragment has to be extended to be a full block.
    571       1.33      fvdl 		 */
    572       1.33      fvdl 		lastlbn = lblkno(fs, dp->di_extsize);
    573       1.33      fvdl 		if (lastlbn < lbn) {
    574       1.33      fvdl 			nb = lastlbn;
    575       1.33      fvdl 			osize = sblksize(fs, dp->di_extsize, nb);
    576       1.33      fvdl 			if (osize < fs->fs_bsize && osize > 0) {
    577       1.33      fvdl 				error = ffs_realloccg(ip, -1 - nb,
    578       1.33      fvdl 				    dp->di_extb[nb],
    579       1.33      fvdl 				    ffs_blkpref_ufs2(ip, lastlbn, (int)nb,
    580       1.33      fvdl 				    &dp->di_extb[0]), osize,
    581       1.33      fvdl 				    (int)fs->fs_bsize, cred, &bp);
    582       1.33      fvdl 				if (error)
    583       1.33      fvdl 					return (error);
    584       1.33      fvdl 				if (DOINGSOFTDEP(vp))
    585       1.33      fvdl 					softdep_setup_allocext(ip, nb,
    586       1.33      fvdl 					    dbtofsb(fs, bp->b_blkno),
    587       1.33      fvdl 					    dp->di_extb[nb],
    588       1.33      fvdl 					    fs->fs_bsize, osize, bp);
    589       1.33      fvdl 				dp->di_extsize = smalllblktosize(fs, nb + 1);
    590       1.33      fvdl 				dp->di_extb[nb] = dbtofsb(fs, bp->b_blkno);
    591       1.33      fvdl 				bp->b_xflags |= BX_ALTDATA;
    592       1.33      fvdl 				ip->i_flag |= IN_CHANGE | IN_UPDATE;
    593       1.33      fvdl 				if (flags & IO_SYNC)
    594       1.33      fvdl 					bwrite(bp);
    595       1.33      fvdl 				else
    596       1.33      fvdl 					bawrite(bp);
    597       1.33      fvdl 			}
    598       1.33      fvdl 		}
    599       1.33      fvdl 		/*
    600       1.33      fvdl 		 * All blocks are direct blocks
    601       1.33      fvdl 		 */
    602       1.33      fvdl 		if (flags & BA_METAONLY)
    603       1.33      fvdl 			panic("ffs_balloc_ufs2: BA_METAONLY for ext block");
    604       1.33      fvdl 		nb = dp->di_extb[lbn];
    605       1.33      fvdl 		if (nb != 0 && dp->di_extsize >= smalllblktosize(fs, lbn + 1)) {
    606       1.33      fvdl 			error = bread(vp, -1 - lbn, fs->fs_bsize, NOCRED, &bp);
    607       1.33      fvdl 			if (error) {
    608       1.33      fvdl 				brelse(bp);
    609       1.33      fvdl 				return (error);
    610       1.33      fvdl 			}
    611       1.33      fvdl 			bp->b_blkno = fsbtodb(fs, nb);
    612       1.33      fvdl 			bp->b_xflags |= BX_ALTDATA;
    613       1.33      fvdl 			*bpp = bp;
    614       1.33      fvdl 			return (0);
    615       1.33      fvdl 		}
    616       1.33      fvdl 		if (nb != 0) {
    617       1.33      fvdl 			/*
    618       1.33      fvdl 			 * Consider need to reallocate a fragment.
    619       1.33      fvdl 			 */
    620       1.33      fvdl 			osize = fragroundup(fs, blkoff(fs, dp->di_extsize));
    621       1.33      fvdl 			nsize = fragroundup(fs, size);
    622       1.33      fvdl 			if (nsize <= osize) {
    623       1.33      fvdl 				error = bread(vp, -1 - lbn, osize, NOCRED, &bp);
    624       1.33      fvdl 				if (error) {
    625       1.33      fvdl 					brelse(bp);
    626       1.33      fvdl 					return (error);
    627       1.33      fvdl 				}
    628       1.33      fvdl 				bp->b_blkno = fsbtodb(fs, nb);
    629       1.33      fvdl 				bp->b_xflags |= BX_ALTDATA;
    630       1.33      fvdl 			} else {
    631       1.33      fvdl 				error = ffs_realloccg(ip, -1 - lbn,
    632       1.33      fvdl 				    dp->di_extb[lbn],
    633       1.33      fvdl 				    ffs_blkpref_ufs2(ip, lbn, (int)lbn,
    634       1.33      fvdl 				    &dp->di_extb[0]), osize, nsize, cred, &bp);
    635       1.33      fvdl 				if (error)
    636       1.33      fvdl 					return (error);
    637       1.33      fvdl 				bp->b_xflags |= BX_ALTDATA;
    638       1.33      fvdl 				if (DOINGSOFTDEP(vp))
    639       1.33      fvdl 					softdep_setup_allocext(ip, lbn,
    640       1.33      fvdl 					    dbtofsb(fs, bp->b_blkno), nb,
    641       1.33      fvdl 					    nsize, osize, bp);
    642       1.33      fvdl 			}
    643       1.33      fvdl 		} else {
    644       1.33      fvdl 			if (dp->di_extsize < smalllblktosize(fs, lbn + 1))
    645       1.33      fvdl 				nsize = fragroundup(fs, size);
    646       1.33      fvdl 			else
    647       1.33      fvdl 				nsize = fs->fs_bsize;
    648       1.33      fvdl 			error = ffs_alloc(ip, lbn,
    649       1.33      fvdl 			   ffs_blkpref_ufs2(ip, lbn, (int)lbn, &dp->di_extb[0]),
    650       1.33      fvdl 			   nsize, cred, &newb);
    651       1.33      fvdl 			if (error)
    652       1.33      fvdl 				return (error);
    653       1.33      fvdl 			bp = getblk(vp, -1 - lbn, nsize, 0, 0);
    654       1.33      fvdl 			bp->b_blkno = fsbtodb(fs, newb);
    655       1.33      fvdl 			bp->b_xflags |= BX_ALTDATA;
    656       1.33      fvdl 			if (flags & BA_CLRBUF)
    657       1.33      fvdl 				vfs_bio_clrbuf(bp);
    658       1.33      fvdl 			if (DOINGSOFTDEP(vp))
    659       1.33      fvdl 				softdep_setup_allocext(ip, lbn, newb, 0,
    660       1.33      fvdl 				    nsize, 0, bp);
    661       1.33      fvdl 		}
    662       1.33      fvdl 		dp->di_extb[lbn] = dbtofsb(fs, bp->b_blkno);
    663       1.33      fvdl 		ip->i_flag |= IN_CHANGE | IN_UPDATE;
    664       1.33      fvdl 		*bpp = bp;
    665       1.33      fvdl 		return (0);
    666       1.33      fvdl 	}
    667       1.33      fvdl #endif
    668       1.33      fvdl 	/*
    669       1.33      fvdl 	 * If the next write will extend the file into a new block,
    670       1.33      fvdl 	 * and the file is currently composed of a fragment
    671       1.33      fvdl 	 * this fragment has to be extended to be a full block.
    672       1.33      fvdl 	 */
    673       1.33      fvdl 
    674       1.33      fvdl 	lastlbn = lblkno(fs, ip->i_size);
    675       1.33      fvdl 	if (lastlbn < NDADDR && lastlbn < lbn) {
    676       1.33      fvdl 		nb = lastlbn;
    677       1.33      fvdl 		osize = blksize(fs, ip, nb);
    678       1.33      fvdl 		if (osize < fs->fs_bsize && osize > 0) {
    679       1.33      fvdl 			error = ffs_realloccg(ip, nb,
    680       1.33      fvdl 				    ffs_blkpref_ufs2(ip, lastlbn, nb,
    681       1.33      fvdl 					&ip->i_ffs2_db[0]),
    682       1.33      fvdl 				    osize, (int)fs->fs_bsize, cred, bpp, &newb);
    683       1.33      fvdl 			if (error)
    684       1.33      fvdl 				return (error);
    685       1.33      fvdl 			if (DOINGSOFTDEP(vp))
    686       1.33      fvdl 				softdep_setup_allocdirect(ip, nb, newb,
    687       1.33      fvdl 				    ufs_rw64(ip->i_ffs2_db[nb], needswap),
    688       1.33      fvdl 				    fs->fs_bsize, osize, bpp ? *bpp : NULL);
    689       1.33      fvdl 			ip->i_size = lblktosize(fs, nb + 1);
    690       1.33      fvdl 			ip->i_ffs2_size = ip->i_size;
    691       1.33      fvdl 			uvm_vnp_setsize(vp, ip->i_size);
    692       1.33      fvdl 			ip->i_ffs2_db[nb] = ufs_rw64(newb, needswap);
    693       1.33      fvdl 			ip->i_flag |= IN_CHANGE | IN_UPDATE;
    694       1.33      fvdl 			if (bpp) {
    695       1.33      fvdl 				if (flags & B_SYNC)
    696       1.33      fvdl 					bwrite(*bpp);
    697       1.33      fvdl 				else
    698       1.33      fvdl 					bawrite(*bpp);
    699       1.33      fvdl 			}
    700       1.33      fvdl 		}
    701       1.33      fvdl 	}
    702       1.33      fvdl 
    703       1.33      fvdl 	/*
    704       1.33      fvdl 	 * The first NDADDR blocks are direct blocks
    705       1.33      fvdl 	 */
    706       1.33      fvdl 
    707       1.33      fvdl 	if (lbn < NDADDR) {
    708       1.33      fvdl 		nb = ufs_rw64(ip->i_ffs2_db[lbn], needswap);
    709       1.33      fvdl 		if (nb != 0 && ip->i_size >= lblktosize(fs, lbn + 1)) {
    710       1.33      fvdl 
    711       1.33      fvdl 			/*
    712       1.33      fvdl 			 * The block is an already-allocated direct block
    713       1.33      fvdl 			 * and the file already extends past this block,
    714       1.33      fvdl 			 * thus this must be a whole block.
    715       1.33      fvdl 			 * Just read the block (if requested).
    716       1.33      fvdl 			 */
    717       1.33      fvdl 
    718       1.33      fvdl 			if (bpp != NULL) {
    719       1.33      fvdl 				error = bread(vp, lbn, fs->fs_bsize, NOCRED,
    720       1.33      fvdl 					      bpp);
    721       1.33      fvdl 				if (error) {
    722       1.33      fvdl 					brelse(*bpp);
    723       1.33      fvdl 					return (error);
    724       1.33      fvdl 				}
    725       1.33      fvdl 			}
    726       1.33      fvdl 			return (0);
    727       1.33      fvdl 		}
    728       1.33      fvdl 		if (nb != 0) {
    729       1.33      fvdl 
    730       1.33      fvdl 			/*
    731       1.33      fvdl 			 * Consider need to reallocate a fragment.
    732       1.33      fvdl 			 */
    733       1.33      fvdl 
    734       1.33      fvdl 			osize = fragroundup(fs, blkoff(fs, ip->i_size));
    735       1.33      fvdl 			nsize = fragroundup(fs, size);
    736       1.33      fvdl 			if (nsize <= osize) {
    737       1.33      fvdl 
    738       1.33      fvdl 				/*
    739       1.33      fvdl 				 * The existing block is already
    740       1.33      fvdl 				 * at least as big as we want.
    741       1.33      fvdl 				 * Just read the block (if requested).
    742       1.33      fvdl 				 */
    743       1.33      fvdl 
    744       1.33      fvdl 				if (bpp != NULL) {
    745       1.33      fvdl 					error = bread(vp, lbn, osize, NOCRED,
    746       1.33      fvdl 						      bpp);
    747       1.33      fvdl 					if (error) {
    748       1.33      fvdl 						brelse(*bpp);
    749       1.33      fvdl 						return (error);
    750       1.33      fvdl 					}
    751       1.33      fvdl 				}
    752       1.33      fvdl 				return 0;
    753       1.33      fvdl 			} else {
    754       1.33      fvdl 
    755       1.33      fvdl 				/*
    756       1.33      fvdl 				 * The existing block is smaller than we want,
    757       1.33      fvdl 				 * grow it.
    758       1.33      fvdl 				 */
    759       1.33      fvdl 
    760       1.33      fvdl 				error = ffs_realloccg(ip, lbn,
    761       1.33      fvdl 				    ffs_blkpref_ufs2(ip, lbn, (int)lbn,
    762       1.33      fvdl 					&ip->i_ffs2_db[0]), osize, nsize, cred,
    763       1.33      fvdl 					bpp, &newb);
    764       1.33      fvdl 				if (error)
    765       1.33      fvdl 					return (error);
    766       1.33      fvdl 				if (DOINGSOFTDEP(vp))
    767       1.33      fvdl 					softdep_setup_allocdirect(ip, lbn,
    768       1.33      fvdl 					    newb, nb, nsize, osize,
    769       1.33      fvdl 					    bpp ? *bpp : NULL);
    770       1.33      fvdl 			}
    771       1.33      fvdl 		} else {
    772       1.33      fvdl 
    773       1.33      fvdl 			/*
    774       1.33      fvdl 			 * the block was not previously allocated,
    775       1.33      fvdl 			 * allocate a new block or fragment.
    776       1.33      fvdl 			 */
    777       1.33      fvdl 
    778       1.33      fvdl 			if (ip->i_size < lblktosize(fs, lbn + 1))
    779       1.33      fvdl 				nsize = fragroundup(fs, size);
    780       1.33      fvdl 			else
    781       1.33      fvdl 				nsize = fs->fs_bsize;
    782       1.33      fvdl 			error = ffs_alloc(ip, lbn,
    783       1.33      fvdl 			    ffs_blkpref_ufs2(ip, lbn, (int)lbn,
    784       1.33      fvdl 				&ip->i_ffs2_db[0]), nsize, cred, &newb);
    785       1.33      fvdl 			if (error)
    786       1.33      fvdl 				return (error);
    787       1.33      fvdl 			if (bpp != NULL) {
    788       1.33      fvdl 				bp = getblk(vp, lbn, nsize, 0, 0);
    789       1.33      fvdl 				bp->b_blkno = fsbtodb(fs, newb);
    790       1.33      fvdl 				if (flags & B_CLRBUF)
    791       1.33      fvdl 					clrbuf(bp);
    792       1.33      fvdl 				*bpp = bp;
    793       1.33      fvdl 			}
    794       1.33      fvdl 			if (DOINGSOFTDEP(vp)) {
    795       1.33      fvdl 				softdep_setup_allocdirect(ip, lbn, newb, 0,
    796       1.33      fvdl 				    nsize, 0, bpp ? *bpp : NULL);
    797       1.33      fvdl 			}
    798       1.33      fvdl 		}
    799       1.33      fvdl 		ip->i_ffs2_db[lbn] = ufs_rw64(newb, needswap);
    800       1.33      fvdl 		ip->i_flag |= IN_CHANGE | IN_UPDATE;
    801       1.33      fvdl 		return (0);
    802       1.33      fvdl 	}
    803       1.33      fvdl 
    804       1.33      fvdl 	/*
    805       1.33      fvdl 	 * Determine the number of levels of indirection.
    806       1.33      fvdl 	 */
    807       1.33      fvdl 
    808       1.33      fvdl 	pref = 0;
    809       1.33      fvdl 	if ((error = ufs_getlbns(vp, lbn, indirs, &num)) != 0)
    810       1.33      fvdl 		return (error);
    811       1.33      fvdl 
    812       1.33      fvdl 	/*
    813       1.33      fvdl 	 * Fetch the first indirect block allocating if necessary.
    814       1.33      fvdl 	 */
    815       1.33      fvdl 
    816       1.33      fvdl 	--num;
    817       1.33      fvdl 	nb = ufs_rw64(ip->i_ffs2_ib[indirs[0].in_off], needswap);
    818       1.33      fvdl 	allocib = NULL;
    819       1.33      fvdl 	allocblk = allociblk;
    820       1.33      fvdl 	if (nb == 0) {
    821       1.33      fvdl 		pref = ffs_blkpref_ufs2(ip, lbn, 0, (int64_t *)0);
    822       1.33      fvdl 		error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, cred,
    823       1.33      fvdl 		    &newb);
    824       1.33      fvdl 		if (error)
    825       1.33      fvdl 			goto fail;
    826       1.33      fvdl 		nb = newb;
    827       1.33      fvdl 		*allocblk++ = nb;
    828       1.33      fvdl 		bp = getblk(vp, indirs[1].in_lbn, fs->fs_bsize, 0, 0);
    829       1.33      fvdl 		bp->b_blkno = fsbtodb(fs, nb);
    830       1.33      fvdl 		clrbuf(bp);
    831       1.33      fvdl 		if (DOINGSOFTDEP(vp)) {
    832       1.33      fvdl 			softdep_setup_allocdirect(ip, NDADDR + indirs[0].in_off,
    833       1.33      fvdl 			    newb, 0, fs->fs_bsize, 0, bp);
    834       1.33      fvdl 			bdwrite(bp);
    835       1.33      fvdl 		} else {
    836       1.33      fvdl 
    837       1.33      fvdl 			/*
    838       1.33      fvdl 			 * Write synchronously so that indirect blocks
    839       1.33      fvdl 			 * never point at garbage.
    840       1.33      fvdl 			 */
    841       1.33      fvdl 
    842       1.33      fvdl 			if ((error = bwrite(bp)) != 0)
    843       1.33      fvdl 				goto fail;
    844       1.33      fvdl 		}
    845       1.33      fvdl 		unwindidx = 0;
    846       1.33      fvdl 		allocib = &ip->i_ffs2_ib[indirs[0].in_off];
    847       1.33      fvdl 		*allocib = ufs_rw64(nb, needswap);
    848       1.33      fvdl 		ip->i_flag |= IN_CHANGE | IN_UPDATE;
    849       1.33      fvdl 	}
    850       1.33      fvdl 
    851       1.33      fvdl 	/*
    852       1.33      fvdl 	 * Fetch through the indirect blocks, allocating as necessary.
    853       1.33      fvdl 	 */
    854       1.33      fvdl 
    855       1.33      fvdl 	for (i = 1;;) {
    856       1.33      fvdl 		error = bread(vp,
    857       1.33      fvdl 		    indirs[i].in_lbn, (int)fs->fs_bsize, NOCRED, &bp);
    858       1.33      fvdl 		if (error) {
    859       1.33      fvdl 			brelse(bp);
    860       1.33      fvdl 			goto fail;
    861       1.33      fvdl 		}
    862       1.33      fvdl 		bap = (int64_t *)bp->b_data;
    863       1.33      fvdl 		nb = ufs_rw64(bap[indirs[i].in_off], needswap);
    864       1.33      fvdl 		if (i == num)
    865       1.33      fvdl 			break;
    866       1.33      fvdl 		i++;
    867       1.33      fvdl 		if (nb != 0) {
    868       1.33      fvdl 			brelse(bp);
    869       1.33      fvdl 			continue;
    870       1.33      fvdl 		}
    871       1.33      fvdl 		if (pref == 0)
    872       1.33      fvdl 			pref = ffs_blkpref_ufs2(ip, lbn, 0, (int64_t *)0);
    873       1.33      fvdl 		error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, cred,
    874       1.33      fvdl 		    &newb);
    875       1.33      fvdl 		if (error) {
    876       1.33      fvdl 			brelse(bp);
    877       1.33      fvdl 			goto fail;
    878       1.33      fvdl 		}
    879       1.33      fvdl 		nb = newb;
    880       1.33      fvdl 		*allocblk++ = nb;
    881       1.33      fvdl 		nbp = getblk(vp, indirs[i].in_lbn, fs->fs_bsize, 0, 0);
    882       1.33      fvdl 		nbp->b_blkno = fsbtodb(fs, nb);
    883       1.33      fvdl 		clrbuf(nbp);
    884       1.33      fvdl 		if (DOINGSOFTDEP(vp)) {
    885       1.33      fvdl 			softdep_setup_allocindir_meta(nbp, ip, bp,
    886       1.33      fvdl 			    indirs[i - 1].in_off, nb);
    887       1.33      fvdl 			bdwrite(nbp);
    888       1.33      fvdl 		} else {
    889       1.33      fvdl 
    890       1.33      fvdl 			/*
    891       1.33      fvdl 			 * Write synchronously so that indirect blocks
    892       1.33      fvdl 			 * never point at garbage.
    893       1.33      fvdl 			 */
    894       1.33      fvdl 
    895       1.33      fvdl 			if ((error = bwrite(nbp)) != 0) {
    896       1.33      fvdl 				brelse(bp);
    897       1.33      fvdl 				goto fail;
    898       1.33      fvdl 			}
    899       1.33      fvdl 		}
    900       1.33      fvdl 		if (unwindidx < 0)
    901       1.33      fvdl 			unwindidx = i - 1;
    902       1.33      fvdl 		bap[indirs[i - 1].in_off] = ufs_rw64(nb, needswap);
    903       1.33      fvdl 
    904       1.33      fvdl 		/*
    905       1.33      fvdl 		 * If required, write synchronously, otherwise use
    906       1.33      fvdl 		 * delayed write.
    907       1.33      fvdl 		 */
    908       1.33      fvdl 
    909       1.33      fvdl 		if (flags & B_SYNC) {
    910       1.33      fvdl 			bwrite(bp);
    911       1.33      fvdl 		} else {
    912       1.33      fvdl 			bdwrite(bp);
    913       1.33      fvdl 		}
    914       1.33      fvdl 	}
    915       1.33      fvdl 
    916       1.35   hannken 	if (flags & B_METAONLY) {
    917       1.35   hannken 		*bpp = bp;
    918       1.35   hannken 		return (0);
    919       1.35   hannken 	}
    920       1.35   hannken 
    921       1.33      fvdl 	/*
    922       1.33      fvdl 	 * Get the data block, allocating if necessary.
    923       1.33      fvdl 	 */
    924       1.33      fvdl 
    925       1.33      fvdl 	if (nb == 0) {
    926       1.33      fvdl 		pref = ffs_blkpref_ufs2(ip, lbn, indirs[num].in_off, &bap[0]);
    927       1.33      fvdl 		error = ffs_alloc(ip, lbn, pref, (int)fs->fs_bsize, cred,
    928       1.33      fvdl 		    &newb);
    929       1.33      fvdl 		if (error) {
    930       1.33      fvdl 			brelse(bp);
    931       1.33      fvdl 			goto fail;
    932       1.33      fvdl 		}
    933       1.33      fvdl 		nb = newb;
    934       1.33      fvdl 		*allocblk++ = nb;
    935       1.33      fvdl 		if (bpp != NULL) {
    936       1.33      fvdl 			nbp = getblk(vp, lbn, fs->fs_bsize, 0, 0);
    937       1.33      fvdl 			nbp->b_blkno = fsbtodb(fs, nb);
    938       1.33      fvdl 			if (flags & B_CLRBUF)
    939       1.33      fvdl 				clrbuf(nbp);
    940       1.33      fvdl 			*bpp = nbp;
    941       1.33      fvdl 		}
    942       1.33      fvdl 		if (DOINGSOFTDEP(vp))
    943       1.33      fvdl 			softdep_setup_allocindir_page(ip, lbn, bp,
    944       1.33      fvdl 			    indirs[num].in_off, nb, 0, bpp ? *bpp : NULL);
    945       1.33      fvdl 		bap[indirs[num].in_off] = ufs_rw64(nb, needswap);
    946       1.33      fvdl 		if (allocib == NULL && unwindidx < 0) {
    947       1.33      fvdl 			unwindidx = i - 1;
    948       1.33      fvdl 		}
    949       1.33      fvdl 
    950       1.33      fvdl 		/*
    951       1.33      fvdl 		 * If required, write synchronously, otherwise use
    952       1.33      fvdl 		 * delayed write.
    953       1.33      fvdl 		 */
    954       1.33      fvdl 
    955       1.33      fvdl 		if (flags & B_SYNC) {
    956       1.33      fvdl 			bwrite(bp);
    957       1.33      fvdl 		} else {
    958       1.33      fvdl 			bdwrite(bp);
    959       1.33      fvdl 		}
    960       1.33      fvdl 		return (0);
    961       1.33      fvdl 	}
    962       1.33      fvdl 	brelse(bp);
    963       1.33      fvdl 	if (bpp != NULL) {
    964       1.33      fvdl 		if (flags & B_CLRBUF) {
    965       1.33      fvdl 			error = bread(vp, lbn, (int)fs->fs_bsize, NOCRED, &nbp);
    966       1.33      fvdl 			if (error) {
    967       1.33      fvdl 				brelse(nbp);
    968       1.33      fvdl 				goto fail;
    969       1.33      fvdl 			}
    970       1.33      fvdl 		} else {
    971       1.33      fvdl 			nbp = getblk(vp, lbn, fs->fs_bsize, 0, 0);
    972       1.33      fvdl 			nbp->b_blkno = fsbtodb(fs, nb);
    973       1.33      fvdl 			clrbuf(nbp);
    974       1.33      fvdl 		}
    975       1.33      fvdl 		*bpp = nbp;
    976       1.33      fvdl 	}
    977       1.33      fvdl 	return (0);
    978       1.33      fvdl 
    979       1.33      fvdl fail:
    980       1.33      fvdl 	/*
    981       1.33      fvdl 	 * If we have failed part way through block allocation, we
    982       1.33      fvdl 	 * have to deallocate any indirect blocks that we have allocated.
    983       1.33      fvdl 	 */
    984       1.33      fvdl 
    985       1.33      fvdl 	if (unwindidx >= 0) {
    986       1.33      fvdl 
    987       1.33      fvdl 		/*
    988       1.33      fvdl 		 * First write out any buffers we've created to resolve their
    989       1.33      fvdl 		 * softdeps.  This must be done in reverse order of creation
    990       1.33      fvdl 		 * so that we resolve the dependencies in one pass.
    991       1.33      fvdl 		 * Write the cylinder group buffers for these buffers too.
    992       1.33      fvdl 		 */
    993       1.33      fvdl 
    994       1.33      fvdl 		for (i = num; i >= unwindidx; i--) {
    995       1.33      fvdl 			if (i == 0) {
    996       1.33      fvdl 				break;
    997       1.33      fvdl 			}
    998       1.33      fvdl 			bp = getblk(vp, indirs[i].in_lbn, (int)fs->fs_bsize, 0,
    999       1.33      fvdl 			    0);
   1000       1.33      fvdl 			if (bp->b_flags & B_DELWRI) {
   1001       1.33      fvdl 				nb = fsbtodb(fs, cgtod(fs, dtog(fs,
   1002       1.33      fvdl 				    dbtofsb(fs, bp->b_blkno))));
   1003       1.33      fvdl 				bwrite(bp);
   1004       1.33      fvdl 				bp = getblk(ip->i_devvp, nb, (int)fs->fs_cgsize,
   1005       1.33      fvdl 				    0, 0);
   1006       1.33      fvdl 				if (bp->b_flags & B_DELWRI) {
   1007       1.33      fvdl 					bwrite(bp);
   1008       1.33      fvdl 				} else {
   1009       1.33      fvdl 					bp->b_flags |= B_INVAL;
   1010       1.33      fvdl 					brelse(bp);
   1011       1.33      fvdl 				}
   1012       1.33      fvdl 			} else {
   1013       1.33      fvdl 				bp->b_flags |= B_INVAL;
   1014       1.33      fvdl 				brelse(bp);
   1015       1.33      fvdl 			}
   1016       1.33      fvdl 		}
   1017       1.36   mycroft 		if (DOINGSOFTDEP(vp) && unwindidx == 0) {
   1018       1.36   mycroft 			ip->i_flag |= IN_CHANGE | IN_UPDATE;
   1019       1.39      yamt 			ffs_update(vp, NULL, NULL, UPDATE_WAIT);
   1020       1.33      fvdl 		}
   1021       1.33      fvdl 
   1022       1.33      fvdl 		/*
   1023       1.33      fvdl 		 * Now that any dependencies that we created have been
   1024       1.33      fvdl 		 * resolved, we can undo the partial allocation.
   1025       1.33      fvdl 		 */
   1026       1.33      fvdl 
   1027       1.33      fvdl 		if (unwindidx == 0) {
   1028       1.33      fvdl 			*allocib = 0;
   1029       1.36   mycroft 			ip->i_flag |= IN_CHANGE | IN_UPDATE;
   1030       1.36   mycroft 			if (DOINGSOFTDEP(vp))
   1031       1.39      yamt 				ffs_update(vp, NULL, NULL, UPDATE_WAIT);
   1032       1.33      fvdl 		} else {
   1033       1.33      fvdl 			int r;
   1034       1.33      fvdl 
   1035       1.33      fvdl 			r = bread(vp, indirs[unwindidx].in_lbn,
   1036       1.33      fvdl 			    (int)fs->fs_bsize, NOCRED, &bp);
   1037       1.33      fvdl 			if (r) {
   1038       1.33      fvdl 				panic("Could not unwind indirect block, error %d", r);
   1039       1.33      fvdl 				brelse(bp);
   1040       1.33      fvdl 			} else {
   1041       1.33      fvdl 				bap = (int64_t *)bp->b_data;
   1042       1.33      fvdl 				bap[indirs[unwindidx].in_off] = 0;
   1043       1.33      fvdl 				bwrite(bp);
   1044       1.33      fvdl 			}
   1045       1.33      fvdl 		}
   1046       1.33      fvdl 		for (i = unwindidx + 1; i <= num; i++) {
   1047       1.33      fvdl 			bp = getblk(vp, indirs[i].in_lbn, (int)fs->fs_bsize, 0,
   1048       1.33      fvdl 			    0);
   1049       1.33      fvdl 			bp->b_flags |= B_INVAL;
   1050       1.33      fvdl 			brelse(bp);
   1051       1.33      fvdl 		}
   1052       1.33      fvdl 	}
   1053       1.33      fvdl 	for (deallocated = 0, blkp = allociblk; blkp < allocblk; blkp++) {
   1054       1.35   hannken 		ffs_blkfree(fs, ip->i_devvp, *blkp, fs->fs_bsize, ip->i_number);
   1055       1.33      fvdl 		deallocated += fs->fs_bsize;
   1056       1.33      fvdl 	}
   1057       1.33      fvdl 	if (deallocated) {
   1058       1.33      fvdl #ifdef QUOTA
   1059       1.33      fvdl 		/*
   1060       1.33      fvdl 		 * Restore user's disk quota because allocation failed.
   1061       1.33      fvdl 		 */
   1062       1.33      fvdl 		(void)chkdq(ip, -btodb(deallocated), cred, FORCE);
   1063        1.8      fvdl #endif
   1064       1.33      fvdl 		ip->i_ffs2_blocks -= btodb(deallocated);
   1065       1.13   mycroft 		ip->i_flag |= IN_CHANGE | IN_UPDATE;
   1066        1.8      fvdl 	}
   1067        1.8      fvdl 	return (error);
   1068        1.1   mycroft }
   1069