David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 1 | /* |
| 2 | * NFS internal definitions |
| 3 | */ |
| 4 | |
Andy Adamson | eedc020 | 2009-04-01 09:22:41 -0400 | [diff] [blame] | 5 | #include "nfs4_fs.h" |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 6 | #include <linux/mount.h> |
Eric Paris | f9c3a38 | 2008-03-05 14:20:18 -0500 | [diff] [blame] | 7 | #include <linux/security.h> |
Trond Myklebust | 1264a2f | 2013-08-12 16:06:31 -0400 | [diff] [blame] | 8 | #include <linux/crc32.h> |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 9 | |
David Howells | 0873404 | 2009-04-03 16:42:42 +0100 | [diff] [blame] | 10 | #define NFS_MS_MASK (MS_RDONLY|MS_NOSUID|MS_NODEV|MS_NOEXEC|MS_SYNCHRONOUS) |
| 11 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 12 | struct nfs_string; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 13 | |
| 14 | /* Maximum number of readahead requests |
| 15 | * FIXME: this should really be a sysctl so that users may tune it to suit |
| 16 | * their needs. People that do NFS over a slow network, might for |
| 17 | * instance want to reduce it to something closer to 1 for improved |
| 18 | * interactive response. |
| 19 | */ |
| 20 | #define NFS_MAX_READAHEAD (RPC_DEF_SLOT_TABLE - 1) |
| 21 | |
Bryan Schumaker | 7ebb931 | 2011-03-24 17:12:30 +0000 | [diff] [blame] | 22 | static inline void nfs_attr_check_mountpoint(struct super_block *parent, struct nfs_fattr *fattr) |
| 23 | { |
| 24 | if (!nfs_fsid_equal(&NFS_SB(parent)->fsid, &fattr->fsid)) |
| 25 | fattr->valid |= NFS_ATTR_FATTR_MOUNTPOINT; |
| 26 | } |
| 27 | |
Andy Adamson | 533eb46 | 2011-06-13 18:25:56 -0400 | [diff] [blame] | 28 | static inline int nfs_attr_use_mounted_on_fileid(struct nfs_fattr *fattr) |
| 29 | { |
| 30 | if (((fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID) == 0) || |
| 31 | (((fattr->valid & NFS_ATTR_FATTR_MOUNTPOINT) == 0) && |
| 32 | ((fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL) == 0))) |
| 33 | return 0; |
| 34 | |
| 35 | fattr->fileid = fattr->mounted_on_fileid; |
| 36 | return 1; |
| 37 | } |
| 38 | |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 39 | struct nfs_clone_mount { |
| 40 | const struct super_block *sb; |
| 41 | const struct dentry *dentry; |
| 42 | struct nfs_fh *fh; |
| 43 | struct nfs_fattr *fattr; |
| 44 | char *hostname; |
| 45 | char *mnt_path; |
Chuck Lever | 6677d09 | 2007-12-10 14:59:06 -0500 | [diff] [blame] | 46 | struct sockaddr *addr; |
| 47 | size_t addrlen; |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 48 | rpc_authflavor_t authflavor; |
| 49 | }; |
| 50 | |
\"Talpey, Thomas\ | 6b18eaa | 2007-09-10 13:43:29 -0400 | [diff] [blame] | 51 | /* |
Chuck Lever | a14017d | 2009-06-17 18:02:12 -0700 | [diff] [blame] | 52 | * Note: RFC 1813 doesn't limit the number of auth flavors that |
| 53 | * a server can return, so make something up. |
| 54 | */ |
| 55 | #define NFS_MAX_SECFLAVORS (12) |
| 56 | |
| 57 | /* |
Chuck Lever | 4cfd74f | 2009-09-08 19:49:47 -0400 | [diff] [blame] | 58 | * Value used if the user did not specify a port value. |
| 59 | */ |
| 60 | #define NFS_UNSPEC_PORT (-1) |
| 61 | |
| 62 | /* |
Bryan Schumaker | 56e4ebf | 2010-10-20 15:44:37 -0400 | [diff] [blame] | 63 | * Maximum number of pages that readdir can use for creating |
| 64 | * a vmapped array of pages. |
| 65 | */ |
| 66 | #define NFS_MAX_READDIR_PAGES 8 |
| 67 | |
Bryan Schumaker | fcf1039 | 2012-07-16 16:39:18 -0400 | [diff] [blame] | 68 | struct nfs_client_initdata { |
| 69 | unsigned long init_flags; |
| 70 | const char *hostname; |
| 71 | const struct sockaddr *addr; |
| 72 | size_t addrlen; |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 73 | struct nfs_subversion *nfs_mod; |
Bryan Schumaker | fcf1039 | 2012-07-16 16:39:18 -0400 | [diff] [blame] | 74 | int proto; |
| 75 | u32 minorversion; |
| 76 | struct net *net; |
| 77 | }; |
| 78 | |
Bryan Schumaker | 56e4ebf | 2010-10-20 15:44:37 -0400 | [diff] [blame] | 79 | /* |
\"Talpey, Thomas\ | 6b18eaa | 2007-09-10 13:43:29 -0400 | [diff] [blame] | 80 | * In-kernel mount arguments |
| 81 | */ |
| 82 | struct nfs_parsed_mount_data { |
| 83 | int flags; |
Chuck Lever | 8cb7f74 | 2012-09-14 17:23:14 -0400 | [diff] [blame] | 84 | unsigned int rsize, wsize; |
| 85 | unsigned int timeo, retrans; |
| 86 | unsigned int acregmin, acregmax, |
\"Talpey, Thomas\ | 6b18eaa | 2007-09-10 13:43:29 -0400 | [diff] [blame] | 87 | acdirmin, acdirmax; |
Chuck Lever | 8cb7f74 | 2012-09-14 17:23:14 -0400 | [diff] [blame] | 88 | unsigned int namlen; |
David Howells | b797cac | 2009-04-03 16:42:48 +0100 | [diff] [blame] | 89 | unsigned int options; |
\"Talpey, Thomas\ | 6b18eaa | 2007-09-10 13:43:29 -0400 | [diff] [blame] | 90 | unsigned int bsize; |
Weston Andros Adamson | a3f73c2 | 2013-10-18 15:15:16 -0400 | [diff] [blame] | 91 | struct nfs_auth_info auth_info; |
| 92 | rpc_authflavor_t selected_flavor; |
\"Talpey, Thomas\ | 6b18eaa | 2007-09-10 13:43:29 -0400 | [diff] [blame] | 93 | char *client_address; |
Chuck Lever | 764302c | 2009-09-08 19:50:03 -0400 | [diff] [blame] | 94 | unsigned int version; |
Mike Sager | 3fd5be9 | 2009-04-01 09:21:48 -0400 | [diff] [blame] | 95 | unsigned int minorversion; |
David Howells | 0873404 | 2009-04-03 16:42:42 +0100 | [diff] [blame] | 96 | char *fscache_uniq; |
Bryan Schumaker | b72e4f4 | 2012-05-10 15:07:40 -0400 | [diff] [blame] | 97 | bool need_mount; |
\"Talpey, Thomas\ | 6b18eaa | 2007-09-10 13:43:29 -0400 | [diff] [blame] | 98 | |
| 99 | struct { |
Chuck Lever | 4c56801 | 2007-12-10 14:59:28 -0500 | [diff] [blame] | 100 | struct sockaddr_storage address; |
| 101 | size_t addrlen; |
\"Talpey, Thomas\ | 6b18eaa | 2007-09-10 13:43:29 -0400 | [diff] [blame] | 102 | char *hostname; |
Chuck Lever | 78fa701 | 2008-03-14 14:10:15 -0400 | [diff] [blame] | 103 | u32 version; |
Chuck Lever | 4cfd74f | 2009-09-08 19:49:47 -0400 | [diff] [blame] | 104 | int port; |
Chuck Lever | 78fa701 | 2008-03-14 14:10:15 -0400 | [diff] [blame] | 105 | unsigned short protocol; |
\"Talpey, Thomas\ | 6b18eaa | 2007-09-10 13:43:29 -0400 | [diff] [blame] | 106 | } mount_server; |
| 107 | |
| 108 | struct { |
Chuck Lever | 4c56801 | 2007-12-10 14:59:28 -0500 | [diff] [blame] | 109 | struct sockaddr_storage address; |
| 110 | size_t addrlen; |
\"Talpey, Thomas\ | 6b18eaa | 2007-09-10 13:43:29 -0400 | [diff] [blame] | 111 | char *hostname; |
| 112 | char *export_path; |
Chuck Lever | 4cfd74f | 2009-09-08 19:49:47 -0400 | [diff] [blame] | 113 | int port; |
Chuck Lever | 78fa701 | 2008-03-14 14:10:15 -0400 | [diff] [blame] | 114 | unsigned short protocol; |
\"Talpey, Thomas\ | 6b18eaa | 2007-09-10 13:43:29 -0400 | [diff] [blame] | 115 | } nfs_server; |
Eric Paris | f9c3a38 | 2008-03-05 14:20:18 -0500 | [diff] [blame] | 116 | |
| 117 | struct security_mnt_opts lsm_opts; |
Stanislav Kinsbursky | e50a7a1 | 2012-01-10 16:12:46 +0400 | [diff] [blame] | 118 | struct net *net; |
\"Talpey, Thomas\ | 6b18eaa | 2007-09-10 13:43:29 -0400 | [diff] [blame] | 119 | }; |
| 120 | |
Chuck Lever | 146ec94 | 2008-12-23 15:21:34 -0500 | [diff] [blame] | 121 | /* mount_clnt.c */ |
Chuck Lever | c5d120f | 2008-12-23 15:21:35 -0500 | [diff] [blame] | 122 | struct nfs_mount_request { |
| 123 | struct sockaddr *sap; |
| 124 | size_t salen; |
| 125 | char *hostname; |
| 126 | char *dirpath; |
| 127 | u32 version; |
| 128 | unsigned short protocol; |
| 129 | struct nfs_fh *fh; |
Chuck Lever | 50a737f | 2008-12-23 15:21:37 -0500 | [diff] [blame] | 130 | int noresvport; |
Chuck Lever | 8e02f6b | 2009-06-17 18:02:13 -0700 | [diff] [blame] | 131 | unsigned int *auth_flav_len; |
| 132 | rpc_authflavor_t *auth_flavs; |
Stanislav Kinsbursky | 6d59b8d | 2012-01-10 16:12:54 +0400 | [diff] [blame] | 133 | struct net *net; |
Chuck Lever | c5d120f | 2008-12-23 15:21:35 -0500 | [diff] [blame] | 134 | }; |
| 135 | |
Bryan Schumaker | fbdefd6 | 2012-07-16 16:39:20 -0400 | [diff] [blame] | 136 | struct nfs_mount_info { |
| 137 | void (*fill_super)(struct super_block *, struct nfs_mount_info *); |
| 138 | int (*set_security)(struct super_block *, struct dentry *, struct nfs_mount_info *); |
| 139 | struct nfs_parsed_mount_data *parsed; |
| 140 | struct nfs_clone_mount *cloned; |
| 141 | struct nfs_fh *mntfh; |
| 142 | }; |
| 143 | |
Chuck Lever | c5d120f | 2008-12-23 15:21:35 -0500 | [diff] [blame] | 144 | extern int nfs_mount(struct nfs_mount_request *info); |
Chuck Lever | 0b52412 | 2009-08-09 15:09:30 -0400 | [diff] [blame] | 145 | extern void nfs_umount(const struct nfs_mount_request *info); |
Chuck Lever | 146ec94 | 2008-12-23 15:21:34 -0500 | [diff] [blame] | 146 | |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 147 | /* client.c */ |
Trond Myklebust | a613fa1 | 2012-01-20 13:53:56 -0500 | [diff] [blame] | 148 | extern const struct rpc_program nfs_program; |
Stanislav Kinsbursky | 6b13168 | 2012-01-23 17:26:05 +0000 | [diff] [blame] | 149 | extern void nfs_clients_init(struct net *net); |
Bryan Schumaker | 6663ee7 | 2012-06-20 15:53:46 -0400 | [diff] [blame] | 150 | extern struct nfs_client *nfs_alloc_client(const struct nfs_client_initdata *); |
Bryan Schumaker | 428360d | 2012-07-16 16:39:17 -0400 | [diff] [blame] | 151 | int nfs_create_rpc_client(struct nfs_client *, const struct rpc_timeout *, rpc_authflavor_t); |
Bryan Schumaker | fcf1039 | 2012-07-16 16:39:18 -0400 | [diff] [blame] | 152 | struct nfs_client *nfs_get_client(const struct nfs_client_initdata *, |
| 153 | const struct rpc_timeout *, const char *, |
| 154 | rpc_authflavor_t); |
| 155 | int nfs_probe_fsinfo(struct nfs_server *server, struct nfs_fh *, struct nfs_fattr *); |
| 156 | void nfs_server_insert_lists(struct nfs_server *); |
Chuck Lever | 32e62b7 | 2013-10-17 14:12:28 -0400 | [diff] [blame] | 157 | void nfs_server_remove_lists(struct nfs_server *); |
Bryan Schumaker | fcf1039 | 2012-07-16 16:39:18 -0400 | [diff] [blame] | 158 | void nfs_init_timeout_values(struct rpc_timeout *, int, unsigned int, unsigned int); |
| 159 | int nfs_init_server_rpcclient(struct nfs_server *, const struct rpc_timeout *t, |
| 160 | rpc_authflavor_t); |
| 161 | struct nfs_server *nfs_alloc_server(void); |
| 162 | void nfs_server_copy_userdata(struct nfs_server *, struct nfs_server *); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 163 | |
Stanislav Kinsbursky | 28cd1b3 | 2012-01-23 17:26:22 +0000 | [diff] [blame] | 164 | extern void nfs_cleanup_cb_ident_idr(struct net *); |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 165 | extern void nfs_put_client(struct nfs_client *); |
Bryan Schumaker | cdb7ece | 2012-06-20 15:53:45 -0400 | [diff] [blame] | 166 | extern void nfs_free_client(struct nfs_client *); |
Stanislav Kinsbursky | 28cd1b3 | 2012-01-23 17:26:22 +0000 | [diff] [blame] | 167 | extern struct nfs_client *nfs4_find_client_ident(struct net *, int); |
Andy Adamson | c36fca5 | 2011-01-06 02:04:32 +0000 | [diff] [blame] | 168 | extern struct nfs_client * |
Stanislav Kinsbursky | c7add9a | 2012-01-26 15:11:49 +0400 | [diff] [blame] | 169 | nfs4_find_client_sessionid(struct net *, const struct sockaddr *, |
Bryan Schumaker | 459de2e | 2013-06-05 11:15:01 -0400 | [diff] [blame] | 170 | struct nfs4_sessionid *, u32); |
Bryan Schumaker | 1179acc | 2012-07-30 16:05:19 -0400 | [diff] [blame] | 171 | extern struct nfs_server *nfs_create_server(struct nfs_mount_info *, |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 172 | struct nfs_subversion *); |
\"Talpey, Thomas\ | 91ea40b | 2007-09-10 13:44:33 -0400 | [diff] [blame] | 173 | extern struct nfs_server *nfs4_create_server( |
Bryan Schumaker | 1179acc | 2012-07-30 16:05:19 -0400 | [diff] [blame] | 174 | struct nfs_mount_info *, |
| 175 | struct nfs_subversion *); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 176 | extern struct nfs_server *nfs4_create_referral_server(struct nfs_clone_mount *, |
| 177 | struct nfs_fh *); |
Chuck Lever | 32e62b7 | 2013-10-17 14:12:28 -0400 | [diff] [blame] | 178 | extern int nfs4_update_server(struct nfs_server *server, const char *hostname, |
Trond Myklebust | 292f503 | 2014-02-16 21:42:56 -0500 | [diff] [blame] | 179 | struct sockaddr *sap, size_t salen, |
| 180 | struct net *net); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 181 | extern void nfs_free_server(struct nfs_server *server); |
| 182 | extern struct nfs_server *nfs_clone_server(struct nfs_server *, |
| 183 | struct nfs_fh *, |
Bryan Schumaker | 7e6eb68 | 2012-04-27 13:27:42 -0400 | [diff] [blame] | 184 | struct nfs_fattr *, |
| 185 | rpc_authflavor_t); |
Trond Myklebust | 4697bd5 | 2012-05-23 13:24:36 -0400 | [diff] [blame] | 186 | extern int nfs_wait_client_init_complete(const struct nfs_client *clp); |
Andy Adamson | 76db6d9 | 2009-04-01 09:22:38 -0400 | [diff] [blame] | 187 | extern void nfs_mark_client_ready(struct nfs_client *clp, int state); |
Andy Adamson | d83217c | 2011-03-01 01:34:17 +0000 | [diff] [blame] | 188 | extern struct nfs_client *nfs4_set_ds_client(struct nfs_client* mds_clp, |
| 189 | const struct sockaddr *ds_addr, |
Andy Adamson | 98fc685 | 2012-04-27 17:53:45 -0400 | [diff] [blame] | 190 | int ds_addrlen, int ds_proto, |
| 191 | unsigned int ds_timeo, |
| 192 | unsigned int ds_retrans); |
Andy Adamson | 0e20162 | 2013-09-06 14:14:00 -0400 | [diff] [blame] | 193 | extern struct rpc_clnt *nfs4_find_or_create_ds_client(struct nfs_client *, |
| 194 | struct inode *); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 195 | #ifdef CONFIG_PROC_FS |
| 196 | extern int __init nfs_fs_proc_init(void); |
| 197 | extern void nfs_fs_proc_exit(void); |
| 198 | #else |
| 199 | static inline int nfs_fs_proc_init(void) |
| 200 | { |
| 201 | return 0; |
| 202 | } |
| 203 | static inline void nfs_fs_proc_exit(void) |
| 204 | { |
| 205 | } |
| 206 | #endif |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 207 | |
Bryan Schumaker | fcf1039 | 2012-07-16 16:39:18 -0400 | [diff] [blame] | 208 | #ifdef CONFIG_NFS_V4_1 |
| 209 | int nfs_sockaddr_match_ipaddr(const struct sockaddr *, const struct sockaddr *); |
| 210 | #endif |
| 211 | |
Bryan Schumaker | 1179acc | 2012-07-30 16:05:19 -0400 | [diff] [blame] | 212 | /* nfs3client.c */ |
Bryan Schumaker | 1c606fb | 2012-07-30 16:05:24 -0400 | [diff] [blame] | 213 | #if IS_ENABLED(CONFIG_NFS_V3) |
Bryan Schumaker | 1179acc | 2012-07-30 16:05:19 -0400 | [diff] [blame] | 214 | struct nfs_server *nfs3_create_server(struct nfs_mount_info *, struct nfs_subversion *); |
| 215 | struct nfs_server *nfs3_clone_server(struct nfs_server *, struct nfs_fh *, |
| 216 | struct nfs_fattr *, rpc_authflavor_t); |
| 217 | #endif |
| 218 | |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 219 | /* callback_xdr.c */ |
| 220 | extern struct svc_version nfs4_callback_version1; |
Alexandros Batsakis | 07bccc2 | 2009-12-05 13:19:01 -0500 | [diff] [blame] | 221 | extern struct svc_version nfs4_callback_version4; |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 222 | |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 223 | struct nfs_pageio_descriptor; |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 224 | /* pagelist.c */ |
| 225 | extern int __init nfs_init_nfspagecache(void); |
David Brownell | 266bee8 | 2006-06-27 12:59:15 -0700 | [diff] [blame] | 226 | extern void nfs_destroy_nfspagecache(void); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 227 | extern int __init nfs_init_readpagecache(void); |
David Brownell | 266bee8 | 2006-06-27 12:59:15 -0700 | [diff] [blame] | 228 | extern void nfs_destroy_readpagecache(void); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 229 | extern int __init nfs_init_writepagecache(void); |
David Brownell | 266bee8 | 2006-06-27 12:59:15 -0700 | [diff] [blame] | 230 | extern void nfs_destroy_writepagecache(void); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 231 | |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 232 | extern int __init nfs_init_directcache(void); |
David Brownell | 266bee8 | 2006-06-27 12:59:15 -0700 | [diff] [blame] | 233 | extern void nfs_destroy_directcache(void); |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 234 | extern void nfs_pgheader_init(struct nfs_pageio_descriptor *desc, |
| 235 | struct nfs_pgio_header *hdr, |
| 236 | void (*release)(struct nfs_pgio_header *hdr)); |
| 237 | void nfs_set_pgio_error(struct nfs_pgio_header *hdr, int error, loff_t pos); |
Trond Myklebust | 577b423 | 2013-04-08 21:38:12 -0400 | [diff] [blame] | 238 | int nfs_iocounter_wait(struct nfs_io_counter *c); |
| 239 | |
Anna Schumaker | 41d8d5b | 2014-05-06 09:12:40 -0400 | [diff] [blame] | 240 | extern const struct nfs_pageio_ops nfs_pgio_rw_ops; |
Anna Schumaker | 4a0de55 | 2014-05-06 09:12:30 -0400 | [diff] [blame] | 241 | struct nfs_rw_header *nfs_rw_header_alloc(const struct nfs_rw_ops *); |
| 242 | void nfs_rw_header_free(struct nfs_pgio_header *); |
Anna Schumaker | 00bfa30 | 2014-05-06 09:12:29 -0400 | [diff] [blame] | 243 | void nfs_pgio_data_release(struct nfs_pgio_data *); |
Anna Schumaker | ef2c488 | 2014-05-06 09:12:36 -0400 | [diff] [blame] | 244 | int nfs_generic_pgio(struct nfs_pageio_descriptor *, struct nfs_pgio_header *); |
Anna Schumaker | 1ed26f3 | 2014-05-06 09:12:37 -0400 | [diff] [blame] | 245 | int nfs_initiate_pgio(struct rpc_clnt *, struct nfs_pgio_data *, |
| 246 | const struct rpc_call_ops *, int, int); |
Anna Schumaker | 00bfa30 | 2014-05-06 09:12:29 -0400 | [diff] [blame] | 247 | |
Trond Myklebust | 577b423 | 2013-04-08 21:38:12 -0400 | [diff] [blame] | 248 | static inline void nfs_iocounter_init(struct nfs_io_counter *c) |
| 249 | { |
| 250 | c->flags = 0; |
| 251 | atomic_set(&c->io_count, 0); |
| 252 | } |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 253 | |
| 254 | /* nfs2xdr.c */ |
| 255 | extern struct rpc_procinfo nfs_procedures[]; |
Chuck Lever | 573c4e1 | 2010-12-14 14:58:11 +0000 | [diff] [blame] | 256 | extern int nfs2_decode_dirent(struct xdr_stream *, |
| 257 | struct nfs_entry *, int); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 258 | |
| 259 | /* nfs3xdr.c */ |
| 260 | extern struct rpc_procinfo nfs3_procedures[]; |
Chuck Lever | 573c4e1 | 2010-12-14 14:58:11 +0000 | [diff] [blame] | 261 | extern int nfs3_decode_dirent(struct xdr_stream *, |
| 262 | struct nfs_entry *, int); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 263 | |
| 264 | /* nfs4xdr.c */ |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 265 | #if IS_ENABLED(CONFIG_NFS_V4) |
Chuck Lever | 573c4e1 | 2010-12-14 14:58:11 +0000 | [diff] [blame] | 266 | extern int nfs4_decode_dirent(struct xdr_stream *, |
| 267 | struct nfs_entry *, int); |
David Howells | 7d4e274 | 2006-08-22 20:06:07 -0400 | [diff] [blame] | 268 | #endif |
Alexandros Batsakis | 2449ea2 | 2009-12-05 13:36:55 -0500 | [diff] [blame] | 269 | #ifdef CONFIG_NFS_V4_1 |
| 270 | extern const u32 nfs41_maxread_overhead; |
| 271 | extern const u32 nfs41_maxwrite_overhead; |
Andy Adamson | f1c097b | 2013-06-25 19:02:53 -0400 | [diff] [blame] | 272 | extern const u32 nfs41_maxgetdevinfo_overhead; |
Alexandros Batsakis | 2449ea2 | 2009-12-05 13:36:55 -0500 | [diff] [blame] | 273 | #endif |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 274 | |
| 275 | /* nfs4proc.c */ |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 276 | #if IS_ENABLED(CONFIG_NFS_V4) |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 277 | extern struct rpc_procinfo nfs4_procedures[]; |
Andrew Morton | d75d541 | 2006-06-25 02:41:26 -0700 | [diff] [blame] | 278 | #endif |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 279 | |
Anna Schumaker | 694e096 | 2013-11-13 12:29:08 -0500 | [diff] [blame] | 280 | #ifdef CONFIG_NFS_V4_SECURITY_LABEL |
| 281 | extern struct nfs4_label *nfs4_label_alloc(struct nfs_server *server, gfp_t flags); |
| 282 | static inline void nfs4_label_free(struct nfs4_label *label) |
| 283 | { |
| 284 | if (label) { |
| 285 | kfree(label->label); |
| 286 | kfree(label); |
| 287 | } |
| 288 | return; |
| 289 | } |
Trond Myklebust | fd1defc | 2014-02-06 14:38:53 -0500 | [diff] [blame] | 290 | |
| 291 | static inline void nfs_zap_label_cache_locked(struct nfs_inode *nfsi) |
| 292 | { |
| 293 | if (nfs_server_capable(&nfsi->vfs_inode, NFS_CAP_SECURITY_LABEL)) |
| 294 | nfsi->cache_validity |= NFS_INO_INVALID_LABEL; |
| 295 | } |
Anna Schumaker | 694e096 | 2013-11-13 12:29:08 -0500 | [diff] [blame] | 296 | #else |
| 297 | static inline struct nfs4_label *nfs4_label_alloc(struct nfs_server *server, gfp_t flags) { return NULL; } |
| 298 | static inline void nfs4_label_free(void *label) {} |
Trond Myklebust | fd1defc | 2014-02-06 14:38:53 -0500 | [diff] [blame] | 299 | static inline void nfs_zap_label_cache_locked(struct nfs_inode *nfsi) |
| 300 | { |
| 301 | } |
Anna Schumaker | 694e096 | 2013-11-13 12:29:08 -0500 | [diff] [blame] | 302 | #endif /* CONFIG_NFS_V4_SECURITY_LABEL */ |
| 303 | |
Trond Myklebust | 7fe5c39 | 2009-03-19 15:35:50 -0400 | [diff] [blame] | 304 | /* proc.c */ |
| 305 | void nfs_close_context(struct nfs_open_context *ctx, int is_sync); |
Chuck Lever | 8cab4c3 | 2012-05-21 22:45:59 -0400 | [diff] [blame] | 306 | extern struct nfs_client *nfs_init_client(struct nfs_client *clp, |
Andy Adamson | 45a52a0 | 2011-03-01 01:34:08 +0000 | [diff] [blame] | 307 | const struct rpc_timeout *timeparms, |
Andy Adamson | f840729 | 2013-07-24 11:59:49 -0400 | [diff] [blame] | 308 | const char *ip_addr); |
Trond Myklebust | 7fe5c39 | 2009-03-19 15:35:50 -0400 | [diff] [blame] | 309 | |
Trond Myklebust | 979df72 | 2006-07-25 11:28:19 -0400 | [diff] [blame] | 310 | /* dir.c */ |
Trond Myklebust | 311324a | 2014-02-07 17:02:08 -0500 | [diff] [blame] | 311 | extern void nfs_force_use_readdirplus(struct inode *dir); |
Dave Chinner | 1ab6c49 | 2013-08-28 10:18:09 +1000 | [diff] [blame] | 312 | extern unsigned long nfs_access_cache_count(struct shrinker *shrink, |
| 313 | struct shrink_control *sc); |
| 314 | extern unsigned long nfs_access_cache_scan(struct shrinker *shrink, |
| 315 | struct shrink_control *sc); |
Bryan Schumaker | 597d928 | 2012-07-16 16:39:10 -0400 | [diff] [blame] | 316 | struct dentry *nfs_lookup(struct inode *, struct dentry *, unsigned int); |
| 317 | int nfs_create(struct inode *, struct dentry *, umode_t, bool); |
| 318 | int nfs_mkdir(struct inode *, struct dentry *, umode_t); |
| 319 | int nfs_rmdir(struct inode *, struct dentry *); |
| 320 | int nfs_unlink(struct inode *, struct dentry *); |
| 321 | int nfs_symlink(struct inode *, struct dentry *, const char *); |
| 322 | int nfs_link(struct dentry *, struct inode *, struct dentry *); |
| 323 | int nfs_mknod(struct inode *, struct dentry *, umode_t, dev_t); |
| 324 | int nfs_rename(struct inode *, struct dentry *, struct inode *, struct dentry *); |
Trond Myklebust | 979df72 | 2006-07-25 11:28:19 -0400 | [diff] [blame] | 325 | |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 326 | /* file.c */ |
| 327 | int nfs_file_fsync_commit(struct file *, loff_t, loff_t, int); |
| 328 | loff_t nfs_file_llseek(struct file *, loff_t, int); |
| 329 | int nfs_file_flush(struct file *, fl_owner_t); |
Al Viro | 3aa2d19 | 2014-04-02 20:14:12 -0400 | [diff] [blame] | 330 | ssize_t nfs_file_read(struct kiocb *, struct iov_iter *); |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 331 | ssize_t nfs_file_splice_read(struct file *, loff_t *, struct pipe_inode_info *, |
| 332 | size_t, unsigned int); |
| 333 | int nfs_file_mmap(struct file *, struct vm_area_struct *); |
Al Viro | edaf436 | 2014-04-03 14:07:25 -0400 | [diff] [blame] | 334 | ssize_t nfs_file_write(struct kiocb *, struct iov_iter *); |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 335 | int nfs_file_release(struct inode *, struct file *); |
| 336 | int nfs_lock(struct file *, int, struct file_lock *); |
| 337 | int nfs_flock(struct file *, int, struct file_lock *); |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 338 | int nfs_check_flags(int); |
| 339 | int nfs_setlease(struct file *, long, struct file_lock **); |
| 340 | |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 341 | /* inode.c */ |
Trond Myklebust | 5746006 | 2008-02-19 20:04:22 -0500 | [diff] [blame] | 342 | extern struct workqueue_struct *nfsiod_workqueue; |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 343 | extern struct inode *nfs_alloc_inode(struct super_block *sb); |
| 344 | extern void nfs_destroy_inode(struct inode *); |
Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 345 | extern int nfs_write_inode(struct inode *, struct writeback_control *); |
Trond Myklebust | eed9935 | 2012-12-14 14:36:36 -0500 | [diff] [blame] | 346 | extern int nfs_drop_inode(struct inode *); |
Bryan Schumaker | 19d87ca | 2012-07-30 16:05:21 -0400 | [diff] [blame] | 347 | extern void nfs_clear_inode(struct inode *); |
Al Viro | b57922d | 2010-06-07 14:34:48 -0400 | [diff] [blame] | 348 | extern void nfs_evict_inode(struct inode *); |
Trond Myklebust | f41f741 | 2008-06-11 17:39:04 -0400 | [diff] [blame] | 349 | void nfs_zap_acl_cache(struct inode *inode); |
Trond Myklebust | 72cb77f | 2009-03-11 14:10:30 -0400 | [diff] [blame] | 350 | extern int nfs_wait_bit_killable(void *word); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 351 | |
| 352 | /* super.c */ |
Bryan Schumaker | 6a74490 | 2012-07-30 16:05:20 -0400 | [diff] [blame] | 353 | extern const struct super_operations nfs_sops; |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 354 | extern struct file_system_type nfs_fs_type; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 355 | extern struct file_system_type nfs_xdev_fs_type; |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 356 | #if IS_ENABLED(CONFIG_NFS_V4) |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 357 | extern struct file_system_type nfs4_xdev_fs_type; |
| 358 | extern struct file_system_type nfs4_referral_fs_type; |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 359 | #endif |
Weston Andros Adamson | 4d4b69d | 2013-10-18 15:15:19 -0400 | [diff] [blame] | 360 | bool nfs_auth_info_match(const struct nfs_auth_info *, rpc_authflavor_t); |
Bryan Schumaker | ff9099f2 | 2012-07-30 16:05:18 -0400 | [diff] [blame] | 361 | struct dentry *nfs_try_mount(int, const char *, struct nfs_mount_info *, |
| 362 | struct nfs_subversion *); |
Bryan Schumaker | fbdefd6 | 2012-07-16 16:39:20 -0400 | [diff] [blame] | 363 | void nfs_initialise_sb(struct super_block *); |
| 364 | int nfs_set_sb_security(struct super_block *, struct dentry *, struct nfs_mount_info *); |
| 365 | int nfs_clone_sb_security(struct super_block *, struct dentry *, struct nfs_mount_info *); |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 366 | struct dentry *nfs_fs_mount_common(struct nfs_server *, int, const char *, |
| 367 | struct nfs_mount_info *, struct nfs_subversion *); |
Bryan Schumaker | fbdefd6 | 2012-07-16 16:39:20 -0400 | [diff] [blame] | 368 | struct dentry *nfs_fs_mount(struct file_system_type *, int, const char *, void *); |
| 369 | struct dentry * nfs_xdev_mount_common(struct file_system_type *, int, |
| 370 | const char *, struct nfs_mount_info *); |
| 371 | void nfs_kill_super(struct super_block *); |
| 372 | void nfs_fill_super(struct super_block *, struct nfs_mount_info *); |
Dominik Hackl | 4ebd9ab | 2006-07-02 17:29:26 +0200 | [diff] [blame] | 373 | |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 374 | extern struct rpc_stat nfs_rpcstat; |
Dominik Hackl | 4ebd9ab | 2006-07-02 17:29:26 +0200 | [diff] [blame] | 375 | |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 376 | extern int __init register_nfs_fs(void); |
| 377 | extern void __exit unregister_nfs_fs(void); |
Trond Myklebust | 1daef0a | 2008-07-27 18:19:01 -0400 | [diff] [blame] | 378 | extern void nfs_sb_active(struct super_block *sb); |
| 379 | extern void nfs_sb_deactive(struct super_block *sb); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 380 | |
| 381 | /* namespace.c */ |
Ben Hutchings | 97a5486 | 2012-10-21 19:23:52 +0100 | [diff] [blame] | 382 | #define NFS_PATH_CANONICAL 1 |
Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 383 | extern char *nfs_path(char **p, struct dentry *dentry, |
Ben Hutchings | 97a5486 | 2012-10-21 19:23:52 +0100 | [diff] [blame] | 384 | char *buffer, ssize_t buflen, unsigned flags); |
David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 385 | extern struct vfsmount *nfs_d_automount(struct path *path); |
Bryan Schumaker | 281cad4 | 2012-04-27 13:27:45 -0400 | [diff] [blame] | 386 | struct vfsmount *nfs_submount(struct nfs_server *, struct dentry *, |
| 387 | struct nfs_fh *, struct nfs_fattr *); |
| 388 | struct vfsmount *nfs_do_submount(struct dentry *, struct nfs_fh *, |
| 389 | struct nfs_fattr *, rpc_authflavor_t); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 390 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 391 | /* getroot.c */ |
Al Viro | 0d5839a | 2011-03-16 05:27:27 -0400 | [diff] [blame] | 392 | extern struct dentry *nfs_get_root(struct super_block *, struct nfs_fh *, |
| 393 | const char *); |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 394 | #if IS_ENABLED(CONFIG_NFS_V4) |
Al Viro | 0d5839a | 2011-03-16 05:27:27 -0400 | [diff] [blame] | 395 | extern struct dentry *nfs4_get_root(struct super_block *, struct nfs_fh *, |
| 396 | const char *); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 397 | |
Trond Myklebust | 5e6b199 | 2013-09-07 12:58:57 -0400 | [diff] [blame] | 398 | extern int nfs4_get_rootfh(struct nfs_server *server, struct nfs_fh *mntfh, bool); |
David Howells | 7d4e274 | 2006-08-22 20:06:07 -0400 | [diff] [blame] | 399 | #endif |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 400 | |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 401 | struct nfs_pgio_completion_ops; |
Andy Adamson | f11c88a | 2009-04-01 09:22:25 -0400 | [diff] [blame] | 402 | /* read.c */ |
Fred Isaman | 584aa81 | 2012-04-20 14:47:51 -0400 | [diff] [blame] | 403 | extern void nfs_pageio_init_read(struct nfs_pageio_descriptor *pgio, |
Christoph Hellwig | fab5fc2 | 2014-04-16 15:07:22 +0200 | [diff] [blame] | 404 | struct inode *inode, bool force_mds, |
Fred Isaman | 584aa81 | 2012-04-20 14:47:51 -0400 | [diff] [blame] | 405 | const struct nfs_pgio_completion_ops *compl_ops); |
Andy Adamson | f11c88a | 2009-04-01 09:22:25 -0400 | [diff] [blame] | 406 | extern void nfs_read_prepare(struct rpc_task *task, void *calldata); |
Trond Myklebust | 493292d | 2011-07-13 15:58:28 -0400 | [diff] [blame] | 407 | extern void nfs_pageio_reset_read_mds(struct nfs_pageio_descriptor *pgio); |
Trond Myklebust | e885de1 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 408 | |
Bryan Schumaker | fbdefd6 | 2012-07-16 16:39:20 -0400 | [diff] [blame] | 409 | /* super.c */ |
| 410 | void nfs_clone_super(struct super_block *, struct nfs_mount_info *); |
| 411 | void nfs_umount_begin(struct super_block *); |
| 412 | int nfs_statfs(struct dentry *, struct kstatfs *); |
| 413 | int nfs_show_options(struct seq_file *, struct dentry *); |
| 414 | int nfs_show_devname(struct seq_file *, struct dentry *); |
| 415 | int nfs_show_path(struct seq_file *, struct dentry *); |
| 416 | int nfs_show_stats(struct seq_file *, struct dentry *); |
| 417 | void nfs_put_super(struct super_block *); |
| 418 | int nfs_remount(struct super_block *sb, int *flags, char *raw_data); |
| 419 | |
Andy Adamson | def6ed7 | 2009-04-01 09:22:26 -0400 | [diff] [blame] | 420 | /* write.c */ |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 421 | extern void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio, |
Christoph Hellwig | a20c93e | 2014-04-16 15:07:21 +0200 | [diff] [blame] | 422 | struct inode *inode, int ioflags, bool force_mds, |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 423 | const struct nfs_pgio_completion_ops *compl_ops); |
Trond Myklebust | dce8129 | 2011-07-13 15:59:19 -0400 | [diff] [blame] | 424 | extern void nfs_pageio_reset_write_mds(struct nfs_pageio_descriptor *pgio); |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 425 | extern void nfs_commit_free(struct nfs_commit_data *p); |
Andy Adamson | def6ed7 | 2009-04-01 09:22:26 -0400 | [diff] [blame] | 426 | extern void nfs_write_prepare(struct rpc_task *task, void *calldata); |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 427 | extern void nfs_commit_prepare(struct rpc_task *task, void *calldata); |
| 428 | extern int nfs_initiate_commit(struct rpc_clnt *clnt, |
| 429 | struct nfs_commit_data *data, |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 430 | const struct rpc_call_ops *call_ops, |
Andy Adamson | 9f0ec176 | 2012-04-27 17:53:44 -0400 | [diff] [blame] | 431 | int how, int flags); |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 432 | extern void nfs_init_commit(struct nfs_commit_data *data, |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 433 | struct list_head *head, |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 434 | struct pnfs_layout_segment *lseg, |
| 435 | struct nfs_commit_info *cinfo); |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 436 | int nfs_scan_commit_list(struct list_head *src, struct list_head *dst, |
| 437 | struct nfs_commit_info *cinfo, int max); |
Anna Schumaker | ce59515 | 2014-05-06 09:12:34 -0400 | [diff] [blame] | 438 | unsigned long nfs_reqs_to_commit(struct nfs_commit_info *); |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 439 | int nfs_scan_commit(struct inode *inode, struct list_head *dst, |
| 440 | struct nfs_commit_info *cinfo); |
| 441 | void nfs_mark_request_commit(struct nfs_page *req, |
| 442 | struct pnfs_layout_segment *lseg, |
| 443 | struct nfs_commit_info *cinfo); |
| 444 | int nfs_generic_commit_list(struct inode *inode, struct list_head *head, |
| 445 | int how, struct nfs_commit_info *cinfo); |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 446 | void nfs_retry_commit(struct list_head *page_list, |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 447 | struct pnfs_layout_segment *lseg, |
| 448 | struct nfs_commit_info *cinfo); |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 449 | void nfs_commitdata_release(struct nfs_commit_data *data); |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 450 | void nfs_request_add_commit_list(struct nfs_page *req, struct list_head *dst, |
| 451 | struct nfs_commit_info *cinfo); |
| 452 | void nfs_request_remove_commit_list(struct nfs_page *req, |
| 453 | struct nfs_commit_info *cinfo); |
| 454 | void nfs_init_cinfo(struct nfs_commit_info *cinfo, |
| 455 | struct inode *inode, |
| 456 | struct nfs_direct_req *dreq); |
Andy Adamson | dc24826 | 2013-08-14 11:59:16 -0400 | [diff] [blame] | 457 | int nfs_key_timeout_notify(struct file *filp, struct inode *inode); |
| 458 | bool nfs_ctx_key_to_expire(struct nfs_open_context *ctx); |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 459 | |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 460 | #ifdef CONFIG_MIGRATION |
| 461 | extern int nfs_migrate_page(struct address_space *, |
Mel Gorman | a6bc32b | 2012-01-12 17:19:43 -0800 | [diff] [blame] | 462 | struct page *, struct page *, enum migrate_mode); |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 463 | #else |
| 464 | #define nfs_migrate_page NULL |
| 465 | #endif |
Andy Adamson | def6ed7 | 2009-04-01 09:22:26 -0400 | [diff] [blame] | 466 | |
Jeff Layton | 0e862a4 | 2014-03-17 07:06:55 -0400 | [diff] [blame] | 467 | /* unlink.c */ |
| 468 | extern struct rpc_task * |
| 469 | nfs_async_rename(struct inode *old_dir, struct inode *new_dir, |
| 470 | struct dentry *old_dentry, struct dentry *new_dentry, |
| 471 | void (*complete)(struct rpc_task *, struct nfs_renamedata *)); |
| 472 | extern int nfs_sillyrename(struct inode *dir, struct dentry *dentry); |
| 473 | |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 474 | /* direct.c */ |
| 475 | void nfs_init_cinfo_from_dreq(struct nfs_commit_info *cinfo, |
| 476 | struct nfs_direct_req *dreq); |
Trond Myklebust | 1d59d61 | 2012-05-31 12:22:33 -0400 | [diff] [blame] | 477 | static inline void nfs_inode_dio_wait(struct inode *inode) |
| 478 | { |
| 479 | inode_dio_wait(inode); |
| 480 | } |
Peng Tao | 6296556 | 2012-09-25 14:55:57 +0800 | [diff] [blame] | 481 | extern ssize_t nfs_dreq_bytes_left(struct nfs_direct_req *dreq); |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 482 | |
Andy Adamson | cccef3b | 2009-04-01 09:22:03 -0400 | [diff] [blame] | 483 | /* nfs4proc.c */ |
Anna Schumaker | 9c7e1b3 | 2014-05-06 09:12:26 -0400 | [diff] [blame] | 484 | extern void __nfs4_read_done_cb(struct nfs_pgio_data *); |
Chuck Lever | 8cab4c3 | 2012-05-21 22:45:59 -0400 | [diff] [blame] | 485 | extern struct nfs_client *nfs4_init_client(struct nfs_client *clp, |
Andy Adamson | 45a52a0 | 2011-03-01 01:34:08 +0000 | [diff] [blame] | 486 | const struct rpc_timeout *timeparms, |
Andy Adamson | f840729 | 2013-07-24 11:59:49 -0400 | [diff] [blame] | 487 | const char *ip_addr); |
Chuck Lever | 05f4c35 | 2012-09-14 17:24:32 -0400 | [diff] [blame] | 488 | extern int nfs40_walk_client_list(struct nfs_client *clp, |
| 489 | struct nfs_client **result, |
| 490 | struct rpc_cred *cred); |
| 491 | extern int nfs41_walk_client_list(struct nfs_client *clp, |
| 492 | struct nfs_client **result, |
| 493 | struct rpc_cred *cred); |
Andy Adamson | cccef3b | 2009-04-01 09:22:03 -0400 | [diff] [blame] | 494 | |
Andy Adamson | 557134a | 2009-04-01 09:21:53 -0400 | [diff] [blame] | 495 | /* |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 496 | * Determine the device name as a string |
| 497 | */ |
Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 498 | static inline char *nfs_devname(struct dentry *dentry, |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 499 | char *buffer, ssize_t buflen) |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 500 | { |
Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 501 | char *dummy; |
Ben Hutchings | 97a5486 | 2012-10-21 19:23:52 +0100 | [diff] [blame] | 502 | return nfs_path(&dummy, dentry, buffer, buflen, NFS_PATH_CANONICAL); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 503 | } |
| 504 | |
| 505 | /* |
| 506 | * Determine the actual block size (and log2 thereof) |
| 507 | */ |
| 508 | static inline |
| 509 | unsigned long nfs_block_bits(unsigned long bsize, unsigned char *nrbitsp) |
| 510 | { |
| 511 | /* make sure blocksize is a power of two */ |
| 512 | if ((bsize & (bsize - 1)) || nrbitsp) { |
| 513 | unsigned char nrbits; |
| 514 | |
| 515 | for (nrbits = 31; nrbits && !(bsize & (1 << nrbits)); nrbits--) |
| 516 | ; |
| 517 | bsize = 1 << nrbits; |
| 518 | if (nrbitsp) |
| 519 | *nrbitsp = nrbits; |
| 520 | } |
| 521 | |
| 522 | return bsize; |
| 523 | } |
| 524 | |
| 525 | /* |
| 526 | * Calculate the number of 512byte blocks used. |
| 527 | */ |
Chuck Lever | 9eaa67c | 2007-07-01 12:12:19 -0400 | [diff] [blame] | 528 | static inline blkcnt_t nfs_calc_block_size(u64 tsize) |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 529 | { |
Chuck Lever | 9eaa67c | 2007-07-01 12:12:19 -0400 | [diff] [blame] | 530 | blkcnt_t used = (tsize + 511) >> 9; |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 531 | return (used > ULONG_MAX) ? ULONG_MAX : used; |
| 532 | } |
| 533 | |
| 534 | /* |
| 535 | * Compute and set NFS server blocksize |
| 536 | */ |
| 537 | static inline |
| 538 | unsigned long nfs_block_size(unsigned long bsize, unsigned char *nrbitsp) |
| 539 | { |
| 540 | if (bsize < NFS_MIN_FILE_IO_SIZE) |
| 541 | bsize = NFS_DEF_FILE_IO_SIZE; |
| 542 | else if (bsize >= NFS_MAX_FILE_IO_SIZE) |
| 543 | bsize = NFS_MAX_FILE_IO_SIZE; |
| 544 | |
| 545 | return nfs_block_bits(bsize, nrbitsp); |
| 546 | } |
| 547 | |
| 548 | /* |
| 549 | * Determine the maximum file size for a superblock |
| 550 | */ |
| 551 | static inline |
| 552 | void nfs_super_set_maxbytes(struct super_block *sb, __u64 maxfilesize) |
| 553 | { |
| 554 | sb->s_maxbytes = (loff_t)maxfilesize; |
| 555 | if (sb->s_maxbytes > MAX_LFS_FILESIZE || sb->s_maxbytes <= 0) |
| 556 | sb->s_maxbytes = MAX_LFS_FILESIZE; |
| 557 | } |
Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 558 | |
| 559 | /* |
| 560 | * Determine the number of bytes of data the page contains |
| 561 | */ |
| 562 | static inline |
| 563 | unsigned int nfs_page_length(struct page *page) |
| 564 | { |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 565 | loff_t i_size = i_size_read(page_file_mapping(page)->host); |
Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 566 | |
| 567 | if (i_size > 0) { |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 568 | pgoff_t page_index = page_file_index(page); |
Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 569 | pgoff_t end_index = (i_size - 1) >> PAGE_CACHE_SHIFT; |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 570 | if (page_index < end_index) |
Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 571 | return PAGE_CACHE_SIZE; |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 572 | if (page_index == end_index) |
Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 573 | return ((i_size - 1) & ~PAGE_CACHE_MASK) + 1; |
| 574 | } |
| 575 | return 0; |
| 576 | } |
Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 577 | |
| 578 | /* |
Trond Myklebust | 0b26a0b | 2010-11-20 14:26:44 -0500 | [diff] [blame] | 579 | * Convert a umode to a dirent->d_type |
| 580 | */ |
| 581 | static inline |
| 582 | unsigned char nfs_umode_to_dtype(umode_t mode) |
| 583 | { |
| 584 | return (mode >> 12) & 15; |
| 585 | } |
| 586 | |
| 587 | /* |
Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 588 | * Determine the number of pages in an array of length 'len' and |
| 589 | * with a base offset of 'base' |
| 590 | */ |
| 591 | static inline |
| 592 | unsigned int nfs_page_array_len(unsigned int base, size_t len) |
| 593 | { |
| 594 | return ((unsigned long)len + (unsigned long)base + |
| 595 | PAGE_SIZE - 1) >> PAGE_SHIFT; |
| 596 | } |
Trond Myklebust | 0110ee1 | 2009-12-07 09:00:24 -0500 | [diff] [blame] | 597 | |
Trond Myklebust | 3a1556e | 2012-04-27 13:48:18 -0400 | [diff] [blame] | 598 | /* |
| 599 | * Convert a struct timespec into a 64-bit change attribute |
| 600 | * |
| 601 | * This does approximately the same thing as timespec_to_ns(), |
| 602 | * but for calculation efficiency, we multiply the seconds by |
| 603 | * 1024*1024*1024. |
| 604 | */ |
| 605 | static inline |
| 606 | u64 nfs_timespec_to_change_attr(const struct timespec *ts) |
| 607 | { |
| 608 | return ((u64)ts->tv_sec << 30) + ts->tv_nsec; |
| 609 | } |
Trond Myklebust | 1264a2f | 2013-08-12 16:06:31 -0400 | [diff] [blame] | 610 | |
| 611 | #ifdef CONFIG_CRC32 |
| 612 | /** |
| 613 | * nfs_fhandle_hash - calculate the crc32 hash for the filehandle |
| 614 | * @fh - pointer to filehandle |
| 615 | * |
| 616 | * returns a crc32 hash for the filehandle that is compatible with |
| 617 | * the one displayed by "wireshark". |
| 618 | */ |
| 619 | static inline u32 nfs_fhandle_hash(const struct nfs_fh *fh) |
| 620 | { |
| 621 | return ~crc32_le(0xFFFFFFFF, &fh->data[0], fh->size); |
| 622 | } |
| 623 | #else |
| 624 | static inline u32 nfs_fhandle_hash(const struct nfs_fh *fh) |
| 625 | { |
| 626 | return 0; |
| 627 | } |
| 628 | #endif |