[PATCH] NFS: cleanup: shrink struct nfs_open_context
[linux-2.6] / include / linux / nfs_fs.h
1 /*
2  *  linux/include/linux/nfs_fs.h
3  *
4  *  Copyright (C) 1992  Rick Sladkey
5  *
6  *  OS-specific nfs filesystem definitions and declarations
7  */
8
9 #ifndef _LINUX_NFS_FS_H
10 #define _LINUX_NFS_FS_H
11
12 #include <linux/config.h>
13 #include <linux/in.h>
14 #include <linux/mm.h>
15 #include <linux/pagemap.h>
16 #include <linux/rwsem.h>
17 #include <linux/wait.h>
18
19 #include <linux/nfs_fs_sb.h>
20
21 #include <linux/sunrpc/debug.h>
22 #include <linux/sunrpc/auth.h>
23 #include <linux/sunrpc/clnt.h>
24
25 #include <linux/nfs.h>
26 #include <linux/nfs2.h>
27 #include <linux/nfs3.h>
28 #include <linux/nfs4.h>
29 #include <linux/nfs_xdr.h>
30 #include <linux/rwsem.h>
31 #include <linux/mempool.h>
32
33 /*
34  * Enable debugging support for nfs client.
35  * Requires RPC_DEBUG.
36  */
37 #ifdef RPC_DEBUG
38 # define NFS_DEBUG
39 #endif
40
41 #define NFS_MAX_FILE_IO_BUFFER_SIZE     32768
42 #define NFS_DEF_FILE_IO_BUFFER_SIZE     4096
43
44 /*
45  * superblock magic number for NFS
46  */
47 #define NFS_SUPER_MAGIC                 0x6969
48
49 /*
50  * These are the default flags for swap requests
51  */
52 #define NFS_RPC_SWAPFLAGS               (RPC_TASK_SWAPPER|RPC_TASK_ROOTCREDS)
53
54 /*
55  * When flushing a cluster of dirty pages, there can be different
56  * strategies:
57  */
58 #define FLUSH_AGING             0       /* only flush old buffers */
59 #define FLUSH_SYNC              1       /* file being synced, or contention */
60 #define FLUSH_WAIT              2       /* wait for completion */
61 #define FLUSH_STABLE            4       /* commit to stable storage */
62 #define FLUSH_LOWPRI            8       /* low priority background flush */
63 #define FLUSH_HIGHPRI           16      /* high priority memory reclaim flush */
64
65 #ifdef __KERNEL__
66
67 /*
68  * NFSv3/v4 Access mode cache entry
69  */
70 struct nfs_access_entry {
71         unsigned long           jiffies;
72         struct rpc_cred *       cred;
73         int                     mask;
74 };
75
76 struct nfs4_state;
77 struct nfs_open_context {
78         atomic_t count;
79         struct dentry *dentry;
80         struct rpc_cred *cred;
81         struct nfs4_state *state;
82         fl_owner_t lockowner;
83         int mode;
84         int error;
85
86         struct list_head list;
87 };
88
89 /*
90  * NFSv4 delegation
91  */
92 struct nfs_delegation;
93
94 /*
95  * nfs fs inode data in memory
96  */
97 struct nfs_inode {
98         /*
99          * The 64bit 'inode number'
100          */
101         __u64 fileid;
102
103         /*
104          * NFS file handle
105          */
106         struct nfs_fh           fh;
107
108         /*
109          * Various flags
110          */
111         unsigned int            flags;
112
113         /*
114          * read_cache_jiffies is when we started read-caching this inode,
115          * and read_cache_mtime is the mtime of the inode at that time.
116          * attrtimeo is for how long the cached information is assumed
117          * to be valid. A successful attribute revalidation doubles
118          * attrtimeo (up to acregmax/acdirmax), a failure resets it to
119          * acregmin/acdirmin.
120          *
121          * We need to revalidate the cached attrs for this inode if
122          *
123          *      jiffies - read_cache_jiffies > attrtimeo
124          *
125          * and invalidate any cached data/flush out any dirty pages if
126          * we find that
127          *
128          *      mtime != read_cache_mtime
129          */
130         unsigned long           read_cache_jiffies;
131         unsigned long           attrtimeo;
132         unsigned long           attrtimeo_timestamp;
133         __u64                   change_attr;            /* v4 only */
134
135         /* "Generation counter" for the attribute cache. This is
136          * bumped whenever we update the metadata on the
137          * server.
138          */
139         unsigned long           cache_change_attribute;
140         /*
141          * Counter indicating the number of outstanding requests that
142          * will cause a file data update.
143          */
144         atomic_t                data_updates;
145
146         struct nfs_access_entry cache_access;
147
148         /*
149          * This is the cookie verifier used for NFSv3 readdir
150          * operations
151          */
152         __u32                   cookieverf[2];
153
154         /*
155          * This is the list of dirty unwritten pages.
156          */
157         spinlock_t              req_lock;
158         struct list_head        dirty;
159         struct list_head        commit;
160         struct radix_tree_root  nfs_page_tree;
161
162         unsigned int            ndirty,
163                                 ncommit,
164                                 npages;
165
166         /* Open contexts for shared mmap writes */
167         struct list_head        open_files;
168
169         wait_queue_head_t       nfs_i_wait;
170
171 #ifdef CONFIG_NFS_V4
172         /* NFSv4 state */
173         struct list_head        open_states;
174         struct nfs_delegation   *delegation;
175         int                      delegation_state;
176         struct rw_semaphore     rwsem;
177 #endif /* CONFIG_NFS_V4*/
178
179         struct inode            vfs_inode;
180 };
181
182 /*
183  * Legal inode flag values
184  */
185 #define NFS_INO_STALE           0x0001          /* possible stale inode */
186 #define NFS_INO_ADVISE_RDPLUS   0x0002          /* advise readdirplus */
187 #define NFS_INO_REVALIDATING    0x0004          /* revalidating attrs */
188 #define NFS_INO_INVALID_ATTR    0x0008          /* cached attrs are invalid */
189 #define NFS_INO_INVALID_DATA    0x0010          /* cached data is invalid */
190 #define NFS_INO_INVALID_ATIME   0x0020          /* cached atime is invalid */
191 #define NFS_INO_INVALID_ACCESS  0x0040          /* cached access cred invalid */
192
193 static inline struct nfs_inode *NFS_I(struct inode *inode)
194 {
195         return container_of(inode, struct nfs_inode, vfs_inode);
196 }
197 #define NFS_SB(s)               ((struct nfs_server *)(s->s_fs_info))
198
199 #define NFS_FH(inode)                   (&NFS_I(inode)->fh)
200 #define NFS_SERVER(inode)               (NFS_SB(inode->i_sb))
201 #define NFS_CLIENT(inode)               (NFS_SERVER(inode)->client)
202 #define NFS_PROTO(inode)                (NFS_SERVER(inode)->rpc_ops)
203 #define NFS_ADDR(inode)                 (RPC_PEERADDR(NFS_CLIENT(inode)))
204 #define NFS_COOKIEVERF(inode)           (NFS_I(inode)->cookieverf)
205 #define NFS_READTIME(inode)             (NFS_I(inode)->read_cache_jiffies)
206 #define NFS_CHANGE_ATTR(inode)          (NFS_I(inode)->change_attr)
207 #define NFS_ATTRTIMEO(inode)            (NFS_I(inode)->attrtimeo)
208 #define NFS_MINATTRTIMEO(inode) \
209         (S_ISDIR(inode->i_mode)? NFS_SERVER(inode)->acdirmin \
210                                : NFS_SERVER(inode)->acregmin)
211 #define NFS_MAXATTRTIMEO(inode) \
212         (S_ISDIR(inode->i_mode)? NFS_SERVER(inode)->acdirmax \
213                                : NFS_SERVER(inode)->acregmax)
214 #define NFS_ATTRTIMEO_UPDATE(inode)     (NFS_I(inode)->attrtimeo_timestamp)
215
216 #define NFS_FLAGS(inode)                (NFS_I(inode)->flags)
217 #define NFS_REVALIDATING(inode)         (NFS_FLAGS(inode) & NFS_INO_REVALIDATING)
218 #define NFS_STALE(inode)                (NFS_FLAGS(inode) & NFS_INO_STALE)
219
220 #define NFS_FILEID(inode)               (NFS_I(inode)->fileid)
221
222 static inline int nfs_caches_unstable(struct inode *inode)
223 {
224         return atomic_read(&NFS_I(inode)->data_updates) != 0;
225 }
226
227 static inline void NFS_CACHEINV(struct inode *inode)
228 {
229         if (!nfs_caches_unstable(inode))
230                 NFS_FLAGS(inode) |= NFS_INO_INVALID_ATTR | NFS_INO_INVALID_ACCESS;
231 }
232
233 static inline int nfs_server_capable(struct inode *inode, int cap)
234 {
235         return NFS_SERVER(inode)->caps & cap;
236 }
237
238 static inline int NFS_USE_READDIRPLUS(struct inode *inode)
239 {
240         return NFS_FLAGS(inode) & NFS_INO_ADVISE_RDPLUS;
241 }
242
243 /**
244  * nfs_save_change_attribute - Returns the inode attribute change cookie
245  * @inode - pointer to inode
246  * The "change attribute" is updated every time we finish an operation
247  * that will result in a metadata change on the server.
248  */
249 static inline long nfs_save_change_attribute(struct inode *inode)
250 {
251         return NFS_I(inode)->cache_change_attribute;
252 }
253
254 /**
255  * nfs_verify_change_attribute - Detects NFS inode cache updates
256  * @inode - pointer to inode
257  * @chattr - previously saved change attribute
258  * Return "false" if metadata has been updated (or is in the process of
259  * being updated) since the change attribute was saved.
260  */
261 static inline int nfs_verify_change_attribute(struct inode *inode, unsigned long chattr)
262 {
263         return !nfs_caches_unstable(inode)
264                 && chattr == NFS_I(inode)->cache_change_attribute;
265 }
266
267 /*
268  * linux/fs/nfs/inode.c
269  */
270 extern void nfs_zap_caches(struct inode *);
271 extern struct inode *nfs_fhget(struct super_block *, struct nfs_fh *,
272                                 struct nfs_fattr *);
273 extern int nfs_refresh_inode(struct inode *, struct nfs_fattr *);
274 extern int nfs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
275 extern int nfs_permission(struct inode *, int, struct nameidata *);
276 extern int nfs_access_get_cached(struct inode *, struct rpc_cred *, struct nfs_access_entry *);
277 extern void nfs_access_add_cache(struct inode *, struct nfs_access_entry *);
278 extern int nfs_open(struct inode *, struct file *);
279 extern int nfs_release(struct inode *, struct file *);
280 extern int nfs_attribute_timeout(struct inode *inode);
281 extern int nfs_revalidate_inode(struct nfs_server *server, struct inode *inode);
282 extern int __nfs_revalidate_inode(struct nfs_server *, struct inode *);
283 extern int nfs_setattr(struct dentry *, struct iattr *);
284 extern void nfs_begin_attr_update(struct inode *);
285 extern void nfs_end_attr_update(struct inode *);
286 extern void nfs_begin_data_update(struct inode *);
287 extern void nfs_end_data_update(struct inode *);
288 extern void nfs_end_data_update_defer(struct inode *);
289 extern struct nfs_open_context *alloc_nfs_open_context(struct dentry *dentry, struct rpc_cred *cred);
290 extern struct nfs_open_context *get_nfs_open_context(struct nfs_open_context *ctx);
291 extern void put_nfs_open_context(struct nfs_open_context *ctx);
292 extern void nfs_file_set_open_context(struct file *filp, struct nfs_open_context *ctx);
293 extern struct nfs_open_context *nfs_find_open_context(struct inode *inode, int mode);
294 extern void nfs_file_clear_open_context(struct file *filp);
295
296 /* linux/net/ipv4/ipconfig.c: trims ip addr off front of name, too. */
297 extern u32 root_nfs_parse_addr(char *name); /*__init*/
298
299 /*
300  * linux/fs/nfs/file.c
301  */
302 extern struct inode_operations nfs_file_inode_operations;
303 extern struct file_operations nfs_file_operations;
304 extern struct address_space_operations nfs_file_aops;
305
306 static inline struct rpc_cred *nfs_file_cred(struct file *file)
307 {
308         if (file != NULL) {
309                 struct nfs_open_context *ctx;
310
311                 ctx = (struct nfs_open_context*)file->private_data;
312                 return ctx->cred;
313         }
314         return NULL;
315 }
316
317 /*
318  * linux/fs/nfs/direct.c
319  */
320 extern ssize_t nfs_direct_IO(int, struct kiocb *, const struct iovec *, loff_t,
321                         unsigned long);
322 extern ssize_t nfs_file_direct_read(struct kiocb *iocb, char __user *buf,
323                         size_t count, loff_t pos);
324 extern ssize_t nfs_file_direct_write(struct kiocb *iocb, const char __user *buf,
325                         size_t count, loff_t pos);
326
327 /*
328  * linux/fs/nfs/dir.c
329  */
330 extern struct inode_operations nfs_dir_inode_operations;
331 extern struct file_operations nfs_dir_operations;
332 extern struct dentry_operations nfs_dentry_operations;
333
334 extern int nfs_instantiate(struct dentry *dentry, struct nfs_fh *fh, struct nfs_fattr *fattr);
335
336 /*
337  * linux/fs/nfs/symlink.c
338  */
339 extern struct inode_operations nfs_symlink_inode_operations;
340
341 /*
342  * linux/fs/nfs/unlink.c
343  */
344 extern int  nfs_async_unlink(struct dentry *);
345 extern void nfs_complete_unlink(struct dentry *);
346
347 /*
348  * linux/fs/nfs/write.c
349  */
350 extern int  nfs_writepage(struct page *page, struct writeback_control *wbc);
351 extern int  nfs_writepages(struct address_space *, struct writeback_control *);
352 extern int  nfs_flush_incompatible(struct file *file, struct page *page);
353 extern int  nfs_updatepage(struct file *, struct page *, unsigned int, unsigned int);
354 extern void nfs_writeback_done(struct rpc_task *task);
355
356 #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
357 extern void nfs_commit_done(struct rpc_task *);
358 #endif
359
360 /*
361  * Try to write back everything synchronously (but check the
362  * return value!)
363  */
364 extern int  nfs_sync_inode(struct inode *, unsigned long, unsigned int, int);
365 #if defined(CONFIG_NFS_V3) || defined(CONFIG_NFS_V4)
366 extern int  nfs_commit_inode(struct inode *, unsigned long, unsigned int, int);
367 #else
368 static inline int
369 nfs_commit_inode(struct inode *inode, unsigned long idx_start, unsigned int npages, int how)
370 {
371         return 0;
372 }
373 #endif
374
375 static inline int
376 nfs_have_writebacks(struct inode *inode)
377 {
378         return NFS_I(inode)->npages != 0;
379 }
380
381 static inline int
382 nfs_wb_all(struct inode *inode)
383 {
384         int error = nfs_sync_inode(inode, 0, 0, FLUSH_WAIT);
385         return (error < 0) ? error : 0;
386 }
387
388 /*
389  * Write back all requests on one page - we do this before reading it.
390  */
391 static inline int nfs_wb_page_priority(struct inode *inode, struct page* page, int how)
392 {
393         int error = nfs_sync_inode(inode, page->index, 1,
394                         how | FLUSH_WAIT | FLUSH_STABLE);
395         return (error < 0) ? error : 0;
396 }
397
398 static inline int nfs_wb_page(struct inode *inode, struct page* page)
399 {
400         return nfs_wb_page_priority(inode, page, 0);
401 }
402
403 /*
404  * Allocate and free nfs_write_data structures
405  */
406 extern mempool_t *nfs_wdata_mempool;
407
408 static inline struct nfs_write_data *nfs_writedata_alloc(void)
409 {
410         struct nfs_write_data *p = mempool_alloc(nfs_wdata_mempool, SLAB_NOFS);
411         if (p) {
412                 memset(p, 0, sizeof(*p));
413                 INIT_LIST_HEAD(&p->pages);
414         }
415         return p;
416 }
417
418 static inline void nfs_writedata_free(struct nfs_write_data *p)
419 {
420         mempool_free(p, nfs_wdata_mempool);
421 }
422
423 /*
424  * linux/fs/nfs/read.c
425  */
426 extern int  nfs_readpage(struct file *, struct page *);
427 extern int  nfs_readpages(struct file *, struct address_space *,
428                 struct list_head *, unsigned);
429 extern void nfs_readpage_result(struct rpc_task *);
430
431 /*
432  * Allocate and free nfs_read_data structures
433  */
434 extern mempool_t *nfs_rdata_mempool;
435
436 static inline struct nfs_read_data *nfs_readdata_alloc(void)
437 {
438         struct nfs_read_data *p = mempool_alloc(nfs_rdata_mempool, SLAB_NOFS);
439         if (p)
440                 memset(p, 0, sizeof(*p));
441         return p;
442 }
443
444 static inline void nfs_readdata_free(struct nfs_read_data *p)
445 {
446         mempool_free(p, nfs_rdata_mempool);
447 }
448
449 extern void  nfs_readdata_release(struct rpc_task *task);
450
451 /*
452  * linux/fs/mount_clnt.c
453  * (Used only by nfsroot module)
454  */
455 extern int  nfsroot_mount(struct sockaddr_in *, char *, struct nfs_fh *,
456                 int, int);
457
458 /*
459  * inline functions
460  */
461
462 static inline loff_t
463 nfs_size_to_loff_t(__u64 size)
464 {
465         loff_t maxsz = (((loff_t) ULONG_MAX) << PAGE_CACHE_SHIFT) + PAGE_CACHE_SIZE - 1;
466         if (size > maxsz)
467                 return maxsz;
468         return (loff_t) size;
469 }
470
471 static inline ino_t
472 nfs_fileid_to_ino_t(u64 fileid)
473 {
474         ino_t ino = (ino_t) fileid;
475         if (sizeof(ino_t) < sizeof(u64))
476                 ino ^= fileid >> (sizeof(u64)-sizeof(ino_t)) * 8;
477         return ino;
478 }
479
480 /* NFS root */
481
482 extern void * nfs_root_data(void);
483
484 #define nfs_wait_event(clnt, wq, condition)                             \
485 ({                                                                      \
486         int __retval = 0;                                               \
487         if (clnt->cl_intr) {                                            \
488                 sigset_t oldmask;                                       \
489                 rpc_clnt_sigmask(clnt, &oldmask);                       \
490                 __retval = wait_event_interruptible(wq, condition);     \
491                 rpc_clnt_sigunmask(clnt, &oldmask);                     \
492         } else                                                          \
493                 wait_event(wq, condition);                              \
494         __retval;                                                       \
495 })
496
497 #define NFS_JUKEBOX_RETRY_TIME (5 * HZ)
498
499 #endif /* __KERNEL__ */
500
501 /*
502  * NFS debug flags
503  */
504 #define NFSDBG_VFS              0x0001
505 #define NFSDBG_DIRCACHE         0x0002
506 #define NFSDBG_LOOKUPCACHE      0x0004
507 #define NFSDBG_PAGECACHE        0x0008
508 #define NFSDBG_PROC             0x0010
509 #define NFSDBG_XDR              0x0020
510 #define NFSDBG_FILE             0x0040
511 #define NFSDBG_ROOT             0x0080
512 #define NFSDBG_CALLBACK         0x0100
513 #define NFSDBG_ALL              0xFFFF
514
515 #ifdef __KERNEL__
516 # undef ifdebug
517 # ifdef NFS_DEBUG
518 #  define ifdebug(fac)          if (unlikely(nfs_debug & NFSDBG_##fac))
519 # else
520 #  define ifdebug(fac)          if (0)
521 # endif
522 #endif /* __KERNEL */
523
524 #endif