blob: a55e69aa52e5bebbca4c6caed39163e1de011966 [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 Howells54ceac42006-08-22 20:06:13 -04008struct nfs_string;
David Howells54ceac42006-08-22 20:06:13 -04009
10/* Maximum number of readahead requests
11 * FIXME: this should really be a sysctl so that users may tune it to suit
12 * their needs. People that do NFS over a slow network, might for
13 * instance want to reduce it to something closer to 1 for improved
14 * interactive response.
15 */
16#define NFS_MAX_READAHEAD (RPC_DEF_SLOT_TABLE - 1)
17
David Howellsf7b422b2006-06-09 09:34:33 -040018struct nfs_clone_mount {
19 const struct super_block *sb;
20 const struct dentry *dentry;
21 struct nfs_fh *fh;
22 struct nfs_fattr *fattr;
23 char *hostname;
24 char *mnt_path;
Chuck Lever6677d092007-12-10 14:59:06 -050025 struct sockaddr *addr;
26 size_t addrlen;
David Howellsf7b422b2006-06-09 09:34:33 -040027 rpc_authflavor_t authflavor;
28};
29
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040030/*
31 * In-kernel mount arguments
32 */
33struct nfs_parsed_mount_data {
34 int flags;
35 int rsize, wsize;
36 int timeo, retrans;
37 int acregmin, acregmax,
38 acdirmin, acdirmax;
39 int namlen;
40 unsigned int bsize;
41 unsigned int auth_flavor_len;
42 rpc_authflavor_t auth_flavors[1];
43 char *client_address;
44
45 struct {
Chuck Lever4c568012007-12-10 14:59:28 -050046 struct sockaddr_storage address;
47 size_t addrlen;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040048 char *hostname;
Chuck Lever78fa7012008-03-14 14:10:15 -040049 u32 version;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040050 unsigned short port;
Chuck Lever78fa7012008-03-14 14:10:15 -040051 unsigned short protocol;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040052 } mount_server;
53
54 struct {
Chuck Lever4c568012007-12-10 14:59:28 -050055 struct sockaddr_storage address;
56 size_t addrlen;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040057 char *hostname;
58 char *export_path;
Chuck Leverf22d6d72008-03-14 14:10:22 -040059 unsigned short port;
Chuck Lever78fa7012008-03-14 14:10:15 -040060 unsigned short protocol;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040061 } nfs_server;
Eric Parisf9c3a382008-03-05 14:20:18 -050062
63 struct security_mnt_opts lsm_opts;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040064};
65
Chuck Lever146ec942008-12-23 15:21:34 -050066/* mount_clnt.c */
Chuck Leverc5d120f2008-12-23 15:21:35 -050067struct nfs_mount_request {
68 struct sockaddr *sap;
69 size_t salen;
70 char *hostname;
71 char *dirpath;
72 u32 version;
73 unsigned short protocol;
74 struct nfs_fh *fh;
Chuck Lever50a737f2008-12-23 15:21:37 -050075 int noresvport;
Chuck Leverc5d120f2008-12-23 15:21:35 -050076};
77
78extern int nfs_mount(struct nfs_mount_request *info);
Chuck Lever146ec942008-12-23 15:21:34 -050079
David Howells24c8dbb2006-08-22 20:06:10 -040080/* client.c */
David Howells54ceac42006-08-22 20:06:13 -040081extern struct rpc_program nfs_program;
82
David Howells24c8dbb2006-08-22 20:06:10 -040083extern void nfs_put_client(struct nfs_client *);
Chuck Leverff052642007-12-10 14:58:44 -050084extern struct nfs_client *nfs_find_client(const struct sockaddr *, u32);
Trond Myklebust3fbd67a2008-01-26 01:06:40 -050085extern struct nfs_client *nfs_find_client_next(struct nfs_client *);
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -040086extern struct nfs_server *nfs_create_server(
87 const struct nfs_parsed_mount_data *,
88 struct nfs_fh *);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -040089extern struct nfs_server *nfs4_create_server(
90 const struct nfs_parsed_mount_data *,
91 struct nfs_fh *);
David Howells54ceac42006-08-22 20:06:13 -040092extern struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *,
93 struct nfs_fh *);
94extern void nfs_free_server(struct nfs_server *server);
95extern struct nfs_server *nfs_clone_server(struct nfs_server *,
96 struct nfs_fh *,
97 struct nfs_fattr *);
David Howells6aaca562006-08-22 20:06:13 -040098#ifdef CONFIG_PROC_FS
99extern int __init nfs_fs_proc_init(void);
100extern void nfs_fs_proc_exit(void);
101#else
102static inline int nfs_fs_proc_init(void)
103{
104 return 0;
105}
106static inline void nfs_fs_proc_exit(void)
107{
108}
109#endif
David Howells24c8dbb2006-08-22 20:06:10 -0400110
David Howells7d4e2742006-08-22 20:06:07 -0400111/* nfs4namespace.c */
David Howellsf7b422b2006-06-09 09:34:33 -0400112#ifdef CONFIG_NFS_V4
113extern struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry);
114#else
115static inline
116struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry)
117{
118 return ERR_PTR(-ENOENT);
119}
120#endif
121
122/* callback_xdr.c */
123extern struct svc_version nfs4_callback_version1;
124
125/* pagelist.c */
126extern int __init nfs_init_nfspagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700127extern void nfs_destroy_nfspagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400128extern int __init nfs_init_readpagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700129extern void nfs_destroy_readpagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400130extern int __init nfs_init_writepagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700131extern void nfs_destroy_writepagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400132
David Howellsf7b422b2006-06-09 09:34:33 -0400133extern int __init nfs_init_directcache(void);
David Brownell266bee82006-06-27 12:59:15 -0700134extern void nfs_destroy_directcache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400135
136/* nfs2xdr.c */
David Howells7d4e2742006-08-22 20:06:07 -0400137extern int nfs_stat_to_errno(int);
David Howellsf7b422b2006-06-09 09:34:33 -0400138extern struct rpc_procinfo nfs_procedures[];
Al Viro0dbb4c62006-10-19 23:28:49 -0700139extern __be32 * nfs_decode_dirent(__be32 *, struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400140
141/* nfs3xdr.c */
142extern struct rpc_procinfo nfs3_procedures[];
Al Viro0dbb4c62006-10-19 23:28:49 -0700143extern __be32 *nfs3_decode_dirent(__be32 *, struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400144
145/* nfs4xdr.c */
David Howells7d4e2742006-08-22 20:06:07 -0400146#ifdef CONFIG_NFS_V4
Al Viro0dbb4c62006-10-19 23:28:49 -0700147extern __be32 *nfs4_decode_dirent(__be32 *p, struct nfs_entry *entry, int plus);
David Howells7d4e2742006-08-22 20:06:07 -0400148#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400149
150/* nfs4proc.c */
Andrew Mortond75d5412006-06-25 02:41:26 -0700151#ifdef CONFIG_NFS_V4
David Howellsf7b422b2006-06-09 09:34:33 -0400152extern struct rpc_procinfo nfs4_procedures[];
Andrew Mortond75d5412006-06-25 02:41:26 -0700153#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400154
Trond Myklebust979df722006-07-25 11:28:19 -0400155/* dir.c */
156extern int nfs_access_cache_shrinker(int nr_to_scan, gfp_t gfp_mask);
157
David Howellsf7b422b2006-06-09 09:34:33 -0400158/* inode.c */
Trond Myklebust57460062008-02-19 20:04:22 -0500159extern struct workqueue_struct *nfsiod_workqueue;
David Howellsf7b422b2006-06-09 09:34:33 -0400160extern struct inode *nfs_alloc_inode(struct super_block *sb);
161extern void nfs_destroy_inode(struct inode *);
162extern int nfs_write_inode(struct inode *,int);
163extern void nfs_clear_inode(struct inode *);
164#ifdef CONFIG_NFS_V4
165extern void nfs4_clear_inode(struct inode *);
166#endif
Trond Myklebustf41f7412008-06-11 17:39:04 -0400167void nfs_zap_acl_cache(struct inode *inode);
Trond Myklebust72cb77f2009-03-11 14:10:30 -0400168extern int nfs_wait_bit_killable(void *word);
David Howellsf7b422b2006-06-09 09:34:33 -0400169
170/* super.c */
J. Bruce Fieldsea31a4432008-08-20 16:10:23 -0400171void nfs_parse_ip_address(char *, size_t, struct sockaddr *, size_t *);
David Howells54ceac42006-08-22 20:06:13 -0400172extern struct file_system_type nfs_xdev_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400173#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400174extern struct file_system_type nfs4_xdev_fs_type;
175extern struct file_system_type nfs4_referral_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400176#endif
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200177
David Howellsf7b422b2006-06-09 09:34:33 -0400178extern struct rpc_stat nfs_rpcstat;
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200179
David Howellsf7b422b2006-06-09 09:34:33 -0400180extern int __init register_nfs_fs(void);
181extern void __exit unregister_nfs_fs(void);
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400182extern void nfs_sb_active(struct super_block *sb);
183extern void nfs_sb_deactive(struct super_block *sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400184
185/* namespace.c */
David Howells54ceac42006-08-22 20:06:13 -0400186extern char *nfs_path(const char *base,
187 const struct dentry *droot,
188 const struct dentry *dentry,
David Howellsf7b422b2006-06-09 09:34:33 -0400189 char *buffer, ssize_t buflen);
190
David Howells54ceac42006-08-22 20:06:13 -0400191/* getroot.c */
192extern struct dentry *nfs_get_root(struct super_block *, struct nfs_fh *);
David Howells7d4e2742006-08-22 20:06:07 -0400193#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400194extern struct dentry *nfs4_get_root(struct super_block *, struct nfs_fh *);
195
196extern int nfs4_path_walk(struct nfs_server *server,
197 struct nfs_fh *mntfh,
198 const char *path);
David Howells7d4e2742006-08-22 20:06:07 -0400199#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400200
201/*
202 * Determine the device name as a string
203 */
204static inline char *nfs_devname(const struct vfsmount *mnt_parent,
David Howells54ceac42006-08-22 20:06:13 -0400205 const struct dentry *dentry,
206 char *buffer, ssize_t buflen)
David Howellsf7b422b2006-06-09 09:34:33 -0400207{
David Howells54ceac42006-08-22 20:06:13 -0400208 return nfs_path(mnt_parent->mnt_devname, mnt_parent->mnt_root,
209 dentry, buffer, buflen);
David Howellsf7b422b2006-06-09 09:34:33 -0400210}
211
212/*
213 * Determine the actual block size (and log2 thereof)
214 */
215static inline
216unsigned long nfs_block_bits(unsigned long bsize, unsigned char *nrbitsp)
217{
218 /* make sure blocksize is a power of two */
219 if ((bsize & (bsize - 1)) || nrbitsp) {
220 unsigned char nrbits;
221
222 for (nrbits = 31; nrbits && !(bsize & (1 << nrbits)); nrbits--)
223 ;
224 bsize = 1 << nrbits;
225 if (nrbitsp)
226 *nrbitsp = nrbits;
227 }
228
229 return bsize;
230}
231
232/*
233 * Calculate the number of 512byte blocks used.
234 */
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400235static inline blkcnt_t nfs_calc_block_size(u64 tsize)
David Howellsf7b422b2006-06-09 09:34:33 -0400236{
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400237 blkcnt_t used = (tsize + 511) >> 9;
David Howellsf7b422b2006-06-09 09:34:33 -0400238 return (used > ULONG_MAX) ? ULONG_MAX : used;
239}
240
241/*
242 * Compute and set NFS server blocksize
243 */
244static inline
245unsigned long nfs_block_size(unsigned long bsize, unsigned char *nrbitsp)
246{
247 if (bsize < NFS_MIN_FILE_IO_SIZE)
248 bsize = NFS_DEF_FILE_IO_SIZE;
249 else if (bsize >= NFS_MAX_FILE_IO_SIZE)
250 bsize = NFS_MAX_FILE_IO_SIZE;
251
252 return nfs_block_bits(bsize, nrbitsp);
253}
254
255/*
256 * Determine the maximum file size for a superblock
257 */
258static inline
259void nfs_super_set_maxbytes(struct super_block *sb, __u64 maxfilesize)
260{
261 sb->s_maxbytes = (loff_t)maxfilesize;
262 if (sb->s_maxbytes > MAX_LFS_FILESIZE || sb->s_maxbytes <= 0)
263 sb->s_maxbytes = MAX_LFS_FILESIZE;
264}
Trond Myklebust49a70f22006-12-05 00:35:38 -0500265
266/*
267 * Determine the number of bytes of data the page contains
268 */
269static inline
270unsigned int nfs_page_length(struct page *page)
271{
272 loff_t i_size = i_size_read(page->mapping->host);
273
274 if (i_size > 0) {
275 pgoff_t end_index = (i_size - 1) >> PAGE_CACHE_SHIFT;
276 if (page->index < end_index)
277 return PAGE_CACHE_SIZE;
278 if (page->index == end_index)
279 return ((i_size - 1) & ~PAGE_CACHE_MASK) + 1;
280 }
281 return 0;
282}
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400283
284/*
285 * Determine the number of pages in an array of length 'len' and
286 * with a base offset of 'base'
287 */
288static inline
289unsigned int nfs_page_array_len(unsigned int base, size_t len)
290{
291 return ((unsigned long)len + (unsigned long)base +
292 PAGE_SIZE - 1) >> PAGE_SHIFT;
293}
294
J. Bruce Fieldsea31a4432008-08-20 16:10:23 -0400295#define IPV6_SCOPE_DELIMITER '%'
J. Bruce Fieldsf0c929252008-08-20 16:10:22 -0400296
297/*
298 * Set the port number in an address. Be agnostic about the address
299 * family.
300 */
301static inline void nfs_set_port(struct sockaddr *sap, unsigned short port)
302{
J. Bruce Fields456018d2008-10-08 15:31:14 -0400303 struct sockaddr_in *ap = (struct sockaddr_in *)sap;
304 struct sockaddr_in6 *ap6 = (struct sockaddr_in6 *)sap;
305
J. Bruce Fieldsf0c929252008-08-20 16:10:22 -0400306 switch (sap->sa_family) {
J. Bruce Fields456018d2008-10-08 15:31:14 -0400307 case AF_INET:
308 ap->sin_port = htons(port);
309 break;
310 case AF_INET6:
311 ap6->sin6_port = htons(port);
312 break;
J. Bruce Fieldsf0c929252008-08-20 16:10:22 -0400313 }
314}