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