blob: f3b310e8ea03588eb2e3d0223380f7caf4971e3c [file] [log] [blame]
David Howellsf7b422b2006-06-09 09:34:33 -04001/*
2 * NFS internal definitions
3 */
4
5#include <linux/mount.h>
Eric Parisf9c3a382008-03-05 14:20:18 -05006#include <linux/security.h>
David Howellsf7b422b2006-06-09 09:34:33 -04007
David Howells08734042009-04-03 16:42:42 +01008#define NFS_MS_MASK (MS_RDONLY|MS_NOSUID|MS_NODEV|MS_NOEXEC|MS_SYNCHRONOUS)
9
David Howells54ceac42006-08-22 20:06:13 -040010struct nfs_string;
David Howells54ceac42006-08-22 20:06:13 -040011
12/* Maximum number of readahead requests
13 * FIXME: this should really be a sysctl so that users may tune it to suit
14 * their needs. People that do NFS over a slow network, might for
15 * instance want to reduce it to something closer to 1 for improved
16 * interactive response.
17 */
18#define NFS_MAX_READAHEAD (RPC_DEF_SLOT_TABLE - 1)
19
David Howellsf7b422b2006-06-09 09:34:33 -040020struct nfs_clone_mount {
21 const struct super_block *sb;
22 const struct dentry *dentry;
23 struct nfs_fh *fh;
24 struct nfs_fattr *fattr;
25 char *hostname;
26 char *mnt_path;
Chuck Lever6677d092007-12-10 14:59:06 -050027 struct sockaddr *addr;
28 size_t addrlen;
David Howellsf7b422b2006-06-09 09:34:33 -040029 rpc_authflavor_t authflavor;
30};
31
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040032/*
33 * In-kernel mount arguments
34 */
35struct nfs_parsed_mount_data {
36 int flags;
37 int rsize, wsize;
38 int timeo, retrans;
39 int acregmin, acregmax,
40 acdirmin, acdirmax;
41 int namlen;
David Howellsb797cac2009-04-03 16:42:48 +010042 unsigned int options;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040043 unsigned int bsize;
44 unsigned int auth_flavor_len;
45 rpc_authflavor_t auth_flavors[1];
46 char *client_address;
Mike Sager3fd5be92009-04-01 09:21:48 -040047 unsigned int minorversion;
David Howells08734042009-04-03 16:42:42 +010048 char *fscache_uniq;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040049
50 struct {
Chuck Lever4c568012007-12-10 14:59:28 -050051 struct sockaddr_storage address;
52 size_t addrlen;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040053 char *hostname;
Chuck Lever78fa7012008-03-14 14:10:15 -040054 u32 version;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040055 unsigned short port;
Chuck Lever78fa7012008-03-14 14:10:15 -040056 unsigned short protocol;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040057 } mount_server;
58
59 struct {
Chuck Lever4c568012007-12-10 14:59:28 -050060 struct sockaddr_storage address;
61 size_t addrlen;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040062 char *hostname;
63 char *export_path;
Chuck Leverf22d6d72008-03-14 14:10:22 -040064 unsigned short port;
Chuck Lever78fa7012008-03-14 14:10:15 -040065 unsigned short protocol;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040066 } nfs_server;
Eric Parisf9c3a382008-03-05 14:20:18 -050067
68 struct security_mnt_opts lsm_opts;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040069};
70
Chuck Lever146ec942008-12-23 15:21:34 -050071/* mount_clnt.c */
Chuck Leverc5d120f2008-12-23 15:21:35 -050072struct nfs_mount_request {
73 struct sockaddr *sap;
74 size_t salen;
75 char *hostname;
76 char *dirpath;
77 u32 version;
78 unsigned short protocol;
79 struct nfs_fh *fh;
Chuck Lever50a737f2008-12-23 15:21:37 -050080 int noresvport;
Chuck Leverc5d120f2008-12-23 15:21:35 -050081};
82
83extern int nfs_mount(struct nfs_mount_request *info);
Chuck Lever146ec942008-12-23 15:21:34 -050084
David Howells24c8dbb2006-08-22 20:06:10 -040085/* client.c */
David Howells54ceac42006-08-22 20:06:13 -040086extern struct rpc_program nfs_program;
87
David Howells24c8dbb2006-08-22 20:06:10 -040088extern void nfs_put_client(struct nfs_client *);
Chuck Leverff052642007-12-10 14:58:44 -050089extern struct nfs_client *nfs_find_client(const struct sockaddr *, u32);
Trond Myklebust3fbd67a2008-01-26 01:06:40 -050090extern struct nfs_client *nfs_find_client_next(struct nfs_client *);
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -040091extern struct nfs_server *nfs_create_server(
92 const struct nfs_parsed_mount_data *,
93 struct nfs_fh *);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -040094extern struct nfs_server *nfs4_create_server(
95 const struct nfs_parsed_mount_data *,
96 struct nfs_fh *);
David Howells54ceac42006-08-22 20:06:13 -040097extern struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *,
98 struct nfs_fh *);
99extern void nfs_free_server(struct nfs_server *server);
100extern struct nfs_server *nfs_clone_server(struct nfs_server *,
101 struct nfs_fh *,
102 struct nfs_fattr *);
Andy Adamson76db6d92009-04-01 09:22:38 -0400103extern void nfs_mark_client_ready(struct nfs_client *clp, int state);
David Howells6aaca562006-08-22 20:06:13 -0400104#ifdef CONFIG_PROC_FS
105extern int __init nfs_fs_proc_init(void);
106extern void nfs_fs_proc_exit(void);
107#else
108static inline int nfs_fs_proc_init(void)
109{
110 return 0;
111}
112static inline void nfs_fs_proc_exit(void)
113{
114}
115#endif
David Howells24c8dbb2006-08-22 20:06:10 -0400116
David Howells7d4e2742006-08-22 20:06:07 -0400117/* nfs4namespace.c */
David Howellsf7b422b2006-06-09 09:34:33 -0400118#ifdef CONFIG_NFS_V4
119extern struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry);
120#else
121static inline
122struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry)
123{
124 return ERR_PTR(-ENOENT);
125}
126#endif
127
128/* callback_xdr.c */
129extern struct svc_version nfs4_callback_version1;
130
131/* pagelist.c */
132extern int __init nfs_init_nfspagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700133extern void nfs_destroy_nfspagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400134extern int __init nfs_init_readpagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700135extern void nfs_destroy_readpagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400136extern int __init nfs_init_writepagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700137extern void nfs_destroy_writepagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400138
David Howellsf7b422b2006-06-09 09:34:33 -0400139extern int __init nfs_init_directcache(void);
David Brownell266bee82006-06-27 12:59:15 -0700140extern void nfs_destroy_directcache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400141
142/* nfs2xdr.c */
David Howells7d4e2742006-08-22 20:06:07 -0400143extern int nfs_stat_to_errno(int);
David Howellsf7b422b2006-06-09 09:34:33 -0400144extern struct rpc_procinfo nfs_procedures[];
Al Viro0dbb4c62006-10-19 23:28:49 -0700145extern __be32 * nfs_decode_dirent(__be32 *, struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400146
147/* nfs3xdr.c */
148extern struct rpc_procinfo nfs3_procedures[];
Al Viro0dbb4c62006-10-19 23:28:49 -0700149extern __be32 *nfs3_decode_dirent(__be32 *, struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400150
151/* nfs4xdr.c */
David Howells7d4e2742006-08-22 20:06:07 -0400152#ifdef CONFIG_NFS_V4
Al Viro0dbb4c62006-10-19 23:28:49 -0700153extern __be32 *nfs4_decode_dirent(__be32 *p, struct nfs_entry *entry, int plus);
David Howells7d4e2742006-08-22 20:06:07 -0400154#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400155
156/* nfs4proc.c */
Andrew Mortond75d5412006-06-25 02:41:26 -0700157#ifdef CONFIG_NFS_V4
David Howellsf7b422b2006-06-09 09:34:33 -0400158extern struct rpc_procinfo nfs4_procedures[];
Andrew Mortond75d5412006-06-25 02:41:26 -0700159#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400160
Trond Myklebust7fe5c392009-03-19 15:35:50 -0400161/* proc.c */
162void nfs_close_context(struct nfs_open_context *ctx, int is_sync);
163
Trond Myklebust979df722006-07-25 11:28:19 -0400164/* dir.c */
165extern int nfs_access_cache_shrinker(int nr_to_scan, gfp_t gfp_mask);
166
David Howellsf7b422b2006-06-09 09:34:33 -0400167/* inode.c */
Trond Myklebust57460062008-02-19 20:04:22 -0500168extern struct workqueue_struct *nfsiod_workqueue;
David Howellsf7b422b2006-06-09 09:34:33 -0400169extern struct inode *nfs_alloc_inode(struct super_block *sb);
170extern void nfs_destroy_inode(struct inode *);
171extern int nfs_write_inode(struct inode *,int);
172extern void nfs_clear_inode(struct inode *);
173#ifdef CONFIG_NFS_V4
174extern void nfs4_clear_inode(struct inode *);
175#endif
Trond Myklebustf41f7412008-06-11 17:39:04 -0400176void nfs_zap_acl_cache(struct inode *inode);
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400177extern int nfs_wait_bit_killable(void *word);
David Howellsf7b422b2006-06-09 09:34:33 -0400178
179/* super.c */
J. Bruce Fieldsea31a4432008-08-20 16:10:23 -0400180void nfs_parse_ip_address(char *, size_t, struct sockaddr *, size_t *);
David Howells54ceac42006-08-22 20:06:13 -0400181extern struct file_system_type nfs_xdev_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400182#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400183extern struct file_system_type nfs4_xdev_fs_type;
184extern struct file_system_type nfs4_referral_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400185#endif
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200186
David Howellsf7b422b2006-06-09 09:34:33 -0400187extern struct rpc_stat nfs_rpcstat;
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200188
David Howellsf7b422b2006-06-09 09:34:33 -0400189extern int __init register_nfs_fs(void);
190extern void __exit unregister_nfs_fs(void);
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400191extern void nfs_sb_active(struct super_block *sb);
192extern void nfs_sb_deactive(struct super_block *sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400193
194/* namespace.c */
David Howells54ceac42006-08-22 20:06:13 -0400195extern char *nfs_path(const char *base,
196 const struct dentry *droot,
197 const struct dentry *dentry,
David Howellsf7b422b2006-06-09 09:34:33 -0400198 char *buffer, ssize_t buflen);
199
David Howells54ceac42006-08-22 20:06:13 -0400200/* getroot.c */
201extern struct dentry *nfs_get_root(struct super_block *, struct nfs_fh *);
David Howells7d4e2742006-08-22 20:06:07 -0400202#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400203extern struct dentry *nfs4_get_root(struct super_block *, struct nfs_fh *);
204
205extern int nfs4_path_walk(struct nfs_server *server,
206 struct nfs_fh *mntfh,
207 const char *path);
David Howells7d4e2742006-08-22 20:06:07 -0400208#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400209
Andy Adamsonf11c88a2009-04-01 09:22:25 -0400210/* read.c */
211extern void nfs_read_prepare(struct rpc_task *task, void *calldata);
212
Andy Adamsondef6ed72009-04-01 09:22:26 -0400213/* write.c */
214extern void nfs_write_prepare(struct rpc_task *task, void *calldata);
215
Andy Adamsoncccef3b2009-04-01 09:22:03 -0400216/* nfs4proc.c */
217extern int _nfs4_call_sync(struct nfs_server *server,
218 struct rpc_message *msg,
219 struct nfs4_sequence_args *args,
220 struct nfs4_sequence_res *res,
221 int cache_reply);
222extern int _nfs4_call_sync_session(struct nfs_server *server,
223 struct rpc_message *msg,
224 struct nfs4_sequence_args *args,
225 struct nfs4_sequence_res *res,
226 int cache_reply);
227
David Howellsf7b422b2006-06-09 09:34:33 -0400228/*
Andy Adamson557134a2009-04-01 09:21:53 -0400229 * Determine if sessions are in use.
230 */
231static inline int nfs4_has_session(const struct nfs_client *clp)
232{
233#ifdef CONFIG_NFS_V4_1
234 if (clp->cl_session)
235 return 1;
236#endif /* CONFIG_NFS_V4_1 */
237 return 0;
238}
239
Andy Adamson13615872009-04-01 09:22:17 -0400240#ifdef CONFIG_NFS_V4_1
241extern void nfs41_sequence_free_slot(const struct nfs_client *,
242 struct nfs4_sequence_res *res);
243#endif /* CONFIG_NFS_V4_1 */
244
245static inline void nfs4_sequence_free_slot(const struct nfs_client *clp,
246 struct nfs4_sequence_res *res)
247{
248#ifdef CONFIG_NFS_V4_1
249 if (nfs4_has_session(clp))
250 nfs41_sequence_free_slot(clp, res);
251#endif /* CONFIG_NFS_V4_1 */
252}
253
Andy Adamson557134a2009-04-01 09:21:53 -0400254/*
David Howellsf7b422b2006-06-09 09:34:33 -0400255 * Determine the device name as a string
256 */
257static inline char *nfs_devname(const struct vfsmount *mnt_parent,
David Howells54ceac42006-08-22 20:06:13 -0400258 const struct dentry *dentry,
259 char *buffer, ssize_t buflen)
David Howellsf7b422b2006-06-09 09:34:33 -0400260{
David Howells54ceac42006-08-22 20:06:13 -0400261 return nfs_path(mnt_parent->mnt_devname, mnt_parent->mnt_root,
262 dentry, buffer, buflen);
David Howellsf7b422b2006-06-09 09:34:33 -0400263}
264
265/*
266 * Determine the actual block size (and log2 thereof)
267 */
268static inline
269unsigned long nfs_block_bits(unsigned long bsize, unsigned char *nrbitsp)
270{
271 /* make sure blocksize is a power of two */
272 if ((bsize & (bsize - 1)) || nrbitsp) {
273 unsigned char nrbits;
274
275 for (nrbits = 31; nrbits && !(bsize & (1 << nrbits)); nrbits--)
276 ;
277 bsize = 1 << nrbits;
278 if (nrbitsp)
279 *nrbitsp = nrbits;
280 }
281
282 return bsize;
283}
284
285/*
286 * Calculate the number of 512byte blocks used.
287 */
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400288static inline blkcnt_t nfs_calc_block_size(u64 tsize)
David Howellsf7b422b2006-06-09 09:34:33 -0400289{
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400290 blkcnt_t used = (tsize + 511) >> 9;
David Howellsf7b422b2006-06-09 09:34:33 -0400291 return (used > ULONG_MAX) ? ULONG_MAX : used;
292}
293
294/*
295 * Compute and set NFS server blocksize
296 */
297static inline
298unsigned long nfs_block_size(unsigned long bsize, unsigned char *nrbitsp)
299{
300 if (bsize < NFS_MIN_FILE_IO_SIZE)
301 bsize = NFS_DEF_FILE_IO_SIZE;
302 else if (bsize >= NFS_MAX_FILE_IO_SIZE)
303 bsize = NFS_MAX_FILE_IO_SIZE;
304
305 return nfs_block_bits(bsize, nrbitsp);
306}
307
308/*
309 * Determine the maximum file size for a superblock
310 */
311static inline
312void nfs_super_set_maxbytes(struct super_block *sb, __u64 maxfilesize)
313{
314 sb->s_maxbytes = (loff_t)maxfilesize;
315 if (sb->s_maxbytes > MAX_LFS_FILESIZE || sb->s_maxbytes <= 0)
316 sb->s_maxbytes = MAX_LFS_FILESIZE;
317}
Trond Myklebust49a70f22006-12-05 00:35:38 -0500318
319/*
320 * Determine the number of bytes of data the page contains
321 */
322static inline
323unsigned int nfs_page_length(struct page *page)
324{
325 loff_t i_size = i_size_read(page->mapping->host);
326
327 if (i_size > 0) {
328 pgoff_t end_index = (i_size - 1) >> PAGE_CACHE_SHIFT;
329 if (page->index < end_index)
330 return PAGE_CACHE_SIZE;
331 if (page->index == end_index)
332 return ((i_size - 1) & ~PAGE_CACHE_MASK) + 1;
333 }
334 return 0;
335}
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400336
337/*
338 * Determine the number of pages in an array of length 'len' and
339 * with a base offset of 'base'
340 */
341static inline
342unsigned int nfs_page_array_len(unsigned int base, size_t len)
343{
344 return ((unsigned long)len + (unsigned long)base +
345 PAGE_SIZE - 1) >> PAGE_SHIFT;
346}
347
J. Bruce Fieldsea31a4432008-08-20 16:10:23 -0400348#define IPV6_SCOPE_DELIMITER '%'
J. Bruce Fieldsf0c929252008-08-20 16:10:22 -0400349
350/*
351 * Set the port number in an address. Be agnostic about the address
352 * family.
353 */
354static inline void nfs_set_port(struct sockaddr *sap, unsigned short port)
355{
J. Bruce Fields456018d2008-10-08 15:31:14 -0400356 struct sockaddr_in *ap = (struct sockaddr_in *)sap;
357 struct sockaddr_in6 *ap6 = (struct sockaddr_in6 *)sap;
358
J. Bruce Fieldsf0c929252008-08-20 16:10:22 -0400359 switch (sap->sa_family) {
J. Bruce Fields456018d2008-10-08 15:31:14 -0400360 case AF_INET:
361 ap->sin_port = htons(port);
362 break;
363 case AF_INET6:
364 ap6->sin6_port = htons(port);
365 break;
J. Bruce Fieldsf0c929252008-08-20 16:10:22 -0400366 }
367}