| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 1 | /* | 
 | 2 |  * NFS internal definitions | 
 | 3 |  */ | 
 | 4 |  | 
 | 5 | #include <linux/mount.h> | 
 | 6 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 7 | struct nfs_string; | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 8 |  | 
 | 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 Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 17 | struct 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; | 
 | 24 | 	struct sockaddr_in *addr; | 
 | 25 | 	rpc_authflavor_t authflavor; | 
 | 26 | }; | 
 | 27 |  | 
| \"Talpey, Thomas\ | 6b18eaa | 2007-09-10 13:43:29 -0400 | [diff] [blame] | 28 | /* | 
 | 29 |  * In-kernel mount arguments | 
 | 30 |  */ | 
 | 31 | struct nfs_parsed_mount_data { | 
 | 32 | 	int			flags; | 
 | 33 | 	int			rsize, wsize; | 
 | 34 | 	int			timeo, retrans; | 
 | 35 | 	int			acregmin, acregmax, | 
 | 36 | 				acdirmin, acdirmax; | 
 | 37 | 	int			namlen; | 
 | 38 | 	unsigned int		bsize; | 
 | 39 | 	unsigned int		auth_flavor_len; | 
 | 40 | 	rpc_authflavor_t	auth_flavors[1]; | 
 | 41 | 	char			*client_address; | 
 | 42 |  | 
 | 43 | 	struct { | 
 | 44 | 		struct sockaddr_in	address; | 
 | 45 | 		char			*hostname; | 
 | 46 | 		unsigned int		program; | 
 | 47 | 		unsigned int		version; | 
 | 48 | 		unsigned short		port; | 
 | 49 | 		int			protocol; | 
 | 50 | 	} mount_server; | 
 | 51 |  | 
 | 52 | 	struct { | 
 | 53 | 		struct sockaddr_in	address; | 
 | 54 | 		char			*hostname; | 
 | 55 | 		char			*export_path; | 
 | 56 | 		unsigned int		program; | 
 | 57 | 		int			protocol; | 
 | 58 | 	} nfs_server; | 
 | 59 | }; | 
 | 60 |  | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 61 | /* client.c */ | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 62 | extern struct rpc_program nfs_program; | 
 | 63 |  | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 64 | extern void nfs_put_client(struct nfs_client *); | 
 | 65 | extern struct nfs_client *nfs_find_client(const struct sockaddr_in *, int); | 
| \"Talpey, Thomas\ | 2283f8d | 2007-09-10 13:43:56 -0400 | [diff] [blame] | 66 | extern struct nfs_server *nfs_create_server( | 
 | 67 | 					const struct nfs_parsed_mount_data *, | 
 | 68 | 					struct nfs_fh *); | 
| \"Talpey, Thomas\ | 91ea40b | 2007-09-10 13:44:33 -0400 | [diff] [blame] | 69 | extern struct nfs_server *nfs4_create_server( | 
 | 70 | 					const struct nfs_parsed_mount_data *, | 
 | 71 | 					struct nfs_fh *); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 72 | extern struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *, | 
 | 73 | 						      struct nfs_fh *); | 
 | 74 | extern void nfs_free_server(struct nfs_server *server); | 
 | 75 | extern struct nfs_server *nfs_clone_server(struct nfs_server *, | 
 | 76 | 					   struct nfs_fh *, | 
 | 77 | 					   struct nfs_fattr *); | 
| David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 78 | #ifdef CONFIG_PROC_FS | 
 | 79 | extern int __init nfs_fs_proc_init(void); | 
 | 80 | extern void nfs_fs_proc_exit(void); | 
 | 81 | #else | 
 | 82 | static inline int nfs_fs_proc_init(void) | 
 | 83 | { | 
 | 84 | 	return 0; | 
 | 85 | } | 
 | 86 | static inline void nfs_fs_proc_exit(void) | 
 | 87 | { | 
 | 88 | } | 
 | 89 | #endif | 
