Home | History | Annotate | Line # | Download | only in lfs
lfs.h revision 1.23
      1  1.23  perseant /*	$NetBSD: lfs.h,v 1.23 2000/05/27 00:19:52 perseant Exp $	*/
      2   1.6   mycroft 
      3   1.1   mycroft /*-
      4  1.11  perseant  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5  1.11  perseant  * All rights reserved.
      6  1.11  perseant  *
      7  1.11  perseant  * This code is derived from software contributed to The NetBSD Foundation
      8  1.11  perseant  * by Konrad E. Schroder <perseant (at) hhhh.org>.
      9  1.11  perseant  *
     10  1.11  perseant  * Redistribution and use in source and binary forms, with or without
     11  1.11  perseant  * modification, are permitted provided that the following conditions
     12  1.11  perseant  * are met:
     13  1.11  perseant  * 1. Redistributions of source code must retain the above copyright
     14  1.11  perseant  *    notice, this list of conditions and the following disclaimer.
     15  1.11  perseant  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.11  perseant  *    notice, this list of conditions and the following disclaimer in the
     17  1.11  perseant  *    documentation and/or other materials provided with the distribution.
     18  1.11  perseant  * 3. All advertising materials mentioning features or use of this software
     19  1.11  perseant  *    must display the following acknowledgement:
     20  1.11  perseant  *      This product includes software developed by the NetBSD
     21  1.11  perseant  *      Foundation, Inc. and its contributors.
     22  1.11  perseant  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  1.11  perseant  *    contributors may be used to endorse or promote products derived
     24  1.11  perseant  *    from this software without specific prior written permission.
     25  1.11  perseant  *
     26  1.11  perseant  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  1.11  perseant  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  1.11  perseant  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  1.11  perseant  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  1.11  perseant  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  1.11  perseant  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  1.11  perseant  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  1.11  perseant  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  1.11  perseant  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  1.11  perseant  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  1.11  perseant  * POSSIBILITY OF SUCH DAMAGE.
     37  1.11  perseant  */
     38  1.11  perseant /*-
     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.9      fvdl  *	@(#)lfs.h	8.9 (Berkeley) 5/8/95
     71   1.1   mycroft  */
     72   1.1   mycroft 
     73  1.11  perseant /*
     74  1.11  perseant  * Compile-time options for LFS.
     75  1.11  perseant  */
     76  1.11  perseant #define LFS_EAGAIN_FAIL          /* markv fail with EAGAIN if ino is locked */
     77  1.14  perseant #define LFS_TRACK_IOS            /* attempt to avoid cleaning segments not yet fully written to disk */
     78  1.11  perseant #define LFS_CANNOT_ROLLFW       /* No roll-forward agent exists */
     79  1.11  perseant 
     80  1.11  perseant /* #define DEBUG_LFS */              /* Intensive debugging of LFS subsystem */
     81  1.11  perseant 
     82  1.11  perseant /* #define LFS_ATIME_IFILE */         /* Store atime in Ifile, don't push */
     83  1.11  perseant 
     84  1.11  perseant /*
     85  1.11  perseant  * Parameters and generic definitions
     86  1.11  perseant  */
     87  1.17  perseant #define BW_CLEAN	1
     88  1.17  perseant #define MIN_FREE_SEGS	4
     89  1.17  perseant #define LFS_MAX_ACTIVE	10
     90  1.17  perseant #define LFS_MAXDIROP	(desiredvnodes>>2)
     91  1.11  perseant 
     92  1.11  perseant #ifndef LFS_ATIME_IFILE
     93  1.11  perseant # define LFS_ITIMES(ip, acc, mod, cre) FFS_ITIMES((ip),(acc),(mod),(cre))
     94  1.11  perseant #else
     95  1.11  perseant # define LFS_ITIMES(ip, acc, mod, cre) {                                \
     96  1.11  perseant 	struct buf *ibp;						\
     97  1.11  perseant 	IFILE *ifp;							\
     98  1.11  perseant 									\
     99  1.11  perseant         if ((ip)->i_flag & IN_ACCESS) {                         	\
    100  1.11  perseant 	LFS_IENTRY(ifp, ip->i_lfs, ip->i_number, ibp);			\
    101  1.11  perseant        		ifp->if_atime = (mod);					\
    102  1.11  perseant        		VOP_BWRITE(bp);						\
    103  1.11  perseant 		(ip)->i_flag &= ~IN_ACCESS;				\
    104  1.11  perseant         }                                                       	\
    105  1.11  perseant         if ((ip)->i_flag & (IN_CHANGE | IN_UPDATE)) {       		\
    106  1.11  perseant                 (ip)->i_flag |= IN_MODIFIED;                            \
    107  1.11  perseant                 if ((ip)->i_flag & IN_UPDATE) {                         \
    108  1.11  perseant                         (ip)->i_ffs_mtime = (mod)->tv_sec;		\
    109  1.11  perseant                         (ip)->i_ffs_mtimensec = (mod)->tv_nsec;         \
    110  1.11  perseant                         (ip)->i_modrev++;                               \
    111  1.11  perseant                 }                                                       \
    112  1.11  perseant                 if ((ip)->i_flag & IN_CHANGE) {                         \
    113  1.11  perseant                         (ip)->i_ffs_ctime = (cre)->tv_sec;		\
    114  1.11  perseant                         (ip)->i_ffs_ctimensec = (cre)->tv_nsec;         \
    115  1.11  perseant                 }                                                       \
    116  1.11  perseant                 (ip)->i_flag &= ~(IN_CHANGE | IN_UPDATE);   		\
    117  1.11  perseant         }                                                               \
    118  1.11  perseant }
    119  1.11  perseant #endif
    120  1.11  perseant 
    121  1.11  perseant #define WRITEINPROG(vp) (vp->v_dirtyblkhd.lh_first && !(VTOI(vp)->i_flag & (IN_MODIFIED|IN_CLEANING)))
    122  1.11  perseant 
    123  1.11  perseant /* Here begins the berkeley code */
    124  1.11  perseant 
    125   1.1   mycroft #define	LFS_LABELPAD	8192		/* LFS label size */
    126   1.1   mycroft #define	LFS_SBPAD	8192		/* LFS superblock size */
    127   1.1   mycroft 
    128   1.1   mycroft /* On-disk and in-memory checkpoint segment usage structure. */
    129   1.1   mycroft typedef struct segusage SEGUSE;
    130   1.1   mycroft struct segusage {
    131   1.3       cgd 	u_int32_t su_nbytes;		/* number of live bytes */
    132   1.3       cgd 	u_int32_t su_lastmod;		/* SEGUSE last modified timestamp */
    133   1.3       cgd 	u_int16_t su_nsums;		/* number of summaries in segment */
    134   1.3       cgd 	u_int16_t su_ninos;		/* number of inode blocks in seg */
    135   1.5   mycroft 
    136   1.5   mycroft #define	SEGUSE_ACTIVE		0x01	/* segment is currently being written */
    137   1.5   mycroft #define	SEGUSE_DIRTY		0x02	/* segment has data in it */
    138   1.5   mycroft #define	SEGUSE_SUPERBLOCK	0x04	/* segment contains a superblock */
    139   1.3       cgd 	u_int32_t su_flags;
    140   1.1   mycroft };
    141   1.1   mycroft 
    142   1.1   mycroft #define	SEGUPB(fs)	(1 << (fs)->lfs_sushift)
    143   1.1   mycroft #define	SEGTABSIZE_SU(fs)						\
    144   1.1   mycroft 	(((fs)->lfs_nseg + SEGUPB(fs) - 1) >> (fs)->lfs_sushift)
    145   1.1   mycroft 
    146   1.1   mycroft /* On-disk file information.  One per file with data blocks in the segment. */
    147   1.1   mycroft typedef struct finfo FINFO;
    148   1.1   mycroft struct finfo {
    149   1.3       cgd 	u_int32_t fi_nblocks;		/* number of blocks */
    150   1.3       cgd 	u_int32_t fi_version;		/* version number */
    151   1.3       cgd 	u_int32_t fi_ino;		/* inode number */
    152   1.9      fvdl 	u_int32_t fi_lastlength;	/* length of last block in array */
    153   1.9      fvdl 	ufs_daddr_t	  fi_blocks[1];		/* array of logical block numbers */
    154   1.1   mycroft };
    155   1.1   mycroft 
    156  1.10        pk /* On-disk super block. */
    157  1.10        pk struct dlfs {
    158   1.1   mycroft #define	LFS_MAGIC	0x070162
    159  1.10        pk         u_int32_t dlfs_magic;     /* 0: magic number */
    160   1.1   mycroft #define	LFS_VERSION	1
    161  1.10        pk         u_int32_t dlfs_version;   /* 4: version number */
    162   1.1   mycroft 
    163  1.10        pk         u_int32_t dlfs_size;      /* 8: number of blocks in fs */
    164  1.10        pk         u_int32_t dlfs_ssize;     /* 12: number of blocks per segment */
    165  1.10        pk         u_int32_t dlfs_dsize;     /* 16: number of disk blocks in fs */
    166  1.10        pk         u_int32_t dlfs_bsize;     /* 20: file system block size */
    167  1.10        pk         u_int32_t dlfs_fsize;     /* 24: size of frag blocks in fs */
    168  1.10        pk         u_int32_t dlfs_frag;      /* 28: number of frags in a block in fs */
    169   1.1   mycroft 
    170   1.1   mycroft /* Checkpoint region. */
    171  1.18    simonb         u_int32_t dlfs_free;      /* 32: start of the free list */
    172  1.10        pk         u_int32_t dlfs_bfree;     /* 36: number of free disk blocks */
    173  1.10        pk         u_int32_t dlfs_nfiles;    /* 40: number of allocated inodes */
    174  1.10        pk         int32_t   dlfs_avail;     /* 44: blocks available for writing */
    175  1.10        pk         u_int32_t dlfs_uinodes;   /* 48: inodes in cache not yet on disk */
    176  1.10        pk         ufs_daddr_t  dlfs_idaddr; /* 52: inode file disk address */
    177  1.18    simonb         u_int32_t dlfs_ifile;     /* 56: inode file inode number */
    178  1.10        pk         ufs_daddr_t  dlfs_lastseg; /* 60: address of last segment written */
    179  1.10        pk         ufs_daddr_t  dlfs_nextseg; /* 64: address of next segment to write */
    180  1.10        pk         ufs_daddr_t  dlfs_curseg; /* 68: current segment being written */
    181  1.10        pk         ufs_daddr_t  dlfs_offset; /* 72: offset in curseg for next partial */
    182  1.10        pk         ufs_daddr_t  dlfs_lastpseg; /* 76: address of last partial written */
    183  1.10        pk         u_int32_t dlfs_tstamp;    /* 80: time stamp */
    184   1.1   mycroft 
    185   1.1   mycroft /* These are configuration parameters. */
    186  1.10        pk         u_int32_t dlfs_minfree;   /* 84: minimum percentage of free blocks */
    187   1.1   mycroft 
    188   1.1   mycroft /* These fields can be computed from the others. */
    189  1.10        pk         u_int64_t dlfs_maxfilesize; /* 88: maximum representable file size */
    190  1.10        pk         u_int32_t dlfs_dbpseg;    /* 96: disk blocks per segment */
    191  1.10        pk         u_int32_t dlfs_inopb;     /* 100: inodes per block */
    192  1.10        pk         u_int32_t dlfs_ifpb;      /* 104: IFILE entries per block */
    193  1.10        pk         u_int32_t dlfs_sepb;      /* 108: SEGUSE entries per block */
    194  1.10        pk         u_int32_t dlfs_nindir;    /* 112: indirect pointers per block */
    195  1.10        pk         u_int32_t dlfs_nseg;      /* 116: number of segments */
    196  1.10        pk         u_int32_t dlfs_nspf;      /* 120: number of sectors per fragment */
    197  1.10        pk         u_int32_t dlfs_cleansz;   /* 124: cleaner info size in blocks */
    198  1.10        pk         u_int32_t dlfs_segtabsz;  /* 128: segment table size in blocks */
    199  1.10        pk         u_int32_t dlfs_segmask;   /* 132: calculate offset within a segment */
    200  1.10        pk         u_int32_t dlfs_segshift;  /* 136: fast mult/div for segments */
    201  1.10        pk         u_int32_t dlfs_bshift;    /* 140: calc block number from file offset */
    202  1.10        pk         u_int32_t dlfs_ffshift;   /* 144: fast mult/div for frag from file */
    203  1.10        pk         u_int32_t dlfs_fbshift;   /* 148: fast mult/div for frag from block */
    204  1.10        pk         u_int64_t dlfs_bmask;     /* 152: calc block offset from file offset */
    205  1.10        pk         u_int64_t dlfs_ffmask;    /* 160: calc frag offset from file offset */
    206  1.10        pk         u_int64_t dlfs_fbmask;    /* 168: calc frag offset from block offset */
    207  1.10        pk         u_int32_t dlfs_fsbtodb;   /* 176: fsbtodb and dbtofsb shift constant */
    208  1.10        pk         u_int32_t dlfs_sushift;   /* 180: fast mult/div for segusage table */
    209   1.3       cgd 
    210  1.10        pk         int32_t   dlfs_maxsymlinklen; /* 184: max length of an internal symlink */
    211   1.1   mycroft 
    212  1.11  perseant #define	LFS_MIN_SBINTERVAL	5  /* minimum superblock segment spacing */
    213  1.10        pk #define LFS_MAXNUMSB            10 /* 188: superblock disk offsets */
    214  1.10        pk         ufs_daddr_t       dlfs_sboffs[LFS_MAXNUMSB];
    215   1.3       cgd 
    216  1.11  perseant 	u_int32_t dlfs_nclean;    /* 228: Number of clean segments */
    217  1.11  perseant 	u_char	  dlfs_fsmnt[MNAMELEN];	 /* 232: name mounted on */
    218  1.11  perseant 	/* XXX this is 2 bytes only to pad to a quad boundary */
    219  1.11  perseant 	u_int16_t dlfs_clean;     /* 322: file system is clean flag */
    220  1.13  perseant         int8_t    dlfs_pad[184];  /* 324: round to 512 bytes */
    221   1.5   mycroft /* Checksum -- last valid disk field. */
    222  1.13  perseant         u_int32_t dlfs_cksum;     /* 328: checksum for superblock checking */
    223  1.10        pk };
    224   1.1   mycroft 
    225  1.11  perseant /* Maximum number of io's we can have pending at once */
    226  1.11  perseant #define LFS_THROTTLE  16 /* XXX should be better paramtrized - ? */
    227  1.11  perseant 
    228  1.10        pk /* In-memory super block. */
    229  1.10        pk struct lfs {
    230  1.10        pk         struct dlfs lfs_dlfs;           /* on-disk parameters */
    231  1.10        pk #define lfs_magic lfs_dlfs.dlfs_magic
    232  1.10        pk #define lfs_version lfs_dlfs.dlfs_version
    233  1.10        pk #define lfs_size lfs_dlfs.dlfs_size
    234  1.10        pk #define lfs_ssize lfs_dlfs.dlfs_ssize
    235  1.10        pk #define lfs_dsize lfs_dlfs.dlfs_dsize
    236  1.10        pk #define lfs_bsize lfs_dlfs.dlfs_bsize
    237  1.10        pk #define lfs_fsize lfs_dlfs.dlfs_fsize
    238  1.10        pk #define lfs_frag lfs_dlfs.dlfs_frag
    239  1.10        pk #define lfs_free lfs_dlfs.dlfs_free
    240  1.10        pk #define lfs_bfree lfs_dlfs.dlfs_bfree
    241  1.10        pk #define lfs_nfiles lfs_dlfs.dlfs_nfiles
    242  1.10        pk #define lfs_avail lfs_dlfs.dlfs_avail
    243  1.10        pk #define lfs_uinodes lfs_dlfs.dlfs_uinodes
    244  1.10        pk #define lfs_idaddr lfs_dlfs.dlfs_idaddr
    245  1.10        pk #define lfs_ifile lfs_dlfs.dlfs_ifile
    246  1.10        pk #define lfs_lastseg lfs_dlfs.dlfs_lastseg
    247  1.10        pk #define lfs_nextseg lfs_dlfs.dlfs_nextseg
    248  1.10        pk #define lfs_curseg lfs_dlfs.dlfs_curseg
    249  1.10        pk #define lfs_offset lfs_dlfs.dlfs_offset
    250  1.10        pk #define lfs_lastpseg lfs_dlfs.dlfs_lastpseg
    251  1.10        pk #define lfs_tstamp lfs_dlfs.dlfs_tstamp
    252  1.10        pk #define lfs_minfree lfs_dlfs.dlfs_minfree
    253  1.10        pk #define lfs_maxfilesize lfs_dlfs.dlfs_maxfilesize
    254  1.10        pk #define lfs_dbpseg lfs_dlfs.dlfs_dbpseg
    255  1.10        pk #define lfs_inopb lfs_dlfs.dlfs_inopb
    256  1.10        pk #define lfs_ifpb lfs_dlfs.dlfs_ifpb
    257  1.10        pk #define lfs_sepb lfs_dlfs.dlfs_sepb
    258  1.10        pk #define lfs_nindir lfs_dlfs.dlfs_nindir
    259  1.10        pk #define lfs_nseg lfs_dlfs.dlfs_nseg
    260  1.10        pk #define lfs_nspf lfs_dlfs.dlfs_nspf
    261  1.10        pk #define lfs_cleansz lfs_dlfs.dlfs_cleansz
    262  1.10        pk #define lfs_segtabsz lfs_dlfs.dlfs_segtabsz
    263  1.10        pk #define lfs_segmask lfs_dlfs.dlfs_segmask
    264  1.10        pk #define lfs_segshift lfs_dlfs.dlfs_segshift
    265  1.10        pk #define lfs_bmask lfs_dlfs.dlfs_bmask
    266  1.10        pk #define lfs_bshift lfs_dlfs.dlfs_bshift
    267  1.10        pk #define lfs_ffmask lfs_dlfs.dlfs_ffmask
    268  1.10        pk #define lfs_ffshift lfs_dlfs.dlfs_ffshift
    269  1.10        pk #define lfs_fbmask lfs_dlfs.dlfs_fbmask
    270  1.10        pk #define lfs_fbshift lfs_dlfs.dlfs_fbshift
    271  1.10        pk #define lfs_fsbtodb lfs_dlfs.dlfs_fsbtodb
    272  1.10        pk #define lfs_sushift lfs_dlfs.dlfs_sushift
    273  1.10        pk #define lfs_maxsymlinklen lfs_dlfs.dlfs_maxsymlinklen
    274  1.10        pk #define lfs_sboffs lfs_dlfs.dlfs_sboffs
    275  1.10        pk #define lfs_cksum lfs_dlfs.dlfs_cksum
    276  1.11  perseant #define lfs_clean lfs_dlfs.dlfs_clean
    277  1.11  perseant #define lfs_fsmnt lfs_dlfs.dlfs_fsmnt
    278  1.11  perseant #define lfs_nclean lfs_dlfs.dlfs_nclean
    279   1.1   mycroft /* These fields are set at mount time and are meaningless on disk. */
    280   1.5   mycroft 	struct segment *lfs_sp;		/* current segment being written */
    281   1.5   mycroft 	struct vnode *lfs_ivnode;	/* vnode for the ifile */
    282   1.8        is 	u_int32_t  lfs_seglock;		/* single-thread the segment writer */
    283   1.5   mycroft 	pid_t	  lfs_lockpid;		/* pid of lock holder */
    284   1.8        is 	u_int32_t lfs_iocount;		/* number of ios pending */
    285   1.8        is 	u_int32_t lfs_writer;		/* don't allow any dirops to start */
    286   1.8        is 	u_int32_t lfs_dirops;		/* count of active directory ops */
    287   1.8        is 	u_int32_t lfs_doifile;		/* Write ifile blocks on next write */
    288   1.8        is 	u_int32_t lfs_nactive;		/* Number of segments since last ckp */
    289   1.5   mycroft 	int8_t	  lfs_fmod;		/* super block modified flag */
    290   1.5   mycroft 	int8_t	  lfs_ronly;		/* mounted read-only flag */
    291   1.5   mycroft 	int8_t	  lfs_flags;		/* currently unused flag */
    292  1.11  perseant 	u_int16_t lfs_activesb;         /* toggle between superblocks */
    293  1.11  perseant #ifdef LFS_TRACK_IOS
    294  1.11  perseant 	daddr_t   lfs_pending[LFS_THROTTLE]; /* daddrs of pending writes */
    295  1.11  perseant #endif /* LFS_TRACK_IOS */
    296  1.11  perseant #ifdef LFS_CANNOT_ROLLFW
    297  1.11  perseant 	daddr_t   lfs_sbactive;         /* disk address of in-progress sb write */
    298  1.11  perseant #endif
    299  1.11  perseant 	struct vnode *lfs_flushvp;      /* vnode being flushed */
    300  1.21  perseant 	struct vnode *lfs_unlockvp;     /* being inactivated in lfs_segunlock */
    301  1.15  perseant 	u_int32_t lfs_diropwait;	/* # procs waiting on dirop flush */
    302  1.20  perseant 	struct lock lfs_freelock;
    303  1.23  perseant 	int       lfs_nadirop;		/* number of active dirop nodes */
    304   1.1   mycroft };
    305   1.1   mycroft 
    306   1.1   mycroft /*
    307   1.3       cgd  * Inode 0:	out-of-band inode number
    308   1.3       cgd  * Inode 1:	IFILE inode number
    309   1.3       cgd  * Inode 2:	root inode
    310   1.3       cgd  * Inode 3:	lost+found inode number
    311   1.1   mycroft  */
    312   1.1   mycroft #define	LFS_UNUSED_INUM	0		/* out of band inode number */
    313   1.1   mycroft #define	LFS_IFILE_INUM	1		/* IFILE inode number */
    314   1.1   mycroft #define	LOSTFOUNDINO	3		/* lost+found inode number */
    315   1.1   mycroft #define	LFS_FIRST_INUM	4		/* first free inode number */
    316   1.1   mycroft 
    317   1.1   mycroft /* Address calculations for metadata located in the inode */
    318   1.1   mycroft #define	S_INDIR(fs)	-NDADDR
    319   1.1   mycroft #define	D_INDIR(fs)	(S_INDIR(fs) - NINDIR(fs) - 1)
    320   1.1   mycroft #define	T_INDIR(fs)	(D_INDIR(fs) - NINDIR(fs) * NINDIR(fs) - 1)
    321   1.1   mycroft 
    322  1.21  perseant /* Unassigned disk addresses. */
    323   1.1   mycroft #define	UNASSIGNED	-1
    324  1.21  perseant #define UNWRITTEN       -2
    325   1.1   mycroft 
    326   1.1   mycroft /* Unused logical block number */
    327   1.1   mycroft #define LFS_UNUSED_LBN	-1
    328   1.1   mycroft 
    329   1.1   mycroft typedef struct ifile IFILE;
    330   1.1   mycroft struct ifile {
    331   1.3       cgd 	u_int32_t if_version;		/* inode version number */
    332   1.1   mycroft #define	LFS_UNUSED_DADDR	0	/* out-of-band daddr */
    333   1.9      fvdl 	ufs_daddr_t if_daddr;		/* inode disk address */
    334   1.3       cgd 	ino_t	  if_nextfree;		/* next-unallocated inode */
    335  1.11  perseant #ifdef LFS_ATIME_IFILE
    336  1.11  perseant 	struct timespec if_atime;	/* Last access time */
    337  1.11  perseant #endif
    338   1.1   mycroft };
    339   1.1   mycroft 
    340   1.1   mycroft /*
    341   1.1   mycroft  * Cleaner information structure.  This resides in the ifile and is used
    342   1.1   mycroft  * to pass information between the cleaner and the kernel.
    343   1.1   mycroft  */
    344   1.1   mycroft typedef struct _cleanerinfo {
    345   1.3       cgd 	u_int32_t clean;		/* K: number of clean segments */
    346   1.3       cgd 	u_int32_t dirty;		/* K: number of dirty segments */
    347   1.1   mycroft } CLEANERINFO;
    348   1.1   mycroft 
    349   1.1   mycroft #define	CLEANSIZE_SU(fs)						\
    350   1.1   mycroft 	((sizeof(CLEANERINFO) + (fs)->lfs_bsize - 1) >> (fs)->lfs_bshift)
    351   1.1   mycroft 
    352   1.1   mycroft /*
    353   1.1   mycroft  * All summary blocks are the same size, so we can always read a summary
    354   1.1   mycroft  * block easily from a segment.
    355   1.1   mycroft  */
    356   1.1   mycroft #define	LFS_SUMMARY_SIZE	512
    357   1.1   mycroft 
    358   1.1   mycroft /* On-disk segment summary information */
    359   1.1   mycroft typedef struct segsum SEGSUM;
    360   1.1   mycroft struct segsum {
    361   1.3       cgd 	u_int32_t ss_sumsum;		/* check sum of summary block */
    362   1.3       cgd 	u_int32_t ss_datasum;		/* check sum of data */
    363   1.9      fvdl 	u_int32_t ss_magic;		/* segment summary magic number */
    364   1.9      fvdl #define SS_MAGIC	0x061561
    365   1.9      fvdl 	ufs_daddr_t ss_next;		/* next segment */
    366   1.3       cgd 	u_int32_t ss_create;		/* creation time stamp */
    367   1.3       cgd 	u_int16_t ss_nfinfo;		/* number of file info structures */
    368   1.3       cgd 	u_int16_t ss_ninos;		/* number of inodes in summary */
    369   1.5   mycroft 
    370   1.1   mycroft #define	SS_DIROP	0x01		/* segment begins a dirop */
    371   1.1   mycroft #define	SS_CONT		0x02		/* more partials to finish this write*/
    372   1.3       cgd 	u_int16_t ss_flags;		/* used for directory operations */
    373   1.3       cgd 	u_int16_t ss_pad;		/* extra space */
    374   1.1   mycroft 	/* FINFO's and inode daddr's... */
    375   1.1   mycroft };
    376   1.1   mycroft 
    377   1.1   mycroft /* NINDIR is the number of indirects in a file system block. */
    378   1.1   mycroft #define	NINDIR(fs)	((fs)->lfs_nindir)
    379   1.1   mycroft 
    380   1.1   mycroft /* INOPB is the number of inodes in a secondary storage block. */
    381   1.1   mycroft #define	INOPB(fs)	((fs)->lfs_inopb)
    382   1.1   mycroft 
    383   1.9      fvdl #define	blksize(fs, ip, lbn) \
    384   1.9      fvdl 	(((lbn) >= NDADDR || (ip)->i_ffs_size >= ((lbn) + 1) << (fs)->lfs_bshift) \
    385   1.9      fvdl 	    ? (fs)->lfs_bsize \
    386   1.9      fvdl 	    : (fragroundup(fs, blkoff(fs, (ip)->i_ffs_size))))
    387   1.9      fvdl #define	blkoff(fs, loc)		((int)(loc) & (fs)->lfs_bmask)
    388   1.9      fvdl #define fragoff(fs, loc)    /* calculates (loc % fs->lfs_fsize) */ \
    389   1.9      fvdl     ((int)((loc) & (fs)->lfs_ffmask))
    390   1.1   mycroft #define	fsbtodb(fs, b)		((b) << (fs)->lfs_fsbtodb)
    391   1.1   mycroft #define	dbtofsb(fs, b)		((b) >> (fs)->lfs_fsbtodb)
    392   1.9      fvdl #define fragstodb(fs, b)	((b) << ((fs)->lfs_fsbtodb - (fs)->lfs_fbshift))
    393   1.9      fvdl #define dbtofrags(fs, b)	((b) >> ((fs)->lfs_fsbtodb - (fs)->lfs_fbshift))
    394   1.1   mycroft #define	lblkno(fs, loc)		((loc) >> (fs)->lfs_bshift)
    395   1.1   mycroft #define	lblktosize(fs, blk)	((blk) << (fs)->lfs_bshift)
    396   1.9      fvdl #define numfrags(fs, loc)	/* calculates (loc / fs->lfs_fsize) */	\
    397   1.9      fvdl 	((loc) >> (fs)->lfs_ffshift)
    398   1.9      fvdl #define blkroundup(fs, size)	/* calculates roundup(size, fs->lfs_bsize) */ \
    399   1.9      fvdl 	((int)(((size) + (fs)->lfs_bmask) & (~(fs)->lfs_bmask)))
    400   1.9      fvdl #define fragroundup(fs, size)	/* calculates roundup(size, fs->lfs_fsize) */ \
    401   1.9      fvdl 	((int)(((size) + (fs)->lfs_ffmask) & (~(fs)->lfs_ffmask)))
    402   1.9      fvdl #define fragstoblks(fs, frags)	/* calculates (frags / fs->lfs_frag) */ \
    403   1.9      fvdl 	((frags) >> (fs)->lfs_fbshift)
    404   1.9      fvdl #define blkstofrags(fs, blks)	/* calculates (blks * fs->lfs_frag) */ \
    405   1.9      fvdl 	((blks) << (fs)->lfs_fbshift)
    406   1.9      fvdl #define fragnum(fs, fsb)	/* calculates (fsb % fs->lfs_frag) */ \
    407   1.9      fvdl 	((fsb) & ((fs)->lfs_frag - 1))
    408   1.9      fvdl #define blknum(fs, fsb)		/* calculates rounddown(fsb, fs->lfs_frag) */ \
    409   1.9      fvdl 	((fsb) &~ ((fs)->lfs_frag - 1))
    410   1.9      fvdl #define dblksize(fs, dip, lbn) \
    411   1.9      fvdl 	(((lbn) >= NDADDR || (dip)->di_size >= ((lbn) + 1) << (fs)->lfs_bshift)\
    412   1.9      fvdl 	    ? (fs)->lfs_bsize \
    413   1.9      fvdl 	    : (fragroundup(fs, blkoff(fs, (dip)->di_size))))
    414   1.1   mycroft #define	datosn(fs, daddr)	/* disk address to segment number */	\
    415   1.1   mycroft 	(((daddr) - (fs)->lfs_sboffs[0]) / fsbtodb((fs), (fs)->lfs_ssize))
    416   1.1   mycroft #define sntoda(fs, sn) 		/* segment number to disk address */	\
    417   1.9      fvdl 	((ufs_daddr_t)((sn) * ((fs)->lfs_ssize << (fs)->lfs_fsbtodb) +	\
    418   1.1   mycroft 	    (fs)->lfs_sboffs[0]))
    419   1.1   mycroft 
    420   1.1   mycroft /* Read in the block with the cleaner info from the ifile. */
    421   1.1   mycroft #define LFS_CLEANERINFO(CP, F, BP) {					\
    422   1.1   mycroft 	VTOI((F)->lfs_ivnode)->i_flag |= IN_ACCESS;			\
    423   1.1   mycroft 	if (bread((F)->lfs_ivnode,					\
    424   1.9      fvdl 	    (ufs_daddr_t)0, (F)->lfs_bsize, NOCRED, &(BP)))		\
    425   1.1   mycroft 		panic("lfs: ifile read");				\
    426   1.1   mycroft 	(CP) = (CLEANERINFO *)(BP)->b_data;				\
    427   1.1   mycroft }
    428   1.1   mycroft 
    429   1.1   mycroft /* Read in the block with a specific inode from the ifile. */
    430   1.1   mycroft #define	LFS_IENTRY(IP, F, IN, BP) {					\
    431   1.1   mycroft 	int _e;								\
    432   1.1   mycroft 	VTOI((F)->lfs_ivnode)->i_flag |= IN_ACCESS;			\
    433   1.7  christos 	if ((_e = bread((F)->lfs_ivnode,				\
    434   1.1   mycroft 	    (IN) / (F)->lfs_ifpb + (F)->lfs_cleansz + (F)->lfs_segtabsz,\
    435   1.7  christos 	    (F)->lfs_bsize, NOCRED, &(BP))) != 0)			\
    436   1.1   mycroft 		panic("lfs: ifile read %d", _e);			\
    437   1.1   mycroft 	(IP) = (IFILE *)(BP)->b_data + (IN) % (F)->lfs_ifpb;		\
    438   1.1   mycroft }
    439   1.1   mycroft 
    440   1.1   mycroft /* Read in the block with a specific segment usage entry from the ifile. */
    441   1.1   mycroft #define	LFS_SEGENTRY(SP, F, IN, BP) {					\
    442   1.1   mycroft 	int _e;								\
    443   1.1   mycroft 	VTOI((F)->lfs_ivnode)->i_flag |= IN_ACCESS;			\
    444   1.7  christos 	if ((_e = bread((F)->lfs_ivnode,				\
    445   1.1   mycroft 	    ((IN) >> (F)->lfs_sushift) + (F)->lfs_cleansz,		\
    446   1.7  christos 	    (F)->lfs_bsize, NOCRED, &(BP))) != 0)			\
    447   1.1   mycroft 		panic("lfs: ifile read: %d", _e);			\
    448   1.7  christos 	(SP) = (SEGUSE *)(BP)->b_data + ((IN) & ((F)->lfs_sepb - 1));	\
    449   1.1   mycroft }
    450   1.1   mycroft 
    451   1.1   mycroft /* Determine if a buffer belongs to the ifile */
    452   1.1   mycroft #define IS_IFILE(bp)	(VTOI(bp->b_vp)->i_number == LFS_IFILE_INUM)
    453   1.1   mycroft 
    454   1.1   mycroft /*
    455   1.1   mycroft  * Structures used by lfs_bmapv and lfs_markv to communicate information
    456   1.1   mycroft  * about inodes and data blocks.
    457   1.1   mycroft  */
    458   1.1   mycroft typedef struct block_info {
    459   1.1   mycroft 	ino_t	bi_inode;		/* inode # */
    460   1.9      fvdl 	ufs_daddr_t bi_lbn;		/* logical block w/in file */
    461   1.9      fvdl 	ufs_daddr_t bi_daddr;		/* disk address of block */
    462   1.1   mycroft 	time_t	bi_segcreate;		/* origin segment create time */
    463   1.1   mycroft 	int	bi_version;		/* file version number */
    464   1.1   mycroft 	void	*bi_bp;			/* data buffer */
    465   1.9      fvdl 	int     bi_size;		/* size of the block (if fragment) */
    466   1.1   mycroft } BLOCK_INFO;
    467   1.1   mycroft 
    468   1.1   mycroft /* In-memory description of a segment about to be written. */
    469   1.1   mycroft struct segment {
    470   1.5   mycroft 	struct lfs	 *fs;		/* file system pointer */
    471   1.1   mycroft 	struct buf	**bpp;		/* pointer to buffer array */
    472   1.1   mycroft 	struct buf	**cbpp;		/* pointer to next available bp */
    473   1.1   mycroft 	struct buf	**start_bpp;	/* pointer to first bp in this set */
    474   1.5   mycroft 	struct buf	 *ibp;		/* buffer pointer to inode page */
    475  1.16  perseant 	struct dinode    *idp;          /* pointer to ifile dinode */
    476   1.5   mycroft 	struct finfo	 *fip;		/* current fileinfo pointer */
    477   1.5   mycroft 	struct vnode	 *vp;		/* vnode being gathered */
    478   1.3       cgd 	void	 *segsum;		/* segment summary info */
    479   1.3       cgd 	u_int32_t ninodes;		/* number of inodes in this segment */
    480   1.3       cgd 	u_int32_t seg_bytes_left;	/* bytes left in segment */
    481   1.3       cgd 	u_int32_t sum_bytes_left;	/* bytes left in summary block */
    482   1.3       cgd 	u_int32_t seg_number;		/* number of this segment */
    483   1.9      fvdl 	ufs_daddr_t *start_lbp;		/* beginning lbn for this set */
    484   1.5   mycroft 
    485   1.1   mycroft #define	SEGM_CKP	0x01		/* doing a checkpoint */
    486   1.1   mycroft #define	SEGM_CLEAN	0x02		/* cleaner call; don't sort */
    487   1.1   mycroft #define	SEGM_SYNC	0x04		/* wait for segment */
    488   1.5   mycroft 	u_int16_t seg_flags;		/* run-time flags for this segment */
    489   1.1   mycroft };
    490   1.1   mycroft 
    491   1.1   mycroft #define ISSPACE(F, BB, C)						\
    492   1.1   mycroft 	(((C)->cr_uid == 0 && (F)->lfs_bfree >= (BB)) ||		\
    493   1.1   mycroft 	((C)->cr_uid != 0 && IS_FREESPACE(F, BB)))
    494   1.1   mycroft 
    495   1.1   mycroft #define IS_FREESPACE(F, BB)						\
    496   1.1   mycroft 	((F)->lfs_bfree > ((F)->lfs_dsize * (F)->lfs_minfree / 100 + (BB)))
    497   1.1   mycroft 
    498   1.1   mycroft #define ISSPACE_XXX(F, BB)						\
    499   1.1   mycroft 	((F)->lfs_bfree >= (BB))
    500   1.1   mycroft 
    501   1.1   mycroft /* Statistics Counters */
    502   1.1   mycroft struct lfs_stats {
    503   1.5   mycroft 	u_int	segsused;
    504   1.5   mycroft 	u_int	psegwrites;
    505   1.5   mycroft 	u_int	psyncwrites;
    506   1.5   mycroft 	u_int	pcleanwrites;
    507   1.5   mycroft 	u_int	blocktot;
    508   1.5   mycroft 	u_int	cleanblocks;
    509   1.5   mycroft 	u_int	ncheckpoints;
    510   1.5   mycroft 	u_int	nwrites;
    511   1.5   mycroft 	u_int	nsync_writes;
    512   1.5   mycroft 	u_int	wait_exceeded;
    513   1.5   mycroft 	u_int	write_exceeded;
    514   1.5   mycroft 	u_int	flush_invoked;
    515  1.11  perseant 	u_int	vflush_invoked;
    516   1.1   mycroft };
    517   1.1   mycroft extern struct lfs_stats lfs_stats;
    518