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); |
Eric W. Biederman | 65b3885 | 2014-07-31 04:35:20 -0700 | [diff] [blame] | 198 | extern int nfs_fs_proc_net_init(struct net *net); |
| 199 | extern void nfs_fs_proc_net_exit(struct net *net); |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 200 | #else |
Eric W. Biederman | 65b3885 | 2014-07-31 04:35:20 -0700 | [diff] [blame] | 201 | static inline int nfs_fs_proc_net_init(struct net *net) |
| 202 | { |
| 203 | return 0; |
| 204 | } |
| 205 | static inline void nfs_fs_proc_net_exit(struct net *net) |
| 206 | { |
| 207 | } |
David Howells | 6aaca56 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 208 | static inline int nfs_fs_proc_init(void) |
| 209 | { |
| 210 | return 0; |
| 211 | } |
| 212 | static inline void nfs_fs_proc_exit(void) |
| 213 | { |
| 214 | } |
| 215 | #endif |
David Howells | 24c8dbb | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 216 | |
Bryan Schumaker | fcf1039 | 2012-07-16 16:39:18 -0400 | [diff] [blame] | 217 | #ifdef CONFIG_NFS_V4_1 |
| 218 | int nfs_sockaddr_match_ipaddr(const struct sockaddr *, const struct sockaddr *); |
| 219 | #endif |
| 220 | |
Bryan Schumaker | 1179acc | 2012-07-30 16:05:19 -0400 | [diff] [blame] | 221 | /* nfs3client.c */ |
Bryan Schumaker | 1c606fb | 2012-07-30 16:05:24 -0400 | [diff] [blame] | 222 | #if IS_ENABLED(CONFIG_NFS_V3) |
Bryan Schumaker | 1179acc | 2012-07-30 16:05:19 -0400 | [diff] [blame] | 223 | struct nfs_server *nfs3_create_server(struct nfs_mount_info *, struct nfs_subversion *); |
| 224 | struct nfs_server *nfs3_clone_server(struct nfs_server *, struct nfs_fh *, |
| 225 | struct nfs_fattr *, rpc_authflavor_t); |
| 226 | #endif |
| 227 | |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 228 | /* callback_xdr.c */ |
| 229 | extern struct svc_version nfs4_callback_version1; |
Alexandros Batsakis | 07bccc2 | 2009-12-05 13:19:01 -0500 | [diff] [blame] | 230 | extern struct svc_version nfs4_callback_version4; |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 231 | |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 232 | struct nfs_pageio_descriptor; |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 233 | /* pagelist.c */ |
| 234 | extern int __init nfs_init_nfspagecache(void); |
David Brownell | 266bee8 | 2006-06-27 12:59:15 -0700 | [diff] [blame] | 235 | extern void nfs_destroy_nfspagecache(void); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 236 | extern int __init nfs_init_readpagecache(void); |
David Brownell | 266bee8 | 2006-06-27 12:59:15 -0700 | [diff] [blame] | 237 | extern void nfs_destroy_readpagecache(void); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 238 | extern int __init nfs_init_writepagecache(void); |
David Brownell | 266bee8 | 2006-06-27 12:59:15 -0700 | [diff] [blame] | 239 | extern void nfs_destroy_writepagecache(void); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 240 | |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 241 | extern int __init nfs_init_directcache(void); |
David Brownell | 266bee8 | 2006-06-27 12:59:15 -0700 | [diff] [blame] | 242 | extern void nfs_destroy_directcache(void); |
Fred Isaman | 4db6e0b | 2012-04-20 14:47:46 -0400 | [diff] [blame] | 243 | extern void nfs_pgheader_init(struct nfs_pageio_descriptor *desc, |
| 244 | struct nfs_pgio_header *hdr, |
| 245 | void (*release)(struct nfs_pgio_header *hdr)); |
| 246 | 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] | 247 | int nfs_iocounter_wait(struct nfs_io_counter *c); |
| 248 | |
Anna Schumaker | 41d8d5b | 2014-05-06 09:12:40 -0400 | [diff] [blame] | 249 | extern const struct nfs_pageio_ops nfs_pgio_rw_ops; |
Weston Andros Adamson | 1e7f3a4 | 2014-06-09 11:48:33 -0400 | [diff] [blame] | 250 | struct nfs_pgio_header *nfs_pgio_header_alloc(const struct nfs_rw_ops *); |
| 251 | void nfs_pgio_header_free(struct nfs_pgio_header *); |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 252 | void nfs_pgio_data_destroy(struct nfs_pgio_header *); |
Anna Schumaker | ef2c488 | 2014-05-06 09:12:36 -0400 | [diff] [blame] | 253 | int nfs_generic_pgio(struct nfs_pageio_descriptor *, struct nfs_pgio_header *); |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 254 | int nfs_initiate_pgio(struct rpc_clnt *, struct nfs_pgio_header *, |
Anna Schumaker | 1ed26f3 | 2014-05-06 09:12:37 -0400 | [diff] [blame] | 255 | const struct rpc_call_ops *, int, int); |
Weston Andros Adamson | d458138 | 2014-07-11 10:20:48 -0400 | [diff] [blame] | 256 | void nfs_free_request(struct nfs_page *req); |
Anna Schumaker | 00bfa30 | 2014-05-06 09:12:29 -0400 | [diff] [blame] | 257 | |
Trond Myklebust | 577b423 | 2013-04-08 21:38:12 -0400 | [diff] [blame] | 258 | static inline void nfs_iocounter_init(struct nfs_io_counter *c) |
| 259 | { |
| 260 | c->flags = 0; |
| 261 | atomic_set(&c->io_count, 0); |
| 262 | } |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 263 | |
| 264 | /* nfs2xdr.c */ |
| 265 | extern struct rpc_procinfo nfs_procedures[]; |
Chuck Lever | 573c4e1 | 2010-12-14 14:58:11 +0000 | [diff] [blame] | 266 | extern int nfs2_decode_dirent(struct xdr_stream *, |
| 267 | struct nfs_entry *, int); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 268 | |
| 269 | /* nfs3xdr.c */ |
| 270 | extern struct rpc_procinfo nfs3_procedures[]; |
Chuck Lever | 573c4e1 | 2010-12-14 14:58:11 +0000 | [diff] [blame] | 271 | extern int nfs3_decode_dirent(struct xdr_stream *, |
| 272 | struct nfs_entry *, int); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 273 | |
| 274 | /* nfs4xdr.c */ |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 275 | #if IS_ENABLED(CONFIG_NFS_V4) |
Chuck Lever | 573c4e1 | 2010-12-14 14:58:11 +0000 | [diff] [blame] | 276 | extern int nfs4_decode_dirent(struct xdr_stream *, |
| 277 | struct nfs_entry *, int); |
David Howells | 7d4e274 | 2006-08-22 20:06:07 -0400 | [diff] [blame] | 278 | #endif |
Alexandros Batsakis | 2449ea2 | 2009-12-05 13:36:55 -0500 | [diff] [blame] | 279 | #ifdef CONFIG_NFS_V4_1 |
| 280 | extern const u32 nfs41_maxread_overhead; |
| 281 | extern const u32 nfs41_maxwrite_overhead; |
Andy Adamson | f1c097b | 2013-06-25 19:02:53 -0400 | [diff] [blame] | 282 | extern const u32 nfs41_maxgetdevinfo_overhead; |
Alexandros Batsakis | 2449ea2 | 2009-12-05 13:36:55 -0500 | [diff] [blame] | 283 | #endif |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 284 | |
| 285 | /* nfs4proc.c */ |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 286 | #if IS_ENABLED(CONFIG_NFS_V4) |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 287 | extern struct rpc_procinfo nfs4_procedures[]; |
Andrew Morton | d75d541 | 2006-06-25 02:41:26 -0700 | [diff] [blame] | 288 | #endif |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 289 | |
Anna Schumaker | 694e096 | 2013-11-13 12:29:08 -0500 | [diff] [blame] | 290 | #ifdef CONFIG_NFS_V4_SECURITY_LABEL |
| 291 | extern struct nfs4_label *nfs4_label_alloc(struct nfs_server *server, gfp_t flags); |
| 292 | static inline void nfs4_label_free(struct nfs4_label *label) |
| 293 | { |
| 294 | if (label) { |
| 295 | kfree(label->label); |
| 296 | kfree(label); |
| 297 | } |
| 298 | return; |
| 299 | } |
Trond Myklebust | fd1defc | 2014-02-06 14:38:53 -0500 | [diff] [blame] | 300 | |
| 301 | static inline void nfs_zap_label_cache_locked(struct nfs_inode *nfsi) |
| 302 | { |
| 303 | if (nfs_server_capable(&nfsi->vfs_inode, NFS_CAP_SECURITY_LABEL)) |
| 304 | nfsi->cache_validity |= NFS_INO_INVALID_LABEL; |
| 305 | } |
Anna Schumaker | 694e096 | 2013-11-13 12:29:08 -0500 | [diff] [blame] | 306 | #else |
| 307 | static inline struct nfs4_label *nfs4_label_alloc(struct nfs_server *server, gfp_t flags) { return NULL; } |
| 308 | static inline void nfs4_label_free(void *label) {} |
Trond Myklebust | fd1defc | 2014-02-06 14:38:53 -0500 | [diff] [blame] | 309 | static inline void nfs_zap_label_cache_locked(struct nfs_inode *nfsi) |
| 310 | { |
| 311 | } |
Anna Schumaker | 694e096 | 2013-11-13 12:29:08 -0500 | [diff] [blame] | 312 | #endif /* CONFIG_NFS_V4_SECURITY_LABEL */ |
| 313 | |
Trond Myklebust | 7fe5c39 | 2009-03-19 15:35:50 -0400 | [diff] [blame] | 314 | /* proc.c */ |
| 315 | void nfs_close_context(struct nfs_open_context *ctx, int is_sync); |
Chuck Lever | 8cab4c3 | 2012-05-21 22:45:59 -0400 | [diff] [blame] | 316 | extern struct nfs_client *nfs_init_client(struct nfs_client *clp, |
Andy Adamson | 45a52a0 | 2011-03-01 01:34:08 +0000 | [diff] [blame] | 317 | const struct rpc_timeout *timeparms, |
Andy Adamson | f840729 | 2013-07-24 11:59:49 -0400 | [diff] [blame] | 318 | const char *ip_addr); |
Trond Myklebust | 7fe5c39 | 2009-03-19 15:35:50 -0400 | [diff] [blame] | 319 | |
Trond Myklebust | 979df72 | 2006-07-25 11:28:19 -0400 | [diff] [blame] | 320 | /* dir.c */ |
Trond Myklebust | 311324a | 2014-02-07 17:02:08 -0500 | [diff] [blame] | 321 | extern void nfs_force_use_readdirplus(struct inode *dir); |
Dave Chinner | 1ab6c49 | 2013-08-28 10:18:09 +1000 | [diff] [blame] | 322 | extern unsigned long nfs_access_cache_count(struct shrinker *shrink, |
| 323 | struct shrink_control *sc); |
| 324 | extern unsigned long nfs_access_cache_scan(struct shrinker *shrink, |
| 325 | struct shrink_control *sc); |
Bryan Schumaker | 597d928 | 2012-07-16 16:39:10 -0400 | [diff] [blame] | 326 | struct dentry *nfs_lookup(struct inode *, struct dentry *, unsigned int); |
| 327 | int nfs_create(struct inode *, struct dentry *, umode_t, bool); |
| 328 | int nfs_mkdir(struct inode *, struct dentry *, umode_t); |
| 329 | int nfs_rmdir(struct inode *, struct dentry *); |
| 330 | int nfs_unlink(struct inode *, struct dentry *); |
| 331 | int nfs_symlink(struct inode *, struct dentry *, const char *); |
| 332 | int nfs_link(struct dentry *, struct inode *, struct dentry *); |
| 333 | int nfs_mknod(struct inode *, struct dentry *, umode_t, dev_t); |
| 334 | int nfs_rename(struct inode *, struct dentry *, struct inode *, struct dentry *); |
Trond Myklebust | 979df72 | 2006-07-25 11:28:19 -0400 | [diff] [blame] | 335 | |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 336 | /* file.c */ |
| 337 | int nfs_file_fsync_commit(struct file *, loff_t, loff_t, int); |
| 338 | loff_t nfs_file_llseek(struct file *, loff_t, int); |
| 339 | int nfs_file_flush(struct file *, fl_owner_t); |
Al Viro | 3aa2d19 | 2014-04-02 20:14:12 -0400 | [diff] [blame] | 340 | ssize_t nfs_file_read(struct kiocb *, struct iov_iter *); |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 341 | ssize_t nfs_file_splice_read(struct file *, loff_t *, struct pipe_inode_info *, |
| 342 | size_t, unsigned int); |
| 343 | int nfs_file_mmap(struct file *, struct vm_area_struct *); |
Al Viro | edaf436 | 2014-04-03 14:07:25 -0400 | [diff] [blame] | 344 | ssize_t nfs_file_write(struct kiocb *, struct iov_iter *); |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 345 | int nfs_file_release(struct inode *, struct file *); |
| 346 | int nfs_lock(struct file *, int, struct file_lock *); |
| 347 | int nfs_flock(struct file *, int, struct file_lock *); |
Bryan Schumaker | ce4ef7c | 2012-07-16 16:39:15 -0400 | [diff] [blame] | 348 | int nfs_check_flags(int); |
| 349 | int nfs_setlease(struct file *, long, struct file_lock **); |
| 350 | |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 351 | /* inode.c */ |
Trond Myklebust | 5746006 | 2008-02-19 20:04:22 -0500 | [diff] [blame] | 352 | extern struct workqueue_struct *nfsiod_workqueue; |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 353 | extern struct inode *nfs_alloc_inode(struct super_block *sb); |
| 354 | extern void nfs_destroy_inode(struct inode *); |
Christoph Hellwig | a9185b4 | 2010-03-05 09:21:37 +0100 | [diff] [blame] | 355 | extern int nfs_write_inode(struct inode *, struct writeback_control *); |
Trond Myklebust | eed9935 | 2012-12-14 14:36:36 -0500 | [diff] [blame] | 356 | extern int nfs_drop_inode(struct inode *); |
Bryan Schumaker | 19d87ca | 2012-07-30 16:05:21 -0400 | [diff] [blame] | 357 | extern void nfs_clear_inode(struct inode *); |
Al Viro | b57922d | 2010-06-07 14:34:48 -0400 | [diff] [blame] | 358 | extern void nfs_evict_inode(struct inode *); |
Trond Myklebust | f41f741 | 2008-06-11 17:39:04 -0400 | [diff] [blame] | 359 | void nfs_zap_acl_cache(struct inode *inode); |
NeilBrown | c122132 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 360 | extern int nfs_wait_bit_killable(struct wait_bit_key *key); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 361 | |
| 362 | /* super.c */ |
Bryan Schumaker | 6a74490 | 2012-07-30 16:05:20 -0400 | [diff] [blame] | 363 | extern const struct super_operations nfs_sops; |
Bryan Schumaker | ab7017a | 2012-07-30 16:05:16 -0400 | [diff] [blame] | 364 | extern struct file_system_type nfs_fs_type; |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 365 | extern struct file_system_type nfs_xdev_fs_type; |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 366 | #if IS_ENABLED(CONFIG_NFS_V4) |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 367 | extern struct file_system_type nfs4_xdev_fs_type; |
| 368 | extern struct file_system_type nfs4_referral_fs_type; |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 369 | #endif |
Weston Andros Adamson | 4d4b69d | 2013-10-18 15:15:19 -0400 | [diff] [blame] | 370 | 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] | 371 | struct dentry *nfs_try_mount(int, const char *, struct nfs_mount_info *, |
| 372 | struct nfs_subversion *); |
Bryan Schumaker | fbdefd6 | 2012-07-16 16:39:20 -0400 | [diff] [blame] | 373 | void nfs_initialise_sb(struct super_block *); |
| 374 | int nfs_set_sb_security(struct super_block *, struct dentry *, struct nfs_mount_info *); |
| 375 | 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] | 376 | struct dentry *nfs_fs_mount_common(struct nfs_server *, int, const char *, |
| 377 | struct nfs_mount_info *, struct nfs_subversion *); |
Bryan Schumaker | fbdefd6 | 2012-07-16 16:39:20 -0400 | [diff] [blame] | 378 | struct dentry *nfs_fs_mount(struct file_system_type *, int, const char *, void *); |
| 379 | struct dentry * nfs_xdev_mount_common(struct file_system_type *, int, |
| 380 | const char *, struct nfs_mount_info *); |
| 381 | void nfs_kill_super(struct super_block *); |
| 382 | void nfs_fill_super(struct super_block *, struct nfs_mount_info *); |
Dominik Hackl | 4ebd9ab | 2006-07-02 17:29:26 +0200 | [diff] [blame] | 383 | |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 384 | extern struct rpc_stat nfs_rpcstat; |
Dominik Hackl | 4ebd9ab | 2006-07-02 17:29:26 +0200 | [diff] [blame] | 385 | |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 386 | extern int __init register_nfs_fs(void); |
| 387 | extern void __exit unregister_nfs_fs(void); |
Trond Myklebust | 1daef0a | 2008-07-27 18:19:01 -0400 | [diff] [blame] | 388 | extern void nfs_sb_active(struct super_block *sb); |
| 389 | extern void nfs_sb_deactive(struct super_block *sb); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 390 | |
| 391 | /* namespace.c */ |
Ben Hutchings | 97a5486 | 2012-10-21 19:23:52 +0100 | [diff] [blame] | 392 | #define NFS_PATH_CANONICAL 1 |
Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 393 | extern char *nfs_path(char **p, struct dentry *dentry, |
Ben Hutchings | 97a5486 | 2012-10-21 19:23:52 +0100 | [diff] [blame] | 394 | char *buffer, ssize_t buflen, unsigned flags); |
David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 395 | extern struct vfsmount *nfs_d_automount(struct path *path); |
Bryan Schumaker | 281cad4 | 2012-04-27 13:27:45 -0400 | [diff] [blame] | 396 | struct vfsmount *nfs_submount(struct nfs_server *, struct dentry *, |
| 397 | struct nfs_fh *, struct nfs_fattr *); |
| 398 | struct vfsmount *nfs_do_submount(struct dentry *, struct nfs_fh *, |
| 399 | struct nfs_fattr *, rpc_authflavor_t); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 400 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 401 | /* getroot.c */ |
Al Viro | 0d5839a | 2011-03-16 05:27:27 -0400 | [diff] [blame] | 402 | extern struct dentry *nfs_get_root(struct super_block *, struct nfs_fh *, |
| 403 | const char *); |
Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 404 | #if IS_ENABLED(CONFIG_NFS_V4) |
Al Viro | 0d5839a | 2011-03-16 05:27:27 -0400 | [diff] [blame] | 405 | extern struct dentry *nfs4_get_root(struct super_block *, struct nfs_fh *, |
| 406 | const char *); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 407 | |
Trond Myklebust | 5e6b199 | 2013-09-07 12:58:57 -0400 | [diff] [blame] | 408 | 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] | 409 | #endif |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 410 | |
Fred Isaman | 061ae2e | 2012-04-20 14:47:48 -0400 | [diff] [blame] | 411 | struct nfs_pgio_completion_ops; |
Andy Adamson | f11c88a | 2009-04-01 09:22:25 -0400 | [diff] [blame] | 412 | /* read.c */ |
Fred Isaman | 584aa81 | 2012-04-20 14:47:51 -0400 | [diff] [blame] | 413 | extern void nfs_pageio_init_read(struct nfs_pageio_descriptor *pgio, |
Christoph Hellwig | fab5fc2 | 2014-04-16 15:07:22 +0200 | [diff] [blame] | 414 | struct inode *inode, bool force_mds, |
Fred Isaman | 584aa81 | 2012-04-20 14:47:51 -0400 | [diff] [blame] | 415 | const struct nfs_pgio_completion_ops *compl_ops); |
Andy Adamson | f11c88a | 2009-04-01 09:22:25 -0400 | [diff] [blame] | 416 | extern void nfs_read_prepare(struct rpc_task *task, void *calldata); |
Trond Myklebust | 493292d | 2011-07-13 15:58:28 -0400 | [diff] [blame] | 417 | extern void nfs_pageio_reset_read_mds(struct nfs_pageio_descriptor *pgio); |
Trond Myklebust | e885de1 | 2011-06-10 13:30:23 -0400 | [diff] [blame] | 418 | |
Bryan Schumaker | fbdefd6 | 2012-07-16 16:39:20 -0400 | [diff] [blame] | 419 | /* super.c */ |
| 420 | void nfs_clone_super(struct super_block *, struct nfs_mount_info *); |
| 421 | void nfs_umount_begin(struct super_block *); |
| 422 | int nfs_statfs(struct dentry *, struct kstatfs *); |
| 423 | int nfs_show_options(struct seq_file *, struct dentry *); |
| 424 | int nfs_show_devname(struct seq_file *, struct dentry *); |
| 425 | int nfs_show_path(struct seq_file *, struct dentry *); |
| 426 | int nfs_show_stats(struct seq_file *, struct dentry *); |
| 427 | void nfs_put_super(struct super_block *); |
| 428 | int nfs_remount(struct super_block *sb, int *flags, char *raw_data); |
| 429 | |
Andy Adamson | def6ed7 | 2009-04-01 09:22:26 -0400 | [diff] [blame] | 430 | /* write.c */ |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 431 | extern void nfs_pageio_init_write(struct nfs_pageio_descriptor *pgio, |
Christoph Hellwig | a20c93e | 2014-04-16 15:07:21 +0200 | [diff] [blame] | 432 | struct inode *inode, int ioflags, bool force_mds, |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 433 | const struct nfs_pgio_completion_ops *compl_ops); |
Trond Myklebust | dce8129 | 2011-07-13 15:59:19 -0400 | [diff] [blame] | 434 | extern void nfs_pageio_reset_write_mds(struct nfs_pageio_descriptor *pgio); |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 435 | extern void nfs_commit_free(struct nfs_commit_data *p); |
Andy Adamson | def6ed7 | 2009-04-01 09:22:26 -0400 | [diff] [blame] | 436 | extern void nfs_write_prepare(struct rpc_task *task, void *calldata); |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 437 | extern void nfs_commit_prepare(struct rpc_task *task, void *calldata); |
| 438 | extern int nfs_initiate_commit(struct rpc_clnt *clnt, |
| 439 | struct nfs_commit_data *data, |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 440 | const struct rpc_call_ops *call_ops, |
Andy Adamson | 9f0ec176 | 2012-04-27 17:53:44 -0400 | [diff] [blame] | 441 | int how, int flags); |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 442 | extern void nfs_init_commit(struct nfs_commit_data *data, |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 443 | struct list_head *head, |
Fred Isaman | f453a54 | 2012-04-20 14:47:54 -0400 | [diff] [blame] | 444 | struct pnfs_layout_segment *lseg, |
| 445 | struct nfs_commit_info *cinfo); |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 446 | int nfs_scan_commit_list(struct list_head *src, struct list_head *dst, |
| 447 | struct nfs_commit_info *cinfo, int max); |
Anna Schumaker | ce59515 | 2014-05-06 09:12:34 -0400 | [diff] [blame] | 448 | unsigned long nfs_reqs_to_commit(struct nfs_commit_info *); |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 449 | int nfs_scan_commit(struct inode *inode, struct list_head *dst, |
| 450 | struct nfs_commit_info *cinfo); |
| 451 | void nfs_mark_request_commit(struct nfs_page *req, |
| 452 | struct pnfs_layout_segment *lseg, |
| 453 | struct nfs_commit_info *cinfo); |
Weston Andros Adamson | c65e625 | 2014-06-09 11:48:36 -0400 | [diff] [blame] | 454 | int nfs_write_need_commit(struct nfs_pgio_header *); |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 455 | int nfs_generic_commit_list(struct inode *inode, struct list_head *head, |
| 456 | int how, struct nfs_commit_info *cinfo); |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 457 | void nfs_retry_commit(struct list_head *page_list, |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 458 | struct pnfs_layout_segment *lseg, |
| 459 | struct nfs_commit_info *cinfo); |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 460 | void nfs_commitdata_release(struct nfs_commit_data *data); |
Fred Isaman | ea2cf22 | 2012-04-20 14:47:53 -0400 | [diff] [blame] | 461 | void nfs_request_add_commit_list(struct nfs_page *req, struct list_head *dst, |
| 462 | struct nfs_commit_info *cinfo); |
| 463 | void nfs_request_remove_commit_list(struct nfs_page *req, |
| 464 | struct nfs_commit_info *cinfo); |
| 465 | void nfs_init_cinfo(struct nfs_commit_info *cinfo, |
| 466 | struct inode *inode, |
| 467 | struct nfs_direct_req *dreq); |
Andy Adamson | dc24826 | 2013-08-14 11:59:16 -0400 | [diff] [blame] | 468 | int nfs_key_timeout_notify(struct file *filp, struct inode *inode); |
| 469 | bool nfs_ctx_key_to_expire(struct nfs_open_context *ctx); |
Fred Isaman | e0c2b38 | 2011-03-23 13:27:53 +0000 | [diff] [blame] | 470 | |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 471 | #ifdef CONFIG_MIGRATION |
| 472 | extern int nfs_migrate_page(struct address_space *, |
Mel Gorman | a6bc32b | 2012-01-12 17:19:43 -0800 | [diff] [blame] | 473 | struct page *, struct page *, enum migrate_mode); |
Trond Myklebust | 074cc1d | 2009-08-10 08:54:13 -0400 | [diff] [blame] | 474 | #else |
| 475 | #define nfs_migrate_page NULL |
| 476 | #endif |
Andy Adamson | def6ed7 | 2009-04-01 09:22:26 -0400 | [diff] [blame] | 477 | |
Jeff Layton | 0e862a4 | 2014-03-17 07:06:55 -0400 | [diff] [blame] | 478 | /* unlink.c */ |
| 479 | extern struct rpc_task * |
| 480 | nfs_async_rename(struct inode *old_dir, struct inode *new_dir, |
| 481 | struct dentry *old_dentry, struct dentry *new_dentry, |
| 482 | void (*complete)(struct rpc_task *, struct nfs_renamedata *)); |
| 483 | extern int nfs_sillyrename(struct inode *dir, struct dentry *dentry); |
| 484 | |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 485 | /* direct.c */ |
| 486 | void nfs_init_cinfo_from_dreq(struct nfs_commit_info *cinfo, |
| 487 | struct nfs_direct_req *dreq); |
Trond Myklebust | 1d59d61 | 2012-05-31 12:22:33 -0400 | [diff] [blame] | 488 | static inline void nfs_inode_dio_wait(struct inode *inode) |
| 489 | { |
| 490 | inode_dio_wait(inode); |
| 491 | } |
Peng Tao | 6296556 | 2012-09-25 14:55:57 +0800 | [diff] [blame] | 492 | extern ssize_t nfs_dreq_bytes_left(struct nfs_direct_req *dreq); |
Fred Isaman | 1763da1 | 2012-04-20 14:47:57 -0400 | [diff] [blame] | 493 | |
Andy Adamson | cccef3b | 2009-04-01 09:22:03 -0400 | [diff] [blame] | 494 | /* nfs4proc.c */ |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 495 | extern void __nfs4_read_done_cb(struct nfs_pgio_header *); |
Chuck Lever | 8cab4c3 | 2012-05-21 22:45:59 -0400 | [diff] [blame] | 496 | extern struct nfs_client *nfs4_init_client(struct nfs_client *clp, |
Andy Adamson | 45a52a0 | 2011-03-01 01:34:08 +0000 | [diff] [blame] | 497 | const struct rpc_timeout *timeparms, |
Andy Adamson | f840729 | 2013-07-24 11:59:49 -0400 | [diff] [blame] | 498 | const char *ip_addr); |
Chuck Lever | 05f4c35 | 2012-09-14 17:24:32 -0400 | [diff] [blame] | 499 | extern int nfs40_walk_client_list(struct nfs_client *clp, |
| 500 | struct nfs_client **result, |
| 501 | struct rpc_cred *cred); |
| 502 | extern int nfs41_walk_client_list(struct nfs_client *clp, |
| 503 | struct nfs_client **result, |
| 504 | struct rpc_cred *cred); |
Andy Adamson | cccef3b | 2009-04-01 09:22:03 -0400 | [diff] [blame] | 505 | |
Andy Adamson | 557134a | 2009-04-01 09:21:53 -0400 | [diff] [blame] | 506 | /* |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 507 | * Determine the device name as a string |
| 508 | */ |
Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 509 | static inline char *nfs_devname(struct dentry *dentry, |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 510 | char *buffer, ssize_t buflen) |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 511 | { |
Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 512 | char *dummy; |
Ben Hutchings | 97a5486 | 2012-10-21 19:23:52 +0100 | [diff] [blame] | 513 | return nfs_path(&dummy, dentry, buffer, buflen, NFS_PATH_CANONICAL); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 514 | } |
| 515 | |
| 516 | /* |
| 517 | * Determine the actual block size (and log2 thereof) |
| 518 | */ |
| 519 | static inline |
| 520 | unsigned long nfs_block_bits(unsigned long bsize, unsigned char *nrbitsp) |
| 521 | { |
| 522 | /* make sure blocksize is a power of two */ |
| 523 | if ((bsize & (bsize - 1)) || nrbitsp) { |
| 524 | unsigned char nrbits; |
| 525 | |
| 526 | for (nrbits = 31; nrbits && !(bsize & (1 << nrbits)); nrbits--) |
| 527 | ; |
| 528 | bsize = 1 << nrbits; |
| 529 | if (nrbitsp) |
| 530 | *nrbitsp = nrbits; |
| 531 | } |
| 532 | |
| 533 | return bsize; |
| 534 | } |
| 535 | |
| 536 | /* |
| 537 | * Calculate the number of 512byte blocks used. |
| 538 | */ |
Chuck Lever | 9eaa67c | 2007-07-01 12:12:19 -0400 | [diff] [blame] | 539 | static inline blkcnt_t nfs_calc_block_size(u64 tsize) |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 540 | { |
Chuck Lever | 9eaa67c | 2007-07-01 12:12:19 -0400 | [diff] [blame] | 541 | blkcnt_t used = (tsize + 511) >> 9; |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 542 | return (used > ULONG_MAX) ? ULONG_MAX : used; |
| 543 | } |
| 544 | |
| 545 | /* |
| 546 | * Compute and set NFS server blocksize |
| 547 | */ |
| 548 | static inline |
| 549 | unsigned long nfs_block_size(unsigned long bsize, unsigned char *nrbitsp) |
| 550 | { |
| 551 | if (bsize < NFS_MIN_FILE_IO_SIZE) |
| 552 | bsize = NFS_DEF_FILE_IO_SIZE; |
| 553 | else if (bsize >= NFS_MAX_FILE_IO_SIZE) |
| 554 | bsize = NFS_MAX_FILE_IO_SIZE; |
| 555 | |
| 556 | return nfs_block_bits(bsize, nrbitsp); |
| 557 | } |
| 558 | |
| 559 | /* |
| 560 | * Determine the maximum file size for a superblock |
| 561 | */ |
| 562 | static inline |
| 563 | void nfs_super_set_maxbytes(struct super_block *sb, __u64 maxfilesize) |
| 564 | { |
| 565 | sb->s_maxbytes = (loff_t)maxfilesize; |
| 566 | if (sb->s_maxbytes > MAX_LFS_FILESIZE || sb->s_maxbytes <= 0) |
| 567 | sb->s_maxbytes = MAX_LFS_FILESIZE; |
| 568 | } |
Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 569 | |
| 570 | /* |
| 571 | * Determine the number of bytes of data the page contains |
| 572 | */ |
| 573 | static inline |
| 574 | unsigned int nfs_page_length(struct page *page) |
| 575 | { |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 576 | loff_t i_size = i_size_read(page_file_mapping(page)->host); |
Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 577 | |
| 578 | if (i_size > 0) { |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 579 | pgoff_t page_index = page_file_index(page); |
Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 580 | pgoff_t end_index = (i_size - 1) >> PAGE_CACHE_SHIFT; |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 581 | if (page_index < end_index) |
Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 582 | return PAGE_CACHE_SIZE; |
Mel Gorman | d56b4dd | 2012-07-31 16:45:06 -0700 | [diff] [blame] | 583 | if (page_index == end_index) |
Trond Myklebust | 49a70f2 | 2006-12-05 00:35:38 -0500 | [diff] [blame] | 584 | return ((i_size - 1) & ~PAGE_CACHE_MASK) + 1; |
| 585 | } |
| 586 | return 0; |
| 587 | } |
Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 588 | |
| 589 | /* |
Trond Myklebust | 0b26a0b | 2010-11-20 14:26:44 -0500 | [diff] [blame] | 590 | * Convert a umode to a dirent->d_type |
| 591 | */ |
| 592 | static inline |
| 593 | unsigned char nfs_umode_to_dtype(umode_t mode) |
| 594 | { |
| 595 | return (mode >> 12) & 15; |
| 596 | } |
| 597 | |
| 598 | /* |
Trond Myklebust | 8d5658c | 2007-04-10 09:26:35 -0400 | [diff] [blame] | 599 | * Determine the number of pages in an array of length 'len' and |
| 600 | * with a base offset of 'base' |
| 601 | */ |
| 602 | static inline |
| 603 | unsigned int nfs_page_array_len(unsigned int base, size_t len) |
| 604 | { |
| 605 | return ((unsigned long)len + (unsigned long)base + |
| 606 | PAGE_SIZE - 1) >> PAGE_SHIFT; |
| 607 | } |
Trond Myklebust | 0110ee1 | 2009-12-07 09:00:24 -0500 | [diff] [blame] | 608 | |
Trond Myklebust | 3a1556e | 2012-04-27 13:48:18 -0400 | [diff] [blame] | 609 | /* |
| 610 | * Convert a struct timespec into a 64-bit change attribute |
| 611 | * |
| 612 | * This does approximately the same thing as timespec_to_ns(), |
| 613 | * but for calculation efficiency, we multiply the seconds by |
| 614 | * 1024*1024*1024. |
| 615 | */ |
| 616 | static inline |
| 617 | u64 nfs_timespec_to_change_attr(const struct timespec *ts) |
| 618 | { |
| 619 | return ((u64)ts->tv_sec << 30) + ts->tv_nsec; |
| 620 | } |
Trond Myklebust | 1264a2f | 2013-08-12 16:06:31 -0400 | [diff] [blame] | 621 | |
| 622 | #ifdef CONFIG_CRC32 |
| 623 | /** |
| 624 | * nfs_fhandle_hash - calculate the crc32 hash for the filehandle |
| 625 | * @fh - pointer to filehandle |
| 626 | * |
| 627 | * returns a crc32 hash for the filehandle that is compatible with |
| 628 | * the one displayed by "wireshark". |
| 629 | */ |
| 630 | static inline u32 nfs_fhandle_hash(const struct nfs_fh *fh) |
| 631 | { |
| 632 | return ~crc32_le(0xFFFFFFFF, &fh->data[0], fh->size); |
| 633 | } |
| 634 | #else |
| 635 | static inline u32 nfs_fhandle_hash(const struct nfs_fh *fh) |
| 636 | { |
| 637 | return 0; |
| 638 | } |
| 639 | #endif |