Home | History | Annotate | Line # | Download | only in lfs
lfs_alloc.c revision 1.51
      1  1.51       chs /*	$NetBSD: lfs_alloc.c,v 1.51 2001/10/14 19:06:16 chs Exp $	*/
      2   1.2       cgd 
      3  1.17  perseant /*-
      4  1.38  perseant  * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
      5  1.17  perseant  * All rights reserved.
      6  1.17  perseant  *
      7  1.17  perseant  * This code is derived from software contributed to The NetBSD Foundation
      8  1.17  perseant  * by Konrad E. Schroder <perseant (at) hhhh.org>.
      9  1.17  perseant  *
     10  1.17  perseant  * Redistribution and use in source and binary forms, with or without
     11  1.17  perseant  * modification, are permitted provided that the following conditions
     12  1.17  perseant  * are met:
     13  1.17  perseant  * 1. Redistributions of source code must retain the above copyright
     14  1.17  perseant  *    notice, this list of conditions and the following disclaimer.
     15  1.17  perseant  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.17  perseant  *    notice, this list of conditions and the following disclaimer in the
     17  1.17  perseant  *    documentation and/or other materials provided with the distribution.
     18  1.17  perseant  * 3. All advertising materials mentioning features or use of this software
     19  1.17  perseant  *    must display the following acknowledgement:
     20  1.17  perseant  *      This product includes software developed by the NetBSD
     21  1.17  perseant  *      Foundation, Inc. and its contributors.
     22  1.17  perseant  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.17  perseant  *    contributors may be used to endorse or promote products derived
     24  1.17  perseant  *    from this software without specific prior written permission.
     25  1.17  perseant  *
     26  1.17  perseant  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.17  perseant  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.17  perseant  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.17  perseant  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.17  perseant  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.17  perseant  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.17  perseant  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.17  perseant  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.17  perseant  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.17  perseant  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.17  perseant  * POSSIBILITY OF SUCH DAMAGE.
     37  1.17  perseant  */
     38   1.1   mycroft /*
     39   1.1   mycroft  * Copyright (c) 1991, 1993
     40   1.1   mycroft  *	The Regents of the University of California.  All rights reserved.
     41   1.1   mycroft  *
     42   1.1   mycroft  * Redistribution and use in source and binary forms, with or without
     43   1.1   mycroft  * modification, are permitted provided that the following conditions
     44   1.1   mycroft  * are met:
     45   1.1   mycroft  * 1. Redistributions of source code must retain the above copyright
     46   1.1   mycroft  *    notice, this list of conditions and the following disclaimer.
     47   1.1   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     48   1.1   mycroft  *    notice, this list of conditions and the following disclaimer in the
     49   1.1   mycroft  *    documentation and/or other materials provided with the distribution.
     50   1.1   mycroft  * 3. All advertising materials mentioning features or use of this software
     51   1.1   mycroft  *    must display the following acknowledgement:
     52   1.1   mycroft  *	This product includes software developed by the University of
     53   1.1   mycroft  *	California, Berkeley and its contributors.
     54   1.1   mycroft  * 4. Neither the name of the University nor the names of its contributors
     55   1.1   mycroft  *    may be used to endorse or promote products derived from this software
     56   1.1   mycroft  *    without specific prior written permission.
     57   1.1   mycroft  *
     58   1.1   mycroft  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     59   1.1   mycroft  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     60   1.1   mycroft  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     61   1.1   mycroft  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     62   1.1   mycroft  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     63   1.1   mycroft  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     64   1.1   mycroft  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     65   1.1   mycroft  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     66   1.1   mycroft  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     67   1.1   mycroft  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     68   1.1   mycroft  * SUCH DAMAGE.
     69   1.1   mycroft  *
     70   1.2       cgd  *	@(#)lfs_alloc.c	8.4 (Berkeley) 1/4/94
     71   1.1   mycroft  */
     72  1.12    scottr 
     73  1.47       mrg #if defined(_KERNEL_OPT)
     74  1.12    scottr #include "opt_quota.h"
     75  1.13    scottr #endif
     76   1.1   mycroft 
     77   1.1   mycroft #include <sys/param.h>
     78   1.3  christos #include <sys/systm.h>
     79   1.1   mycroft #include <sys/kernel.h>
     80   1.1   mycroft #include <sys/buf.h>
     81   1.1   mycroft #include <sys/vnode.h>
     82   1.1   mycroft #include <sys/syslog.h>
     83   1.1   mycroft #include <sys/mount.h>
     84   1.1   mycroft #include <sys/malloc.h>
     85  1.15   thorpej #include <sys/pool.h>
     86  1.50       chs #include <sys/proc.h>
     87   1.1   mycroft 
     88   1.1   mycroft #include <ufs/ufs/quota.h>
     89   1.1   mycroft #include <ufs/ufs/inode.h>
     90   1.1   mycroft #include <ufs/ufs/ufsmount.h>
     91   1.3  christos #include <ufs/ufs/ufs_extern.h>
     92   1.1   mycroft 
     93   1.1   mycroft #include <ufs/lfs/lfs.h>
     94   1.1   mycroft #include <ufs/lfs/lfs_extern.h>
     95   1.1   mycroft 
     96  1.38  perseant extern int lfs_dirvcount;
     97  1.17  perseant extern struct lock ufs_hashlock;
     98  1.17  perseant 
     99  1.44  perseant static int extend_ifile(struct lfs *, struct ucred *);
    100  1.44  perseant static int lfs_ialloc(struct lfs *, struct vnode *, ino_t, int, struct vnode **);
    101  1.44  perseant 
    102  1.44  perseant /*
    103  1.44  perseant  * Allocate a particular inode with a particular version number, freeing
    104  1.44  perseant  * any previous versions of this inode that may have gone before.
    105  1.44  perseant  * Used by the roll-forward code.
    106  1.44  perseant  *
    107  1.44  perseant  * XXX this function does not have appropriate locking to be used on a live fs;
    108  1.44  perseant  * XXX but something similar could probably be used for an "undelete" call.
    109  1.44  perseant  */
    110  1.44  perseant int
    111  1.44  perseant lfs_rf_valloc(struct lfs *fs, ino_t ino, int version, struct proc *p,
    112  1.44  perseant 	      struct vnode **vpp)
    113  1.44  perseant {
    114  1.44  perseant 	IFILE *ifp;
    115  1.48  perseant 	struct buf *bp, *cbp;
    116  1.44  perseant 	struct vnode *vp;
    117  1.44  perseant 	struct inode *ip;
    118  1.44  perseant 	ino_t tino, oldnext;
    119  1.44  perseant 	int error;
    120  1.48  perseant 	CLEANERINFO *cip;
    121  1.44  perseant 
    122  1.44  perseant 	/*
    123  1.44  perseant 	 * First, just try a vget. If the version number is the one we want,
    124  1.44  perseant 	 * we don't have to do anything else.  If the version number is wrong,
    125  1.44  perseant 	 * take appropriate action.
    126  1.44  perseant 	 */
    127  1.44  perseant 	error = VFS_VGET(fs->lfs_ivnode->v_mount, ino, &vp);
    128  1.44  perseant 	if (error == 0) {
    129  1.44  perseant 		/* printf("lfs_rf_valloc[1]: ino %d vp %p\n", ino, vp); */
    130  1.44  perseant 
    131  1.44  perseant 		*vpp = vp;
    132  1.44  perseant 		ip = VTOI(vp);
    133  1.44  perseant 		if (ip->i_ffs_gen == version)
    134  1.44  perseant 			return 0;
    135  1.44  perseant 		else if (ip->i_ffs_gen < version) {
    136  1.44  perseant 			VOP_TRUNCATE(vp, (off_t)0, 0, NOCRED, p);
    137  1.44  perseant 			ip->i_ffs_gen = version;
    138  1.44  perseant 			LFS_SET_UINO(ip, IN_CHANGE | IN_MODIFIED | IN_UPDATE);
    139  1.44  perseant 			return 0;
    140  1.44  perseant 		} else {
    141  1.44  perseant 			/* printf("ino %d: asked for version %d but got %d\n",
    142  1.44  perseant 			       ino, version, ip->i_ffs_gen); */
    143  1.44  perseant 			vput(vp);
    144  1.44  perseant 			*vpp = NULLVP;
    145  1.44  perseant 			return EEXIST;
    146  1.44  perseant 		}
    147  1.44  perseant 	}
    148  1.44  perseant 
    149  1.44  perseant 	/*
    150  1.44  perseant 	 * The inode is not in use.  Find it on the free list.
    151  1.44  perseant 	 */
    152  1.44  perseant 	/* If the Ifile is too short to contain this inum, extend it */
    153  1.48  perseant 	while (VTOI(fs->lfs_ivnode)->i_ffs_size <= (ino /
    154  1.48  perseant 		fs->lfs_ifpb + fs->lfs_cleansz + fs->lfs_segtabsz)
    155  1.48  perseant 		<< fs->lfs_bshift) {
    156  1.44  perseant 		extend_ifile(fs, NOCRED);
    157  1.44  perseant 	}
    158  1.44  perseant 
    159  1.44  perseant 	LFS_IENTRY(ifp, fs, ino, bp);
    160  1.44  perseant 	oldnext = ifp->if_nextfree;
    161  1.44  perseant 	ifp->if_version = version;
    162  1.44  perseant 	brelse(bp);
    163  1.44  perseant 
    164  1.48  perseant 	LFS_GET_HEADFREE(fs, cip, cbp, &ino);
    165  1.48  perseant 	if (ino) {
    166  1.48  perseant 		LFS_PUT_HEADFREE(fs, cip, cbp, oldnext);
    167  1.44  perseant 	} else {
    168  1.48  perseant 		tino = ino;
    169  1.44  perseant 		while(1) {
    170  1.44  perseant 			LFS_IENTRY(ifp, fs, tino, bp);
    171  1.44  perseant 			if (ifp->if_nextfree == ino ||
    172  1.44  perseant 			    ifp->if_nextfree == LFS_UNUSED_INUM)
    173  1.44  perseant 				break;
    174  1.44  perseant 			tino = ifp->if_nextfree;
    175  1.44  perseant 			brelse(bp);
    176  1.44  perseant 		}
    177  1.44  perseant 		if (ifp->if_nextfree == LFS_UNUSED_INUM) {
    178  1.44  perseant 			brelse(bp);
    179  1.44  perseant 			return ENOENT;
    180  1.44  perseant 		}
    181  1.44  perseant 		ifp->if_nextfree = oldnext;
    182  1.44  perseant 		VOP_BWRITE(bp);
    183  1.44  perseant 	}
    184  1.44  perseant 
    185  1.44  perseant 	error = lfs_ialloc(fs, fs->lfs_ivnode, ino, version, &vp);
    186  1.44  perseant 	if (error == 0) {
    187  1.44  perseant 		/*
    188  1.44  perseant 		 * Make it VREG so we can put blocks on it.  We will change
    189  1.44  perseant 		 * this later if it turns out to be some other kind of file.
    190  1.44  perseant 		 */
    191  1.44  perseant 		ip = VTOI(vp);
    192  1.44  perseant 		ip->i_ffs_mode = IFREG;
    193  1.44  perseant 		ip->i_ffs_nlink = 1;
    194  1.44  perseant 		ip->i_ffs_effnlink = 1;
    195  1.44  perseant 		ufs_vinit(vp->v_mount, lfs_specop_p, lfs_fifoop_p, &vp);
    196  1.44  perseant 		ip = VTOI(vp);
    197  1.44  perseant 
    198  1.44  perseant 		/* printf("lfs_rf_valloc: ino %d vp %p\n", ino, vp); */
    199  1.44  perseant 
    200  1.44  perseant 		/* The dirop-nature of this vnode is past */
    201  1.44  perseant 		(void)lfs_vunref(vp);
    202  1.44  perseant 		--lfs_dirvcount;
    203  1.44  perseant 		vp->v_flag &= ~VDIROP;
    204  1.44  perseant 		--fs->lfs_nadirop;
    205  1.44  perseant 		ip->i_flag &= ~IN_ADIROP;
    206  1.44  perseant 	}
    207  1.44  perseant 	*vpp = vp;
    208  1.44  perseant 	return error;
    209  1.44  perseant }
    210  1.44  perseant 
    211  1.44  perseant static int
    212  1.44  perseant extend_ifile(struct lfs *fs, struct ucred *cred)
    213  1.44  perseant {
    214  1.44  perseant 	struct vnode *vp;
    215  1.44  perseant 	struct inode *ip;
    216  1.44  perseant 	IFILE *ifp;
    217  1.48  perseant 	IFILE_V1 *ifp_v1;
    218  1.48  perseant 	struct buf *bp, *cbp;
    219  1.44  perseant 	int error;
    220  1.44  perseant 	ufs_daddr_t i, blkno, max;
    221  1.44  perseant 	ino_t oldlast;
    222  1.48  perseant 	CLEANERINFO *cip;
    223  1.44  perseant 
    224  1.44  perseant 	vp = fs->lfs_ivnode;
    225  1.44  perseant 	(void)lfs_vref(vp);
    226  1.44  perseant 	vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    227  1.44  perseant 	ip = VTOI(vp);
    228  1.44  perseant 	blkno = lblkno(fs, ip->i_ffs_size);
    229  1.44  perseant 	if ((error = VOP_BALLOC(vp, ip->i_ffs_size, fs->lfs_bsize, cred, 0,
    230  1.44  perseant 				&bp)) != 0) {
    231  1.44  perseant 		VOP_UNLOCK(vp, 0);
    232  1.44  perseant 		lfs_vunref(vp);
    233  1.44  perseant 		return (error);
    234  1.44  perseant 	}
    235  1.44  perseant 	ip->i_ffs_size += fs->lfs_bsize;
    236  1.44  perseant 	uvm_vnp_setsize(vp, ip->i_ffs_size);
    237  1.44  perseant 	VOP_UNLOCK(vp, 0);
    238  1.44  perseant 
    239  1.44  perseant 	i = (blkno - fs->lfs_segtabsz - fs->lfs_cleansz) *
    240  1.44  perseant 		fs->lfs_ifpb;
    241  1.48  perseant 	LFS_GET_HEADFREE(fs, cip, cbp, &oldlast);
    242  1.48  perseant 	LFS_PUT_HEADFREE(fs, cip, cbp, i);
    243  1.44  perseant #ifdef DIAGNOSTIC
    244  1.44  perseant 	if(fs->lfs_free == LFS_UNUSED_INUM)
    245  1.44  perseant 		panic("inode 0 allocated [2]");
    246  1.44  perseant #endif /* DIAGNOSTIC */
    247  1.44  perseant 	max = i + fs->lfs_ifpb;
    248  1.44  perseant 	/* printf("extend ifile for ino %d--%d\n", i, max); */
    249  1.48  perseant 
    250  1.48  perseant 	if(fs->lfs_version == 1) {
    251  1.48  perseant 		for (ifp_v1 = (IFILE_V1 *)bp->b_data; i < max; ++ifp_v1) {
    252  1.48  perseant 			ifp_v1->if_version = 1;
    253  1.48  perseant 			ifp_v1->if_daddr = LFS_UNUSED_DADDR;
    254  1.48  perseant 			ifp_v1->if_nextfree = ++i;
    255  1.48  perseant 		}
    256  1.48  perseant 		ifp_v1--;
    257  1.48  perseant 		ifp_v1->if_nextfree = oldlast;
    258  1.48  perseant 	} else {
    259  1.48  perseant 		for (ifp = (IFILE *)bp->b_data; i < max; ++ifp) {
    260  1.48  perseant 			ifp->if_version = 1;
    261  1.48  perseant 			ifp->if_daddr = LFS_UNUSED_DADDR;
    262  1.48  perseant 			ifp->if_nextfree = ++i;
    263  1.48  perseant 		}
    264  1.48  perseant 		ifp--;
    265  1.48  perseant 		ifp->if_nextfree = oldlast;
    266  1.44  perseant 	}
    267  1.48  perseant 
    268  1.44  perseant 	(void) VOP_BWRITE(bp); /* Ifile */
    269  1.44  perseant 	lfs_vunref(vp);
    270  1.44  perseant 
    271  1.44  perseant 	return 0;
    272  1.44  perseant }
    273  1.44  perseant 
    274   1.1   mycroft /* Allocate a new inode. */
    275   1.1   mycroft /* ARGSUSED */
    276  1.43  perseant /* VOP_BWRITE 2i times */
    277   1.1   mycroft int
    278  1.48  perseant lfs_valloc(void *v)
    279   1.3  christos {
    280   1.1   mycroft 	struct vop_valloc_args /* {
    281  1.17  perseant 				  struct vnode *a_pvp;
    282  1.17  perseant 				  int a_mode;
    283  1.17  perseant 				  struct ucred *a_cred;
    284  1.17  perseant 				  struct vnode **a_vpp;
    285  1.17  perseant 				  } */ *ap = v;
    286   1.1   mycroft 	struct lfs *fs;
    287  1.48  perseant 	struct buf *bp, *cbp;
    288   1.1   mycroft 	struct ifile *ifp;
    289   1.1   mycroft 	ino_t new_ino;
    290   1.1   mycroft 	int error;
    291  1.36  perseant 	int new_gen;
    292  1.48  perseant 	CLEANERINFO *cip;
    293   1.1   mycroft 
    294  1.17  perseant 	fs = VTOI(ap->a_pvp)->i_lfs;
    295  1.38  perseant 	if (fs->lfs_ronly)
    296  1.38  perseant 		return EROFS;
    297  1.38  perseant 	*ap->a_vpp = NULL;
    298  1.17  perseant 
    299  1.48  perseant 	if (fs->lfs_version == 1) {
    300  1.48  perseant 		/*
    301  1.48  perseant 		 * Use lfs_seglock here, instead of fs->lfs_freelock, to
    302  1.48  perseant 		 * ensure that the free list is not changed in between
    303  1.48  perseant 		 * the time that the ifile blocks are written to disk
    304  1.48  perseant 		 * and the time that the superblock is written to disk.
    305  1.48  perseant 		 */
    306  1.48  perseant 		lfs_seglock(fs, SEGM_PROT);
    307  1.48  perseant 	} else {
    308  1.48  perseant 		lockmgr(&fs->lfs_freelock, LK_EXCLUSIVE, 0);
    309  1.48  perseant 	}
    310  1.17  perseant 
    311   1.1   mycroft 	/* Get the head of the freelist. */
    312  1.48  perseant 	LFS_GET_HEADFREE(fs, cip, cbp, &new_ino);
    313  1.48  perseant 
    314  1.17  perseant #ifdef DIAGNOSTIC
    315  1.17  perseant 	if(new_ino == LFS_UNUSED_INUM) {
    316  1.17  perseant #ifdef DEBUG
    317  1.17  perseant 		lfs_dump_super(fs);
    318  1.17  perseant #endif /* DEBUG */
    319  1.17  perseant 		panic("inode 0 allocated [1]");
    320  1.17  perseant 	}
    321  1.17  perseant #endif /* DIAGNOSTIC */
    322   1.1   mycroft #ifdef ALLOCPRINT
    323  1.44  perseant 	printf("lfs_valloc: allocate inode %d\n", new_ino);
    324   1.1   mycroft #endif
    325  1.17  perseant 
    326   1.1   mycroft 	/*
    327   1.1   mycroft 	 * Remove the inode from the free list and write the new start
    328   1.1   mycroft 	 * of the free list into the superblock.
    329   1.1   mycroft 	 */
    330   1.1   mycroft 	LFS_IENTRY(ifp, fs, new_ino, bp);
    331   1.1   mycroft 	if (ifp->if_daddr != LFS_UNUSED_DADDR)
    332  1.44  perseant 		panic("lfs_valloc: inuse inode %d on the free list", new_ino);
    333  1.48  perseant 	LFS_PUT_HEADFREE(fs, cip, cbp, ifp->if_nextfree);
    334  1.48  perseant 
    335  1.37  perseant 	new_gen = ifp->if_version; /* version was updated by vfree */
    336  1.28  perseant 	brelse(bp);
    337  1.30  perseant 
    338   1.1   mycroft 	/* Extend IFILE so that the next lfs_valloc will succeed. */
    339   1.1   mycroft 	if (fs->lfs_free == LFS_UNUSED_INUM) {
    340  1.44  perseant 		if ((error = extend_ifile(fs, ap->a_cred)) != 0) {
    341  1.48  perseant 			LFS_PUT_HEADFREE(fs, cip, cbp, new_ino);
    342  1.48  perseant 			if (fs->lfs_version == 1)
    343  1.48  perseant 				lfs_segunlock(fs);
    344  1.48  perseant 			else
    345  1.48  perseant 				lockmgr(&fs->lfs_freelock, LK_RELEASE, 0);
    346  1.44  perseant 			return error;
    347   1.1   mycroft 		}
    348   1.1   mycroft 	}
    349  1.17  perseant #ifdef DIAGNOSTIC
    350  1.17  perseant 	if(fs->lfs_free == LFS_UNUSED_INUM)
    351  1.17  perseant 		panic("inode 0 allocated [3]");
    352  1.17  perseant #endif /* DIAGNOSTIC */
    353  1.48  perseant 
    354  1.48  perseant 	if (fs->lfs_version == 1)
    355  1.48  perseant 		lfs_segunlock(fs);
    356  1.48  perseant 	else
    357  1.48  perseant 		lockmgr(&fs->lfs_freelock, LK_RELEASE, 0);
    358  1.31  perseant 
    359  1.44  perseant 	return lfs_ialloc(fs, ap->a_pvp, new_ino, new_gen, ap->a_vpp);
    360  1.44  perseant }
    361  1.44  perseant 
    362  1.44  perseant static int
    363  1.44  perseant lfs_ialloc(struct lfs *fs, struct vnode *pvp, ino_t new_ino, int new_gen,
    364  1.44  perseant 	   struct vnode **vpp)
    365  1.44  perseant {
    366  1.44  perseant 	struct inode *ip;
    367  1.44  perseant 	struct vnode *vp;
    368  1.44  perseant 	IFILE *ifp;
    369  1.48  perseant 	struct buf *bp, *cbp;
    370  1.44  perseant 	int error;
    371  1.48  perseant 	CLEANERINFO *cip;
    372  1.44  perseant 
    373  1.44  perseant 	error = getnewvnode(VT_LFS, pvp->v_mount, lfs_vnodeop_p, &vp);
    374  1.44  perseant 	/* printf("lfs_ialloc: ino %d vp %p error %d\n", new_ino, vp, error);*/
    375  1.44  perseant 	if (error)
    376  1.40      fvdl 		goto errout;
    377  1.40      fvdl 
    378  1.31  perseant 	lockmgr(&ufs_hashlock, LK_EXCLUSIVE, 0);
    379  1.40      fvdl 	/* Create an inode to associate with the vnode. */
    380  1.44  perseant 	lfs_vcreate(pvp->v_mount, new_ino, vp);
    381  1.51       chs 
    382   1.1   mycroft 	ip = VTOI(vp);
    383  1.48  perseant 	LFS_SET_UINO(ip, IN_CHANGE | IN_MODIFIED);
    384   1.1   mycroft 	/* Zero out the direct and indirect block addresses. */
    385  1.16   thorpej 	bzero(&ip->i_din, sizeof(ip->i_din));
    386   1.8    bouyer 	ip->i_din.ffs_din.di_inumber = new_ino;
    387  1.51       chs 
    388   1.1   mycroft 	/* Set a new generation number for this inode. */
    389  1.44  perseant 	if (new_gen)
    390  1.44  perseant 		ip->i_ffs_gen = new_gen;
    391  1.51       chs 
    392   1.1   mycroft 	/* Insert into the inode hash table. */
    393   1.1   mycroft 	ufs_ihashins(ip);
    394  1.26  perseant 	lockmgr(&ufs_hashlock, LK_RELEASE, 0);
    395  1.44  perseant 
    396  1.49       chs 	ufs_vinit(vp->v_mount, lfs_specop_p, lfs_fifoop_p, &vp);
    397  1.44  perseant 	ip = VTOI(vp);
    398  1.44  perseant 	/* printf("lfs_ialloc[2]: ino %d vp %p\n", new_ino, vp);*/
    399  1.51       chs 
    400  1.51       chs 	uvm_vnp_setsize(vp, 0);
    401  1.44  perseant 	*vpp = vp;
    402  1.38  perseant #if 1
    403  1.17  perseant 	if(!(vp->v_flag & VDIROP)) {
    404  1.35  perseant 		(void)lfs_vref(vp);
    405  1.26  perseant 		++lfs_dirvcount;
    406  1.17  perseant 	}
    407   1.1   mycroft 	vp->v_flag |= VDIROP;
    408  1.51       chs 
    409  1.32  perseant 	if(!(ip->i_flag & IN_ADIROP))
    410  1.32  perseant 		++fs->lfs_nadirop;
    411  1.32  perseant 	ip->i_flag |= IN_ADIROP;
    412  1.38  perseant #endif
    413  1.38  perseant 	VREF(ip->i_devvp);
    414   1.1   mycroft 	/* Set superblock modified bit and increment file count. */
    415   1.1   mycroft 	fs->lfs_fmod = 1;
    416   1.1   mycroft 	++fs->lfs_nfiles;
    417   1.1   mycroft 	return (0);
    418  1.38  perseant 
    419  1.38  perseant     errout:
    420  1.38  perseant 	/*
    421  1.38  perseant 	 * Put the new inum back on the free list.
    422  1.38  perseant 	 */
    423  1.38  perseant 	LFS_IENTRY(ifp, fs, new_ino, bp);
    424  1.38  perseant 	ifp->if_daddr = LFS_UNUSED_DADDR;
    425  1.48  perseant 	LFS_GET_HEADFREE(fs, cip, cbp, &(ifp->if_nextfree));
    426  1.48  perseant 	LFS_PUT_HEADFREE(fs, cip, cbp, new_ino);
    427  1.43  perseant 	(void) VOP_BWRITE(bp); /* Ifile */
    428  1.38  perseant 
    429  1.44  perseant 	*vpp = NULLVP;
    430  1.38  perseant 	return (error);
    431   1.1   mycroft }
    432   1.1   mycroft 
    433   1.1   mycroft /* Create a new vnode/inode pair and initialize what fields we can. */
    434  1.40      fvdl void
    435  1.48  perseant lfs_vcreate(struct mount *mp, ino_t ino, struct vnode *vp)
    436   1.1   mycroft {
    437   1.1   mycroft 	struct inode *ip;
    438   1.1   mycroft 	struct ufsmount *ump;
    439   1.4        pk #ifdef QUOTA
    440   1.4        pk 	int i;
    441   1.4        pk #endif
    442  1.17  perseant 
    443   1.1   mycroft 	/* Get a pointer to the private mount structure. */
    444   1.1   mycroft 	ump = VFSTOUFS(mp);
    445  1.17  perseant 
    446   1.1   mycroft 	/* Initialize the inode. */
    447  1.15   thorpej 	ip = pool_get(&lfs_inode_pool, PR_WAITOK);
    448  1.40      fvdl 	vp->v_data = ip;
    449  1.40      fvdl 	ip->i_vnode = vp;
    450   1.1   mycroft 	ip->i_devvp = ump->um_devvp;
    451   1.1   mycroft 	ip->i_dev = ump->um_dev;
    452   1.8    bouyer 	ip->i_number = ip->i_din.ffs_din.di_inumber = ino;
    453   1.1   mycroft 	ip->i_lfs = ump->um_lfs;
    454   1.1   mycroft #ifdef QUOTA
    455   1.1   mycroft 	for (i = 0; i < MAXQUOTAS; i++)
    456   1.1   mycroft 		ip->i_dquot[i] = NODQUOT;
    457   1.1   mycroft #endif
    458   1.1   mycroft 	ip->i_lockf = 0;
    459   1.1   mycroft 	ip->i_diroff = 0;
    460   1.8    bouyer 	ip->i_ffs_mode = 0;
    461   1.8    bouyer 	ip->i_ffs_size = 0;
    462   1.8    bouyer 	ip->i_ffs_blocks = 0;
    463  1.41  perseant 	ip->i_lfs_effnblks = 0;
    464  1.42  perseant 	ip->i_flag = 0;
    465  1.48  perseant 	/* Why was IN_MODIFIED ever set here? */
    466  1.48  perseant 	/* LFS_SET_UINO(ip, IN_CHANGE | IN_MODIFIED); */
    467   1.1   mycroft }
    468   1.1   mycroft 
    469   1.1   mycroft /* Free an inode. */
    470   1.1   mycroft /* ARGUSED */
    471  1.43  perseant /* VOP_BWRITE 2i times */
    472   1.1   mycroft int
    473  1.48  perseant lfs_vfree(void *v)
    474   1.3  christos {
    475   1.1   mycroft 	struct vop_vfree_args /* {
    476  1.17  perseant 				 struct vnode *a_pvp;
    477  1.17  perseant 				 ino_t a_ino;
    478  1.17  perseant 				 int a_mode;
    479  1.17  perseant 				 } */ *ap = v;
    480   1.1   mycroft 	SEGUSE *sup;
    481  1.48  perseant 	CLEANERINFO *cip;
    482  1.48  perseant 	struct buf *cbp, *bp;
    483   1.1   mycroft 	struct ifile *ifp;
    484   1.1   mycroft 	struct inode *ip;
    485  1.30  perseant 	struct vnode *vp;
    486   1.1   mycroft 	struct lfs *fs;
    487  1.11      fvdl 	ufs_daddr_t old_iaddr;
    488  1.48  perseant 	ino_t ino, otail;
    489  1.30  perseant 	extern int lfs_dirvcount;
    490  1.17  perseant 
    491   1.1   mycroft 	/* Get the inode number and file system. */
    492  1.30  perseant 	vp = ap->a_pvp;
    493  1.30  perseant 	ip = VTOI(vp);
    494   1.1   mycroft 	fs = ip->i_lfs;
    495   1.1   mycroft 	ino = ip->i_number;
    496  1.34  perseant 
    497  1.48  perseant 	/* Drain of pending writes */
    498  1.48  perseant 	if (fs->lfs_version > 1 && WRITEINPROG(vp))
    499  1.34  perseant 		tsleep(vp, (PRIBIO+1), "lfs_vfree", 0);
    500  1.48  perseant 
    501  1.48  perseant 	if (fs->lfs_version == 1)
    502  1.48  perseant 		lfs_seglock(fs, SEGM_PROT);
    503  1.48  perseant 	else
    504  1.48  perseant 		lockmgr(&fs->lfs_freelock, LK_EXCLUSIVE, 0);
    505  1.17  perseant 
    506  1.30  perseant 	if(vp->v_flag & VDIROP) {
    507  1.30  perseant 		--lfs_dirvcount;
    508  1.30  perseant 		vp->v_flag &= ~VDIROP;
    509  1.30  perseant 		wakeup(&lfs_dirvcount);
    510  1.30  perseant 		lfs_vunref(vp);
    511  1.38  perseant 	}
    512  1.38  perseant 	if (ip->i_flag & IN_ADIROP) {
    513  1.38  perseant 		--fs->lfs_nadirop;
    514  1.38  perseant 		ip->i_flag &= ~IN_ADIROP;
    515  1.30  perseant 	}
    516  1.30  perseant 
    517  1.42  perseant 	LFS_CLR_UINO(ip, IN_ACCESSED|IN_CLEANING|IN_MODIFIED);
    518  1.33  perseant 	ip->i_flag &= ~IN_ALLMOD;
    519  1.42  perseant 
    520   1.1   mycroft 	/*
    521   1.1   mycroft 	 * Set the ifile's inode entry to unused, increment its version number
    522  1.48  perseant 	 * and link it onto the free chain.
    523   1.1   mycroft 	 */
    524   1.1   mycroft 	LFS_IENTRY(ifp, fs, ino, bp);
    525   1.1   mycroft 	old_iaddr = ifp->if_daddr;
    526   1.1   mycroft 	ifp->if_daddr = LFS_UNUSED_DADDR;
    527   1.1   mycroft 	++ifp->if_version;
    528  1.48  perseant 	if (fs->lfs_version == 1) {
    529  1.48  perseant 		LFS_GET_HEADFREE(fs, cip, cbp, &(ifp->if_nextfree));
    530  1.48  perseant 		LFS_PUT_HEADFREE(fs, cip, cbp, ino);
    531  1.48  perseant 		(void) VOP_BWRITE(bp); /* Ifile */
    532  1.48  perseant 	} else {
    533  1.48  perseant 		ifp->if_nextfree = LFS_UNUSED_INUM;
    534  1.48  perseant 		/*
    535  1.48  perseant 		 * XXX Writing the freed node here means that it might not
    536  1.48  perseant 		 * XXX make it into the free list in the event of a crash
    537  1.48  perseant 		 * XXX (the ifile could be written before the rest of this
    538  1.48  perseant 		 * XXX completes).
    539  1.48  perseant 		 */
    540  1.48  perseant 		(void) VOP_BWRITE(bp); /* Ifile */
    541  1.48  perseant 		LFS_GET_TAILFREE(fs, cip, cbp, &otail);
    542  1.48  perseant 		LFS_IENTRY(ifp, fs, otail, bp);
    543  1.48  perseant 		ifp->if_nextfree = ino;
    544  1.48  perseant 		VOP_BWRITE(bp);
    545  1.48  perseant 		LFS_PUT_TAILFREE(fs, cip, cbp, ino);
    546  1.48  perseant 	}
    547  1.17  perseant #ifdef DIAGNOSTIC
    548  1.48  perseant 	if(ino == LFS_UNUSED_INUM) {
    549  1.17  perseant 		panic("inode 0 freed");
    550  1.17  perseant 	}
    551  1.17  perseant #endif /* DIAGNOSTIC */
    552   1.1   mycroft 	if (old_iaddr != LFS_UNUSED_DADDR) {
    553  1.48  perseant 		LFS_SEGENTRY(sup, fs, dtosn(fs, old_iaddr), bp);
    554  1.22  perseant #ifdef DIAGNOSTIC
    555  1.17  perseant 		if (sup->su_nbytes < DINODE_SIZE) {
    556  1.43  perseant 			printf("lfs_vfree: negative byte count"
    557  1.43  perseant 			       " (segment %d short by %d)\n",
    558  1.48  perseant 			       dtosn(fs, old_iaddr),
    559  1.43  perseant 			       (int)DINODE_SIZE - sup->su_nbytes);
    560  1.22  perseant 			panic("lfs_vfree: negative byte count");
    561  1.17  perseant 			sup->su_nbytes = DINODE_SIZE;
    562  1.17  perseant 		}
    563  1.22  perseant #endif
    564  1.16   thorpej 		sup->su_nbytes -= DINODE_SIZE;
    565  1.43  perseant 		(void) VOP_BWRITE(bp); /* Ifile */
    566   1.1   mycroft 	}
    567  1.17  perseant 
    568   1.1   mycroft 	/* Set superblock modified bit and decrement file count. */
    569   1.1   mycroft 	fs->lfs_fmod = 1;
    570   1.1   mycroft 	--fs->lfs_nfiles;
    571  1.17  perseant 
    572  1.48  perseant 	if (fs->lfs_version == 1)
    573  1.48  perseant 		lfs_segunlock(fs);
    574  1.48  perseant 	else
    575  1.48  perseant 		lockmgr(&fs->lfs_freelock, LK_RELEASE, 0);
    576   1.1   mycroft 	return (0);
    577   1.1   mycroft }
    578