blob: 0f5619611b8dc5d313accd81658fd6dd32e6a647 [file] [log] [blame]
David Howellsf7b422b2006-06-09 09:34:33 -04001/*
2 * NFS internal definitions
3 */
4
5#include <linux/mount.h>
6
David Howells54ceac42006-08-22 20:06:13 -04007struct nfs_string;
David Howells54ceac42006-08-22 20:06:13 -04008
9/* Maximum number of readahead requests
10 * FIXME: this should really be a sysctl so that users may tune it to suit
11 * their needs. People that do NFS over a slow network, might for
12 * instance want to reduce it to something closer to 1 for improved
13 * interactive response.
14 */
15#define NFS_MAX_READAHEAD (RPC_DEF_SLOT_TABLE - 1)
16
David Howellsf7b422b2006-06-09 09:34:33 -040017struct nfs_clone_mount {
18 const struct super_block *sb;
19 const struct dentry *dentry;
20 struct nfs_fh *fh;
21 struct nfs_fattr *fattr;
22 char *hostname;
23 char *mnt_path;
Chuck Lever6677d092007-12-10 14:59:06 -050024 struct sockaddr *addr;
25 size_t addrlen;
David Howellsf7b422b2006-06-09 09:34:33 -040026 rpc_authflavor_t authflavor;
27};
28
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040029/*
30 * In-kernel mount arguments
31 */
32struct nfs_parsed_mount_data {
33 int flags;
34 int rsize, wsize;
35 int timeo, retrans;
36 int acregmin, acregmax,
37 acdirmin, acdirmax;
38 int namlen;
39 unsigned int bsize;
40 unsigned int auth_flavor_len;
41 rpc_authflavor_t auth_flavors[1];
42 char *client_address;
43
44 struct {
Chuck Lever4c568012007-12-10 14:59:28 -050045 struct sockaddr_storage address;
46 size_t addrlen;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040047 char *hostname;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040048 unsigned int version;
49 unsigned short port;
50 int protocol;
51 } mount_server;
52
53 struct {
Chuck Lever4c568012007-12-10 14:59:28 -050054 struct sockaddr_storage address;
55 size_t addrlen;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040056 char *hostname;
57 char *export_path;
\"Talpey, Thomas\6b18eaa2007-09-10 13:43:29 -040058 int protocol;
59 } nfs_server;
60};
61
David Howells24c8dbb2006-08-22 20:06:10 -040062/* client.c */
David Howells54ceac42006-08-22 20:06:13 -040063extern struct rpc_program nfs_program;
64
David Howells24c8dbb2006-08-22 20:06:10 -040065extern void nfs_put_client(struct nfs_client *);
Chuck Leverff052642007-12-10 14:58:44 -050066extern struct nfs_client *nfs_find_client(const struct sockaddr *, u32);
Trond Myklebust3fbd67a2008-01-26 01:06:40 -050067extern struct nfs_client *nfs_find_client_next(struct nfs_client *);
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -040068extern struct nfs_server *nfs_create_server(
69 const struct nfs_parsed_mount_data *,
70 struct nfs_fh *);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -040071extern struct nfs_server *nfs4_create_server(
72 const struct nfs_parsed_mount_data *,
73 struct nfs_fh *);
David Howells54ceac42006-08-22 20:06:13 -040074extern struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *,
75 struct nfs_fh *);
76extern void nfs_free_server(struct nfs_server *server);
77extern struct nfs_server *nfs_clone_server(struct nfs_server *,
78 struct nfs_fh *,
79 struct nfs_fattr *);
David Howells6aaca562006-08-22 20:06:13 -040080#ifdef CONFIG_PROC_FS
81extern int __init nfs_fs_proc_init(void);
82extern void nfs_fs_proc_exit(void);
83#else
84static inline int nfs_fs_proc_init(void)
85{
86 return 0;
87}
88static inline void nfs_fs_proc_exit(void)
89{
90}
91#endif
David Howells24c8dbb2006-08-22 20:06:10 -040092
David Howells7d4e2742006-08-22 20:06:07 -040093/* nfs4namespace.c */
David Howellsf7b422b2006-06-09 09:34:33 -040094#ifdef CONFIG_NFS_V4
95extern struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry);
96#else
97static inline
98struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry)
99{
100 return ERR_PTR(-ENOENT);
101}
102#endif
103
104/* callback_xdr.c */
105extern struct svc_version nfs4_callback_version1;
106
107/* pagelist.c */
108extern int __init nfs_init_nfspagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700109extern void nfs_destroy_nfspagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400110extern int __init nfs_init_readpagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700111extern void nfs_destroy_readpagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400112extern int __init nfs_init_writepagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700113extern void nfs_destroy_writepagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400114
115#ifdef CONFIG_NFS_DIRECTIO
116extern int __init nfs_init_directcache(void);
David Brownell266bee82006-06-27 12:59:15 -0700117extern void nfs_destroy_directcache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400118#else
119#define nfs_init_directcache() (0)
120#define nfs_destroy_directcache() do {} while(0)
121#endif
122
123/* nfs2xdr.c */
David Howells7d4e2742006-08-22 20:06:07 -0400124extern int nfs_stat_to_errno(int);
David Howellsf7b422b2006-06-09 09:34:33 -0400125extern struct rpc_procinfo nfs_procedures[];
Al Viro0dbb4c62006-10-19 23:28:49 -0700126extern __be32 * nfs_decode_dirent(__be32 *, struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400127
128/* nfs3xdr.c */
129extern struct rpc_procinfo nfs3_procedures[];
Al Viro0dbb4c62006-10-19 23:28:49 -0700130extern __be32 *nfs3_decode_dirent(__be32 *, struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400131
132/* nfs4xdr.c */
David Howells7d4e2742006-08-22 20:06:07 -0400133#ifdef CONFIG_NFS_V4
Al Viro0dbb4c62006-10-19 23:28:49 -0700134extern __be32 *nfs4_decode_dirent(__be32 *p, struct nfs_entry *entry, int plus);
David Howells7d4e2742006-08-22 20:06:07 -0400135#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400136
137/* nfs4proc.c */
Andrew Mortond75d5412006-06-25 02:41:26 -0700138#ifdef CONFIG_NFS_V4
David Howellsf7b422b2006-06-09 09:34:33 -0400139extern struct rpc_procinfo nfs4_procedures[];
Andrew Mortond75d5412006-06-25 02:41:26 -0700140#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400141
Trond Myklebust979df722006-07-25 11:28:19 -0400142/* dir.c */
143extern int nfs_access_cache_shrinker(int nr_to_scan, gfp_t gfp_mask);
144
David Howellsf7b422b2006-06-09 09:34:33 -0400145/* inode.c */
146extern struct inode *nfs_alloc_inode(struct super_block *sb);
147extern void nfs_destroy_inode(struct inode *);
148extern int nfs_write_inode(struct inode *,int);
149extern void nfs_clear_inode(struct inode *);
150#ifdef CONFIG_NFS_V4
151extern void nfs4_clear_inode(struct inode *);
152#endif
153
154/* super.c */
David Howells54ceac42006-08-22 20:06:13 -0400155extern struct file_system_type nfs_xdev_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400156#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400157extern struct file_system_type nfs4_xdev_fs_type;
158extern struct file_system_type nfs4_referral_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400159#endif
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200160
David Howellsf7b422b2006-06-09 09:34:33 -0400161extern struct rpc_stat nfs_rpcstat;
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200162
David Howellsf7b422b2006-06-09 09:34:33 -0400163extern int __init register_nfs_fs(void);
164extern void __exit unregister_nfs_fs(void);
Steve Dicksonef818a22007-11-08 04:05:04 -0500165extern void nfs_sb_active(struct nfs_server *server);
166extern void nfs_sb_deactive(struct nfs_server *server);
David Howellsf7b422b2006-06-09 09:34:33 -0400167
168/* namespace.c */
David Howells54ceac42006-08-22 20:06:13 -0400169extern char *nfs_path(const char *base,
170 const struct dentry *droot,
171 const struct dentry *dentry,
David Howellsf7b422b2006-06-09 09:34:33 -0400172 char *buffer, ssize_t buflen);
173
David Howells54ceac42006-08-22 20:06:13 -0400174/* getroot.c */
175extern struct dentry *nfs_get_root(struct super_block *, struct nfs_fh *);
David Howells7d4e2742006-08-22 20:06:07 -0400176#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400177extern struct dentry *nfs4_get_root(struct super_block *, struct nfs_fh *);
178
179extern int nfs4_path_walk(struct nfs_server *server,
180 struct nfs_fh *mntfh,
181 const char *path);
David Howells7d4e2742006-08-22 20:06:07 -0400182#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400183
184/*
185 * Determine the device name as a string
186 */
187static inline char *nfs_devname(const struct vfsmount *mnt_parent,
David Howells54ceac42006-08-22 20:06:13 -0400188 const struct dentry *dentry,
189 char *buffer, ssize_t buflen)
David Howellsf7b422b2006-06-09 09:34:33 -0400190{
David Howells54ceac42006-08-22 20:06:13 -0400191 return nfs_path(mnt_parent->mnt_devname, mnt_parent->mnt_root,
192 dentry, buffer, buflen);
David Howellsf7b422b2006-06-09 09:34:33 -0400193}
194
195/*
196 * Determine the actual block size (and log2 thereof)
197 */
198static inline
199unsigned long nfs_block_bits(unsigned long bsize, unsigned char *nrbitsp)
200{
201 /* make sure blocksize is a power of two */
202 if ((bsize & (bsize - 1)) || nrbitsp) {
203 unsigned char nrbits;
204
205 for (nrbits = 31; nrbits && !(bsize & (1 << nrbits)); nrbits--)
206 ;
207 bsize = 1 << nrbits;
208 if (nrbitsp)
209 *nrbitsp = nrbits;
210 }
211
212 return bsize;
213}
214
215/*
216 * Calculate the number of 512byte blocks used.
217 */
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400218static inline blkcnt_t nfs_calc_block_size(u64 tsize)
David Howellsf7b422b2006-06-09 09:34:33 -0400219{
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400220 blkcnt_t used = (tsize + 511) >> 9;
David Howellsf7b422b2006-06-09 09:34:33 -0400221 return (used > ULONG_MAX) ? ULONG_MAX : used;
222}
223
224/*
225 * Compute and set NFS server blocksize
226 */
227static inline
228unsigned long nfs_block_size(unsigned long bsize, unsigned char *nrbitsp)
229{
230 if (bsize < NFS_MIN_FILE_IO_SIZE)
231 bsize = NFS_DEF_FILE_IO_SIZE;
232 else if (bsize >= NFS_MAX_FILE_IO_SIZE)
233 bsize = NFS_MAX_FILE_IO_SIZE;
234
235 return nfs_block_bits(bsize, nrbitsp);
236}
237
238/*
239 * Determine the maximum file size for a superblock
240 */
241static inline
242void nfs_super_set_maxbytes(struct super_block *sb, __u64 maxfilesize)
243{
244 sb->s_maxbytes = (loff_t)maxfilesize;
245 if (sb->s_maxbytes > MAX_LFS_FILESIZE || sb->s_maxbytes <= 0)
246 sb->s_maxbytes = MAX_LFS_FILESIZE;
247}
Trond Myklebust49a70f22006-12-05 00:35:38 -0500248
249/*
250 * Determine the number of bytes of data the page contains
251 */
252static inline
253unsigned int nfs_page_length(struct page *page)
254{
255 loff_t i_size = i_size_read(page->mapping->host);
256
257 if (i_size > 0) {
258 pgoff_t end_index = (i_size - 1) >> PAGE_CACHE_SHIFT;
259 if (page->index < end_index)
260 return PAGE_CACHE_SIZE;
261 if (page->index == end_index)
262 return ((i_size - 1) & ~PAGE_CACHE_MASK) + 1;
263 }
264 return 0;
265}
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400266
267/*
268 * Determine the number of pages in an array of length 'len' and
269 * with a base offset of 'base'
270 */
271static inline
272unsigned int nfs_page_array_len(unsigned int base, size_t len)
273{
274 return ((unsigned long)len + (unsigned long)base +
275 PAGE_SIZE - 1) >> PAGE_SHIFT;
276}
277