Home | History | Annotate | Line # | Download | only in lfs
lfs_subr.c revision 1.22.2.1
      1  1.22.2.1   gehenna /*	$NetBSD: lfs_subr.c,v 1.22.2.1 2002/05/30 13:52:43 gehenna Exp $	*/
      2       1.2       cgd 
      3       1.8  perseant /*-
      4      1.17  perseant  * Copyright (c) 1999, 2000 The NetBSD Foundation, Inc.
      5       1.8  perseant  * All rights reserved.
      6       1.8  perseant  *
      7       1.8  perseant  * This code is derived from software contributed to The NetBSD Foundation
      8       1.8  perseant  * by Konrad E. Schroder <perseant (at) hhhh.org>.
      9       1.8  perseant  *
     10       1.8  perseant  * Redistribution and use in source and binary forms, with or without
     11       1.8  perseant  * modification, are permitted provided that the following conditions
     12       1.8  perseant  * are met:
     13       1.8  perseant  * 1. Redistributions of source code must retain the above copyright
     14       1.8  perseant  *    notice, this list of conditions and the following disclaimer.
     15       1.8  perseant  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.8  perseant  *    notice, this list of conditions and the following disclaimer in the
     17       1.8  perseant  *    documentation and/or other materials provided with the distribution.
     18       1.8  perseant  * 3. All advertising materials mentioning features or use of this software
     19       1.8  perseant  *    must display the following acknowledgement:
     20       1.8  perseant  *      This product includes software developed by the NetBSD
     21       1.8  perseant  *      Foundation, Inc. and its contributors.
     22       1.8  perseant  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.8  perseant  *    contributors may be used to endorse or promote products derived
     24       1.8  perseant  *    from this software without specific prior written permission.
     25       1.8  perseant  *
     26       1.8  perseant  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.8  perseant  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.8  perseant  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.8  perseant  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.8  perseant  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.8  perseant  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.8  perseant  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.8  perseant  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.8  perseant  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.8  perseant  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.8  perseant  * POSSIBILITY OF SUCH DAMAGE.
     37       1.8  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.6      fvdl  *	@(#)lfs_subr.c	8.4 (Berkeley) 5/8/95
     71       1.1   mycroft  */
     72      1.20     lukem 
     73      1.20     lukem #include <sys/cdefs.h>
     74  1.22.2.1   gehenna __KERNEL_RCSID(0, "$NetBSD: lfs_subr.c,v 1.22.2.1 2002/05/30 13:52:43 gehenna Exp $");
     75       1.1   mycroft 
     76       1.1   mycroft #include <sys/param.h>
     77       1.3  christos #include <sys/systm.h>
     78       1.1   mycroft #include <sys/namei.h>
     79       1.1   mycroft #include <sys/vnode.h>
     80       1.1   mycroft #include <sys/buf.h>
     81       1.1   mycroft #include <sys/mount.h>
     82       1.1   mycroft #include <sys/malloc.h>
     83       1.1   mycroft #include <sys/proc.h>
     84       1.1   mycroft 
     85       1.1   mycroft #include <ufs/ufs/inode.h>
     86       1.1   mycroft #include <ufs/lfs/lfs.h>
     87       1.1   mycroft #include <ufs/lfs/lfs_extern.h>
     88       1.1   mycroft 
     89       1.1   mycroft /*
     90       1.1   mycroft  * Return buffer with the contents of block "offset" from the beginning of
     91       1.1   mycroft  * directory "ip".  If "res" is non-zero, fill it in with a pointer to the
     92       1.1   mycroft  * remaining space in the directory.
     93       1.1   mycroft  */
     94       1.1   mycroft int
     95      1.18  perseant lfs_blkatoff(void *v)
     96       1.3  christos {
     97       1.1   mycroft 	struct vop_blkatoff_args /* {
     98       1.1   mycroft 		struct vnode *a_vp;
     99       1.1   mycroft 		off_t a_offset;
    100       1.1   mycroft 		char **a_res;
    101       1.1   mycroft 		struct buf **a_bpp;
    102       1.8  perseant 		} */ *ap = v;
    103      1.13  augustss 	struct lfs *fs;
    104       1.1   mycroft 	struct inode *ip;
    105       1.1   mycroft 	struct buf *bp;
    106       1.6      fvdl 	ufs_daddr_t lbn;
    107       1.1   mycroft 	int bsize, error;
    108       1.8  perseant 
    109       1.1   mycroft 	ip = VTOI(ap->a_vp);
    110       1.1   mycroft 	fs = ip->i_lfs;
    111       1.1   mycroft 	lbn = lblkno(fs, ap->a_offset);
    112       1.6      fvdl 	bsize = blksize(fs, ip, lbn);
    113       1.8  perseant 
    114       1.1   mycroft 	*ap->a_bpp = NULL;
    115       1.3  christos 	if ((error = bread(ap->a_vp, lbn, bsize, NOCRED, &bp)) != 0) {
    116       1.1   mycroft 		brelse(bp);
    117       1.1   mycroft 		return (error);
    118       1.1   mycroft 	}
    119       1.1   mycroft 	if (ap->a_res)
    120       1.1   mycroft 		*ap->a_res = (char *)bp->b_data + blkoff(fs, ap->a_offset);
    121       1.1   mycroft 	*ap->a_bpp = bp;
    122       1.1   mycroft 	return (0);
    123       1.1   mycroft }
    124       1.1   mycroft 
    125       1.1   mycroft 
    126       1.1   mycroft /*
    127       1.1   mycroft  * lfs_seglock --
    128       1.1   mycroft  *	Single thread the segment writer.
    129       1.1   mycroft  */
    130       1.1   mycroft void
    131      1.18  perseant lfs_seglock(struct lfs *fs, unsigned long flags)
    132       1.1   mycroft {
    133       1.1   mycroft 	struct segment *sp;
    134       1.1   mycroft 	int s;
    135       1.8  perseant 
    136       1.7   thorpej 	if (fs->lfs_seglock) {
    137       1.1   mycroft 		if (fs->lfs_lockpid == curproc->p_pid) {
    138       1.1   mycroft 			++fs->lfs_seglock;
    139       1.1   mycroft 			fs->lfs_sp->seg_flags |= flags;
    140       1.1   mycroft 			return;
    141       1.1   mycroft 		} else while (fs->lfs_seglock)
    142       1.1   mycroft 			(void)tsleep(&fs->lfs_seglock, PRIBIO + 1,
    143       1.8  perseant 				     "lfs seglock", 0);
    144       1.7   thorpej 	}
    145       1.8  perseant 
    146       1.1   mycroft 	fs->lfs_seglock = 1;
    147       1.1   mycroft 	fs->lfs_lockpid = curproc->p_pid;
    148       1.8  perseant 
    149       1.1   mycroft 	sp = fs->lfs_sp = malloc(sizeof(struct segment), M_SEGMENT, M_WAITOK);
    150      1.18  perseant 	sp->bpp = malloc(((fs->lfs_sumsize - SEGSUM_SIZE(fs)) /
    151       1.8  perseant 			  sizeof(ufs_daddr_t) + 1) * sizeof(struct buf *),
    152       1.8  perseant 			 M_SEGMENT, M_WAITOK);
    153       1.1   mycroft 	sp->seg_flags = flags;
    154       1.1   mycroft 	sp->vp = NULL;
    155       1.1   mycroft 	(void) lfs_initseg(fs);
    156       1.8  perseant 
    157       1.1   mycroft 	/*
    158       1.1   mycroft 	 * Keep a cumulative count of the outstanding I/O operations.  If the
    159       1.1   mycroft 	 * disk drive catches up with us it could go to zero before we finish,
    160       1.1   mycroft 	 * so we artificially increment it by one until we've scheduled all of
    161       1.1   mycroft 	 * the writes we intend to do.
    162       1.1   mycroft 	 */
    163       1.1   mycroft 	s = splbio();
    164       1.1   mycroft 	++fs->lfs_iocount;
    165       1.1   mycroft 	splx(s);
    166       1.1   mycroft }
    167       1.8  perseant 
    168       1.1   mycroft /*
    169       1.1   mycroft  * lfs_segunlock --
    170       1.1   mycroft  *	Single thread the segment writer.
    171       1.1   mycroft  */
    172       1.1   mycroft void
    173      1.18  perseant lfs_segunlock(struct lfs *fs)
    174       1.1   mycroft {
    175       1.1   mycroft 	struct segment *sp;
    176       1.1   mycroft 	unsigned long sync, ckp;
    177       1.1   mycroft 	int s;
    178      1.22  perseant 	struct buf *bp;
    179  1.22.2.1   gehenna 	struct vnode *vp, *nvp;
    180      1.10  perseant 	struct mount *mp;
    181      1.10  perseant 	extern int lfs_dirvcount;
    182      1.22  perseant #ifdef LFS_MALLOC_SUMMARY
    183      1.22  perseant 	extern int locked_queue_count;
    184      1.22  perseant 	extern long locked_queue_bytes;
    185      1.22  perseant #endif
    186       1.8  perseant 
    187      1.15  perseant 	sp = fs->lfs_sp;
    188      1.15  perseant 
    189      1.15  perseant 	if (fs->lfs_seglock == 1 && !(sp->seg_flags & SEGM_PROT)) {
    190      1.10  perseant 
    191      1.10  perseant 		mp = fs->lfs_ivnode->v_mount;
    192      1.10  perseant 		/*
    193      1.10  perseant 		 * Go through and unmark all DIROP vnodes, possibly
    194      1.10  perseant 		 * calling VOP_INACTIVE (through vrele).  This is
    195      1.10  perseant 		 * delayed until now in order not to accidentally
    196      1.10  perseant 		 * write a DIROP node through lfs_flush.
    197      1.10  perseant 		 */
    198      1.10  perseant #ifndef LFS_NO_BACKVP_HACK
    199      1.10  perseant 	/* BEGIN HACK */
    200  1.22.2.1   gehenna #define	VN_OFFSET	(((caddr_t)&LIST_NEXT(vp, v_mntvnodes)) - (caddr_t)vp)
    201  1.22.2.1   gehenna #define	BACK_VP(VP)	((struct vnode *)(((caddr_t)(VP)->v_mntvnodes.le_prev) - VN_OFFSET))
    202  1.22.2.1   gehenna #define	BEG_OF_VLIST	((struct vnode *)(((caddr_t)&LIST_FIRST(&mp->mnt_vnodelist)) - VN_OFFSET))
    203      1.10  perseant 
    204      1.10  perseant 		/* Find last vnode. */
    205  1.22.2.1   gehenna 	loop:	for (vp = LIST_FIRST(&mp->mnt_vnodelist);
    206  1.22.2.1   gehenna 		     vp && LIST_NEXT(vp, v_mntvnodes) != NULL;
    207  1.22.2.1   gehenna 		     vp = LIST_NEXT(vp, v_mntvnodes));
    208  1.22.2.1   gehenna 		for (; vp && vp != BEG_OF_VLIST; vp = nvp) {
    209  1.22.2.1   gehenna 			nvp = BACK_VP(vp);
    210      1.10  perseant #else
    211      1.10  perseant 	loop:
    212  1.22.2.1   gehenna 		 for (vp = LIST_FIRST(&mp->mnt_vnodelist);
    213      1.10  perseant 		     vp != NULL;
    214  1.22.2.1   gehenna 		     vp = nvp) {
    215  1.22.2.1   gehenna 			nvp = LIST_NEXT(vp, v_mntvnodes);
    216      1.10  perseant #endif
    217      1.22  perseant 			if (vp->v_mount != mp) {
    218      1.22  perseant 				printf("lfs_segunlock: starting over\n");
    219      1.10  perseant 				goto loop;
    220      1.22  perseant 			}
    221      1.10  perseant 			if (vp->v_type == VNON)
    222      1.10  perseant 				continue;
    223      1.16  perseant 			if (lfs_vref(vp))
    224      1.16  perseant 				continue;
    225      1.16  perseant 			if (VOP_ISLOCKED(vp) &&
    226      1.16  perseant                             vp->v_lock.lk_lockholder != curproc->p_pid) {
    227      1.16  perseant 				lfs_vunref(vp);
    228      1.16  perseant 				continue;
    229      1.16  perseant 			}
    230      1.15  perseant 			if ((vp->v_flag & VDIROP) &&
    231      1.15  perseant 			    !(VTOI(vp)->i_flag & IN_ADIROP)) {
    232      1.10  perseant 				--lfs_dirvcount;
    233      1.10  perseant 				vp->v_flag &= ~VDIROP;
    234      1.10  perseant 				wakeup(&lfs_dirvcount);
    235      1.15  perseant 				fs->lfs_unlockvp = vp;
    236      1.16  perseant 				lfs_vunref(vp);
    237      1.15  perseant 				vrele(vp);
    238      1.15  perseant 				fs->lfs_unlockvp = NULL;
    239      1.16  perseant 			} else {
    240      1.16  perseant 				lfs_vunref(vp);
    241      1.10  perseant 			}
    242      1.10  perseant 		}
    243      1.15  perseant 	}
    244       1.1   mycroft 
    245      1.15  perseant 	if (fs->lfs_seglock == 1) {
    246       1.1   mycroft 		sync = sp->seg_flags & SEGM_SYNC;
    247       1.1   mycroft 		ckp = sp->seg_flags & SEGM_CKP;
    248       1.1   mycroft 		if (sp->bpp != sp->cbpp) {
    249       1.1   mycroft 			/* Free allocated segment summary */
    250      1.18  perseant 			fs->lfs_offset -= btofsb(fs, fs->lfs_sumsize);
    251      1.22  perseant 			bp = *sp->bpp;
    252      1.22  perseant #ifdef LFS_MALLOC_SUMMARY
    253      1.22  perseant 			lfs_freebuf(bp);
    254      1.22  perseant #else
    255      1.22  perseant 			s = splbio();
    256      1.22  perseant 			bremfree(bp);
    257      1.22  perseant 			bp->b_flags |= B_DONE|B_INVAL;
    258      1.22  perseant 			bp->b_flags &= ~B_DELWRI;
    259      1.22  perseant 			reassignbuf(bp,bp->b_vp);
    260  1.22.2.1   gehenna 			splx(s);
    261      1.22  perseant 			brelse(bp);
    262      1.22  perseant #endif
    263       1.1   mycroft 		} else
    264       1.5  christos 			printf ("unlock to 0 with no summary");
    265       1.8  perseant 
    266       1.1   mycroft 		free(sp->bpp, M_SEGMENT);
    267      1.18  perseant 		sp->bpp = NULL;
    268       1.1   mycroft 		free(sp, M_SEGMENT);
    269      1.18  perseant 		fs->lfs_sp = NULL;
    270       1.1   mycroft 
    271       1.1   mycroft 		/*
    272       1.1   mycroft 		 * If the I/O count is non-zero, sleep until it reaches zero.
    273       1.1   mycroft 		 * At the moment, the user's process hangs around so we can
    274       1.1   mycroft 		 * sleep.
    275       1.1   mycroft 		 */
    276       1.1   mycroft 		s = splbio();
    277      1.22  perseant 		if (--fs->lfs_iocount < LFS_THROTTLE)
    278      1.22  perseant 			wakeup(&fs->lfs_iocount);
    279      1.22  perseant 		if(fs->lfs_iocount == 0) {
    280      1.22  perseant 			lfs_countlocked(&locked_queue_count,
    281      1.22  perseant 					&locked_queue_bytes, "lfs_segunlock");
    282      1.22  perseant 			wakeup(&locked_queue_count);
    283      1.22  perseant 			wakeup(&fs->lfs_iocount);
    284      1.22  perseant 		}
    285       1.1   mycroft 		/*
    286       1.1   mycroft 		 * We let checkpoints happen asynchronously.  That means
    287       1.1   mycroft 		 * that during recovery, we have to roll forward between
    288       1.1   mycroft 		 * the two segments described by the first and second
    289       1.1   mycroft 		 * superblocks to make sure that the checkpoint described
    290       1.1   mycroft 		 * by a superblock completed.
    291       1.1   mycroft 		 */
    292       1.8  perseant 		while (sync && fs->lfs_iocount)
    293       1.8  perseant 			(void)tsleep(&fs->lfs_iocount, PRIBIO + 1,
    294       1.8  perseant 				     "lfs vflush", 0);
    295       1.1   mycroft 		splx(s);
    296       1.1   mycroft 		if (ckp) {
    297       1.1   mycroft 			fs->lfs_nactive = 0;
    298       1.8  perseant 			/* If we *know* everything's on disk, write both sbs */
    299      1.21       chs 			if (sync)
    300       1.8  perseant 				lfs_writesuper(fs,fs->lfs_sboffs[fs->lfs_activesb]);
    301       1.8  perseant 			fs->lfs_activesb = 1 - fs->lfs_activesb;
    302       1.8  perseant 			lfs_writesuper(fs,fs->lfs_sboffs[fs->lfs_activesb]);
    303       1.1   mycroft 		}
    304       1.1   mycroft 		--fs->lfs_seglock;
    305       1.1   mycroft 		fs->lfs_lockpid = 0;
    306       1.1   mycroft 		wakeup(&fs->lfs_seglock);
    307       1.1   mycroft 	} else if (fs->lfs_seglock == 0) {
    308       1.1   mycroft 		panic ("Seglock not held");
    309       1.1   mycroft 	} else {
    310       1.1   mycroft 		--fs->lfs_seglock;
    311       1.1   mycroft 	}
    312       1.1   mycroft }
    313