| David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 90 |  | 
| David Howells | 7d4e274 | 2006-08-22 20:06:07 -0400 | [diff] [blame] | 91 | /* nfs4namespace.c */ | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 92 | #ifdef CONFIG_NFS_V4 | 
 | 93 | extern struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry); | 
 | 94 | #else | 
 | 95 | static inline | 
 | 96 | struct vfsmount *nfs_do_refmount(const struct vfsmount *mnt_parent, struct dentry *dentry) | 
 | 97 | { | 
 | 98 | 	return ERR_PTR(-ENOENT); | 
 | 99 | } | 
 | 100 | #endif | 
 | 101 |  | 
 | 102 | /* callback_xdr.c */ | 
 | 103 | extern struct svc_version nfs4_callback_version1; | 
 | 104 |  | 
 | 105 | /* pagelist.c */ | 
 | 106 | extern int __init nfs_init_nfspagecache(void); | 
| David Brownell | 266bee8 | 2006-06-27 12:59:15 -0700 | [diff] [blame] | 107 | extern void nfs_destroy_nfspagecache(void); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 108 | extern int __init nfs_init_readpagecache(void); | 
| David Brownell | 266bee8 | 2006-06-27 12:59:15 -0700 | [diff] [blame] | 109 | extern void nfs_destroy_readpagecache(void); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 110 | extern int __init nfs_init_writepagecache(void); | 
| David Brownell | 266bee8 | 2006-06-27 12:59:15 -0700 | [diff] [blame] | 111 | extern void nfs_destroy_writepagecache(void); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 112 |  | 
 | 113 | #ifdef CONFIG_NFS_DIRECTIO | 
 | 114 | extern int __init nfs_init_directcache(void); | 
| David Brownell | 266bee8 | 2006-06-27 12:59:15 -0700 | [diff] [blame] | 115 | extern void nfs_destroy_directcache(void); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 116 | #else | 
 | 117 | #define nfs_init_directcache() (0) | 
 | 118 | #define nfs_destroy_directcache() do {} while(0) | 
 | 119 | #endif | 
 | 120 |  | 
 | 121 | /* nfs2xdr.c */ | 
| David Howells | 7d4e274 | 2006-08-22 20:06:07 -0400 | [diff] [blame] | 122 | extern int nfs_stat_to_errno(int); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 123 | extern struct rpc_procinfo nfs_procedures[]; | 
| Al Viro | 0dbb4c6 | 2006-10-19 23:28:49 -0700 | [diff] [blame] | 124 | extern __be32 * nfs_decode_dirent(__be32 *, struct nfs_entry *, int); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 125 |  | 
 | 126 | /* nfs3xdr.c */ | 
 | 127 | extern struct rpc_procinfo nfs3_procedures[]; | 
| Al Viro | 0dbb4c6 | 2006-10-19 23:28:49 -0700 | [diff] [blame] | 128 | extern __be32 *nfs3_decode_dirent(__be32 *, struct nfs_entry *, int); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 129 |  | 
 | 130 | /* nfs4xdr.c */ | 
| David Howells | 7d4e274 | 2006-08-22 20:06:07 -0400 | [diff] [blame] | 131 | #ifdef CONFIG_NFS_V4 | 
| Al Viro | 0dbb4c6 | 2006-10-19 23:28:49 -0700 | [diff] [blame] | 132 | extern __be32 *nfs4_decode_dirent(__be32 *p, struct nfs_entry *entry, int plus); | 
| David Howells | 7d4e274 | 2006-08-22 20:06:07 -0400 | [diff] [blame] | 133 | #endif | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 134 |  | 
 | 135 | /* nfs4proc.c */ | 
