blob: d212ee41caf21ce069f92784b229a7214859c58a [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
David Howells24c8dbb2006-08-22 20:06:10 -040066/* client.c */
David Howells54ceac42006-08-22 20:06:13 -040067extern struct rpc_program nfs_program;
68
David Howells24c8dbb2006-08-22 20:06:10 -040069extern void nfs_put_client(struct nfs_client *);
Chuck Leverff052642007-12-10 14:58:44 -050070extern struct nfs_client *nfs_find_client(const struct sockaddr *, u32);
Trond Myklebust3fbd67a2008-01-26 01:06:40 -050071extern struct nfs_client *nfs_find_client_next(struct nfs_client *);
\"Talpey, Thomas\2283f8d2007-09-10 13:43:56 -040072extern struct nfs_server *nfs_create_server(
73 const struct nfs_parsed_mount_data *,
74 struct nfs_fh *);
\"Talpey, Thomas\91ea40b2007-09-10 13:44:33 -040075extern struct nfs_server *nfs4_create_server(
76 const struct nfs_parsed_mount_data *,
77 struct nfs_fh *);
David Howells54ceac42006-08-22 20:06:13 -040078extern struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *,
79 struct nfs_fh *);
80extern void nfs_free_server(struct nfs_server *server);
81extern struct nfs_server *nfs_clone_server(struct nfs_server *,
82 struct nfs_fh *,
83 struct nfs_fattr *);
David Howells6aaca562006-08-22 20:06:13 -040084#ifdef CONFIG_PROC_FS
85extern int __init nfs_fs_proc_init(void);
86extern void nfs_fs_proc_exit(void);
87#else
88static inline int nfs_fs_proc_init(void)
89{
90 return 0;
91}
92static inline void nfs_fs_proc_exit(void)
93{
94}
95#endif
David Howells24c8dbb2006-08-22 20:06:10 -040096
David Howells7d4e2742006-08-22 20:06:07 -040097/* nfs4namespace.c */
David Howellsf7b422b2006-06-09 09:34:33 -040098#ifdef CONFIG_NFS_V4
99extern struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry);
100#else
101static inline
102struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry)
103{
104 return ERR_PTR(-ENOENT);
105}
106#endif
107
108/* callback_xdr.c */
109extern struct svc_version nfs4_callback_version1;
110
111/* pagelist.c */
112extern int __init nfs_init_nfspagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700113extern void nfs_destroy_nfspagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400114extern int __init nfs_init_readpagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700115extern void nfs_destroy_readpagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400116extern int __init nfs_init_writepagecache(void);
David Brownell266bee82006-06-27 12:59:15 -0700117extern void nfs_destroy_writepagecache(void);
David Howellsf7b422b2006-06-09 09:34:33 -0400118
David Howellsf7b422b2006-06-09 09:34:33 -0400119extern 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
122/* nfs2xdr.c */
David Howells7d4e2742006-08-22 20:06:07 -0400123extern int nfs_stat_to_errno(int);
David Howellsf7b422b2006-06-09 09:34:33 -0400124extern struct rpc_procinfo nfs_procedures[];
Al Viro0dbb4c62006-10-19 23:28:49 -0700125extern __be32 * nfs_decode_dirent(__be32 *, struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400126
127/* nfs3xdr.c */
128extern struct rpc_procinfo nfs3_procedures[];
Al Viro0dbb4c62006-10-19 23:28:49 -0700129extern __be32 *nfs3_decode_dirent(__be32 *, struct nfs_entry *, int);
David Howellsf7b422b2006-06-09 09:34:33 -0400130
131/* nfs4xdr.c */
David Howells7d4e2742006-08-22 20:06:07 -0400132#ifdef CONFIG_NFS_V4
Al Viro0dbb4c62006-10-19 23:28:49 -0700133extern __be32 *nfs4_decode_dirent(__be32 *p, struct nfs_entry *entry, int plus);
David Howells7d4e2742006-08-22 20:06:07 -0400134#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400135
136/* nfs4proc.c */
Andrew Mortond75d5412006-06-25 02:41:26 -0700137#ifdef CONFIG_NFS_V4
David Howellsf7b422b2006-06-09 09:34:33 -0400138extern struct rpc_procinfo nfs4_procedures[];
Andrew Mortond75d5412006-06-25 02:41:26 -0700139#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400140
Trond Myklebust979df722006-07-25 11:28:19 -0400141/* dir.c */
142extern int nfs_access_cache_shrinker(int nr_to_scan, gfp_t gfp_mask);
143
David Howellsf7b422b2006-06-09 09:34:33 -0400144/* inode.c */
Trond Myklebust57460062008-02-19 20:04:22 -0500145extern struct workqueue_struct *nfsiod_workqueue;
David Howellsf7b422b2006-06-09 09:34:33 -0400146extern 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
Trond Myklebustf41f7412008-06-11 17:39:04 -0400153void nfs_zap_acl_cache(struct inode *inode);
David Howellsf7b422b2006-06-09 09:34:33 -0400154
155/* super.c */
J. Bruce Fieldsea31a4432008-08-20 16:10:23 -0400156void nfs_parse_ip_address(char *, size_t, struct sockaddr *, size_t *);
David Howells54ceac42006-08-22 20:06:13 -0400157extern struct file_system_type nfs_xdev_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400158#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400159extern struct file_system_type nfs4_xdev_fs_type;
160extern struct file_system_type nfs4_referral_fs_type;
David Howellsf7b422b2006-06-09 09:34:33 -0400161#endif
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200162
David Howellsf7b422b2006-06-09 09:34:33 -0400163extern struct rpc_stat nfs_rpcstat;
Dominik Hackl4ebd9ab2006-07-02 17:29:26 +0200164
David Howellsf7b422b2006-06-09 09:34:33 -0400165extern int __init register_nfs_fs(void);
166extern void __exit unregister_nfs_fs(void);
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400167extern void nfs_sb_active(struct super_block *sb);
168extern void nfs_sb_deactive(struct super_block *sb);
David Howellsf7b422b2006-06-09 09:34:33 -0400169
170/* namespace.c */
David Howells54ceac42006-08-22 20:06:13 -0400171extern char *nfs_path(const char *base,
172 const struct dentry *droot,
173 const struct dentry *dentry,
David Howellsf7b422b2006-06-09 09:34:33 -0400174 char *buffer, ssize_t buflen);
175
David Howells54ceac42006-08-22 20:06:13 -0400176/* getroot.c */
177extern struct dentry *nfs_get_root(struct super_block *, struct nfs_fh *);
David Howells7d4e2742006-08-22 20:06:07 -0400178#ifdef CONFIG_NFS_V4
David Howells54ceac42006-08-22 20:06:13 -0400179extern struct dentry *nfs4_get_root(struct super_block *, struct nfs_fh *);
180
181extern int nfs4_path_walk(struct nfs_server *server,
182 struct nfs_fh *mntfh,
183 const char *path);
David Howells7d4e2742006-08-22 20:06:07 -0400184#endif
David Howellsf7b422b2006-06-09 09:34:33 -0400185
186/*
187 * Determine the device name as a string
188 */
189static inline char *nfs_devname(const struct vfsmount *mnt_parent,
David Howells54ceac42006-08-22 20:06:13 -0400190 const struct dentry *dentry,
191 char *buffer, ssize_t buflen)
David Howellsf7b422b2006-06-09 09:34:33 -0400192{
David Howells54ceac42006-08-22 20:06:13 -0400193 return nfs_path(mnt_parent->mnt_devname, mnt_parent->mnt_root,
194 dentry, buffer, buflen);
David Howellsf7b422b2006-06-09 09:34:33 -0400195}
196
197/*
198 * Determine the actual block size (and log2 thereof)
199 */
200static inline
201unsigned long nfs_block_bits(unsigned long bsize, unsigned char *nrbitsp)
202{
203 /* make sure blocksize is a power of two */
204 if ((bsize & (bsize - 1)) || nrbitsp) {
205 unsigned char nrbits;
206
207 for (nrbits = 31; nrbits && !(bsize & (1 << nrbits)); nrbits--)
208 ;
209 bsize = 1 << nrbits;
210 if (nrbitsp)
211 *nrbitsp = nrbits;
212 }
213
214 return bsize;
215}
216
217/*
218 * Calculate the number of 512byte blocks used.
219 */
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400220static inline blkcnt_t nfs_calc_block_size(u64 tsize)
David Howellsf7b422b2006-06-09 09:34:33 -0400221{
Chuck Lever9eaa67c2007-07-01 12:12:19 -0400222 blkcnt_t used = (tsize + 511) >> 9;
David Howellsf7b422b2006-06-09 09:34:33 -0400223 return (used > ULONG_MAX) ? ULONG_MAX : used;
224}
225
226/*
227 * Compute and set NFS server blocksize
228 */
229static inline
230unsigned long nfs_block_size(unsigned long bsize, unsigned char *nrbitsp)
231{
232 if (bsize < NFS_MIN_FILE_IO_SIZE)
233 bsize = NFS_DEF_FILE_IO_SIZE;
234 else if (bsize >= NFS_MAX_FILE_IO_SIZE)
235 bsize = NFS_MAX_FILE_IO_SIZE;
236
237 return nfs_block_bits(bsize, nrbitsp);
238}
239
240/*
241 * Determine the maximum file size for a superblock
242 */
243static inline
244void nfs_super_set_maxbytes(struct super_block *sb, __u64 maxfilesize)
245{
246 sb->s_maxbytes = (loff_t)maxfilesize;
247 if (sb->s_maxbytes > MAX_LFS_FILESIZE || sb->s_maxbytes <= 0)
248 sb->s_maxbytes = MAX_LFS_FILESIZE;
249}
Trond Myklebust49a70f22006-12-05 00:35:38 -0500250
251/*
252 * Determine the number of bytes of data the page contains
253 */
254static inline
255unsigned int nfs_page_length(struct page *page)
256{
257 loff_t i_size = i_size_read(page->mapping->host);
258
259 if (i_size > 0) {
260 pgoff_t end_index = (i_size - 1) >> PAGE_CACHE_SHIFT;
261 if (page->index < end_index)
262 return PAGE_CACHE_SIZE;
263 if (page->index == end_index)
264 return ((i_size - 1) & ~PAGE_CACHE_MASK) + 1;
265 }
266 return 0;
267}
Trond Myklebust8d5658c2007-04-10 09:26:35 -0400268
269/*
270 * Determine the number of pages in an array of length 'len' and
271 * with a base offset of 'base'
272 */
273static inline
274unsigned int nfs_page_array_len(unsigned int base, size_t len)
275{
276 return ((unsigned long)len + (unsigned long)base +
277 PAGE_SIZE - 1) >> PAGE_SHIFT;
278}
279
J. Bruce Fieldsea31a4432008-08-20 16:10:23 -0400280#define IPV6_SCOPE_DELIMITER '%'
J. Bruce Fieldsf0c929252008-08-20 16:10:22 -0400281
282/*
283 * Set the port number in an address. Be agnostic about the address
284 * family.
285 */
286static inline void nfs_set_port(struct sockaddr *sap, unsigned short port)
287{
J. Bruce Fields456018d2008-10-08 15:31:14 -0400288 struct sockaddr_in *ap = (struct sockaddr_in *)sap;
289 struct sockaddr_in6 *ap6 = (struct sockaddr_in6 *)sap;
290
J. Bruce Fieldsf0c929252008-08-20 16:10:22 -0400291 switch (sap->sa_family) {
J. Bruce Fields456018d2008-10-08 15:31:14 -0400292 case AF_INET:
293 ap->sin_port = htons(port);
294 break;
295 case AF_INET6:
296 ap6->sin6_port = htons(port);
297 break;
J. Bruce Fieldsf0c929252008-08-20 16:10:22 -0400298 }
299}