]> git.saurik.com Git - apple/xnu.git/blob - bsd/nfs/nfsnode.h
e2f8f10bd6a66fc1ff19b58c101cce01bd71add5
[apple/xnu.git] / bsd / nfs / nfsnode.h
1 /*
2 * Copyright (c) 2000-2003 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
11 *
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
18 * under the License.
19 *
20 * @APPLE_LICENSE_HEADER_END@
21 */
22 /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
23 /*
24 * Copyright (c) 1989, 1993
25 * The Regents of the University of California. All rights reserved.
26 *
27 * This code is derived from software contributed to Berkeley by
28 * Rick Macklem at The University of Guelph.
29 *
30 * Redistribution and use in source and binary forms, with or without
31 * modification, are permitted provided that the following conditions
32 * are met:
33 * 1. Redistributions of source code must retain the above copyright
34 * notice, this list of conditions and the following disclaimer.
35 * 2. Redistributions in binary form must reproduce the above copyright
36 * notice, this list of conditions and the following disclaimer in the
37 * documentation and/or other materials provided with the distribution.
38 * 3. All advertising materials mentioning features or use of this software
39 * must display the following acknowledgement:
40 * This product includes software developed by the University of
41 * California, Berkeley and its contributors.
42 * 4. Neither the name of the University nor the names of its contributors
43 * may be used to endorse or promote products derived from this software
44 * without specific prior written permission.
45 *
46 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
47 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
48 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
49 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
50 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
51 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
52 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
53 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
54 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
55 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
56 * SUCH DAMAGE.
57 *
58 * @(#)nfsnode.h 8.9 (Berkeley) 5/14/95
59 * FreeBSD-Id: nfsnode.h,v 1.24 1997/10/28 14:06:25 bde Exp $
60 */
61
62
63 #ifndef _NFS_NFSNODE_H_
64 #define _NFS_NFSNODE_H_
65
66 #include <sys/appleapiopts.h>
67
68 #ifdef __APPLE_API_PRIVATE
69 #ifndef _NFS_NFS_H_
70 #include <nfs/nfs.h>
71 #endif
72 #include <sys/lock.h>
73
74
75 /*
76 * Silly rename structure that hangs off the nfsnode until the name
77 * can be removed by nfs_inactive()
78 */
79 struct sillyrename {
80 struct ucred *s_cred;
81 struct vnode *s_dvp;
82 long s_namlen;
83 char s_name[20];
84 };
85
86 /*
87 * This structure is used to save the logical directory offset to
88 * NFS cookie mappings.
89 * The mappings are stored in a list headed
90 * by n_cookies, as required.
91 * There is one mapping for each NFS_DIRBLKSIZ bytes of directory information
92 * stored in increasing logical offset byte order.
93 */
94 #define NFSNUMCOOKIES 31
95
96 struct nfsdmap {
97 LIST_ENTRY(nfsdmap) ndm_list;
98 int ndm_eocookie;
99 nfsuint64 ndm_cookies[NFSNUMCOOKIES];
100 };
101
102 /*
103 * The nfsbuf is the nfs equivalent to a struct buf.
104 */
105 struct nfsbuf {
106 LIST_ENTRY(nfsbuf) nb_hash; /* hash chain */
107 LIST_ENTRY(nfsbuf) nb_vnbufs; /* vnode's nfsbuf chain */
108 TAILQ_ENTRY(nfsbuf) nb_free; /* free list position if not active. */
109 volatile long nb_flags; /* NB_* flags. */
110 long nb_bufsize; /* buffer size */
111 daddr_t nb_lblkno; /* logical block number. */
112 int nb_error; /* errno value. */
113 u_int32_t nb_valid; /* valid pages in buf */
114 u_int32_t nb_dirty; /* dirty pages in buf */
115 int nb_validoff; /* offset in buffer of valid region. */
116 int nb_validend; /* offset of end of valid region. */
117 int nb_dirtyoff; /* offset in buffer of dirty region. */
118 int nb_dirtyend; /* offset of end of dirty region. */
119 caddr_t nb_data; /* mapped buffer */
120 struct vnode * nb_vp; /* device vnode */
121 struct proc * nb_proc; /* associated proc; NULL if kernel. */
122 struct ucred * nb_rcred; /* read credentials reference */
123 struct ucred * nb_wcred; /* write credentials reference */
124 void * nb_pagelist; /* upl */
125 };
126
127 /*
128 * These flags are kept in nb_flags and they're (purposefully)
129 * very similar to the B_* flags for struct buf.
130 */
131 #define NB_NEEDCOMMIT 0x00000002 /* Append-write in progress. */
132 #define NB_ASYNC 0x00000004 /* Start I/O, do not wait. */
133 #define NB_BUSY 0x00000010 /* I/O in progress. */
134 #define NB_CACHE 0x00000020 /* Bread found us in the cache. */
135 #define NB_STABLE 0x00000040 /* write FILESYNC not UNSTABLE. */
136 #define NB_DELWRI 0x00000080 /* Delay I/O until buffer reused. */
137 #define NB_DONE 0x00000200 /* I/O completed. */
138 #define NB_EINTR 0x00000400 /* I/O was interrupted */
139 #define NB_ERROR 0x00000800 /* I/O error occurred. */
140 #define NB_WASDIRTY 0x00001000 /* page was found dirty in the VM cache */
141 #define NB_INVAL 0x00002000 /* Does not contain valid info. */
142 #define NB_NOCACHE 0x00008000 /* Do not cache block after use. */
143 #define NB_READ 0x00100000 /* Read buffer. */
144 #define NB_PAGELIST 0x00400000 /* Buffer describes pagelist I/O. */
145 #define NB_WANTED 0x00800000 /* Process wants this buffer. */
146 #define NB_WRITE 0x00000000 /* Write buffer (pseudo flag). */
147 #define NB_WRITEINPROG 0x01000000 /* Write in progress. */
148 #define NB_META 0x40000000 /* buffer contains meta-data. */
149 #define NB_IOD 0x80000000 /* buffer being handled by nfsiod. */
150
151
152 #define NBOFF(BP) ((off_t)(BP)->nb_lblkno * (off_t)(BP)->nb_bufsize)
153 #define NBPGVALID(BP,P) (((BP)->nb_valid >> (P)) & 0x1)
154 #define NBPGDIRTY(BP,P) (((BP)->nb_dirty >> (P)) & 0x1)
155 #define NBPGVALID_SET(BP,P) ((BP)->nb_valid |= (1 << (P)))
156 #define NBPGDIRTY_SET(BP,P) ((BP)->nb_dirty |= (1 << (P)))
157
158 #define NFS_BUF_MAP(BP) \
159 do { \
160 if (!(BP)->nb_data && nfs_buf_map(BP)) \
161 panic("nfs_buf_map failed"); \
162 } while (0)
163
164 LIST_HEAD(nfsbuflists, nfsbuf);
165 TAILQ_HEAD(nfsbuffreehead, nfsbuf);
166
167 #define NFSNOLIST ((struct nfsbuf *)0xdeadbeef)
168
169 extern int nfsbufhashlock, nfsbufcnt, nfsbufmin, nfsbufmax;
170 extern int nfsbuffreecnt, nfsbufdelwricnt, nfsneedbuffer;
171 extern int nfs_nbdwrite;
172 extern struct nfsbuffreehead nfsbuffree, nfsbufdelwri;
173
174 #define NFSBUFCNTCHK() \
175 do { \
176 if ( (nfsbufcnt < 0) || \
177 (nfsbufcnt > nfsbufmax) || \
178 (nfsbuffreecnt < 0) || \
179 (nfsbuffreecnt > nfsbufmax) || \
180 (nfsbuffreecnt > nfsbufcnt) || \
181 (nfsbufdelwricnt < 0) || \
182 (nfsbufdelwricnt > nfsbufmax) || \
183 (nfsbufdelwricnt > nfsbufcnt) || \
184 (nfs_nbdwrite < 0) || \
185 (nfs_nbdwrite > nfsbufcnt) || \
186 0) \
187 panic("nfsbuf count error: max %d cnt %d free %d delwr %d bdw %d\n", \
188 nfsbufmax, nfsbufcnt, nfsbuffreecnt, \
189 nfsbufdelwricnt, nfs_nbdwrite); \
190 } while (0)
191
192 /*
193 * The nfsnode is the nfs equivalent to ufs's inode. Any similarity
194 * is purely coincidental.
195 * There is a unique nfsnode allocated for each active file,
196 * each current directory, each mounted-on file, text file, and the root.
197 * An nfsnode is 'named' by its file handle. (nget/nfs_node.c)
198 * If this structure exceeds 256 bytes (it is currently 256 using 4.4BSD-Lite
199 * type definitions), file handles of > 32 bytes should probably be split out
200 * into a separate MALLOC()'d data structure. (Reduce the size of nfsfh_t by
201 * changing the definition in sys/mount.h of NFS_SMALLFH.)
202 * NB: Hopefully the current order of the fields is such that everything will
203 * be well aligned and, therefore, tightly packed.
204 */
205 struct nfsnode {
206 struct lock__bsd__ n_lock; /* the vnode lock */
207 LIST_ENTRY(nfsnode) n_hash; /* Hash chain */
208 CIRCLEQ_ENTRY(nfsnode) n_timer; /* Nqnfs timer chain */
209 u_quad_t n_size; /* Current size of file */
210 u_quad_t n_brev; /* Modify rev when cached */
211 u_quad_t n_lrev; /* Modify rev for lease */
212 struct vattr n_vattr; /* Vnode attribute cache */
213 time_t n_attrstamp; /* Attr. cache timestamp */
214 u_int32_t n_mode; /* ACCESS mode cache */
215 uid_t n_modeuid; /* credentials having mode */
216 time_t n_modestamp; /* mode cache timestamp */
217 time_t n_mtime; /* Prev modify time. */
218 time_t n_ctime; /* Prev create time. */
219 time_t n_expiry; /* Lease expiry time */
220 nfsfh_t *n_fhp; /* NFS File Handle */
221 union {
222 struct vnode *n_vp; /* associated vnode */
223 struct mount *n_mp; /* associated mount (NINIT) */
224 } n_un0;
225 struct lockf *n_lockf; /* Locking record of file */
226 int n_error; /* Save write error value */
227 union {
228 struct timespec nf_atim; /* Special file times */
229 nfsuint64 nd_cookieverf; /* Cookie verifier (dir only) */
230 } n_un1;
231 union {
232 struct timespec nf_mtim;
233 off_t nd_direof; /* Dir. EOF offset cache */
234 } n_un2;
235 union {
236 struct sillyrename *nf_silly; /* Ptr to silly rename struct */
237 LIST_HEAD(, nfsdmap) nd_cook; /* cookies */
238 } n_un3;
239 short n_fhsize; /* size in bytes, of fh */
240 short n_flag; /* Flag for locking.. */
241 nfsfh_t n_fh; /* Small File Handle */
242 u_int64_t n_xid; /* last xid to loadattr */
243 struct nfsbuflists n_cleanblkhd; /* clean blocklist head */
244 struct nfsbuflists n_dirtyblkhd; /* dirty blocklist head */
245 int n_needcommitcnt;/* # bufs that need committing */
246 };
247
248 #define CHECK_NEEDCOMMITCNT(np) \
249 do { \
250 if ((np)->n_needcommitcnt < 0) { \
251 printf("nfs: n_needcommitcnt negative\n"); \
252 (np)->n_needcommitcnt = 0; \
253 } \
254 } while (0)
255
256 #define n_vnode n_un0.n_vp
257 #define n_mount n_un0.n_mp
258 #define n_atim n_un1.nf_atim
259 #define n_mtim n_un2.nf_mtim
260 #define n_sillyrename n_un3.nf_silly
261 #define n_cookieverf n_un1.nd_cookieverf
262 #define n_direofoffset n_un2.nd_direof
263 #define n_cookies n_un3.nd_cook
264
265 /*
266 * Flags for n_flag
267 */
268 #define NFLUSHWANT 0x0001 /* Want wakeup from a flush in prog. */
269 #define NFLUSHINPROG 0x0002 /* Avoid multiple calls to vinvalbuf() */
270 #define NMODIFIED 0x0004 /* Might have a modified buffer in bio */
271 #define NWRITEERR 0x0008 /* Flag write errors so close will know */
272 #define NQNFSNONCACHE 0x0020 /* Non-cachable lease */
273 #define NQNFSWRITE 0x0040 /* Write lease */
274 #define NQNFSEVICTED 0x0080 /* Has been evicted */
275 #define NACC 0x0100 /* Special file accessed */
276 #define NUPD 0x0200 /* Special file updated */
277 #define NCHG 0x0400 /* Special file times changed */
278 #define NHASHED 0x1000 /* someone wants to lock */
279 #define NINIT 0x2000 /* node is being initialized */
280 #define NWINIT 0x4000 /* someone waiting for init to complete */
281
282 /*
283 * Convert between nfsnode pointers and vnode pointers
284 */
285 #define VTONFS(vp) ((struct nfsnode *)(vp)->v_data)
286 #define NFSTOV(np) ((struct vnode *)(np)->n_vnode)
287
288 /*
289 * Queue head for nfsiod's
290 */
291 extern TAILQ_HEAD(nfs_bufq, buf) nfs_bufq;
292 extern struct proc *nfs_iodwant[NFS_MAXASYNCDAEMON];
293 extern struct nfsmount *nfs_iodmount[NFS_MAXASYNCDAEMON];
294
295 #if defined(KERNEL)
296
297 typedef int vop_t __P((void *));
298 extern vop_t **fifo_nfsv2nodeop_p;
299 extern vop_t **nfsv2_vnodeop_p;
300 extern vop_t **spec_nfsv2nodeop_p;
301
302 /*
303 * Prototypes for NFS vnode operations
304 */
305 int nfs_write __P((struct vop_write_args *));
306 #define nfs_lease_check ((int (*) __P((struct vop_lease_args *)))nullop)
307 #define nqnfs_vop_lease_check lease_check
308 int nqnfs_vop_lease_check __P((struct vop_lease_args *));
309 #define nfs_revoke vop_revoke
310 #define nfs_seek ((int (*) __P((struct vop_seek_args *)))nullop)
311 int nfs_inactive __P((struct vop_inactive_args *));
312 int nfs_reclaim __P((struct vop_reclaim_args *));
313 int nfs_lock __P((struct vop_lock_args *));
314 int nfs_unlock __P((struct vop_unlock_args *));
315 int nfs_islocked __P((struct vop_islocked_args *));
316
317 #define nfs_reallocblks \
318 ((int (*) __P((struct vop_reallocblks_args *)))eopnotsupp)
319
320 /* other stuff */
321 int nfs_removeit __P((struct sillyrename *));
322 int nfs_nget __P((struct mount *,nfsfh_t *,int,struct nfsnode **));
323 nfsuint64 *nfs_getcookie __P((struct nfsnode *, off_t, int));
324 void nfs_invaldir __P((struct vnode *));
325
326 #define nqnfs_lease_updatetime lease_updatetime
327
328 /* nfsbuf functions */
329 void nfs_nbinit(void);
330 void nfs_buf_remfree(struct nfsbuf *);
331 struct nfsbuf * nfs_buf_incore(struct vnode *, daddr_t);
332 struct nfsbuf * nfs_buf_get(struct vnode *, daddr_t, int, struct proc *, int);
333 int nfs_buf_upl_setup(struct nfsbuf *bp);
334 void nfs_buf_upl_check(struct nfsbuf *bp);
335 void nfs_buf_release(struct nfsbuf *);
336 int nfs_buf_iowait(struct nfsbuf *);
337 void nfs_buf_iodone(struct nfsbuf *);
338 void nfs_buf_write_delayed(struct nfsbuf *);
339
340 #endif /* KERNEL */
341
342 #endif /* __APPLE_API_PRIVATE */
343 #endif /* _NFS_NFSNODE_H_ */