blob: 9c2d0fbb9f8973f22385a9b270c131fa56680683 [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;
8struct nfs_mount_data;
9struct nfs4_mount_data;
10
11/* Maximum number of readahead requests
12 * FIXME: this should really be a sysctl so that users may tune it to suit
13 * their needs. People that do NFS over a slow network, might for
14 * instance want to reduce it to something closer to 1 for improved
15 * interactive response.
16 */
17#define NFS_MAX_READAHEAD (RPC_DEF_SLOT_TABLE - 1)
18
David Howellsf7b422b2006-06-09 09:34:33 -040019struct nfs_clone_mount {
20 const struct super_block *sb;
21 const struct dentry *dentry;
22 struct nfs_fh *fh;
23 struct nfs_fattr *fattr;
24 char *hostname;
25 char *mnt_path;
26 struct sockaddr_in *addr;
27 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 {
46 struct sockaddr_in address;
47 char *hostname;
48 unsigned int program;
49 unsigned int version;
50 unsigned short port;
51 int protocol;
52 } mount_server;
53
54 struct {
55 struct sockaddr_in address;
56 char *hostname;
57 char *export_path;
58 unsigned int program;
59 int protocol;
60 } nfs_server;
61};
62
David Howells24c8dbb2006-08-22 20:06:10 -040063/* client.c */
David Howells54ceac42006-08-22 20:06:13 -040064extern struct rpc_program nfs_program;
65
David Howells24c8dbb2006-08-22 20:06:10 -040066extern void nfs_put_client(struct nfs_client *);
67extern struct nfs_client *nfs_find_client(const struct sockaddr_in *, int);
David Howells54ceac42006-08-22 20:06:13 -040068extern struct nfs_server *nfs_create_server(const struct nfs_mount_data *,
69 struct nfs_fh *);
70extern struct nfs_server *nfs4_create_server(const struct nfs4_mount_data *,
71 const char *,
72 const struct sockaddr_in *,
73 const char *,
74 const char *,
75 rpc_authflavor_t,
76 struct nfs_fh *);
77extern struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *,
78 struct nfs_fh *);
79extern void nfs_free_server(struct nfs_server *server);
80extern struct nfs_server *nfs_clone_server(struct nfs_server *,
81 struct nfs_fh *,
82 struct nfs_fattr *);
David Howells6aaca562006-08-22 20:06:13 -040083#ifdef CONFIG_PROC_FS
84extern int __init nfs_fs_proc_init(void);
85extern void nfs_fs_proc_exit(void);
86#else
87static inline int nfs_fs_proc_init(void)
88{
89 return 0;
90}
91static inline void nfs_fs_proc_exit(void)
92{
93}
94#endif
David Howells24c8dbb2006-08-22 20:06:10 -040095
David Howells7d4e2742006-08-22 20:06:07 -040096/* nfs4namespace.c */
David Howellsf7b422b2006-06-09 09:34:33 -040097#ifdef CONFIG_NFS_V4
98extern struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry);
99#else
100static inline
101struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry)
102{
103 return ERR_PTR(-ENOENT);
104}
105#endif
106
107/* callback_xdr.c */
108extern struct svc_version nfs4_callback_version1;
109
110/* pagelist.c */
111extern int __init nfs_init_nfspagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700112extern void nfs_destroy_nfspagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400113extern int __init nfs_init_readpagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700114extern void nfs_destroy_readpagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400115extern int __init nfs_init_writepagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700116extern void nfs_destroy_writepagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400117
118#ifdef CONFIG_NFS_DIRECTIO
119extern int __init nfs_init_directcache(void);
David Brownell266bee82006-06-27 12:59:15 -0700120extern void nfs_destroy_directcache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400121#else
122#define nfs_init_directcache() (0)
123#define nfs_destroy_directcache() do {} while(0)
124#endif
125
126/* nfs2xdr.c */
David Howells7d4e2742006-08-22 20:06:07 -0400127extern int nfs_stat_to_errno(int);
David Howellsf7b422b2006-06-09 09:34:33 -0400128extern struct rpc_procinfo nfs_procedures[];
Al Viro0dbb4c62006-10-19 23:28:49 -0700129extern __be32 * nfs_decode_dirent(__be32 *, struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400130
131/* nfs3xdr.c */
132extern struct rpc_procinfo nfs3_procedures[];
Al Viro0dbb4c62006-10-19 23:28:49 -0700133extern __be32 *nfs3_decode_dirent(__be32 *, struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400134
135/* nfs4xdr.c */
David Howells7d4e2742006-08-22 20:06:07 -0400136#ifdef CONFIG_NFS_V4
Al Viro0dbb4c62006-10-19 23:28:49 -0700137extern __be32 *nfs4_decode_dirent(__be32 *p, struct nfs_entry *entry, int plus);
David Howells7d4e2742006-08-22 20:06:07 -0400138#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400139
140/* nfs4proc.c */
Andrew Mortond75d5412006-06-25 02:41:26 -0700141#ifdef CONFIG_NFS_V4
David Howellsf7b422b2006-06-09 09:34:33 -0400142extern struct rpc_procinfo nfs4_procedures[];
Andrew Mortond75d5412006-06-25 02:41:26 -0700143#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400144
Trond Myklebust979df722006-07-25 11:28:19 -0400145/* dir.c */
146extern int nfs_access_cache_shrinker(int nr_to_scan, gfp_t gfp_mask);
147
David Howellsf7b422b2006-06-09 09:34:33 -0400148/* inode.c */
149extern struct inode *nfs_alloc_inode(struct super_block *sb);
150extern void nfs_destroy_inode(struct inode *);
151extern int nfs_write_inode(struct inode *,int);
152extern void nfs_clear_inode(struct inode *);
153#ifdef CONFIG_NFS_V4
154extern void nfs4_clear_inode(struct inode *);
155#endif
156
157/* super.c */
David Howells54ceac42006-08-22 20:06:13 -0400158extern struct file_system_type nfs_xdev_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400159#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400160extern struct file_system_type nfs4_xdev_fs_type;
161extern struct file_system_type nfs4_referral_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400162#endif
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200163
David Howellsf7b422b2006-06-09 09:34:33 -0400164extern struct rpc_stat nfs_rpcstat;
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200165
David Howellsf7b422b2006-06-09 09:34:33 -0400166extern int __init register_nfs_fs(void);
167extern void __exit unregister_nfs_fs(void);
168
169/* namespace.c */
David Howells54ceac42006-08-22 20:06:13 -0400170extern char *nfs_path(const char *base,
171 const struct dentry *droot,
172 const struct dentry *dentry,
David Howellsf7b422b2006-06-09 09:34:33 -0400173 char *buffer, ssize_t buflen);
174
David Howells54ceac42006-08-22 20:06:13 -0400175/* getroot.c */
176extern struct dentry *nfs_get_root(struct super_block *, struct nfs_fh *);
David Howells7d4e2742006-08-22 20:06:07 -0400177#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400178extern struct dentry *nfs4_get_root(struct super_block *, struct nfs_fh *);
179
180extern int nfs4_path_walk(struct nfs_server *server,
181 struct nfs_fh *mntfh,
182 const char *path);
David Howells7d4e2742006-08-22 20:06:07 -0400183#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400184
185/*
186 * Determine the device name as a string
187 */
188static inline char *nfs_devname(const struct vfsmount *mnt_parent,
David Howells54ceac42006-08-22 20:06:13 -0400189 const struct dentry *dentry,
190 char *buffer, ssize_t buflen)
David Howellsf7b422b2006-06-09 09:34:33 -0400191{
David Howells54ceac42006-08-22 20:06:13 -0400192 return nfs_path(mnt_parent->mnt_devname, mnt_parent->mnt_root,
193 dentry, buffer, buflen);
David Howellsf7b422b2006-06-09 09:34:33 -0400194}
195
196/*
197 * Determine the actual block size (and log2 thereof)
198 */
199static inline
200unsigned long nfs_block_bits(unsigned long bsize, unsigned char *nrbitsp)
201{
202 /* make sure blocksize is a power of two */
203 if ((bsize & (bsize - 1)) || nrbitsp) {
204 unsigned char nrbits;
205
206 for (nrbits = 31; nrbits && !(bsize & (1 << nrbits)); nrbits--)
207 ;
208 bsize = 1 << nrbits;
209 if (nrbitsp)
210 *nrbitsp = nrbits;
211 }
212
213 return bsize;
214}
215
216/*
217 * Calculate the number of 512byte blocks used.
218 */
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400219static inline blkcnt_t nfs_calc_block_size(u64 tsize)
David Howellsf7b422b2006-06-09 09:34:33 -0400220{
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400221 blkcnt_t used = (tsize + 511) >> 9;
David Howellsf7b422b2006-06-09 09:34:33 -0400222 return (used > ULONG_MAX) ? ULONG_MAX : used;
223}
224
225/*
226 * Compute and set NFS server blocksize
227 */
228static inline
229unsigned long nfs_block_size(unsigned long bsize, unsigned char *nrbitsp)
230{
231 if (bsize < NFS_MIN_FILE_IO_SIZE)
232 bsize = NFS_DEF_FILE_IO_SIZE;
233 else if (bsize >= NFS_MAX_FILE_IO_SIZE)
234 bsize = NFS_MAX_FILE_IO_SIZE;
235
236 return nfs_block_bits(bsize, nrbitsp);
237}
238
239/*
240 * Determine the maximum file size for a superblock
241 */
242static inline
243void nfs_super_set_maxbytes(struct super_block *sb, __u64 maxfilesize)
244{
245 sb->s_maxbytes = (loff_t)maxfilesize;
246 if (sb->s_maxbytes > MAX_LFS_FILESIZE || sb->s_maxbytes <= 0)
247 sb->s_maxbytes = MAX_LFS_FILESIZE;
248}
Trond Myklebust49a70f22006-12-05 00:35:38 -0500249
250/*
251 * Determine the number of bytes of data the page contains
252 */
253static inline
254unsigned int nfs_page_length(struct page *page)
255{
256 loff_t i_size = i_size_read(page->mapping->host);
257
258 if (i_size > 0) {
259 pgoff_t end_index = (i_size - 1) >> PAGE_CACHE_SHIFT;
260 if (page->index < end_index)
261 return PAGE_CACHE_SIZE;
262 if (page->index == end_index)
263 return ((i_size - 1) & ~PAGE_CACHE_MASK) + 1;
264 }
265 return 0;
266}
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400267
268/*
269 * Determine the number of pages in an array of length 'len' and
270 * with a base offset of 'base'
271 */
272static inline
273unsigned int nfs_page_array_len(unsigned int base, size_t len)
274{
275 return ((unsigned long)len + (unsigned long)base +
276 PAGE_SIZE - 1) >> PAGE_SHIFT;
277}
278