xref: /original-bsd/sys/ufs/ufs/inode.h (revision 6b7db209)
1 /*	inode.h	4.21	82/12/17	*/
2 
3 /*
4  * The I node is the focus of all file activity in UNIX.
5  * There is a unique inode allocated for each active file,
6  * each current directory, each mounted-on file, text file, and the root.
7  * An inode is 'named' by its dev/inumber pair. (iget/iget.c)
8  * Data in icommon is read in from permanent inode on volume.
9  */
10 
11 #define	NDADDR	12		/* direct addresses in inode */
12 #define	NIADDR	3		/* indirect addresses in inode */
13 
14 struct inode {
15 	struct	inode *i_chain[2];	/* must be first */
16 	u_short	i_flag;
17 	u_short	i_count;	/* reference count */
18 	dev_t	i_dev;		/* device where inode resides */
19 	u_short	i_shlockc;	/* count of shared locks on inode */
20 	u_short	i_exlockc;	/* count of exclusive locks on inode */
21 	ino_t	i_number;	/* i number, 1-to-1 with device address */
22 	struct	fs *i_fs;	/* file sys associated with this inode */
23 	struct	dquot *i_dquot;	/* quota structure controlling this file */
24 	union {
25 		daddr_t	if_lastr;	/* last read (read-ahead) */
26 		struct	socket *is_socket;
27 		struct	{
28 			struct inode  *if_freef;	/* free list forward */
29 			struct inode **if_freeb;	/* free list back */
30 		} i_fr;
31 	} i_un;
32 	struct 	icommon
33 	{
34 		u_short	ic_mode;	/*  0: mode and type of file */
35 		short	ic_nlink;	/*  2: number of links to file */
36 		short	ic_uid;		/*  4: owner's user id */
37 		short	ic_gid;		/*  6: owner's group id */
38 		quad	ic_size;	/*  8: number of bytes in file */
39 		time_t	ic_atime;	/* 16: time last accessed */
40 		long	ic_atspare;
41 		time_t	ic_mtime;	/* 24: time last modified */
42 		long	ic_mtspare;
43 		time_t	ic_ctime;	/* 32: time created */
44 		long	ic_ctspare;
45 		daddr_t	ic_db[NDADDR];	/* 40: disk block addresses */
46 		daddr_t	ic_ib[NIADDR];	/* 88: indirect blocks */
47 		long	ic_flags;	/* 100: status, currently unused */
48 		long	ic_spare[6];	/* 104: reserved, currently unused */
49 	} i_ic;
50 };
51 
52 struct dinode {
53 	union {
54 		struct	icommon di_icom;
55 		char	di_size[128];
56 	} di_un;
57 };
58 
59 #define	i_mode		i_ic.ic_mode
60 #define	i_nlink		i_ic.ic_nlink
61 #define	i_uid		i_ic.ic_uid
62 #define	i_gid		i_ic.ic_gid
63 /* ugh! -- must be fixed */
64 #ifdef vax
65 #define	i_size		i_ic.ic_size.val[0]
66 #endif
67 #ifdef sun
68 #define	i_size		i_ic.ic_size.val[1]
69 #endif
70 #define	i_db		i_ic.ic_db
71 #define	i_ib		i_ic.ic_ib
72 #define	i_atime		i_ic.ic_atime
73 #define	i_mtime		i_ic.ic_mtime
74 #define	i_ctime		i_ic.ic_ctime
75 #define	i_rdev		i_ic.ic_db[0]
76 #define	i_lastr		i_un.if_lastr
77 #define	i_socket	i_un.is_socket
78 #define	i_forw		i_chain[0]
79 #define	i_back		i_chain[1]
80 #define	i_freef		i_un.i_fr.if_freef
81 #define	i_freeb		i_un.i_fr.if_freeb
82 
83 #define di_ic		di_un.di_icom
84 #define	di_mode		di_ic.ic_mode
85 #define	di_nlink	di_ic.ic_nlink
86 #define	di_uid		di_ic.ic_uid
87 #define	di_gid		di_ic.ic_gid
88 #ifdef vax
89 #define	di_size		di_ic.ic_size.val[0]
90 #endif
91 #ifdef sun
92 #define	di_size		di_ic.ic_size.val[1]
93 #endif
94 #define	di_db		di_ic.ic_db
95 #define	di_ib		di_ic.ic_ib
96 #define	di_atime	di_ic.ic_atime
97 #define	di_mtime	di_ic.ic_mtime
98 #define	di_ctime	di_ic.ic_ctime
99 #define	di_rdev		di_ic.ic_db[0]
100 
101 #ifdef KERNEL
102 struct inode *inode;		/* the inode table itself */
103 struct inode *inodeNINODE;	/* the end of the inode table */
104 int	ninode;			/* number of slots in the table */
105 
106 struct	inode *rootdir;			/* pointer to inode of root directory */
107 
108 struct	inode *ialloc();
109 struct	inode *iget();
110 #ifdef notdef
111 struct	inode *ifind();
112 #endif
113 struct	inode *owner();
114 struct	inode *maknode();
115 struct	inode *namei();
116 
117 ino_t	dirpref();
118 #endif
119 
120 /* flags */
121 #define	ILOCKED		0x1		/* inode is locked */
122 #define	IUPD		0x2		/* file has been modified */
123 #define	IACC		0x4		/* inode access time to be updated */
124 #define	IMOUNT		0x8		/* inode is mounted on */
125 #define	IWANT		0x10		/* some process waiting on lock */
126 #define	ITEXT		0x20		/* inode is pure text prototype */
127 #define	ICHG		0x40		/* inode has been changed */
128 #define	ISHLOCK		0x80		/* file has shared lock */
129 #define	IEXLOCK		0x100		/* file has exclusive lock */
130 #define	ILWAIT		0x200		/* someone waiting on file lock */
131 
132 /* modes */
133 #define	IFMT		0170000		/* type of file */
134 #define	IFCHR		0020000		/* character special */
135 #define	IFDIR		0040000		/* directory */
136 #define	IFBLK		0060000		/* block special */
137 #define	IFREG		0100000		/* regular */
138 #define	IFLNK		0120000		/* symbolic link */
139 #define	IFSOCK		0140000		/* socket */
140 
141 #define	ISUID		04000		/* set user id on execution */
142 #define	ISGID		02000		/* set group id on execution */
143 #define	ISVTX		01000		/* save swapped text even after use */
144 #define	IREAD		0400		/* read, write, execute permissions */
145 #define	IWRITE		0200
146 #define	IEXEC		0100
147 
148 #define	ILOCK(ip) { \
149 	while ((ip)->i_flag & ILOCKED) { \
150 		(ip)->i_flag |= IWANT; \
151 		sleep((caddr_t)(ip), PINOD); \
152 	} \
153 	(ip)->i_flag |= ILOCKED; \
154 }
155 
156 #define	IUNLOCK(ip) { \
157 	(ip)->i_flag &= ~ILOCKED; \
158 	if ((ip)->i_flag&IWANT) { \
159 		(ip)->i_flag &= ~IWANT; \
160 		wakeup((caddr_t)(ip)); \
161 	} \
162 }
163 
164 #define	IUPDAT(ip, t1, t2, waitfor) { \
165 	if (ip->i_flag&(IUPD|IACC|ICHG)) \
166 		iupdat(ip, t1, t2, waitfor); \
167 }
168