7b9b3aad92f2f987be01d516f141db3d8884eeb9
[dragonfly.git] / sys / gnu / vfs / ext2fs / inode.h
1 /*-
2  * Copyright (c) 1982, 1989, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *      @(#)inode.h     8.9 (Berkeley) 5/14/95
39  * $FreeBSD: src/sys/ufs/ufs/inode.h,v 1.28.2.2 2001/09/29 12:52:52 iedowse Exp $
40  */
41
42 #ifndef _VFS_GNU_EXT2FS_INODE_H_
43 #define _VFS_GNU_EXT2FS_INODE_H_
44
45 #if defined(_KERNEL) || defined(_KERNEL_STRUCTURES)
46
47 #ifndef _SYS_LOCK_H_
48 #include <sys/lock.h>
49 #endif
50 #ifndef _SYS_LOCKF_H
51 #include <sys/lockf.h>
52 #endif
53
54 #endif
55
56 #ifndef _SYS_QUEUE_H_
57 #include <sys/queue.h>
58 #endif
59 #include "dinode.h"
60 #include "dir.h"
61
62 #if defined(_KERNEL) || defined(_KERNEL_STRUCTURES)
63
64 /*
65  * An EXT2FS inode is basically a UFS inode with some spare fields
66  * redefined and a different superblock structure.
67  */
68 struct inode {
69         struct inode    *i_next;/* Hash chain */
70         struct  vnode  *i_vnode;/* Vnode associated with this inode. */
71         struct  vnode  *i_devvp;/* Vnode for block I/O. */
72         uint32_t i_flag;        /* flags, see below */
73         cdev_t    i_dev;        /* Device associated with the inode. */
74         ino_t     i_number;     /* The identity of the inode. */
75         int       i_effnlink;   /* i_nlink when I/O completes */
76
77         struct  ext2_sb_info *i_e2fs;   /* EXT2FS */
78         struct   ext2_dquot *i_dquot[MAXQUOTAS]; /* Dquot structures. */
79         u_quad_t i_modrev;      /* Revision level for NFS lease. */
80         struct   lockf i_lockf;/* Head of byte-level lock list. */
81         /*
82          * Side effects; used during directory lookup.
83          */
84         int32_t   i_count;      /* Size of free slot in directory. */
85         doff_t    i_endoff;     /* End of useful stuff in directory. */
86         doff_t    i_diroff;     /* Offset in dir, where we found last entry. */
87         doff_t    i_offset;     /* Offset of free space in directory. */
88         ino_t     i_ino;        /* Inode number of found directory. */
89         uint32_t i_reclen;      /* Size of found directory entry. */
90         uint32_t i_spare[3];    /* XXX actually non-spare (for ext2fs). */
91
92         struct dirhash *i_dirhash; /* Hashing for large directories */
93         /*
94          * The on-disk dinode itself (128 bytes)
95          */
96         struct  ext2_dinode i_din;
97 };
98
99 #ifndef NO_I_DEFINES
100
101 #define i_atime         i_din.di_atime
102 #define i_atimensec     i_din.di_atimensec
103 #define i_blocks        i_din.di_blocks
104 #define i_ctime         i_din.di_ctime
105 #define i_ctimensec     i_din.di_ctimensec
106 #define i_db            i_din.di_db
107 #define i_flags         i_din.di_flags
108 #define i_gen           i_din.di_gen
109 #define i_gid           i_din.di_gid
110 #define i_ib            i_din.di_ib
111 #define i_mode          i_din.di_mode
112 #define i_mtime         i_din.di_mtime
113 #define i_mtimensec     i_din.di_mtimensec
114 #define i_nlink         i_din.di_nlink
115 #define i_rdev          i_din.di_rdev
116 #define i_shortlink     i_din.di_shortlink
117 #define i_size          i_din.di_size
118 #define i_uid           i_din.di_uid
119
120 #endif
121
122 #endif
123
124 /* These flags are kept in i_flag. */
125 #define IN_ACCESS       0x0001          /* Access time update request. */
126 #define IN_CHANGE       0x0002          /* Inode change time update request. */
127 #define IN_UPDATE       0x0004          /* Modification time update request. */
128 #define IN_MODIFIED     0x0008          /* Inode has been modified. */
129 #define IN_RENAME       0x0010          /* Inode is being renamed. */
130 #define IN_SHLOCK       0x0020          /* File has shared lock. */
131 #define IN_EXLOCK       0x0040          /* File has exclusive lock. */
132 #define IN_HASHED       0x0080          /* Inode is on hash list */
133 #define IN_LAZYMOD      0x0100          /* Modified, but don't write yet. */
134
135 #if defined(_KERNEL) || defined(_KERNEL_STRUCTURES)
136
137 /*
138  * Structure used to pass around logical block paths generated by
139  * ext2_getlbns and used by truncate and bmap code.
140  */
141 struct indir {
142         ext2_daddr_t in_lbn;            /* Logical block number. */
143         int     in_off;                 /* Offset in buffer. */
144         int     in_exists;              /* Flag if the block exists. */
145 };
146
147 /* Convert between inode pointers and vnode pointers. */
148 #define VTOI(vp)        ((struct inode *)(vp)->v_data)
149 #define ITOV(ip)        ((ip)->i_vnode)
150
151 /* Determine if soft dependencies are being done */
152 #define DOINGSOFTDEP(vp)        ((vp)->v_mount->mnt_flag & MNT_SOFTDEP)
153 #define DOINGASYNC(vp)          ((vp)->v_mount->mnt_flag & MNT_ASYNC)
154
155 /* This overlays the fid structure (see mount.h). */
156 struct ufid {
157         uint16_t ufid_len;      /* Length of structure. */
158         uint16_t ufid_pad;      /* Force 32-bit alignment. */
159         ino_t     ufid_ino;     /* File number (ino). */
160         int32_t   ufid_gen;     /* Generation number. */
161 };
162 #endif /* _KERNEL || _KERNEL_STRUCTURES */
163
164 #endif /* !_VFS_GNU_EXT2FS_INODE_H_ */