blob: 4e983961346ed576b1e906f8f1b128260c17a4c2 [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;
75};
76
77extern int nfs_mount(struct nfs_mount_request *info);
Chuck Lever146ec942008-12-23 15:21:34 -050078
David Howells24c8dbb2006-08-22 20:06:10 -040079/* client.c */
David Howells54ceac42006-08-22 20:06:13 -040080extern struct rpc_program nfs_program;
81
David Howells24c8dbb2006-08-22 20:06:10 -040082extern void nfs_put_client(struct nfs_client *);
Chuck Leverff052642007-12-10 14:58:44 -050083extern struct nfs_client *nfs_find_client(const struct sockaddr *, u32);
Trond Myklebust3fbd67a2008-01-26 01:06:40 -050084extern struct nfs_client *nfs_find_client_next(struct nfs_client *);
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -040085extern struct nfs_server *nfs_create_server(
86 const struct nfs_parsed_mount_data *,
87 struct nfs_fh *);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -040088extern struct nfs_server *nfs4_create_server(
89 const struct nfs_parsed_mount_data *,
90 struct nfs_fh *);
David Howells54ceac42006-08-22 20:06:13 -040091extern struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *,
92 struct nfs_fh *);
93extern void nfs_free_server(struct nfs_server *server);
94extern struct nfs_server *nfs_clone_server(struct nfs_server *,
95 struct nfs_fh *,
96 struct nfs_fattr *);
David Howells6aaca562006-08-22 20:06:13 -040097#ifdef CONFIG_PROC_FS
98extern int __init nfs_fs_proc_init(void);
99extern void nfs_fs_proc_exit(void);
100#else
101static inline int nfs_fs_proc_init(void)
102{
103 return 0;
104}
105static inline void nfs_fs_proc_exit(void)
106{
107}
108#endif
David Howells24c8dbb2006-08-22 20:06:10 -0400109
David Howells7d4e2742006-08-22 20:06:07 -0400110/* nfs4namespace.c */
David Howellsf7b422b2006-06-09 09:34:33 -0400111#ifdef CONFIG_NFS_V4
112extern struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry);
113#else
114static inline
115struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry)
116{
117 return ERR_PTR(-ENOENT);
118}
119#endif
120
121/* callback_xdr.c */
122extern struct svc_version nfs4_callback_version1;
123
124/* pagelist.c */
125extern int __init nfs_init_nfspagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700126extern void nfs_destroy_nfspagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400127extern int __init nfs_init_readpagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700128extern void nfs_destroy_readpagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400129extern int __init nfs_init_writepagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700130extern void nfs_destroy_writepagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400131
David Howellsf7b422b2006-06-09 09:34:33 -0400132extern int __init nfs_init_directcache(void);
David Brownell266bee82006-06-27 12:59:15 -0700133extern void nfs_destroy_directcache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400134
135/* nfs2xdr.c */
David Howells7d4e2742006-08-22 20:06:07 -0400136extern int nfs_stat_to_errno(int);
David Howellsf7b422b2006-06-09 09:34:33 -0400137extern struct rpc_procinfo nfs_procedures[];
Al Viro0dbb4c62006-10-19 23:28:49 -0700138extern __be32 * nfs_decode_dirent(__be32 *, struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400139
140/* nfs3xdr.c */
141extern struct rpc_procinfo nfs3_procedures[];
Al Viro0dbb4c62006-10-19 23:28:49 -0700142extern __be32 *nfs3_decode_dirent(__be32 *, struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400143
144/* nfs4xdr.c */
David Howells7d4e2742006-08-22 20:06:07 -0400145#ifdef CONFIG_NFS_V4
Al Viro0dbb4c62006-10-19 23:28:49 -0700146extern __be32 *nfs4_decode_dirent(__be32 *p, struct nfs_entry *entry, int plus);
David Howells7d4e2742006-08-22 20:06:07 -0400147#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400148
149/* nfs4proc.c */
Andrew Mortond75d5412006-06-25 02:41:26 -0700150#ifdef CONFIG_NFS_V4
David Howellsf7b422b2006-06-09 09:34:33 -0400151extern struct rpc_procinfo nfs4_procedures[];
Andrew Mortond75d5412006-06-25 02:41:26 -0700152#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400153
Trond Myklebust979df722006-07-25 11:28:19 -0400154/* dir.c */
155extern int nfs_access_cache_shrinker(int nr_to_scan, gfp_t gfp_mask);
156
David Howellsf7b422b2006-06-09 09:34:33 -0400157/* inode.c */
Trond Myklebust57460062008-02-19 20:04:22 -0500158extern struct workqueue_struct *nfsiod_workqueue;
David Howellsf7b422b2006-06-09 09:34:33 -0400159extern struct inode *nfs_alloc_inode(struct super_block *sb);
160extern void nfs_destroy_inode(struct inode *);
161extern int nfs_write_inode(struct inode *,int);
162extern void nfs_clear_inode(struct inode *);
163#ifdef CONFIG_NFS_V4
164extern void nfs4_clear_inode(struct inode *);
165#endif
Trond Myklebustf41f7412008-06-11 17:39:04 -0400166void nfs_zap_acl_cache(struct inode *inode);
David Howellsf7b422b2006-06-09 09:34:33 -0400167
168/* super.c */
J. Bruce Fieldsea31a4432008-08-20 16:10:23 -0400169void nfs_parse_ip_address(char *, size_t, struct sockaddr *, size_t *);
David Howells54ceac42006-08-22 20:06:13 -0400170extern struct file_system_type nfs_xdev_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400171#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400172extern struct file_system_type nfs4_xdev_fs_type;
173extern struct file_system_type nfs4_referral_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400174#endif
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200175
David Howellsf7b422b2006-06-09 09:34:33 -0400176extern struct rpc_stat nfs_rpcstat;
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200177
David Howellsf7b422b2006-06-09 09:34:33 -0400178extern int __init register_nfs_fs(void);
179extern void __exit unregister_nfs_fs(void);
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400180extern void nfs_sb_active(struct super_block *sb);
181extern void nfs_sb_deactive(struct super_block *sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400182
183/* namespace.c */
David Howells54ceac42006-08-22 20:06:13 -0400184extern char *nfs_path(const char *base,
185 const struct dentry *droot,
186 const struct dentry *dentry,
David Howellsf7b422b2006-06-09 09:34:33 -0400187 char *buffer, ssize_t buflen);
188
David Howells54ceac42006-08-22 20:06:13 -0400189/* getroot.c */
190extern struct dentry *nfs_get_root(struct super_block *, struct nfs_fh *);
David Howells7d4e2742006-08-22 20:06:07 -0400191#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400192extern struct dentry *nfs4_get_root(struct super_block *, struct nfs_fh *);
193
194extern int nfs4_path_walk(struct nfs_server *server,
195 struct nfs_fh *mntfh,
196 const char *path);
David Howells7d4e2742006-08-22 20:06:07 -0400197#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400198
199/*
200 * Determine the device name as a string
201 */
202static inline char *nfs_devname(const struct vfsmount *mnt_parent,
David Howells54ceac42006-08-22 20:06:13 -0400203 const struct dentry *dentry,
204 char *buffer, ssize_t buflen)
David Howellsf7b422b2006-06-09 09:34:33 -0400205{
David Howells54ceac42006-08-22 20:06:13 -0400206 return nfs_path(mnt_parent->mnt_devname, mnt_parent->mnt_root,
207 dentry, buffer, buflen);
David Howellsf7b422b2006-06-09 09:34:33 -0400208}
209
210/*
211 * Determine the actual block size (and log2 thereof)
212 */
213static inline
214unsigned long nfs_block_bits(unsigned long bsize, unsigned char *nrbitsp)
215{
216 /* make sure blocksize is a power of two */
217 if ((bsize & (bsize - 1)) || nrbitsp) {
218 unsigned char nrbits;
219
220 for (nrbits = 31; nrbits && !(bsize & (1 << nrbits)); nrbits--)
221 ;
222 bsize = 1 << nrbits;
223 if (nrbitsp)
224 *nrbitsp = nrbits;
225 }
226
227 return bsize;
228}
229
230/*
231 * Calculate the number of 512byte blocks used.
232 */
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400233static inline blkcnt_t nfs_calc_block_size(u64 tsize)
David Howellsf7b422b2006-06-09 09:34:33 -0400234{
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400235 blkcnt_t used = (tsize + 511) >> 9;
David Howellsf7b422b2006-06-09 09:34:33 -0400236 return (used > ULONG_MAX) ? ULONG_MAX : used;
237}
238
239/*
240 * Compute and set NFS server blocksize
241 */
242static inline
243unsigned long nfs_block_size(unsigned long bsize, unsigned char *nrbitsp)
244{
245 if (bsize < NFS_MIN_FILE_IO_SIZE)
246 bsize = NFS_DEF_FILE_IO_SIZE;
247 else if (bsize >= NFS_MAX_FILE_IO_SIZE)
248 bsize = NFS_MAX_FILE_IO_SIZE;
249
250 return nfs_block_bits(bsize, nrbitsp);
251}
252
253/*
254 * Determine the maximum file size for a superblock
255 */
256static inline
257void nfs_super_set_maxbytes(struct super_block *sb, __u64 maxfilesize)
258{
259 sb->s_maxbytes = (loff_t)maxfilesize;
260 if (sb->s_maxbytes > MAX_LFS_FILESIZE || sb->s_maxbytes <= 0)
261 sb->s_maxbytes = MAX_LFS_FILESIZE;
262}
Trond Myklebust49a70f22006-12-05 00:35:38 -0500263
264/*
265 * Determine the number of bytes of data the page contains
266 */
267static inline
268unsigned int nfs_page_length(struct page *page)
269{
270 loff_t i_size = i_size_read(page->mapping->host);
271
272 if (i_size > 0) {
273 pgoff_t end_index = (i_size - 1) >> PAGE_CACHE_SHIFT;
274 if (page->index < end_index)
275 return PAGE_CACHE_SIZE;
276 if (page->index == end_index)
277 return ((i_size - 1) & ~PAGE_CACHE_MASK) + 1;
278 }
279 return 0;
280}
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400281
282/*
283 * Determine the number of pages in an array of length 'len' and
284 * with a base offset of 'base'
285 */
286static inline
287unsigned int nfs_page_array_len(unsigned int base, size_t len)
288{
289 return ((unsigned long)len + (unsigned long)base +
290 PAGE_SIZE - 1) >> PAGE_SHIFT;
291}
292
J. Bruce Fieldsea31a4432008-08-20 16:10:23 -0400293#define IPV6_SCOPE_DELIMITER '%'
J. Bruce Fieldsf0c929252008-08-20 16:10:22 -0400294
295/*
296 * Set the port number in an address. Be agnostic about the address
297 * family.
298 */
299static inline void nfs_set_port(struct sockaddr *sap, unsigned short port)
300{
J. Bruce Fields456018d2008-10-08 15:31:14 -0400301 struct sockaddr_in *ap = (struct sockaddr_in *)sap;
302 struct sockaddr_in6 *ap6 = (struct sockaddr_in6 *)sap;
303
J. Bruce Fieldsf0c929252008-08-20 16:10:22 -0400304 switch (sap->sa_family) {
J. Bruce Fields456018d2008-10-08 15:31:14 -0400305 case AF_INET:
306 ap->sin_port = htons(port);
307 break;
308 case AF_INET6:
309 ap6->sin6_port = htons(port);
310 break;
J. Bruce Fieldsf0c929252008-08-20 16:10:22 -0400311 }
312}