| Andrew Morton | d75d541 | 2006-06-25 02:41:26 -0700 | [diff] [blame] | 136 | #ifdef CONFIG_NFS_V4 | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 137 | extern struct rpc_procinfo nfs4_procedures[]; | 
| Andrew Morton | d75d541 | 2006-06-25 02:41:26 -0700 | [diff] [blame] | 138 | #endif | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 139 |  | 
| Trond Myklebust | 979df72 | 2006-07-25 11:28:19 -0400 | [diff] [blame] | 140 | /* dir.c */ | 
 | 141 | extern int nfs_access_cache_shrinker(int nr_to_scan, gfp_t gfp_mask); | 
 | 142 |  | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 143 | /* inode.c */ | 
 | 144 | extern struct inode *nfs_alloc_inode(struct super_block *sb); | 
 | 145 | extern void nfs_destroy_inode(struct inode *); | 
 | 146 | extern int nfs_write_inode(struct inode *,int); | 
 | 147 | extern void nfs_clear_inode(struct inode *); | 
 | 148 | #ifdef CONFIG_NFS_V4 | 
 | 149 | extern void nfs4_clear_inode(struct inode *); | 
 | 150 | #endif | 
 | 151 |  | 
 | 152 | /* super.c */ | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 153 | extern struct file_system_type nfs_xdev_fs_type; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 154 | #ifdef CONFIG_NFS_V4 | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 155 | extern struct file_system_type nfs4_xdev_fs_type; | 
 | 156 | extern struct file_system_type nfs4_referral_fs_type; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 157 | #endif | 
| Dominik Hackl | 4ebd9ab | 2006-07-02 17:29:26 +0200 | [diff] [blame] | 158 |  | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 159 | extern struct rpc_stat nfs_rpcstat; | 
| Dominik Hackl | 4ebd9ab | 2006-07-02 17:29:26 +0200 | [diff] [blame] | 160 |  | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 161 | extern int __init register_nfs_fs(void); | 
 | 162 | extern void __exit unregister_nfs_fs(void); | 
 | 163 |  | 
 | 164 | /* namespace.c */ | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 165 | extern char *nfs_path(const char *base, | 
 | 166 | 		      const struct dentry *droot, | 
 | 167 | 		      const struct dentry *dentry, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 168 | 		      char *buffer, ssize_t buflen); | 
 | 169 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 170 | /* getroot.c */ | 
 | 171 | extern struct dentry *nfs_get_root(struct super_block *, struct nfs_fh *); | 
| David Howells | 7d4e274 | 2006-08-22 20:06:07 -0400 | [diff] [blame] | 172 | #ifdef CONFIG_NFS_V4 | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 173 | extern struct dentry *nfs4_get_root(struct super_block *, struct nfs_fh *); | 
 | 174 |  | 
 | 175 | extern int nfs4_path_walk(struct nfs_server *server, | 
 | 176 | 			  struct nfs_fh *mntfh, | 
 | 177 | 			  const char *path); | 
| David Howells | 7d4e274 | 2006-08-22 20:06:07 -0400 | [diff] [blame] | 178 | #endif | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 179 |  | 
 | 180 | /* | 
 | 181 |  * Determine the device name as a string | 
 | 182 |  */ | 
 | 183 | static inline char *nfs_devname(const struct vfsmount *mnt_parent, | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 184 | 				const struct dentry *dentry, | 
 | 185 | 				char *buffer, ssize_t buflen) | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 186 | { | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 187 | 	return nfs_path(mnt_parent->mnt_devname, mnt_parent->mnt_root, | 
 | 188 | 			dentry, buffer, buflen); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 189 | } | 
 | 190 |  | 
 | 191 | /* | 
 | 192 |  * Determine the actual block size (and log2 thereof) | 
 | 193 |  */ | 
 | 194 | static inline | 
 | 195 | unsigned long nfs_block_bits(unsigned long bsize, unsigned char *nrbitsp) | 
 | 196 | { | 
 | 197 | 	/* make sure blocksize is a power of two */ | 
 | 198 | 	if ((bsize & (bsize - 1)) || nrbitsp) { | 
 | 199 | 		unsigned char	nrbits; | 
 | 200 |  | 
 | 201 | 		for (nrbits = 31; nrbits && !(bsize & (1 << nrbits)); nrbits--) | 
 | 202 | 			; | 
 | 203 | 		bsize = 1 << nrbits; | 
 | 204 | 		if (nrbitsp) | 
 | 205 | 			*nrbitsp = nrbits; | 
 | 206 | 	} | 
 | 207 |  | 
 | 208 | 	return bsize; | 
 | 209 | } | 
 | 210 |  | 
 | 211 | /* | 
 | 212 |  * Calculate the number of 512byte blocks used. | 
 | 213 |  */ | 
