blob: 78508f29c03a061bbdb59e0bcbe659d1e8f6e40c [file] [log] [blame]
David Howellsf7b422b2006-06-09 09:34:33 -04001/*
2 * NFS internal definitions
3 */
4
Andy Adamsoneedc0202009-04-01 09:22:41 -04005#include "nfs4_fs.h"
David Howellsf7b422b2006-06-09 09:34:33 -04006#include <linux/mount.h>
Eric Parisf9c3a382008-03-05 14:20:18 -05007#include <linux/security.h>
David Howellsf7b422b2006-06-09 09:34:33 -04008
David Howells08734042009-04-03 16:42:42 +01009#define NFS_MS_MASK (MS_RDONLY|MS_NOSUID|MS_NODEV|MS_NOEXEC|MS_SYNCHRONOUS)
10
David Howells54ceac42006-08-22 20:06:13 -040011struct nfs_string;
David Howells54ceac42006-08-22 20:06:13 -040012
13/* Maximum number of readahead requests
14 * FIXME: this should really be a sysctl so that users may tune it to suit
15 * their needs. People that do NFS over a slow network, might for
16 * instance want to reduce it to something closer to 1 for improved
17 * interactive response.
18 */
19#define NFS_MAX_READAHEAD (RPC_DEF_SLOT_TABLE - 1)
20
Andy Adamsoneedc0202009-04-01 09:22:41 -040021/*
22 * Determine if sessions are in use.
23 */
24static inline int nfs4_has_session(const struct nfs_client *clp)
25{
26#ifdef CONFIG_NFS_V4_1
27 if (clp->cl_session)
28 return 1;
29#endif /* CONFIG_NFS_V4_1 */
30 return 0;
31}
32
David Howellsf7b422b2006-06-09 09:34:33 -040033struct nfs_clone_mount {
34 const struct super_block *sb;
35 const struct dentry *dentry;
36 struct nfs_fh *fh;
37 struct nfs_fattr *fattr;
38 char *hostname;
39 char *mnt_path;
Chuck Lever6677d092007-12-10 14:59:06 -050040 struct sockaddr *addr;
41 size_t addrlen;
David Howellsf7b422b2006-06-09 09:34:33 -040042 rpc_authflavor_t authflavor;
43};
44
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040045/*
46 * In-kernel mount arguments
47 */
48struct nfs_parsed_mount_data {
49 int flags;
50 int rsize, wsize;
51 int timeo, retrans;
52 int acregmin, acregmax,
53 acdirmin, acdirmax;
54 int namlen;
David Howellsb797cac2009-04-03 16:42:48 +010055 unsigned int options;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040056 unsigned int bsize;
57 unsigned int auth_flavor_len;
58 rpc_authflavor_t auth_flavors[1];
59 char *client_address;
Mike Sager3fd5be92009-04-01 09:21:48 -040060 unsigned int minorversion;
David Howells08734042009-04-03 16:42:42 +010061 char *fscache_uniq;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040062
63 struct {
Chuck Lever4c568012007-12-10 14:59:28 -050064 struct sockaddr_storage address;
65 size_t addrlen;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040066 char *hostname;
Chuck Lever78fa7012008-03-14 14:10:15 -040067 u32 version;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040068 unsigned short port;
Chuck Lever78fa7012008-03-14 14:10:15 -040069 unsigned short protocol;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040070 } mount_server;
71
72 struct {
Chuck Lever4c568012007-12-10 14:59:28 -050073 struct sockaddr_storage address;
74 size_t addrlen;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040075 char *hostname;
76 char *export_path;
Chuck Leverf22d6d72008-03-14 14:10:22 -040077 unsigned short port;
Chuck Lever78fa7012008-03-14 14:10:15 -040078 unsigned short protocol;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040079 } nfs_server;
Eric Parisf9c3a382008-03-05 14:20:18 -050080
81 struct security_mnt_opts lsm_opts;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040082};
83
Chuck Lever146ec942008-12-23 15:21:34 -050084/* mount_clnt.c */
Chuck Leverc5d120f2008-12-23 15:21:35 -050085struct nfs_mount_request {
86 struct sockaddr *sap;
87 size_t salen;
88 char *hostname;
89 char *dirpath;
90 u32 version;
91 unsigned short protocol;
92 struct nfs_fh *fh;
Chuck Lever50a737f2008-12-23 15:21:37 -050093 int noresvport;
Chuck Leverc5d120f2008-12-23 15:21:35 -050094};
95
96extern int nfs_mount(struct nfs_mount_request *info);
Chuck Lever146ec942008-12-23 15:21:34 -050097
David Howells24c8dbb2006-08-22 20:06:10 -040098/* client.c */
David Howells54ceac42006-08-22 20:06:13 -040099extern struct rpc_program nfs_program;
100
David Howells24c8dbb2006-08-22 20:06:10 -0400101extern void nfs_put_client(struct nfs_client *);
Chuck Leverff052642007-12-10 14:58:44 -0500102extern struct nfs_client *nfs_find_client(const struct sockaddr *, u32);
Trond Myklebust3fbd67a2008-01-26 01:06:40 -0500103extern struct nfs_client *nfs_find_client_next(struct nfs_client *);
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -0400104extern struct nfs_server *nfs_create_server(
105 const struct nfs_parsed_mount_data *,
106 struct nfs_fh *);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -0400107extern struct nfs_server *nfs4_create_server(
108 const struct nfs_parsed_mount_data *,
109 struct nfs_fh *);
David Howells54ceac42006-08-22 20:06:13 -0400110extern struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *,
111 struct nfs_fh *);
112extern void nfs_free_server(struct nfs_server *server);
113extern struct nfs_server *nfs_clone_server(struct nfs_server *,
114 struct nfs_fh *,
115 struct nfs_fattr *);
Andy Adamson76db6d92009-04-01 09:22:38 -0400116extern void nfs_mark_client_ready(struct nfs_client *clp, int state);
David Howells6aaca562006-08-22 20:06:13 -0400117#ifdef CONFIG_PROC_FS
118extern int __init nfs_fs_proc_init(void);
119extern void nfs_fs_proc_exit(void);
120#else
121static inline int nfs_fs_proc_init(void)
122{
123 return 0;
124}
125static inline void nfs_fs_proc_exit(void)
126{
127}
128#endif
David Howells24c8dbb2006-08-22 20:06:10 -0400129
David Howells7d4e2742006-08-22 20:06:07 -0400130/* nfs4namespace.c */
David Howellsf7b422b2006-06-09 09:34:33 -0400131#ifdef CONFIG_NFS_V4
132extern struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry);
133#else
134static inline
135struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry)
136{
137 return ERR_PTR(-ENOENT);
138}
139#endif
140
141/* callback_xdr.c */
142extern struct svc_version nfs4_callback_version1;
143
144/* pagelist.c */
145extern int __init nfs_init_nfspagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700146extern void nfs_destroy_nfspagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400147extern int __init nfs_init_readpagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700148extern void nfs_destroy_readpagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400149extern int __init nfs_init_writepagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700150extern void nfs_destroy_writepagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400151
David Howellsf7b422b2006-06-09 09:34:33 -0400152extern int __init nfs_init_directcache(void);
David Brownell266bee82006-06-27 12:59:15 -0700153extern void nfs_destroy_directcache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400154
155/* nfs2xdr.c */
David Howells7d4e2742006-08-22 20:06:07 -0400156extern int nfs_stat_to_errno(int);
David Howellsf7b422b2006-06-09 09:34:33 -0400157extern struct rpc_procinfo nfs_procedures[];
Al Viro0dbb4c62006-10-19 23:28:49 -0700158extern __be32 * nfs_decode_dirent(__be32 *, struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400159
160/* nfs3xdr.c */
161extern struct rpc_procinfo nfs3_procedures[];
Al Viro0dbb4c62006-10-19 23:28:49 -0700162extern __be32 *nfs3_decode_dirent(__be32 *, struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400163
Andy Adamsoneedc0202009-04-01 09:22:41 -0400164/* nfs4proc.c */
165static inline void nfs4_restart_rpc(struct rpc_task *task,
166 const struct nfs_client *clp)
167{
168#ifdef CONFIG_NFS_V4_1
169 if (nfs4_has_session(clp) &&
170 test_bit(NFS4CLNT_SESSION_SETUP, &clp->cl_state)) {
171 rpc_restart_call_prepare(task);
172 return;
173 }
174#endif /* CONFIG_NFS_V4_1 */
175 rpc_restart_call(task);
176}
177
David Howellsf7b422b2006-06-09 09:34:33 -0400178/* nfs4xdr.c */
David Howells7d4e2742006-08-22 20:06:07 -0400179#ifdef CONFIG_NFS_V4
Al Viro0dbb4c62006-10-19 23:28:49 -0700180extern __be32 *nfs4_decode_dirent(__be32 *p, struct nfs_entry *entry, int plus);
David Howells7d4e2742006-08-22 20:06:07 -0400181#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400182
183/* nfs4proc.c */
Andrew Mortond75d5412006-06-25 02:41:26 -0700184#ifdef CONFIG_NFS_V4
David Howellsf7b422b2006-06-09 09:34:33 -0400185extern struct rpc_procinfo nfs4_procedures[];
Andrew Mortond75d5412006-06-25 02:41:26 -0700186#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400187
Trond Myklebust7fe5c392009-03-19 15:35:50 -0400188/* proc.c */
189void nfs_close_context(struct nfs_open_context *ctx, int is_sync);
190
Trond Myklebust979df722006-07-25 11:28:19 -0400191/* dir.c */
192extern int nfs_access_cache_shrinker(int nr_to_scan, gfp_t gfp_mask);
193
David Howellsf7b422b2006-06-09 09:34:33 -0400194/* inode.c */
Trond Myklebust57460062008-02-19 20:04:22 -0500195extern struct workqueue_struct *nfsiod_workqueue;
David Howellsf7b422b2006-06-09 09:34:33 -0400196extern struct inode *nfs_alloc_inode(struct super_block *sb);
197extern void nfs_destroy_inode(struct inode *);
198extern int nfs_write_inode(struct inode *,int);
199extern void nfs_clear_inode(struct inode *);
200#ifdef CONFIG_NFS_V4
201extern void nfs4_clear_inode(struct inode *);
202#endif
Trond Myklebustf41f7412008-06-11 17:39:04 -0400203void nfs_zap_acl_cache(struct inode *inode);
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400204extern int nfs_wait_bit_killable(void *word);
David Howellsf7b422b2006-06-09 09:34:33 -0400205
206/* super.c */
J. Bruce Fieldsea31a4432008-08-20 16:10:23 -0400207void nfs_parse_ip_address(char *, size_t, struct sockaddr *, size_t *);
David Howells54ceac42006-08-22 20:06:13 -0400208extern struct file_system_type nfs_xdev_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400209#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400210extern struct file_system_type nfs4_xdev_fs_type;
211extern struct file_system_type nfs4_referral_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400212#endif
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200213
David Howellsf7b422b2006-06-09 09:34:33 -0400214extern struct rpc_stat nfs_rpcstat;
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200215
David Howellsf7b422b2006-06-09 09:34:33 -0400216extern int __init register_nfs_fs(void);
217extern void __exit unregister_nfs_fs(void);
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400218extern void nfs_sb_active(struct super_block *sb);
219extern void nfs_sb_deactive(struct super_block *sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400220
221/* namespace.c */
David Howells54ceac42006-08-22 20:06:13 -0400222extern char *nfs_path(const char *base,
223 const struct dentry *droot,
224 const struct dentry *dentry,
David Howellsf7b422b2006-06-09 09:34:33 -0400225 char *buffer, ssize_t buflen);
226
David Howells54ceac42006-08-22 20:06:13 -0400227/* getroot.c */
228extern struct dentry *nfs_get_root(struct super_block *, struct nfs_fh *);
David Howells7d4e2742006-08-22 20:06:07 -0400229#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400230extern struct dentry *nfs4_get_root(struct super_block *, struct nfs_fh *);
231
232extern int nfs4_path_walk(struct nfs_server *server,
233 struct nfs_fh *mntfh,
234 const char *path);
David Howells7d4e2742006-08-22 20:06:07 -0400235#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400236
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400237/* read.c */
238extern void nfs_read_prepare(struct rpc_task *task, void *calldata);
239
Andy Adamsondef6ed72009-04-01 09:22:26 -0400240/* write.c */
241extern void nfs_write_prepare(struct rpc_task *task, void *calldata);
242
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400243/* nfs4proc.c */
244extern int _nfs4_call_sync(struct nfs_server *server,
245 struct rpc_message *msg,
246 struct nfs4_sequence_args *args,
247 struct nfs4_sequence_res *res,
248 int cache_reply);
249extern int _nfs4_call_sync_session(struct nfs_server *server,
250 struct rpc_message *msg,
251 struct nfs4_sequence_args *args,
252 struct nfs4_sequence_res *res,
253 int cache_reply);
254
Andy Adamson13615872009-04-01 09:22:17 -0400255#ifdef CONFIG_NFS_V4_1
256extern void nfs41_sequence_free_slot(const struct nfs_client *,
257 struct nfs4_sequence_res *res);
258#endif /* CONFIG_NFS_V4_1 */
259
260static inline void nfs4_sequence_free_slot(const struct nfs_client *clp,
261 struct nfs4_sequence_res *res)
262{
263#ifdef CONFIG_NFS_V4_1
264 if (nfs4_has_session(clp))
265 nfs41_sequence_free_slot(clp, res);
266#endif /* CONFIG_NFS_V4_1 */
267}
268
Andy Adamson557134a2009-04-01 09:21:53 -0400269/*
David Howellsf7b422b2006-06-09 09:34:33 -0400270 * Determine the device name as a string
271 */
272static inline char *nfs_devname(const struct vfsmount *mnt_parent,
David Howells54ceac42006-08-22 20:06:13 -0400273 const struct dentry *dentry,
274 char *buffer, ssize_t buflen)
David Howellsf7b422b2006-06-09 09:34:33 -0400275{
David Howells54ceac42006-08-22 20:06:13 -0400276 return nfs_path(mnt_parent->mnt_devname, mnt_parent->mnt_root,
277 dentry, buffer, buflen);
David Howellsf7b422b2006-06-09 09:34:33 -0400278}
279
280/*
281 * Determine the actual block size (and log2 thereof)
282 */
283static inline
284unsigned long nfs_block_bits(unsigned long bsize, unsigned char *nrbitsp)
285{
286 /* make sure blocksize is a power of two */
287 if ((bsize & (bsize - 1)) || nrbitsp) {
288 unsigned char nrbits;
289
290 for (nrbits = 31; nrbits && !(bsize & (1 << nrbits)); nrbits--)
291 ;
292 bsize = 1 << nrbits;
293 if (nrbitsp)
294 *nrbitsp = nrbits;
295 }
296
297 return bsize;
298}
299
300/*
301 * Calculate the number of 512byte blocks used.
302 */
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400303static inline blkcnt_t nfs_calc_block_size(u64 tsize)
David Howellsf7b422b2006-06-09 09:34:33 -0400304{
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400305 blkcnt_t used = (tsize + 511) >> 9;
David Howellsf7b422b2006-06-09 09:34:33 -0400306 return (used > ULONG_MAX) ? ULONG_MAX : used;
307}
308
309/*
310 * Compute and set NFS server blocksize
311 */
312static inline
313unsigned long nfs_block_size(unsigned long bsize, unsigned char *nrbitsp)
314{
315 if (bsize < NFS_MIN_FILE_IO_SIZE)
316 bsize = NFS_DEF_FILE_IO_SIZE;
317 else if (bsize >= NFS_MAX_FILE_IO_SIZE)
318 bsize = NFS_MAX_FILE_IO_SIZE;
319
320 return nfs_block_bits(bsize, nrbitsp);
321}
322
323/*
324 * Determine the maximum file size for a superblock
325 */
326static inline
327void nfs_super_set_maxbytes(struct super_block *sb, __u64 maxfilesize)
328{
329 sb->s_maxbytes = (loff_t)maxfilesize;
330 if (sb->s_maxbytes > MAX_LFS_FILESIZE || sb->s_maxbytes <= 0)
331 sb->s_maxbytes = MAX_LFS_FILESIZE;
332}
Trond Myklebust49a70f22006-12-05 00:35:38 -0500333
334/*
335 * Determine the number of bytes of data the page contains
336 */
337static inline
338unsigned int nfs_page_length(struct page *page)
339{
340 loff_t i_size = i_size_read(page->mapping->host);
341
342 if (i_size > 0) {
343 pgoff_t end_index = (i_size - 1) >> PAGE_CACHE_SHIFT;
344 if (page->index < end_index)
345 return PAGE_CACHE_SIZE;
346 if (page->index == end_index)
347 return ((i_size - 1) & ~PAGE_CACHE_MASK) + 1;
348 }
349 return 0;
350}
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400351
352/*
353 * Determine the number of pages in an array of length 'len' and
354 * with a base offset of 'base'
355 */
356static inline
357unsigned int nfs_page_array_len(unsigned int base, size_t len)
358{
359 return ((unsigned long)len + (unsigned long)base +
360 PAGE_SIZE - 1) >> PAGE_SHIFT;
361}
362
J. Bruce Fieldsea31a4432008-08-20 16:10:23 -0400363#define IPV6_SCOPE_DELIMITER '%'
J. Bruce Fieldsf0c929252008-08-20 16:10:22 -0400364
365/*
366 * Set the port number in an address. Be agnostic about the address
367 * family.
368 */
369static inline void nfs_set_port(struct sockaddr *sap, unsigned short port)
370{
J. Bruce Fields456018d2008-10-08 15:31:14 -0400371 struct sockaddr_in *ap = (struct sockaddr_in *)sap;
372 struct sockaddr_in6 *ap6 = (struct sockaddr_in6 *)sap;
373
J. Bruce Fieldsf0c929252008-08-20 16:10:22 -0400374 switch (sap->sa_family) {
J. Bruce Fields456018d2008-10-08 15:31:14 -0400375 case AF_INET:
376 ap->sin_port = htons(port);
377 break;
378 case AF_INET6:
379 ap6->sin6_port = htons(port);
380 break;
J. Bruce Fieldsf0c929252008-08-20 16:10:22 -0400381 }
382}