blob: e4d6a8348adf5178a8d7d63b85a96fe22e0d129b [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;
David Howells08734042009-04-03 16:42:42 +010047 char *fscache_uniq;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040048
49 struct {
Chuck Lever4c568012007-12-10 14:59:28 -050050 struct sockaddr_storage address;
51 size_t addrlen;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040052 char *hostname;
Chuck Lever78fa7012008-03-14 14:10:15 -040053 u32 version;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040054 unsigned short port;
Chuck Lever78fa7012008-03-14 14:10:15 -040055 unsigned short protocol;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040056 } mount_server;
57
58 struct {
Chuck Lever4c568012007-12-10 14:59:28 -050059 struct sockaddr_storage address;
60 size_t addrlen;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040061 char *hostname;
62 char *export_path;
Chuck Leverf22d6d72008-03-14 14:10:22 -040063 unsigned short port;
Chuck Lever78fa7012008-03-14 14:10:15 -040064 unsigned short protocol;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040065 } nfs_server;
Eric Parisf9c3a382008-03-05 14:20:18 -050066
67 struct security_mnt_opts lsm_opts;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040068};
69
Chuck Lever146ec942008-12-23 15:21:34 -050070/* mount_clnt.c */
Chuck Leverc5d120f2008-12-23 15:21:35 -050071struct nfs_mount_request {
72 struct sockaddr *sap;
73 size_t salen;
74 char *hostname;
75 char *dirpath;
76 u32 version;
77 unsigned short protocol;
78 struct nfs_fh *fh;
Chuck Lever50a737f2008-12-23 15:21:37 -050079 int noresvport;
Chuck Leverc5d120f2008-12-23 15:21:35 -050080};
81
82extern int nfs_mount(struct nfs_mount_request *info);
Chuck Lever146ec942008-12-23 15:21:34 -050083
David Howells24c8dbb2006-08-22 20:06:10 -040084/* client.c */
David Howells54ceac42006-08-22 20:06:13 -040085extern struct rpc_program nfs_program;
86
David Howells24c8dbb2006-08-22 20:06:10 -040087extern void nfs_put_client(struct nfs_client *);
Chuck Leverff052642007-12-10 14:58:44 -050088extern struct nfs_client *nfs_find_client(const struct sockaddr *, u32);
Trond Myklebust3fbd67a2008-01-26 01:06:40 -050089extern struct nfs_client *nfs_find_client_next(struct nfs_client *);
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -040090extern struct nfs_server *nfs_create_server(
91 const struct nfs_parsed_mount_data *,
92 struct nfs_fh *);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -040093extern struct nfs_server *nfs4_create_server(
94 const struct nfs_parsed_mount_data *,
95 struct nfs_fh *);
David Howells54ceac42006-08-22 20:06:13 -040096extern struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *,
97 struct nfs_fh *);
98extern void nfs_free_server(struct nfs_server *server);
99extern struct nfs_server *nfs_clone_server(struct nfs_server *,
100 struct nfs_fh *,
101 struct nfs_fattr *);
David Howells6aaca562006-08-22 20:06:13 -0400102#ifdef CONFIG_PROC_FS
103extern int __init nfs_fs_proc_init(void);
104extern void nfs_fs_proc_exit(void);
105#else
106static inline int nfs_fs_proc_init(void)
107{
108 return 0;
109}
110static inline void nfs_fs_proc_exit(void)
111{
112}
113#endif
David Howells24c8dbb2006-08-22 20:06:10 -0400114
David Howells7d4e2742006-08-22 20:06:07 -0400115/* nfs4namespace.c */
David Howellsf7b422b2006-06-09 09:34:33 -0400116#ifdef CONFIG_NFS_V4
117extern struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry);
118#else
119static inline
120struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry)
121{
122 return ERR_PTR(-ENOENT);
123}
124#endif
125
126/* callback_xdr.c */
127extern struct svc_version nfs4_callback_version1;
128
129/* pagelist.c */
130extern int __init nfs_init_nfspagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700131extern void nfs_destroy_nfspagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400132extern int __init nfs_init_readpagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700133extern void nfs_destroy_readpagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400134extern int __init nfs_init_writepagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700135extern void nfs_destroy_writepagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400136
David Howellsf7b422b2006-06-09 09:34:33 -0400137extern int __init nfs_init_directcache(void);
David Brownell266bee82006-06-27 12:59:15 -0700138extern void nfs_destroy_directcache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400139
140/* nfs2xdr.c */
David Howells7d4e2742006-08-22 20:06:07 -0400141extern int nfs_stat_to_errno(int);
David Howellsf7b422b2006-06-09 09:34:33 -0400142extern struct rpc_procinfo nfs_procedures[];
Al Viro0dbb4c62006-10-19 23:28:49 -0700143extern __be32 * nfs_decode_dirent(__be32 *, struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400144
145/* nfs3xdr.c */
146extern struct rpc_procinfo nfs3_procedures[];
Al Viro0dbb4c62006-10-19 23:28:49 -0700147extern __be32 *nfs3_decode_dirent(__be32 *, struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400148
149/* nfs4xdr.c */
David Howells7d4e2742006-08-22 20:06:07 -0400150#ifdef CONFIG_NFS_V4
Al Viro0dbb4c62006-10-19 23:28:49 -0700151extern __be32 *nfs4_decode_dirent(__be32 *p, struct nfs_entry *entry, int plus);
David Howells7d4e2742006-08-22 20:06:07 -0400152#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400153
154/* nfs4proc.c */
Andrew Mortond75d5412006-06-25 02:41:26 -0700155#ifdef CONFIG_NFS_V4
David Howellsf7b422b2006-06-09 09:34:33 -0400156extern struct rpc_procinfo nfs4_procedures[];
Andrew Mortond75d5412006-06-25 02:41:26 -0700157#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400158
Trond Myklebust7fe5c392009-03-19 15:35:50 -0400159/* proc.c */
160void nfs_close_context(struct nfs_open_context *ctx, int is_sync);
161
Trond Myklebust979df722006-07-25 11:28:19 -0400162/* dir.c */
163extern int nfs_access_cache_shrinker(int nr_to_scan, gfp_t gfp_mask);
164
David Howellsf7b422b2006-06-09 09:34:33 -0400165/* inode.c */
Trond Myklebust57460062008-02-19 20:04:22 -0500166extern struct workqueue_struct *nfsiod_workqueue;
David Howellsf7b422b2006-06-09 09:34:33 -0400167extern struct inode *nfs_alloc_inode(struct super_block *sb);
168extern void nfs_destroy_inode(struct inode *);
169extern int nfs_write_inode(struct inode *,int);
170extern void nfs_clear_inode(struct inode *);
171#ifdef CONFIG_NFS_V4
172extern void nfs4_clear_inode(struct inode *);
173#endif
Trond Myklebustf41f7412008-06-11 17:39:04 -0400174void nfs_zap_acl_cache(struct inode *inode);
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400175extern int nfs_wait_bit_killable(void *word);
David Howellsf7b422b2006-06-09 09:34:33 -0400176
177/* super.c */
J. Bruce Fieldsea31a4432008-08-20 16:10:23 -0400178void nfs_parse_ip_address(char *, size_t, struct sockaddr *, size_t *);
David Howells54ceac42006-08-22 20:06:13 -0400179extern struct file_system_type nfs_xdev_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400180#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400181extern struct file_system_type nfs4_xdev_fs_type;
182extern struct file_system_type nfs4_referral_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400183#endif
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200184
David Howellsf7b422b2006-06-09 09:34:33 -0400185extern struct rpc_stat nfs_rpcstat;
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200186
David Howellsf7b422b2006-06-09 09:34:33 -0400187extern int __init register_nfs_fs(void);
188extern void __exit unregister_nfs_fs(void);
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400189extern void nfs_sb_active(struct super_block *sb);
190extern void nfs_sb_deactive(struct super_block *sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400191
192/* namespace.c */
David Howells54ceac42006-08-22 20:06:13 -0400193extern char *nfs_path(const char *base,
194 const struct dentry *droot,
195 const struct dentry *dentry,
David Howellsf7b422b2006-06-09 09:34:33 -0400196 char *buffer, ssize_t buflen);
197
David Howells54ceac42006-08-22 20:06:13 -0400198/* getroot.c */
199extern struct dentry *nfs_get_root(struct super_block *, struct nfs_fh *);
David Howells7d4e2742006-08-22 20:06:07 -0400200#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400201extern struct dentry *nfs4_get_root(struct super_block *, struct nfs_fh *);
202
203extern int nfs4_path_walk(struct nfs_server *server,
204 struct nfs_fh *mntfh,
205 const char *path);
David Howells7d4e2742006-08-22 20:06:07 -0400206#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400207
208/*
209 * Determine the device name as a string
210 */
211static inline char *nfs_devname(const struct vfsmount *mnt_parent,
David Howells54ceac42006-08-22 20:06:13 -0400212 const struct dentry *dentry,
213 char *buffer, ssize_t buflen)
David Howellsf7b422b2006-06-09 09:34:33 -0400214{
David Howells54ceac42006-08-22 20:06:13 -0400215 return nfs_path(mnt_parent->mnt_devname, mnt_parent->mnt_root,
216 dentry, buffer, buflen);
David Howellsf7b422b2006-06-09 09:34:33 -0400217}
218
219/*
220 * Determine the actual block size (and log2 thereof)
221 */
222static inline
223unsigned long nfs_block_bits(unsigned long bsize, unsigned char *nrbitsp)
224{
225 /* make sure blocksize is a power of two */
226 if ((bsize & (bsize - 1)) || nrbitsp) {
227 unsigned char nrbits;
228
229 for (nrbits = 31; nrbits && !(bsize & (1 << nrbits)); nrbits--)
230 ;
231 bsize = 1 << nrbits;
232 if (nrbitsp)
233 *nrbitsp = nrbits;
234 }
235
236 return bsize;
237}
238
239/*
240 * Calculate the number of 512byte blocks used.
241 */
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400242static inline blkcnt_t nfs_calc_block_size(u64 tsize)
David Howellsf7b422b2006-06-09 09:34:33 -0400243{
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400244 blkcnt_t used = (tsize + 511) >> 9;
David Howellsf7b422b2006-06-09 09:34:33 -0400245 return (used > ULONG_MAX) ? ULONG_MAX : used;
246}
247
248/*
249 * Compute and set NFS server blocksize
250 */
251static inline
252unsigned long nfs_block_size(unsigned long bsize, unsigned char *nrbitsp)
253{
254 if (bsize < NFS_MIN_FILE_IO_SIZE)
255 bsize = NFS_DEF_FILE_IO_SIZE;
256 else if (bsize >= NFS_MAX_FILE_IO_SIZE)
257 bsize = NFS_MAX_FILE_IO_SIZE;
258
259 return nfs_block_bits(bsize, nrbitsp);
260}
261
262/*
263 * Determine the maximum file size for a superblock
264 */
265static inline
266void nfs_super_set_maxbytes(struct super_block *sb, __u64 maxfilesize)
267{
268 sb->s_maxbytes = (loff_t)maxfilesize;
269 if (sb->s_maxbytes > MAX_LFS_FILESIZE || sb->s_maxbytes <= 0)
270 sb->s_maxbytes = MAX_LFS_FILESIZE;
271}
Trond Myklebust49a70f22006-12-05 00:35:38 -0500272
273/*
274 * Determine the number of bytes of data the page contains
275 */
276static inline
277unsigned int nfs_page_length(struct page *page)
278{
279 loff_t i_size = i_size_read(page->mapping->host);
280
281 if (i_size > 0) {
282 pgoff_t end_index = (i_size - 1) >> PAGE_CACHE_SHIFT;
283 if (page->index < end_index)
284 return PAGE_CACHE_SIZE;
285 if (page->index == end_index)
286 return ((i_size - 1) & ~PAGE_CACHE_MASK) + 1;
287 }
288 return 0;
289}
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400290
291/*
292 * Determine the number of pages in an array of length 'len' and
293 * with a base offset of 'base'
294 */
295static inline
296unsigned int nfs_page_array_len(unsigned int base, size_t len)
297{
298 return ((unsigned long)len + (unsigned long)base +
299 PAGE_SIZE - 1) >> PAGE_SHIFT;
300}
301
J. Bruce Fieldsea31a4432008-08-20 16:10:23 -0400302#define IPV6_SCOPE_DELIMITER '%'
J. Bruce Fieldsf0c929252008-08-20 16:10:22 -0400303
304/*
305 * Set the port number in an address. Be agnostic about the address
306 * family.
307 */
308static inline void nfs_set_port(struct sockaddr *sap, unsigned short port)
309{
J. Bruce Fields456018d2008-10-08 15:31:14 -0400310 struct sockaddr_in *ap = (struct sockaddr_in *)sap;
311 struct sockaddr_in6 *ap6 = (struct sockaddr_in6 *)sap;
312
J. Bruce Fieldsf0c929252008-08-20 16:10:22 -0400313 switch (sap->sa_family) {
J. Bruce Fields456018d2008-10-08 15:31:14 -0400314 case AF_INET:
315 ap->sin_port = htons(port);
316 break;
317 case AF_INET6:
318 ap6->sin6_port = htons(port);
319 break;
J. Bruce Fieldsf0c929252008-08-20 16:10:22 -0400320 }
321}