| Chuck Lever | 9eaa67c | 2007-07-01 12:12:19 -0400 | [diff] [blame] | 214 | static inline blkcnt_t nfs_calc_block_size(u64 tsize) | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 215 | { | 
| Chuck Lever | 9eaa67c | 2007-07-01 12:12:19 -0400 | [diff] [blame] | 216 | 	blkcnt_t used = (tsize + 511) >> 9; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 217 | 	return (used > ULONG_MAX) ? ULONG_MAX : used; | 
 | 218 | } | 
 | 219 |  | 
 | 220 | /* | 
 | 221 |  * Compute and set NFS server blocksize | 
 | 222 |  */ | 
 | 223 | static inline | 
 | 224 | unsigned long nfs_block_size(unsigned long bsize, unsigned char *nrbitsp) | 
 | 225 | { | 
 | 226 | 	if (bsize < NFS_MIN_FILE_IO_SIZE) | 
 | 227 | 		bsize = NFS_DEF_FILE_IO_SIZE; | 
 | 228 | 	else if (bsize >= NFS_MAX_FILE_IO_SIZE) | 
 | 229 | 		bsize = NFS_MAX_FILE_IO_SIZE; | 
 | 230 |  | 
 | 231 | 	return nfs_block_bits(bsize, nrbitsp); | 
 | 232 | } | 
 | 233 |  | 
 | 234 | /* | 
 | 235 |  * Determine the maximum file size for a superblock | 
 | 236 |  */ | 
 | 237 | static inline | 
 | 238 | void nfs_super_set_maxbytes(struct super_block *sb, __u64 maxfilesize) | 
 | 239 | { | 
 | 240 | 	sb->s_maxbytes = (loff_t)maxfilesize; | 
 | 241 | 	if (sb->s_maxbytes > MAX_LFS_FILESIZE || sb->s_maxbytes <= 0) | 
 | 242 | 		sb->s_maxbytes = MAX_LFS_FILESIZE; | 
 | 243 | } | 
| Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 244 |  | 
 | 245 | /* | 
 | 246 |  * Determine the number of bytes of data the page contains | 
 | 247 |  */ | 
 | 248 | static inline | 
 | 249 | unsigned int nfs_page_length(struct page *page) | 
 | 250 | { | 
 | 251 | 	loff_t i_size = i_size_read(page->mapping->host); | 
 | 252 |  | 
 | 253 | 	if (i_size > 0) { | 
 | 254 | 		pgoff_t end_index = (i_size - 1) >> PAGE_CACHE_SHIFT; | 
 | 255 | 		if (page->index < end_index) | 
 | 256 | 			return PAGE_CACHE_SIZE; | 
 | 257 | 		if (page->index == end_index) | 
 | 258 | 			return ((i_size - 1) & ~PAGE_CACHE_MASK) + 1; | 
 | 259 | 	} | 
 | 260 | 	return 0; | 
 | 261 | } | 
| Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 262 |  | 
 | 263 | /* | 
 | 264 |  * Determine the number of pages in an array of length 'len' and | 
 | 265 |  * with a base offset of 'base' | 
 | 266 |  */ | 
 | 267 | static inline | 
 | 268 | unsigned int nfs_page_array_len(unsigned int base, size_t len) | 
 | 269 | { | 
 | 270 | 	return ((unsigned long)len + (unsigned long)base + | 
 | 271 | 		PAGE_SIZE - 1) >> PAGE_SHIFT; | 
 | 272 | } | 
 | 273 |  |