blob: 10cf1110df481892b09298baf5765874909ff0df [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/*
Chuck Levera14017d2009-06-17 18:02:12 -070033 * Note: RFC 1813 doesn't limit the number of auth flavors that
34 * a server can return, so make something up.
35 */
36#define NFS_MAX_SECFLAVORS (12)
37
38/*
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040039 * In-kernel mount arguments
40 */
41struct nfs_parsed_mount_data {
42 int flags;
43 int rsize, wsize;
44 int timeo, retrans;
45 int acregmin, acregmax,
46 acdirmin, acdirmax;
47 int namlen;
David Howellsb797cac2009-04-03 16:42:48 +010048 unsigned int options;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040049 unsigned int bsize;
50 unsigned int auth_flavor_len;
51 rpc_authflavor_t auth_flavors[1];
52 char *client_address;
David Howells08734042009-04-03 16:42:42 +010053 char *fscache_uniq;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040054
55 struct {
Chuck Lever4c568012007-12-10 14:59:28 -050056 struct sockaddr_storage address;
57 size_t addrlen;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040058 char *hostname;
Chuck Lever78fa7012008-03-14 14:10:15 -040059 u32 version;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040060 unsigned short port;
Chuck Lever78fa7012008-03-14 14:10:15 -040061 unsigned short protocol;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040062 } mount_server;
63
64 struct {
Chuck Lever4c568012007-12-10 14:59:28 -050065 struct sockaddr_storage address;
66 size_t addrlen;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040067 char *hostname;
68 char *export_path;
Chuck Leverf22d6d72008-03-14 14:10:22 -040069 unsigned short port;
Chuck Lever78fa7012008-03-14 14:10:15 -040070 unsigned short protocol;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040071 } nfs_server;
Eric Parisf9c3a382008-03-05 14:20:18 -050072
73 struct security_mnt_opts lsm_opts;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040074};
75
Chuck Lever146ec942008-12-23 15:21:34 -050076/* mount_clnt.c */
Chuck Leverc5d120f2008-12-23 15:21:35 -050077struct nfs_mount_request {
78 struct sockaddr *sap;
79 size_t salen;
80 char *hostname;
81 char *dirpath;
82 u32 version;
83 unsigned short protocol;
84 struct nfs_fh *fh;
Chuck Lever50a737f2008-12-23 15:21:37 -050085 int noresvport;
Chuck Lever8e02f6b2009-06-17 18:02:13 -070086 unsigned int *auth_flav_len;
87 rpc_authflavor_t *auth_flavs;
Chuck Leverc5d120f2008-12-23 15:21:35 -050088};
89
90extern int nfs_mount(struct nfs_mount_request *info);
Chuck Lever146ec942008-12-23 15:21:34 -050091
David Howells24c8dbb2006-08-22 20:06:10 -040092/* client.c */
David Howells54ceac42006-08-22 20:06:13 -040093extern struct rpc_program nfs_program;
94
David Howells24c8dbb2006-08-22 20:06:10 -040095extern void nfs_put_client(struct nfs_client *);
Chuck Leverff052642007-12-10 14:58:44 -050096extern struct nfs_client *nfs_find_client(const struct sockaddr *, u32);
Trond Myklebust3fbd67a2008-01-26 01:06:40 -050097extern struct nfs_client *nfs_find_client_next(struct nfs_client *);
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -040098extern struct nfs_server *nfs_create_server(
99 const struct nfs_parsed_mount_data *,
100 struct nfs_fh *);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -0400101extern struct nfs_server *nfs4_create_server(
102 const struct nfs_parsed_mount_data *,
103 struct nfs_fh *);
David Howells54ceac42006-08-22 20:06:13 -0400104extern struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *,
105 struct nfs_fh *);
106extern void nfs_free_server(struct nfs_server *server);
107extern struct nfs_server *nfs_clone_server(struct nfs_server *,
108 struct nfs_fh *,
109 struct nfs_fattr *);
David Howells6aaca562006-08-22 20:06:13 -0400110#ifdef CONFIG_PROC_FS
111extern int __init nfs_fs_proc_init(void);
112extern void nfs_fs_proc_exit(void);
113#else
114static inline int nfs_fs_proc_init(void)
115{
116 return 0;
117}
118static inline void nfs_fs_proc_exit(void)
119{
120}
121#endif
David Howells24c8dbb2006-08-22 20:06:10 -0400122
David Howells7d4e2742006-08-22 20:06:07 -0400123/* nfs4namespace.c */
David Howellsf7b422b2006-06-09 09:34:33 -0400124#ifdef CONFIG_NFS_V4
125extern struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry);
126#else
127static inline
128struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry)
129{
130 return ERR_PTR(-ENOENT);
131}
132#endif
133
134/* callback_xdr.c */
135extern struct svc_version nfs4_callback_version1;
136
137/* pagelist.c */
138extern int __init nfs_init_nfspagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700139extern void nfs_destroy_nfspagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400140extern int __init nfs_init_readpagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700141extern void nfs_destroy_readpagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400142extern int __init nfs_init_writepagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700143extern void nfs_destroy_writepagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400144
David Howellsf7b422b2006-06-09 09:34:33 -0400145extern int __init nfs_init_directcache(void);
David Brownell266bee82006-06-27 12:59:15 -0700146extern void nfs_destroy_directcache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400147
148/* nfs2xdr.c */
David Howells7d4e2742006-08-22 20:06:07 -0400149extern int nfs_stat_to_errno(int);
David Howellsf7b422b2006-06-09 09:34:33 -0400150extern struct rpc_procinfo nfs_procedures[];
Al Viro0dbb4c62006-10-19 23:28:49 -0700151extern __be32 * nfs_decode_dirent(__be32 *, struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400152
153/* nfs3xdr.c */
154extern struct rpc_procinfo nfs3_procedures[];
Al Viro0dbb4c62006-10-19 23:28:49 -0700155extern __be32 *nfs3_decode_dirent(__be32 *, struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400156
157/* nfs4xdr.c */
David Howells7d4e2742006-08-22 20:06:07 -0400158#ifdef CONFIG_NFS_V4
Al Viro0dbb4c62006-10-19 23:28:49 -0700159extern __be32 *nfs4_decode_dirent(__be32 *p, struct nfs_entry *entry, int plus);
David Howells7d4e2742006-08-22 20:06:07 -0400160#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400161
162/* nfs4proc.c */
Andrew Mortond75d5412006-06-25 02:41:26 -0700163#ifdef CONFIG_NFS_V4
David Howellsf7b422b2006-06-09 09:34:33 -0400164extern struct rpc_procinfo nfs4_procedures[];
Andrew Mortond75d5412006-06-25 02:41:26 -0700165#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400166
Trond Myklebust7fe5c392009-03-19 15:35:50 -0400167/* proc.c */
168void nfs_close_context(struct nfs_open_context *ctx, int is_sync);
169
Trond Myklebust979df722006-07-25 11:28:19 -0400170/* dir.c */
171extern int nfs_access_cache_shrinker(int nr_to_scan, gfp_t gfp_mask);
172
David Howellsf7b422b2006-06-09 09:34:33 -0400173/* inode.c */
Trond Myklebust57460062008-02-19 20:04:22 -0500174extern struct workqueue_struct *nfsiod_workqueue;
David Howellsf7b422b2006-06-09 09:34:33 -0400175extern struct inode *nfs_alloc_inode(struct super_block *sb);
176extern void nfs_destroy_inode(struct inode *);
177extern int nfs_write_inode(struct inode *,int);
178extern void nfs_clear_inode(struct inode *);
179#ifdef CONFIG_NFS_V4
180extern void nfs4_clear_inode(struct inode *);
181#endif
Trond Myklebustf41f7412008-06-11 17:39:04 -0400182void nfs_zap_acl_cache(struct inode *inode);
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400183extern int nfs_wait_bit_killable(void *word);
David Howellsf7b422b2006-06-09 09:34:33 -0400184
185/* super.c */
J. Bruce Fieldsea31a442008-08-20 16:10:23 -0400186void nfs_parse_ip_address(char *, size_t, struct sockaddr *, size_t *);
David Howells54ceac42006-08-22 20:06:13 -0400187extern struct file_system_type nfs_xdev_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400188#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400189extern struct file_system_type nfs4_xdev_fs_type;
190extern struct file_system_type nfs4_referral_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400191#endif
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200192
David Howellsf7b422b2006-06-09 09:34:33 -0400193extern struct rpc_stat nfs_rpcstat;
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200194
David Howellsf7b422b2006-06-09 09:34:33 -0400195extern int __init register_nfs_fs(void);
196extern void __exit unregister_nfs_fs(void);
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400197extern void nfs_sb_active(struct super_block *sb);
198extern void nfs_sb_deactive(struct super_block *sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400199
200/* namespace.c */
David Howells54ceac42006-08-22 20:06:13 -0400201extern char *nfs_path(const char *base,
202 const struct dentry *droot,
203 const struct dentry *dentry,
David Howellsf7b422b2006-06-09 09:34:33 -0400204 char *buffer, ssize_t buflen);
205
David Howells54ceac42006-08-22 20:06:13 -0400206/* getroot.c */
207extern struct dentry *nfs_get_root(struct super_block *, struct nfs_fh *);
David Howells7d4e2742006-08-22 20:06:07 -0400208#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400209extern struct dentry *nfs4_get_root(struct super_block *, struct nfs_fh *);
210
211extern int nfs4_path_walk(struct nfs_server *server,
212 struct nfs_fh *mntfh,
213 const char *path);
David Howells7d4e2742006-08-22 20:06:07 -0400214#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400215
216/*
217 * Determine the device name as a string
218 */
219static inline char *nfs_devname(const struct vfsmount *mnt_parent,
David Howells54ceac42006-08-22 20:06:13 -0400220 const struct dentry *dentry,
221 char *buffer, ssize_t buflen)
David Howellsf7b422b2006-06-09 09:34:33 -0400222{
David Howells54ceac42006-08-22 20:06:13 -0400223 return nfs_path(mnt_parent->mnt_devname, mnt_parent->mnt_root,
224 dentry, buffer, buflen);
David Howellsf7b422b2006-06-09 09:34:33 -0400225}
226
227/*
228 * Determine the actual block size (and log2 thereof)
229 */
230static inline
231unsigned long nfs_block_bits(unsigned long bsize, unsigned char *nrbitsp)
232{
233 /* make sure blocksize is a power of two */
234 if ((bsize & (bsize - 1)) || nrbitsp) {
235 unsigned char nrbits;
236
237 for (nrbits = 31; nrbits && !(bsize & (1 << nrbits)); nrbits--)
238 ;
239 bsize = 1 << nrbits;
240 if (nrbitsp)
241 *nrbitsp = nrbits;
242 }
243
244 return bsize;
245}
246
247/*
248 * Calculate the number of 512byte blocks used.
249 */
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400250static inline blkcnt_t nfs_calc_block_size(u64 tsize)
David Howellsf7b422b2006-06-09 09:34:33 -0400251{
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400252 blkcnt_t used = (tsize + 511) >> 9;
David Howellsf7b422b2006-06-09 09:34:33 -0400253 return (used > ULONG_MAX) ? ULONG_MAX : used;
254}
255
256/*
257 * Compute and set NFS server blocksize
258 */
259static inline
260unsigned long nfs_block_size(unsigned long bsize, unsigned char *nrbitsp)
261{
262 if (bsize < NFS_MIN_FILE_IO_SIZE)
263 bsize = NFS_DEF_FILE_IO_SIZE;
264 else if (bsize >= NFS_MAX_FILE_IO_SIZE)
265 bsize = NFS_MAX_FILE_IO_SIZE;
266
267 return nfs_block_bits(bsize, nrbitsp);
268}
269
270/*
271 * Determine the maximum file size for a superblock
272 */
273static inline
274void nfs_super_set_maxbytes(struct super_block *sb, __u64 maxfilesize)
275{
276 sb->s_maxbytes = (loff_t)maxfilesize;
277 if (sb->s_maxbytes > MAX_LFS_FILESIZE || sb->s_maxbytes <= 0)
278 sb->s_maxbytes = MAX_LFS_FILESIZE;
279}
Trond Myklebust49a70f22006-12-05 00:35:38 -0500280
281/*
282 * Determine the number of bytes of data the page contains
283 */
284static inline
285unsigned int nfs_page_length(struct page *page)
286{
287 loff_t i_size = i_size_read(page->mapping->host);
288
289 if (i_size > 0) {
290 pgoff_t end_index = (i_size - 1) >> PAGE_CACHE_SHIFT;
291 if (page->index < end_index)
292 return PAGE_CACHE_SIZE;
293 if (page->index == end_index)
294 return ((i_size - 1) & ~PAGE_CACHE_MASK) + 1;
295 }
296 return 0;
297}
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400298
299/*
300 * Determine the number of pages in an array of length 'len' and
301 * with a base offset of 'base'
302 */
303static inline
304unsigned int nfs_page_array_len(unsigned int base, size_t len)
305{
306 return ((unsigned long)len + (unsigned long)base +
307 PAGE_SIZE - 1) >> PAGE_SHIFT;
308}
309
J. Bruce Fieldsea31a442008-08-20 16:10:23 -0400310#define IPV6_SCOPE_DELIMITER '%'
J. Bruce Fieldsf0c92922008-08-20 16:10:22 -0400311
312/*
313 * Set the port number in an address. Be agnostic about the address
314 * family.
315 */
316static inline void nfs_set_port(struct sockaddr *sap, unsigned short port)
317{
J. Bruce Fields456018d2008-10-08 15:31:14 -0400318 struct sockaddr_in *ap = (struct sockaddr_in *)sap;
319 struct sockaddr_in6 *ap6 = (struct sockaddr_in6 *)sap;
320
J. Bruce Fieldsf0c92922008-08-20 16:10:22 -0400321 switch (sap->sa_family) {
J. Bruce Fields456018d2008-10-08 15:31:14 -0400322 case AF_INET:
323 ap->sin_port = htons(port);
324 break;
325 case AF_INET6:
326 ap6->sin6_port = htons(port);
327 break;
J. Bruce Fieldsf0c92922008-08-20 16:10:22 -0400328 }
329}