Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/nfs/nfs4proc.c |
| 3 | * |
| 4 | * Client-side procedure declarations for NFSv4. |
| 5 | * |
| 6 | * Copyright (c) 2002 The Regents of the University of Michigan. |
| 7 | * All rights reserved. |
| 8 | * |
| 9 | * Kendrick Smith <kmsmith@umich.edu> |
| 10 | * Andy Adamson <andros@umich.edu> |
| 11 | * |
| 12 | * Redistribution and use in source and binary forms, with or without |
| 13 | * modification, are permitted provided that the following conditions |
| 14 | * are met: |
| 15 | * |
| 16 | * 1. Redistributions of source code must retain the above copyright |
| 17 | * notice, this list of conditions and the following disclaimer. |
| 18 | * 2. Redistributions in binary form must reproduce the above copyright |
| 19 | * notice, this list of conditions and the following disclaimer in the |
| 20 | * documentation and/or other materials provided with the distribution. |
| 21 | * 3. Neither the name of the University nor the names of its |
| 22 | * contributors may be used to endorse or promote products derived |
| 23 | * from this software without specific prior written permission. |
| 24 | * |
| 25 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 26 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 27 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 28 | * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 29 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 30 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 31 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 32 | * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 33 | * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 34 | * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 35 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 36 | */ |
| 37 | |
| 38 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <linux/delay.h> |
| 40 | #include <linux/errno.h> |
Jeff Layton | feaff8e | 2015-05-12 15:48:10 -0400 | [diff] [blame] | 41 | #include <linux/file.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/string.h> |
Trond Myklebust | 652f89f | 2011-12-09 19:05:58 -0500 | [diff] [blame] | 43 | #include <linux/ratelimit.h> |
| 44 | #include <linux/printk.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 45 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <linux/sunrpc/clnt.h> |
| 47 | #include <linux/nfs.h> |
| 48 | #include <linux/nfs4.h> |
| 49 | #include <linux/nfs_fs.h> |
| 50 | #include <linux/nfs_page.h> |
Bryan Schumaker | 9b7160c | 2011-04-13 14:31:30 -0400 | [diff] [blame] | 51 | #include <linux/nfs_mount.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | #include <linux/namei.h> |
Trond Myklebust | 02a913a | 2005-10-18 14:20:17 -0700 | [diff] [blame] | 53 | #include <linux/mount.h> |
Benny Halevy | 99fe60d | 2009-04-01 09:22:29 -0400 | [diff] [blame] | 54 | #include <linux/module.h> |
Aneesh Kumar K.V | 64c2ce8 | 2010-12-09 11:35:25 +0000 | [diff] [blame] | 55 | #include <linux/xattr.h> |
Andy Adamson | c7a360b | 2011-01-25 19:15:32 -0500 | [diff] [blame] | 56 | #include <linux/utsname.h> |
Jeff Layton | d310310 | 2011-12-01 22:44:39 +0100 | [diff] [blame] | 57 | #include <linux/freezer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
Trond Myklebust | 4ce7971 | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 59 | #include "nfs4_fs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #include "delegation.h" |
Trond Myklebust | 101070c | 2008-02-19 20:04:23 -0500 | [diff] [blame] | 61 | #include "internal.h" |
Chuck Lever | 006ea73 | 2006-03-20 13:44:14 -0500 | [diff] [blame] | 62 | #include "iostat.h" |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 63 | #include "callback.h" |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 64 | #include "pnfs.h" |
Chuck Lever | f092075 | 2012-05-21 22:45:41 -0400 | [diff] [blame] | 65 | #include "netns.h" |
Anna Schumaker | 40c64c2 | 2015-04-15 13:00:05 -0400 | [diff] [blame] | 66 | #include "nfs4idmap.h" |
Trond Myklebust | 73e39aa | 2012-11-26 12:49:34 -0500 | [diff] [blame] | 67 | #include "nfs4session.h" |
David Howells | de242c0 | 2012-12-20 21:52:38 +0000 | [diff] [blame] | 68 | #include "fscache.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Trond Myklebust | c6d01c6 | 2013-08-09 11:51:26 -0400 | [diff] [blame] | 70 | #include "nfs4trace.h" |
| 71 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | #define NFSDBG_FACILITY NFSDBG_PROC |
| 73 | |
Trond Myklebust | 2066fe8 | 2006-09-15 08:30:46 -0400 | [diff] [blame] | 74 | #define NFS4_POLL_RETRY_MIN (HZ/10) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | #define NFS4_POLL_RETRY_MAX (15*HZ) |
| 76 | |
Tigran Mkrtchyan | a1d1c4f | 2016-05-12 11:16:38 +0200 | [diff] [blame] | 77 | /* file attributes which can be mapped to nfs attributes */ |
| 78 | #define NFS4_VALID_ATTRS (ATTR_MODE \ |
| 79 | | ATTR_UID \ |
| 80 | | ATTR_GID \ |
| 81 | | ATTR_SIZE \ |
| 82 | | ATTR_ATIME \ |
| 83 | | ATTR_MTIME \ |
| 84 | | ATTR_CTIME \ |
| 85 | | ATTR_ATIME_SET \ |
| 86 | | ATTR_MTIME_SET) |
| 87 | |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 88 | struct nfs4_opendata; |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 89 | static int _nfs4_proc_open(struct nfs4_opendata *data); |
Alexandros Batsakis | b257957 | 2009-12-14 21:27:57 -0800 | [diff] [blame] | 90 | static int _nfs4_recover_proc_open(struct nfs4_opendata *data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | static int nfs4_do_fsinfo(struct nfs_server *, struct nfs_fh *, struct nfs_fsinfo *); |
Chuck Lever | 81934dd | 2012-03-01 17:01:57 -0500 | [diff] [blame] | 92 | static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr); |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 93 | static int nfs4_proc_getattr(struct nfs_server *, struct nfs_fh *, struct nfs_fattr *, struct nfs4_label *label); |
| 94 | static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fattr *fattr, struct nfs4_label *label); |
Trond Myklebust | 0ab64e0 | 2010-04-16 16:22:51 -0400 | [diff] [blame] | 95 | static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred, |
| 96 | struct nfs_fattr *fattr, struct iattr *sattr, |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 97 | struct nfs4_state *state, struct nfs4_label *ilabel, |
| 98 | struct nfs4_label *olabel); |
Bryan Schumaker | f062eb6 | 2011-06-02 14:59:10 -0400 | [diff] [blame] | 99 | #ifdef CONFIG_NFS_V4_1 |
Trond Myklebust | ab7cb0d | 2013-05-20 11:20:27 -0400 | [diff] [blame] | 100 | static int nfs41_test_stateid(struct nfs_server *, nfs4_stateid *, |
| 101 | struct rpc_cred *); |
Trond Myklebust | f0b0bf8 | 2016-09-22 13:39:04 -0400 | [diff] [blame] | 102 | static int nfs41_free_stateid(struct nfs_server *, const nfs4_stateid *, |
| 103 | struct rpc_cred *, bool); |
Bryan Schumaker | f062eb6 | 2011-06-02 14:59:10 -0400 | [diff] [blame] | 104 | #endif |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 105 | |
| 106 | #ifdef CONFIG_NFS_V4_SECURITY_LABEL |
| 107 | static inline struct nfs4_label * |
| 108 | nfs4_label_init_security(struct inode *dir, struct dentry *dentry, |
| 109 | struct iattr *sattr, struct nfs4_label *label) |
| 110 | { |
| 111 | int err; |
| 112 | |
| 113 | if (label == NULL) |
| 114 | return NULL; |
| 115 | |
| 116 | if (nfs_server_capable(dir, NFS_CAP_SECURITY_LABEL) == 0) |
| 117 | return NULL; |
| 118 | |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 119 | err = security_dentry_init_security(dentry, sattr->ia_mode, |
| 120 | &dentry->d_name, (void **)&label->label, &label->len); |
| 121 | if (err == 0) |
| 122 | return label; |
| 123 | |
| 124 | return NULL; |
| 125 | } |
| 126 | static inline void |
| 127 | nfs4_label_release_security(struct nfs4_label *label) |
| 128 | { |
| 129 | if (label) |
| 130 | security_release_secctx(label->label, label->len); |
| 131 | } |
| 132 | static inline u32 *nfs4_bitmask(struct nfs_server *server, struct nfs4_label *label) |
| 133 | { |
| 134 | if (label) |
| 135 | return server->attr_bitmask; |
| 136 | |
| 137 | return server->attr_bitmask_nl; |
| 138 | } |
| 139 | #else |
| 140 | static inline struct nfs4_label * |
| 141 | nfs4_label_init_security(struct inode *dir, struct dentry *dentry, |
| 142 | struct iattr *sattr, struct nfs4_label *l) |
| 143 | { return NULL; } |
| 144 | static inline void |
| 145 | nfs4_label_release_security(struct nfs4_label *label) |
| 146 | { return; } |
| 147 | static inline u32 * |
| 148 | nfs4_bitmask(struct nfs_server *server, struct nfs4_label *label) |
| 149 | { return server->attr_bitmask; } |
| 150 | #endif |
| 151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | /* Prevent leaks of NFSv4 errors into userland */ |
WANG Cong | 46f72f5 | 2008-12-30 16:35:55 -0500 | [diff] [blame] | 153 | static int nfs4_map_errors(int err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | { |
Trond Myklebust | 52567b0 | 2009-10-23 14:46:42 -0400 | [diff] [blame] | 155 | if (err >= -1000) |
| 156 | return err; |
| 157 | switch (err) { |
| 158 | case -NFS4ERR_RESOURCE: |
Weston Andros Adamson | 3000512 | 2013-02-28 20:30:10 -0500 | [diff] [blame] | 159 | case -NFS4ERR_LAYOUTTRYLATER: |
| 160 | case -NFS4ERR_RECALLCONFLICT: |
Trond Myklebust | 52567b0 | 2009-10-23 14:46:42 -0400 | [diff] [blame] | 161 | return -EREMOTEIO; |
Bryan Schumaker | 7ebb931 | 2011-03-24 17:12:30 +0000 | [diff] [blame] | 162 | case -NFS4ERR_WRONGSEC: |
Weston Andros Adamson | 8897538 | 2013-08-13 16:37:38 -0400 | [diff] [blame] | 163 | case -NFS4ERR_WRONG_CRED: |
Bryan Schumaker | 7ebb931 | 2011-03-24 17:12:30 +0000 | [diff] [blame] | 164 | return -EPERM; |
Trond Myklebust | 3ddeb7c | 2011-02-22 15:44:31 -0800 | [diff] [blame] | 165 | case -NFS4ERR_BADOWNER: |
| 166 | case -NFS4ERR_BADNAME: |
| 167 | return -EINVAL; |
Trond Myklebust | fb13bfa | 2012-05-28 11:36:28 -0400 | [diff] [blame] | 168 | case -NFS4ERR_SHARE_DENIED: |
| 169 | return -EACCES; |
Steve Dickson | f25efd8 | 2012-06-06 14:12:07 -0400 | [diff] [blame] | 170 | case -NFS4ERR_MINOR_VERS_MISMATCH: |
| 171 | return -EPROTONOSUPPORT; |
Trond Myklebust | 6e3cf24 | 2013-03-23 15:22:45 -0400 | [diff] [blame] | 172 | case -NFS4ERR_FILE_OPEN: |
| 173 | return -EBUSY; |
Trond Myklebust | 52567b0 | 2009-10-23 14:46:42 -0400 | [diff] [blame] | 174 | default: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | dprintk("%s could not handle NFSv4 error %d\n", |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 176 | __func__, -err); |
Trond Myklebust | 52567b0 | 2009-10-23 14:46:42 -0400 | [diff] [blame] | 177 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | } |
Trond Myklebust | 52567b0 | 2009-10-23 14:46:42 -0400 | [diff] [blame] | 179 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | /* |
| 183 | * This is our standard bitmap for GETATTR requests. |
| 184 | */ |
Trond Myklebust | 1549210f | 2012-06-05 09:16:47 -0400 | [diff] [blame] | 185 | const u32 nfs4_fattr_bitmap[3] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | FATTR4_WORD0_TYPE |
| 187 | | FATTR4_WORD0_CHANGE |
| 188 | | FATTR4_WORD0_SIZE |
| 189 | | FATTR4_WORD0_FSID |
| 190 | | FATTR4_WORD0_FILEID, |
| 191 | FATTR4_WORD1_MODE |
| 192 | | FATTR4_WORD1_NUMLINKS |
| 193 | | FATTR4_WORD1_OWNER |
| 194 | | FATTR4_WORD1_OWNER_GROUP |
| 195 | | FATTR4_WORD1_RAWDEV |
| 196 | | FATTR4_WORD1_SPACE_USED |
| 197 | | FATTR4_WORD1_TIME_ACCESS |
| 198 | | FATTR4_WORD1_TIME_METADATA |
Anna Schumaker | ea96d1e | 2015-04-03 14:35:59 -0400 | [diff] [blame] | 199 | | FATTR4_WORD1_TIME_MODIFY |
| 200 | | FATTR4_WORD1_MOUNTED_ON_FILEID, |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 201 | #ifdef CONFIG_NFS_V4_SECURITY_LABEL |
| 202 | FATTR4_WORD2_SECURITY_LABEL |
| 203 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | }; |
| 205 | |
Trond Myklebust | 1549210f | 2012-06-05 09:16:47 -0400 | [diff] [blame] | 206 | static const u32 nfs4_pnfs_open_bitmap[3] = { |
| 207 | FATTR4_WORD0_TYPE |
| 208 | | FATTR4_WORD0_CHANGE |
| 209 | | FATTR4_WORD0_SIZE |
| 210 | | FATTR4_WORD0_FSID |
| 211 | | FATTR4_WORD0_FILEID, |
| 212 | FATTR4_WORD1_MODE |
| 213 | | FATTR4_WORD1_NUMLINKS |
| 214 | | FATTR4_WORD1_OWNER |
| 215 | | FATTR4_WORD1_OWNER_GROUP |
| 216 | | FATTR4_WORD1_RAWDEV |
| 217 | | FATTR4_WORD1_SPACE_USED |
| 218 | | FATTR4_WORD1_TIME_ACCESS |
| 219 | | FATTR4_WORD1_TIME_METADATA |
| 220 | | FATTR4_WORD1_TIME_MODIFY, |
| 221 | FATTR4_WORD2_MDSTHRESHOLD |
Trond Myklebust | 95864c9 | 2015-12-26 15:06:03 -0500 | [diff] [blame] | 222 | #ifdef CONFIG_NFS_V4_SECURITY_LABEL |
| 223 | | FATTR4_WORD2_SECURITY_LABEL |
| 224 | #endif |
Trond Myklebust | 1549210f | 2012-06-05 09:16:47 -0400 | [diff] [blame] | 225 | }; |
| 226 | |
Andy Adamson | e23008e | 2012-10-02 21:07:32 -0400 | [diff] [blame] | 227 | static const u32 nfs4_open_noattr_bitmap[3] = { |
| 228 | FATTR4_WORD0_TYPE |
| 229 | | FATTR4_WORD0_CHANGE |
| 230 | | FATTR4_WORD0_FILEID, |
| 231 | }; |
| 232 | |
David Quigley | a09df2c | 2013-05-22 12:50:41 -0400 | [diff] [blame] | 233 | const u32 nfs4_statfs_bitmap[3] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | FATTR4_WORD0_FILES_AVAIL |
| 235 | | FATTR4_WORD0_FILES_FREE |
| 236 | | FATTR4_WORD0_FILES_TOTAL, |
| 237 | FATTR4_WORD1_SPACE_AVAIL |
| 238 | | FATTR4_WORD1_SPACE_FREE |
| 239 | | FATTR4_WORD1_SPACE_TOTAL |
| 240 | }; |
| 241 | |
David Quigley | a09df2c | 2013-05-22 12:50:41 -0400 | [diff] [blame] | 242 | const u32 nfs4_pathconf_bitmap[3] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | FATTR4_WORD0_MAXLINK |
| 244 | | FATTR4_WORD0_MAXNAME, |
| 245 | 0 |
| 246 | }; |
| 247 | |
Fred Isaman | dae100c | 2011-07-30 20:52:37 -0400 | [diff] [blame] | 248 | const u32 nfs4_fsinfo_bitmap[3] = { FATTR4_WORD0_MAXFILESIZE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | | FATTR4_WORD0_MAXREAD |
| 250 | | FATTR4_WORD0_MAXWRITE |
| 251 | | FATTR4_WORD0_LEASE_TIME, |
Ricardo Labiaga | 55b6e77 | 2010-10-12 16:30:06 -0700 | [diff] [blame] | 252 | FATTR4_WORD1_TIME_DELTA |
Fred Isaman | dae100c | 2011-07-30 20:52:37 -0400 | [diff] [blame] | 253 | | FATTR4_WORD1_FS_LAYOUT_TYPES, |
| 254 | FATTR4_WORD2_LAYOUT_BLKSIZE |
Peng Tao | 2a92ee9 | 2015-09-26 02:24:37 +0800 | [diff] [blame] | 255 | | FATTR4_WORD2_CLONE_BLKSIZE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | }; |
| 257 | |
David Quigley | a09df2c | 2013-05-22 12:50:41 -0400 | [diff] [blame] | 258 | const u32 nfs4_fs_locations_bitmap[3] = { |
Manoj Naik | 830b8e3 | 2006-06-09 09:34:25 -0400 | [diff] [blame] | 259 | FATTR4_WORD0_TYPE |
| 260 | | FATTR4_WORD0_CHANGE |
| 261 | | FATTR4_WORD0_SIZE |
| 262 | | FATTR4_WORD0_FSID |
| 263 | | FATTR4_WORD0_FILEID |
| 264 | | FATTR4_WORD0_FS_LOCATIONS, |
| 265 | FATTR4_WORD1_MODE |
| 266 | | FATTR4_WORD1_NUMLINKS |
| 267 | | FATTR4_WORD1_OWNER |
| 268 | | FATTR4_WORD1_OWNER_GROUP |
| 269 | | FATTR4_WORD1_RAWDEV |
| 270 | | FATTR4_WORD1_SPACE_USED |
| 271 | | FATTR4_WORD1_TIME_ACCESS |
| 272 | | FATTR4_WORD1_TIME_METADATA |
| 273 | | FATTR4_WORD1_TIME_MODIFY |
David Quigley | a09df2c | 2013-05-22 12:50:41 -0400 | [diff] [blame] | 274 | | FATTR4_WORD1_MOUNTED_ON_FILEID, |
Manoj Naik | 830b8e3 | 2006-06-09 09:34:25 -0400 | [diff] [blame] | 275 | }; |
| 276 | |
Al Viro | bc4785c | 2006-10-19 23:28:51 -0700 | [diff] [blame] | 277 | static void nfs4_setup_readdir(u64 cookie, __be32 *verifier, struct dentry *dentry, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | struct nfs4_readdir_arg *readdir) |
| 279 | { |
Al Viro | 0dbb4c6 | 2006-10-19 23:28:49 -0700 | [diff] [blame] | 280 | __be32 *start, *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | if (cookie > 2) { |
Adrian Bunk | b7ef195 | 2005-06-22 17:16:28 +0000 | [diff] [blame] | 283 | readdir->cookie = cookie; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | memcpy(&readdir->verifier, verifier, sizeof(readdir->verifier)); |
| 285 | return; |
| 286 | } |
| 287 | |
| 288 | readdir->cookie = 0; |
| 289 | memset(&readdir->verifier, 0, sizeof(readdir->verifier)); |
| 290 | if (cookie == 2) |
| 291 | return; |
| 292 | |
| 293 | /* |
| 294 | * NFSv4 servers do not return entries for '.' and '..' |
| 295 | * Therefore, we fake these entries here. We let '.' |
| 296 | * have cookie 0 and '..' have cookie 1. Note that |
| 297 | * when talking to the server, we always send cookie 0 |
| 298 | * instead of 1 or 2. |
| 299 | */ |
Cong Wang | 2b86ce2 | 2011-11-25 23:14:33 +0800 | [diff] [blame] | 300 | start = p = kmap_atomic(*readdir->pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
| 302 | if (cookie == 0) { |
| 303 | *p++ = xdr_one; /* next */ |
| 304 | *p++ = xdr_zero; /* cookie, first word */ |
| 305 | *p++ = xdr_one; /* cookie, second word */ |
| 306 | *p++ = xdr_one; /* entry len */ |
| 307 | memcpy(p, ".\0\0\0", 4); /* entry */ |
| 308 | p++; |
| 309 | *p++ = xdr_one; /* bitmap length */ |
| 310 | *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */ |
| 311 | *p++ = htonl(8); /* attribute buffer length */ |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 312 | p = xdr_encode_hyper(p, NFS_FILEID(d_inode(dentry))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | } |
| 314 | |
| 315 | *p++ = xdr_one; /* next */ |
| 316 | *p++ = xdr_zero; /* cookie, first word */ |
| 317 | *p++ = xdr_two; /* cookie, second word */ |
| 318 | *p++ = xdr_two; /* entry len */ |
| 319 | memcpy(p, "..\0\0", 4); /* entry */ |
| 320 | p++; |
| 321 | *p++ = xdr_one; /* bitmap length */ |
| 322 | *p++ = htonl(FATTR4_WORD0_FILEID); /* bitmap */ |
| 323 | *p++ = htonl(8); /* attribute buffer length */ |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 324 | p = xdr_encode_hyper(p, NFS_FILEID(d_inode(dentry->d_parent))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | |
| 326 | readdir->pgbase = (char *)p - (char *)start; |
| 327 | readdir->count -= readdir->pgbase; |
Cong Wang | 2b86ce2 | 2011-11-25 23:14:33 +0800 | [diff] [blame] | 328 | kunmap_atomic(start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | } |
| 330 | |
Trond Myklebust | 26d3630 | 2016-09-22 13:39:05 -0400 | [diff] [blame] | 331 | static void nfs4_test_and_free_stateid(struct nfs_server *server, |
| 332 | nfs4_stateid *stateid, |
| 333 | struct rpc_cred *cred) |
| 334 | { |
| 335 | const struct nfs4_minor_version_ops *ops = server->nfs_client->cl_mvops; |
| 336 | |
| 337 | ops->test_and_free_expired(server, stateid, cred); |
| 338 | } |
| 339 | |
| 340 | static void __nfs4_free_revoked_stateid(struct nfs_server *server, |
| 341 | nfs4_stateid *stateid, |
| 342 | struct rpc_cred *cred) |
| 343 | { |
| 344 | stateid->type = NFS4_REVOKED_STATEID_TYPE; |
| 345 | nfs4_test_and_free_stateid(server, stateid, cred); |
| 346 | } |
| 347 | |
| 348 | static void nfs4_free_revoked_stateid(struct nfs_server *server, |
| 349 | const nfs4_stateid *stateid, |
| 350 | struct rpc_cred *cred) |
| 351 | { |
| 352 | nfs4_stateid tmp; |
| 353 | |
| 354 | nfs4_stateid_copy(&tmp, stateid); |
| 355 | __nfs4_free_revoked_stateid(server, &tmp, cred); |
| 356 | } |
| 357 | |
NeilBrown | 8478eaa | 2014-09-18 16:09:27 +1000 | [diff] [blame] | 358 | static long nfs4_update_delay(long *timeout) |
| 359 | { |
| 360 | long ret; |
| 361 | if (!timeout) |
| 362 | return NFS4_POLL_RETRY_MAX; |
| 363 | if (*timeout <= 0) |
| 364 | *timeout = NFS4_POLL_RETRY_MIN; |
| 365 | if (*timeout > NFS4_POLL_RETRY_MAX) |
| 366 | *timeout = NFS4_POLL_RETRY_MAX; |
| 367 | ret = *timeout; |
| 368 | *timeout <<= 1; |
| 369 | return ret; |
| 370 | } |
| 371 | |
Trond Myklebust | 65de872 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 372 | static int nfs4_delay(struct rpc_clnt *clnt, long *timeout) |
| 373 | { |
| 374 | int res = 0; |
| 375 | |
| 376 | might_sleep(); |
| 377 | |
NeilBrown | 8478eaa | 2014-09-18 16:09:27 +1000 | [diff] [blame] | 378 | freezable_schedule_timeout_killable_unsafe( |
| 379 | nfs4_update_delay(timeout)); |
Trond Myklebust | 65de872 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 380 | if (fatal_signal_pending(current)) |
| 381 | res = -ERESTARTSYS; |
Trond Myklebust | 65de872 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 382 | return res; |
| 383 | } |
| 384 | |
| 385 | /* This is the error handling routine for processes that are allowed |
| 386 | * to sleep. |
| 387 | */ |
Trond Myklebust | b3c2aa0 | 2015-09-20 14:32:45 -0400 | [diff] [blame] | 388 | static int nfs4_do_handle_exception(struct nfs_server *server, |
| 389 | int errorcode, struct nfs4_exception *exception) |
Trond Myklebust | 65de872 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 390 | { |
| 391 | struct nfs_client *clp = server->nfs_client; |
Trond Myklebust | 9e33bed | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 392 | struct nfs4_state *state = exception->state; |
Trond Myklebust | 8487c47 | 2016-06-26 08:44:35 -0400 | [diff] [blame] | 393 | const nfs4_stateid *stateid = exception->stateid; |
Trond Myklebust | 3114ea7 | 2012-03-07 16:39:06 -0500 | [diff] [blame] | 394 | struct inode *inode = exception->inode; |
Trond Myklebust | 65de872 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 395 | int ret = errorcode; |
| 396 | |
Trond Myklebust | b3c2aa0 | 2015-09-20 14:32:45 -0400 | [diff] [blame] | 397 | exception->delay = 0; |
| 398 | exception->recovering = 0; |
Trond Myklebust | 65de872 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 399 | exception->retry = 0; |
Trond Myklebust | 272289a | 2016-09-22 13:39:15 -0400 | [diff] [blame] | 400 | |
| 401 | if (stateid == NULL && state != NULL) |
| 402 | stateid = &state->stateid; |
| 403 | |
Trond Myklebust | 65de872 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 404 | switch(errorcode) { |
| 405 | case 0: |
| 406 | return 0; |
Trond Myklebust | 5ba1244 | 2015-06-16 11:26:35 -0400 | [diff] [blame] | 407 | case -NFS4ERR_DELEG_REVOKED: |
| 408 | case -NFS4ERR_ADMIN_REVOKED: |
Trond Myklebust | 272289a | 2016-09-22 13:39:15 -0400 | [diff] [blame] | 409 | case -NFS4ERR_EXPIRED: |
Trond Myklebust | 5ba1244 | 2015-06-16 11:26:35 -0400 | [diff] [blame] | 410 | case -NFS4ERR_BAD_STATEID: |
Trond Myklebust | 272289a | 2016-09-22 13:39:15 -0400 | [diff] [blame] | 411 | if (inode != NULL && stateid != NULL) { |
| 412 | nfs_inode_find_state_and_recover(inode, |
| 413 | stateid); |
| 414 | goto wait_on_recovery; |
| 415 | } |
| 416 | case -NFS4ERR_OPENMODE: |
Trond Myklebust | 8487c47 | 2016-06-26 08:44:35 -0400 | [diff] [blame] | 417 | if (inode) { |
| 418 | int err; |
| 419 | |
| 420 | err = nfs_async_inode_return_delegation(inode, |
| 421 | stateid); |
| 422 | if (err == 0) |
| 423 | goto wait_on_recovery; |
| 424 | if (stateid != NULL && stateid->type == NFS4_DELEGATION_STATEID_TYPE) { |
| 425 | exception->retry = 1; |
| 426 | break; |
| 427 | } |
| 428 | } |
Trond Myklebust | 3114ea7 | 2012-03-07 16:39:06 -0500 | [diff] [blame] | 429 | if (state == NULL) |
| 430 | break; |
Trond Myklebust | 5d42230 | 2013-03-14 16:57:48 -0400 | [diff] [blame] | 431 | ret = nfs4_schedule_stateid_recovery(server, state); |
| 432 | if (ret < 0) |
| 433 | break; |
Trond Myklebust | 3114ea7 | 2012-03-07 16:39:06 -0500 | [diff] [blame] | 434 | goto wait_on_recovery; |
Trond Myklebust | 65de872 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 435 | case -NFS4ERR_STALE_STATEID: |
Trond Myklebust | a2c0b9e | 2010-01-26 15:42:47 -0500 | [diff] [blame] | 436 | case -NFS4ERR_STALE_CLIENTID: |
Trond Myklebust | 0400a6b | 2011-03-09 16:00:53 -0500 | [diff] [blame] | 437 | nfs4_schedule_lease_recovery(clp); |
| 438 | goto wait_on_recovery; |
Chuck Lever | 519ae25 | 2013-10-17 14:13:19 -0400 | [diff] [blame] | 439 | case -NFS4ERR_MOVED: |
| 440 | ret = nfs4_schedule_migration_recovery(server); |
| 441 | if (ret < 0) |
| 442 | break; |
| 443 | goto wait_on_recovery; |
Chuck Lever | 8ef2f8d | 2013-10-17 14:13:41 -0400 | [diff] [blame] | 444 | case -NFS4ERR_LEASE_MOVED: |
| 445 | nfs4_schedule_lease_moved_recovery(clp); |
| 446 | goto wait_on_recovery; |
Trond Myklebust | 0339169 | 2010-01-26 15:42:38 -0500 | [diff] [blame] | 447 | #if defined(CONFIG_NFS_V4_1) |
Andy Adamson | 4745e31 | 2009-04-01 09:22:42 -0400 | [diff] [blame] | 448 | case -NFS4ERR_BADSESSION: |
| 449 | case -NFS4ERR_BADSLOT: |
| 450 | case -NFS4ERR_BAD_HIGH_SLOT: |
| 451 | case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION: |
| 452 | case -NFS4ERR_DEADSESSION: |
| 453 | case -NFS4ERR_SEQ_FALSE_RETRY: |
| 454 | case -NFS4ERR_SEQ_MISORDERED: |
| 455 | dprintk("%s ERROR: %d Reset session\n", __func__, |
| 456 | errorcode); |
Trond Myklebust | 9f59479 | 2012-05-27 13:02:53 -0400 | [diff] [blame] | 457 | nfs4_schedule_session_recovery(clp->cl_session, errorcode); |
Bryan Schumaker | 399f11c | 2012-10-30 16:06:35 -0400 | [diff] [blame] | 458 | goto wait_on_recovery; |
Trond Myklebust | 0339169 | 2010-01-26 15:42:38 -0500 | [diff] [blame] | 459 | #endif /* defined(CONFIG_NFS_V4_1) */ |
Trond Myklebust | 65de872 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 460 | case -NFS4ERR_FILE_OPEN: |
NeilBrown | 44ed355 | 2009-12-03 15:58:56 -0500 | [diff] [blame] | 461 | if (exception->timeout > HZ) { |
| 462 | /* We have retried a decent amount, time to |
| 463 | * fail |
| 464 | */ |
| 465 | ret = -EBUSY; |
| 466 | break; |
| 467 | } |
Trond Myklebust | 65de872 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 468 | case -NFS4ERR_DELAY: |
Trond Myklebust | 2598ed3 | 2015-09-20 16:10:18 -0400 | [diff] [blame] | 469 | nfs_inc_server_stats(server, NFSIOS_DELAY); |
| 470 | case -NFS4ERR_GRACE: |
Trond Myklebust | e85d7ee | 2016-07-14 18:46:24 -0400 | [diff] [blame] | 471 | case -NFS4ERR_LAYOUTTRYLATER: |
Jeff Layton | 183d9e7 | 2016-05-17 12:28:47 -0400 | [diff] [blame] | 472 | case -NFS4ERR_RECALLCONFLICT: |
Trond Myklebust | b3c2aa0 | 2015-09-20 14:32:45 -0400 | [diff] [blame] | 473 | exception->delay = 1; |
| 474 | return 0; |
| 475 | |
Andy Adamson | a8a4ae3 | 2011-05-03 13:43:03 -0400 | [diff] [blame] | 476 | case -NFS4ERR_RETRY_UNCACHED_REP: |
Trond Myklebust | 65de872 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 477 | case -NFS4ERR_OLD_STATEID: |
| 478 | exception->retry = 1; |
Trond Myklebust | b064eca2 | 2011-02-22 15:44:32 -0800 | [diff] [blame] | 479 | break; |
| 480 | case -NFS4ERR_BADOWNER: |
| 481 | /* The following works around a Linux server bug! */ |
| 482 | case -NFS4ERR_BADNAME: |
| 483 | if (server->caps & NFS_CAP_UIDGID_NOMAP) { |
| 484 | server->caps &= ~NFS_CAP_UIDGID_NOMAP; |
| 485 | exception->retry = 1; |
| 486 | printk(KERN_WARNING "NFS: v4 server %s " |
| 487 | "does not accept raw " |
| 488 | "uid/gids. " |
| 489 | "Reenabling the idmapper.\n", |
| 490 | server->nfs_client->cl_hostname); |
| 491 | } |
Trond Myklebust | 65de872 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 492 | } |
| 493 | /* We failed to handle the error */ |
| 494 | return nfs4_map_errors(ret); |
Trond Myklebust | 0400a6b | 2011-03-09 16:00:53 -0500 | [diff] [blame] | 495 | wait_on_recovery: |
Trond Myklebust | b3c2aa0 | 2015-09-20 14:32:45 -0400 | [diff] [blame] | 496 | exception->recovering = 1; |
| 497 | return 0; |
| 498 | } |
| 499 | |
| 500 | /* This is the error handling routine for processes that are allowed |
| 501 | * to sleep. |
| 502 | */ |
| 503 | int nfs4_handle_exception(struct nfs_server *server, int errorcode, struct nfs4_exception *exception) |
| 504 | { |
| 505 | struct nfs_client *clp = server->nfs_client; |
| 506 | int ret; |
| 507 | |
| 508 | ret = nfs4_do_handle_exception(server, errorcode, exception); |
| 509 | if (exception->delay) { |
| 510 | ret = nfs4_delay(server->client, &exception->timeout); |
| 511 | goto out_retry; |
| 512 | } |
| 513 | if (exception->recovering) { |
| 514 | ret = nfs4_wait_clnt_recover(clp); |
| 515 | if (test_bit(NFS_MIG_FAILED, &server->mig_status)) |
| 516 | return -EIO; |
| 517 | goto out_retry; |
| 518 | } |
| 519 | return ret; |
| 520 | out_retry: |
Trond Myklebust | a2c0b9e | 2010-01-26 15:42:47 -0500 | [diff] [blame] | 521 | if (ret == 0) |
| 522 | exception->retry = 1; |
| 523 | return ret; |
Trond Myklebust | 65de872 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 524 | } |
| 525 | |
Trond Myklebust | 037fc98 | 2015-09-20 15:51:00 -0400 | [diff] [blame] | 526 | static int |
| 527 | nfs4_async_handle_exception(struct rpc_task *task, struct nfs_server *server, |
| 528 | int errorcode, struct nfs4_exception *exception) |
| 529 | { |
| 530 | struct nfs_client *clp = server->nfs_client; |
| 531 | int ret; |
| 532 | |
| 533 | ret = nfs4_do_handle_exception(server, errorcode, exception); |
| 534 | if (exception->delay) { |
| 535 | rpc_delay(task, nfs4_update_delay(&exception->timeout)); |
| 536 | goto out_retry; |
| 537 | } |
| 538 | if (exception->recovering) { |
| 539 | rpc_sleep_on(&clp->cl_rpcwaitq, task, NULL); |
| 540 | if (test_bit(NFS4CLNT_MANAGER_RUNNING, &clp->cl_state) == 0) |
| 541 | rpc_wake_up_queued_task(&clp->cl_rpcwaitq, task); |
| 542 | goto out_retry; |
| 543 | } |
| 544 | if (test_bit(NFS_MIG_FAILED, &server->mig_status)) |
| 545 | ret = -EIO; |
| 546 | return ret; |
| 547 | out_retry: |
| 548 | if (ret == 0) |
| 549 | exception->retry = 1; |
| 550 | return ret; |
| 551 | } |
| 552 | |
| 553 | static int |
| 554 | nfs4_async_handle_error(struct rpc_task *task, struct nfs_server *server, |
| 555 | struct nfs4_state *state, long *timeout) |
| 556 | { |
| 557 | struct nfs4_exception exception = { |
| 558 | .state = state, |
| 559 | }; |
| 560 | |
| 561 | if (task->tk_status >= 0) |
| 562 | return 0; |
| 563 | if (timeout) |
| 564 | exception.timeout = *timeout; |
| 565 | task->tk_status = nfs4_async_handle_exception(task, server, |
| 566 | task->tk_status, |
| 567 | &exception); |
| 568 | if (exception.delay && timeout) |
| 569 | *timeout = exception.timeout; |
| 570 | if (exception.retry) |
| 571 | return -EAGAIN; |
| 572 | return 0; |
| 573 | } |
| 574 | |
Weston Andros Adamson | a5250de | 2013-09-03 15:18:49 -0400 | [diff] [blame] | 575 | /* |
| 576 | * Return 'true' if 'clp' is using an rpc_client that is integrity protected |
| 577 | * or 'false' otherwise. |
| 578 | */ |
| 579 | static bool _nfs4_is_integrity_protected(struct nfs_client *clp) |
| 580 | { |
| 581 | rpc_authflavor_t flavor = clp->cl_rpcclient->cl_auth->au_flavor; |
| 582 | |
| 583 | if (flavor == RPC_AUTH_GSS_KRB5I || |
| 584 | flavor == RPC_AUTH_GSS_KRB5P) |
| 585 | return true; |
| 586 | |
| 587 | return false; |
| 588 | } |
Trond Myklebust | 65de872 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 589 | |
Trond Myklebust | 452e935 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 590 | static void do_renew_lease(struct nfs_client *clp, unsigned long timestamp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | spin_lock(&clp->cl_lock); |
| 593 | if (time_before(clp->cl_last_renewal,timestamp)) |
| 594 | clp->cl_last_renewal = timestamp; |
| 595 | spin_unlock(&clp->cl_lock); |
| 596 | } |
| 597 | |
Trond Myklebust | 452e935 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 598 | static void renew_lease(const struct nfs_server *server, unsigned long timestamp) |
| 599 | { |
Trond Myklebust | be82416 | 2015-07-05 14:50:46 -0400 | [diff] [blame] | 600 | struct nfs_client *clp = server->nfs_client; |
| 601 | |
| 602 | if (!nfs4_has_session(clp)) |
| 603 | do_renew_lease(clp, timestamp); |
Trond Myklebust | 452e935 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 604 | } |
| 605 | |
Chuck Lever | 2a3eb2b | 2013-08-09 12:48:00 -0400 | [diff] [blame] | 606 | struct nfs4_call_sync_data { |
| 607 | const struct nfs_server *seq_server; |
| 608 | struct nfs4_sequence_args *seq_args; |
| 609 | struct nfs4_sequence_res *seq_res; |
| 610 | }; |
| 611 | |
Trond Myklebust | be3a5d2 | 2015-06-23 19:51:55 +0800 | [diff] [blame] | 612 | void nfs4_init_sequence(struct nfs4_sequence_args *args, |
| 613 | struct nfs4_sequence_res *res, int cache_reply) |
Chuck Lever | a9c92d6 | 2013-08-09 12:48:18 -0400 | [diff] [blame] | 614 | { |
| 615 | args->sa_slot = NULL; |
| 616 | args->sa_cache_this = cache_reply; |
| 617 | args->sa_privileged = 0; |
| 618 | |
| 619 | res->sr_slot = NULL; |
| 620 | } |
| 621 | |
| 622 | static void nfs4_set_sequence_privileged(struct nfs4_sequence_args *args) |
| 623 | { |
| 624 | args->sa_privileged = 1; |
| 625 | } |
| 626 | |
Peng Tao | cb04ad2 | 2014-06-11 05:24:15 +0800 | [diff] [blame] | 627 | int nfs40_setup_sequence(struct nfs4_slot_table *tbl, |
| 628 | struct nfs4_sequence_args *args, |
| 629 | struct nfs4_sequence_res *res, |
| 630 | struct rpc_task *task) |
Chuck Lever | 3bd2384 | 2013-08-09 12:49:19 -0400 | [diff] [blame] | 631 | { |
Chuck Lever | 3bd2384 | 2013-08-09 12:49:19 -0400 | [diff] [blame] | 632 | struct nfs4_slot *slot; |
| 633 | |
| 634 | /* slot already allocated? */ |
| 635 | if (res->sr_slot != NULL) |
| 636 | goto out_start; |
| 637 | |
| 638 | spin_lock(&tbl->slot_tbl_lock); |
| 639 | if (nfs4_slot_tbl_draining(tbl) && !args->sa_privileged) |
| 640 | goto out_sleep; |
| 641 | |
| 642 | slot = nfs4_alloc_slot(tbl); |
| 643 | if (IS_ERR(slot)) { |
| 644 | if (slot == ERR_PTR(-ENOMEM)) |
| 645 | task->tk_timeout = HZ >> 2; |
| 646 | goto out_sleep; |
| 647 | } |
| 648 | spin_unlock(&tbl->slot_tbl_lock); |
| 649 | |
Trond Myklebust | 0a014a4 | 2016-09-22 13:38:51 -0400 | [diff] [blame] | 650 | slot->privileged = args->sa_privileged ? 1 : 0; |
Chuck Lever | 3bd2384 | 2013-08-09 12:49:19 -0400 | [diff] [blame] | 651 | args->sa_slot = slot; |
| 652 | res->sr_slot = slot; |
| 653 | |
| 654 | out_start: |
| 655 | rpc_call_start(task); |
| 656 | return 0; |
| 657 | |
| 658 | out_sleep: |
| 659 | if (args->sa_privileged) |
| 660 | rpc_sleep_on_priority(&tbl->slot_tbl_waitq, task, |
| 661 | NULL, RPC_PRIORITY_PRIVILEGED); |
| 662 | else |
| 663 | rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL); |
| 664 | spin_unlock(&tbl->slot_tbl_lock); |
| 665 | return -EAGAIN; |
| 666 | } |
Peng Tao | cb04ad2 | 2014-06-11 05:24:15 +0800 | [diff] [blame] | 667 | EXPORT_SYMBOL_GPL(nfs40_setup_sequence); |
Chuck Lever | 3bd2384 | 2013-08-09 12:49:19 -0400 | [diff] [blame] | 668 | |
Trond Myklebust | 2e80dbe | 2016-08-28 11:50:26 -0400 | [diff] [blame] | 669 | static void nfs40_sequence_free_slot(struct nfs4_sequence_res *res) |
Chuck Lever | 3bd2384 | 2013-08-09 12:49:19 -0400 | [diff] [blame] | 670 | { |
| 671 | struct nfs4_slot *slot = res->sr_slot; |
| 672 | struct nfs4_slot_table *tbl; |
| 673 | |
Chuck Lever | 3bd2384 | 2013-08-09 12:49:19 -0400 | [diff] [blame] | 674 | tbl = slot->table; |
| 675 | spin_lock(&tbl->slot_tbl_lock); |
| 676 | if (!nfs41_wake_and_assign_slot(tbl, slot)) |
| 677 | nfs4_free_slot(tbl, slot); |
| 678 | spin_unlock(&tbl->slot_tbl_lock); |
| 679 | |
| 680 | res->sr_slot = NULL; |
Trond Myklebust | 2e80dbe | 2016-08-28 11:50:26 -0400 | [diff] [blame] | 681 | } |
| 682 | |
| 683 | static int nfs40_sequence_done(struct rpc_task *task, |
| 684 | struct nfs4_sequence_res *res) |
| 685 | { |
| 686 | if (res->sr_slot != NULL) |
| 687 | nfs40_sequence_free_slot(res); |
Chuck Lever | 3bd2384 | 2013-08-09 12:49:19 -0400 | [diff] [blame] | 688 | return 1; |
| 689 | } |
| 690 | |
Andy Adamson | cccef3b | 2009-04-01 09:22:03 -0400 | [diff] [blame] | 691 | #if defined(CONFIG_NFS_V4_1) |
| 692 | |
Trond Myklebust | d185a33 | 2010-06-16 09:52:25 -0400 | [diff] [blame] | 693 | static void nfs41_sequence_free_slot(struct nfs4_sequence_res *res) |
Andy Adamson | 1361587 | 2009-04-01 09:22:17 -0400 | [diff] [blame] | 694 | { |
Trond Myklebust | e3725ec | 2012-11-16 12:25:01 -0500 | [diff] [blame] | 695 | struct nfs4_session *session; |
Andy Adamson | 1361587 | 2009-04-01 09:22:17 -0400 | [diff] [blame] | 696 | struct nfs4_slot_table *tbl; |
Trond Myklebust | a13ce7c | 2014-01-29 12:24:03 -0500 | [diff] [blame] | 697 | struct nfs4_slot *slot = res->sr_slot; |
Trond Myklebust | c10e449 | 2012-11-26 16:16:54 -0500 | [diff] [blame] | 698 | bool send_new_highest_used_slotid = false; |
Andy Adamson | 1361587 | 2009-04-01 09:22:17 -0400 | [diff] [blame] | 699 | |
Trond Myklebust | a13ce7c | 2014-01-29 12:24:03 -0500 | [diff] [blame] | 700 | tbl = slot->table; |
Trond Myklebust | e3725ec | 2012-11-16 12:25:01 -0500 | [diff] [blame] | 701 | session = tbl->session; |
Andy Adamson | ea028ac | 2009-12-04 15:55:38 -0500 | [diff] [blame] | 702 | |
Trond Myklebust | 07e8dcb | 2016-08-28 10:28:25 -0400 | [diff] [blame] | 703 | /* Bump the slot sequence number */ |
| 704 | if (slot->seq_done) |
| 705 | slot->seq_nr++; |
| 706 | slot->seq_done = 0; |
| 707 | |
Trond Myklebust | 35dc1d7 | 2009-12-05 19:32:19 -0500 | [diff] [blame] | 708 | spin_lock(&tbl->slot_tbl_lock); |
Trond Myklebust | c10e449 | 2012-11-26 16:16:54 -0500 | [diff] [blame] | 709 | /* Be nice to the server: try to ensure that the last transmitted |
| 710 | * value for highest_user_slotid <= target_highest_slotid |
| 711 | */ |
| 712 | if (tbl->highest_used_slotid > tbl->target_highest_slotid) |
| 713 | send_new_highest_used_slotid = true; |
| 714 | |
Trond Myklebust | a13ce7c | 2014-01-29 12:24:03 -0500 | [diff] [blame] | 715 | if (nfs41_wake_and_assign_slot(tbl, slot)) { |
Trond Myklebust | b75ad4c | 2012-11-29 17:27:47 -0500 | [diff] [blame] | 716 | send_new_highest_used_slotid = false; |
| 717 | goto out_unlock; |
| 718 | } |
Trond Myklebust | a13ce7c | 2014-01-29 12:24:03 -0500 | [diff] [blame] | 719 | nfs4_free_slot(tbl, slot); |
Trond Myklebust | c10e449 | 2012-11-26 16:16:54 -0500 | [diff] [blame] | 720 | |
| 721 | if (tbl->highest_used_slotid != NFS4_NO_SLOT) |
| 722 | send_new_highest_used_slotid = false; |
Trond Myklebust | b75ad4c | 2012-11-29 17:27:47 -0500 | [diff] [blame] | 723 | out_unlock: |
Trond Myklebust | 35dc1d7 | 2009-12-05 19:32:19 -0500 | [diff] [blame] | 724 | spin_unlock(&tbl->slot_tbl_lock); |
Benny Halevy | dfb4f309 | 2010-09-24 09:17:01 -0400 | [diff] [blame] | 725 | res->sr_slot = NULL; |
Trond Myklebust | c10e449 | 2012-11-26 16:16:54 -0500 | [diff] [blame] | 726 | if (send_new_highest_used_slotid) |
Anna Schumaker | 3f10a6a | 2015-07-13 14:01:31 -0400 | [diff] [blame] | 727 | nfs41_notify_server(session->clp); |
Trond Myklebust | 045d2a6 | 2016-08-28 13:25:43 -0400 | [diff] [blame] | 728 | if (waitqueue_active(&tbl->slot_waitq)) |
| 729 | wake_up_all(&tbl->slot_waitq); |
Andy Adamson | 1361587 | 2009-04-01 09:22:17 -0400 | [diff] [blame] | 730 | } |
| 731 | |
Trond Myklebust | 2e80dbe | 2016-08-28 11:50:26 -0400 | [diff] [blame] | 732 | static int nfs41_sequence_process(struct rpc_task *task, |
| 733 | struct nfs4_sequence_res *res) |
Andy Adamson | b0df806 | 2009-04-01 09:22:18 -0400 | [diff] [blame] | 734 | { |
Trond Myklebust | e3725ec | 2012-11-16 12:25:01 -0500 | [diff] [blame] | 735 | struct nfs4_session *session; |
Trond Myklebust | a13ce7c | 2014-01-29 12:24:03 -0500 | [diff] [blame] | 736 | struct nfs4_slot *slot = res->sr_slot; |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 737 | struct nfs_client *clp; |
Trond Myklebust | ac20d16 | 2012-12-15 15:36:07 -0500 | [diff] [blame] | 738 | bool interrupted = false; |
Trond Myklebust | 8556307 | 2012-12-11 10:31:12 -0500 | [diff] [blame] | 739 | int ret = 1; |
Andy Adamson | b0df806 | 2009-04-01 09:22:18 -0400 | [diff] [blame] | 740 | |
Trond Myklebust | a13ce7c | 2014-01-29 12:24:03 -0500 | [diff] [blame] | 741 | if (slot == NULL) |
| 742 | goto out_noaction; |
Bryan Schumaker | 468f861 | 2011-04-18 15:57:32 -0400 | [diff] [blame] | 743 | /* don't increment the sequence number if the task wasn't sent */ |
| 744 | if (!RPC_WAS_SENT(task)) |
Andy Adamson | b0df806 | 2009-04-01 09:22:18 -0400 | [diff] [blame] | 745 | goto out; |
| 746 | |
Trond Myklebust | e3725ec | 2012-11-16 12:25:01 -0500 | [diff] [blame] | 747 | session = slot->table->session; |
Trond Myklebust | 933602e | 2012-11-16 12:12:38 -0500 | [diff] [blame] | 748 | |
Trond Myklebust | ac20d16 | 2012-12-15 15:36:07 -0500 | [diff] [blame] | 749 | if (slot->interrupted) { |
| 750 | slot->interrupted = 0; |
| 751 | interrupted = true; |
| 752 | } |
| 753 | |
Trond Myklebust | 2f92ae3 | 2013-08-14 17:58:28 -0400 | [diff] [blame] | 754 | trace_nfs4_sequence_done(session, res); |
Andy Adamson | 691daf3 | 2009-12-04 15:55:39 -0500 | [diff] [blame] | 755 | /* Check the SEQUENCE operation status */ |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 756 | switch (res->sr_status) { |
| 757 | case 0: |
Olga Kornievskaia | a865880 | 2016-09-23 17:24:03 -0400 | [diff] [blame] | 758 | /* If previous op on slot was interrupted and we reused |
| 759 | * the seq# and got a reply from the cache, then retry |
| 760 | */ |
| 761 | if (task->tk_status == -EREMOTEIO && interrupted) { |
| 762 | ++slot->seq_nr; |
| 763 | goto retry_nowait; |
| 764 | } |
Andy Adamson | b0df806 | 2009-04-01 09:22:18 -0400 | [diff] [blame] | 765 | /* Update the slot's sequence and clientid lease timer */ |
Trond Myklebust | 07e8dcb | 2016-08-28 10:28:25 -0400 | [diff] [blame] | 766 | slot->seq_done = 1; |
Trond Myklebust | e3725ec | 2012-11-16 12:25:01 -0500 | [diff] [blame] | 767 | clp = session->clp; |
Trond Myklebust | 8e63b6a | 2012-12-15 15:21:52 -0500 | [diff] [blame] | 768 | do_renew_lease(clp, res->sr_timestamp); |
Alexandros Batsakis | 0629e37 | 2009-12-05 13:46:14 -0500 | [diff] [blame] | 769 | /* Check sequence flags */ |
Trond Myklebust | 0a014a4 | 2016-09-22 13:38:51 -0400 | [diff] [blame] | 770 | nfs41_handle_sequence_flag_errors(clp, res->sr_status_flags, |
| 771 | !!slot->privileged); |
Trond Myklebust | 464ee9f | 2012-11-20 12:49:27 -0500 | [diff] [blame] | 772 | nfs41_update_target_slotid(slot->table, slot, res); |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 773 | break; |
Trond Myklebust | ac20d16 | 2012-12-15 15:36:07 -0500 | [diff] [blame] | 774 | case 1: |
| 775 | /* |
| 776 | * sr_status remains 1 if an RPC level error occurred. |
| 777 | * The server may or may not have processed the sequence |
| 778 | * operation.. |
| 779 | * Mark the slot as having hosted an interrupted RPC call. |
| 780 | */ |
| 781 | slot->interrupted = 1; |
| 782 | goto out; |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 783 | case -NFS4ERR_DELAY: |
| 784 | /* The server detected a resend of the RPC call and |
| 785 | * returned NFS4ERR_DELAY as per Section 2.10.6.2 |
| 786 | * of RFC5661. |
| 787 | */ |
Trond Myklebust | df2fabf | 2012-11-16 12:45:06 -0500 | [diff] [blame] | 788 | dprintk("%s: slot=%u seq=%u: Operation in progress\n", |
Benny Halevy | dfb4f309 | 2010-09-24 09:17:01 -0400 | [diff] [blame] | 789 | __func__, |
Trond Myklebust | df2fabf | 2012-11-16 12:45:06 -0500 | [diff] [blame] | 790 | slot->slot_nr, |
Trond Myklebust | 933602e | 2012-11-16 12:12:38 -0500 | [diff] [blame] | 791 | slot->seq_nr); |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 792 | goto out_retry; |
Trond Myklebust | 8556307 | 2012-12-11 10:31:12 -0500 | [diff] [blame] | 793 | case -NFS4ERR_BADSLOT: |
| 794 | /* |
| 795 | * The slot id we used was probably retired. Try again |
| 796 | * using a different slot id. |
| 797 | */ |
Trond Myklebust | e879444 | 2012-12-15 13:56:18 -0500 | [diff] [blame] | 798 | goto retry_nowait; |
| 799 | case -NFS4ERR_SEQ_MISORDERED: |
| 800 | /* |
Trond Myklebust | ac20d16 | 2012-12-15 15:36:07 -0500 | [diff] [blame] | 801 | * Was the last operation on this sequence interrupted? |
| 802 | * If so, retry after bumping the sequence number. |
| 803 | */ |
| 804 | if (interrupted) { |
| 805 | ++slot->seq_nr; |
| 806 | goto retry_nowait; |
| 807 | } |
| 808 | /* |
Trond Myklebust | e879444 | 2012-12-15 13:56:18 -0500 | [diff] [blame] | 809 | * Could this slot have been previously retired? |
| 810 | * If so, then the server may be expecting seq_nr = 1! |
| 811 | */ |
Trond Myklebust | 8e63b6a | 2012-12-15 15:21:52 -0500 | [diff] [blame] | 812 | if (slot->seq_nr != 1) { |
| 813 | slot->seq_nr = 1; |
| 814 | goto retry_nowait; |
| 815 | } |
| 816 | break; |
Trond Myklebust | e879444 | 2012-12-15 13:56:18 -0500 | [diff] [blame] | 817 | case -NFS4ERR_SEQ_FALSE_RETRY: |
| 818 | ++slot->seq_nr; |
| 819 | goto retry_nowait; |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 820 | default: |
| 821 | /* Just update the slot sequence no. */ |
Trond Myklebust | 07e8dcb | 2016-08-28 10:28:25 -0400 | [diff] [blame] | 822 | slot->seq_done = 1; |
Andy Adamson | b0df806 | 2009-04-01 09:22:18 -0400 | [diff] [blame] | 823 | } |
| 824 | out: |
| 825 | /* The session may be reset by one of the error handlers. */ |
| 826 | dprintk("%s: Error %d free the slot \n", __func__, res->sr_status); |
Trond Myklebust | a13ce7c | 2014-01-29 12:24:03 -0500 | [diff] [blame] | 827 | out_noaction: |
Trond Myklebust | 8556307 | 2012-12-11 10:31:12 -0500 | [diff] [blame] | 828 | return ret; |
Trond Myklebust | e879444 | 2012-12-15 13:56:18 -0500 | [diff] [blame] | 829 | retry_nowait: |
| 830 | if (rpc_restart_call_prepare(task)) { |
Trond Myklebust | 2e80dbe | 2016-08-28 11:50:26 -0400 | [diff] [blame] | 831 | nfs41_sequence_free_slot(res); |
Trond Myklebust | e879444 | 2012-12-15 13:56:18 -0500 | [diff] [blame] | 832 | task->tk_status = 0; |
| 833 | ret = 0; |
| 834 | } |
| 835 | goto out; |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 836 | out_retry: |
Trond Myklebust | d05dd4e | 2010-07-31 14:29:07 -0400 | [diff] [blame] | 837 | if (!rpc_restart_call(task)) |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 838 | goto out; |
| 839 | rpc_delay(task, NFS4_POLL_RETRY_MAX); |
| 840 | return 0; |
Andy Adamson | b0df806 | 2009-04-01 09:22:18 -0400 | [diff] [blame] | 841 | } |
Trond Myklebust | 2e80dbe | 2016-08-28 11:50:26 -0400 | [diff] [blame] | 842 | |
| 843 | int nfs41_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res) |
| 844 | { |
| 845 | if (!nfs41_sequence_process(task, res)) |
| 846 | return 0; |
| 847 | if (res->sr_slot != NULL) |
| 848 | nfs41_sequence_free_slot(res); |
| 849 | return 1; |
| 850 | |
| 851 | } |
Andy Adamson | f9c96fc | 2014-01-29 11:34:38 -0500 | [diff] [blame] | 852 | EXPORT_SYMBOL_GPL(nfs41_sequence_done); |
Andy Adamson | b0df806 | 2009-04-01 09:22:18 -0400 | [diff] [blame] | 853 | |
Trond Myklebust | 2e80dbe | 2016-08-28 11:50:26 -0400 | [diff] [blame] | 854 | static int nfs4_sequence_process(struct rpc_task *task, struct nfs4_sequence_res *res) |
| 855 | { |
| 856 | if (res->sr_slot == NULL) |
| 857 | return 1; |
| 858 | if (res->sr_slot->table->session != NULL) |
| 859 | return nfs41_sequence_process(task, res); |
| 860 | return nfs40_sequence_done(task, res); |
| 861 | } |
| 862 | |
| 863 | static void nfs4_sequence_free_slot(struct nfs4_sequence_res *res) |
| 864 | { |
| 865 | if (res->sr_slot != NULL) { |
| 866 | if (res->sr_slot->table->session != NULL) |
| 867 | nfs41_sequence_free_slot(res); |
| 868 | else |
| 869 | nfs40_sequence_free_slot(res); |
| 870 | } |
| 871 | } |
| 872 | |
Peng Tao | 2c4b131 | 2014-06-11 05:24:16 +0800 | [diff] [blame] | 873 | int nfs4_sequence_done(struct rpc_task *task, struct nfs4_sequence_res *res) |
Trond Myklebust | df89645 | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 874 | { |
Trond Myklebust | e3725ec | 2012-11-16 12:25:01 -0500 | [diff] [blame] | 875 | if (res->sr_slot == NULL) |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 876 | return 1; |
Chuck Lever | 3bd2384 | 2013-08-09 12:49:19 -0400 | [diff] [blame] | 877 | if (!res->sr_slot->table->session) |
| 878 | return nfs40_sequence_done(task, res); |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 879 | return nfs41_sequence_done(task, res); |
Trond Myklebust | df89645 | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 880 | } |
Peng Tao | 2c4b131 | 2014-06-11 05:24:16 +0800 | [diff] [blame] | 881 | EXPORT_SYMBOL_GPL(nfs4_sequence_done); |
Trond Myklebust | df89645 | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 882 | |
Andy Adamson | dc70d7b | 2011-03-01 01:34:19 +0000 | [diff] [blame] | 883 | int nfs41_setup_sequence(struct nfs4_session *session, |
Andy Adamson | ce5039c | 2009-04-01 09:22:13 -0400 | [diff] [blame] | 884 | struct nfs4_sequence_args *args, |
| 885 | struct nfs4_sequence_res *res, |
Andy Adamson | ce5039c | 2009-04-01 09:22:13 -0400 | [diff] [blame] | 886 | struct rpc_task *task) |
| 887 | { |
Andy Adamson | fbcd4ab | 2009-04-01 09:22:15 -0400 | [diff] [blame] | 888 | struct nfs4_slot *slot; |
| 889 | struct nfs4_slot_table *tbl; |
Andy Adamson | fbcd4ab | 2009-04-01 09:22:15 -0400 | [diff] [blame] | 890 | |
| 891 | dprintk("--> %s\n", __func__); |
Andy Adamson | ce5039c | 2009-04-01 09:22:13 -0400 | [diff] [blame] | 892 | /* slot already allocated? */ |
Benny Halevy | dfb4f309 | 2010-09-24 09:17:01 -0400 | [diff] [blame] | 893 | if (res->sr_slot != NULL) |
Trond Myklebust | d9afbd1 | 2012-10-22 20:28:44 -0400 | [diff] [blame] | 894 | goto out_success; |
Andy Adamson | ce5039c | 2009-04-01 09:22:13 -0400 | [diff] [blame] | 895 | |
Andy Adamson | fbcd4ab | 2009-04-01 09:22:15 -0400 | [diff] [blame] | 896 | tbl = &session->fc_slot_table; |
| 897 | |
Trond Myklebust | 69d206b | 2012-11-22 13:21:02 -0500 | [diff] [blame] | 898 | task->tk_timeout = 0; |
| 899 | |
Andy Adamson | fbcd4ab | 2009-04-01 09:22:15 -0400 | [diff] [blame] | 900 | spin_lock(&tbl->slot_tbl_lock); |
Andy Adamson | 774d5f1 | 2013-05-20 14:13:50 -0400 | [diff] [blame] | 901 | if (test_bit(NFS4_SLOT_TBL_DRAINING, &tbl->slot_tbl_state) && |
Trond Myklebust | 8fe72ba | 2012-10-29 19:02:20 -0400 | [diff] [blame] | 902 | !args->sa_privileged) { |
Andy Adamson | 0b1c8fc | 2011-11-09 13:58:26 -0500 | [diff] [blame] | 903 | /* The state manager will wait until the slot table is empty */ |
Andy Adamson | 0b1c8fc | 2011-11-09 13:58:26 -0500 | [diff] [blame] | 904 | dprintk("%s session is draining\n", __func__); |
Trond Myklebust | 7b939a3 | 2012-11-01 15:19:46 -0400 | [diff] [blame] | 905 | goto out_sleep; |
Andy Adamson | b069d94 | 2009-04-01 09:22:43 -0400 | [diff] [blame] | 906 | } |
| 907 | |
Trond Myklebust | 2dc03b7 | 2012-11-16 16:10:11 -0500 | [diff] [blame] | 908 | slot = nfs4_alloc_slot(tbl); |
Trond Myklebust | 69d206b | 2012-11-22 13:21:02 -0500 | [diff] [blame] | 909 | if (IS_ERR(slot)) { |
| 910 | /* If out of memory, try again in 1/4 second */ |
| 911 | if (slot == ERR_PTR(-ENOMEM)) |
| 912 | task->tk_timeout = HZ >> 2; |
Andy Adamson | fbcd4ab | 2009-04-01 09:22:15 -0400 | [diff] [blame] | 913 | dprintk("<-- %s: no free slots\n", __func__); |
Trond Myklebust | 7b939a3 | 2012-11-01 15:19:46 -0400 | [diff] [blame] | 914 | goto out_sleep; |
Andy Adamson | fbcd4ab | 2009-04-01 09:22:15 -0400 | [diff] [blame] | 915 | } |
| 916 | spin_unlock(&tbl->slot_tbl_lock); |
| 917 | |
Trond Myklebust | 0a014a4 | 2016-09-22 13:38:51 -0400 | [diff] [blame] | 918 | slot->privileged = args->sa_privileged ? 1 : 0; |
Trond Myklebust | 2b2fa71 | 2012-11-16 12:58:36 -0500 | [diff] [blame] | 919 | args->sa_slot = slot; |
Andy Adamson | fbcd4ab | 2009-04-01 09:22:15 -0400 | [diff] [blame] | 920 | |
Chuck Lever | e8d9238 | 2013-08-09 12:47:51 -0400 | [diff] [blame] | 921 | dprintk("<-- %s slotid=%u seqid=%u\n", __func__, |
Trond Myklebust | 2dc03b7 | 2012-11-16 16:10:11 -0500 | [diff] [blame] | 922 | slot->slot_nr, slot->seq_nr); |
Andy Adamson | fbcd4ab | 2009-04-01 09:22:15 -0400 | [diff] [blame] | 923 | |
Benny Halevy | dfb4f309 | 2010-09-24 09:17:01 -0400 | [diff] [blame] | 924 | res->sr_slot = slot; |
Trond Myklebust | 8e63b6a | 2012-12-15 15:21:52 -0500 | [diff] [blame] | 925 | res->sr_timestamp = jiffies; |
Trond Myklebust | 2a6e26c | 2010-06-16 09:52:25 -0400 | [diff] [blame] | 926 | res->sr_status_flags = 0; |
Andy Adamson | fbcd4ab | 2009-04-01 09:22:15 -0400 | [diff] [blame] | 927 | /* |
| 928 | * sr_status is only set in decode_sequence, and so will remain |
| 929 | * set to 1 if an rpc level failure occurs. |
| 930 | */ |
| 931 | res->sr_status = 1; |
Trond Myklebust | 2f92ae3 | 2013-08-14 17:58:28 -0400 | [diff] [blame] | 932 | trace_nfs4_setup_sequence(session, args); |
Trond Myklebust | d9afbd1 | 2012-10-22 20:28:44 -0400 | [diff] [blame] | 933 | out_success: |
| 934 | rpc_call_start(task); |
Andy Adamson | ce5039c | 2009-04-01 09:22:13 -0400 | [diff] [blame] | 935 | return 0; |
Trond Myklebust | 7b939a3 | 2012-11-01 15:19:46 -0400 | [diff] [blame] | 936 | out_sleep: |
Trond Myklebust | 8fe72ba | 2012-10-29 19:02:20 -0400 | [diff] [blame] | 937 | /* Privileged tasks are queued with top priority */ |
| 938 | if (args->sa_privileged) |
Trond Myklebust | 1e1093c | 2012-11-01 16:44:05 -0400 | [diff] [blame] | 939 | rpc_sleep_on_priority(&tbl->slot_tbl_waitq, task, |
| 940 | NULL, RPC_PRIORITY_PRIVILEGED); |
| 941 | else |
| 942 | rpc_sleep_on(&tbl->slot_tbl_waitq, task, NULL); |
Trond Myklebust | 7b939a3 | 2012-11-01 15:19:46 -0400 | [diff] [blame] | 943 | spin_unlock(&tbl->slot_tbl_lock); |
| 944 | return -EAGAIN; |
Andy Adamson | ce5039c | 2009-04-01 09:22:13 -0400 | [diff] [blame] | 945 | } |
Andy Adamson | dc70d7b | 2011-03-01 01:34:19 +0000 | [diff] [blame] | 946 | EXPORT_SYMBOL_GPL(nfs41_setup_sequence); |
Andy Adamson | ce5039c | 2009-04-01 09:22:13 -0400 | [diff] [blame] | 947 | |
Chuck Lever | 5a580e0 | 2013-08-09 12:48:09 -0400 | [diff] [blame] | 948 | static int nfs4_setup_sequence(const struct nfs_server *server, |
| 949 | struct nfs4_sequence_args *args, |
| 950 | struct nfs4_sequence_res *res, |
| 951 | struct rpc_task *task) |
Andy Adamson | ce5039c | 2009-04-01 09:22:13 -0400 | [diff] [blame] | 952 | { |
Trond Myklebust | 035168a | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 953 | struct nfs4_session *session = nfs4_get_session(server); |
Andy Adamson | ce5039c | 2009-04-01 09:22:13 -0400 | [diff] [blame] | 954 | int ret = 0; |
| 955 | |
Chuck Lever | 3bd2384 | 2013-08-09 12:49:19 -0400 | [diff] [blame] | 956 | if (!session) |
Peng Tao | cb04ad2 | 2014-06-11 05:24:15 +0800 | [diff] [blame] | 957 | return nfs40_setup_sequence(server->nfs_client->cl_slot_tbl, |
| 958 | args, res, task); |
Trond Myklebust | 035168a | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 959 | |
Chuck Lever | e8d9238 | 2013-08-09 12:47:51 -0400 | [diff] [blame] | 960 | dprintk("--> %s clp %p session %p sr_slot %u\n", |
Benny Halevy | dfb4f309 | 2010-09-24 09:17:01 -0400 | [diff] [blame] | 961 | __func__, session->clp, session, res->sr_slot ? |
Chuck Lever | e8d9238 | 2013-08-09 12:47:51 -0400 | [diff] [blame] | 962 | res->sr_slot->slot_nr : NFS4_NO_SLOT); |
Trond Myklebust | 035168a | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 963 | |
Trond Myklebust | 9d12b21 | 2012-01-17 22:04:25 -0500 | [diff] [blame] | 964 | ret = nfs41_setup_sequence(session, args, res, task); |
Chuck Lever | 3bd2384 | 2013-08-09 12:49:19 -0400 | [diff] [blame] | 965 | |
Andy Adamson | ce5039c | 2009-04-01 09:22:13 -0400 | [diff] [blame] | 966 | dprintk("<-- %s status=%d\n", __func__, ret); |
| 967 | return ret; |
| 968 | } |
| 969 | |
Andy Adamson | ce5039c | 2009-04-01 09:22:13 -0400 | [diff] [blame] | 970 | static void nfs41_call_sync_prepare(struct rpc_task *task, void *calldata) |
| 971 | { |
Chuck Lever | 2a3eb2b | 2013-08-09 12:48:00 -0400 | [diff] [blame] | 972 | struct nfs4_call_sync_data *data = calldata; |
Trond Myklebust | 6ba7db3 | 2012-10-22 20:07:20 -0400 | [diff] [blame] | 973 | struct nfs4_session *session = nfs4_get_session(data->seq_server); |
Andy Adamson | ce5039c | 2009-04-01 09:22:13 -0400 | [diff] [blame] | 974 | |
Trond Myklebust | 035168a | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 975 | dprintk("--> %s data->seq_server %p\n", __func__, data->seq_server); |
| 976 | |
Trond Myklebust | d9afbd1 | 2012-10-22 20:28:44 -0400 | [diff] [blame] | 977 | nfs41_setup_sequence(session, data->seq_args, data->seq_res, task); |
Andy Adamson | ce5039c | 2009-04-01 09:22:13 -0400 | [diff] [blame] | 978 | } |
| 979 | |
Andy Adamson | 69ab40c | 2009-04-01 09:22:19 -0400 | [diff] [blame] | 980 | static void nfs41_call_sync_done(struct rpc_task *task, void *calldata) |
| 981 | { |
Chuck Lever | 2a3eb2b | 2013-08-09 12:48:00 -0400 | [diff] [blame] | 982 | struct nfs4_call_sync_data *data = calldata; |
Andy Adamson | 69ab40c | 2009-04-01 09:22:19 -0400 | [diff] [blame] | 983 | |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 984 | nfs41_sequence_done(task, data->seq_res); |
Andy Adamson | 69ab40c | 2009-04-01 09:22:19 -0400 | [diff] [blame] | 985 | } |
| 986 | |
Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame] | 987 | static const struct rpc_call_ops nfs41_call_sync_ops = { |
Andy Adamson | ce5039c | 2009-04-01 09:22:13 -0400 | [diff] [blame] | 988 | .rpc_call_prepare = nfs41_call_sync_prepare, |
Andy Adamson | 69ab40c | 2009-04-01 09:22:19 -0400 | [diff] [blame] | 989 | .rpc_call_done = nfs41_call_sync_done, |
Andy Adamson | ce5039c | 2009-04-01 09:22:13 -0400 | [diff] [blame] | 990 | }; |
| 991 | |
Chuck Lever | 3bd2384 | 2013-08-09 12:49:19 -0400 | [diff] [blame] | 992 | #else /* !CONFIG_NFS_V4_1 */ |
| 993 | |
Chuck Lever | 5a580e0 | 2013-08-09 12:48:09 -0400 | [diff] [blame] | 994 | static int nfs4_setup_sequence(const struct nfs_server *server, |
| 995 | struct nfs4_sequence_args *args, |
| 996 | struct nfs4_sequence_res *res, |
| 997 | struct rpc_task *task) |
| 998 | { |
Peng Tao | cb04ad2 | 2014-06-11 05:24:15 +0800 | [diff] [blame] | 999 | return nfs40_setup_sequence(server->nfs_client->cl_slot_tbl, |
| 1000 | args, res, task); |
Chuck Lever | 5a580e0 | 2013-08-09 12:48:09 -0400 | [diff] [blame] | 1001 | } |
Trond Myklebust | 8fe72ba | 2012-10-29 19:02:20 -0400 | [diff] [blame] | 1002 | |
Trond Myklebust | 2e80dbe | 2016-08-28 11:50:26 -0400 | [diff] [blame] | 1003 | static int nfs4_sequence_process(struct rpc_task *task, struct nfs4_sequence_res *res) |
| 1004 | { |
| 1005 | return nfs40_sequence_done(task, res); |
| 1006 | } |
| 1007 | |
| 1008 | static void nfs4_sequence_free_slot(struct nfs4_sequence_res *res) |
| 1009 | { |
| 1010 | if (res->sr_slot != NULL) |
| 1011 | nfs40_sequence_free_slot(res); |
| 1012 | } |
| 1013 | |
Peng Tao | 2c4b131 | 2014-06-11 05:24:16 +0800 | [diff] [blame] | 1014 | int nfs4_sequence_done(struct rpc_task *task, |
| 1015 | struct nfs4_sequence_res *res) |
Trond Myklebust | df89645 | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 1016 | { |
Chuck Lever | 3bd2384 | 2013-08-09 12:49:19 -0400 | [diff] [blame] | 1017 | return nfs40_sequence_done(task, res); |
Trond Myklebust | df89645 | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 1018 | } |
Peng Tao | 2c4b131 | 2014-06-11 05:24:16 +0800 | [diff] [blame] | 1019 | EXPORT_SYMBOL_GPL(nfs4_sequence_done); |
Chuck Lever | 3bd2384 | 2013-08-09 12:49:19 -0400 | [diff] [blame] | 1020 | |
| 1021 | #endif /* !CONFIG_NFS_V4_1 */ |
Andy Adamson | cccef3b | 2009-04-01 09:22:03 -0400 | [diff] [blame] | 1022 | |
Chuck Lever | 9915ea7 | 2013-08-09 12:48:27 -0400 | [diff] [blame] | 1023 | static void nfs40_call_sync_prepare(struct rpc_task *task, void *calldata) |
| 1024 | { |
| 1025 | struct nfs4_call_sync_data *data = calldata; |
| 1026 | nfs4_setup_sequence(data->seq_server, |
| 1027 | data->seq_args, data->seq_res, task); |
| 1028 | } |
| 1029 | |
| 1030 | static void nfs40_call_sync_done(struct rpc_task *task, void *calldata) |
| 1031 | { |
| 1032 | struct nfs4_call_sync_data *data = calldata; |
| 1033 | nfs4_sequence_done(task, data->seq_res); |
| 1034 | } |
| 1035 | |
| 1036 | static const struct rpc_call_ops nfs40_call_sync_ops = { |
| 1037 | .rpc_call_prepare = nfs40_call_sync_prepare, |
| 1038 | .rpc_call_done = nfs40_call_sync_done, |
| 1039 | }; |
| 1040 | |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 1041 | static int nfs4_call_sync_sequence(struct rpc_clnt *clnt, |
Trond Myklebust | ad389da | 2007-06-05 12:30:00 -0400 | [diff] [blame] | 1042 | struct nfs_server *server, |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1043 | struct rpc_message *msg, |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1044 | struct nfs4_sequence_args *args, |
| 1045 | struct nfs4_sequence_res *res) |
Trond Myklebust | ad389da | 2007-06-05 12:30:00 -0400 | [diff] [blame] | 1046 | { |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1047 | int ret; |
| 1048 | struct rpc_task *task; |
Chuck Lever | 9915ea7 | 2013-08-09 12:48:27 -0400 | [diff] [blame] | 1049 | struct nfs_client *clp = server->nfs_client; |
| 1050 | struct nfs4_call_sync_data data = { |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1051 | .seq_server = server, |
| 1052 | .seq_args = args, |
| 1053 | .seq_res = res, |
| 1054 | }; |
| 1055 | struct rpc_task_setup task_setup = { |
| 1056 | .rpc_client = clnt, |
| 1057 | .rpc_message = msg, |
Chuck Lever | 9915ea7 | 2013-08-09 12:48:27 -0400 | [diff] [blame] | 1058 | .callback_ops = clp->cl_mvops->call_sync_ops, |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1059 | .callback_data = &data |
| 1060 | }; |
| 1061 | |
| 1062 | task = rpc_run_task(&task_setup); |
| 1063 | if (IS_ERR(task)) |
| 1064 | ret = PTR_ERR(task); |
| 1065 | else { |
| 1066 | ret = task->tk_status; |
Trond Myklebust | ad389da | 2007-06-05 12:30:00 -0400 | [diff] [blame] | 1067 | rpc_put_task(task); |
| 1068 | } |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1069 | return ret; |
| 1070 | } |
| 1071 | |
Bryan Schumaker | 7c51305 | 2011-03-24 17:12:24 +0000 | [diff] [blame] | 1072 | int nfs4_call_sync(struct rpc_clnt *clnt, |
| 1073 | struct nfs_server *server, |
Bryan Schumaker | e73b83f | 2011-03-24 17:12:23 +0000 | [diff] [blame] | 1074 | struct rpc_message *msg, |
| 1075 | struct nfs4_sequence_args *args, |
| 1076 | struct nfs4_sequence_res *res, |
| 1077 | int cache_reply) |
| 1078 | { |
Chuck Lever | a9c92d6 | 2013-08-09 12:48:18 -0400 | [diff] [blame] | 1079 | nfs4_init_sequence(args, res, cache_reply); |
Chuck Lever | 9915ea7 | 2013-08-09 12:48:27 -0400 | [diff] [blame] | 1080 | return nfs4_call_sync_sequence(clnt, server, msg, args, res); |
Bryan Schumaker | e73b83f | 2011-03-24 17:12:23 +0000 | [diff] [blame] | 1081 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | |
| 1083 | static void update_changeattr(struct inode *dir, struct nfs4_change_info *cinfo) |
| 1084 | { |
| 1085 | struct nfs_inode *nfsi = NFS_I(dir); |
| 1086 | |
| 1087 | spin_lock(&dir->i_lock); |
Trond Myklebust | 359d7d1 | 2012-05-28 10:01:34 -0400 | [diff] [blame] | 1088 | nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA; |
Trond Myklebust | a9a4a87 | 2011-10-17 16:08:46 -0700 | [diff] [blame] | 1089 | if (!cinfo->atomic || cinfo->before != dir->i_version) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | nfs_force_lookup_revalidate(dir); |
Trond Myklebust | a9a4a87 | 2011-10-17 16:08:46 -0700 | [diff] [blame] | 1091 | dir->i_version = cinfo->after; |
Trond Myklebust | 3235b40 | 2015-02-26 19:52:06 -0500 | [diff] [blame] | 1092 | nfsi->attr_gencount = nfs_inc_attr_generation_counter(); |
David Howells | de242c0 | 2012-12-20 21:52:38 +0000 | [diff] [blame] | 1093 | nfs_fscache_invalidate(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | spin_unlock(&dir->i_lock); |
| 1095 | } |
| 1096 | |
| 1097 | struct nfs4_opendata { |
| 1098 | struct kref kref; |
| 1099 | struct nfs_openargs o_arg; |
| 1100 | struct nfs_openres o_res; |
| 1101 | struct nfs_open_confirmargs c_arg; |
| 1102 | struct nfs_open_confirmres c_res; |
Trond Myklebust | 6926afd | 2012-01-07 13:22:46 -0500 | [diff] [blame] | 1103 | struct nfs4_string owner_name; |
| 1104 | struct nfs4_string group_name; |
Kinglong Mee | a49c269 | 2015-07-27 15:31:38 +0800 | [diff] [blame] | 1105 | struct nfs4_label *a_label; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | struct nfs_fattr f_attr; |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 1107 | struct nfs4_label *f_label; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | struct dentry *dir; |
Al Viro | 82a2c1b | 2011-06-22 18:30:55 -0400 | [diff] [blame] | 1109 | struct dentry *dentry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | struct nfs4_state_owner *owner; |
| 1111 | struct nfs4_state *state; |
| 1112 | struct iattr attrs; |
| 1113 | unsigned long timestamp; |
Trond Myklebust | decf491 | 2005-10-27 22:12:39 -0400 | [diff] [blame] | 1114 | unsigned int rpc_done : 1; |
Trond Myklebust | 5bc2afc | 2013-09-23 18:01:28 -0400 | [diff] [blame] | 1115 | unsigned int file_created : 1; |
Trond Myklebust | bdeca1b | 2013-04-23 14:52:44 -0400 | [diff] [blame] | 1116 | unsigned int is_recover : 1; |
Trond Myklebust | decf491 | 2005-10-27 22:12:39 -0400 | [diff] [blame] | 1117 | int rpc_status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1118 | int cancelled; |
| 1119 | }; |
Trond Myklebust | decf491 | 2005-10-27 22:12:39 -0400 | [diff] [blame] | 1120 | |
Trond Myklebust | 49f9a0f | 2013-03-15 16:44:28 -0400 | [diff] [blame] | 1121 | static bool nfs4_clear_cap_atomic_open_v1(struct nfs_server *server, |
| 1122 | int err, struct nfs4_exception *exception) |
| 1123 | { |
| 1124 | if (err != -EINVAL) |
| 1125 | return false; |
| 1126 | if (!(server->caps & NFS_CAP_ATOMIC_OPEN_V1)) |
| 1127 | return false; |
| 1128 | server->caps &= ~NFS_CAP_ATOMIC_OPEN_V1; |
| 1129 | exception->retry = 1; |
| 1130 | return true; |
| 1131 | } |
| 1132 | |
Trond Myklebust | 6ae3733 | 2015-01-30 14:21:14 -0500 | [diff] [blame] | 1133 | static u32 |
| 1134 | nfs4_map_atomic_open_share(struct nfs_server *server, |
| 1135 | fmode_t fmode, int openflags) |
| 1136 | { |
| 1137 | u32 res = 0; |
| 1138 | |
| 1139 | switch (fmode & (FMODE_READ | FMODE_WRITE)) { |
| 1140 | case FMODE_READ: |
| 1141 | res = NFS4_SHARE_ACCESS_READ; |
| 1142 | break; |
| 1143 | case FMODE_WRITE: |
| 1144 | res = NFS4_SHARE_ACCESS_WRITE; |
| 1145 | break; |
| 1146 | case FMODE_READ|FMODE_WRITE: |
| 1147 | res = NFS4_SHARE_ACCESS_BOTH; |
| 1148 | } |
| 1149 | if (!(server->caps & NFS_CAP_ATOMIC_OPEN_V1)) |
| 1150 | goto out; |
| 1151 | /* Want no delegation if we're using O_DIRECT */ |
| 1152 | if (openflags & O_DIRECT) |
| 1153 | res |= NFS4_SHARE_WANT_NO_DELEG; |
| 1154 | out: |
| 1155 | return res; |
| 1156 | } |
| 1157 | |
Trond Myklebust | 49f9a0f | 2013-03-15 16:44:28 -0400 | [diff] [blame] | 1158 | static enum open_claim_type4 |
| 1159 | nfs4_map_atomic_open_claim(struct nfs_server *server, |
| 1160 | enum open_claim_type4 claim) |
| 1161 | { |
| 1162 | if (server->caps & NFS_CAP_ATOMIC_OPEN_V1) |
| 1163 | return claim; |
| 1164 | switch (claim) { |
| 1165 | default: |
| 1166 | return claim; |
| 1167 | case NFS4_OPEN_CLAIM_FH: |
| 1168 | return NFS4_OPEN_CLAIM_NULL; |
| 1169 | case NFS4_OPEN_CLAIM_DELEG_CUR_FH: |
| 1170 | return NFS4_OPEN_CLAIM_DELEGATE_CUR; |
| 1171 | case NFS4_OPEN_CLAIM_DELEG_PREV_FH: |
| 1172 | return NFS4_OPEN_CLAIM_DELEGATE_PREV; |
| 1173 | } |
| 1174 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | |
| 1176 | static void nfs4_init_opendata_res(struct nfs4_opendata *p) |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1177 | { |
| 1178 | p->o_res.f_attr = &p->f_attr; |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 1179 | p->o_res.f_label = p->f_label; |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1180 | p->o_res.seqid = p->o_arg.seqid; |
| 1181 | p->c_res.seqid = p->c_arg.seqid; |
| 1182 | p->o_res.server = p->o_arg.server; |
Andy Adamson | 5f65753 | 2012-10-03 02:39:34 -0400 | [diff] [blame] | 1183 | p->o_res.access_request = p->o_arg.access; |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1184 | nfs_fattr_init(&p->f_attr); |
Trond Myklebust | 6926afd | 2012-01-07 13:22:46 -0500 | [diff] [blame] | 1185 | nfs_fattr_init_names(&p->f_attr, &p->owner_name, &p->group_name); |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1186 | } |
| 1187 | |
Al Viro | 82a2c1b | 2011-06-22 18:30:55 -0400 | [diff] [blame] | 1188 | static struct nfs4_opendata *nfs4_opendata_alloc(struct dentry *dentry, |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1189 | struct nfs4_state_owner *sp, fmode_t fmode, int flags, |
Trond Myklebust | 8535b2b | 2010-05-13 12:51:01 -0400 | [diff] [blame] | 1190 | const struct iattr *attrs, |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 1191 | struct nfs4_label *label, |
Trond Myklebust | 4a1c089 | 2013-03-15 14:57:33 -0400 | [diff] [blame] | 1192 | enum open_claim_type4 claim, |
Trond Myklebust | 8535b2b | 2010-05-13 12:51:01 -0400 | [diff] [blame] | 1193 | gfp_t gfp_mask) |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1194 | { |
Al Viro | 82a2c1b | 2011-06-22 18:30:55 -0400 | [diff] [blame] | 1195 | struct dentry *parent = dget_parent(dentry); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1196 | struct inode *dir = d_inode(parent); |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1197 | struct nfs_server *server = NFS_SERVER(dir); |
Trond Myklebust | 63f5f79 | 2015-01-23 19:19:25 -0500 | [diff] [blame] | 1198 | struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t); |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1199 | struct nfs4_opendata *p; |
| 1200 | |
Trond Myklebust | 8535b2b | 2010-05-13 12:51:01 -0400 | [diff] [blame] | 1201 | p = kzalloc(sizeof(*p), gfp_mask); |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1202 | if (p == NULL) |
| 1203 | goto err; |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 1204 | |
| 1205 | p->f_label = nfs4_label_alloc(server, gfp_mask); |
| 1206 | if (IS_ERR(p->f_label)) |
| 1207 | goto err_free_p; |
| 1208 | |
Kinglong Mee | a49c269 | 2015-07-27 15:31:38 +0800 | [diff] [blame] | 1209 | p->a_label = nfs4_label_alloc(server, gfp_mask); |
| 1210 | if (IS_ERR(p->a_label)) |
| 1211 | goto err_free_f; |
| 1212 | |
Trond Myklebust | 63f5f79 | 2015-01-23 19:19:25 -0500 | [diff] [blame] | 1213 | alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid; |
| 1214 | p->o_arg.seqid = alloc_seqid(&sp->so_seqid, gfp_mask); |
Trond Myklebust | badc76d | 2015-01-23 18:48:00 -0500 | [diff] [blame] | 1215 | if (IS_ERR(p->o_arg.seqid)) |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 1216 | goto err_free_label; |
Al Viro | 82a2c1b | 2011-06-22 18:30:55 -0400 | [diff] [blame] | 1217 | nfs_sb_active(dentry->d_sb); |
| 1218 | p->dentry = dget(dentry); |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1219 | p->dir = parent; |
| 1220 | p->owner = sp; |
| 1221 | atomic_inc(&sp->so_count); |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1222 | p->o_arg.open_flags = flags; |
| 1223 | p->o_arg.fmode = fmode & (FMODE_READ|FMODE_WRITE); |
Trond Myklebust | 6ae3733 | 2015-01-30 14:21:14 -0500 | [diff] [blame] | 1224 | p->o_arg.share_access = nfs4_map_atomic_open_share(server, |
| 1225 | fmode, flags); |
Weston Andros Adamson | ae2bb03 | 2012-10-02 14:49:52 -0700 | [diff] [blame] | 1226 | /* don't put an ACCESS op in OPEN compound if O_EXCL, because ACCESS |
| 1227 | * will return permission denied for all bits until close */ |
| 1228 | if (!(flags & O_EXCL)) { |
| 1229 | /* ask server to check for all possible rights as results |
| 1230 | * are cached */ |
| 1231 | p->o_arg.access = NFS4_ACCESS_READ | NFS4_ACCESS_MODIFY | |
| 1232 | NFS4_ACCESS_EXTEND | NFS4_ACCESS_EXECUTE; |
Weston Andros Adamson | ae2bb03 | 2012-10-02 14:49:52 -0700 | [diff] [blame] | 1233 | } |
David Howells | 7539bba | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 1234 | p->o_arg.clientid = server->nfs_client->cl_clientid; |
Trond Myklebust | 95b72eb | 2012-04-20 19:24:51 -0400 | [diff] [blame] | 1235 | p->o_arg.id.create_time = ktime_to_ns(sp->so_seqid.create_time); |
| 1236 | p->o_arg.id.uniquifier = sp->so_seqid.owner_id; |
Al Viro | 82a2c1b | 2011-06-22 18:30:55 -0400 | [diff] [blame] | 1237 | p->o_arg.name = &dentry->d_name; |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1238 | p->o_arg.server = server; |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 1239 | p->o_arg.bitmask = nfs4_bitmask(server, label); |
Trond Myklebust | 1549210f | 2012-06-05 09:16:47 -0400 | [diff] [blame] | 1240 | p->o_arg.open_bitmap = &nfs4_fattr_bitmap[0]; |
Kinglong Mee | a49c269 | 2015-07-27 15:31:38 +0800 | [diff] [blame] | 1241 | p->o_arg.label = nfs4_label_copy(p->a_label, label); |
Trond Myklebust | 49f9a0f | 2013-03-15 16:44:28 -0400 | [diff] [blame] | 1242 | p->o_arg.claim = nfs4_map_atomic_open_claim(server, claim); |
| 1243 | switch (p->o_arg.claim) { |
Trond Myklebust | 4a1c089 | 2013-03-15 14:57:33 -0400 | [diff] [blame] | 1244 | case NFS4_OPEN_CLAIM_NULL: |
| 1245 | case NFS4_OPEN_CLAIM_DELEGATE_CUR: |
| 1246 | case NFS4_OPEN_CLAIM_DELEGATE_PREV: |
| 1247 | p->o_arg.fh = NFS_FH(dir); |
| 1248 | break; |
| 1249 | case NFS4_OPEN_CLAIM_PREVIOUS: |
| 1250 | case NFS4_OPEN_CLAIM_FH: |
| 1251 | case NFS4_OPEN_CLAIM_DELEG_CUR_FH: |
| 1252 | case NFS4_OPEN_CLAIM_DELEG_PREV_FH: |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1253 | p->o_arg.fh = NFS_FH(d_inode(dentry)); |
Trond Myklebust | 4a1c089 | 2013-03-15 14:57:33 -0400 | [diff] [blame] | 1254 | } |
Trond Myklebust | 536e43d | 2012-01-17 22:04:26 -0500 | [diff] [blame] | 1255 | if (attrs != NULL && attrs->ia_valid != 0) { |
Trond Myklebust | c281fa9c | 2013-08-20 21:06:49 -0400 | [diff] [blame] | 1256 | __u32 verf[2]; |
Trond Myklebust | d77d76f | 2010-06-16 09:52:27 -0400 | [diff] [blame] | 1257 | |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1258 | p->o_arg.u.attrs = &p->attrs; |
| 1259 | memcpy(&p->attrs, attrs, sizeof(p->attrs)); |
Chuck Lever | cd93710 | 2012-03-02 17:14:31 -0500 | [diff] [blame] | 1260 | |
| 1261 | verf[0] = jiffies; |
| 1262 | verf[1] = current->pid; |
| 1263 | memcpy(p->o_arg.u.verifier.data, verf, |
| 1264 | sizeof(p->o_arg.u.verifier.data)); |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1265 | } |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 1266 | p->c_arg.fh = &p->o_res.fh; |
| 1267 | p->c_arg.stateid = &p->o_res.stateid; |
| 1268 | p->c_arg.seqid = p->o_arg.seqid; |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 1269 | nfs4_init_opendata_res(p); |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 1270 | kref_init(&p->kref); |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1271 | return p; |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 1272 | |
| 1273 | err_free_label: |
Kinglong Mee | a49c269 | 2015-07-27 15:31:38 +0800 | [diff] [blame] | 1274 | nfs4_label_free(p->a_label); |
| 1275 | err_free_f: |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 1276 | nfs4_label_free(p->f_label); |
| 1277 | err_free_p: |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1278 | kfree(p); |
| 1279 | err: |
| 1280 | dput(parent); |
| 1281 | return NULL; |
| 1282 | } |
| 1283 | |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 1284 | static void nfs4_opendata_free(struct kref *kref) |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1285 | { |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 1286 | struct nfs4_opendata *p = container_of(kref, |
| 1287 | struct nfs4_opendata, kref); |
Al Viro | 82a2c1b | 2011-06-22 18:30:55 -0400 | [diff] [blame] | 1288 | struct super_block *sb = p->dentry->d_sb; |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 1289 | |
| 1290 | nfs_free_seqid(p->o_arg.seqid); |
Trond Myklebust | 2e80dbe | 2016-08-28 11:50:26 -0400 | [diff] [blame] | 1291 | nfs4_sequence_free_slot(&p->o_res.seq_res); |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1292 | if (p->state != NULL) |
| 1293 | nfs4_put_open_state(p->state); |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 1294 | nfs4_put_state_owner(p->owner); |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 1295 | |
Kinglong Mee | a49c269 | 2015-07-27 15:31:38 +0800 | [diff] [blame] | 1296 | nfs4_label_free(p->a_label); |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 1297 | nfs4_label_free(p->f_label); |
| 1298 | |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 1299 | dput(p->dir); |
Al Viro | 82a2c1b | 2011-06-22 18:30:55 -0400 | [diff] [blame] | 1300 | dput(p->dentry); |
| 1301 | nfs_sb_deactive(sb); |
Trond Myklebust | 6926afd | 2012-01-07 13:22:46 -0500 | [diff] [blame] | 1302 | nfs_fattr_free_names(&p->f_attr); |
Trond Myklebust | e911b81 | 2014-03-26 13:24:37 -0700 | [diff] [blame] | 1303 | kfree(p->f_attr.mdsthreshold); |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 1304 | kfree(p); |
| 1305 | } |
| 1306 | |
| 1307 | static void nfs4_opendata_put(struct nfs4_opendata *p) |
| 1308 | { |
| 1309 | if (p != NULL) |
| 1310 | kref_put(&p->kref, nfs4_opendata_free); |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 1311 | } |
| 1312 | |
Trond Myklebust | 06f814a | 2006-01-03 09:55:07 +0100 | [diff] [blame] | 1313 | static int nfs4_wait_for_completion_rpc_task(struct rpc_task *task) |
| 1314 | { |
Trond Myklebust | 06f814a | 2006-01-03 09:55:07 +0100 | [diff] [blame] | 1315 | int ret; |
| 1316 | |
Trond Myklebust | 06f814a | 2006-01-03 09:55:07 +0100 | [diff] [blame] | 1317 | ret = rpc_wait_for_completion_task(task); |
Trond Myklebust | 06f814a | 2006-01-03 09:55:07 +0100 | [diff] [blame] | 1318 | return ret; |
| 1319 | } |
| 1320 | |
Trond Myklebust | 24311f8 | 2015-09-20 10:50:17 -0400 | [diff] [blame] | 1321 | static bool nfs4_mode_match_open_stateid(struct nfs4_state *state, |
| 1322 | fmode_t fmode) |
| 1323 | { |
| 1324 | switch(fmode & (FMODE_READ|FMODE_WRITE)) { |
| 1325 | case FMODE_READ|FMODE_WRITE: |
| 1326 | return state->n_rdwr != 0; |
| 1327 | case FMODE_WRITE: |
| 1328 | return state->n_wronly != 0; |
| 1329 | case FMODE_READ: |
| 1330 | return state->n_rdonly != 0; |
| 1331 | } |
| 1332 | WARN_ON_ONCE(1); |
| 1333 | return false; |
| 1334 | } |
| 1335 | |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1336 | static int can_open_cached(struct nfs4_state *state, fmode_t mode, int open_mode) |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 1337 | { |
| 1338 | int ret = 0; |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1339 | |
Trond Myklebust | 536e43d | 2012-01-17 22:04:26 -0500 | [diff] [blame] | 1340 | if (open_mode & (O_EXCL|O_TRUNC)) |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1341 | goto out; |
| 1342 | switch (mode & (FMODE_READ|FMODE_WRITE)) { |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 1343 | case FMODE_READ: |
Trond Myklebust | 88069f7 | 2009-12-08 08:33:16 -0500 | [diff] [blame] | 1344 | ret |= test_bit(NFS_O_RDONLY_STATE, &state->flags) != 0 |
| 1345 | && state->n_rdonly != 0; |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 1346 | break; |
| 1347 | case FMODE_WRITE: |
Trond Myklebust | 88069f7 | 2009-12-08 08:33:16 -0500 | [diff] [blame] | 1348 | ret |= test_bit(NFS_O_WRONLY_STATE, &state->flags) != 0 |
| 1349 | && state->n_wronly != 0; |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 1350 | break; |
| 1351 | case FMODE_READ|FMODE_WRITE: |
Trond Myklebust | 88069f7 | 2009-12-08 08:33:16 -0500 | [diff] [blame] | 1352 | ret |= test_bit(NFS_O_RDWR_STATE, &state->flags) != 0 |
| 1353 | && state->n_rdwr != 0; |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 1354 | } |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1355 | out: |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 1356 | return ret; |
| 1357 | } |
| 1358 | |
Trond Myklebust | 2a60618 | 2015-08-19 22:30:00 -0500 | [diff] [blame] | 1359 | static int can_open_delegated(struct nfs_delegation *delegation, fmode_t fmode, |
| 1360 | enum open_claim_type4 claim) |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1361 | { |
Trond Myklebust | 652f89f | 2011-12-09 19:05:58 -0500 | [diff] [blame] | 1362 | if (delegation == NULL) |
| 1363 | return 0; |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1364 | if ((delegation->type & fmode) != fmode) |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1365 | return 0; |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 1366 | if (test_bit(NFS_DELEGATION_RETURNING, &delegation->flags)) |
| 1367 | return 0; |
Trond Myklebust | 2a60618 | 2015-08-19 22:30:00 -0500 | [diff] [blame] | 1368 | switch (claim) { |
| 1369 | case NFS4_OPEN_CLAIM_NULL: |
| 1370 | case NFS4_OPEN_CLAIM_FH: |
| 1371 | break; |
| 1372 | case NFS4_OPEN_CLAIM_PREVIOUS: |
| 1373 | if (!test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags)) |
| 1374 | break; |
| 1375 | default: |
| 1376 | return 0; |
| 1377 | } |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 1378 | nfs_mark_delegation_referenced(delegation); |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1379 | return 1; |
| 1380 | } |
| 1381 | |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1382 | static void update_open_stateflags(struct nfs4_state *state, fmode_t fmode) |
Trond Myklebust | e761692 | 2006-01-03 09:55:13 +0100 | [diff] [blame] | 1383 | { |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1384 | switch (fmode) { |
Trond Myklebust | e761692 | 2006-01-03 09:55:13 +0100 | [diff] [blame] | 1385 | case FMODE_WRITE: |
| 1386 | state->n_wronly++; |
| 1387 | break; |
| 1388 | case FMODE_READ: |
| 1389 | state->n_rdonly++; |
| 1390 | break; |
| 1391 | case FMODE_READ|FMODE_WRITE: |
| 1392 | state->n_rdwr++; |
| 1393 | } |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1394 | nfs4_state_set_mode_locked(state, state->state | fmode); |
Trond Myklebust | e761692 | 2006-01-03 09:55:13 +0100 | [diff] [blame] | 1395 | } |
| 1396 | |
Trond Myklebust | 8a64c4e | 2016-09-22 13:39:21 -0400 | [diff] [blame] | 1397 | #ifdef CONFIG_NFS_V4_1 |
| 1398 | static bool nfs_open_stateid_recover_openmode(struct nfs4_state *state) |
| 1399 | { |
| 1400 | if (state->n_rdonly && !test_bit(NFS_O_RDONLY_STATE, &state->flags)) |
| 1401 | return true; |
| 1402 | if (state->n_wronly && !test_bit(NFS_O_WRONLY_STATE, &state->flags)) |
| 1403 | return true; |
| 1404 | if (state->n_rdwr && !test_bit(NFS_O_RDWR_STATE, &state->flags)) |
| 1405 | return true; |
| 1406 | return false; |
| 1407 | } |
| 1408 | #endif /* CONFIG_NFS_V4_1 */ |
| 1409 | |
Trond Myklebust | 4f14c19 | 2014-02-12 19:15:06 -0500 | [diff] [blame] | 1410 | static void nfs_test_and_clear_all_open_stateid(struct nfs4_state *state) |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 1411 | { |
Trond Myklebust | 4f14c19 | 2014-02-12 19:15:06 -0500 | [diff] [blame] | 1412 | struct nfs_client *clp = state->owner->so_server->nfs_client; |
| 1413 | bool need_recover = false; |
| 1414 | |
| 1415 | if (test_and_clear_bit(NFS_O_RDONLY_STATE, &state->flags) && state->n_rdonly) |
| 1416 | need_recover = true; |
| 1417 | if (test_and_clear_bit(NFS_O_WRONLY_STATE, &state->flags) && state->n_wronly) |
| 1418 | need_recover = true; |
| 1419 | if (test_and_clear_bit(NFS_O_RDWR_STATE, &state->flags) && state->n_rdwr) |
| 1420 | need_recover = true; |
| 1421 | if (need_recover) |
| 1422 | nfs4_state_mark_reclaim_nograce(clp, state); |
| 1423 | } |
| 1424 | |
Trond Myklebust | e999e80 | 2014-02-10 18:20:47 -0500 | [diff] [blame] | 1425 | static bool nfs_need_update_open_stateid(struct nfs4_state *state, |
Trond Myklebust | 1393d96 | 2016-09-22 13:39:13 -0400 | [diff] [blame] | 1426 | const nfs4_stateid *stateid, nfs4_stateid *freeme) |
Trond Myklebust | e999e80 | 2014-02-10 18:20:47 -0500 | [diff] [blame] | 1427 | { |
| 1428 | if (test_and_set_bit(NFS_OPEN_STATE, &state->flags) == 0) |
| 1429 | return true; |
Trond Myklebust | 4f14c19 | 2014-02-12 19:15:06 -0500 | [diff] [blame] | 1430 | if (!nfs4_stateid_match_other(stateid, &state->open_stateid)) { |
Trond Myklebust | 1393d96 | 2016-09-22 13:39:13 -0400 | [diff] [blame] | 1431 | nfs4_stateid_copy(freeme, &state->open_stateid); |
Trond Myklebust | 4f14c19 | 2014-02-12 19:15:06 -0500 | [diff] [blame] | 1432 | nfs_test_and_clear_all_open_stateid(state); |
Trond Myklebust | e999e80 | 2014-02-10 18:20:47 -0500 | [diff] [blame] | 1433 | return true; |
Trond Myklebust | 4f14c19 | 2014-02-12 19:15:06 -0500 | [diff] [blame] | 1434 | } |
Trond Myklebust | e999e80 | 2014-02-10 18:20:47 -0500 | [diff] [blame] | 1435 | if (nfs4_stateid_is_newer(stateid, &state->open_stateid)) |
| 1436 | return true; |
| 1437 | return false; |
| 1438 | } |
| 1439 | |
Trond Myklebust | f95549c | 2015-01-23 18:06:09 -0500 | [diff] [blame] | 1440 | static void nfs_resync_open_stateid_locked(struct nfs4_state *state) |
| 1441 | { |
Trond Myklebust | 3c38cbe | 2015-07-22 13:46:13 -0400 | [diff] [blame] | 1442 | if (!(state->n_wronly || state->n_rdonly || state->n_rdwr)) |
| 1443 | return; |
Trond Myklebust | f95549c | 2015-01-23 18:06:09 -0500 | [diff] [blame] | 1444 | if (state->n_wronly) |
| 1445 | set_bit(NFS_O_WRONLY_STATE, &state->flags); |
| 1446 | if (state->n_rdonly) |
| 1447 | set_bit(NFS_O_RDONLY_STATE, &state->flags); |
| 1448 | if (state->n_rdwr) |
| 1449 | set_bit(NFS_O_RDWR_STATE, &state->flags); |
Trond Myklebust | 3c38cbe | 2015-07-22 13:46:13 -0400 | [diff] [blame] | 1450 | set_bit(NFS_OPEN_STATE, &state->flags); |
Trond Myklebust | f95549c | 2015-01-23 18:06:09 -0500 | [diff] [blame] | 1451 | } |
| 1452 | |
Trond Myklebust | 226056c | 2014-02-11 10:41:07 -0500 | [diff] [blame] | 1453 | static void nfs_clear_open_stateid_locked(struct nfs4_state *state, |
Trond Myklebust | 4a1e2fe | 2015-08-30 18:37:59 -0700 | [diff] [blame] | 1454 | nfs4_stateid *arg_stateid, |
Trond Myklebust | 226056c | 2014-02-11 10:41:07 -0500 | [diff] [blame] | 1455 | nfs4_stateid *stateid, fmode_t fmode) |
| 1456 | { |
| 1457 | clear_bit(NFS_O_RDWR_STATE, &state->flags); |
| 1458 | switch (fmode & (FMODE_READ|FMODE_WRITE)) { |
| 1459 | case FMODE_WRITE: |
| 1460 | clear_bit(NFS_O_RDONLY_STATE, &state->flags); |
| 1461 | break; |
| 1462 | case FMODE_READ: |
| 1463 | clear_bit(NFS_O_WRONLY_STATE, &state->flags); |
| 1464 | break; |
| 1465 | case 0: |
| 1466 | clear_bit(NFS_O_RDONLY_STATE, &state->flags); |
| 1467 | clear_bit(NFS_O_WRONLY_STATE, &state->flags); |
| 1468 | clear_bit(NFS_OPEN_STATE, &state->flags); |
| 1469 | } |
| 1470 | if (stateid == NULL) |
| 1471 | return; |
Trond Myklebust | f95549c | 2015-01-23 18:06:09 -0500 | [diff] [blame] | 1472 | /* Handle races with OPEN */ |
Trond Myklebust | 4a1e2fe | 2015-08-30 18:37:59 -0700 | [diff] [blame] | 1473 | if (!nfs4_stateid_match_other(arg_stateid, &state->open_stateid) || |
| 1474 | (nfs4_stateid_match_other(stateid, &state->open_stateid) && |
| 1475 | !nfs4_stateid_is_newer(stateid, &state->open_stateid))) { |
Trond Myklebust | f95549c | 2015-01-23 18:06:09 -0500 | [diff] [blame] | 1476 | nfs_resync_open_stateid_locked(state); |
Trond Myklebust | 226056c | 2014-02-11 10:41:07 -0500 | [diff] [blame] | 1477 | return; |
Trond Myklebust | f95549c | 2015-01-23 18:06:09 -0500 | [diff] [blame] | 1478 | } |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 1479 | if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0) |
Trond Myklebust | f597c53 | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 1480 | nfs4_stateid_copy(&state->stateid, stateid); |
| 1481 | nfs4_stateid_copy(&state->open_stateid, stateid); |
Trond Myklebust | 226056c | 2014-02-11 10:41:07 -0500 | [diff] [blame] | 1482 | } |
| 1483 | |
Trond Myklebust | 4a1e2fe | 2015-08-30 18:37:59 -0700 | [diff] [blame] | 1484 | static void nfs_clear_open_stateid(struct nfs4_state *state, |
| 1485 | nfs4_stateid *arg_stateid, |
| 1486 | nfs4_stateid *stateid, fmode_t fmode) |
Trond Myklebust | 226056c | 2014-02-11 10:41:07 -0500 | [diff] [blame] | 1487 | { |
| 1488 | write_seqlock(&state->seqlock); |
Trond Myklebust | 4a1e2fe | 2015-08-30 18:37:59 -0700 | [diff] [blame] | 1489 | nfs_clear_open_stateid_locked(state, arg_stateid, stateid, fmode); |
Trond Myklebust | 226056c | 2014-02-11 10:41:07 -0500 | [diff] [blame] | 1490 | write_sequnlock(&state->seqlock); |
Trond Myklebust | 4f14c19 | 2014-02-12 19:15:06 -0500 | [diff] [blame] | 1491 | if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags)) |
| 1492 | nfs4_schedule_state_manager(state->owner->so_server->nfs_client); |
Trond Myklebust | 226056c | 2014-02-11 10:41:07 -0500 | [diff] [blame] | 1493 | } |
| 1494 | |
Trond Myklebust | 1393d96 | 2016-09-22 13:39:13 -0400 | [diff] [blame] | 1495 | static void nfs_set_open_stateid_locked(struct nfs4_state *state, |
| 1496 | const nfs4_stateid *stateid, fmode_t fmode, |
| 1497 | nfs4_stateid *freeme) |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 1498 | { |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1499 | switch (fmode) { |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 1500 | case FMODE_READ: |
| 1501 | set_bit(NFS_O_RDONLY_STATE, &state->flags); |
| 1502 | break; |
| 1503 | case FMODE_WRITE: |
| 1504 | set_bit(NFS_O_WRONLY_STATE, &state->flags); |
| 1505 | break; |
| 1506 | case FMODE_READ|FMODE_WRITE: |
| 1507 | set_bit(NFS_O_RDWR_STATE, &state->flags); |
| 1508 | } |
Trond Myklebust | 1393d96 | 2016-09-22 13:39:13 -0400 | [diff] [blame] | 1509 | if (!nfs_need_update_open_stateid(state, stateid, freeme)) |
Trond Myklebust | e999e80 | 2014-02-10 18:20:47 -0500 | [diff] [blame] | 1510 | return; |
| 1511 | if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0) |
| 1512 | nfs4_stateid_copy(&state->stateid, stateid); |
| 1513 | nfs4_stateid_copy(&state->open_stateid, stateid); |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 1514 | } |
| 1515 | |
Trond Myklebust | 1393d96 | 2016-09-22 13:39:13 -0400 | [diff] [blame] | 1516 | static void __update_open_stateid(struct nfs4_state *state, |
| 1517 | const nfs4_stateid *open_stateid, |
| 1518 | const nfs4_stateid *deleg_stateid, |
| 1519 | fmode_t fmode, |
| 1520 | nfs4_stateid *freeme) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1521 | { |
Trond Myklebust | 8bda4e4 | 2007-07-09 10:45:42 -0400 | [diff] [blame] | 1522 | /* |
| 1523 | * Protect the call to nfs4_state_set_mode_locked and |
| 1524 | * serialise the stateid update |
| 1525 | */ |
Andrew Elble | 361cad3 | 2015-12-02 09:20:57 -0500 | [diff] [blame] | 1526 | spin_lock(&state->owner->so_lock); |
Trond Myklebust | 8bda4e4 | 2007-07-09 10:45:42 -0400 | [diff] [blame] | 1527 | write_seqlock(&state->seqlock); |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 1528 | if (deleg_stateid != NULL) { |
Trond Myklebust | f597c53 | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 1529 | nfs4_stateid_copy(&state->stateid, deleg_stateid); |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 1530 | set_bit(NFS_DELEGATED_STATE, &state->flags); |
| 1531 | } |
| 1532 | if (open_stateid != NULL) |
Trond Myklebust | 1393d96 | 2016-09-22 13:39:13 -0400 | [diff] [blame] | 1533 | nfs_set_open_stateid_locked(state, open_stateid, fmode, freeme); |
Trond Myklebust | 8bda4e4 | 2007-07-09 10:45:42 -0400 | [diff] [blame] | 1534 | write_sequnlock(&state->seqlock); |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1535 | update_open_stateflags(state, fmode); |
Trond Myklebust | ec07342 | 2005-10-20 14:22:47 -0700 | [diff] [blame] | 1536 | spin_unlock(&state->owner->so_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1537 | } |
| 1538 | |
Trond Myklebust | 1393d96 | 2016-09-22 13:39:13 -0400 | [diff] [blame] | 1539 | static int update_open_stateid(struct nfs4_state *state, |
| 1540 | const nfs4_stateid *open_stateid, |
| 1541 | const nfs4_stateid *delegation, |
| 1542 | fmode_t fmode) |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 1543 | { |
Trond Myklebust | 1393d96 | 2016-09-22 13:39:13 -0400 | [diff] [blame] | 1544 | struct nfs_server *server = NFS_SERVER(state->inode); |
| 1545 | struct nfs_client *clp = server->nfs_client; |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 1546 | struct nfs_inode *nfsi = NFS_I(state->inode); |
| 1547 | struct nfs_delegation *deleg_cur; |
Arnd Bergmann | 83aa3e0 | 2016-10-18 17:21:30 +0200 | [diff] [blame] | 1548 | nfs4_stateid freeme = { }; |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 1549 | int ret = 0; |
| 1550 | |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1551 | fmode &= (FMODE_READ|FMODE_WRITE); |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 1552 | |
| 1553 | rcu_read_lock(); |
| 1554 | deleg_cur = rcu_dereference(nfsi->delegation); |
| 1555 | if (deleg_cur == NULL) |
| 1556 | goto no_delegation; |
| 1557 | |
| 1558 | spin_lock(&deleg_cur->lock); |
Trond Myklebust | 17f26b1 | 2013-08-21 15:48:42 -0400 | [diff] [blame] | 1559 | if (rcu_dereference(nfsi->delegation) != deleg_cur || |
Trond Myklebust | d25be54 | 2013-02-05 11:43:28 -0500 | [diff] [blame] | 1560 | test_bit(NFS_DELEGATION_RETURNING, &deleg_cur->flags) || |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1561 | (deleg_cur->type & fmode) != fmode) |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 1562 | goto no_delegation_unlock; |
| 1563 | |
| 1564 | if (delegation == NULL) |
| 1565 | delegation = &deleg_cur->stateid; |
Trond Myklebust | f597c53 | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 1566 | else if (!nfs4_stateid_match(&deleg_cur->stateid, delegation)) |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 1567 | goto no_delegation_unlock; |
| 1568 | |
Trond Myklebust | b7391f4 | 2008-12-23 15:21:52 -0500 | [diff] [blame] | 1569 | nfs_mark_delegation_referenced(deleg_cur); |
Trond Myklebust | 1393d96 | 2016-09-22 13:39:13 -0400 | [diff] [blame] | 1570 | __update_open_stateid(state, open_stateid, &deleg_cur->stateid, |
| 1571 | fmode, &freeme); |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 1572 | ret = 1; |
| 1573 | no_delegation_unlock: |
| 1574 | spin_unlock(&deleg_cur->lock); |
| 1575 | no_delegation: |
| 1576 | rcu_read_unlock(); |
| 1577 | |
| 1578 | if (!ret && open_stateid != NULL) { |
Trond Myklebust | 1393d96 | 2016-09-22 13:39:13 -0400 | [diff] [blame] | 1579 | __update_open_stateid(state, open_stateid, NULL, fmode, &freeme); |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 1580 | ret = 1; |
| 1581 | } |
Trond Myklebust | 4f14c19 | 2014-02-12 19:15:06 -0500 | [diff] [blame] | 1582 | if (test_bit(NFS_STATE_RECLAIM_NOGRACE, &state->flags)) |
Trond Myklebust | 1393d96 | 2016-09-22 13:39:13 -0400 | [diff] [blame] | 1583 | nfs4_schedule_state_manager(clp); |
| 1584 | if (freeme.type != 0) |
| 1585 | nfs4_test_and_free_stateid(server, &freeme, |
| 1586 | state->owner->so_cred); |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 1587 | |
| 1588 | return ret; |
| 1589 | } |
| 1590 | |
Trond Myklebust | 39071e6 | 2015-01-24 15:07:56 -0500 | [diff] [blame] | 1591 | static bool nfs4_update_lock_stateid(struct nfs4_lock_state *lsp, |
| 1592 | const nfs4_stateid *stateid) |
| 1593 | { |
| 1594 | struct nfs4_state *state = lsp->ls_state; |
| 1595 | bool ret = false; |
| 1596 | |
| 1597 | spin_lock(&state->state_lock); |
| 1598 | if (!nfs4_stateid_match_other(stateid, &lsp->ls_stateid)) |
| 1599 | goto out_noupdate; |
| 1600 | if (!nfs4_stateid_is_newer(stateid, &lsp->ls_stateid)) |
| 1601 | goto out_noupdate; |
| 1602 | nfs4_stateid_copy(&lsp->ls_stateid, stateid); |
| 1603 | ret = true; |
| 1604 | out_noupdate: |
| 1605 | spin_unlock(&state->state_lock); |
| 1606 | return ret; |
| 1607 | } |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 1608 | |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1609 | static void nfs4_return_incompatible_delegation(struct inode *inode, fmode_t fmode) |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1610 | { |
| 1611 | struct nfs_delegation *delegation; |
| 1612 | |
| 1613 | rcu_read_lock(); |
| 1614 | delegation = rcu_dereference(NFS_I(inode)->delegation); |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1615 | if (delegation == NULL || (delegation->type & fmode) == fmode) { |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1616 | rcu_read_unlock(); |
| 1617 | return; |
| 1618 | } |
| 1619 | rcu_read_unlock(); |
Bryan Schumaker | 57ec14c | 2012-06-20 15:53:44 -0400 | [diff] [blame] | 1620 | nfs4_inode_return_delegation(inode); |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1621 | } |
| 1622 | |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 1623 | static struct nfs4_state *nfs4_try_open_cached(struct nfs4_opendata *opendata) |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1624 | { |
| 1625 | struct nfs4_state *state = opendata->state; |
| 1626 | struct nfs_inode *nfsi = NFS_I(state->inode); |
| 1627 | struct nfs_delegation *delegation; |
Trond Myklebust | f448bad | 2013-05-29 15:36:40 -0400 | [diff] [blame] | 1628 | int open_mode = opendata->o_arg.open_flags; |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1629 | fmode_t fmode = opendata->o_arg.fmode; |
Trond Myklebust | 2a60618 | 2015-08-19 22:30:00 -0500 | [diff] [blame] | 1630 | enum open_claim_type4 claim = opendata->o_arg.claim; |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1631 | nfs4_stateid stateid; |
| 1632 | int ret = -EAGAIN; |
| 1633 | |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1634 | for (;;) { |
Anna Schumaker | 61beef7 | 2014-09-03 14:15:40 -0400 | [diff] [blame] | 1635 | spin_lock(&state->owner->so_lock); |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1636 | if (can_open_cached(state, fmode, open_mode)) { |
Anna Schumaker | 61beef7 | 2014-09-03 14:15:40 -0400 | [diff] [blame] | 1637 | update_open_stateflags(state, fmode); |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 1638 | spin_unlock(&state->owner->so_lock); |
Anna Schumaker | 61beef7 | 2014-09-03 14:15:40 -0400 | [diff] [blame] | 1639 | goto out_return_state; |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 1640 | } |
Anna Schumaker | 61beef7 | 2014-09-03 14:15:40 -0400 | [diff] [blame] | 1641 | spin_unlock(&state->owner->so_lock); |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 1642 | rcu_read_lock(); |
| 1643 | delegation = rcu_dereference(nfsi->delegation); |
Trond Myklebust | 2a60618 | 2015-08-19 22:30:00 -0500 | [diff] [blame] | 1644 | if (!can_open_delegated(delegation, fmode, claim)) { |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 1645 | rcu_read_unlock(); |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 1646 | break; |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 1647 | } |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1648 | /* Save the delegation */ |
Trond Myklebust | f597c53 | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 1649 | nfs4_stateid_copy(&stateid, &delegation->stateid); |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1650 | rcu_read_unlock(); |
Trond Myklebust | fa33294 | 2013-04-09 12:56:52 -0400 | [diff] [blame] | 1651 | nfs_release_seqid(opendata->o_arg.seqid); |
Trond Myklebust | bdeca1b | 2013-04-23 14:52:44 -0400 | [diff] [blame] | 1652 | if (!opendata->is_recover) { |
| 1653 | ret = nfs_may_open(state->inode, state->owner->so_cred, open_mode); |
| 1654 | if (ret != 0) |
| 1655 | goto out; |
| 1656 | } |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1657 | ret = -EAGAIN; |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 1658 | |
| 1659 | /* Try to update the stateid using the delegation */ |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1660 | if (update_open_stateid(state, NULL, &stateid, fmode)) |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 1661 | goto out_return_state; |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1662 | } |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1663 | out: |
| 1664 | return ERR_PTR(ret); |
| 1665 | out_return_state: |
| 1666 | atomic_inc(&state->count); |
| 1667 | return state; |
| 1668 | } |
| 1669 | |
Andy Adamson | e23008e | 2012-10-02 21:07:32 -0400 | [diff] [blame] | 1670 | static void |
| 1671 | nfs4_opendata_check_deleg(struct nfs4_opendata *data, struct nfs4_state *state) |
| 1672 | { |
| 1673 | struct nfs_client *clp = NFS_SERVER(state->inode)->nfs_client; |
| 1674 | struct nfs_delegation *delegation; |
| 1675 | int delegation_flags = 0; |
| 1676 | |
| 1677 | rcu_read_lock(); |
| 1678 | delegation = rcu_dereference(NFS_I(state->inode)->delegation); |
| 1679 | if (delegation) |
| 1680 | delegation_flags = delegation->flags; |
| 1681 | rcu_read_unlock(); |
Trond Myklebust | 72d79ff | 2015-10-02 11:44:54 -0400 | [diff] [blame] | 1682 | switch (data->o_arg.claim) { |
| 1683 | default: |
| 1684 | break; |
| 1685 | case NFS4_OPEN_CLAIM_DELEGATE_CUR: |
| 1686 | case NFS4_OPEN_CLAIM_DELEG_CUR_FH: |
Andy Adamson | e23008e | 2012-10-02 21:07:32 -0400 | [diff] [blame] | 1687 | pr_err_ratelimited("NFS: Broken NFSv4 server %s is " |
| 1688 | "returning a delegation for " |
| 1689 | "OPEN(CLAIM_DELEGATE_CUR)\n", |
| 1690 | clp->cl_hostname); |
Trond Myklebust | 72d79ff | 2015-10-02 11:44:54 -0400 | [diff] [blame] | 1691 | return; |
| 1692 | } |
| 1693 | if ((delegation_flags & 1UL<<NFS_DELEGATION_NEED_RECLAIM) == 0) |
Andy Adamson | e23008e | 2012-10-02 21:07:32 -0400 | [diff] [blame] | 1694 | nfs_inode_set_delegation(state->inode, |
| 1695 | data->owner->so_cred, |
| 1696 | &data->o_res); |
| 1697 | else |
| 1698 | nfs_inode_reclaim_delegation(state->inode, |
| 1699 | data->owner->so_cred, |
| 1700 | &data->o_res); |
| 1701 | } |
| 1702 | |
| 1703 | /* |
| 1704 | * Check the inode attributes against the CLAIM_PREVIOUS returned attributes |
| 1705 | * and update the nfs4_state. |
| 1706 | */ |
| 1707 | static struct nfs4_state * |
| 1708 | _nfs4_opendata_reclaim_to_nfs4_state(struct nfs4_opendata *data) |
| 1709 | { |
| 1710 | struct inode *inode = data->state->inode; |
| 1711 | struct nfs4_state *state = data->state; |
| 1712 | int ret; |
| 1713 | |
Weston Andros Adamson | d2bfda2 | 2013-10-21 13:10:13 -0400 | [diff] [blame] | 1714 | if (!data->rpc_done) { |
| 1715 | if (data->rpc_status) { |
| 1716 | ret = data->rpc_status; |
| 1717 | goto err; |
| 1718 | } |
| 1719 | /* cached opens have already been processed */ |
| 1720 | goto update; |
Andy Adamson | e23008e | 2012-10-02 21:07:32 -0400 | [diff] [blame] | 1721 | } |
| 1722 | |
Andy Adamson | e23008e | 2012-10-02 21:07:32 -0400 | [diff] [blame] | 1723 | ret = nfs_refresh_inode(inode, &data->f_attr); |
| 1724 | if (ret) |
| 1725 | goto err; |
| 1726 | |
| 1727 | if (data->o_res.delegation_type != 0) |
| 1728 | nfs4_opendata_check_deleg(data, state); |
Weston Andros Adamson | d2bfda2 | 2013-10-21 13:10:13 -0400 | [diff] [blame] | 1729 | update: |
Andy Adamson | e23008e | 2012-10-02 21:07:32 -0400 | [diff] [blame] | 1730 | update_open_stateid(state, &data->o_res.stateid, NULL, |
| 1731 | data->o_arg.fmode); |
Trond Myklebust | d49f042 | 2013-10-28 14:57:12 -0400 | [diff] [blame] | 1732 | atomic_inc(&state->count); |
Andy Adamson | e23008e | 2012-10-02 21:07:32 -0400 | [diff] [blame] | 1733 | |
| 1734 | return state; |
| 1735 | err: |
| 1736 | return ERR_PTR(ret); |
| 1737 | |
| 1738 | } |
| 1739 | |
| 1740 | static struct nfs4_state * |
| 1741 | _nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data) |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 1742 | { |
| 1743 | struct inode *inode; |
| 1744 | struct nfs4_state *state = NULL; |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 1745 | int ret; |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 1746 | |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1747 | if (!data->rpc_done) { |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 1748 | state = nfs4_try_open_cached(data); |
Olga Kornievskaia | 9759b0f | 2015-11-24 13:29:42 -0500 | [diff] [blame] | 1749 | trace_nfs4_cached_open(data->state); |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1750 | goto out; |
| 1751 | } |
| 1752 | |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 1753 | ret = -EAGAIN; |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 1754 | if (!(data->f_attr.valid & NFS_ATTR_FATTR)) |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 1755 | goto err; |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 1756 | inode = nfs_fhget(data->dir->d_sb, &data->o_res.fh, &data->f_attr, data->f_label); |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 1757 | ret = PTR_ERR(inode); |
Trond Myklebust | 03f28e3 | 2006-03-20 13:44:48 -0500 | [diff] [blame] | 1758 | if (IS_ERR(inode)) |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 1759 | goto err; |
| 1760 | ret = -ENOMEM; |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 1761 | state = nfs4_get_open_state(inode, data->owner); |
| 1762 | if (state == NULL) |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 1763 | goto err_put_inode; |
Andy Adamson | e23008e | 2012-10-02 21:07:32 -0400 | [diff] [blame] | 1764 | if (data->o_res.delegation_type != 0) |
| 1765 | nfs4_opendata_check_deleg(data, state); |
Trond Myklebust | 3431043 | 2008-12-23 15:21:38 -0500 | [diff] [blame] | 1766 | update_open_stateid(state, &data->o_res.stateid, NULL, |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1767 | data->o_arg.fmode); |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 1768 | iput(inode); |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 1769 | out: |
Trond Myklebust | 7aa262b5 | 2013-02-28 16:19:59 -0800 | [diff] [blame] | 1770 | nfs_release_seqid(data->o_arg.seqid); |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 1771 | return state; |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 1772 | err_put_inode: |
| 1773 | iput(inode); |
| 1774 | err: |
| 1775 | return ERR_PTR(ret); |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 1776 | } |
| 1777 | |
Andy Adamson | e23008e | 2012-10-02 21:07:32 -0400 | [diff] [blame] | 1778 | static struct nfs4_state * |
| 1779 | nfs4_opendata_to_nfs4_state(struct nfs4_opendata *data) |
| 1780 | { |
Trond Myklebust | 2e80dbe | 2016-08-28 11:50:26 -0400 | [diff] [blame] | 1781 | struct nfs4_state *ret; |
| 1782 | |
Andy Adamson | e23008e | 2012-10-02 21:07:32 -0400 | [diff] [blame] | 1783 | if (data->o_arg.claim == NFS4_OPEN_CLAIM_PREVIOUS) |
Trond Myklebust | 2e80dbe | 2016-08-28 11:50:26 -0400 | [diff] [blame] | 1784 | ret =_nfs4_opendata_reclaim_to_nfs4_state(data); |
| 1785 | else |
| 1786 | ret = _nfs4_opendata_to_nfs4_state(data); |
| 1787 | nfs4_sequence_free_slot(&data->o_res.seq_res); |
| 1788 | return ret; |
Andy Adamson | e23008e | 2012-10-02 21:07:32 -0400 | [diff] [blame] | 1789 | } |
| 1790 | |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 1791 | static struct nfs_open_context *nfs4_state_find_open_context(struct nfs4_state *state) |
| 1792 | { |
| 1793 | struct nfs_inode *nfsi = NFS_I(state->inode); |
| 1794 | struct nfs_open_context *ctx; |
| 1795 | |
| 1796 | spin_lock(&state->inode->i_lock); |
| 1797 | list_for_each_entry(ctx, &nfsi->open_files, list) { |
| 1798 | if (ctx->state != state) |
| 1799 | continue; |
| 1800 | get_nfs_open_context(ctx); |
| 1801 | spin_unlock(&state->inode->i_lock); |
| 1802 | return ctx; |
| 1803 | } |
| 1804 | spin_unlock(&state->inode->i_lock); |
| 1805 | return ERR_PTR(-ENOENT); |
| 1806 | } |
| 1807 | |
Trond Myklebust | 4a1c089 | 2013-03-15 14:57:33 -0400 | [diff] [blame] | 1808 | static struct nfs4_opendata *nfs4_open_recoverdata_alloc(struct nfs_open_context *ctx, |
| 1809 | struct nfs4_state *state, enum open_claim_type4 claim) |
Trond Myklebust | 6f220ed | 2007-07-17 21:50:45 -0400 | [diff] [blame] | 1810 | { |
| 1811 | struct nfs4_opendata *opendata; |
| 1812 | |
Trond Myklebust | 4a1c089 | 2013-03-15 14:57:33 -0400 | [diff] [blame] | 1813 | opendata = nfs4_opendata_alloc(ctx->dentry, state->owner, 0, 0, |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 1814 | NULL, NULL, claim, GFP_NOFS); |
Trond Myklebust | 6f220ed | 2007-07-17 21:50:45 -0400 | [diff] [blame] | 1815 | if (opendata == NULL) |
| 1816 | return ERR_PTR(-ENOMEM); |
| 1817 | opendata->state = state; |
| 1818 | atomic_inc(&state->count); |
| 1819 | return opendata; |
| 1820 | } |
| 1821 | |
Trond Myklebust | 24311f8 | 2015-09-20 10:50:17 -0400 | [diff] [blame] | 1822 | static int nfs4_open_recover_helper(struct nfs4_opendata *opendata, |
| 1823 | fmode_t fmode) |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 1824 | { |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 1825 | struct nfs4_state *newstate; |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 1826 | int ret; |
| 1827 | |
Trond Myklebust | 24311f8 | 2015-09-20 10:50:17 -0400 | [diff] [blame] | 1828 | if (!nfs4_mode_match_open_stateid(opendata->state, fmode)) |
NeilBrown | 39f897f | 2015-06-29 14:28:54 +1000 | [diff] [blame] | 1829 | return 0; |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1830 | opendata->o_arg.open_flags = 0; |
| 1831 | opendata->o_arg.fmode = fmode; |
Trond Myklebust | be36e18 | 2015-02-27 17:04:17 -0500 | [diff] [blame] | 1832 | opendata->o_arg.share_access = nfs4_map_atomic_open_share( |
| 1833 | NFS_SB(opendata->dentry->d_sb), |
| 1834 | fmode, 0); |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 1835 | memset(&opendata->o_res, 0, sizeof(opendata->o_res)); |
| 1836 | memset(&opendata->c_res, 0, sizeof(opendata->c_res)); |
| 1837 | nfs4_init_opendata_res(opendata); |
Alexandros Batsakis | b257957 | 2009-12-14 21:27:57 -0800 | [diff] [blame] | 1838 | ret = _nfs4_recover_proc_open(opendata); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 1839 | if (ret != 0) |
| 1840 | return ret; |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 1841 | newstate = nfs4_opendata_to_nfs4_state(opendata); |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 1842 | if (IS_ERR(newstate)) |
| 1843 | return PTR_ERR(newstate); |
Trond Myklebust | 24311f8 | 2015-09-20 10:50:17 -0400 | [diff] [blame] | 1844 | if (newstate != opendata->state) |
| 1845 | ret = -ESTALE; |
Al Viro | 643168c | 2011-06-22 18:20:23 -0400 | [diff] [blame] | 1846 | nfs4_close_state(newstate, fmode); |
Trond Myklebust | 24311f8 | 2015-09-20 10:50:17 -0400 | [diff] [blame] | 1847 | return ret; |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 1848 | } |
| 1849 | |
| 1850 | static int nfs4_open_recover(struct nfs4_opendata *opendata, struct nfs4_state *state) |
| 1851 | { |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 1852 | int ret; |
| 1853 | |
Trond Myklebust | 4f14c19 | 2014-02-12 19:15:06 -0500 | [diff] [blame] | 1854 | /* Don't trigger recovery in nfs_test_and_clear_all_open_stateid */ |
| 1855 | clear_bit(NFS_O_RDWR_STATE, &state->flags); |
| 1856 | clear_bit(NFS_O_WRONLY_STATE, &state->flags); |
| 1857 | clear_bit(NFS_O_RDONLY_STATE, &state->flags); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 1858 | /* memory barrier prior to reading state->n_* */ |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 1859 | clear_bit(NFS_DELEGATED_STATE, &state->flags); |
Trond Myklebust | fd068b2 | 2013-04-22 11:29:51 -0400 | [diff] [blame] | 1860 | clear_bit(NFS_OPEN_STATE, &state->flags); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 1861 | smp_rmb(); |
Trond Myklebust | 24311f8 | 2015-09-20 10:50:17 -0400 | [diff] [blame] | 1862 | ret = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE); |
| 1863 | if (ret != 0) |
| 1864 | return ret; |
| 1865 | ret = nfs4_open_recover_helper(opendata, FMODE_WRITE); |
| 1866 | if (ret != 0) |
| 1867 | return ret; |
| 1868 | ret = nfs4_open_recover_helper(opendata, FMODE_READ); |
| 1869 | if (ret != 0) |
| 1870 | return ret; |
Trond Myklebust | 1ac7e2f | 2007-07-08 21:04:15 -0400 | [diff] [blame] | 1871 | /* |
| 1872 | * We may have performed cached opens for all three recoveries. |
| 1873 | * Check if we need to update the current stateid. |
| 1874 | */ |
| 1875 | if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0 && |
Trond Myklebust | f597c53 | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 1876 | !nfs4_stateid_match(&state->stateid, &state->open_stateid)) { |
Trond Myklebust | 8bda4e4 | 2007-07-09 10:45:42 -0400 | [diff] [blame] | 1877 | write_seqlock(&state->seqlock); |
Trond Myklebust | 1ac7e2f | 2007-07-08 21:04:15 -0400 | [diff] [blame] | 1878 | if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0) |
Trond Myklebust | f597c53 | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 1879 | nfs4_stateid_copy(&state->stateid, &state->open_stateid); |
Trond Myklebust | 8bda4e4 | 2007-07-09 10:45:42 -0400 | [diff] [blame] | 1880 | write_sequnlock(&state->seqlock); |
Trond Myklebust | 1ac7e2f | 2007-07-08 21:04:15 -0400 | [diff] [blame] | 1881 | } |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 1882 | return 0; |
| 1883 | } |
| 1884 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1885 | /* |
| 1886 | * OPEN_RECLAIM: |
| 1887 | * reclaim state on the server after a reboot. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | */ |
Trond Myklebust | 539cd03 | 2007-06-05 11:46:42 -0400 | [diff] [blame] | 1889 | static int _nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | { |
Trond Myklebust | 1ac7e2f | 2007-07-08 21:04:15 -0400 | [diff] [blame] | 1891 | struct nfs_delegation *delegation; |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 1892 | struct nfs4_opendata *opendata; |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 1893 | fmode_t delegation_type = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1894 | int status; |
| 1895 | |
Trond Myklebust | 4a1c089 | 2013-03-15 14:57:33 -0400 | [diff] [blame] | 1896 | opendata = nfs4_open_recoverdata_alloc(ctx, state, |
| 1897 | NFS4_OPEN_CLAIM_PREVIOUS); |
Trond Myklebust | 6f220ed | 2007-07-17 21:50:45 -0400 | [diff] [blame] | 1898 | if (IS_ERR(opendata)) |
| 1899 | return PTR_ERR(opendata); |
Trond Myklebust | 1ac7e2f | 2007-07-08 21:04:15 -0400 | [diff] [blame] | 1900 | rcu_read_lock(); |
| 1901 | delegation = rcu_dereference(NFS_I(state->inode)->delegation); |
Trond Myklebust | 15c831b | 2008-12-23 15:21:39 -0500 | [diff] [blame] | 1902 | if (delegation != NULL && test_bit(NFS_DELEGATION_NEED_RECLAIM, &delegation->flags) != 0) |
Trond Myklebust | 65bbf6b | 2007-08-27 09:57:46 -0400 | [diff] [blame] | 1903 | delegation_type = delegation->type; |
Trond Myklebust | 1ac7e2f | 2007-07-08 21:04:15 -0400 | [diff] [blame] | 1904 | rcu_read_unlock(); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 1905 | opendata->o_arg.u.delegation_type = delegation_type; |
| 1906 | status = nfs4_open_recover(opendata, state); |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 1907 | nfs4_opendata_put(opendata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | return status; |
| 1909 | } |
| 1910 | |
Trond Myklebust | 539cd03 | 2007-06-05 11:46:42 -0400 | [diff] [blame] | 1911 | static int nfs4_do_open_reclaim(struct nfs_open_context *ctx, struct nfs4_state *state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1912 | { |
| 1913 | struct nfs_server *server = NFS_SERVER(state->inode); |
| 1914 | struct nfs4_exception exception = { }; |
| 1915 | int err; |
| 1916 | do { |
Trond Myklebust | 539cd03 | 2007-06-05 11:46:42 -0400 | [diff] [blame] | 1917 | err = _nfs4_do_open_reclaim(ctx, state); |
Trond Myklebust | 42113a7 | 2013-08-12 16:19:27 -0400 | [diff] [blame] | 1918 | trace_nfs4_open_reclaim(ctx, 0, err); |
Trond Myklebust | 49f9a0f | 2013-03-15 16:44:28 -0400 | [diff] [blame] | 1919 | if (nfs4_clear_cap_atomic_open_v1(server, err, &exception)) |
| 1920 | continue; |
Trond Myklebust | 168667c | 2010-10-19 19:47:49 -0400 | [diff] [blame] | 1921 | if (err != -NFS4ERR_DELAY) |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 1922 | break; |
| 1923 | nfs4_handle_exception(server, err, &exception); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1924 | } while (exception.retry); |
| 1925 | return err; |
| 1926 | } |
| 1927 | |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 1928 | static int nfs4_open_reclaim(struct nfs4_state_owner *sp, struct nfs4_state *state) |
| 1929 | { |
| 1930 | struct nfs_open_context *ctx; |
| 1931 | int ret; |
| 1932 | |
| 1933 | ctx = nfs4_state_find_open_context(state); |
| 1934 | if (IS_ERR(ctx)) |
Trond Myklebust | 91876b1 | 2013-03-28 14:01:33 -0400 | [diff] [blame] | 1935 | return -EAGAIN; |
Trond Myklebust | 539cd03 | 2007-06-05 11:46:42 -0400 | [diff] [blame] | 1936 | ret = nfs4_do_open_reclaim(ctx, state); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 1937 | put_nfs_open_context(ctx); |
| 1938 | return ret; |
| 1939 | } |
| 1940 | |
Trond Myklebust | db4f2e6 | 2013-04-01 15:56:46 -0400 | [diff] [blame] | 1941 | static int nfs4_handle_delegation_recall_error(struct nfs_server *server, struct nfs4_state *state, const nfs4_stateid *stateid, int err) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1942 | { |
Trond Myklebust | be76b5b | 2013-04-01 15:40:44 -0400 | [diff] [blame] | 1943 | switch (err) { |
| 1944 | default: |
| 1945 | printk(KERN_ERR "NFS: %s: unhandled error " |
| 1946 | "%d.\n", __func__, err); |
| 1947 | case 0: |
| 1948 | case -ENOENT: |
Trond Myklebust | 8eee52a | 2015-06-04 13:51:13 -0400 | [diff] [blame] | 1949 | case -EAGAIN: |
Trond Myklebust | be76b5b | 2013-04-01 15:40:44 -0400 | [diff] [blame] | 1950 | case -ESTALE: |
| 1951 | break; |
| 1952 | case -NFS4ERR_BADSESSION: |
| 1953 | case -NFS4ERR_BADSLOT: |
| 1954 | case -NFS4ERR_BAD_HIGH_SLOT: |
| 1955 | case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION: |
| 1956 | case -NFS4ERR_DEADSESSION: |
| 1957 | set_bit(NFS_DELEGATED_STATE, &state->flags); |
| 1958 | nfs4_schedule_session_recovery(server->nfs_client->cl_session, err); |
| 1959 | return -EAGAIN; |
| 1960 | case -NFS4ERR_STALE_CLIENTID: |
| 1961 | case -NFS4ERR_STALE_STATEID: |
| 1962 | set_bit(NFS_DELEGATED_STATE, &state->flags); |
Trond Myklebust | be76b5b | 2013-04-01 15:40:44 -0400 | [diff] [blame] | 1963 | /* Don't recall a delegation if it was lost */ |
| 1964 | nfs4_schedule_lease_recovery(server->nfs_client); |
| 1965 | return -EAGAIN; |
Chuck Lever | 352297b | 2013-10-17 14:13:24 -0400 | [diff] [blame] | 1966 | case -NFS4ERR_MOVED: |
| 1967 | nfs4_schedule_migration_recovery(server); |
| 1968 | return -EAGAIN; |
Chuck Lever | 8ef2f8d | 2013-10-17 14:13:41 -0400 | [diff] [blame] | 1969 | case -NFS4ERR_LEASE_MOVED: |
| 1970 | nfs4_schedule_lease_moved_recovery(server->nfs_client); |
| 1971 | return -EAGAIN; |
Trond Myklebust | be76b5b | 2013-04-01 15:40:44 -0400 | [diff] [blame] | 1972 | case -NFS4ERR_DELEG_REVOKED: |
| 1973 | case -NFS4ERR_ADMIN_REVOKED: |
Trond Myklebust | 404ea356 | 2016-09-22 13:39:08 -0400 | [diff] [blame] | 1974 | case -NFS4ERR_EXPIRED: |
Trond Myklebust | be76b5b | 2013-04-01 15:40:44 -0400 | [diff] [blame] | 1975 | case -NFS4ERR_BAD_STATEID: |
Trond Myklebust | db4f2e6 | 2013-04-01 15:56:46 -0400 | [diff] [blame] | 1976 | case -NFS4ERR_OPENMODE: |
Trond Myklebust | be76b5b | 2013-04-01 15:40:44 -0400 | [diff] [blame] | 1977 | nfs_inode_find_state_and_recover(state->inode, |
| 1978 | stateid); |
| 1979 | nfs4_schedule_stateid_recovery(server, state); |
Trond Myklebust | 869f9df | 2014-11-10 18:43:56 -0500 | [diff] [blame] | 1980 | return -EAGAIN; |
Trond Myklebust | be76b5b | 2013-04-01 15:40:44 -0400 | [diff] [blame] | 1981 | case -NFS4ERR_DELAY: |
| 1982 | case -NFS4ERR_GRACE: |
| 1983 | set_bit(NFS_DELEGATED_STATE, &state->flags); |
| 1984 | ssleep(1); |
| 1985 | return -EAGAIN; |
Trond Myklebust | db4f2e6 | 2013-04-01 15:56:46 -0400 | [diff] [blame] | 1986 | case -ENOMEM: |
| 1987 | case -NFS4ERR_DENIED: |
| 1988 | /* kill_proc(fl->fl_pid, SIGLOST, 1); */ |
| 1989 | return 0; |
Trond Myklebust | be76b5b | 2013-04-01 15:40:44 -0400 | [diff] [blame] | 1990 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1991 | return err; |
| 1992 | } |
| 1993 | |
Trond Myklebust | 24311f8 | 2015-09-20 10:50:17 -0400 | [diff] [blame] | 1994 | int nfs4_open_delegation_recall(struct nfs_open_context *ctx, |
| 1995 | struct nfs4_state *state, const nfs4_stateid *stateid, |
| 1996 | fmode_t type) |
Trond Myklebust | db4f2e6 | 2013-04-01 15:56:46 -0400 | [diff] [blame] | 1997 | { |
| 1998 | struct nfs_server *server = NFS_SERVER(state->inode); |
| 1999 | struct nfs4_opendata *opendata; |
Trond Myklebust | 24311f8 | 2015-09-20 10:50:17 -0400 | [diff] [blame] | 2000 | int err = 0; |
Trond Myklebust | db4f2e6 | 2013-04-01 15:56:46 -0400 | [diff] [blame] | 2001 | |
| 2002 | opendata = nfs4_open_recoverdata_alloc(ctx, state, |
| 2003 | NFS4_OPEN_CLAIM_DELEG_CUR_FH); |
| 2004 | if (IS_ERR(opendata)) |
| 2005 | return PTR_ERR(opendata); |
| 2006 | nfs4_stateid_copy(&opendata->o_arg.u.delegation, stateid); |
Jeff Layton | 5e99b53 | 2015-10-02 13:14:37 -0400 | [diff] [blame] | 2007 | write_seqlock(&state->seqlock); |
| 2008 | nfs4_stateid_copy(&state->stateid, &state->open_stateid); |
| 2009 | write_sequnlock(&state->seqlock); |
Trond Myklebust | 24311f8 | 2015-09-20 10:50:17 -0400 | [diff] [blame] | 2010 | clear_bit(NFS_DELEGATED_STATE, &state->flags); |
| 2011 | switch (type & (FMODE_READ|FMODE_WRITE)) { |
| 2012 | case FMODE_READ|FMODE_WRITE: |
| 2013 | case FMODE_WRITE: |
| 2014 | err = nfs4_open_recover_helper(opendata, FMODE_READ|FMODE_WRITE); |
| 2015 | if (err) |
| 2016 | break; |
| 2017 | err = nfs4_open_recover_helper(opendata, FMODE_WRITE); |
| 2018 | if (err) |
| 2019 | break; |
| 2020 | case FMODE_READ: |
| 2021 | err = nfs4_open_recover_helper(opendata, FMODE_READ); |
| 2022 | } |
Trond Myklebust | db4f2e6 | 2013-04-01 15:56:46 -0400 | [diff] [blame] | 2023 | nfs4_opendata_put(opendata); |
| 2024 | return nfs4_handle_delegation_recall_error(server, state, stateid, err); |
| 2025 | } |
| 2026 | |
Chuck Lever | be05c86 | 2013-08-09 12:49:47 -0400 | [diff] [blame] | 2027 | static void nfs4_open_confirm_prepare(struct rpc_task *task, void *calldata) |
| 2028 | { |
| 2029 | struct nfs4_opendata *data = calldata; |
| 2030 | |
Peng Tao | cb04ad2 | 2014-06-11 05:24:15 +0800 | [diff] [blame] | 2031 | nfs40_setup_sequence(data->o_arg.server->nfs_client->cl_slot_tbl, |
| 2032 | &data->c_arg.seq_args, &data->c_res.seq_res, task); |
Chuck Lever | be05c86 | 2013-08-09 12:49:47 -0400 | [diff] [blame] | 2033 | } |
| 2034 | |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 2035 | static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata) |
| 2036 | { |
| 2037 | struct nfs4_opendata *data = calldata; |
| 2038 | |
Trond Myklebust | 17ead6c | 2014-02-01 14:53:23 -0500 | [diff] [blame] | 2039 | nfs40_sequence_done(task, &data->c_res.seq_res); |
Chuck Lever | be05c86 | 2013-08-09 12:49:47 -0400 | [diff] [blame] | 2040 | |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 2041 | data->rpc_status = task->tk_status; |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 2042 | if (data->rpc_status == 0) { |
Trond Myklebust | f597c53 | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 2043 | nfs4_stateid_copy(&data->o_res.stateid, &data->c_res.stateid); |
Trond Myklebust | bb22629 | 2008-01-02 15:19:18 -0500 | [diff] [blame] | 2044 | nfs_confirm_seqid(&data->owner->so_seqid, 0); |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 2045 | renew_lease(data->o_res.server, data->timestamp); |
Trond Myklebust | 3e30991 | 2007-07-07 13:19:59 -0400 | [diff] [blame] | 2046 | data->rpc_done = 1; |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 2047 | } |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 2048 | } |
| 2049 | |
| 2050 | static void nfs4_open_confirm_release(void *calldata) |
| 2051 | { |
| 2052 | struct nfs4_opendata *data = calldata; |
| 2053 | struct nfs4_state *state = NULL; |
| 2054 | |
| 2055 | /* If this request hasn't been cancelled, do nothing */ |
| 2056 | if (data->cancelled == 0) |
| 2057 | goto out_free; |
| 2058 | /* In case of error, no cleanup! */ |
Trond Myklebust | 3e30991 | 2007-07-07 13:19:59 -0400 | [diff] [blame] | 2059 | if (!data->rpc_done) |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 2060 | goto out_free; |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 2061 | state = nfs4_opendata_to_nfs4_state(data); |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 2062 | if (!IS_ERR(state)) |
Al Viro | 643168c | 2011-06-22 18:20:23 -0400 | [diff] [blame] | 2063 | nfs4_close_state(state, data->o_arg.fmode); |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 2064 | out_free: |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 2065 | nfs4_opendata_put(data); |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 2066 | } |
| 2067 | |
| 2068 | static const struct rpc_call_ops nfs4_open_confirm_ops = { |
Chuck Lever | be05c86 | 2013-08-09 12:49:47 -0400 | [diff] [blame] | 2069 | .rpc_call_prepare = nfs4_open_confirm_prepare, |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 2070 | .rpc_call_done = nfs4_open_confirm_done, |
| 2071 | .rpc_release = nfs4_open_confirm_release, |
| 2072 | }; |
| 2073 | |
| 2074 | /* |
| 2075 | * Note: On error, nfs4_proc_open_confirm will free the struct nfs4_opendata |
| 2076 | */ |
| 2077 | static int _nfs4_proc_open_confirm(struct nfs4_opendata *data) |
| 2078 | { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 2079 | struct nfs_server *server = NFS_SERVER(d_inode(data->dir)); |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 2080 | struct rpc_task *task; |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 2081 | struct rpc_message msg = { |
| 2082 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_CONFIRM], |
| 2083 | .rpc_argp = &data->c_arg, |
| 2084 | .rpc_resp = &data->c_res, |
| 2085 | .rpc_cred = data->owner->so_cred, |
| 2086 | }; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 2087 | struct rpc_task_setup task_setup_data = { |
| 2088 | .rpc_client = server->client, |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 2089 | .rpc_message = &msg, |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 2090 | .callback_ops = &nfs4_open_confirm_ops, |
| 2091 | .callback_data = data, |
Trond Myklebust | 101070c | 2008-02-19 20:04:23 -0500 | [diff] [blame] | 2092 | .workqueue = nfsiod_workqueue, |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 2093 | .flags = RPC_TASK_ASYNC, |
| 2094 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2095 | int status; |
| 2096 | |
Trond Myklebust | 17ead6c | 2014-02-01 14:53:23 -0500 | [diff] [blame] | 2097 | nfs4_init_sequence(&data->c_arg.seq_args, &data->c_res.seq_res, 1); |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 2098 | kref_get(&data->kref); |
Trond Myklebust | 3e30991 | 2007-07-07 13:19:59 -0400 | [diff] [blame] | 2099 | data->rpc_done = 0; |
| 2100 | data->rpc_status = 0; |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 2101 | data->timestamp = jiffies; |
Benjamin Coddington | e92c1e0 | 2015-10-01 09:17:33 -0400 | [diff] [blame] | 2102 | if (data->is_recover) |
| 2103 | nfs4_set_sequence_privileged(&data->c_arg.seq_args); |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 2104 | task = rpc_run_task(&task_setup_data); |
Trond Myklebust | 7a1218a | 2006-03-20 18:11:10 -0500 | [diff] [blame] | 2105 | if (IS_ERR(task)) |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 2106 | return PTR_ERR(task); |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 2107 | status = nfs4_wait_for_completion_rpc_task(task); |
| 2108 | if (status != 0) { |
| 2109 | data->cancelled = 1; |
| 2110 | smp_wmb(); |
| 2111 | } else |
| 2112 | status = data->rpc_status; |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 2113 | rpc_put_task(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2114 | return status; |
| 2115 | } |
| 2116 | |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2117 | static void nfs4_open_prepare(struct rpc_task *task, void *calldata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | { |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2119 | struct nfs4_opendata *data = calldata; |
| 2120 | struct nfs4_state_owner *sp = data->owner; |
Trond Myklebust | 549b19c | 2013-04-16 18:42:34 -0400 | [diff] [blame] | 2121 | struct nfs_client *clp = sp->so_server->nfs_client; |
Trond Myklebust | 2a60618 | 2015-08-19 22:30:00 -0500 | [diff] [blame] | 2122 | enum open_claim_type4 claim = data->o_arg.claim; |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 2123 | |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2124 | if (nfs_wait_on_sequence(data->o_arg.seqid, task) != 0) |
Trond Myklebust | c8da19b | 2013-02-11 19:01:21 -0500 | [diff] [blame] | 2125 | goto out_wait; |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 2126 | /* |
| 2127 | * Check if we still need to send an OPEN call, or if we can use |
| 2128 | * a delegation instead. |
| 2129 | */ |
| 2130 | if (data->state != NULL) { |
| 2131 | struct nfs_delegation *delegation; |
| 2132 | |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 2133 | if (can_open_cached(data->state, data->o_arg.fmode, data->o_arg.open_flags)) |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 2134 | goto out_no_action; |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 2135 | rcu_read_lock(); |
| 2136 | delegation = rcu_dereference(NFS_I(data->state->inode)->delegation); |
Trond Myklebust | 2a60618 | 2015-08-19 22:30:00 -0500 | [diff] [blame] | 2137 | if (can_open_delegated(delegation, data->o_arg.fmode, claim)) |
Trond Myklebust | 652f89f | 2011-12-09 19:05:58 -0500 | [diff] [blame] | 2138 | goto unlock_no_action; |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 2139 | rcu_read_unlock(); |
| 2140 | } |
Trond Myklebust | 95b72eb | 2012-04-20 19:24:51 -0400 | [diff] [blame] | 2141 | /* Update client id. */ |
Trond Myklebust | 549b19c | 2013-04-16 18:42:34 -0400 | [diff] [blame] | 2142 | data->o_arg.clientid = clp->cl_clientid; |
Trond Myklebust | 2a60618 | 2015-08-19 22:30:00 -0500 | [diff] [blame] | 2143 | switch (claim) { |
| 2144 | default: |
| 2145 | break; |
Trond Myklebust | 8188df1 | 2013-04-23 14:31:19 -0400 | [diff] [blame] | 2146 | case NFS4_OPEN_CLAIM_PREVIOUS: |
| 2147 | case NFS4_OPEN_CLAIM_DELEG_CUR_FH: |
| 2148 | case NFS4_OPEN_CLAIM_DELEG_PREV_FH: |
Andy Adamson | e23008e | 2012-10-02 21:07:32 -0400 | [diff] [blame] | 2149 | data->o_arg.open_bitmap = &nfs4_open_noattr_bitmap[0]; |
Trond Myklebust | 8188df1 | 2013-04-23 14:31:19 -0400 | [diff] [blame] | 2150 | case NFS4_OPEN_CLAIM_FH: |
| 2151 | task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_NOATTR]; |
Trond Myklebust | 6f220ed | 2007-07-17 21:50:45 -0400 | [diff] [blame] | 2152 | nfs_copy_fh(&data->o_res.fh, data->o_arg.fh); |
| 2153 | } |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 2154 | data->timestamp = jiffies; |
Trond Myklebust | 035168a | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 2155 | if (nfs4_setup_sequence(data->o_arg.server, |
Andy Adamson | d898528 | 2009-04-01 09:22:21 -0400 | [diff] [blame] | 2156 | &data->o_arg.seq_args, |
Trond Myklebust | 2240a9e | 2012-10-29 18:37:40 -0400 | [diff] [blame] | 2157 | &data->o_res.seq_res, |
| 2158 | task) != 0) |
| 2159 | nfs_release_seqid(data->o_arg.seqid); |
Trond Myklebust | 549b19c | 2013-04-16 18:42:34 -0400 | [diff] [blame] | 2160 | |
| 2161 | /* Set the create mode (note dependency on the session type) */ |
| 2162 | data->o_arg.createmode = NFS4_CREATE_UNCHECKED; |
| 2163 | if (data->o_arg.open_flags & O_EXCL) { |
| 2164 | data->o_arg.createmode = NFS4_CREATE_EXCLUSIVE; |
| 2165 | if (nfs4_has_persistent_session(clp)) |
| 2166 | data->o_arg.createmode = NFS4_CREATE_GUARDED; |
| 2167 | else if (clp->cl_mvops->minor_version > 0) |
| 2168 | data->o_arg.createmode = NFS4_CREATE_EXCLUSIVE4_1; |
| 2169 | } |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 2170 | return; |
Trond Myklebust | 652f89f | 2011-12-09 19:05:58 -0500 | [diff] [blame] | 2171 | unlock_no_action: |
Olga Kornievskaia | 9759b0f | 2015-11-24 13:29:42 -0500 | [diff] [blame] | 2172 | trace_nfs4_cached_open(data->state); |
Trond Myklebust | 652f89f | 2011-12-09 19:05:58 -0500 | [diff] [blame] | 2173 | rcu_read_unlock(); |
Trond Myklebust | 6ee4126 | 2007-07-08 14:11:36 -0400 | [diff] [blame] | 2174 | out_no_action: |
| 2175 | task->tk_action = NULL; |
Trond Myklebust | c8da19b | 2013-02-11 19:01:21 -0500 | [diff] [blame] | 2176 | out_wait: |
Trond Myklebust | b75ad4c | 2012-11-29 17:27:47 -0500 | [diff] [blame] | 2177 | nfs4_sequence_done(task, &data->o_res.seq_res); |
Alexandros Batsakis | b257957 | 2009-12-14 21:27:57 -0800 | [diff] [blame] | 2178 | } |
| 2179 | |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2180 | static void nfs4_open_done(struct rpc_task *task, void *calldata) |
| 2181 | { |
| 2182 | struct nfs4_opendata *data = calldata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2183 | |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2184 | data->rpc_status = task->tk_status; |
Andy Adamson | d898528 | 2009-04-01 09:22:21 -0400 | [diff] [blame] | 2185 | |
Trond Myklebust | 2e80dbe | 2016-08-28 11:50:26 -0400 | [diff] [blame] | 2186 | if (!nfs4_sequence_process(task, &data->o_res.seq_res)) |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 2187 | return; |
Andy Adamson | d898528 | 2009-04-01 09:22:21 -0400 | [diff] [blame] | 2188 | |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2189 | if (task->tk_status == 0) { |
Trond Myklebust | 807d66d8 | 2012-10-02 17:09:00 -0700 | [diff] [blame] | 2190 | if (data->o_res.f_attr->valid & NFS_ATTR_FATTR_TYPE) { |
| 2191 | switch (data->o_res.f_attr->mode & S_IFMT) { |
Trond Myklebust | 6f926b5 | 2005-10-18 14:20:18 -0700 | [diff] [blame] | 2192 | case S_IFREG: |
| 2193 | break; |
| 2194 | case S_IFLNK: |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2195 | data->rpc_status = -ELOOP; |
Trond Myklebust | 6f926b5 | 2005-10-18 14:20:18 -0700 | [diff] [blame] | 2196 | break; |
| 2197 | case S_IFDIR: |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2198 | data->rpc_status = -EISDIR; |
Trond Myklebust | 6f926b5 | 2005-10-18 14:20:18 -0700 | [diff] [blame] | 2199 | break; |
| 2200 | default: |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2201 | data->rpc_status = -ENOTDIR; |
Trond Myklebust | 807d66d8 | 2012-10-02 17:09:00 -0700 | [diff] [blame] | 2202 | } |
Trond Myklebust | 6f926b5 | 2005-10-18 14:20:18 -0700 | [diff] [blame] | 2203 | } |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 2204 | renew_lease(data->o_res.server, data->timestamp); |
Trond Myklebust | 0f9f95e | 2007-07-08 16:19:56 -0400 | [diff] [blame] | 2205 | if (!(data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM)) |
| 2206 | nfs_confirm_seqid(&data->owner->so_seqid, 0); |
Trond Myklebust | 6f926b5 | 2005-10-18 14:20:18 -0700 | [diff] [blame] | 2207 | } |
Trond Myklebust | 3e30991 | 2007-07-07 13:19:59 -0400 | [diff] [blame] | 2208 | data->rpc_done = 1; |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2209 | } |
Trond Myklebust | 6f926b5 | 2005-10-18 14:20:18 -0700 | [diff] [blame] | 2210 | |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2211 | static void nfs4_open_release(void *calldata) |
| 2212 | { |
| 2213 | struct nfs4_opendata *data = calldata; |
| 2214 | struct nfs4_state *state = NULL; |
| 2215 | |
| 2216 | /* If this request hasn't been cancelled, do nothing */ |
| 2217 | if (data->cancelled == 0) |
| 2218 | goto out_free; |
| 2219 | /* In case of error, no cleanup! */ |
Trond Myklebust | 3e30991 | 2007-07-07 13:19:59 -0400 | [diff] [blame] | 2220 | if (data->rpc_status != 0 || !data->rpc_done) |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2221 | goto out_free; |
| 2222 | /* In case we need an open_confirm, no cleanup! */ |
| 2223 | if (data->o_res.rflags & NFS4_OPEN_RESULT_CONFIRM) |
| 2224 | goto out_free; |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2225 | state = nfs4_opendata_to_nfs4_state(data); |
Trond Myklebust | 1b370bc | 2007-07-07 08:04:47 -0400 | [diff] [blame] | 2226 | if (!IS_ERR(state)) |
Al Viro | 643168c | 2011-06-22 18:20:23 -0400 | [diff] [blame] | 2227 | nfs4_close_state(state, data->o_arg.fmode); |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2228 | out_free: |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 2229 | nfs4_opendata_put(data); |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2230 | } |
| 2231 | |
| 2232 | static const struct rpc_call_ops nfs4_open_ops = { |
| 2233 | .rpc_call_prepare = nfs4_open_prepare, |
| 2234 | .rpc_call_done = nfs4_open_done, |
| 2235 | .rpc_release = nfs4_open_release, |
| 2236 | }; |
| 2237 | |
Alexandros Batsakis | b257957 | 2009-12-14 21:27:57 -0800 | [diff] [blame] | 2238 | static int nfs4_run_open_task(struct nfs4_opendata *data, int isrecover) |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2239 | { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 2240 | struct inode *dir = d_inode(data->dir); |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2241 | struct nfs_server *server = NFS_SERVER(dir); |
| 2242 | struct nfs_openargs *o_arg = &data->o_arg; |
| 2243 | struct nfs_openres *o_res = &data->o_res; |
| 2244 | struct rpc_task *task; |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 2245 | struct rpc_message msg = { |
| 2246 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN], |
| 2247 | .rpc_argp = o_arg, |
| 2248 | .rpc_resp = o_res, |
| 2249 | .rpc_cred = data->owner->so_cred, |
| 2250 | }; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 2251 | struct rpc_task_setup task_setup_data = { |
| 2252 | .rpc_client = server->client, |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 2253 | .rpc_message = &msg, |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 2254 | .callback_ops = &nfs4_open_ops, |
| 2255 | .callback_data = data, |
Trond Myklebust | 101070c | 2008-02-19 20:04:23 -0500 | [diff] [blame] | 2256 | .workqueue = nfsiod_workqueue, |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 2257 | .flags = RPC_TASK_ASYNC, |
| 2258 | }; |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2259 | int status; |
| 2260 | |
Chuck Lever | a9c92d6 | 2013-08-09 12:48:18 -0400 | [diff] [blame] | 2261 | nfs4_init_sequence(&o_arg->seq_args, &o_res->seq_res, 1); |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 2262 | kref_get(&data->kref); |
Trond Myklebust | 3e30991 | 2007-07-07 13:19:59 -0400 | [diff] [blame] | 2263 | data->rpc_done = 0; |
| 2264 | data->rpc_status = 0; |
Trond Myklebust | 2ced46c | 2007-07-03 23:48:13 -0400 | [diff] [blame] | 2265 | data->cancelled = 0; |
Trond Myklebust | bdeca1b | 2013-04-23 14:52:44 -0400 | [diff] [blame] | 2266 | data->is_recover = 0; |
| 2267 | if (isrecover) { |
Trond Myklebust | 8fe72ba | 2012-10-29 19:02:20 -0400 | [diff] [blame] | 2268 | nfs4_set_sequence_privileged(&o_arg->seq_args); |
Trond Myklebust | bdeca1b | 2013-04-23 14:52:44 -0400 | [diff] [blame] | 2269 | data->is_recover = 1; |
| 2270 | } |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 2271 | task = rpc_run_task(&task_setup_data); |
Alexandros Batsakis | b257957 | 2009-12-14 21:27:57 -0800 | [diff] [blame] | 2272 | if (IS_ERR(task)) |
| 2273 | return PTR_ERR(task); |
| 2274 | status = nfs4_wait_for_completion_rpc_task(task); |
| 2275 | if (status != 0) { |
| 2276 | data->cancelled = 1; |
| 2277 | smp_wmb(); |
| 2278 | } else |
| 2279 | status = data->rpc_status; |
| 2280 | rpc_put_task(task); |
| 2281 | |
| 2282 | return status; |
| 2283 | } |
| 2284 | |
| 2285 | static int _nfs4_recover_proc_open(struct nfs4_opendata *data) |
| 2286 | { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 2287 | struct inode *dir = d_inode(data->dir); |
Alexandros Batsakis | b257957 | 2009-12-14 21:27:57 -0800 | [diff] [blame] | 2288 | struct nfs_openres *o_res = &data->o_res; |
| 2289 | int status; |
| 2290 | |
| 2291 | status = nfs4_run_open_task(data, 1); |
| 2292 | if (status != 0 || !data->rpc_done) |
| 2293 | return status; |
| 2294 | |
Trond Myklebust | 6926afd | 2012-01-07 13:22:46 -0500 | [diff] [blame] | 2295 | nfs_fattr_map_and_free_names(NFS_SERVER(dir), &data->f_attr); |
| 2296 | |
Alexandros Batsakis | b257957 | 2009-12-14 21:27:57 -0800 | [diff] [blame] | 2297 | if (o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) { |
| 2298 | status = _nfs4_proc_open_confirm(data); |
| 2299 | if (status != 0) |
| 2300 | return status; |
| 2301 | } |
| 2302 | |
| 2303 | return status; |
| 2304 | } |
| 2305 | |
Trond Myklebust | f3792d6 | 2014-07-10 08:54:32 -0400 | [diff] [blame] | 2306 | /* |
| 2307 | * Additional permission checks in order to distinguish between an |
| 2308 | * open for read, and an open for execute. This works around the |
| 2309 | * fact that NFSv4 OPEN treats read and execute permissions as being |
| 2310 | * the same. |
| 2311 | * Note that in the non-execute case, we want to turn off permission |
| 2312 | * checking if we just created a new file (POSIX open() semantics). |
| 2313 | */ |
Weston Andros Adamson | 6168f62 | 2012-09-10 14:00:46 -0400 | [diff] [blame] | 2314 | static int nfs4_opendata_access(struct rpc_cred *cred, |
| 2315 | struct nfs4_opendata *opendata, |
Weston Andros Adamson | f8d9a89 | 2013-01-03 16:42:29 -0500 | [diff] [blame] | 2316 | struct nfs4_state *state, fmode_t fmode, |
| 2317 | int openflags) |
Weston Andros Adamson | 6168f62 | 2012-09-10 14:00:46 -0400 | [diff] [blame] | 2318 | { |
| 2319 | struct nfs_access_entry cache; |
| 2320 | u32 mask; |
| 2321 | |
| 2322 | /* access call failed or for some reason the server doesn't |
| 2323 | * support any access modes -- defer access call until later */ |
| 2324 | if (opendata->o_res.access_supported == 0) |
| 2325 | return 0; |
| 2326 | |
| 2327 | mask = 0; |
Trond Myklebust | f3792d6 | 2014-07-10 08:54:32 -0400 | [diff] [blame] | 2328 | /* |
| 2329 | * Use openflags to check for exec, because fmode won't |
| 2330 | * always have FMODE_EXEC set when file open for exec. |
| 2331 | */ |
Weston Andros Adamson | f8d9a89 | 2013-01-03 16:42:29 -0500 | [diff] [blame] | 2332 | if (openflags & __FMODE_EXEC) { |
| 2333 | /* ONLY check for exec rights */ |
| 2334 | mask = MAY_EXEC; |
Trond Myklebust | f3792d6 | 2014-07-10 08:54:32 -0400 | [diff] [blame] | 2335 | } else if ((fmode & FMODE_READ) && !opendata->file_created) |
Weston Andros Adamson | f8d9a89 | 2013-01-03 16:42:29 -0500 | [diff] [blame] | 2336 | mask = MAY_READ; |
Weston Andros Adamson | 6168f62 | 2012-09-10 14:00:46 -0400 | [diff] [blame] | 2337 | |
| 2338 | cache.cred = cred; |
| 2339 | cache.jiffies = jiffies; |
| 2340 | nfs_access_set_mask(&cache, opendata->o_res.access_result); |
| 2341 | nfs_access_add_cache(state->inode, &cache); |
| 2342 | |
Weston Andros Adamson | bbd3a8e | 2012-10-02 14:49:51 -0700 | [diff] [blame] | 2343 | if ((mask & ~cache.mask & (MAY_READ | MAY_EXEC)) == 0) |
Weston Andros Adamson | 6168f62 | 2012-09-10 14:00:46 -0400 | [diff] [blame] | 2344 | return 0; |
| 2345 | |
| 2346 | /* even though OPEN succeeded, access is denied. Close the file */ |
| 2347 | nfs4_close_state(state, fmode); |
Weston Andros Adamson | 998f40b | 2012-11-02 18:00:56 -0400 | [diff] [blame] | 2348 | return -EACCES; |
Weston Andros Adamson | 6168f62 | 2012-09-10 14:00:46 -0400 | [diff] [blame] | 2349 | } |
| 2350 | |
Alexandros Batsakis | b257957 | 2009-12-14 21:27:57 -0800 | [diff] [blame] | 2351 | /* |
| 2352 | * Note: On error, nfs4_proc_open will free the struct nfs4_opendata |
| 2353 | */ |
| 2354 | static int _nfs4_proc_open(struct nfs4_opendata *data) |
| 2355 | { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 2356 | struct inode *dir = d_inode(data->dir); |
Alexandros Batsakis | b257957 | 2009-12-14 21:27:57 -0800 | [diff] [blame] | 2357 | struct nfs_server *server = NFS_SERVER(dir); |
| 2358 | struct nfs_openargs *o_arg = &data->o_arg; |
| 2359 | struct nfs_openres *o_res = &data->o_res; |
| 2360 | int status; |
| 2361 | |
| 2362 | status = nfs4_run_open_task(data, 0); |
Trond Myklebust | 08ef7bd | 2011-10-18 16:11:49 -0700 | [diff] [blame] | 2363 | if (!data->rpc_done) |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2364 | return status; |
Trond Myklebust | 08ef7bd | 2011-10-18 16:11:49 -0700 | [diff] [blame] | 2365 | if (status != 0) { |
| 2366 | if (status == -NFS4ERR_BADNAME && |
| 2367 | !(o_arg->open_flags & O_CREAT)) |
| 2368 | return -ENOENT; |
| 2369 | return status; |
| 2370 | } |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2371 | |
Trond Myklebust | 6926afd | 2012-01-07 13:22:46 -0500 | [diff] [blame] | 2372 | nfs_fattr_map_and_free_names(server, &data->f_attr); |
| 2373 | |
Trond Myklebust | 5bc2afc | 2013-09-23 18:01:28 -0400 | [diff] [blame] | 2374 | if (o_arg->open_flags & O_CREAT) { |
Trond Myklebust | 56ae19f | 2005-10-27 22:12:40 -0400 | [diff] [blame] | 2375 | update_changeattr(dir, &o_res->cinfo); |
Trond Myklebust | 5bc2afc | 2013-09-23 18:01:28 -0400 | [diff] [blame] | 2376 | if (o_arg->open_flags & O_EXCL) |
| 2377 | data->file_created = 1; |
| 2378 | else if (o_res->cinfo.before != o_res->cinfo.after) |
| 2379 | data->file_created = 1; |
| 2380 | } |
Trond Myklebust | 0df5dd4 | 2010-04-11 16:48:44 -0400 | [diff] [blame] | 2381 | if ((o_res->rflags & NFS4_OPEN_RESULT_LOCKTYPE_POSIX) == 0) |
| 2382 | server->caps &= ~NFS_CAP_POSIX_LOCK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2383 | if(o_res->rflags & NFS4_OPEN_RESULT_CONFIRM) { |
Trond Myklebust | cdd4e68 | 2006-01-03 09:55:12 +0100 | [diff] [blame] | 2384 | status = _nfs4_proc_open_confirm(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2385 | if (status != 0) |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2386 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2387 | } |
| 2388 | if (!(o_res->f_attr->valid & NFS_ATTR_FATTR)) |
Andy Adamson | 8935ef6 | 2014-05-23 06:22:59 -0700 | [diff] [blame] | 2389 | nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr, o_res->f_label); |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2390 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2391 | } |
| 2392 | |
Andy Adamson | d83217c | 2011-03-01 01:34:17 +0000 | [diff] [blame] | 2393 | static int nfs4_recover_expired_lease(struct nfs_server *server) |
| 2394 | { |
| 2395 | return nfs4_client_recover_expired_lease(server->nfs_client); |
| 2396 | } |
| 2397 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2398 | /* |
| 2399 | * OPEN_EXPIRED: |
| 2400 | * reclaim state on the server after a network partition. |
| 2401 | * Assumes caller holds the appropriate lock |
| 2402 | */ |
Trond Myklebust | 539cd03 | 2007-06-05 11:46:42 -0400 | [diff] [blame] | 2403 | static int _nfs4_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2404 | { |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 2405 | struct nfs4_opendata *opendata; |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 2406 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2407 | |
Trond Myklebust | 4a1c089 | 2013-03-15 14:57:33 -0400 | [diff] [blame] | 2408 | opendata = nfs4_open_recoverdata_alloc(ctx, state, |
Trond Myklebust | 49f9a0f | 2013-03-15 16:44:28 -0400 | [diff] [blame] | 2409 | NFS4_OPEN_CLAIM_FH); |
Trond Myklebust | 6f220ed | 2007-07-17 21:50:45 -0400 | [diff] [blame] | 2410 | if (IS_ERR(opendata)) |
| 2411 | return PTR_ERR(opendata); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 2412 | ret = nfs4_open_recover(opendata, state); |
Trond Myklebust | 35d0577 | 2008-04-05 15:54:17 -0400 | [diff] [blame] | 2413 | if (ret == -ESTALE) |
Al Viro | 3d4ff43 | 2011-06-22 18:40:12 -0400 | [diff] [blame] | 2414 | d_drop(ctx->dentry); |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 2415 | nfs4_opendata_put(opendata); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 2416 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2417 | } |
| 2418 | |
Trond Myklebust | a9ed2e2 | 2009-12-03 15:53:21 -0500 | [diff] [blame] | 2419 | static int nfs4_do_open_expired(struct nfs_open_context *ctx, struct nfs4_state *state) |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 2420 | { |
Trond Myklebust | 539cd03 | 2007-06-05 11:46:42 -0400 | [diff] [blame] | 2421 | struct nfs_server *server = NFS_SERVER(state->inode); |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 2422 | struct nfs4_exception exception = { }; |
| 2423 | int err; |
| 2424 | |
| 2425 | do { |
Trond Myklebust | 539cd03 | 2007-06-05 11:46:42 -0400 | [diff] [blame] | 2426 | err = _nfs4_open_expired(ctx, state); |
Trond Myklebust | 42113a7 | 2013-08-12 16:19:27 -0400 | [diff] [blame] | 2427 | trace_nfs4_open_expired(ctx, 0, err); |
Trond Myklebust | 49f9a0f | 2013-03-15 16:44:28 -0400 | [diff] [blame] | 2428 | if (nfs4_clear_cap_atomic_open_v1(server, err, &exception)) |
| 2429 | continue; |
Trond Myklebust | a9ed2e2 | 2009-12-03 15:53:21 -0500 | [diff] [blame] | 2430 | switch (err) { |
| 2431 | default: |
| 2432 | goto out; |
| 2433 | case -NFS4ERR_GRACE: |
| 2434 | case -NFS4ERR_DELAY: |
| 2435 | nfs4_handle_exception(server, err, &exception); |
| 2436 | err = 0; |
| 2437 | } |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 2438 | } while (exception.retry); |
Trond Myklebust | a9ed2e2 | 2009-12-03 15:53:21 -0500 | [diff] [blame] | 2439 | out: |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 2440 | return err; |
| 2441 | } |
| 2442 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2443 | static int nfs4_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state) |
| 2444 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2445 | struct nfs_open_context *ctx; |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 2446 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2447 | |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 2448 | ctx = nfs4_state_find_open_context(state); |
| 2449 | if (IS_ERR(ctx)) |
Trond Myklebust | 91876b1 | 2013-03-28 14:01:33 -0400 | [diff] [blame] | 2450 | return -EAGAIN; |
Trond Myklebust | 539cd03 | 2007-06-05 11:46:42 -0400 | [diff] [blame] | 2451 | ret = nfs4_do_open_expired(ctx, state); |
Trond Myklebust | 864472e | 2006-01-03 09:55:15 +0100 | [diff] [blame] | 2452 | put_nfs_open_context(ctx); |
| 2453 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2454 | } |
| 2455 | |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 2456 | static void nfs_finish_clear_delegation_stateid(struct nfs4_state *state, |
| 2457 | const nfs4_stateid *stateid) |
Trond Myklebust | 4dfd4f7 | 2014-10-17 15:10:25 +0300 | [diff] [blame] | 2458 | { |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 2459 | nfs_remove_bad_delegation(state->inode, stateid); |
Trond Myklebust | 4dfd4f7 | 2014-10-17 15:10:25 +0300 | [diff] [blame] | 2460 | write_seqlock(&state->seqlock); |
| 2461 | nfs4_stateid_copy(&state->stateid, &state->open_stateid); |
| 2462 | write_sequnlock(&state->seqlock); |
| 2463 | clear_bit(NFS_DELEGATED_STATE, &state->flags); |
| 2464 | } |
| 2465 | |
| 2466 | static void nfs40_clear_delegation_stateid(struct nfs4_state *state) |
| 2467 | { |
| 2468 | if (rcu_access_pointer(NFS_I(state->inode)->delegation) != NULL) |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 2469 | nfs_finish_clear_delegation_stateid(state, NULL); |
Trond Myklebust | 4dfd4f7 | 2014-10-17 15:10:25 +0300 | [diff] [blame] | 2470 | } |
| 2471 | |
| 2472 | static int nfs40_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state) |
| 2473 | { |
| 2474 | /* NFSv4.0 doesn't allow for delegation recovery on open expire */ |
| 2475 | nfs40_clear_delegation_stateid(state); |
| 2476 | return nfs4_open_expired(sp, state); |
| 2477 | } |
| 2478 | |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 2479 | static int nfs40_test_and_free_expired_stateid(struct nfs_server *server, |
| 2480 | nfs4_stateid *stateid, |
| 2481 | struct rpc_cred *cred) |
| 2482 | { |
| 2483 | return -NFS4ERR_BAD_STATEID; |
| 2484 | } |
| 2485 | |
Bryan Schumaker | f062eb6 | 2011-06-02 14:59:10 -0400 | [diff] [blame] | 2486 | #if defined(CONFIG_NFS_V4_1) |
Trond Myklebust | 4586f6e | 2016-09-22 13:38:57 -0400 | [diff] [blame] | 2487 | static int nfs41_test_and_free_expired_stateid(struct nfs_server *server, |
| 2488 | nfs4_stateid *stateid, |
| 2489 | struct rpc_cred *cred) |
| 2490 | { |
| 2491 | int status; |
| 2492 | |
Trond Myklebust | f7a62ad | 2016-09-22 13:39:02 -0400 | [diff] [blame] | 2493 | switch (stateid->type) { |
| 2494 | default: |
| 2495 | break; |
| 2496 | case NFS4_INVALID_STATEID_TYPE: |
| 2497 | case NFS4_SPECIAL_STATEID_TYPE: |
| 2498 | return -NFS4ERR_BAD_STATEID; |
| 2499 | case NFS4_REVOKED_STATEID_TYPE: |
| 2500 | goto out_free; |
| 2501 | } |
Trond Myklebust | 4586f6e | 2016-09-22 13:38:57 -0400 | [diff] [blame] | 2502 | |
Trond Myklebust | f7a62ad | 2016-09-22 13:39:02 -0400 | [diff] [blame] | 2503 | status = nfs41_test_stateid(server, stateid, cred); |
Trond Myklebust | 4586f6e | 2016-09-22 13:38:57 -0400 | [diff] [blame] | 2504 | switch (status) { |
| 2505 | case -NFS4ERR_EXPIRED: |
| 2506 | case -NFS4ERR_ADMIN_REVOKED: |
| 2507 | case -NFS4ERR_DELEG_REVOKED: |
Trond Myklebust | f7a62ad | 2016-09-22 13:39:02 -0400 | [diff] [blame] | 2508 | break; |
| 2509 | default: |
Trond Myklebust | 4586f6e | 2016-09-22 13:38:57 -0400 | [diff] [blame] | 2510 | return status; |
| 2511 | } |
Trond Myklebust | f7a62ad | 2016-09-22 13:39:02 -0400 | [diff] [blame] | 2512 | out_free: |
| 2513 | /* Ack the revoked state to the server */ |
Trond Myklebust | f0b0bf8 | 2016-09-22 13:39:04 -0400 | [diff] [blame] | 2514 | nfs41_free_stateid(server, stateid, cred, true); |
Trond Myklebust | f7a62ad | 2016-09-22 13:39:02 -0400 | [diff] [blame] | 2515 | return -NFS4ERR_EXPIRED; |
Trond Myklebust | 4586f6e | 2016-09-22 13:38:57 -0400 | [diff] [blame] | 2516 | } |
| 2517 | |
Trond Myklebust | 0c116ca | 2014-11-12 14:44:49 -0500 | [diff] [blame] | 2518 | static void nfs41_check_delegation_stateid(struct nfs4_state *state) |
Bryan Schumaker | f062eb6 | 2011-06-02 14:59:10 -0400 | [diff] [blame] | 2519 | { |
Bryan Schumaker | f062eb6 | 2011-06-02 14:59:10 -0400 | [diff] [blame] | 2520 | struct nfs_server *server = NFS_SERVER(state->inode); |
Trond Myklebust | 0c116ca | 2014-11-12 14:44:49 -0500 | [diff] [blame] | 2521 | nfs4_stateid stateid; |
Trond Myklebust | ab7cb0d | 2013-05-20 11:20:27 -0400 | [diff] [blame] | 2522 | struct nfs_delegation *delegation; |
Trond Myklebust | 0c116ca | 2014-11-12 14:44:49 -0500 | [diff] [blame] | 2523 | struct rpc_cred *cred; |
| 2524 | int status; |
Chuck Lever | 3e60ffd | 2012-07-11 16:30:14 -0400 | [diff] [blame] | 2525 | |
Trond Myklebust | ab7cb0d | 2013-05-20 11:20:27 -0400 | [diff] [blame] | 2526 | /* Get the delegation credential for use by test/free_stateid */ |
| 2527 | rcu_read_lock(); |
| 2528 | delegation = rcu_dereference(NFS_I(state->inode)->delegation); |
Trond Myklebust | 0c116ca | 2014-11-12 14:44:49 -0500 | [diff] [blame] | 2529 | if (delegation == NULL) { |
Trond Myklebust | ab7cb0d | 2013-05-20 11:20:27 -0400 | [diff] [blame] | 2530 | rcu_read_unlock(); |
Trond Myklebust | 0c116ca | 2014-11-12 14:44:49 -0500 | [diff] [blame] | 2531 | return; |
| 2532 | } |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 2533 | |
| 2534 | nfs4_stateid_copy(&stateid, &delegation->stateid); |
Trond Myklebust | 4c8e544 | 2016-09-22 13:38:55 -0400 | [diff] [blame] | 2535 | if (test_bit(NFS_DELEGATION_REVOKED, &delegation->flags)) { |
| 2536 | rcu_read_unlock(); |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 2537 | nfs_finish_clear_delegation_stateid(state, &stateid); |
Trond Myklebust | 4c8e544 | 2016-09-22 13:38:55 -0400 | [diff] [blame] | 2538 | return; |
| 2539 | } |
Trond Myklebust | 0c116ca | 2014-11-12 14:44:49 -0500 | [diff] [blame] | 2540 | |
Trond Myklebust | 63d63cb | 2016-09-22 13:39:01 -0400 | [diff] [blame] | 2541 | if (!test_and_clear_bit(NFS_DELEGATION_TEST_EXPIRED, &delegation->flags)) { |
| 2542 | rcu_read_unlock(); |
| 2543 | return; |
| 2544 | } |
| 2545 | |
Trond Myklebust | 0c116ca | 2014-11-12 14:44:49 -0500 | [diff] [blame] | 2546 | cred = get_rpccred(delegation->cred); |
| 2547 | rcu_read_unlock(); |
Trond Myklebust | 4586f6e | 2016-09-22 13:38:57 -0400 | [diff] [blame] | 2548 | status = nfs41_test_and_free_expired_stateid(server, &stateid, cred); |
Trond Myklebust | 0c116ca | 2014-11-12 14:44:49 -0500 | [diff] [blame] | 2549 | trace_nfs4_test_delegation_stateid(state, NULL, status); |
Trond Myklebust | f7a62ad | 2016-09-22 13:39:02 -0400 | [diff] [blame] | 2550 | if (status == -NFS4ERR_EXPIRED || status == -NFS4ERR_BAD_STATEID) |
Trond Myklebust | 41020b6 | 2016-09-22 13:38:58 -0400 | [diff] [blame] | 2551 | nfs_finish_clear_delegation_stateid(state, &stateid); |
Trond Myklebust | ab7cb0d | 2013-05-20 11:20:27 -0400 | [diff] [blame] | 2552 | |
Trond Myklebust | 0c116ca | 2014-11-12 14:44:49 -0500 | [diff] [blame] | 2553 | put_rpccred(cred); |
Chuck Lever | 3e60ffd | 2012-07-11 16:30:14 -0400 | [diff] [blame] | 2554 | } |
| 2555 | |
| 2556 | /** |
Trond Myklebust | c5896fc | 2016-09-22 13:39:03 -0400 | [diff] [blame] | 2557 | * nfs41_check_expired_locks - possibly free a lock stateid |
| 2558 | * |
| 2559 | * @state: NFSv4 state for an inode |
| 2560 | * |
| 2561 | * Returns NFS_OK if recovery for this stateid is now finished. |
| 2562 | * Otherwise a negative NFS4ERR value is returned. |
| 2563 | */ |
| 2564 | static int nfs41_check_expired_locks(struct nfs4_state *state) |
| 2565 | { |
| 2566 | int status, ret = NFS_OK; |
| 2567 | struct nfs4_lock_state *lsp; |
| 2568 | struct nfs_server *server = NFS_SERVER(state->inode); |
| 2569 | |
| 2570 | if (!test_bit(LK_STATE_IN_USE, &state->flags)) |
| 2571 | goto out; |
| 2572 | list_for_each_entry(lsp, &state->lock_states, ls_locks) { |
| 2573 | if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags)) { |
| 2574 | struct rpc_cred *cred = lsp->ls_state->owner->so_cred; |
| 2575 | |
| 2576 | status = nfs41_test_and_free_expired_stateid(server, |
| 2577 | &lsp->ls_stateid, |
| 2578 | cred); |
| 2579 | trace_nfs4_test_lock_stateid(state, lsp, status); |
| 2580 | if (status == -NFS4ERR_EXPIRED || |
| 2581 | status == -NFS4ERR_BAD_STATEID) { |
| 2582 | clear_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags); |
Trond Myklebust | 67dd483 | 2016-09-22 13:39:17 -0400 | [diff] [blame] | 2583 | lsp->ls_stateid.type = NFS4_INVALID_STATEID_TYPE; |
Trond Myklebust | c5896fc | 2016-09-22 13:39:03 -0400 | [diff] [blame] | 2584 | if (!recover_lost_locks) |
| 2585 | set_bit(NFS_LOCK_LOST, &lsp->ls_flags); |
| 2586 | } else if (status != NFS_OK) { |
| 2587 | ret = status; |
| 2588 | break; |
| 2589 | } |
| 2590 | } |
| 2591 | }; |
| 2592 | out: |
| 2593 | return ret; |
| 2594 | } |
| 2595 | |
| 2596 | /** |
Chuck Lever | 3e60ffd | 2012-07-11 16:30:14 -0400 | [diff] [blame] | 2597 | * nfs41_check_open_stateid - possibly free an open stateid |
| 2598 | * |
| 2599 | * @state: NFSv4 state for an inode |
| 2600 | * |
| 2601 | * Returns NFS_OK if recovery for this stateid is now finished. |
| 2602 | * Otherwise a negative NFS4ERR value is returned. |
| 2603 | */ |
| 2604 | static int nfs41_check_open_stateid(struct nfs4_state *state) |
| 2605 | { |
| 2606 | struct nfs_server *server = NFS_SERVER(state->inode); |
Bryan Schumaker | fcb6d9c | 2012-09-26 15:25:53 -0400 | [diff] [blame] | 2607 | nfs4_stateid *stateid = &state->open_stateid; |
Trond Myklebust | ab7cb0d | 2013-05-20 11:20:27 -0400 | [diff] [blame] | 2608 | struct rpc_cred *cred = state->owner->so_cred; |
Chuck Lever | 3e60ffd | 2012-07-11 16:30:14 -0400 | [diff] [blame] | 2609 | int status; |
| 2610 | |
Trond Myklebust | b134fc4 | 2016-09-22 13:39:16 -0400 | [diff] [blame] | 2611 | if (test_bit(NFS_OPEN_STATE, &state->flags) == 0) { |
Trond Myklebust | 8a64c4e | 2016-09-22 13:39:21 -0400 | [diff] [blame] | 2612 | if (test_bit(NFS_DELEGATED_STATE, &state->flags) == 0) { |
| 2613 | if (nfs4_have_delegation(state->inode, state->state)) |
| 2614 | return NFS_OK; |
| 2615 | return -NFS4ERR_OPENMODE; |
| 2616 | } |
Trond Myklebust | b134fc4 | 2016-09-22 13:39:16 -0400 | [diff] [blame] | 2617 | return -NFS4ERR_BAD_STATEID; |
| 2618 | } |
Trond Myklebust | 4586f6e | 2016-09-22 13:38:57 -0400 | [diff] [blame] | 2619 | status = nfs41_test_and_free_expired_stateid(server, stateid, cred); |
Trond Myklebust | 08cb47f | 2013-08-20 21:59:40 -0400 | [diff] [blame] | 2620 | trace_nfs4_test_open_stateid(state, NULL, status); |
Trond Myklebust | f7a62ad | 2016-09-22 13:39:02 -0400 | [diff] [blame] | 2621 | if (status == -NFS4ERR_EXPIRED || status == -NFS4ERR_BAD_STATEID) { |
Chuck Lever | 3e60ffd | 2012-07-11 16:30:14 -0400 | [diff] [blame] | 2622 | clear_bit(NFS_O_RDONLY_STATE, &state->flags); |
| 2623 | clear_bit(NFS_O_WRONLY_STATE, &state->flags); |
| 2624 | clear_bit(NFS_O_RDWR_STATE, &state->flags); |
Trond Myklebust | fd068b2 | 2013-04-22 11:29:51 -0400 | [diff] [blame] | 2625 | clear_bit(NFS_OPEN_STATE, &state->flags); |
Trond Myklebust | 67dd483 | 2016-09-22 13:39:17 -0400 | [diff] [blame] | 2626 | stateid->type = NFS4_INVALID_STATEID_TYPE; |
Bryan Schumaker | b01dd1d | 2012-01-31 10:39:30 -0500 | [diff] [blame] | 2627 | } |
Trond Myklebust | 8a64c4e | 2016-09-22 13:39:21 -0400 | [diff] [blame] | 2628 | if (status != NFS_OK) |
| 2629 | return status; |
| 2630 | if (nfs_open_stateid_recover_openmode(state)) |
| 2631 | return -NFS4ERR_OPENMODE; |
| 2632 | return NFS_OK; |
Bryan Schumaker | b01dd1d | 2012-01-31 10:39:30 -0500 | [diff] [blame] | 2633 | } |
| 2634 | |
| 2635 | static int nfs41_open_expired(struct nfs4_state_owner *sp, struct nfs4_state *state) |
| 2636 | { |
Chuck Lever | eb64cf9 | 2012-07-11 16:30:05 -0400 | [diff] [blame] | 2637 | int status; |
Bryan Schumaker | b01dd1d | 2012-01-31 10:39:30 -0500 | [diff] [blame] | 2638 | |
Trond Myklebust | 0c116ca | 2014-11-12 14:44:49 -0500 | [diff] [blame] | 2639 | nfs41_check_delegation_stateid(state); |
Trond Myklebust | c5896fc | 2016-09-22 13:39:03 -0400 | [diff] [blame] | 2640 | status = nfs41_check_expired_locks(state); |
| 2641 | if (status != NFS_OK) |
| 2642 | return status; |
Chuck Lever | 3e60ffd | 2012-07-11 16:30:14 -0400 | [diff] [blame] | 2643 | status = nfs41_check_open_stateid(state); |
Chuck Lever | eb64cf9 | 2012-07-11 16:30:05 -0400 | [diff] [blame] | 2644 | if (status != NFS_OK) |
| 2645 | status = nfs4_open_expired(sp, state); |
| 2646 | return status; |
Bryan Schumaker | f062eb6 | 2011-06-02 14:59:10 -0400 | [diff] [blame] | 2647 | } |
| 2648 | #endif |
| 2649 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2650 | /* |
Jeff Layton | aa53ed5 | 2007-06-05 14:49:03 -0400 | [diff] [blame] | 2651 | * on an EXCLUSIVE create, the server should send back a bitmask with FATTR4-* |
| 2652 | * fields corresponding to attributes that were used to store the verifier. |
| 2653 | * Make sure we clobber those fields in the later setattr call |
| 2654 | */ |
Kinglong Mee | 5334c5b | 2015-08-26 21:13:37 +0800 | [diff] [blame] | 2655 | static inline void nfs4_exclusive_attrset(struct nfs4_opendata *opendata, |
| 2656 | struct iattr *sattr, struct nfs4_label **label) |
Jeff Layton | aa53ed5 | 2007-06-05 14:49:03 -0400 | [diff] [blame] | 2657 | { |
Kinglong Mee | 5334c5b | 2015-08-26 21:13:37 +0800 | [diff] [blame] | 2658 | const u32 *attrset = opendata->o_res.attrset; |
| 2659 | |
| 2660 | if ((attrset[1] & FATTR4_WORD1_TIME_ACCESS) && |
Jeff Layton | aa53ed5 | 2007-06-05 14:49:03 -0400 | [diff] [blame] | 2661 | !(sattr->ia_valid & ATTR_ATIME_SET)) |
| 2662 | sattr->ia_valid |= ATTR_ATIME; |
| 2663 | |
Kinglong Mee | 5334c5b | 2015-08-26 21:13:37 +0800 | [diff] [blame] | 2664 | if ((attrset[1] & FATTR4_WORD1_TIME_MODIFY) && |
Jeff Layton | aa53ed5 | 2007-06-05 14:49:03 -0400 | [diff] [blame] | 2665 | !(sattr->ia_valid & ATTR_MTIME_SET)) |
| 2666 | sattr->ia_valid |= ATTR_MTIME; |
Kinglong Mee | 5334c5b | 2015-08-26 21:13:37 +0800 | [diff] [blame] | 2667 | |
| 2668 | /* Except MODE, it seems harmless of setting twice. */ |
| 2669 | if ((attrset[1] & FATTR4_WORD1_MODE)) |
| 2670 | sattr->ia_valid &= ~ATTR_MODE; |
| 2671 | |
| 2672 | if (attrset[2] & FATTR4_WORD2_SECURITY_LABEL) |
| 2673 | *label = NULL; |
Jeff Layton | aa53ed5 | 2007-06-05 14:49:03 -0400 | [diff] [blame] | 2674 | } |
| 2675 | |
Trond Myklebust | c21443c | 2013-02-07 14:26:21 -0500 | [diff] [blame] | 2676 | static int _nfs4_open_and_get_state(struct nfs4_opendata *opendata, |
| 2677 | fmode_t fmode, |
| 2678 | int flags, |
Trond Myklebust | 3efb972 | 2013-05-29 13:17:04 -0400 | [diff] [blame] | 2679 | struct nfs_open_context *ctx) |
Trond Myklebust | c21443c | 2013-02-07 14:26:21 -0500 | [diff] [blame] | 2680 | { |
| 2681 | struct nfs4_state_owner *sp = opendata->owner; |
| 2682 | struct nfs_server *server = sp->so_server; |
Trond Myklebust | 275bb30 | 2013-05-29 13:11:28 -0400 | [diff] [blame] | 2683 | struct dentry *dentry; |
Trond Myklebust | c21443c | 2013-02-07 14:26:21 -0500 | [diff] [blame] | 2684 | struct nfs4_state *state; |
| 2685 | unsigned int seq; |
| 2686 | int ret; |
| 2687 | |
| 2688 | seq = raw_seqcount_begin(&sp->so_reclaim_seqcount); |
| 2689 | |
| 2690 | ret = _nfs4_proc_open(opendata); |
Trond Myklebust | dca78001 | 2014-10-23 19:23:03 +0300 | [diff] [blame] | 2691 | if (ret != 0) |
Trond Myklebust | c21443c | 2013-02-07 14:26:21 -0500 | [diff] [blame] | 2692 | goto out; |
| 2693 | |
| 2694 | state = nfs4_opendata_to_nfs4_state(opendata); |
| 2695 | ret = PTR_ERR(state); |
| 2696 | if (IS_ERR(state)) |
| 2697 | goto out; |
| 2698 | if (server->caps & NFS_CAP_POSIX_LOCK) |
| 2699 | set_bit(NFS_STATE_POSIX_LOCKS, &state->flags); |
Jeff Layton | a8ce377 | 2016-09-17 18:17:35 -0400 | [diff] [blame] | 2700 | if (opendata->o_res.rflags & NFS4_OPEN_RESULT_MAY_NOTIFY_LOCK) |
| 2701 | set_bit(NFS_STATE_MAY_NOTIFY_LOCK, &state->flags); |
Trond Myklebust | c21443c | 2013-02-07 14:26:21 -0500 | [diff] [blame] | 2702 | |
Trond Myklebust | 275bb30 | 2013-05-29 13:11:28 -0400 | [diff] [blame] | 2703 | dentry = opendata->dentry; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 2704 | if (d_really_is_negative(dentry)) { |
Al Viro | 668d0cd | 2016-03-08 12:44:17 -0500 | [diff] [blame] | 2705 | struct dentry *alias; |
Trond Myklebust | 275bb30 | 2013-05-29 13:11:28 -0400 | [diff] [blame] | 2706 | d_drop(dentry); |
Al Viro | 668d0cd | 2016-03-08 12:44:17 -0500 | [diff] [blame] | 2707 | alias = d_exact_alias(dentry, state->inode); |
| 2708 | if (!alias) |
| 2709 | alias = d_splice_alias(igrab(state->inode), dentry); |
| 2710 | /* d_splice_alias() can't fail here - it's a non-directory */ |
| 2711 | if (alias) { |
Trond Myklebust | 275bb30 | 2013-05-29 13:11:28 -0400 | [diff] [blame] | 2712 | dput(ctx->dentry); |
Al Viro | 668d0cd | 2016-03-08 12:44:17 -0500 | [diff] [blame] | 2713 | ctx->dentry = dentry = alias; |
Trond Myklebust | 275bb30 | 2013-05-29 13:11:28 -0400 | [diff] [blame] | 2714 | } |
| 2715 | nfs_set_verifier(dentry, |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 2716 | nfs_save_change_attribute(d_inode(opendata->dir))); |
Trond Myklebust | 275bb30 | 2013-05-29 13:11:28 -0400 | [diff] [blame] | 2717 | } |
| 2718 | |
Trond Myklebust | c21443c | 2013-02-07 14:26:21 -0500 | [diff] [blame] | 2719 | ret = nfs4_opendata_access(sp->so_cred, opendata, state, fmode, flags); |
| 2720 | if (ret != 0) |
| 2721 | goto out; |
| 2722 | |
Trond Myklebust | 3efb972 | 2013-05-29 13:17:04 -0400 | [diff] [blame] | 2723 | ctx->state = state; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 2724 | if (d_inode(dentry) == state->inode) { |
Trond Myklebust | c45ffdd | 2013-05-29 13:34:46 -0400 | [diff] [blame] | 2725 | nfs_inode_attach_open_context(ctx); |
| 2726 | if (read_seqcount_retry(&sp->so_reclaim_seqcount, seq)) |
| 2727 | nfs4_schedule_stateid_recovery(server, state); |
| 2728 | } |
Trond Myklebust | c21443c | 2013-02-07 14:26:21 -0500 | [diff] [blame] | 2729 | out: |
| 2730 | return ret; |
| 2731 | } |
| 2732 | |
Jeff Layton | aa53ed5 | 2007-06-05 14:49:03 -0400 | [diff] [blame] | 2733 | /* |
Trond Myklebust | 24ac23a | 2006-01-03 09:55:11 +0100 | [diff] [blame] | 2734 | * Returns a referenced nfs4_state |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2735 | */ |
Andy Adamson | 82be417 | 2012-05-23 05:02:35 -0400 | [diff] [blame] | 2736 | static int _nfs4_do_open(struct inode *dir, |
Trond Myklebust | 4197a05 | 2013-05-29 12:37:49 -0400 | [diff] [blame] | 2737 | struct nfs_open_context *ctx, |
Andy Adamson | 82be417 | 2012-05-23 05:02:35 -0400 | [diff] [blame] | 2738 | int flags, |
| 2739 | struct iattr *sattr, |
Trond Myklebust | 5bc2afc | 2013-09-23 18:01:28 -0400 | [diff] [blame] | 2740 | struct nfs4_label *label, |
| 2741 | int *opened) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2742 | { |
| 2743 | struct nfs4_state_owner *sp; |
| 2744 | struct nfs4_state *state = NULL; |
| 2745 | struct nfs_server *server = NFS_SERVER(dir); |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 2746 | struct nfs4_opendata *opendata; |
Trond Myklebust | 4197a05 | 2013-05-29 12:37:49 -0400 | [diff] [blame] | 2747 | struct dentry *dentry = ctx->dentry; |
| 2748 | struct rpc_cred *cred = ctx->cred; |
| 2749 | struct nfs4_threshold **ctx_th = &ctx->mdsthreshold; |
| 2750 | fmode_t fmode = ctx->mode & (FMODE_READ|FMODE_WRITE|FMODE_EXEC); |
Trond Myklebust | 49f9a0f | 2013-03-15 16:44:28 -0400 | [diff] [blame] | 2751 | enum open_claim_type4 claim = NFS4_OPEN_CLAIM_NULL; |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 2752 | struct nfs4_label *olabel = NULL; |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 2753 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2754 | |
| 2755 | /* Protect against reboot recovery conflicts */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2756 | status = -ENOMEM; |
Trond Myklebust | d1e284d | 2012-01-17 22:04:24 -0500 | [diff] [blame] | 2757 | sp = nfs4_get_state_owner(server, cred, GFP_KERNEL); |
| 2758 | if (sp == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2759 | dprintk("nfs4_do_open: nfs4_get_state_owner failed!\n"); |
| 2760 | goto out_err; |
| 2761 | } |
Trond Myklebust | 58d9714 | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 2762 | status = nfs4_recover_expired_lease(server); |
| 2763 | if (status != 0) |
Trond Myklebust | b4454fe | 2006-01-03 09:55:25 +0100 | [diff] [blame] | 2764 | goto err_put_state_owner; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 2765 | if (d_really_is_positive(dentry)) |
| 2766 | nfs4_return_incompatible_delegation(d_inode(dentry), fmode); |
Trond Myklebust | 58d9714 | 2006-01-03 09:55:24 +0100 | [diff] [blame] | 2767 | status = -ENOMEM; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 2768 | if (d_really_is_positive(dentry)) |
Trond Myklebust | 49f9a0f | 2013-03-15 16:44:28 -0400 | [diff] [blame] | 2769 | claim = NFS4_OPEN_CLAIM_FH; |
Trond Myklebust | 4a1c089 | 2013-03-15 14:57:33 -0400 | [diff] [blame] | 2770 | opendata = nfs4_opendata_alloc(dentry, sp, fmode, flags, sattr, |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 2771 | label, claim, GFP_KERNEL); |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 2772 | if (opendata == NULL) |
Trond Myklebust | 95d35cb | 2008-12-23 15:21:45 -0500 | [diff] [blame] | 2773 | goto err_put_state_owner; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2774 | |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 2775 | if (label) { |
| 2776 | olabel = nfs4_label_alloc(server, GFP_KERNEL); |
| 2777 | if (IS_ERR(olabel)) { |
| 2778 | status = PTR_ERR(olabel); |
| 2779 | goto err_opendata_put; |
| 2780 | } |
| 2781 | } |
| 2782 | |
Trond Myklebust | e911b81 | 2014-03-26 13:24:37 -0700 | [diff] [blame] | 2783 | if (server->attr_bitmask[2] & FATTR4_WORD2_MDSTHRESHOLD) { |
| 2784 | if (!opendata->f_attr.mdsthreshold) { |
| 2785 | opendata->f_attr.mdsthreshold = pnfs_mdsthreshold_alloc(); |
| 2786 | if (!opendata->f_attr.mdsthreshold) |
| 2787 | goto err_free_label; |
| 2788 | } |
Trond Myklebust | 1549210f | 2012-06-05 09:16:47 -0400 | [diff] [blame] | 2789 | opendata->o_arg.open_bitmap = &nfs4_pnfs_open_bitmap[0]; |
Andy Adamson | 82be417 | 2012-05-23 05:02:35 -0400 | [diff] [blame] | 2790 | } |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 2791 | if (d_really_is_positive(dentry)) |
| 2792 | opendata->state = nfs4_get_open_state(d_inode(dentry), sp); |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 2793 | |
Trond Myklebust | 3efb972 | 2013-05-29 13:17:04 -0400 | [diff] [blame] | 2794 | status = _nfs4_open_and_get_state(opendata, fmode, flags, ctx); |
Weston Andros Adamson | 6168f62 | 2012-09-10 14:00:46 -0400 | [diff] [blame] | 2795 | if (status != 0) |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 2796 | goto err_free_label; |
Trond Myklebust | 3efb972 | 2013-05-29 13:17:04 -0400 | [diff] [blame] | 2797 | state = ctx->state; |
Weston Andros Adamson | 6168f62 | 2012-09-10 14:00:46 -0400 | [diff] [blame] | 2798 | |
NeilBrown | efcbc04 | 2015-07-30 13:00:56 +1000 | [diff] [blame] | 2799 | if ((opendata->o_arg.open_flags & (O_CREAT|O_EXCL)) == (O_CREAT|O_EXCL) && |
Trond Myklebust | 549b19c | 2013-04-16 18:42:34 -0400 | [diff] [blame] | 2800 | (opendata->o_arg.createmode != NFS4_CREATE_GUARDED)) { |
Kinglong Mee | 5334c5b | 2015-08-26 21:13:37 +0800 | [diff] [blame] | 2801 | nfs4_exclusive_attrset(opendata, sattr, &label); |
Tigran Mkrtchyan | a1d1c4f | 2016-05-12 11:16:38 +0200 | [diff] [blame] | 2802 | /* |
| 2803 | * send create attributes which was not set by open |
| 2804 | * with an extra setattr. |
| 2805 | */ |
| 2806 | if (sattr->ia_valid & NFS4_VALID_ATTRS) { |
| 2807 | nfs_fattr_init(opendata->o_res.f_attr); |
| 2808 | status = nfs4_do_setattr(state->inode, cred, |
| 2809 | opendata->o_res.f_attr, sattr, |
| 2810 | state, label, olabel); |
| 2811 | if (status == 0) { |
| 2812 | nfs_setattr_update_inode(state->inode, sattr, |
| 2813 | opendata->o_res.f_attr); |
| 2814 | nfs_setsecurity(state->inode, opendata->o_res.f_attr, olabel); |
| 2815 | } |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 2816 | } |
Trond Myklebust | 0ab64e0 | 2010-04-16 16:22:51 -0400 | [diff] [blame] | 2817 | } |
Kinglong Mee | c5c3fb5 | 2015-08-26 21:11:39 +0800 | [diff] [blame] | 2818 | if (opened && opendata->file_created) |
Trond Myklebust | 5bc2afc | 2013-09-23 18:01:28 -0400 | [diff] [blame] | 2819 | *opened |= FILE_CREATED; |
Andy Adamson | 82be417 | 2012-05-23 05:02:35 -0400 | [diff] [blame] | 2820 | |
Trond Myklebust | e911b81 | 2014-03-26 13:24:37 -0700 | [diff] [blame] | 2821 | if (pnfs_use_threshold(ctx_th, opendata->f_attr.mdsthreshold, server)) { |
Andy Adamson | 82be417 | 2012-05-23 05:02:35 -0400 | [diff] [blame] | 2822 | *ctx_th = opendata->f_attr.mdsthreshold; |
Trond Myklebust | e911b81 | 2014-03-26 13:24:37 -0700 | [diff] [blame] | 2823 | opendata->f_attr.mdsthreshold = NULL; |
| 2824 | } |
Andy Adamson | 82be417 | 2012-05-23 05:02:35 -0400 | [diff] [blame] | 2825 | |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 2826 | nfs4_label_free(olabel); |
| 2827 | |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 2828 | nfs4_opendata_put(opendata); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2829 | nfs4_put_state_owner(sp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2830 | return 0; |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 2831 | err_free_label: |
| 2832 | nfs4_label_free(olabel); |
Trond Myklebust | c6d00e6 | 2007-06-17 16:02:44 -0400 | [diff] [blame] | 2833 | err_opendata_put: |
| 2834 | nfs4_opendata_put(opendata); |
Trond Myklebust | e56e0b78 | 2006-01-03 09:55:08 +0100 | [diff] [blame] | 2835 | err_put_state_owner: |
| 2836 | nfs4_put_state_owner(sp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2837 | out_err: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2838 | return status; |
| 2839 | } |
| 2840 | |
| 2841 | |
Andy Adamson | 82be417 | 2012-05-23 05:02:35 -0400 | [diff] [blame] | 2842 | static struct nfs4_state *nfs4_do_open(struct inode *dir, |
Trond Myklebust | 4197a05 | 2013-05-29 12:37:49 -0400 | [diff] [blame] | 2843 | struct nfs_open_context *ctx, |
Andy Adamson | 82be417 | 2012-05-23 05:02:35 -0400 | [diff] [blame] | 2844 | int flags, |
| 2845 | struct iattr *sattr, |
Trond Myklebust | 5bc2afc | 2013-09-23 18:01:28 -0400 | [diff] [blame] | 2846 | struct nfs4_label *label, |
| 2847 | int *opened) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2848 | { |
Trond Myklebust | 49f9a0f | 2013-03-15 16:44:28 -0400 | [diff] [blame] | 2849 | struct nfs_server *server = NFS_SERVER(dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2850 | struct nfs4_exception exception = { }; |
| 2851 | struct nfs4_state *res; |
| 2852 | int status; |
| 2853 | |
| 2854 | do { |
Trond Myklebust | 5bc2afc | 2013-09-23 18:01:28 -0400 | [diff] [blame] | 2855 | status = _nfs4_do_open(dir, ctx, flags, sattr, label, opened); |
Trond Myklebust | 3efb972 | 2013-05-29 13:17:04 -0400 | [diff] [blame] | 2856 | res = ctx->state; |
Trond Myklebust | 42113a7 | 2013-08-12 16:19:27 -0400 | [diff] [blame] | 2857 | trace_nfs4_open_file(ctx, flags, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2858 | if (status == 0) |
| 2859 | break; |
| 2860 | /* NOTE: BAD_SEQID means the server and client disagree about the |
| 2861 | * book-keeping w.r.t. state-changing operations |
| 2862 | * (OPEN/CLOSE/LOCK/LOCKU...) |
| 2863 | * It is actually a sign of a bug on the client or on the server. |
| 2864 | * |
| 2865 | * If we receive a BAD_SEQID error in the particular case of |
Trond Myklebust | cee54fc | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 2866 | * doing an OPEN, we assume that nfs_increment_open_seqid() will |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2867 | * have unhashed the old state_owner for us, and that we can |
| 2868 | * therefore safely retry using a new one. We should still warn |
| 2869 | * the user though... |
| 2870 | */ |
| 2871 | if (status == -NFS4ERR_BAD_SEQID) { |
Trond Myklebust | 9a3ba43 | 2012-03-12 18:01:48 -0400 | [diff] [blame] | 2872 | pr_warn_ratelimited("NFS: v4 server %s " |
Trond Myklebust | 6f43ddc | 2007-07-08 16:49:11 -0400 | [diff] [blame] | 2873 | " returned a bad sequence-id error!\n", |
| 2874 | NFS_SERVER(dir)->nfs_client->cl_hostname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2875 | exception.retry = 1; |
| 2876 | continue; |
| 2877 | } |
Trond Myklebust | 550f574 | 2005-10-18 14:20:21 -0700 | [diff] [blame] | 2878 | /* |
| 2879 | * BAD_STATEID on OPEN means that the server cancelled our |
| 2880 | * state before it received the OPEN_CONFIRM. |
| 2881 | * Recover by retrying the request as per the discussion |
| 2882 | * on Page 181 of RFC3530. |
| 2883 | */ |
| 2884 | if (status == -NFS4ERR_BAD_STATEID) { |
| 2885 | exception.retry = 1; |
| 2886 | continue; |
| 2887 | } |
Trond Myklebust | aac00a8 | 2007-07-05 19:02:21 -0400 | [diff] [blame] | 2888 | if (status == -EAGAIN) { |
| 2889 | /* We must have found a delegation */ |
| 2890 | exception.retry = 1; |
| 2891 | continue; |
| 2892 | } |
Trond Myklebust | 49f9a0f | 2013-03-15 16:44:28 -0400 | [diff] [blame] | 2893 | if (nfs4_clear_cap_atomic_open_v1(server, status, &exception)) |
| 2894 | continue; |
| 2895 | res = ERR_PTR(nfs4_handle_exception(server, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2896 | status, &exception)); |
| 2897 | } while (exception.retry); |
| 2898 | return res; |
| 2899 | } |
| 2900 | |
Trond Myklebust | 8487c47 | 2016-06-26 08:44:35 -0400 | [diff] [blame] | 2901 | static int _nfs4_do_setattr(struct inode *inode, |
| 2902 | struct nfs_setattrargs *arg, |
| 2903 | struct nfs_setattrres *res, |
| 2904 | struct rpc_cred *cred, |
| 2905 | struct nfs4_state *state) |
| 2906 | { |
| 2907 | struct nfs_server *server = NFS_SERVER(inode); |
| 2908 | struct rpc_message msg = { |
| 2909 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR], |
| 2910 | .rpc_argp = arg, |
| 2911 | .rpc_resp = res, |
| 2912 | .rpc_cred = cred, |
| 2913 | }; |
| 2914 | struct rpc_cred *delegation_cred = NULL; |
| 2915 | unsigned long timestamp = jiffies; |
| 2916 | fmode_t fmode; |
| 2917 | bool truncate; |
| 2918 | int status; |
| 2919 | |
| 2920 | nfs_fattr_init(res->fattr); |
| 2921 | |
| 2922 | /* Servers should only apply open mode checks for file size changes */ |
| 2923 | truncate = (arg->iap->ia_valid & ATTR_SIZE) ? true : false; |
| 2924 | fmode = truncate ? FMODE_WRITE : FMODE_READ; |
| 2925 | |
| 2926 | if (nfs4_copy_delegation_stateid(inode, fmode, &arg->stateid, &delegation_cred)) { |
| 2927 | /* Use that stateid */ |
| 2928 | } else if (truncate && state != NULL) { |
| 2929 | struct nfs_lockowner lockowner = { |
| 2930 | .l_owner = current->files, |
| 2931 | .l_pid = current->tgid, |
| 2932 | }; |
| 2933 | if (!nfs4_valid_open_stateid(state)) |
| 2934 | return -EBADF; |
| 2935 | if (nfs4_select_rw_stateid(state, FMODE_WRITE, &lockowner, |
| 2936 | &arg->stateid, &delegation_cred) == -EIO) |
| 2937 | return -EBADF; |
| 2938 | } else |
| 2939 | nfs4_stateid_copy(&arg->stateid, &zero_stateid); |
| 2940 | if (delegation_cred) |
| 2941 | msg.rpc_cred = delegation_cred; |
| 2942 | |
| 2943 | status = nfs4_call_sync(server->client, server, &msg, &arg->seq_args, &res->seq_res, 1); |
| 2944 | |
| 2945 | put_rpccred(delegation_cred); |
| 2946 | if (status == 0 && state != NULL) |
| 2947 | renew_lease(server, timestamp); |
| 2948 | trace_nfs4_setattr(inode, &arg->stateid, status); |
| 2949 | return status; |
| 2950 | } |
| 2951 | |
| 2952 | static int nfs4_do_setattr(struct inode *inode, struct rpc_cred *cred, |
| 2953 | struct nfs_fattr *fattr, struct iattr *sattr, |
| 2954 | struct nfs4_state *state, struct nfs4_label *ilabel, |
| 2955 | struct nfs4_label *olabel) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2956 | { |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 2957 | struct nfs_server *server = NFS_SERVER(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2958 | struct nfs_setattrargs arg = { |
Trond Myklebust | 3e4f629 | 2006-03-20 13:44:46 -0500 | [diff] [blame] | 2959 | .fh = NFS_FH(inode), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2960 | .iap = sattr, |
| 2961 | .server = server, |
| 2962 | .bitmask = server->attr_bitmask, |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 2963 | .label = ilabel, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2964 | }; |
| 2965 | struct nfs_setattrres res = { |
| 2966 | .fattr = fattr, |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 2967 | .label = olabel, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2968 | .server = server, |
| 2969 | }; |
Trond Myklebust | 8487c47 | 2016-06-26 08:44:35 -0400 | [diff] [blame] | 2970 | struct nfs4_exception exception = { |
| 2971 | .state = state, |
| 2972 | .inode = inode, |
| 2973 | .stateid = &arg.stateid, |
| 2974 | }; |
| 2975 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2976 | |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 2977 | arg.bitmask = nfs4_bitmask(server, ilabel); |
| 2978 | if (ilabel) |
| 2979 | arg.bitmask = nfs4_bitmask(server, olabel); |
| 2980 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2981 | do { |
Trond Myklebust | 8487c47 | 2016-06-26 08:44:35 -0400 | [diff] [blame] | 2982 | err = _nfs4_do_setattr(inode, &arg, &res, cred, state); |
Trond Myklebust | 451146b | 2012-04-18 16:29:11 -0400 | [diff] [blame] | 2983 | switch (err) { |
| 2984 | case -NFS4ERR_OPENMODE: |
Trond Myklebust | 721ccfb | 2013-04-29 11:11:58 -0400 | [diff] [blame] | 2985 | if (!(sattr->ia_valid & ATTR_SIZE)) { |
| 2986 | pr_warn_once("NFSv4: server %s is incorrectly " |
| 2987 | "applying open mode checks to " |
| 2988 | "a SETATTR that is not " |
| 2989 | "changing file size.\n", |
| 2990 | server->nfs_client->cl_hostname); |
| 2991 | } |
Trond Myklebust | 451146b | 2012-04-18 16:29:11 -0400 | [diff] [blame] | 2992 | if (state && !(state->state & FMODE_WRITE)) { |
| 2993 | err = -EBADF; |
| 2994 | if (sattr->ia_valid & ATTR_OPEN) |
| 2995 | err = -EACCES; |
| 2996 | goto out; |
| 2997 | } |
| 2998 | } |
| 2999 | err = nfs4_handle_exception(server, err, &exception); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3000 | } while (exception.retry); |
Trond Myklebust | 451146b | 2012-04-18 16:29:11 -0400 | [diff] [blame] | 3001 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3002 | return err; |
| 3003 | } |
| 3004 | |
Peng Tao | 500d701 | 2015-09-22 11:35:22 +0800 | [diff] [blame] | 3005 | static bool |
| 3006 | nfs4_wait_on_layoutreturn(struct inode *inode, struct rpc_task *task) |
| 3007 | { |
| 3008 | if (inode == NULL || !nfs_have_layout(inode)) |
| 3009 | return false; |
| 3010 | |
| 3011 | return pnfs_wait_on_layoutreturn(inode, task); |
| 3012 | } |
| 3013 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3014 | struct nfs4_closedata { |
| 3015 | struct inode *inode; |
| 3016 | struct nfs4_state *state; |
| 3017 | struct nfs_closeargs arg; |
| 3018 | struct nfs_closeres res; |
Trond Myklebust | 516a6af | 2005-10-27 22:12:41 -0400 | [diff] [blame] | 3019 | struct nfs_fattr fattr; |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 3020 | unsigned long timestamp; |
Fred Isaman | f7e8917 | 2011-01-06 11:36:32 +0000 | [diff] [blame] | 3021 | bool roc; |
| 3022 | u32 roc_barrier; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3023 | }; |
| 3024 | |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 3025 | static void nfs4_free_closedata(void *data) |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 3026 | { |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 3027 | struct nfs4_closedata *calldata = data; |
| 3028 | struct nfs4_state_owner *sp = calldata->state->owner; |
Al Viro | 643168c | 2011-06-22 18:20:23 -0400 | [diff] [blame] | 3029 | struct super_block *sb = calldata->state->inode->i_sb; |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 3030 | |
Fred Isaman | f7e8917 | 2011-01-06 11:36:32 +0000 | [diff] [blame] | 3031 | if (calldata->roc) |
| 3032 | pnfs_roc_release(calldata->state->inode); |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 3033 | nfs4_put_open_state(calldata->state); |
| 3034 | nfs_free_seqid(calldata->arg.seqid); |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 3035 | nfs4_put_state_owner(sp); |
Trond Myklebust | 322b2b9 | 2013-01-11 16:39:51 -0500 | [diff] [blame] | 3036 | nfs_sb_deactive(sb); |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 3037 | kfree(calldata); |
| 3038 | } |
| 3039 | |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 3040 | static void nfs4_close_done(struct rpc_task *task, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3041 | { |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 3042 | struct nfs4_closedata *calldata = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3043 | struct nfs4_state *state = calldata->state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3044 | struct nfs_server *server = NFS_SERVER(calldata->inode); |
Trond Myklebust | 412f6c4 | 2014-08-25 22:09:08 -0400 | [diff] [blame] | 3045 | nfs4_stateid *res_stateid = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3046 | |
Chuck Lever | a3ca565 | 2012-03-01 17:00:40 -0500 | [diff] [blame] | 3047 | dprintk("%s: begin!\n", __func__); |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 3048 | if (!nfs4_sequence_done(task, &calldata->res.seq_res)) |
| 3049 | return; |
Trond Myklebust | 42113a7 | 2013-08-12 16:19:27 -0400 | [diff] [blame] | 3050 | trace_nfs4_close(state, &calldata->arg, &calldata->res, task->tk_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3051 | /* hmm. we are done with the inode, and in the process of freeing |
| 3052 | * the state_owner. we keep this around to process errors |
| 3053 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3054 | switch (task->tk_status) { |
| 3055 | case 0: |
Trond Myklebust | 412f6c4 | 2014-08-25 22:09:08 -0400 | [diff] [blame] | 3056 | res_stateid = &calldata->res.stateid; |
Trond Myklebust | 3c13cb5 | 2015-08-18 23:45:13 -0500 | [diff] [blame] | 3057 | if (calldata->roc) |
Fred Isaman | f7e8917 | 2011-01-06 11:36:32 +0000 | [diff] [blame] | 3058 | pnfs_roc_set_barrier(state->inode, |
| 3059 | calldata->roc_barrier); |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 3060 | renew_lease(server, calldata->timestamp); |
Trond Myklebust | 412f6c4 | 2014-08-25 22:09:08 -0400 | [diff] [blame] | 3061 | break; |
Trond Myklebust | 69794ad | 2013-11-20 12:57:19 -0500 | [diff] [blame] | 3062 | case -NFS4ERR_ADMIN_REVOKED: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3063 | case -NFS4ERR_STALE_STATEID: |
Trond Myklebust | 26d3630 | 2016-09-22 13:39:05 -0400 | [diff] [blame] | 3064 | case -NFS4ERR_EXPIRED: |
| 3065 | nfs4_free_revoked_stateid(server, |
| 3066 | &calldata->arg.stateid, |
| 3067 | task->tk_msg.rpc_cred); |
Trond Myklebust | 9e33bed | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 3068 | case -NFS4ERR_OLD_STATEID: |
| 3069 | case -NFS4ERR_BAD_STATEID: |
Trond Myklebust | 566fcec | 2015-01-23 15:32:46 -0500 | [diff] [blame] | 3070 | if (!nfs4_stateid_match(&calldata->arg.stateid, |
Anna Schumaker | 369d6b7 | 2015-03-02 16:46:09 -0500 | [diff] [blame] | 3071 | &state->open_stateid)) { |
Trond Myklebust | 566fcec | 2015-01-23 15:32:46 -0500 | [diff] [blame] | 3072 | rpc_restart_call_prepare(task); |
| 3073 | goto out_release; |
| 3074 | } |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 3075 | if (calldata->arg.fmode == 0) |
Trond Myklebust | 9e33bed | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 3076 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3077 | default: |
NeilBrown | 8478eaa | 2014-09-18 16:09:27 +1000 | [diff] [blame] | 3078 | if (nfs4_async_handle_error(task, server, state, NULL) == -EAGAIN) { |
Trond Myklebust | 72211db | 2009-12-15 14:47:36 -0500 | [diff] [blame] | 3079 | rpc_restart_call_prepare(task); |
Trond Myklebust | 69794ad | 2013-11-20 12:57:19 -0500 | [diff] [blame] | 3080 | goto out_release; |
| 3081 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3082 | } |
Trond Myklebust | 4a1e2fe | 2015-08-30 18:37:59 -0700 | [diff] [blame] | 3083 | nfs_clear_open_stateid(state, &calldata->arg.stateid, |
| 3084 | res_stateid, calldata->arg.fmode); |
Trond Myklebust | 69794ad | 2013-11-20 12:57:19 -0500 | [diff] [blame] | 3085 | out_release: |
Trond Myklebust | 72211db | 2009-12-15 14:47:36 -0500 | [diff] [blame] | 3086 | nfs_release_seqid(calldata->arg.seqid); |
Trond Myklebust | 516a6af | 2005-10-27 22:12:41 -0400 | [diff] [blame] | 3087 | nfs_refresh_inode(calldata->inode, calldata->res.fattr); |
Chuck Lever | a3ca565 | 2012-03-01 17:00:40 -0500 | [diff] [blame] | 3088 | dprintk("%s: done, ret = %d!\n", __func__, task->tk_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3089 | } |
| 3090 | |
Trond Myklebust | 4ce70ad | 2006-01-03 09:55:05 +0100 | [diff] [blame] | 3091 | static void nfs4_close_prepare(struct rpc_task *task, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3092 | { |
Trond Myklebust | 4ce70ad | 2006-01-03 09:55:05 +0100 | [diff] [blame] | 3093 | struct nfs4_closedata *calldata = data; |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 3094 | struct nfs4_state *state = calldata->state; |
Trond Myklebust | 7fdab06 | 2012-09-20 20:15:57 -0400 | [diff] [blame] | 3095 | struct inode *inode = calldata->inode; |
Trond Myklebust | aee7af3 | 2014-08-25 22:33:12 -0400 | [diff] [blame] | 3096 | bool is_rdonly, is_wronly, is_rdwr; |
Trond Myklebust | 88069f7 | 2009-12-08 08:33:16 -0500 | [diff] [blame] | 3097 | int call_close = 0; |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 3098 | |
Chuck Lever | a3ca565 | 2012-03-01 17:00:40 -0500 | [diff] [blame] | 3099 | dprintk("%s: begin!\n", __func__); |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 3100 | if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0) |
Trond Myklebust | c8da19b | 2013-02-11 19:01:21 -0500 | [diff] [blame] | 3101 | goto out_wait; |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 3102 | |
Trond Myklebust | 88069f7 | 2009-12-08 08:33:16 -0500 | [diff] [blame] | 3103 | task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_OPEN_DOWNGRADE]; |
Trond Myklebust | 4cecb76 | 2005-11-04 15:32:58 -0500 | [diff] [blame] | 3104 | spin_lock(&state->owner->so_lock); |
Trond Myklebust | aee7af3 | 2014-08-25 22:33:12 -0400 | [diff] [blame] | 3105 | is_rdwr = test_bit(NFS_O_RDWR_STATE, &state->flags); |
| 3106 | is_rdonly = test_bit(NFS_O_RDONLY_STATE, &state->flags); |
| 3107 | is_wronly = test_bit(NFS_O_WRONLY_STATE, &state->flags); |
Anna Schumaker | 369d6b7 | 2015-03-02 16:46:09 -0500 | [diff] [blame] | 3108 | nfs4_stateid_copy(&calldata->arg.stateid, &state->open_stateid); |
Trond Myklebust | 003707c | 2007-07-05 18:07:55 -0400 | [diff] [blame] | 3109 | /* Calculate the change in open mode */ |
Trond Myklebust | cd9288f | 2014-09-18 11:51:32 -0400 | [diff] [blame] | 3110 | calldata->arg.fmode = 0; |
Trond Myklebust | e761692 | 2006-01-03 09:55:13 +0100 | [diff] [blame] | 3111 | if (state->n_rdwr == 0) { |
Trond Myklebust | cd9288f | 2014-09-18 11:51:32 -0400 | [diff] [blame] | 3112 | if (state->n_rdonly == 0) |
| 3113 | call_close |= is_rdonly; |
| 3114 | else if (is_rdonly) |
| 3115 | calldata->arg.fmode |= FMODE_READ; |
| 3116 | if (state->n_wronly == 0) |
| 3117 | call_close |= is_wronly; |
| 3118 | else if (is_wronly) |
| 3119 | calldata->arg.fmode |= FMODE_WRITE; |
Trond Myklebust | e547f26 | 2016-06-25 19:19:28 -0400 | [diff] [blame] | 3120 | if (calldata->arg.fmode != (FMODE_READ|FMODE_WRITE)) |
| 3121 | call_close |= is_rdwr; |
Trond Myklebust | cd9288f | 2014-09-18 11:51:32 -0400 | [diff] [blame] | 3122 | } else if (is_rdwr) |
| 3123 | calldata->arg.fmode |= FMODE_READ|FMODE_WRITE; |
| 3124 | |
Trond Myklebust | 5d42230 | 2013-03-14 16:57:48 -0400 | [diff] [blame] | 3125 | if (!nfs4_valid_open_stateid(state)) |
| 3126 | call_close = 0; |
Trond Myklebust | 4cecb76 | 2005-11-04 15:32:58 -0500 | [diff] [blame] | 3127 | spin_unlock(&state->owner->so_lock); |
Trond Myklebust | 88069f7 | 2009-12-08 08:33:16 -0500 | [diff] [blame] | 3128 | |
| 3129 | if (!call_close) { |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 3130 | /* Note: exit _without_ calling nfs4_close_done */ |
Trond Myklebust | c8da19b | 2013-02-11 19:01:21 -0500 | [diff] [blame] | 3131 | goto out_no_action; |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 3132 | } |
Trond Myklebust | 88069f7 | 2009-12-08 08:33:16 -0500 | [diff] [blame] | 3133 | |
Peng Tao | 500d701 | 2015-09-22 11:35:22 +0800 | [diff] [blame] | 3134 | if (nfs4_wait_on_layoutreturn(inode, task)) { |
| 3135 | nfs_release_seqid(calldata->arg.seqid); |
| 3136 | goto out_wait; |
| 3137 | } |
| 3138 | |
Trond Myklebust | 3c13cb5 | 2015-08-18 23:45:13 -0500 | [diff] [blame] | 3139 | if (calldata->arg.fmode == 0) |
Trond Myklebust | 88069f7 | 2009-12-08 08:33:16 -0500 | [diff] [blame] | 3140 | task->tk_msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE]; |
Trond Myklebust | 3c13cb5 | 2015-08-18 23:45:13 -0500 | [diff] [blame] | 3141 | if (calldata->roc) |
| 3142 | pnfs_roc_get_barrier(inode, &calldata->roc_barrier); |
| 3143 | |
Trond Myklebust | 6ae3733 | 2015-01-30 14:21:14 -0500 | [diff] [blame] | 3144 | calldata->arg.share_access = |
| 3145 | nfs4_map_atomic_open_share(NFS_SERVER(inode), |
| 3146 | calldata->arg.fmode, 0); |
Trond Myklebust | 88069f7 | 2009-12-08 08:33:16 -0500 | [diff] [blame] | 3147 | |
Trond Myklebust | 516a6af | 2005-10-27 22:12:41 -0400 | [diff] [blame] | 3148 | nfs_fattr_init(calldata->res.fattr); |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 3149 | calldata->timestamp = jiffies; |
Trond Myklebust | 7fdab06 | 2012-09-20 20:15:57 -0400 | [diff] [blame] | 3150 | if (nfs4_setup_sequence(NFS_SERVER(inode), |
Trond Myklebust | 9d12b21 | 2012-01-17 22:04:25 -0500 | [diff] [blame] | 3151 | &calldata->arg.seq_args, |
| 3152 | &calldata->res.seq_res, |
Trond Myklebust | 2240a9e | 2012-10-29 18:37:40 -0400 | [diff] [blame] | 3153 | task) != 0) |
| 3154 | nfs_release_seqid(calldata->arg.seqid); |
Chuck Lever | a3ca565 | 2012-03-01 17:00:40 -0500 | [diff] [blame] | 3155 | dprintk("%s: done!\n", __func__); |
Trond Myklebust | c8da19b | 2013-02-11 19:01:21 -0500 | [diff] [blame] | 3156 | return; |
| 3157 | out_no_action: |
| 3158 | task->tk_action = NULL; |
| 3159 | out_wait: |
| 3160 | nfs4_sequence_done(task, &calldata->res.seq_res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3161 | } |
| 3162 | |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 3163 | static const struct rpc_call_ops nfs4_close_ops = { |
Trond Myklebust | 4ce70ad | 2006-01-03 09:55:05 +0100 | [diff] [blame] | 3164 | .rpc_call_prepare = nfs4_close_prepare, |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 3165 | .rpc_call_done = nfs4_close_done, |
| 3166 | .rpc_release = nfs4_free_closedata, |
| 3167 | }; |
| 3168 | |
Peng Tao | fe08c54 | 2014-07-03 13:05:01 +0800 | [diff] [blame] | 3169 | static bool nfs4_roc(struct inode *inode) |
| 3170 | { |
Trond Myklebust | 40dd4b7 | 2015-01-24 13:54:37 -0500 | [diff] [blame] | 3171 | if (!nfs_have_layout(inode)) |
Peng Tao | fe08c54 | 2014-07-03 13:05:01 +0800 | [diff] [blame] | 3172 | return false; |
Peng Tao | fe08c54 | 2014-07-03 13:05:01 +0800 | [diff] [blame] | 3173 | return pnfs_roc(inode); |
| 3174 | } |
| 3175 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3176 | /* |
| 3177 | * It is possible for data to be read/written from a mem-mapped file |
| 3178 | * after the sys_close call (which hits the vfs layer as a flush). |
| 3179 | * This means that we can't safely call nfsv4 close on a file until |
| 3180 | * the inode is cleared. This in turn means that we are not good |
| 3181 | * NFSv4 citizens - we do not indicate to the server to update the file's |
| 3182 | * share state even when we are done with one of the three share |
| 3183 | * stateid's in the inode. |
| 3184 | * |
| 3185 | * NOTE: Caller must be holding the sp->so_owner semaphore! |
| 3186 | */ |
Trond Myklebust | 1f7977c | 2012-09-20 20:31:51 -0400 | [diff] [blame] | 3187 | int nfs4_do_close(struct nfs4_state *state, gfp_t gfp_mask, int wait) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3188 | { |
Trond Myklebust | 4a35bd4 | 2007-06-05 10:31:33 -0400 | [diff] [blame] | 3189 | struct nfs_server *server = NFS_SERVER(state->inode); |
Trond Myklebust | 63f5f79 | 2015-01-23 19:19:25 -0500 | [diff] [blame] | 3190 | struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3191 | struct nfs4_closedata *calldata; |
Trond Myklebust | b39e625 | 2007-06-11 23:05:07 -0400 | [diff] [blame] | 3192 | struct nfs4_state_owner *sp = state->owner; |
| 3193 | struct rpc_task *task; |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 3194 | struct rpc_message msg = { |
| 3195 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CLOSE], |
| 3196 | .rpc_cred = state->owner->so_cred, |
| 3197 | }; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 3198 | struct rpc_task_setup task_setup_data = { |
| 3199 | .rpc_client = server->client, |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 3200 | .rpc_message = &msg, |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 3201 | .callback_ops = &nfs4_close_ops, |
Trond Myklebust | 101070c | 2008-02-19 20:04:23 -0500 | [diff] [blame] | 3202 | .workqueue = nfsiod_workqueue, |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 3203 | .flags = RPC_TASK_ASYNC, |
| 3204 | }; |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 3205 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3206 | |
Weston Andros Adamson | fa94072 | 2013-08-13 16:37:34 -0400 | [diff] [blame] | 3207 | nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_CLEANUP, |
| 3208 | &task_setup_data.rpc_client, &msg); |
| 3209 | |
Trond Myklebust | 8535b2b | 2010-05-13 12:51:01 -0400 | [diff] [blame] | 3210 | calldata = kzalloc(sizeof(*calldata), gfp_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3211 | if (calldata == NULL) |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 3212 | goto out; |
Chuck Lever | a9c92d6 | 2013-08-09 12:48:18 -0400 | [diff] [blame] | 3213 | nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 1); |
Trond Myklebust | 4a35bd4 | 2007-06-05 10:31:33 -0400 | [diff] [blame] | 3214 | calldata->inode = state->inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3215 | calldata->state = state; |
Trond Myklebust | 4a35bd4 | 2007-06-05 10:31:33 -0400 | [diff] [blame] | 3216 | calldata->arg.fh = NFS_FH(state->inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3217 | /* Serialization for the sequence id */ |
Trond Myklebust | 63f5f79 | 2015-01-23 19:19:25 -0500 | [diff] [blame] | 3218 | alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid; |
| 3219 | calldata->arg.seqid = alloc_seqid(&state->owner->so_seqid, gfp_mask); |
Trond Myklebust | badc76d | 2015-01-23 18:48:00 -0500 | [diff] [blame] | 3220 | if (IS_ERR(calldata->arg.seqid)) |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 3221 | goto out_free_calldata; |
Trond Myklebust | dc0b027 | 2008-12-23 15:21:56 -0500 | [diff] [blame] | 3222 | calldata->arg.fmode = 0; |
Trond Myklebust | a65318b | 2009-03-11 14:10:28 -0400 | [diff] [blame] | 3223 | calldata->arg.bitmask = server->cache_consistency_bitmask; |
Trond Myklebust | 516a6af | 2005-10-27 22:12:41 -0400 | [diff] [blame] | 3224 | calldata->res.fattr = &calldata->fattr; |
Trond Myklebust | c1d5193 | 2008-04-07 13:20:54 -0400 | [diff] [blame] | 3225 | calldata->res.seqid = calldata->arg.seqid; |
Trond Myklebust | 516a6af | 2005-10-27 22:12:41 -0400 | [diff] [blame] | 3226 | calldata->res.server = server; |
Peng Tao | fe08c54 | 2014-07-03 13:05:01 +0800 | [diff] [blame] | 3227 | calldata->roc = nfs4_roc(state->inode); |
Al Viro | 643168c | 2011-06-22 18:20:23 -0400 | [diff] [blame] | 3228 | nfs_sb_active(calldata->inode->i_sb); |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 3229 | |
Trond Myklebust | 1174dd1 | 2010-12-21 10:52:24 -0500 | [diff] [blame] | 3230 | msg.rpc_argp = &calldata->arg; |
| 3231 | msg.rpc_resp = &calldata->res; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 3232 | task_setup_data.callback_data = calldata; |
| 3233 | task = rpc_run_task(&task_setup_data); |
Trond Myklebust | b39e625 | 2007-06-11 23:05:07 -0400 | [diff] [blame] | 3234 | if (IS_ERR(task)) |
| 3235 | return PTR_ERR(task); |
Trond Myklebust | a49c3c7 | 2007-10-18 18:03:27 -0400 | [diff] [blame] | 3236 | status = 0; |
| 3237 | if (wait) |
| 3238 | status = rpc_wait_for_completion_task(task); |
Trond Myklebust | b39e625 | 2007-06-11 23:05:07 -0400 | [diff] [blame] | 3239 | rpc_put_task(task); |
Trond Myklebust | a49c3c7 | 2007-10-18 18:03:27 -0400 | [diff] [blame] | 3240 | return status; |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 3241 | out_free_calldata: |
| 3242 | kfree(calldata); |
| 3243 | out: |
Trond Myklebust | b39e625 | 2007-06-11 23:05:07 -0400 | [diff] [blame] | 3244 | nfs4_put_open_state(state); |
| 3245 | nfs4_put_state_owner(sp); |
Trond Myklebust | 9512135 | 2005-10-18 14:20:12 -0700 | [diff] [blame] | 3246 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3247 | } |
| 3248 | |
Trond Myklebust | 2b48429 | 2010-09-17 10:56:51 -0400 | [diff] [blame] | 3249 | static struct inode * |
Trond Myklebust | 5bc2afc | 2013-09-23 18:01:28 -0400 | [diff] [blame] | 3250 | nfs4_atomic_open(struct inode *dir, struct nfs_open_context *ctx, |
| 3251 | int open_flags, struct iattr *attr, int *opened) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3252 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3253 | struct nfs4_state *state; |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 3254 | struct nfs4_label l = {0, 0, 0, NULL}, *label = NULL; |
| 3255 | |
| 3256 | label = nfs4_label_init_security(dir, ctx->dentry, attr, &l); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3257 | |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 3258 | /* Protect against concurrent sillydeletes */ |
Trond Myklebust | 5bc2afc | 2013-09-23 18:01:28 -0400 | [diff] [blame] | 3259 | state = nfs4_do_open(dir, ctx, open_flags, attr, label, opened); |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 3260 | |
| 3261 | nfs4_label_release_security(label); |
| 3262 | |
Trond Myklebust | f46e0bd | 2010-09-17 10:56:50 -0400 | [diff] [blame] | 3263 | if (IS_ERR(state)) |
| 3264 | return ERR_CAST(state); |
Trond Myklebust | 275bb30 | 2013-05-29 13:11:28 -0400 | [diff] [blame] | 3265 | return state->inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3266 | } |
| 3267 | |
Trond Myklebust | 1185a55 | 2009-12-03 15:54:02 -0500 | [diff] [blame] | 3268 | static void nfs4_close_context(struct nfs_open_context *ctx, int is_sync) |
Trond Myklebust | 7fe5c39 | 2009-03-19 15:35:50 -0400 | [diff] [blame] | 3269 | { |
| 3270 | if (ctx->state == NULL) |
| 3271 | return; |
| 3272 | if (is_sync) |
Al Viro | 643168c | 2011-06-22 18:20:23 -0400 | [diff] [blame] | 3273 | nfs4_close_sync(ctx->state, ctx->mode); |
Trond Myklebust | 7fe5c39 | 2009-03-19 15:35:50 -0400 | [diff] [blame] | 3274 | else |
Al Viro | 643168c | 2011-06-22 18:20:23 -0400 | [diff] [blame] | 3275 | nfs4_close_state(ctx->state, ctx->mode); |
Trond Myklebust | 7fe5c39 | 2009-03-19 15:35:50 -0400 | [diff] [blame] | 3276 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3277 | |
Trond Myklebust | b944dba | 2013-11-04 15:20:20 -0500 | [diff] [blame] | 3278 | #define FATTR4_WORD1_NFS40_MASK (2*FATTR4_WORD1_MOUNTED_ON_FILEID - 1UL) |
| 3279 | #define FATTR4_WORD2_NFS41_MASK (2*FATTR4_WORD2_SUPPATTR_EXCLCREAT - 1UL) |
J. Bruce Fields | 999e568 | 2014-06-03 17:33:35 -0400 | [diff] [blame] | 3280 | #define FATTR4_WORD2_NFS42_MASK (2*FATTR4_WORD2_SECURITY_LABEL - 1UL) |
Trond Myklebust | b944dba | 2013-11-04 15:20:20 -0500 | [diff] [blame] | 3281 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3282 | static int _nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle) |
| 3283 | { |
Kinglong Mee | 8c61282 | 2015-08-26 21:12:58 +0800 | [diff] [blame] | 3284 | u32 bitmask[3] = {}, minorversion = server->nfs_client->cl_minorversion; |
Benny Halevy | 43652ad | 2009-04-01 09:21:54 -0400 | [diff] [blame] | 3285 | struct nfs4_server_caps_arg args = { |
| 3286 | .fhandle = fhandle, |
Kinglong Mee | 8c61282 | 2015-08-26 21:12:58 +0800 | [diff] [blame] | 3287 | .bitmask = bitmask, |
Benny Halevy | 43652ad | 2009-04-01 09:21:54 -0400 | [diff] [blame] | 3288 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3289 | struct nfs4_server_caps_res res = {}; |
| 3290 | struct rpc_message msg = { |
| 3291 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SERVER_CAPS], |
Benny Halevy | 43652ad | 2009-04-01 09:21:54 -0400 | [diff] [blame] | 3292 | .rpc_argp = &args, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3293 | .rpc_resp = &res, |
| 3294 | }; |
| 3295 | int status; |
| 3296 | |
Kinglong Mee | 8c61282 | 2015-08-26 21:12:58 +0800 | [diff] [blame] | 3297 | bitmask[0] = FATTR4_WORD0_SUPPORTED_ATTRS | |
| 3298 | FATTR4_WORD0_FH_EXPIRE_TYPE | |
| 3299 | FATTR4_WORD0_LINK_SUPPORT | |
| 3300 | FATTR4_WORD0_SYMLINK_SUPPORT | |
| 3301 | FATTR4_WORD0_ACLSUPPORT; |
| 3302 | if (minorversion) |
| 3303 | bitmask[2] = FATTR4_WORD2_SUPPATTR_EXCLCREAT; |
| 3304 | |
Bryan Schumaker | 7c51305 | 2011-03-24 17:12:24 +0000 | [diff] [blame] | 3305 | status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3306 | if (status == 0) { |
Trond Myklebust | b944dba | 2013-11-04 15:20:20 -0500 | [diff] [blame] | 3307 | /* Sanity check the server answers */ |
Kinglong Mee | 8c61282 | 2015-08-26 21:12:58 +0800 | [diff] [blame] | 3308 | switch (minorversion) { |
Trond Myklebust | b944dba | 2013-11-04 15:20:20 -0500 | [diff] [blame] | 3309 | case 0: |
| 3310 | res.attr_bitmask[1] &= FATTR4_WORD1_NFS40_MASK; |
| 3311 | res.attr_bitmask[2] = 0; |
| 3312 | break; |
| 3313 | case 1: |
| 3314 | res.attr_bitmask[2] &= FATTR4_WORD2_NFS41_MASK; |
| 3315 | break; |
| 3316 | case 2: |
| 3317 | res.attr_bitmask[2] &= FATTR4_WORD2_NFS42_MASK; |
| 3318 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3319 | memcpy(server->attr_bitmask, res.attr_bitmask, sizeof(server->attr_bitmask)); |
Trond Myklebust | 62ab460 | 2009-08-09 15:06:19 -0400 | [diff] [blame] | 3320 | server->caps &= ~(NFS_CAP_ACLS|NFS_CAP_HARDLINKS| |
| 3321 | NFS_CAP_SYMLINKS|NFS_CAP_FILEID| |
| 3322 | NFS_CAP_MODE|NFS_CAP_NLINK|NFS_CAP_OWNER| |
| 3323 | NFS_CAP_OWNER_GROUP|NFS_CAP_ATIME| |
Trond Myklebust | b944dba | 2013-11-04 15:20:20 -0500 | [diff] [blame] | 3324 | NFS_CAP_CTIME|NFS_CAP_MTIME| |
| 3325 | NFS_CAP_SECURITY_LABEL); |
Malahal Naineni | 7dd7d95 | 2014-01-23 08:54:55 -0600 | [diff] [blame] | 3326 | if (res.attr_bitmask[0] & FATTR4_WORD0_ACL && |
| 3327 | res.acl_bitmask & ACL4_SUPPORT_ALLOW_ACL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3328 | server->caps |= NFS_CAP_ACLS; |
| 3329 | if (res.has_links != 0) |
| 3330 | server->caps |= NFS_CAP_HARDLINKS; |
| 3331 | if (res.has_symlinks != 0) |
| 3332 | server->caps |= NFS_CAP_SYMLINKS; |
Trond Myklebust | 62ab460 | 2009-08-09 15:06:19 -0400 | [diff] [blame] | 3333 | if (res.attr_bitmask[0] & FATTR4_WORD0_FILEID) |
| 3334 | server->caps |= NFS_CAP_FILEID; |
| 3335 | if (res.attr_bitmask[1] & FATTR4_WORD1_MODE) |
| 3336 | server->caps |= NFS_CAP_MODE; |
| 3337 | if (res.attr_bitmask[1] & FATTR4_WORD1_NUMLINKS) |
| 3338 | server->caps |= NFS_CAP_NLINK; |
| 3339 | if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER) |
| 3340 | server->caps |= NFS_CAP_OWNER; |
| 3341 | if (res.attr_bitmask[1] & FATTR4_WORD1_OWNER_GROUP) |
| 3342 | server->caps |= NFS_CAP_OWNER_GROUP; |
| 3343 | if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_ACCESS) |
| 3344 | server->caps |= NFS_CAP_ATIME; |
| 3345 | if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_METADATA) |
| 3346 | server->caps |= NFS_CAP_CTIME; |
| 3347 | if (res.attr_bitmask[1] & FATTR4_WORD1_TIME_MODIFY) |
| 3348 | server->caps |= NFS_CAP_MTIME; |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 3349 | #ifdef CONFIG_NFS_V4_SECURITY_LABEL |
| 3350 | if (res.attr_bitmask[2] & FATTR4_WORD2_SECURITY_LABEL) |
| 3351 | server->caps |= NFS_CAP_SECURITY_LABEL; |
| 3352 | #endif |
| 3353 | memcpy(server->attr_bitmask_nl, res.attr_bitmask, |
| 3354 | sizeof(server->attr_bitmask)); |
Trond Myklebust | b944dba | 2013-11-04 15:20:20 -0500 | [diff] [blame] | 3355 | server->attr_bitmask_nl[2] &= ~FATTR4_WORD2_SECURITY_LABEL; |
Trond Myklebust | 62ab460 | 2009-08-09 15:06:19 -0400 | [diff] [blame] | 3356 | |
Trond Myklebust | a65318b | 2009-03-11 14:10:28 -0400 | [diff] [blame] | 3357 | memcpy(server->cache_consistency_bitmask, res.attr_bitmask, sizeof(server->cache_consistency_bitmask)); |
| 3358 | server->cache_consistency_bitmask[0] &= FATTR4_WORD0_CHANGE|FATTR4_WORD0_SIZE; |
| 3359 | server->cache_consistency_bitmask[1] &= FATTR4_WORD1_TIME_METADATA|FATTR4_WORD1_TIME_MODIFY; |
Trond Myklebust | b944dba | 2013-11-04 15:20:20 -0500 | [diff] [blame] | 3360 | server->cache_consistency_bitmask[2] = 0; |
Kinglong Mee | 8c61282 | 2015-08-26 21:12:58 +0800 | [diff] [blame] | 3361 | memcpy(server->exclcreat_bitmask, res.exclcreat_bitmask, |
| 3362 | sizeof(server->exclcreat_bitmask)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3363 | server->acl_bitmask = res.acl_bitmask; |
Chuck Lever | 264e635 | 2012-03-01 17:02:05 -0500 | [diff] [blame] | 3364 | server->fh_expire_type = res.fh_expire_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3365 | } |
Andy Adamson | cccef3b | 2009-04-01 09:22:03 -0400 | [diff] [blame] | 3366 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3367 | return status; |
| 3368 | } |
| 3369 | |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 3370 | int nfs4_server_capabilities(struct nfs_server *server, struct nfs_fh *fhandle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3371 | { |
| 3372 | struct nfs4_exception exception = { }; |
| 3373 | int err; |
| 3374 | do { |
| 3375 | err = nfs4_handle_exception(server, |
| 3376 | _nfs4_server_capabilities(server, fhandle), |
| 3377 | &exception); |
| 3378 | } while (exception.retry); |
| 3379 | return err; |
| 3380 | } |
| 3381 | |
| 3382 | static int _nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle, |
| 3383 | struct nfs_fsinfo *info) |
| 3384 | { |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 3385 | u32 bitmask[3]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3386 | struct nfs4_lookup_root_arg args = { |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 3387 | .bitmask = bitmask, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3388 | }; |
| 3389 | struct nfs4_lookup_res res = { |
| 3390 | .server = server, |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 3391 | .fattr = info->fattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3392 | .fh = fhandle, |
| 3393 | }; |
| 3394 | struct rpc_message msg = { |
| 3395 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP_ROOT], |
| 3396 | .rpc_argp = &args, |
| 3397 | .rpc_resp = &res, |
| 3398 | }; |
Benny Halevy | 008f55d | 2009-04-01 09:22:50 -0400 | [diff] [blame] | 3399 | |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 3400 | bitmask[0] = nfs4_fattr_bitmap[0]; |
| 3401 | bitmask[1] = nfs4_fattr_bitmap[1]; |
| 3402 | /* |
| 3403 | * Process the label in the upcoming getfattr |
| 3404 | */ |
| 3405 | bitmask[2] = nfs4_fattr_bitmap[2] & ~FATTR4_WORD2_SECURITY_LABEL; |
| 3406 | |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 3407 | nfs_fattr_init(info->fattr); |
Bryan Schumaker | 7c51305 | 2011-03-24 17:12:24 +0000 | [diff] [blame] | 3408 | return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3409 | } |
| 3410 | |
| 3411 | static int nfs4_lookup_root(struct nfs_server *server, struct nfs_fh *fhandle, |
| 3412 | struct nfs_fsinfo *info) |
| 3413 | { |
| 3414 | struct nfs4_exception exception = { }; |
| 3415 | int err; |
| 3416 | do { |
Bryan Schumaker | fb8a5ba | 2011-04-18 16:52:25 -0400 | [diff] [blame] | 3417 | err = _nfs4_lookup_root(server, fhandle, info); |
Trond Myklebust | b5f875a | 2013-08-13 13:01:39 -0400 | [diff] [blame] | 3418 | trace_nfs4_lookup_root(server, fhandle, info->fattr, err); |
Bryan Schumaker | fb8a5ba | 2011-04-18 16:52:25 -0400 | [diff] [blame] | 3419 | switch (err) { |
| 3420 | case 0: |
| 3421 | case -NFS4ERR_WRONGSEC: |
Trond Myklebust | 05e9cfb | 2012-03-27 18:13:02 -0400 | [diff] [blame] | 3422 | goto out; |
Bryan Schumaker | fb8a5ba | 2011-04-18 16:52:25 -0400 | [diff] [blame] | 3423 | default: |
| 3424 | err = nfs4_handle_exception(server, err, &exception); |
| 3425 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3426 | } while (exception.retry); |
Trond Myklebust | 05e9cfb | 2012-03-27 18:13:02 -0400 | [diff] [blame] | 3427 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3428 | return err; |
| 3429 | } |
| 3430 | |
Bryan Schumaker | 8f70e95 | 2011-03-24 17:12:31 +0000 | [diff] [blame] | 3431 | static int nfs4_lookup_root_sec(struct nfs_server *server, struct nfs_fh *fhandle, |
| 3432 | struct nfs_fsinfo *info, rpc_authflavor_t flavor) |
| 3433 | { |
Trond Myklebust | c219066 | 2013-08-26 19:23:04 -0400 | [diff] [blame] | 3434 | struct rpc_auth_create_args auth_args = { |
| 3435 | .pseudoflavor = flavor, |
| 3436 | }; |
Bryan Schumaker | 8f70e95 | 2011-03-24 17:12:31 +0000 | [diff] [blame] | 3437 | struct rpc_auth *auth; |
| 3438 | int ret; |
| 3439 | |
Trond Myklebust | c219066 | 2013-08-26 19:23:04 -0400 | [diff] [blame] | 3440 | auth = rpcauth_create(&auth_args, server->client); |
Wei Yongjun | e8d920c | 2012-09-21 12:27:41 +0800 | [diff] [blame] | 3441 | if (IS_ERR(auth)) { |
Chuck Lever | 75bc882 | 2013-03-16 15:55:36 -0400 | [diff] [blame] | 3442 | ret = -EACCES; |
Bryan Schumaker | 8f70e95 | 2011-03-24 17:12:31 +0000 | [diff] [blame] | 3443 | goto out; |
| 3444 | } |
| 3445 | ret = nfs4_lookup_root(server, fhandle, info); |
Bryan Schumaker | 8f70e95 | 2011-03-24 17:12:31 +0000 | [diff] [blame] | 3446 | out: |
| 3447 | return ret; |
| 3448 | } |
| 3449 | |
Chuck Lever | 9a744ba | 2013-03-16 15:56:02 -0400 | [diff] [blame] | 3450 | /* |
| 3451 | * Retry pseudoroot lookup with various security flavors. We do this when: |
| 3452 | * |
| 3453 | * NFSv4.0: the PUTROOTFH operation returns NFS4ERR_WRONGSEC |
| 3454 | * NFSv4.1: the server does not support the SECINFO_NO_NAME operation |
| 3455 | * |
| 3456 | * Returns zero on success, or a negative NFS4ERR value, or a |
| 3457 | * negative errno value. |
| 3458 | */ |
Bryan Schumaker | 801a16dc | 2011-04-13 14:31:30 -0400 | [diff] [blame] | 3459 | static int nfs4_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle, |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 3460 | struct nfs_fsinfo *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3461 | { |
Chuck Lever | 9a744ba | 2013-03-16 15:56:02 -0400 | [diff] [blame] | 3462 | /* Per 3530bis 15.33.5 */ |
| 3463 | static const rpc_authflavor_t flav_array[] = { |
| 3464 | RPC_AUTH_GSS_KRB5P, |
| 3465 | RPC_AUTH_GSS_KRB5I, |
| 3466 | RPC_AUTH_GSS_KRB5, |
Chuck Lever | c4eafe1 | 2013-03-16 15:56:11 -0400 | [diff] [blame] | 3467 | RPC_AUTH_UNIX, /* courtesy */ |
Chuck Lever | 9a744ba | 2013-03-16 15:56:02 -0400 | [diff] [blame] | 3468 | RPC_AUTH_NULL, |
| 3469 | }; |
| 3470 | int status = -EPERM; |
| 3471 | size_t i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3472 | |
Weston Andros Adamson | 4d4b69d | 2013-10-18 15:15:19 -0400 | [diff] [blame] | 3473 | if (server->auth_info.flavor_len > 0) { |
| 3474 | /* try each flavor specified by user */ |
| 3475 | for (i = 0; i < server->auth_info.flavor_len; i++) { |
| 3476 | status = nfs4_lookup_root_sec(server, fhandle, info, |
| 3477 | server->auth_info.flavors[i]); |
| 3478 | if (status == -NFS4ERR_WRONGSEC || status == -EACCES) |
| 3479 | continue; |
| 3480 | break; |
| 3481 | } |
| 3482 | } else { |
| 3483 | /* no flavors specified by user, try default list */ |
| 3484 | for (i = 0; i < ARRAY_SIZE(flav_array); i++) { |
| 3485 | status = nfs4_lookup_root_sec(server, fhandle, info, |
| 3486 | flav_array[i]); |
| 3487 | if (status == -NFS4ERR_WRONGSEC || status == -EACCES) |
| 3488 | continue; |
| 3489 | break; |
| 3490 | } |
Bryan Schumaker | 8f70e95 | 2011-03-24 17:12:31 +0000 | [diff] [blame] | 3491 | } |
Chuck Lever | 9a744ba | 2013-03-16 15:56:02 -0400 | [diff] [blame] | 3492 | |
Bryan Schumaker | fb8a5ba | 2011-04-18 16:52:25 -0400 | [diff] [blame] | 3493 | /* |
| 3494 | * -EACCESS could mean that the user doesn't have correct permissions |
| 3495 | * to access the mount. It could also mean that we tried to mount |
| 3496 | * with a gss auth flavor, but rpc.gssd isn't running. Either way, |
| 3497 | * existing mount programs don't handle -EACCES very well so it should |
| 3498 | * be mapped to -EPERM instead. |
| 3499 | */ |
| 3500 | if (status == -EACCES) |
| 3501 | status = -EPERM; |
Bryan Schumaker | 801a16dc | 2011-04-13 14:31:30 -0400 | [diff] [blame] | 3502 | return status; |
| 3503 | } |
| 3504 | |
Chuck Lever | 2ed4b95b | 2013-03-16 15:55:45 -0400 | [diff] [blame] | 3505 | /** |
| 3506 | * nfs4_proc_get_rootfh - get file handle for server's pseudoroot |
| 3507 | * @server: initialized nfs_server handle |
| 3508 | * @fhandle: we fill in the pseudo-fs root file handle |
| 3509 | * @info: we fill in an FSINFO struct |
Trond Myklebust | 5e6b199 | 2013-09-07 12:58:57 -0400 | [diff] [blame] | 3510 | * @auth_probe: probe the auth flavours |
Chuck Lever | 2ed4b95b | 2013-03-16 15:55:45 -0400 | [diff] [blame] | 3511 | * |
| 3512 | * Returns zero on success, or a negative errno. |
Bryan Schumaker | 801a16dc | 2011-04-13 14:31:30 -0400 | [diff] [blame] | 3513 | */ |
Bryan Schumaker | 3028eb2 | 2012-05-10 15:07:30 -0400 | [diff] [blame] | 3514 | int nfs4_proc_get_rootfh(struct nfs_server *server, struct nfs_fh *fhandle, |
Trond Myklebust | 5e6b199 | 2013-09-07 12:58:57 -0400 | [diff] [blame] | 3515 | struct nfs_fsinfo *info, |
| 3516 | bool auth_probe) |
Bryan Schumaker | 801a16dc | 2011-04-13 14:31:30 -0400 | [diff] [blame] | 3517 | { |
Andre Przywara | c775707 | 2015-04-23 17:17:40 +0100 | [diff] [blame] | 3518 | int status = 0; |
Chuck Lever | 2ed4b95b | 2013-03-16 15:55:45 -0400 | [diff] [blame] | 3519 | |
Andre Przywara | c775707 | 2015-04-23 17:17:40 +0100 | [diff] [blame] | 3520 | if (!auth_probe) |
Trond Myklebust | 5e6b199 | 2013-09-07 12:58:57 -0400 | [diff] [blame] | 3521 | status = nfs4_lookup_root(server, fhandle, info); |
Andre Przywara | c775707 | 2015-04-23 17:17:40 +0100 | [diff] [blame] | 3522 | |
| 3523 | if (auth_probe || status == NFS4ERR_WRONGSEC) |
Trond Myklebust | 698c937 | 2016-07-25 13:31:14 -0400 | [diff] [blame] | 3524 | status = server->nfs_client->cl_mvops->find_root_sec(server, |
| 3525 | fhandle, info); |
Chuck Lever | 2ed4b95b | 2013-03-16 15:55:45 -0400 | [diff] [blame] | 3526 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3527 | if (status == 0) |
| 3528 | status = nfs4_server_capabilities(server, fhandle); |
| 3529 | if (status == 0) |
| 3530 | status = nfs4_do_fsinfo(server, fhandle, info); |
Chuck Lever | 2ed4b95b | 2013-03-16 15:55:45 -0400 | [diff] [blame] | 3531 | |
Trond Myklebust | c12e87f | 2006-03-13 21:20:47 -0800 | [diff] [blame] | 3532 | return nfs4_map_errors(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3533 | } |
| 3534 | |
Bryan Schumaker | bae3624 | 2012-05-10 15:07:31 -0400 | [diff] [blame] | 3535 | static int nfs4_proc_get_root(struct nfs_server *server, struct nfs_fh *mntfh, |
| 3536 | struct nfs_fsinfo *info) |
| 3537 | { |
| 3538 | int error; |
| 3539 | struct nfs_fattr *fattr = info->fattr; |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 3540 | struct nfs4_label *label = NULL; |
Bryan Schumaker | bae3624 | 2012-05-10 15:07:31 -0400 | [diff] [blame] | 3541 | |
| 3542 | error = nfs4_server_capabilities(server, mntfh); |
| 3543 | if (error < 0) { |
| 3544 | dprintk("nfs4_get_root: getcaps error = %d\n", -error); |
| 3545 | return error; |
| 3546 | } |
| 3547 | |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 3548 | label = nfs4_label_alloc(server, GFP_KERNEL); |
| 3549 | if (IS_ERR(label)) |
| 3550 | return PTR_ERR(label); |
| 3551 | |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 3552 | error = nfs4_proc_getattr(server, mntfh, fattr, label); |
Bryan Schumaker | bae3624 | 2012-05-10 15:07:31 -0400 | [diff] [blame] | 3553 | if (error < 0) { |
| 3554 | dprintk("nfs4_get_root: getattr error = %d\n", -error); |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 3555 | goto err_free_label; |
Bryan Schumaker | bae3624 | 2012-05-10 15:07:31 -0400 | [diff] [blame] | 3556 | } |
| 3557 | |
| 3558 | if (fattr->valid & NFS_ATTR_FATTR_FSID && |
| 3559 | !nfs_fsid_equal(&server->fsid, &fattr->fsid)) |
| 3560 | memcpy(&server->fsid, &fattr->fsid, sizeof(server->fsid)); |
| 3561 | |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 3562 | err_free_label: |
| 3563 | nfs4_label_free(label); |
| 3564 | |
Bryan Schumaker | bae3624 | 2012-05-10 15:07:31 -0400 | [diff] [blame] | 3565 | return error; |
| 3566 | } |
| 3567 | |
Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 3568 | /* |
| 3569 | * Get locations and (maybe) other attributes of a referral. |
| 3570 | * Note that we'll actually follow the referral later when |
| 3571 | * we detect fsid mismatch in inode revalidation |
| 3572 | */ |
Bryan Schumaker | f05d147 | 2012-04-27 13:27:41 -0400 | [diff] [blame] | 3573 | static int nfs4_get_referral(struct rpc_clnt *client, struct inode *dir, |
| 3574 | const struct qstr *name, struct nfs_fattr *fattr, |
| 3575 | struct nfs_fh *fhandle) |
Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 3576 | { |
| 3577 | int status = -ENOMEM; |
| 3578 | struct page *page = NULL; |
| 3579 | struct nfs4_fs_locations *locations = NULL; |
Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 3580 | |
| 3581 | page = alloc_page(GFP_KERNEL); |
| 3582 | if (page == NULL) |
| 3583 | goto out; |
| 3584 | locations = kmalloc(sizeof(struct nfs4_fs_locations), GFP_KERNEL); |
| 3585 | if (locations == NULL) |
| 3586 | goto out; |
| 3587 | |
Bryan Schumaker | f05d147 | 2012-04-27 13:27:41 -0400 | [diff] [blame] | 3588 | status = nfs4_proc_fs_locations(client, dir, name, locations, page); |
Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 3589 | if (status != 0) |
| 3590 | goto out; |
Chuck Lever | 519ae25 | 2013-10-17 14:13:19 -0400 | [diff] [blame] | 3591 | |
| 3592 | /* |
| 3593 | * If the fsid didn't change, this is a migration event, not a |
| 3594 | * referral. Cause us to drop into the exception handler, which |
| 3595 | * will kick off migration recovery. |
| 3596 | */ |
Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 3597 | if (nfs_fsid_equal(&NFS_SERVER(dir)->fsid, &locations->fattr.fsid)) { |
Andy Adamson | 533eb46 | 2011-06-13 18:25:56 -0400 | [diff] [blame] | 3598 | dprintk("%s: server did not return a different fsid for" |
| 3599 | " a referral at %s\n", __func__, name->name); |
Chuck Lever | 519ae25 | 2013-10-17 14:13:19 -0400 | [diff] [blame] | 3600 | status = -NFS4ERR_MOVED; |
Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 3601 | goto out; |
| 3602 | } |
Andy Adamson | 533eb46 | 2011-06-13 18:25:56 -0400 | [diff] [blame] | 3603 | /* Fixup attributes for the nfs_lookup() call to nfs_fhget() */ |
| 3604 | nfs_fixup_referral_attributes(&locations->fattr); |
Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 3605 | |
Andy Adamson | 533eb46 | 2011-06-13 18:25:56 -0400 | [diff] [blame] | 3606 | /* replace the lookup nfs_fattr with the locations nfs_fattr */ |
Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 3607 | memcpy(fattr, &locations->fattr, sizeof(struct nfs_fattr)); |
Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 3608 | memset(fhandle, 0, sizeof(struct nfs_fh)); |
| 3609 | out: |
| 3610 | if (page) |
| 3611 | __free_page(page); |
Davidlohr Bueso | 5d7ca35 | 2010-08-11 12:42:15 -0400 | [diff] [blame] | 3612 | kfree(locations); |
Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 3613 | return status; |
| 3614 | } |
| 3615 | |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 3616 | static int _nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, |
| 3617 | struct nfs_fattr *fattr, struct nfs4_label *label) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3618 | { |
| 3619 | struct nfs4_getattr_arg args = { |
| 3620 | .fh = fhandle, |
| 3621 | .bitmask = server->attr_bitmask, |
| 3622 | }; |
| 3623 | struct nfs4_getattr_res res = { |
| 3624 | .fattr = fattr, |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 3625 | .label = label, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3626 | .server = server, |
| 3627 | }; |
| 3628 | struct rpc_message msg = { |
| 3629 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR], |
| 3630 | .rpc_argp = &args, |
| 3631 | .rpc_resp = &res, |
| 3632 | }; |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 3633 | |
| 3634 | args.bitmask = nfs4_bitmask(server, label); |
| 3635 | |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 3636 | nfs_fattr_init(fattr); |
Bryan Schumaker | 7c51305 | 2011-03-24 17:12:24 +0000 | [diff] [blame] | 3637 | return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3638 | } |
| 3639 | |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 3640 | static int nfs4_proc_getattr(struct nfs_server *server, struct nfs_fh *fhandle, |
| 3641 | struct nfs_fattr *fattr, struct nfs4_label *label) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3642 | { |
| 3643 | struct nfs4_exception exception = { }; |
| 3644 | int err; |
| 3645 | do { |
Trond Myklebust | b5f875a | 2013-08-13 13:01:39 -0400 | [diff] [blame] | 3646 | err = _nfs4_proc_getattr(server, fhandle, fattr, label); |
| 3647 | trace_nfs4_getattr(server, fhandle, fattr, err); |
| 3648 | err = nfs4_handle_exception(server, err, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3649 | &exception); |
| 3650 | } while (exception.retry); |
| 3651 | return err; |
| 3652 | } |
| 3653 | |
| 3654 | /* |
| 3655 | * The file is not closed if it is opened due to the a request to change |
| 3656 | * the size of the file. The open call will not be needed once the |
| 3657 | * VFS layer lookup-intents are implemented. |
| 3658 | * |
| 3659 | * Close is called when the inode is destroyed. |
| 3660 | * If we haven't opened the file for O_WRONLY, we |
| 3661 | * need to in the size_change case to obtain a stateid. |
| 3662 | * |
| 3663 | * Got race? |
| 3664 | * Because OPEN is always done by name in nfsv4, it is |
| 3665 | * possible that we opened a different file by the same |
| 3666 | * name. We can recognize this race condition, but we |
| 3667 | * can't do anything about it besides returning an error. |
| 3668 | * |
| 3669 | * This will be fixed with VFS changes (lookup-intent). |
| 3670 | */ |
| 3671 | static int |
| 3672 | nfs4_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr, |
| 3673 | struct iattr *sattr) |
| 3674 | { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 3675 | struct inode *inode = d_inode(dentry); |
Trond Myklebust | 659bfcd | 2008-06-10 19:39:41 -0400 | [diff] [blame] | 3676 | struct rpc_cred *cred = NULL; |
Trond Myklebust | d530838 | 2005-11-04 15:33:38 -0500 | [diff] [blame] | 3677 | struct nfs4_state *state = NULL; |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 3678 | struct nfs4_label *label = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3679 | int status; |
| 3680 | |
Peng Tao | 88ac815 | 2014-09-12 11:04:10 +0800 | [diff] [blame] | 3681 | if (pnfs_ld_layoutret_on_setattr(inode) && |
| 3682 | sattr->ia_valid & ATTR_SIZE && |
| 3683 | sattr->ia_size < i_size_read(inode)) |
Trond Myklebust | 2402867 | 2013-03-20 13:23:33 -0400 | [diff] [blame] | 3684 | pnfs_commit_and_return_layout(inode); |
Benny Halevy | 8a1636c | 2010-07-14 15:43:57 -0400 | [diff] [blame] | 3685 | |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 3686 | nfs_fattr_init(fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3687 | |
Andy Adamson | 2669940 | 2012-05-30 16:12:24 -0400 | [diff] [blame] | 3688 | /* Deal with open(O_TRUNC) */ |
| 3689 | if (sattr->ia_valid & ATTR_OPEN) |
Nadav Shemer | cc7936f | 2013-07-21 17:21:43 +0300 | [diff] [blame] | 3690 | sattr->ia_valid &= ~(ATTR_MTIME|ATTR_CTIME); |
Andy Adamson | 2669940 | 2012-05-30 16:12:24 -0400 | [diff] [blame] | 3691 | |
| 3692 | /* Optimization: if the end result is no change, don't RPC */ |
Nadav Shemer | cc7936f | 2013-07-21 17:21:43 +0300 | [diff] [blame] | 3693 | if ((sattr->ia_valid & ~(ATTR_FILE|ATTR_OPEN)) == 0) |
Andy Adamson | 2669940 | 2012-05-30 16:12:24 -0400 | [diff] [blame] | 3694 | return 0; |
| 3695 | |
Trond Myklebust | d530838 | 2005-11-04 15:33:38 -0500 | [diff] [blame] | 3696 | /* Search for an existing open(O_WRITE) file */ |
Trond Myklebust | 659bfcd | 2008-06-10 19:39:41 -0400 | [diff] [blame] | 3697 | if (sattr->ia_valid & ATTR_FILE) { |
| 3698 | struct nfs_open_context *ctx; |
Trond Myklebust | 08e9eac | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 3699 | |
Trond Myklebust | 659bfcd | 2008-06-10 19:39:41 -0400 | [diff] [blame] | 3700 | ctx = nfs_file_open_context(sattr->ia_file); |
Neil Brown | 504e518 | 2008-10-16 14:15:16 +1100 | [diff] [blame] | 3701 | if (ctx) { |
| 3702 | cred = ctx->cred; |
| 3703 | state = ctx->state; |
| 3704 | } |
Trond Myklebust | 659bfcd | 2008-06-10 19:39:41 -0400 | [diff] [blame] | 3705 | } |
| 3706 | |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 3707 | label = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL); |
| 3708 | if (IS_ERR(label)) |
| 3709 | return PTR_ERR(label); |
| 3710 | |
| 3711 | status = nfs4_do_setattr(inode, cred, fattr, sattr, state, NULL, label); |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 3712 | if (status == 0) { |
Trond Myklebust | f044636 | 2015-02-26 16:09:04 -0500 | [diff] [blame] | 3713 | nfs_setattr_update_inode(inode, sattr, fattr); |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 3714 | nfs_setsecurity(inode, fattr, label); |
| 3715 | } |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 3716 | nfs4_label_free(label); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3717 | return status; |
| 3718 | } |
| 3719 | |
Trond Myklebust | 0c2e53f | 2011-10-18 16:11:22 -0700 | [diff] [blame] | 3720 | static int _nfs4_proc_lookup(struct rpc_clnt *clnt, struct inode *dir, |
| 3721 | const struct qstr *name, struct nfs_fh *fhandle, |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 3722 | struct nfs_fattr *fattr, struct nfs4_label *label) |
David Howells | 2b3de44 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 3723 | { |
Trond Myklebust | 0c2e53f | 2011-10-18 16:11:22 -0700 | [diff] [blame] | 3724 | struct nfs_server *server = NFS_SERVER(dir); |
David Howells | 2b3de44 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 3725 | int status; |
| 3726 | struct nfs4_lookup_arg args = { |
| 3727 | .bitmask = server->attr_bitmask, |
Trond Myklebust | 0c2e53f | 2011-10-18 16:11:22 -0700 | [diff] [blame] | 3728 | .dir_fh = NFS_FH(dir), |
David Howells | 2b3de44 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 3729 | .name = name, |
| 3730 | }; |
| 3731 | struct nfs4_lookup_res res = { |
| 3732 | .server = server, |
| 3733 | .fattr = fattr, |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 3734 | .label = label, |
David Howells | 2b3de44 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 3735 | .fh = fhandle, |
| 3736 | }; |
| 3737 | struct rpc_message msg = { |
| 3738 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOOKUP], |
| 3739 | .rpc_argp = &args, |
| 3740 | .rpc_resp = &res, |
| 3741 | }; |
| 3742 | |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 3743 | args.bitmask = nfs4_bitmask(server, label); |
| 3744 | |
David Howells | 2b3de44 | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 3745 | nfs_fattr_init(fattr); |
| 3746 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3747 | dprintk("NFS call lookup %s\n", name->name); |
Trond Myklebust | 0c2e53f | 2011-10-18 16:11:22 -0700 | [diff] [blame] | 3748 | status = nfs4_call_sync(clnt, server, &msg, &args.seq_args, &res.seq_res, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3749 | dprintk("NFS reply lookup: %d\n", status); |
| 3750 | return status; |
| 3751 | } |
| 3752 | |
Bryan Schumaker | 72de53e | 2012-04-27 13:27:40 -0400 | [diff] [blame] | 3753 | static void nfs_fixup_secinfo_attributes(struct nfs_fattr *fattr) |
Bryan Schumaker | 7ebb931 | 2011-03-24 17:12:30 +0000 | [diff] [blame] | 3754 | { |
Bryan Schumaker | 7ebb931 | 2011-03-24 17:12:30 +0000 | [diff] [blame] | 3755 | fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE | |
Bryan Schumaker | 72de53e | 2012-04-27 13:27:40 -0400 | [diff] [blame] | 3756 | NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_MOUNTPOINT; |
Bryan Schumaker | 7ebb931 | 2011-03-24 17:12:30 +0000 | [diff] [blame] | 3757 | fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO; |
| 3758 | fattr->nlink = 2; |
| 3759 | } |
| 3760 | |
Bryan Schumaker | 72de53e | 2012-04-27 13:27:40 -0400 | [diff] [blame] | 3761 | static int nfs4_proc_lookup_common(struct rpc_clnt **clnt, struct inode *dir, |
Al Viro | beffb8f | 2016-07-20 16:34:42 -0400 | [diff] [blame] | 3762 | const struct qstr *name, struct nfs_fh *fhandle, |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 3763 | struct nfs_fattr *fattr, struct nfs4_label *label) |
Bryan Schumaker | 72de53e | 2012-04-27 13:27:40 -0400 | [diff] [blame] | 3764 | { |
| 3765 | struct nfs4_exception exception = { }; |
| 3766 | struct rpc_clnt *client = *clnt; |
| 3767 | int err; |
| 3768 | do { |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 3769 | err = _nfs4_proc_lookup(client, dir, name, fhandle, fattr, label); |
Trond Myklebust | 078ea3d | 2013-08-12 16:45:55 -0400 | [diff] [blame] | 3770 | trace_nfs4_lookup(dir, name, err); |
Bryan Schumaker | 72de53e | 2012-04-27 13:27:40 -0400 | [diff] [blame] | 3771 | switch (err) { |
| 3772 | case -NFS4ERR_BADNAME: |
| 3773 | err = -ENOENT; |
| 3774 | goto out; |
| 3775 | case -NFS4ERR_MOVED: |
Bryan Schumaker | f05d147 | 2012-04-27 13:27:41 -0400 | [diff] [blame] | 3776 | err = nfs4_get_referral(client, dir, name, fattr, fhandle); |
Dominique Martinet | c86c90c | 2015-06-04 17:04:17 +0200 | [diff] [blame] | 3777 | if (err == -NFS4ERR_MOVED) |
| 3778 | err = nfs4_handle_exception(NFS_SERVER(dir), err, &exception); |
Bryan Schumaker | 72de53e | 2012-04-27 13:27:40 -0400 | [diff] [blame] | 3779 | goto out; |
| 3780 | case -NFS4ERR_WRONGSEC: |
| 3781 | err = -EPERM; |
| 3782 | if (client != *clnt) |
| 3783 | goto out; |
Andy Adamson | 66b0686 | 2014-06-12 15:02:32 -0400 | [diff] [blame] | 3784 | client = nfs4_negotiate_security(client, dir, name); |
Bryan Schumaker | 72de53e | 2012-04-27 13:27:40 -0400 | [diff] [blame] | 3785 | if (IS_ERR(client)) |
| 3786 | return PTR_ERR(client); |
| 3787 | |
| 3788 | exception.retry = 1; |
| 3789 | break; |
| 3790 | default: |
| 3791 | err = nfs4_handle_exception(NFS_SERVER(dir), err, &exception); |
| 3792 | } |
| 3793 | } while (exception.retry); |
| 3794 | |
| 3795 | out: |
| 3796 | if (err == 0) |
| 3797 | *clnt = client; |
| 3798 | else if (client != *clnt) |
| 3799 | rpc_shutdown_client(client); |
| 3800 | |
| 3801 | return err; |
| 3802 | } |
| 3803 | |
Al Viro | beffb8f | 2016-07-20 16:34:42 -0400 | [diff] [blame] | 3804 | static int nfs4_proc_lookup(struct inode *dir, const struct qstr *name, |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 3805 | struct nfs_fh *fhandle, struct nfs_fattr *fattr, |
| 3806 | struct nfs4_label *label) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3807 | { |
Bryan Schumaker | 72de53e | 2012-04-27 13:27:40 -0400 | [diff] [blame] | 3808 | int status; |
| 3809 | struct rpc_clnt *client = NFS_CLIENT(dir); |
Trond Myklebust | 0c2e53f | 2011-10-18 16:11:22 -0700 | [diff] [blame] | 3810 | |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 3811 | status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr, label); |
Bryan Schumaker | 72de53e | 2012-04-27 13:27:40 -0400 | [diff] [blame] | 3812 | if (client != NFS_CLIENT(dir)) { |
| 3813 | rpc_shutdown_client(client); |
| 3814 | nfs_fixup_secinfo_attributes(fattr); |
| 3815 | } |
| 3816 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3817 | } |
| 3818 | |
Bryan Schumaker | f05d147 | 2012-04-27 13:27:41 -0400 | [diff] [blame] | 3819 | struct rpc_clnt * |
Al Viro | beffb8f | 2016-07-20 16:34:42 -0400 | [diff] [blame] | 3820 | nfs4_proc_lookup_mountpoint(struct inode *dir, const struct qstr *name, |
Bryan Schumaker | f05d147 | 2012-04-27 13:27:41 -0400 | [diff] [blame] | 3821 | struct nfs_fh *fhandle, struct nfs_fattr *fattr) |
| 3822 | { |
Trond Myklebust | b72888c | 2013-08-07 20:38:07 -0400 | [diff] [blame] | 3823 | struct rpc_clnt *client = NFS_CLIENT(dir); |
Bryan Schumaker | f05d147 | 2012-04-27 13:27:41 -0400 | [diff] [blame] | 3824 | int status; |
Bryan Schumaker | f05d147 | 2012-04-27 13:27:41 -0400 | [diff] [blame] | 3825 | |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 3826 | status = nfs4_proc_lookup_common(&client, dir, name, fhandle, fattr, NULL); |
Trond Myklebust | b72888c | 2013-08-07 20:38:07 -0400 | [diff] [blame] | 3827 | if (status < 0) |
Bryan Schumaker | f05d147 | 2012-04-27 13:27:41 -0400 | [diff] [blame] | 3828 | return ERR_PTR(status); |
Trond Myklebust | b72888c | 2013-08-07 20:38:07 -0400 | [diff] [blame] | 3829 | return (client == NFS_CLIENT(dir)) ? rpc_clone_client(client) : client; |
Bryan Schumaker | f05d147 | 2012-04-27 13:27:41 -0400 | [diff] [blame] | 3830 | } |
| 3831 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3832 | static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry) |
| 3833 | { |
Trond Myklebust | 76b3299 | 2007-08-10 17:45:11 -0400 | [diff] [blame] | 3834 | struct nfs_server *server = NFS_SERVER(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3835 | struct nfs4_accessargs args = { |
| 3836 | .fh = NFS_FH(inode), |
Trond Myklebust | a4980e7 | 2012-01-30 15:43:56 -0500 | [diff] [blame] | 3837 | .bitmask = server->cache_consistency_bitmask, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3838 | }; |
Trond Myklebust | 76b3299 | 2007-08-10 17:45:11 -0400 | [diff] [blame] | 3839 | struct nfs4_accessres res = { |
| 3840 | .server = server, |
Trond Myklebust | 76b3299 | 2007-08-10 17:45:11 -0400 | [diff] [blame] | 3841 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3842 | struct rpc_message msg = { |
| 3843 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_ACCESS], |
| 3844 | .rpc_argp = &args, |
| 3845 | .rpc_resp = &res, |
| 3846 | .rpc_cred = entry->cred, |
| 3847 | }; |
| 3848 | int mode = entry->mask; |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 3849 | int status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3850 | |
| 3851 | /* |
| 3852 | * Determine which access bits we want to ask for... |
| 3853 | */ |
| 3854 | if (mode & MAY_READ) |
| 3855 | args.access |= NFS4_ACCESS_READ; |
| 3856 | if (S_ISDIR(inode->i_mode)) { |
| 3857 | if (mode & MAY_WRITE) |
| 3858 | args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND | NFS4_ACCESS_DELETE; |
| 3859 | if (mode & MAY_EXEC) |
| 3860 | args.access |= NFS4_ACCESS_LOOKUP; |
| 3861 | } else { |
| 3862 | if (mode & MAY_WRITE) |
| 3863 | args.access |= NFS4_ACCESS_MODIFY | NFS4_ACCESS_EXTEND; |
| 3864 | if (mode & MAY_EXEC) |
| 3865 | args.access |= NFS4_ACCESS_EXECUTE; |
| 3866 | } |
Trond Myklebust | c407d41 | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 3867 | |
| 3868 | res.fattr = nfs_alloc_fattr(); |
| 3869 | if (res.fattr == NULL) |
| 3870 | return -ENOMEM; |
| 3871 | |
Bryan Schumaker | 7c51305 | 2011-03-24 17:12:24 +0000 | [diff] [blame] | 3872 | status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3873 | if (!status) { |
Weston Andros Adamson | 6168f62 | 2012-09-10 14:00:46 -0400 | [diff] [blame] | 3874 | nfs_access_set_mask(entry, res.access); |
Trond Myklebust | c407d41 | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 3875 | nfs_refresh_inode(inode, res.fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3876 | } |
Trond Myklebust | c407d41 | 2010-04-16 16:22:48 -0400 | [diff] [blame] | 3877 | nfs_free_fattr(res.fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3878 | return status; |
| 3879 | } |
| 3880 | |
| 3881 | static int nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry) |
| 3882 | { |
| 3883 | struct nfs4_exception exception = { }; |
| 3884 | int err; |
| 3885 | do { |
Trond Myklebust | c1578b7 | 2013-08-12 16:58:42 -0400 | [diff] [blame] | 3886 | err = _nfs4_proc_access(inode, entry); |
| 3887 | trace_nfs4_access(inode, err); |
| 3888 | err = nfs4_handle_exception(NFS_SERVER(inode), err, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3889 | &exception); |
| 3890 | } while (exception.retry); |
| 3891 | return err; |
| 3892 | } |
| 3893 | |
| 3894 | /* |
| 3895 | * TODO: For the time being, we don't try to get any attributes |
| 3896 | * along with any of the zero-copy operations READ, READDIR, |
| 3897 | * READLINK, WRITE. |
| 3898 | * |
| 3899 | * In the case of the first three, we want to put the GETATTR |
| 3900 | * after the read-type operation -- this is because it is hard |
| 3901 | * to predict the length of a GETATTR response in v4, and thus |
| 3902 | * align the READ data correctly. This means that the GETATTR |
| 3903 | * may end up partially falling into the page cache, and we should |
| 3904 | * shift it into the 'tail' of the xdr_buf before processing. |
| 3905 | * To do this efficiently, we need to know the total length |
| 3906 | * of data received, which doesn't seem to be available outside |
| 3907 | * of the RPC layer. |
| 3908 | * |
| 3909 | * In the case of WRITE, we also want to put the GETATTR after |
| 3910 | * the operation -- in this case because we want to make sure |
Trond Myklebust | 140150d | 2012-06-05 15:20:25 -0400 | [diff] [blame] | 3911 | * we get the post-operation mtime and size. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3912 | * |
| 3913 | * Both of these changes to the XDR layer would in fact be quite |
| 3914 | * minor, but I decided to leave them for a subsequent patch. |
| 3915 | */ |
| 3916 | static int _nfs4_proc_readlink(struct inode *inode, struct page *page, |
| 3917 | unsigned int pgbase, unsigned int pglen) |
| 3918 | { |
| 3919 | struct nfs4_readlink args = { |
| 3920 | .fh = NFS_FH(inode), |
| 3921 | .pgbase = pgbase, |
| 3922 | .pglen = pglen, |
| 3923 | .pages = &page, |
| 3924 | }; |
Benny Halevy | f50c700 | 2009-04-01 09:21:55 -0400 | [diff] [blame] | 3925 | struct nfs4_readlink_res res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3926 | struct rpc_message msg = { |
| 3927 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READLINK], |
| 3928 | .rpc_argp = &args, |
Benny Halevy | f50c700 | 2009-04-01 09:21:55 -0400 | [diff] [blame] | 3929 | .rpc_resp = &res, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3930 | }; |
| 3931 | |
Bryan Schumaker | 7c51305 | 2011-03-24 17:12:24 +0000 | [diff] [blame] | 3932 | return nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode), &msg, &args.seq_args, &res.seq_res, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3933 | } |
| 3934 | |
| 3935 | static int nfs4_proc_readlink(struct inode *inode, struct page *page, |
| 3936 | unsigned int pgbase, unsigned int pglen) |
| 3937 | { |
| 3938 | struct nfs4_exception exception = { }; |
| 3939 | int err; |
| 3940 | do { |
Trond Myklebust | c1578b7 | 2013-08-12 16:58:42 -0400 | [diff] [blame] | 3941 | err = _nfs4_proc_readlink(inode, page, pgbase, pglen); |
| 3942 | trace_nfs4_readlink(inode, err); |
| 3943 | err = nfs4_handle_exception(NFS_SERVER(inode), err, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3944 | &exception); |
| 3945 | } while (exception.retry); |
| 3946 | return err; |
| 3947 | } |
| 3948 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3949 | /* |
Miklos Szeredi | 8867fe5 | 2012-06-05 15:10:19 +0200 | [diff] [blame] | 3950 | * This is just for mknod. open(O_CREAT) will always do ->open_context(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3951 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3952 | static int |
| 3953 | nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr, |
Miklos Szeredi | 8867fe5 | 2012-06-05 15:10:19 +0200 | [diff] [blame] | 3954 | int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3955 | { |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 3956 | struct nfs4_label l, *ilabel = NULL; |
Miklos Szeredi | 8867fe5 | 2012-06-05 15:10:19 +0200 | [diff] [blame] | 3957 | struct nfs_open_context *ctx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3958 | struct nfs4_state *state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3959 | int status = 0; |
| 3960 | |
Miklos Szeredi | 8867fe5 | 2012-06-05 15:10:19 +0200 | [diff] [blame] | 3961 | ctx = alloc_nfs_open_context(dentry, FMODE_READ); |
| 3962 | if (IS_ERR(ctx)) |
| 3963 | return PTR_ERR(ctx); |
| 3964 | |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 3965 | ilabel = nfs4_label_init_security(dir, dentry, sattr, &l); |
| 3966 | |
Aneesh Kumar K.V | a8a5da9 | 2010-12-09 11:35:14 +0000 | [diff] [blame] | 3967 | sattr->ia_mode &= ~current_umask(); |
Kinglong Mee | c5c3fb5 | 2015-08-26 21:11:39 +0800 | [diff] [blame] | 3968 | state = nfs4_do_open(dir, ctx, flags, sattr, ilabel, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3969 | if (IS_ERR(state)) { |
| 3970 | status = PTR_ERR(state); |
Trond Myklebust | c0204fd | 2010-09-17 10:56:51 -0400 | [diff] [blame] | 3971 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3972 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3973 | out: |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 3974 | nfs4_label_release_security(ilabel); |
Miklos Szeredi | 8867fe5 | 2012-06-05 15:10:19 +0200 | [diff] [blame] | 3975 | put_nfs_open_context(ctx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3976 | return status; |
| 3977 | } |
| 3978 | |
Al Viro | beffb8f | 2016-07-20 16:34:42 -0400 | [diff] [blame] | 3979 | static int _nfs4_proc_remove(struct inode *dir, const struct qstr *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3980 | { |
Trond Myklebust | 16e4295 | 2005-10-27 22:12:44 -0400 | [diff] [blame] | 3981 | struct nfs_server *server = NFS_SERVER(dir); |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 3982 | struct nfs_removeargs args = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3983 | .fh = NFS_FH(dir), |
Linus Torvalds | 26fe575 | 2012-05-10 13:14:12 -0700 | [diff] [blame] | 3984 | .name = *name, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3985 | }; |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 3986 | struct nfs_removeres res = { |
Trond Myklebust | 16e4295 | 2005-10-27 22:12:44 -0400 | [diff] [blame] | 3987 | .server = server, |
Trond Myklebust | 16e4295 | 2005-10-27 22:12:44 -0400 | [diff] [blame] | 3988 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3989 | struct rpc_message msg = { |
Trond Myklebust | 4fdc17b | 2007-07-14 15:39:57 -0400 | [diff] [blame] | 3990 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE], |
| 3991 | .rpc_argp = &args, |
| 3992 | .rpc_resp = &res, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3993 | }; |
Trond Myklebust | 778d281 | 2012-04-27 13:48:19 -0400 | [diff] [blame] | 3994 | int status; |
Trond Myklebust | d346890 | 2010-04-16 16:22:50 -0400 | [diff] [blame] | 3995 | |
Bryan Schumaker | 7c51305 | 2011-03-24 17:12:24 +0000 | [diff] [blame] | 3996 | status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 1); |
Trond Myklebust | 778d281 | 2012-04-27 13:48:19 -0400 | [diff] [blame] | 3997 | if (status == 0) |
Trond Myklebust | 16e4295 | 2005-10-27 22:12:44 -0400 | [diff] [blame] | 3998 | update_changeattr(dir, &res.cinfo); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3999 | return status; |
| 4000 | } |
| 4001 | |
Al Viro | beffb8f | 2016-07-20 16:34:42 -0400 | [diff] [blame] | 4002 | static int nfs4_proc_remove(struct inode *dir, const struct qstr *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4003 | { |
| 4004 | struct nfs4_exception exception = { }; |
| 4005 | int err; |
| 4006 | do { |
Trond Myklebust | 078ea3d | 2013-08-12 16:45:55 -0400 | [diff] [blame] | 4007 | err = _nfs4_proc_remove(dir, name); |
| 4008 | trace_nfs4_remove(dir, name, err); |
| 4009 | err = nfs4_handle_exception(NFS_SERVER(dir), err, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4010 | &exception); |
| 4011 | } while (exception.retry); |
| 4012 | return err; |
| 4013 | } |
| 4014 | |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 4015 | static void nfs4_proc_unlink_setup(struct rpc_message *msg, struct inode *dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4016 | { |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 4017 | struct nfs_server *server = NFS_SERVER(dir); |
| 4018 | struct nfs_removeargs *args = msg->rpc_argp; |
| 4019 | struct nfs_removeres *res = msg->rpc_resp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4020 | |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 4021 | res->server = server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4022 | msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_REMOVE]; |
Chuck Lever | a9c92d6 | 2013-08-09 12:48:18 -0400 | [diff] [blame] | 4023 | nfs4_init_sequence(&args->seq_args, &res->seq_res, 1); |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 4024 | |
| 4025 | nfs_fattr_init(res->dir_attr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4026 | } |
| 4027 | |
Bryan Schumaker | 34e137c | 2012-03-19 14:54:41 -0400 | [diff] [blame] | 4028 | static void nfs4_proc_unlink_rpc_prepare(struct rpc_task *task, struct nfs_unlinkdata *data) |
| 4029 | { |
Al Viro | 884be17 | 2016-04-28 23:56:31 -0400 | [diff] [blame] | 4030 | nfs4_setup_sequence(NFS_SB(data->dentry->d_sb), |
Trond Myklebust | d9afbd1 | 2012-10-22 20:28:44 -0400 | [diff] [blame] | 4031 | &data->args.seq_args, |
| 4032 | &data->res.seq_res, |
| 4033 | task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4034 | } |
| 4035 | |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 4036 | static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4037 | { |
Trond Myklebust | 078ea3d | 2013-08-12 16:45:55 -0400 | [diff] [blame] | 4038 | struct nfs_unlinkdata *data = task->tk_calldata; |
| 4039 | struct nfs_removeres *res = &data->res; |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 4040 | |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 4041 | if (!nfs4_sequence_done(task, &res->seq_res)) |
| 4042 | return 0; |
NeilBrown | 8478eaa | 2014-09-18 16:09:27 +1000 | [diff] [blame] | 4043 | if (nfs4_async_handle_error(task, res->server, NULL, |
| 4044 | &data->timeout) == -EAGAIN) |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 4045 | return 0; |
| 4046 | update_changeattr(dir, &res->cinfo); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 4047 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4048 | } |
| 4049 | |
Jeff Layton | d3d4152 | 2010-09-17 17:31:57 -0400 | [diff] [blame] | 4050 | static void nfs4_proc_rename_setup(struct rpc_message *msg, struct inode *dir) |
| 4051 | { |
| 4052 | struct nfs_server *server = NFS_SERVER(dir); |
| 4053 | struct nfs_renameargs *arg = msg->rpc_argp; |
| 4054 | struct nfs_renameres *res = msg->rpc_resp; |
| 4055 | |
| 4056 | msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENAME]; |
Jeff Layton | d3d4152 | 2010-09-17 17:31:57 -0400 | [diff] [blame] | 4057 | res->server = server; |
Chuck Lever | a9c92d6 | 2013-08-09 12:48:18 -0400 | [diff] [blame] | 4058 | nfs4_init_sequence(&arg->seq_args, &res->seq_res, 1); |
Jeff Layton | d3d4152 | 2010-09-17 17:31:57 -0400 | [diff] [blame] | 4059 | } |
| 4060 | |
Bryan Schumaker | c6bfa1a | 2012-03-19 14:54:42 -0400 | [diff] [blame] | 4061 | static void nfs4_proc_rename_rpc_prepare(struct rpc_task *task, struct nfs_renamedata *data) |
| 4062 | { |
Trond Myklebust | d9afbd1 | 2012-10-22 20:28:44 -0400 | [diff] [blame] | 4063 | nfs4_setup_sequence(NFS_SERVER(data->old_dir), |
| 4064 | &data->args.seq_args, |
| 4065 | &data->res.seq_res, |
| 4066 | task); |
Jeff Layton | d3d4152 | 2010-09-17 17:31:57 -0400 | [diff] [blame] | 4067 | } |
| 4068 | |
| 4069 | static int nfs4_proc_rename_done(struct rpc_task *task, struct inode *old_dir, |
| 4070 | struct inode *new_dir) |
| 4071 | { |
Trond Myklebust | fbc6f7c | 2013-08-12 17:08:26 -0400 | [diff] [blame] | 4072 | struct nfs_renamedata *data = task->tk_calldata; |
| 4073 | struct nfs_renameres *res = &data->res; |
Jeff Layton | d3d4152 | 2010-09-17 17:31:57 -0400 | [diff] [blame] | 4074 | |
| 4075 | if (!nfs4_sequence_done(task, &res->seq_res)) |
| 4076 | return 0; |
NeilBrown | 8478eaa | 2014-09-18 16:09:27 +1000 | [diff] [blame] | 4077 | if (nfs4_async_handle_error(task, res->server, NULL, &data->timeout) == -EAGAIN) |
Jeff Layton | d3d4152 | 2010-09-17 17:31:57 -0400 | [diff] [blame] | 4078 | return 0; |
| 4079 | |
| 4080 | update_changeattr(old_dir, &res->old_cinfo); |
Jeff Layton | d3d4152 | 2010-09-17 17:31:57 -0400 | [diff] [blame] | 4081 | update_changeattr(new_dir, &res->new_cinfo); |
Jeff Layton | d3d4152 | 2010-09-17 17:31:57 -0400 | [diff] [blame] | 4082 | return 1; |
| 4083 | } |
| 4084 | |
Al Viro | beffb8f | 2016-07-20 16:34:42 -0400 | [diff] [blame] | 4085 | static int _nfs4_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4086 | { |
Trond Myklebust | 91ba2ee | 2005-10-27 22:12:42 -0400 | [diff] [blame] | 4087 | struct nfs_server *server = NFS_SERVER(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4088 | struct nfs4_link_arg arg = { |
| 4089 | .fh = NFS_FH(inode), |
| 4090 | .dir_fh = NFS_FH(dir), |
| 4091 | .name = name, |
Trond Myklebust | 91ba2ee | 2005-10-27 22:12:42 -0400 | [diff] [blame] | 4092 | .bitmask = server->attr_bitmask, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4093 | }; |
Trond Myklebust | 91ba2ee | 2005-10-27 22:12:42 -0400 | [diff] [blame] | 4094 | struct nfs4_link_res res = { |
| 4095 | .server = server, |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 4096 | .label = NULL, |
Trond Myklebust | 91ba2ee | 2005-10-27 22:12:42 -0400 | [diff] [blame] | 4097 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4098 | struct rpc_message msg = { |
| 4099 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LINK], |
| 4100 | .rpc_argp = &arg, |
Trond Myklebust | 91ba2ee | 2005-10-27 22:12:42 -0400 | [diff] [blame] | 4101 | .rpc_resp = &res, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4102 | }; |
Trond Myklebust | 136f262 | 2010-04-16 16:22:49 -0400 | [diff] [blame] | 4103 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4104 | |
Trond Myklebust | 136f262 | 2010-04-16 16:22:49 -0400 | [diff] [blame] | 4105 | res.fattr = nfs_alloc_fattr(); |
Trond Myklebust | 778d281 | 2012-04-27 13:48:19 -0400 | [diff] [blame] | 4106 | if (res.fattr == NULL) |
Trond Myklebust | 136f262 | 2010-04-16 16:22:49 -0400 | [diff] [blame] | 4107 | goto out; |
| 4108 | |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 4109 | res.label = nfs4_label_alloc(server, GFP_KERNEL); |
| 4110 | if (IS_ERR(res.label)) { |
| 4111 | status = PTR_ERR(res.label); |
| 4112 | goto out; |
| 4113 | } |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 4114 | arg.bitmask = nfs4_bitmask(server, res.label); |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 4115 | |
Bryan Schumaker | 7c51305 | 2011-03-24 17:12:24 +0000 | [diff] [blame] | 4116 | status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1); |
Trond Myklebust | 91ba2ee | 2005-10-27 22:12:42 -0400 | [diff] [blame] | 4117 | if (!status) { |
| 4118 | update_changeattr(dir, &res.cinfo); |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 4119 | status = nfs_post_op_update_inode(inode, res.fattr); |
| 4120 | if (!status) |
| 4121 | nfs_setsecurity(inode, res.fattr, res.label); |
Trond Myklebust | 91ba2ee | 2005-10-27 22:12:42 -0400 | [diff] [blame] | 4122 | } |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 4123 | |
| 4124 | |
| 4125 | nfs4_label_free(res.label); |
| 4126 | |
Trond Myklebust | 136f262 | 2010-04-16 16:22:49 -0400 | [diff] [blame] | 4127 | out: |
Trond Myklebust | 136f262 | 2010-04-16 16:22:49 -0400 | [diff] [blame] | 4128 | nfs_free_fattr(res.fattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4129 | return status; |
| 4130 | } |
| 4131 | |
Al Viro | beffb8f | 2016-07-20 16:34:42 -0400 | [diff] [blame] | 4132 | static int nfs4_proc_link(struct inode *inode, struct inode *dir, const struct qstr *name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4133 | { |
| 4134 | struct nfs4_exception exception = { }; |
| 4135 | int err; |
| 4136 | do { |
| 4137 | err = nfs4_handle_exception(NFS_SERVER(inode), |
| 4138 | _nfs4_proc_link(inode, dir, name), |
| 4139 | &exception); |
| 4140 | } while (exception.retry); |
| 4141 | return err; |
| 4142 | } |
| 4143 | |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4144 | struct nfs4_createdata { |
| 4145 | struct rpc_message msg; |
| 4146 | struct nfs4_create_arg arg; |
| 4147 | struct nfs4_create_res res; |
| 4148 | struct nfs_fh fh; |
| 4149 | struct nfs_fattr fattr; |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 4150 | struct nfs4_label *label; |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4151 | }; |
| 4152 | |
| 4153 | static struct nfs4_createdata *nfs4_alloc_createdata(struct inode *dir, |
Al Viro | beffb8f | 2016-07-20 16:34:42 -0400 | [diff] [blame] | 4154 | const struct qstr *name, struct iattr *sattr, u32 ftype) |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4155 | { |
| 4156 | struct nfs4_createdata *data; |
| 4157 | |
| 4158 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
| 4159 | if (data != NULL) { |
| 4160 | struct nfs_server *server = NFS_SERVER(dir); |
| 4161 | |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 4162 | data->label = nfs4_label_alloc(server, GFP_KERNEL); |
| 4163 | if (IS_ERR(data->label)) |
| 4164 | goto out_free; |
| 4165 | |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4166 | data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE]; |
| 4167 | data->msg.rpc_argp = &data->arg; |
| 4168 | data->msg.rpc_resp = &data->res; |
| 4169 | data->arg.dir_fh = NFS_FH(dir); |
| 4170 | data->arg.server = server; |
| 4171 | data->arg.name = name; |
| 4172 | data->arg.attrs = sattr; |
| 4173 | data->arg.ftype = ftype; |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 4174 | data->arg.bitmask = nfs4_bitmask(server, data->label); |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4175 | data->res.server = server; |
| 4176 | data->res.fh = &data->fh; |
| 4177 | data->res.fattr = &data->fattr; |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 4178 | data->res.label = data->label; |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4179 | nfs_fattr_init(data->res.fattr); |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4180 | } |
| 4181 | return data; |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 4182 | out_free: |
| 4183 | kfree(data); |
| 4184 | return NULL; |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4185 | } |
| 4186 | |
| 4187 | static int nfs4_do_create(struct inode *dir, struct dentry *dentry, struct nfs4_createdata *data) |
| 4188 | { |
Bryan Schumaker | 7c51305 | 2011-03-24 17:12:24 +0000 | [diff] [blame] | 4189 | int status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &data->msg, |
Bryan Schumaker | e73b83f | 2011-03-24 17:12:23 +0000 | [diff] [blame] | 4190 | &data->arg.seq_args, &data->res.seq_res, 1); |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4191 | if (status == 0) { |
| 4192 | update_changeattr(dir, &data->res.dir_cinfo); |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 4193 | status = nfs_instantiate(dentry, data->res.fh, data->res.fattr, data->res.label); |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4194 | } |
| 4195 | return status; |
| 4196 | } |
| 4197 | |
| 4198 | static void nfs4_free_createdata(struct nfs4_createdata *data) |
| 4199 | { |
David Quigley | 14c43f7 | 2013-05-22 12:50:43 -0400 | [diff] [blame] | 4200 | nfs4_label_free(data->label); |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4201 | kfree(data); |
| 4202 | } |
| 4203 | |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 4204 | static int _nfs4_proc_symlink(struct inode *dir, struct dentry *dentry, |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 4205 | struct page *page, unsigned int len, struct iattr *sattr, |
| 4206 | struct nfs4_label *label) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4207 | { |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4208 | struct nfs4_createdata *data; |
| 4209 | int status = -ENAMETOOLONG; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4210 | |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 4211 | if (len > NFS4_MAXPATHLEN) |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4212 | goto out; |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 4213 | |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4214 | status = -ENOMEM; |
| 4215 | data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4LNK); |
| 4216 | if (data == NULL) |
| 4217 | goto out; |
| 4218 | |
| 4219 | data->msg.rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SYMLINK]; |
| 4220 | data->arg.u.symlink.pages = &page; |
| 4221 | data->arg.u.symlink.len = len; |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 4222 | data->arg.label = label; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4223 | |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4224 | status = nfs4_do_create(dir, dentry, data); |
| 4225 | |
| 4226 | nfs4_free_createdata(data); |
| 4227 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4228 | return status; |
| 4229 | } |
| 4230 | |
Chuck Lever | 4f390c1 | 2006-08-22 20:06:22 -0400 | [diff] [blame] | 4231 | static int nfs4_proc_symlink(struct inode *dir, struct dentry *dentry, |
Chuck Lever | 94a6d75 | 2006-08-22 20:06:23 -0400 | [diff] [blame] | 4232 | struct page *page, unsigned int len, struct iattr *sattr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4233 | { |
| 4234 | struct nfs4_exception exception = { }; |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 4235 | struct nfs4_label l, *label = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4236 | int err; |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 4237 | |
| 4238 | label = nfs4_label_init_security(dir, dentry, sattr, &l); |
| 4239 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4240 | do { |
Trond Myklebust | 078ea3d | 2013-08-12 16:45:55 -0400 | [diff] [blame] | 4241 | err = _nfs4_proc_symlink(dir, dentry, page, len, sattr, label); |
| 4242 | trace_nfs4_symlink(dir, &dentry->d_name, err); |
| 4243 | err = nfs4_handle_exception(NFS_SERVER(dir), err, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4244 | &exception); |
| 4245 | } while (exception.retry); |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 4246 | |
| 4247 | nfs4_label_release_security(label); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4248 | return err; |
| 4249 | } |
| 4250 | |
| 4251 | static int _nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry, |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 4252 | struct iattr *sattr, struct nfs4_label *label) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4253 | { |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4254 | struct nfs4_createdata *data; |
| 4255 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4256 | |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4257 | data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4DIR); |
| 4258 | if (data == NULL) |
| 4259 | goto out; |
| 4260 | |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 4261 | data->arg.label = label; |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4262 | status = nfs4_do_create(dir, dentry, data); |
| 4263 | |
| 4264 | nfs4_free_createdata(data); |
| 4265 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4266 | return status; |
| 4267 | } |
| 4268 | |
| 4269 | static int nfs4_proc_mkdir(struct inode *dir, struct dentry *dentry, |
| 4270 | struct iattr *sattr) |
| 4271 | { |
| 4272 | struct nfs4_exception exception = { }; |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 4273 | struct nfs4_label l, *label = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4274 | int err; |
Aneesh Kumar K.V | a8a5da9 | 2010-12-09 11:35:14 +0000 | [diff] [blame] | 4275 | |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 4276 | label = nfs4_label_init_security(dir, dentry, sattr, &l); |
| 4277 | |
Aneesh Kumar K.V | a8a5da9 | 2010-12-09 11:35:14 +0000 | [diff] [blame] | 4278 | sattr->ia_mode &= ~current_umask(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4279 | do { |
Trond Myklebust | 078ea3d | 2013-08-12 16:45:55 -0400 | [diff] [blame] | 4280 | err = _nfs4_proc_mkdir(dir, dentry, sattr, label); |
| 4281 | trace_nfs4_mkdir(dir, &dentry->d_name, err); |
| 4282 | err = nfs4_handle_exception(NFS_SERVER(dir), err, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4283 | &exception); |
| 4284 | } while (exception.retry); |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 4285 | nfs4_label_release_security(label); |
| 4286 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4287 | return err; |
| 4288 | } |
| 4289 | |
| 4290 | static int _nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred, |
Bryan Schumaker | 56e4ebf | 2010-10-20 15:44:37 -0400 | [diff] [blame] | 4291 | u64 cookie, struct page **pages, unsigned int count, int plus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4292 | { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 4293 | struct inode *dir = d_inode(dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4294 | struct nfs4_readdir_arg args = { |
| 4295 | .fh = NFS_FH(dir), |
Bryan Schumaker | 56e4ebf | 2010-10-20 15:44:37 -0400 | [diff] [blame] | 4296 | .pages = pages, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4297 | .pgbase = 0, |
| 4298 | .count = count, |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 4299 | .bitmask = NFS_SERVER(d_inode(dentry))->attr_bitmask, |
Bryan Schumaker | 82f2e54 | 2010-10-21 16:33:18 -0400 | [diff] [blame] | 4300 | .plus = plus, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4301 | }; |
| 4302 | struct nfs4_readdir_res res; |
| 4303 | struct rpc_message msg = { |
| 4304 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READDIR], |
| 4305 | .rpc_argp = &args, |
| 4306 | .rpc_resp = &res, |
| 4307 | .rpc_cred = cred, |
| 4308 | }; |
| 4309 | int status; |
| 4310 | |
Al Viro | 6de1472 | 2013-09-16 10:53:17 -0400 | [diff] [blame] | 4311 | dprintk("%s: dentry = %pd2, cookie = %Lu\n", __func__, |
| 4312 | dentry, |
Trond Myklebust | eadf459 | 2005-06-22 17:16:39 +0000 | [diff] [blame] | 4313 | (unsigned long long)cookie); |
Trond Myklebust | c3f52af | 2012-09-03 14:56:02 -0400 | [diff] [blame] | 4314 | nfs4_setup_readdir(cookie, NFS_I(dir)->cookieverf, dentry, &args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4315 | res.pgbase = args.pgbase; |
Bryan Schumaker | 7c51305 | 2011-03-24 17:12:24 +0000 | [diff] [blame] | 4316 | status = nfs4_call_sync(NFS_SERVER(dir)->client, NFS_SERVER(dir), &msg, &args.seq_args, &res.seq_res, 0); |
Trond Myklebust | ac39612 | 2010-11-15 20:26:22 -0500 | [diff] [blame] | 4317 | if (status >= 0) { |
Trond Myklebust | c3f52af | 2012-09-03 14:56:02 -0400 | [diff] [blame] | 4318 | memcpy(NFS_I(dir)->cookieverf, res.verifier.data, NFS4_VERIFIER_SIZE); |
Trond Myklebust | ac39612 | 2010-11-15 20:26:22 -0500 | [diff] [blame] | 4319 | status += args.pgbase; |
| 4320 | } |
Trond Myklebust | c481299 | 2007-09-28 17:11:45 -0400 | [diff] [blame] | 4321 | |
| 4322 | nfs_invalidate_atime(dir); |
| 4323 | |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 4324 | dprintk("%s: returns %d\n", __func__, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4325 | return status; |
| 4326 | } |
| 4327 | |
| 4328 | static int nfs4_proc_readdir(struct dentry *dentry, struct rpc_cred *cred, |
Bryan Schumaker | 56e4ebf | 2010-10-20 15:44:37 -0400 | [diff] [blame] | 4329 | u64 cookie, struct page **pages, unsigned int count, int plus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4330 | { |
| 4331 | struct nfs4_exception exception = { }; |
| 4332 | int err; |
| 4333 | do { |
Trond Myklebust | c1578b7 | 2013-08-12 16:58:42 -0400 | [diff] [blame] | 4334 | err = _nfs4_proc_readdir(dentry, cred, cookie, |
| 4335 | pages, count, plus); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 4336 | trace_nfs4_readdir(d_inode(dentry), err); |
| 4337 | err = nfs4_handle_exception(NFS_SERVER(d_inode(dentry)), err, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4338 | &exception); |
| 4339 | } while (exception.retry); |
| 4340 | return err; |
| 4341 | } |
| 4342 | |
| 4343 | static int _nfs4_proc_mknod(struct inode *dir, struct dentry *dentry, |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 4344 | struct iattr *sattr, struct nfs4_label *label, dev_t rdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4345 | { |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4346 | struct nfs4_createdata *data; |
| 4347 | int mode = sattr->ia_mode; |
| 4348 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4349 | |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4350 | data = nfs4_alloc_createdata(dir, &dentry->d_name, sattr, NF4SOCK); |
| 4351 | if (data == NULL) |
| 4352 | goto out; |
| 4353 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4354 | if (S_ISFIFO(mode)) |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4355 | data->arg.ftype = NF4FIFO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4356 | else if (S_ISBLK(mode)) { |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4357 | data->arg.ftype = NF4BLK; |
| 4358 | data->arg.u.device.specdata1 = MAJOR(rdev); |
| 4359 | data->arg.u.device.specdata2 = MINOR(rdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4360 | } |
| 4361 | else if (S_ISCHR(mode)) { |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4362 | data->arg.ftype = NF4CHR; |
| 4363 | data->arg.u.device.specdata1 = MAJOR(rdev); |
| 4364 | data->arg.u.device.specdata2 = MINOR(rdev); |
Trond Myklebust | 4ea8fed | 2012-10-15 15:47:41 -0400 | [diff] [blame] | 4365 | } else if (!S_ISSOCK(mode)) { |
| 4366 | status = -EINVAL; |
| 4367 | goto out_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4368 | } |
David Quigley | 1775fd3 | 2013-05-22 12:50:42 -0400 | [diff] [blame] | 4369 | |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 4370 | data->arg.label = label; |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4371 | status = nfs4_do_create(dir, dentry, data); |
Trond Myklebust | 4ea8fed | 2012-10-15 15:47:41 -0400 | [diff] [blame] | 4372 | out_free: |
Trond Myklebust | 57dc9a5 | 2008-06-20 15:35:32 -0400 | [diff] [blame] | 4373 | nfs4_free_createdata(data); |
| 4374 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4375 | return status; |
| 4376 | } |
| 4377 | |
| 4378 | static int nfs4_proc_mknod(struct inode *dir, struct dentry *dentry, |
| 4379 | struct iattr *sattr, dev_t rdev) |
| 4380 | { |
| 4381 | struct nfs4_exception exception = { }; |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 4382 | struct nfs4_label l, *label = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4383 | int err; |
Aneesh Kumar K.V | a8a5da9 | 2010-12-09 11:35:14 +0000 | [diff] [blame] | 4384 | |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 4385 | label = nfs4_label_init_security(dir, dentry, sattr, &l); |
| 4386 | |
Aneesh Kumar K.V | a8a5da9 | 2010-12-09 11:35:14 +0000 | [diff] [blame] | 4387 | sattr->ia_mode &= ~current_umask(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4388 | do { |
Trond Myklebust | 078ea3d | 2013-08-12 16:45:55 -0400 | [diff] [blame] | 4389 | err = _nfs4_proc_mknod(dir, dentry, sattr, label, rdev); |
| 4390 | trace_nfs4_mknod(dir, &dentry->d_name, err); |
| 4391 | err = nfs4_handle_exception(NFS_SERVER(dir), err, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4392 | &exception); |
| 4393 | } while (exception.retry); |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 4394 | |
| 4395 | nfs4_label_release_security(label); |
| 4396 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4397 | return err; |
| 4398 | } |
| 4399 | |
| 4400 | static int _nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, |
| 4401 | struct nfs_fsstat *fsstat) |
| 4402 | { |
| 4403 | struct nfs4_statfs_arg args = { |
| 4404 | .fh = fhandle, |
| 4405 | .bitmask = server->attr_bitmask, |
| 4406 | }; |
Benny Halevy | 24ad148 | 2009-04-01 09:21:56 -0400 | [diff] [blame] | 4407 | struct nfs4_statfs_res res = { |
| 4408 | .fsstat = fsstat, |
| 4409 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4410 | struct rpc_message msg = { |
| 4411 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_STATFS], |
| 4412 | .rpc_argp = &args, |
Benny Halevy | 24ad148 | 2009-04-01 09:21:56 -0400 | [diff] [blame] | 4413 | .rpc_resp = &res, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4414 | }; |
| 4415 | |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 4416 | nfs_fattr_init(fsstat->fattr); |
Bryan Schumaker | 7c51305 | 2011-03-24 17:12:24 +0000 | [diff] [blame] | 4417 | return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4418 | } |
| 4419 | |
| 4420 | static int nfs4_proc_statfs(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsstat *fsstat) |
| 4421 | { |
| 4422 | struct nfs4_exception exception = { }; |
| 4423 | int err; |
| 4424 | do { |
| 4425 | err = nfs4_handle_exception(server, |
| 4426 | _nfs4_proc_statfs(server, fhandle, fsstat), |
| 4427 | &exception); |
| 4428 | } while (exception.retry); |
| 4429 | return err; |
| 4430 | } |
| 4431 | |
| 4432 | static int _nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, |
| 4433 | struct nfs_fsinfo *fsinfo) |
| 4434 | { |
| 4435 | struct nfs4_fsinfo_arg args = { |
| 4436 | .fh = fhandle, |
| 4437 | .bitmask = server->attr_bitmask, |
| 4438 | }; |
Benny Halevy | 3dda5e4 | 2009-04-01 09:21:57 -0400 | [diff] [blame] | 4439 | struct nfs4_fsinfo_res res = { |
| 4440 | .fsinfo = fsinfo, |
| 4441 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4442 | struct rpc_message msg = { |
| 4443 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSINFO], |
| 4444 | .rpc_argp = &args, |
Benny Halevy | 3dda5e4 | 2009-04-01 09:21:57 -0400 | [diff] [blame] | 4445 | .rpc_resp = &res, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4446 | }; |
| 4447 | |
Bryan Schumaker | 7c51305 | 2011-03-24 17:12:24 +0000 | [diff] [blame] | 4448 | return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4449 | } |
| 4450 | |
| 4451 | static int nfs4_do_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo) |
| 4452 | { |
| 4453 | struct nfs4_exception exception = { }; |
Chuck Lever | 83ca7f5 | 2013-03-16 15:55:53 -0400 | [diff] [blame] | 4454 | unsigned long now = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4455 | int err; |
| 4456 | |
| 4457 | do { |
Chuck Lever | 83ca7f5 | 2013-03-16 15:55:53 -0400 | [diff] [blame] | 4458 | err = _nfs4_do_fsinfo(server, fhandle, fsinfo); |
Trond Myklebust | b5f875a | 2013-08-13 13:01:39 -0400 | [diff] [blame] | 4459 | trace_nfs4_fsinfo(server, fhandle, fsinfo->fattr, err); |
Chuck Lever | 83ca7f5 | 2013-03-16 15:55:53 -0400 | [diff] [blame] | 4460 | if (err == 0) { |
Trond Myklebust | fb10fb6 | 2016-08-05 19:13:08 -0400 | [diff] [blame] | 4461 | nfs4_set_lease_period(server->nfs_client, |
| 4462 | fsinfo->lease_time * HZ, |
| 4463 | now); |
Chuck Lever | 83ca7f5 | 2013-03-16 15:55:53 -0400 | [diff] [blame] | 4464 | break; |
| 4465 | } |
| 4466 | err = nfs4_handle_exception(server, err, &exception); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4467 | } while (exception.retry); |
| 4468 | return err; |
| 4469 | } |
| 4470 | |
| 4471 | static int nfs4_proc_fsinfo(struct nfs_server *server, struct nfs_fh *fhandle, struct nfs_fsinfo *fsinfo) |
| 4472 | { |
Bryan Schumaker | e38eb65 | 2012-06-20 15:53:40 -0400 | [diff] [blame] | 4473 | int error; |
| 4474 | |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 4475 | nfs_fattr_init(fsinfo->fattr); |
Bryan Schumaker | e38eb65 | 2012-06-20 15:53:40 -0400 | [diff] [blame] | 4476 | error = nfs4_do_fsinfo(server, fhandle, fsinfo); |
Peng Tao | dc18254 | 2012-08-24 00:27:49 +0800 | [diff] [blame] | 4477 | if (error == 0) { |
| 4478 | /* block layout checks this! */ |
| 4479 | server->pnfs_blksize = fsinfo->blksize; |
Jeff Layton | ca440c3 | 2016-09-15 14:40:49 -0400 | [diff] [blame] | 4480 | set_pnfs_layoutdriver(server, fhandle, fsinfo); |
Peng Tao | dc18254 | 2012-08-24 00:27:49 +0800 | [diff] [blame] | 4481 | } |
Bryan Schumaker | e38eb65 | 2012-06-20 15:53:40 -0400 | [diff] [blame] | 4482 | |
| 4483 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4484 | } |
| 4485 | |
| 4486 | static int _nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle, |
| 4487 | struct nfs_pathconf *pathconf) |
| 4488 | { |
| 4489 | struct nfs4_pathconf_arg args = { |
| 4490 | .fh = fhandle, |
| 4491 | .bitmask = server->attr_bitmask, |
| 4492 | }; |
Benny Halevy | d45b298 | 2009-04-01 09:21:58 -0400 | [diff] [blame] | 4493 | struct nfs4_pathconf_res res = { |
| 4494 | .pathconf = pathconf, |
| 4495 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4496 | struct rpc_message msg = { |
| 4497 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_PATHCONF], |
| 4498 | .rpc_argp = &args, |
Benny Halevy | d45b298 | 2009-04-01 09:21:58 -0400 | [diff] [blame] | 4499 | .rpc_resp = &res, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4500 | }; |
| 4501 | |
| 4502 | /* None of the pathconf attributes are mandatory to implement */ |
| 4503 | if ((args.bitmask[0] & nfs4_pathconf_bitmap[0]) == 0) { |
| 4504 | memset(pathconf, 0, sizeof(*pathconf)); |
| 4505 | return 0; |
| 4506 | } |
| 4507 | |
Trond Myklebust | 0e574af | 2005-10-27 22:12:38 -0400 | [diff] [blame] | 4508 | nfs_fattr_init(pathconf->fattr); |
Bryan Schumaker | 7c51305 | 2011-03-24 17:12:24 +0000 | [diff] [blame] | 4509 | return nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4510 | } |
| 4511 | |
| 4512 | static int nfs4_proc_pathconf(struct nfs_server *server, struct nfs_fh *fhandle, |
| 4513 | struct nfs_pathconf *pathconf) |
| 4514 | { |
| 4515 | struct nfs4_exception exception = { }; |
| 4516 | int err; |
| 4517 | |
| 4518 | do { |
| 4519 | err = nfs4_handle_exception(server, |
| 4520 | _nfs4_proc_pathconf(server, fhandle, pathconf), |
| 4521 | &exception); |
| 4522 | } while (exception.retry); |
| 4523 | return err; |
| 4524 | } |
| 4525 | |
Trond Myklebust | 5521abf | 2013-03-16 20:54:34 -0400 | [diff] [blame] | 4526 | int nfs4_set_rw_stateid(nfs4_stateid *stateid, |
Trond Myklebust | 9b20614 | 2013-03-17 15:52:00 -0400 | [diff] [blame] | 4527 | const struct nfs_open_context *ctx, |
| 4528 | const struct nfs_lock_context *l_ctx, |
| 4529 | fmode_t fmode) |
| 4530 | { |
| 4531 | const struct nfs_lockowner *lockowner = NULL; |
| 4532 | |
| 4533 | if (l_ctx != NULL) |
| 4534 | lockowner = &l_ctx->lockowner; |
Trond Myklebust | abf4e13 | 2016-05-16 17:42:44 -0400 | [diff] [blame] | 4535 | return nfs4_select_rw_stateid(ctx->state, fmode, lockowner, stateid, NULL); |
Trond Myklebust | 9b20614 | 2013-03-17 15:52:00 -0400 | [diff] [blame] | 4536 | } |
| 4537 | EXPORT_SYMBOL_GPL(nfs4_set_rw_stateid); |
| 4538 | |
Trond Myklebust | 5521abf | 2013-03-16 20:54:34 -0400 | [diff] [blame] | 4539 | static bool nfs4_stateid_is_current(nfs4_stateid *stateid, |
| 4540 | const struct nfs_open_context *ctx, |
| 4541 | const struct nfs_lock_context *l_ctx, |
| 4542 | fmode_t fmode) |
| 4543 | { |
| 4544 | nfs4_stateid current_stateid; |
| 4545 | |
Trond Myklebust | e1253be | 2014-03-05 08:44:23 -0500 | [diff] [blame] | 4546 | /* If the current stateid represents a lost lock, then exit */ |
| 4547 | if (nfs4_set_rw_stateid(¤t_stateid, ctx, l_ctx, fmode) == -EIO) |
| 4548 | return true; |
Trond Myklebust | 5521abf | 2013-03-16 20:54:34 -0400 | [diff] [blame] | 4549 | return nfs4_stateid_match(stateid, ¤t_stateid); |
| 4550 | } |
| 4551 | |
| 4552 | static bool nfs4_error_stateid_expired(int err) |
| 4553 | { |
| 4554 | switch (err) { |
| 4555 | case -NFS4ERR_DELEG_REVOKED: |
| 4556 | case -NFS4ERR_ADMIN_REVOKED: |
| 4557 | case -NFS4ERR_BAD_STATEID: |
| 4558 | case -NFS4ERR_STALE_STATEID: |
| 4559 | case -NFS4ERR_OLD_STATEID: |
| 4560 | case -NFS4ERR_OPENMODE: |
| 4561 | case -NFS4ERR_EXPIRED: |
| 4562 | return true; |
| 4563 | } |
| 4564 | return false; |
| 4565 | } |
| 4566 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4567 | static int nfs4_read_done_cb(struct rpc_task *task, struct nfs_pgio_header *hdr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4568 | { |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4569 | struct nfs_server *server = NFS_SERVER(hdr->inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4570 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4571 | trace_nfs4_read(hdr, task->tk_status); |
Trond Myklebust | 9c27869 | 2016-09-22 13:39:11 -0400 | [diff] [blame] | 4572 | if (task->tk_status < 0) { |
| 4573 | struct nfs4_exception exception = { |
| 4574 | .inode = hdr->inode, |
| 4575 | .state = hdr->args.context->state, |
| 4576 | .stateid = &hdr->args.stateid, |
| 4577 | }; |
| 4578 | task->tk_status = nfs4_async_handle_exception(task, |
| 4579 | server, task->tk_status, &exception); |
| 4580 | if (exception.retry) { |
| 4581 | rpc_restart_call_prepare(task); |
| 4582 | return -EAGAIN; |
| 4583 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4584 | } |
Trond Myklebust | 8850df9 | 2007-09-28 17:20:07 -0400 | [diff] [blame] | 4585 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4586 | if (task->tk_status > 0) |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4587 | renew_lease(server, hdr->timestamp); |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 4588 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4589 | } |
| 4590 | |
Trond Myklebust | 5521abf | 2013-03-16 20:54:34 -0400 | [diff] [blame] | 4591 | static bool nfs4_read_stateid_changed(struct rpc_task *task, |
Anna Schumaker | 3c6b899 | 2014-05-06 09:12:24 -0400 | [diff] [blame] | 4592 | struct nfs_pgio_args *args) |
Trond Myklebust | 5521abf | 2013-03-16 20:54:34 -0400 | [diff] [blame] | 4593 | { |
| 4594 | |
| 4595 | if (!nfs4_error_stateid_expired(task->tk_status) || |
| 4596 | nfs4_stateid_is_current(&args->stateid, |
| 4597 | args->context, |
| 4598 | args->lock_context, |
| 4599 | FMODE_READ)) |
| 4600 | return false; |
| 4601 | rpc_restart_call_prepare(task); |
| 4602 | return true; |
| 4603 | } |
| 4604 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4605 | static int nfs4_read_done(struct rpc_task *task, struct nfs_pgio_header *hdr) |
Andy Adamson | cbdabc7 | 2011-03-01 01:34:20 +0000 | [diff] [blame] | 4606 | { |
| 4607 | |
| 4608 | dprintk("--> %s\n", __func__); |
| 4609 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4610 | if (!nfs4_sequence_done(task, &hdr->res.seq_res)) |
Andy Adamson | cbdabc7 | 2011-03-01 01:34:20 +0000 | [diff] [blame] | 4611 | return -EAGAIN; |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4612 | if (nfs4_read_stateid_changed(task, &hdr->args)) |
Trond Myklebust | 5521abf | 2013-03-16 20:54:34 -0400 | [diff] [blame] | 4613 | return -EAGAIN; |
Trond Myklebust | bfc505d | 2016-09-15 18:26:05 -0400 | [diff] [blame] | 4614 | if (task->tk_status > 0) |
| 4615 | nfs_invalidate_atime(hdr->inode); |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4616 | return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) : |
| 4617 | nfs4_read_done_cb(task, hdr); |
Andy Adamson | cbdabc7 | 2011-03-01 01:34:20 +0000 | [diff] [blame] | 4618 | } |
| 4619 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4620 | static void nfs4_proc_read_setup(struct nfs_pgio_header *hdr, |
| 4621 | struct rpc_message *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4622 | { |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4623 | hdr->timestamp = jiffies; |
Trond Myklebust | ca857cc | 2016-06-28 13:54:09 -0400 | [diff] [blame] | 4624 | if (!hdr->pgio_done_cb) |
| 4625 | hdr->pgio_done_cb = nfs4_read_done_cb; |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 4626 | msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_READ]; |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4627 | nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4628 | } |
| 4629 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4630 | static int nfs4_proc_pgio_rpc_prepare(struct rpc_task *task, |
| 4631 | struct nfs_pgio_header *hdr) |
Bryan Schumaker | ea7c330 | 2012-03-19 14:54:40 -0400 | [diff] [blame] | 4632 | { |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4633 | if (nfs4_setup_sequence(NFS_SERVER(hdr->inode), |
| 4634 | &hdr->args.seq_args, |
| 4635 | &hdr->res.seq_res, |
Trond Myklebust | 9b20614 | 2013-03-17 15:52:00 -0400 | [diff] [blame] | 4636 | task)) |
NeilBrown | ef1820f | 2013-09-04 17:04:49 +1000 | [diff] [blame] | 4637 | return 0; |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4638 | if (nfs4_set_rw_stateid(&hdr->args.stateid, hdr->args.context, |
| 4639 | hdr->args.lock_context, |
| 4640 | hdr->rw_ops->rw_mode) == -EIO) |
NeilBrown | ef1820f | 2013-09-04 17:04:49 +1000 | [diff] [blame] | 4641 | return -EIO; |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4642 | if (unlikely(test_bit(NFS_CONTEXT_BAD, &hdr->args.context->flags))) |
NeilBrown | ef1820f | 2013-09-04 17:04:49 +1000 | [diff] [blame] | 4643 | return -EIO; |
| 4644 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4645 | } |
| 4646 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4647 | static int nfs4_write_done_cb(struct rpc_task *task, |
| 4648 | struct nfs_pgio_header *hdr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4649 | { |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4650 | struct inode *inode = hdr->inode; |
NeilBrown | 8478eaa | 2014-09-18 16:09:27 +1000 | [diff] [blame] | 4651 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4652 | trace_nfs4_write(hdr, task->tk_status); |
Trond Myklebust | 9c27869 | 2016-09-22 13:39:11 -0400 | [diff] [blame] | 4653 | if (task->tk_status < 0) { |
| 4654 | struct nfs4_exception exception = { |
| 4655 | .inode = hdr->inode, |
| 4656 | .state = hdr->args.context->state, |
| 4657 | .stateid = &hdr->args.stateid, |
| 4658 | }; |
| 4659 | task->tk_status = nfs4_async_handle_exception(task, |
| 4660 | NFS_SERVER(inode), task->tk_status, |
| 4661 | &exception); |
| 4662 | if (exception.retry) { |
| 4663 | rpc_restart_call_prepare(task); |
| 4664 | return -EAGAIN; |
| 4665 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4666 | } |
Trond Myklebust | 4f9838c | 2005-10-27 22:12:44 -0400 | [diff] [blame] | 4667 | if (task->tk_status >= 0) { |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4668 | renew_lease(NFS_SERVER(inode), hdr->timestamp); |
Trond Myklebust | a08a8cd | 2015-02-26 17:36:09 -0500 | [diff] [blame] | 4669 | nfs_writeback_update_inode(hdr); |
Trond Myklebust | 4f9838c | 2005-10-27 22:12:44 -0400 | [diff] [blame] | 4670 | } |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 4671 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4672 | } |
| 4673 | |
Trond Myklebust | 5521abf | 2013-03-16 20:54:34 -0400 | [diff] [blame] | 4674 | static bool nfs4_write_stateid_changed(struct rpc_task *task, |
Anna Schumaker | 3c6b899 | 2014-05-06 09:12:24 -0400 | [diff] [blame] | 4675 | struct nfs_pgio_args *args) |
Trond Myklebust | 5521abf | 2013-03-16 20:54:34 -0400 | [diff] [blame] | 4676 | { |
| 4677 | |
| 4678 | if (!nfs4_error_stateid_expired(task->tk_status) || |
| 4679 | nfs4_stateid_is_current(&args->stateid, |
| 4680 | args->context, |
| 4681 | args->lock_context, |
| 4682 | FMODE_WRITE)) |
| 4683 | return false; |
| 4684 | rpc_restart_call_prepare(task); |
| 4685 | return true; |
| 4686 | } |
| 4687 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4688 | static int nfs4_write_done(struct rpc_task *task, struct nfs_pgio_header *hdr) |
Fred Isaman | b029bc9 | 2011-03-03 15:13:42 +0000 | [diff] [blame] | 4689 | { |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4690 | if (!nfs4_sequence_done(task, &hdr->res.seq_res)) |
Fred Isaman | b029bc9 | 2011-03-03 15:13:42 +0000 | [diff] [blame] | 4691 | return -EAGAIN; |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4692 | if (nfs4_write_stateid_changed(task, &hdr->args)) |
Trond Myklebust | 5521abf | 2013-03-16 20:54:34 -0400 | [diff] [blame] | 4693 | return -EAGAIN; |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4694 | return hdr->pgio_done_cb ? hdr->pgio_done_cb(task, hdr) : |
| 4695 | nfs4_write_done_cb(task, hdr); |
Fred Isaman | b029bc9 | 2011-03-03 15:13:42 +0000 | [diff] [blame] | 4696 | } |
| 4697 | |
Trond Myklebust | 5a37f85 | 2012-04-28 14:55:16 -0400 | [diff] [blame] | 4698 | static |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4699 | bool nfs4_write_need_cache_consistency_data(struct nfs_pgio_header *hdr) |
Fred Isaman | a69aef1 | 2011-03-03 15:13:47 +0000 | [diff] [blame] | 4700 | { |
Trond Myklebust | 5a37f85 | 2012-04-28 14:55:16 -0400 | [diff] [blame] | 4701 | /* Don't request attributes for pNFS or O_DIRECT writes */ |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4702 | if (hdr->ds_clp != NULL || hdr->dreq != NULL) |
Trond Myklebust | 5a37f85 | 2012-04-28 14:55:16 -0400 | [diff] [blame] | 4703 | return false; |
| 4704 | /* Otherwise, request attributes if and only if we don't hold |
| 4705 | * a delegation |
| 4706 | */ |
Bryan Schumaker | 011e2a7 | 2012-06-20 15:53:43 -0400 | [diff] [blame] | 4707 | return nfs4_have_delegation(hdr->inode, FMODE_READ) == 0; |
Fred Isaman | a69aef1 | 2011-03-03 15:13:47 +0000 | [diff] [blame] | 4708 | } |
Fred Isaman | a69aef1 | 2011-03-03 15:13:47 +0000 | [diff] [blame] | 4709 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4710 | static void nfs4_proc_write_setup(struct nfs_pgio_header *hdr, |
| 4711 | struct rpc_message *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4712 | { |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4713 | struct nfs_server *server = NFS_SERVER(hdr->inode); |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 4714 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4715 | if (!nfs4_write_need_cache_consistency_data(hdr)) { |
| 4716 | hdr->args.bitmask = NULL; |
| 4717 | hdr->res.fattr = NULL; |
Fred Isaman | 7ffd106 | 2011-03-03 15:13:46 +0000 | [diff] [blame] | 4718 | } else |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4719 | hdr->args.bitmask = server->cache_consistency_bitmask; |
Trond Myklebust | 5a37f85 | 2012-04-28 14:55:16 -0400 | [diff] [blame] | 4720 | |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4721 | if (!hdr->pgio_done_cb) |
| 4722 | hdr->pgio_done_cb = nfs4_write_done_cb; |
| 4723 | hdr->res.server = server; |
| 4724 | hdr->timestamp = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4725 | |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 4726 | msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_WRITE]; |
Weston Andros Adamson | d45f60c | 2014-06-09 11:48:35 -0400 | [diff] [blame] | 4727 | nfs4_init_sequence(&hdr->args.seq_args, &hdr->res.seq_res, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4728 | } |
| 4729 | |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 4730 | static void nfs4_proc_commit_rpc_prepare(struct rpc_task *task, struct nfs_commit_data *data) |
| 4731 | { |
Trond Myklebust | d9afbd1 | 2012-10-22 20:28:44 -0400 | [diff] [blame] | 4732 | nfs4_setup_sequence(NFS_SERVER(data->inode), |
| 4733 | &data->args.seq_args, |
| 4734 | &data->res.seq_res, |
| 4735 | task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4736 | } |
| 4737 | |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 4738 | static int nfs4_commit_done_cb(struct rpc_task *task, struct nfs_commit_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4739 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4740 | struct inode *inode = data->inode; |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 4741 | |
Trond Myklebust | cc668ab | 2013-08-14 15:31:28 -0400 | [diff] [blame] | 4742 | trace_nfs4_commit(data, task->tk_status); |
NeilBrown | 8478eaa | 2014-09-18 16:09:27 +1000 | [diff] [blame] | 4743 | if (nfs4_async_handle_error(task, NFS_SERVER(inode), |
| 4744 | NULL, NULL) == -EAGAIN) { |
Trond Myklebust | d00c5d4 | 2011-10-19 12:17:29 -0700 | [diff] [blame] | 4745 | rpc_restart_call_prepare(task); |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 4746 | return -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4747 | } |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 4748 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4749 | } |
| 4750 | |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 4751 | static int nfs4_commit_done(struct rpc_task *task, struct nfs_commit_data *data) |
Fred Isaman | 5f45243 | 2011-03-23 13:27:46 +0000 | [diff] [blame] | 4752 | { |
| 4753 | if (!nfs4_sequence_done(task, &data->res.seq_res)) |
| 4754 | return -EAGAIN; |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 4755 | return data->commit_done_cb(task, data); |
Fred Isaman | 5f45243 | 2011-03-23 13:27:46 +0000 | [diff] [blame] | 4756 | } |
| 4757 | |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 4758 | static void nfs4_proc_commit_setup(struct nfs_commit_data *data, struct rpc_message *msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4759 | { |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 4760 | struct nfs_server *server = NFS_SERVER(data->inode); |
Fred Isaman | 988b6dc | 2011-03-23 13:27:52 +0000 | [diff] [blame] | 4761 | |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 4762 | if (data->commit_done_cb == NULL) |
| 4763 | data->commit_done_cb = nfs4_commit_done_cb; |
Trond Myklebust | 4f9838c | 2005-10-27 22:12:44 -0400 | [diff] [blame] | 4764 | data->res.server = server; |
Trond Myklebust | bdc7f02 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 4765 | msg->rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_COMMIT]; |
Chuck Lever | a9c92d6 | 2013-08-09 12:48:18 -0400 | [diff] [blame] | 4766 | nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4767 | } |
| 4768 | |
Chuck Lever | 9bc4e3c | 2010-05-07 13:34:17 -0400 | [diff] [blame] | 4769 | struct nfs4_renewdata { |
| 4770 | struct nfs_client *client; |
| 4771 | unsigned long timestamp; |
| 4772 | }; |
| 4773 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4774 | /* |
| 4775 | * nfs4_proc_async_renew(): This is not one of the nfs_rpc_ops; it is a special |
| 4776 | * standalone procedure for queueing an asynchronous RENEW. |
| 4777 | */ |
Chuck Lever | 9bc4e3c | 2010-05-07 13:34:17 -0400 | [diff] [blame] | 4778 | static void nfs4_renew_release(void *calldata) |
Alexandros Batsakis | dc96aef | 2010-02-05 03:45:04 -0800 | [diff] [blame] | 4779 | { |
Chuck Lever | 9bc4e3c | 2010-05-07 13:34:17 -0400 | [diff] [blame] | 4780 | struct nfs4_renewdata *data = calldata; |
| 4781 | struct nfs_client *clp = data->client; |
Alexandros Batsakis | dc96aef | 2010-02-05 03:45:04 -0800 | [diff] [blame] | 4782 | |
Alexandros Batsakis | 0851de06 | 2010-02-05 03:45:06 -0800 | [diff] [blame] | 4783 | if (atomic_read(&clp->cl_count) > 1) |
| 4784 | nfs4_schedule_state_renewal(clp); |
| 4785 | nfs_put_client(clp); |
Chuck Lever | 9bc4e3c | 2010-05-07 13:34:17 -0400 | [diff] [blame] | 4786 | kfree(data); |
Alexandros Batsakis | dc96aef | 2010-02-05 03:45:04 -0800 | [diff] [blame] | 4787 | } |
| 4788 | |
Chuck Lever | 9bc4e3c | 2010-05-07 13:34:17 -0400 | [diff] [blame] | 4789 | static void nfs4_renew_done(struct rpc_task *task, void *calldata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4790 | { |
Chuck Lever | 9bc4e3c | 2010-05-07 13:34:17 -0400 | [diff] [blame] | 4791 | struct nfs4_renewdata *data = calldata; |
| 4792 | struct nfs_client *clp = data->client; |
| 4793 | unsigned long timestamp = data->timestamp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4794 | |
Trond Myklebust | c6d01c6 | 2013-08-09 11:51:26 -0400 | [diff] [blame] | 4795 | trace_nfs4_renew_async(clp, task->tk_status); |
Chuck Lever | f8aba1e | 2013-10-17 14:13:53 -0400 | [diff] [blame] | 4796 | switch (task->tk_status) { |
| 4797 | case 0: |
| 4798 | break; |
| 4799 | case -NFS4ERR_LEASE_MOVED: |
| 4800 | nfs4_schedule_lease_moved_recovery(clp); |
| 4801 | break; |
| 4802 | default: |
Trond Myklebust | 95baa25 | 2009-05-26 14:51:00 -0400 | [diff] [blame] | 4803 | /* Unless we're shutting down, schedule state recovery! */ |
Trond Myklebust | 042b60b | 2011-08-24 15:07:37 -0400 | [diff] [blame] | 4804 | if (test_bit(NFS_CS_RENEWD, &clp->cl_res_state) == 0) |
| 4805 | return; |
| 4806 | if (task->tk_status != NFS4ERR_CB_PATH_DOWN) { |
Trond Myklebust | 0400a6b | 2011-03-09 16:00:53 -0500 | [diff] [blame] | 4807 | nfs4_schedule_lease_recovery(clp); |
Trond Myklebust | 042b60b | 2011-08-24 15:07:37 -0400 | [diff] [blame] | 4808 | return; |
| 4809 | } |
| 4810 | nfs4_schedule_path_down_recovery(clp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4811 | } |
Trond Myklebust | 452e935 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 4812 | do_renew_lease(clp, timestamp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4813 | } |
| 4814 | |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 4815 | static const struct rpc_call_ops nfs4_renew_ops = { |
| 4816 | .rpc_call_done = nfs4_renew_done, |
Alexandros Batsakis | dc96aef | 2010-02-05 03:45:04 -0800 | [diff] [blame] | 4817 | .rpc_release = nfs4_renew_release, |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 4818 | }; |
| 4819 | |
Trond Myklebust | 2f60ea6 | 2011-08-24 15:07:37 -0400 | [diff] [blame] | 4820 | static int nfs4_proc_async_renew(struct nfs_client *clp, struct rpc_cred *cred, unsigned renew_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4821 | { |
| 4822 | struct rpc_message msg = { |
| 4823 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW], |
| 4824 | .rpc_argp = clp, |
Trond Myklebust | b4454fe | 2006-01-03 09:55:25 +0100 | [diff] [blame] | 4825 | .rpc_cred = cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4826 | }; |
Chuck Lever | 9bc4e3c | 2010-05-07 13:34:17 -0400 | [diff] [blame] | 4827 | struct nfs4_renewdata *data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4828 | |
Trond Myklebust | 2f60ea6 | 2011-08-24 15:07:37 -0400 | [diff] [blame] | 4829 | if (renew_flags == 0) |
| 4830 | return 0; |
Alexandros Batsakis | 0851de06 | 2010-02-05 03:45:06 -0800 | [diff] [blame] | 4831 | if (!atomic_inc_not_zero(&clp->cl_count)) |
| 4832 | return -EIO; |
Trond Myklebust | b569ad3 | 2011-08-24 15:07:35 -0400 | [diff] [blame] | 4833 | data = kmalloc(sizeof(*data), GFP_NOFS); |
Chuck Lever | 9bc4e3c | 2010-05-07 13:34:17 -0400 | [diff] [blame] | 4834 | if (data == NULL) |
| 4835 | return -ENOMEM; |
| 4836 | data->client = clp; |
| 4837 | data->timestamp = jiffies; |
Trond Myklebust | bc7a05c | 2013-04-08 17:50:28 -0400 | [diff] [blame] | 4838 | return rpc_call_async(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT, |
Chuck Lever | 9bc4e3c | 2010-05-07 13:34:17 -0400 | [diff] [blame] | 4839 | &nfs4_renew_ops, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4840 | } |
| 4841 | |
Trond Myklebust | 8534d4e | 2011-08-24 15:07:37 -0400 | [diff] [blame] | 4842 | static int nfs4_proc_renew(struct nfs_client *clp, struct rpc_cred *cred) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4843 | { |
| 4844 | struct rpc_message msg = { |
| 4845 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RENEW], |
| 4846 | .rpc_argp = clp, |
Trond Myklebust | b4454fe | 2006-01-03 09:55:25 +0100 | [diff] [blame] | 4847 | .rpc_cred = cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4848 | }; |
| 4849 | unsigned long now = jiffies; |
| 4850 | int status; |
| 4851 | |
Trond Myklebust | bc7a05c | 2013-04-08 17:50:28 -0400 | [diff] [blame] | 4852 | status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4853 | if (status < 0) |
| 4854 | return status; |
Trond Myklebust | 452e935 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 4855 | do_renew_lease(clp, now); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4856 | return 0; |
| 4857 | } |
| 4858 | |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 4859 | static inline int nfs4_server_supports_acls(struct nfs_server *server) |
| 4860 | { |
Malahal Naineni | 7dd7d95 | 2014-01-23 08:54:55 -0600 | [diff] [blame] | 4861 | return server->caps & NFS_CAP_ACLS; |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 4862 | } |
| 4863 | |
Trond Myklebust | 21f498c | 2012-08-24 10:59:25 -0400 | [diff] [blame] | 4864 | /* Assuming that XATTR_SIZE_MAX is a multiple of PAGE_SIZE, and that |
| 4865 | * it's OK to put sizeof(void) * (XATTR_SIZE_MAX/PAGE_SIZE) bytes on |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 4866 | * the stack. |
| 4867 | */ |
Trond Myklebust | 21f498c | 2012-08-24 10:59:25 -0400 | [diff] [blame] | 4868 | #define NFS4ACL_MAXPAGES DIV_ROUND_UP(XATTR_SIZE_MAX, PAGE_SIZE) |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 4869 | |
Neil Horman | e9e3d72 | 2011-03-04 19:26:03 -0500 | [diff] [blame] | 4870 | static int buf_to_pages_noslab(const void *buf, size_t buflen, |
Andreas Gruenbacher | 8fbcf23 | 2015-11-03 18:25:34 +0100 | [diff] [blame] | 4871 | struct page **pages) |
Neil Horman | e9e3d72 | 2011-03-04 19:26:03 -0500 | [diff] [blame] | 4872 | { |
| 4873 | struct page *newpage, **spages; |
| 4874 | int rc = 0; |
| 4875 | size_t len; |
| 4876 | spages = pages; |
| 4877 | |
| 4878 | do { |
Trond Myklebust | 21f498c | 2012-08-24 10:59:25 -0400 | [diff] [blame] | 4879 | len = min_t(size_t, PAGE_SIZE, buflen); |
Neil Horman | e9e3d72 | 2011-03-04 19:26:03 -0500 | [diff] [blame] | 4880 | newpage = alloc_page(GFP_KERNEL); |
| 4881 | |
| 4882 | if (newpage == NULL) |
| 4883 | goto unwind; |
| 4884 | memcpy(page_address(newpage), buf, len); |
| 4885 | buf += len; |
| 4886 | buflen -= len; |
| 4887 | *pages++ = newpage; |
| 4888 | rc++; |
| 4889 | } while (buflen != 0); |
| 4890 | |
| 4891 | return rc; |
| 4892 | |
| 4893 | unwind: |
| 4894 | for(; rc > 0; rc--) |
| 4895 | __free_page(spages[rc-1]); |
| 4896 | return -ENOMEM; |
| 4897 | } |
| 4898 | |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 4899 | struct nfs4_cached_acl { |
| 4900 | int cached; |
| 4901 | size_t len; |
Andrew Morton | 3e9d415 | 2005-06-22 17:16:28 +0000 | [diff] [blame] | 4902 | char data[0]; |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 4903 | }; |
| 4904 | |
| 4905 | static void nfs4_set_cached_acl(struct inode *inode, struct nfs4_cached_acl *acl) |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 4906 | { |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 4907 | struct nfs_inode *nfsi = NFS_I(inode); |
| 4908 | |
| 4909 | spin_lock(&inode->i_lock); |
| 4910 | kfree(nfsi->nfs4_acl); |
| 4911 | nfsi->nfs4_acl = acl; |
| 4912 | spin_unlock(&inode->i_lock); |
| 4913 | } |
| 4914 | |
| 4915 | static void nfs4_zap_acl_attr(struct inode *inode) |
| 4916 | { |
| 4917 | nfs4_set_cached_acl(inode, NULL); |
| 4918 | } |
| 4919 | |
| 4920 | static inline ssize_t nfs4_read_cached_acl(struct inode *inode, char *buf, size_t buflen) |
| 4921 | { |
| 4922 | struct nfs_inode *nfsi = NFS_I(inode); |
| 4923 | struct nfs4_cached_acl *acl; |
| 4924 | int ret = -ENOENT; |
| 4925 | |
| 4926 | spin_lock(&inode->i_lock); |
| 4927 | acl = nfsi->nfs4_acl; |
| 4928 | if (acl == NULL) |
| 4929 | goto out; |
| 4930 | if (buf == NULL) /* user is just asking for length */ |
| 4931 | goto out_len; |
| 4932 | if (acl->cached == 0) |
| 4933 | goto out; |
| 4934 | ret = -ERANGE; /* see getxattr(2) man page */ |
| 4935 | if (acl->len > buflen) |
| 4936 | goto out; |
| 4937 | memcpy(buf, acl->data, acl->len); |
| 4938 | out_len: |
| 4939 | ret = acl->len; |
| 4940 | out: |
| 4941 | spin_unlock(&inode->i_lock); |
| 4942 | return ret; |
| 4943 | } |
| 4944 | |
Sachin Prabhu | 5794d21 | 2012-04-17 14:36:40 +0100 | [diff] [blame] | 4945 | static void nfs4_write_cached_acl(struct inode *inode, struct page **pages, size_t pgbase, size_t acl_len) |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 4946 | { |
| 4947 | struct nfs4_cached_acl *acl; |
Trond Myklebust | b291f1b | 2012-08-14 18:30:41 -0400 | [diff] [blame] | 4948 | size_t buflen = sizeof(*acl) + acl_len; |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 4949 | |
Trond Myklebust | 1f1ea6c | 2012-08-26 11:44:43 -0700 | [diff] [blame] | 4950 | if (buflen <= PAGE_SIZE) { |
Trond Myklebust | b291f1b | 2012-08-14 18:30:41 -0400 | [diff] [blame] | 4951 | acl = kmalloc(buflen, GFP_KERNEL); |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 4952 | if (acl == NULL) |
| 4953 | goto out; |
| 4954 | acl->cached = 1; |
Sachin Prabhu | 5794d21 | 2012-04-17 14:36:40 +0100 | [diff] [blame] | 4955 | _copy_from_pages(acl->data, pages, pgbase, acl_len); |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 4956 | } else { |
| 4957 | acl = kmalloc(sizeof(*acl), GFP_KERNEL); |
| 4958 | if (acl == NULL) |
| 4959 | goto out; |
| 4960 | acl->cached = 0; |
| 4961 | } |
| 4962 | acl->len = acl_len; |
| 4963 | out: |
| 4964 | nfs4_set_cached_acl(inode, acl); |
| 4965 | } |
| 4966 | |
Andy Adamson | bf118a3 | 2011-12-07 11:55:27 -0500 | [diff] [blame] | 4967 | /* |
| 4968 | * The getxattr API returns the required buffer length when called with a |
| 4969 | * NULL buf. The NFSv4 acl tool then calls getxattr again after allocating |
| 4970 | * the required buf. On a NULL buf, we send a page of data to the server |
| 4971 | * guessing that the ACL request can be serviced by a page. If so, we cache |
| 4972 | * up to the page of ACL data, and the 2nd call to getxattr is serviced by |
| 4973 | * the cache. If not so, we throw away the page, and cache the required |
| 4974 | * length. The next getxattr call will then produce another round trip to |
| 4975 | * the server, this time with the input buf of the required size. |
| 4976 | */ |
Trond Myklebust | 16b4289 | 2006-08-24 12:27:15 -0400 | [diff] [blame] | 4977 | static ssize_t __nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen) |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 4978 | { |
Andy Adamson | bf118a3 | 2011-12-07 11:55:27 -0500 | [diff] [blame] | 4979 | struct page *pages[NFS4ACL_MAXPAGES] = {NULL, }; |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 4980 | struct nfs_getaclargs args = { |
| 4981 | .fh = NFS_FH(inode), |
| 4982 | .acl_pages = pages, |
| 4983 | .acl_len = buflen, |
| 4984 | }; |
Benny Halevy | 663c79b | 2009-04-01 09:21:59 -0400 | [diff] [blame] | 4985 | struct nfs_getaclres res = { |
| 4986 | .acl_len = buflen, |
| 4987 | }; |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 4988 | struct rpc_message msg = { |
| 4989 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETACL], |
| 4990 | .rpc_argp = &args, |
Benny Halevy | 663c79b | 2009-04-01 09:21:59 -0400 | [diff] [blame] | 4991 | .rpc_resp = &res, |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 4992 | }; |
Trond Myklebust | 21f498c | 2012-08-24 10:59:25 -0400 | [diff] [blame] | 4993 | unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE); |
| 4994 | int ret = -ENOMEM, i; |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 4995 | |
Andy Adamson | bf118a3 | 2011-12-07 11:55:27 -0500 | [diff] [blame] | 4996 | /* As long as we're doing a round trip to the server anyway, |
| 4997 | * let's be prepared for a page of acl data. */ |
| 4998 | if (npages == 0) |
| 4999 | npages = 1; |
Trond Myklebust | 21f498c | 2012-08-24 10:59:25 -0400 | [diff] [blame] | 5000 | if (npages > ARRAY_SIZE(pages)) |
| 5001 | return -ERANGE; |
Sachin Prabhu | 5a00689 | 2012-04-17 14:35:39 +0100 | [diff] [blame] | 5002 | |
Andy Adamson | bf118a3 | 2011-12-07 11:55:27 -0500 | [diff] [blame] | 5003 | for (i = 0; i < npages; i++) { |
| 5004 | pages[i] = alloc_page(GFP_KERNEL); |
| 5005 | if (!pages[i]) |
| 5006 | goto out_free; |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 5007 | } |
Sachin Prabhu | 5a00689 | 2012-04-17 14:35:39 +0100 | [diff] [blame] | 5008 | |
| 5009 | /* for decoding across pages */ |
| 5010 | res.acl_scratch = alloc_page(GFP_KERNEL); |
| 5011 | if (!res.acl_scratch) |
| 5012 | goto out_free; |
| 5013 | |
Andy Adamson | bf118a3 | 2011-12-07 11:55:27 -0500 | [diff] [blame] | 5014 | args.acl_len = npages * PAGE_SIZE; |
Sachin Prabhu | 5a00689 | 2012-04-17 14:35:39 +0100 | [diff] [blame] | 5015 | |
Peng Tao | de040be | 2012-01-10 22:42:47 +0800 | [diff] [blame] | 5016 | dprintk("%s buf %p buflen %zu npages %d args.acl_len %zu\n", |
Andy Adamson | bf118a3 | 2011-12-07 11:55:27 -0500 | [diff] [blame] | 5017 | __func__, buf, buflen, npages, args.acl_len); |
| 5018 | ret = nfs4_call_sync(NFS_SERVER(inode)->client, NFS_SERVER(inode), |
| 5019 | &msg, &args.seq_args, &res.seq_res, 0); |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 5020 | if (ret) |
| 5021 | goto out_free; |
Andy Adamson | bf118a3 | 2011-12-07 11:55:27 -0500 | [diff] [blame] | 5022 | |
Trond Myklebust | 1f1ea6c | 2012-08-26 11:44:43 -0700 | [diff] [blame] | 5023 | /* Handle the case where the passed-in buffer is too short */ |
| 5024 | if (res.acl_flags & NFS4_ACL_TRUNC) { |
| 5025 | /* Did the user only issue a request for the acl length? */ |
| 5026 | if (buf == NULL) |
| 5027 | goto out_ok; |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 5028 | ret = -ERANGE; |
Trond Myklebust | 1f1ea6c | 2012-08-26 11:44:43 -0700 | [diff] [blame] | 5029 | goto out_free; |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 5030 | } |
Trond Myklebust | 1f1ea6c | 2012-08-26 11:44:43 -0700 | [diff] [blame] | 5031 | nfs4_write_cached_acl(inode, pages, res.acl_data_offset, res.acl_len); |
Sven Wegener | 7d3e91a | 2012-12-08 15:30:18 +0100 | [diff] [blame] | 5032 | if (buf) { |
| 5033 | if (res.acl_len > buflen) { |
| 5034 | ret = -ERANGE; |
| 5035 | goto out_free; |
| 5036 | } |
Trond Myklebust | 1f1ea6c | 2012-08-26 11:44:43 -0700 | [diff] [blame] | 5037 | _copy_from_pages(buf, pages, res.acl_data_offset, res.acl_len); |
Sven Wegener | 7d3e91a | 2012-12-08 15:30:18 +0100 | [diff] [blame] | 5038 | } |
Trond Myklebust | 1f1ea6c | 2012-08-26 11:44:43 -0700 | [diff] [blame] | 5039 | out_ok: |
| 5040 | ret = res.acl_len; |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 5041 | out_free: |
Andy Adamson | bf118a3 | 2011-12-07 11:55:27 -0500 | [diff] [blame] | 5042 | for (i = 0; i < npages; i++) |
| 5043 | if (pages[i]) |
| 5044 | __free_page(pages[i]); |
Trond Myklebust | 331818f | 2012-02-03 18:30:53 -0500 | [diff] [blame] | 5045 | if (res.acl_scratch) |
| 5046 | __free_page(res.acl_scratch); |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 5047 | return ret; |
| 5048 | } |
| 5049 | |
Trond Myklebust | 16b4289 | 2006-08-24 12:27:15 -0400 | [diff] [blame] | 5050 | static ssize_t nfs4_get_acl_uncached(struct inode *inode, void *buf, size_t buflen) |
| 5051 | { |
| 5052 | struct nfs4_exception exception = { }; |
| 5053 | ssize_t ret; |
| 5054 | do { |
| 5055 | ret = __nfs4_get_acl_uncached(inode, buf, buflen); |
Trond Myklebust | c1578b7 | 2013-08-12 16:58:42 -0400 | [diff] [blame] | 5056 | trace_nfs4_get_acl(inode, ret); |
Trond Myklebust | 16b4289 | 2006-08-24 12:27:15 -0400 | [diff] [blame] | 5057 | if (ret >= 0) |
| 5058 | break; |
| 5059 | ret = nfs4_handle_exception(NFS_SERVER(inode), ret, &exception); |
| 5060 | } while (exception.retry); |
| 5061 | return ret; |
| 5062 | } |
| 5063 | |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 5064 | static ssize_t nfs4_proc_get_acl(struct inode *inode, void *buf, size_t buflen) |
| 5065 | { |
| 5066 | struct nfs_server *server = NFS_SERVER(inode); |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 5067 | int ret; |
| 5068 | |
| 5069 | if (!nfs4_server_supports_acls(server)) |
| 5070 | return -EOPNOTSUPP; |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 5071 | ret = nfs_revalidate_inode(server, inode); |
| 5072 | if (ret < 0) |
| 5073 | return ret; |
Aneesh Kumar K.V | 08a22b3 | 2010-12-01 10:42:16 +0000 | [diff] [blame] | 5074 | if (NFS_I(inode)->cache_validity & NFS_INO_INVALID_ACL) |
| 5075 | nfs_zap_acl_cache(inode); |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 5076 | ret = nfs4_read_cached_acl(inode, buf, buflen); |
| 5077 | if (ret != -ENOENT) |
Andy Adamson | bf118a3 | 2011-12-07 11:55:27 -0500 | [diff] [blame] | 5078 | /* -ENOENT is returned if there is no ACL or if there is an ACL |
| 5079 | * but no cached acl data, just the acl length */ |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 5080 | return ret; |
| 5081 | return nfs4_get_acl_uncached(inode, buf, buflen); |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 5082 | } |
| 5083 | |
Trond Myklebust | 16b4289 | 2006-08-24 12:27:15 -0400 | [diff] [blame] | 5084 | static int __nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen) |
J. Bruce Fields | 4b580ee | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 5085 | { |
| 5086 | struct nfs_server *server = NFS_SERVER(inode); |
| 5087 | struct page *pages[NFS4ACL_MAXPAGES]; |
| 5088 | struct nfs_setaclargs arg = { |
| 5089 | .fh = NFS_FH(inode), |
| 5090 | .acl_pages = pages, |
| 5091 | .acl_len = buflen, |
| 5092 | }; |
Benny Halevy | 73c403a | 2009-04-01 09:22:01 -0400 | [diff] [blame] | 5093 | struct nfs_setaclres res; |
J. Bruce Fields | 4b580ee | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 5094 | struct rpc_message msg = { |
| 5095 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETACL], |
| 5096 | .rpc_argp = &arg, |
Benny Halevy | 73c403a | 2009-04-01 09:22:01 -0400 | [diff] [blame] | 5097 | .rpc_resp = &res, |
J. Bruce Fields | 4b580ee | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 5098 | }; |
Trond Myklebust | 21f498c | 2012-08-24 10:59:25 -0400 | [diff] [blame] | 5099 | unsigned int npages = DIV_ROUND_UP(buflen, PAGE_SIZE); |
Neil Horman | e9e3d72 | 2011-03-04 19:26:03 -0500 | [diff] [blame] | 5100 | int ret, i; |
J. Bruce Fields | 4b580ee | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 5101 | |
| 5102 | if (!nfs4_server_supports_acls(server)) |
| 5103 | return -EOPNOTSUPP; |
Trond Myklebust | 21f498c | 2012-08-24 10:59:25 -0400 | [diff] [blame] | 5104 | if (npages > ARRAY_SIZE(pages)) |
| 5105 | return -ERANGE; |
Andreas Gruenbacher | 8fbcf23 | 2015-11-03 18:25:34 +0100 | [diff] [blame] | 5106 | i = buf_to_pages_noslab(buf, buflen, arg.acl_pages); |
Neil Horman | e9e3d72 | 2011-03-04 19:26:03 -0500 | [diff] [blame] | 5107 | if (i < 0) |
| 5108 | return i; |
Bryan Schumaker | 57ec14c | 2012-06-20 15:53:44 -0400 | [diff] [blame] | 5109 | nfs4_inode_return_delegation(inode); |
Bryan Schumaker | 7c51305 | 2011-03-24 17:12:24 +0000 | [diff] [blame] | 5110 | ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1); |
Neil Horman | e9e3d72 | 2011-03-04 19:26:03 -0500 | [diff] [blame] | 5111 | |
| 5112 | /* |
| 5113 | * Free each page after tx, so the only ref left is |
| 5114 | * held by the network stack |
| 5115 | */ |
| 5116 | for (; i > 0; i--) |
| 5117 | put_page(pages[i-1]); |
| 5118 | |
Aneesh Kumar K.V | 08a22b3 | 2010-12-01 10:42:16 +0000 | [diff] [blame] | 5119 | /* |
| 5120 | * Acl update can result in inode attribute update. |
| 5121 | * so mark the attribute cache invalid. |
| 5122 | */ |
| 5123 | spin_lock(&inode->i_lock); |
| 5124 | NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATTR; |
| 5125 | spin_unlock(&inode->i_lock); |
Trond Myklebust | f41f741 | 2008-06-11 17:39:04 -0400 | [diff] [blame] | 5126 | nfs_access_zap_cache(inode); |
| 5127 | nfs_zap_acl_cache(inode); |
J. Bruce Fields | 4b580ee | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 5128 | return ret; |
| 5129 | } |
| 5130 | |
Trond Myklebust | 16b4289 | 2006-08-24 12:27:15 -0400 | [diff] [blame] | 5131 | static int nfs4_proc_set_acl(struct inode *inode, const void *buf, size_t buflen) |
| 5132 | { |
| 5133 | struct nfs4_exception exception = { }; |
| 5134 | int err; |
| 5135 | do { |
Trond Myklebust | c1578b7 | 2013-08-12 16:58:42 -0400 | [diff] [blame] | 5136 | err = __nfs4_proc_set_acl(inode, buf, buflen); |
| 5137 | trace_nfs4_set_acl(inode, err); |
| 5138 | err = nfs4_handle_exception(NFS_SERVER(inode), err, |
Trond Myklebust | 16b4289 | 2006-08-24 12:27:15 -0400 | [diff] [blame] | 5139 | &exception); |
| 5140 | } while (exception.retry); |
| 5141 | return err; |
| 5142 | } |
| 5143 | |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 5144 | #ifdef CONFIG_NFS_V4_SECURITY_LABEL |
| 5145 | static int _nfs4_get_security_label(struct inode *inode, void *buf, |
| 5146 | size_t buflen) |
| 5147 | { |
| 5148 | struct nfs_server *server = NFS_SERVER(inode); |
| 5149 | struct nfs_fattr fattr; |
| 5150 | struct nfs4_label label = {0, 0, buflen, buf}; |
| 5151 | |
| 5152 | u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL }; |
Trond Myklebust | fcb63a9 | 2013-11-01 12:42:25 -0400 | [diff] [blame] | 5153 | struct nfs4_getattr_arg arg = { |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 5154 | .fh = NFS_FH(inode), |
| 5155 | .bitmask = bitmask, |
| 5156 | }; |
| 5157 | struct nfs4_getattr_res res = { |
| 5158 | .fattr = &fattr, |
| 5159 | .label = &label, |
| 5160 | .server = server, |
| 5161 | }; |
| 5162 | struct rpc_message msg = { |
| 5163 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETATTR], |
Trond Myklebust | fcb63a9 | 2013-11-01 12:42:25 -0400 | [diff] [blame] | 5164 | .rpc_argp = &arg, |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 5165 | .rpc_resp = &res, |
| 5166 | }; |
| 5167 | int ret; |
| 5168 | |
| 5169 | nfs_fattr_init(&fattr); |
| 5170 | |
Trond Myklebust | fcb63a9 | 2013-11-01 12:42:25 -0400 | [diff] [blame] | 5171 | ret = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 0); |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 5172 | if (ret) |
| 5173 | return ret; |
| 5174 | if (!(fattr.valid & NFS_ATTR_FATTR_V4_SECURITY_LABEL)) |
| 5175 | return -ENOENT; |
| 5176 | if (buflen < label.len) |
| 5177 | return -ERANGE; |
| 5178 | return 0; |
| 5179 | } |
| 5180 | |
| 5181 | static int nfs4_get_security_label(struct inode *inode, void *buf, |
| 5182 | size_t buflen) |
| 5183 | { |
| 5184 | struct nfs4_exception exception = { }; |
| 5185 | int err; |
| 5186 | |
| 5187 | if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL)) |
| 5188 | return -EOPNOTSUPP; |
| 5189 | |
| 5190 | do { |
Trond Myklebust | c1578b7 | 2013-08-12 16:58:42 -0400 | [diff] [blame] | 5191 | err = _nfs4_get_security_label(inode, buf, buflen); |
| 5192 | trace_nfs4_get_security_label(inode, err); |
| 5193 | err = nfs4_handle_exception(NFS_SERVER(inode), err, |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 5194 | &exception); |
| 5195 | } while (exception.retry); |
| 5196 | return err; |
| 5197 | } |
| 5198 | |
| 5199 | static int _nfs4_do_set_security_label(struct inode *inode, |
| 5200 | struct nfs4_label *ilabel, |
| 5201 | struct nfs_fattr *fattr, |
| 5202 | struct nfs4_label *olabel) |
| 5203 | { |
| 5204 | |
| 5205 | struct iattr sattr = {0}; |
| 5206 | struct nfs_server *server = NFS_SERVER(inode); |
| 5207 | const u32 bitmask[3] = { 0, 0, FATTR4_WORD2_SECURITY_LABEL }; |
Jeff Layton | 12207f6 | 2013-11-01 10:49:32 -0400 | [diff] [blame] | 5208 | struct nfs_setattrargs arg = { |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 5209 | .fh = NFS_FH(inode), |
| 5210 | .iap = &sattr, |
| 5211 | .server = server, |
| 5212 | .bitmask = bitmask, |
| 5213 | .label = ilabel, |
| 5214 | }; |
| 5215 | struct nfs_setattrres res = { |
| 5216 | .fattr = fattr, |
| 5217 | .label = olabel, |
| 5218 | .server = server, |
| 5219 | }; |
| 5220 | struct rpc_message msg = { |
| 5221 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETATTR], |
Jeff Layton | 12207f6 | 2013-11-01 10:49:32 -0400 | [diff] [blame] | 5222 | .rpc_argp = &arg, |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 5223 | .rpc_resp = &res, |
| 5224 | }; |
| 5225 | int status; |
| 5226 | |
Jeff Layton | 12207f6 | 2013-11-01 10:49:32 -0400 | [diff] [blame] | 5227 | nfs4_stateid_copy(&arg.stateid, &zero_stateid); |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 5228 | |
Jeff Layton | 12207f6 | 2013-11-01 10:49:32 -0400 | [diff] [blame] | 5229 | status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1); |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 5230 | if (status) |
| 5231 | dprintk("%s failed: %d\n", __func__, status); |
| 5232 | |
| 5233 | return status; |
| 5234 | } |
| 5235 | |
| 5236 | static int nfs4_do_set_security_label(struct inode *inode, |
| 5237 | struct nfs4_label *ilabel, |
| 5238 | struct nfs_fattr *fattr, |
| 5239 | struct nfs4_label *olabel) |
| 5240 | { |
| 5241 | struct nfs4_exception exception = { }; |
| 5242 | int err; |
| 5243 | |
| 5244 | do { |
Trond Myklebust | c1578b7 | 2013-08-12 16:58:42 -0400 | [diff] [blame] | 5245 | err = _nfs4_do_set_security_label(inode, ilabel, |
| 5246 | fattr, olabel); |
| 5247 | trace_nfs4_set_security_label(inode, err); |
| 5248 | err = nfs4_handle_exception(NFS_SERVER(inode), err, |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 5249 | &exception); |
| 5250 | } while (exception.retry); |
| 5251 | return err; |
| 5252 | } |
| 5253 | |
| 5254 | static int |
Al Viro | 5930122 | 2016-05-27 10:19:30 -0400 | [diff] [blame] | 5255 | nfs4_set_security_label(struct inode *inode, const void *buf, size_t buflen) |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 5256 | { |
| 5257 | struct nfs4_label ilabel, *olabel = NULL; |
| 5258 | struct nfs_fattr fattr; |
| 5259 | struct rpc_cred *cred; |
David Quigley | aa9c266 | 2013-05-22 12:50:44 -0400 | [diff] [blame] | 5260 | int status; |
| 5261 | |
| 5262 | if (!nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL)) |
| 5263 | return -EOPNOTSUPP; |
| 5264 | |
| 5265 | nfs_fattr_init(&fattr); |
| 5266 | |
| 5267 | ilabel.pi = 0; |
| 5268 | ilabel.lfs = 0; |
| 5269 | ilabel.label = (char *)buf; |
| 5270 | ilabel.len = buflen; |
| 5271 | |
| 5272 | cred = rpc_lookup_cred(); |
| 5273 | if (IS_ERR(cred)) |
| 5274 | return PTR_ERR(cred); |
| 5275 | |
| 5276 | olabel = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL); |
| 5277 | if (IS_ERR(olabel)) { |
| 5278 | status = -PTR_ERR(olabel); |
| 5279 | goto out; |
| 5280 | } |
| 5281 | |
| 5282 | status = nfs4_do_set_security_label(inode, &ilabel, &fattr, olabel); |
| 5283 | if (status == 0) |
| 5284 | nfs_setsecurity(inode, &fattr, olabel); |
| 5285 | |
| 5286 | nfs4_label_free(olabel); |
| 5287 | out: |
| 5288 | put_rpccred(cred); |
| 5289 | return status; |
| 5290 | } |
| 5291 | #endif /* CONFIG_NFS_V4_SECURITY_LABEL */ |
| 5292 | |
| 5293 | |
Chuck Lever | f092075 | 2012-05-21 22:45:41 -0400 | [diff] [blame] | 5294 | static void nfs4_init_boot_verifier(const struct nfs_client *clp, |
| 5295 | nfs4_verifier *bootverf) |
Chuck Lever | cd93710 | 2012-03-02 17:14:31 -0500 | [diff] [blame] | 5296 | { |
| 5297 | __be32 verf[2]; |
| 5298 | |
Chuck Lever | 2c820d9 | 2012-05-21 22:45:33 -0400 | [diff] [blame] | 5299 | if (test_bit(NFS4CLNT_PURGE_STATE, &clp->cl_state)) { |
| 5300 | /* An impossible timestamp guarantees this value |
| 5301 | * will never match a generated boot time. */ |
Deepa Dinamani | 2f86e09 | 2016-10-01 16:46:26 -0700 | [diff] [blame] | 5302 | verf[0] = cpu_to_be32(U32_MAX); |
| 5303 | verf[1] = cpu_to_be32(U32_MAX); |
Chuck Lever | 2c820d9 | 2012-05-21 22:45:33 -0400 | [diff] [blame] | 5304 | } else { |
Chuck Lever | f092075 | 2012-05-21 22:45:41 -0400 | [diff] [blame] | 5305 | struct nfs_net *nn = net_generic(clp->cl_net, nfs_net_id); |
Deepa Dinamani | 2f86e09 | 2016-10-01 16:46:26 -0700 | [diff] [blame] | 5306 | u64 ns = ktime_to_ns(nn->boot_time); |
| 5307 | |
| 5308 | verf[0] = cpu_to_be32(ns >> 32); |
| 5309 | verf[1] = cpu_to_be32(ns); |
Chuck Lever | 2c820d9 | 2012-05-21 22:45:33 -0400 | [diff] [blame] | 5310 | } |
Chuck Lever | cd93710 | 2012-03-02 17:14:31 -0500 | [diff] [blame] | 5311 | memcpy(bootverf->data, verf, sizeof(bootverf->data)); |
| 5312 | } |
| 5313 | |
Jeff Layton | a319268 | 2015-06-09 19:43:59 -0400 | [diff] [blame] | 5314 | static int |
| 5315 | nfs4_init_nonuniform_client_string(struct nfs_client *clp) |
Chuck Lever | e984a55 | 2012-09-14 17:24:21 -0400 | [diff] [blame] | 5316 | { |
Jeff Layton | a319268 | 2015-06-09 19:43:59 -0400 | [diff] [blame] | 5317 | size_t len; |
| 5318 | char *str; |
Chuck Lever | e984a55 | 2012-09-14 17:24:21 -0400 | [diff] [blame] | 5319 | |
Trond Myklebust | ceb3a16 | 2015-01-03 15:16:04 -0500 | [diff] [blame] | 5320 | if (clp->cl_owner_id != NULL) |
Jeff Layton | a319268 | 2015-06-09 19:43:59 -0400 | [diff] [blame] | 5321 | return 0; |
Kinglong Mee | 4a3e577 | 2015-08-31 10:53:43 +0800 | [diff] [blame] | 5322 | |
Jeff Layton | a319268 | 2015-06-09 19:43:59 -0400 | [diff] [blame] | 5323 | rcu_read_lock(); |
Kinglong Mee | 4a70316 | 2015-08-31 10:53:33 +0800 | [diff] [blame] | 5324 | len = 14 + strlen(clp->cl_ipaddr) + 1 + |
Jeff Layton | a319268 | 2015-06-09 19:43:59 -0400 | [diff] [blame] | 5325 | strlen(rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_ADDR)) + |
| 5326 | 1 + |
| 5327 | strlen(rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_PROTO)) + |
| 5328 | 1; |
| 5329 | rcu_read_unlock(); |
| 5330 | |
| 5331 | if (len > NFS4_OPAQUE_LIMIT + 1) |
| 5332 | return -EINVAL; |
| 5333 | |
| 5334 | /* |
| 5335 | * Since this string is allocated at mount time, and held until the |
| 5336 | * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying |
| 5337 | * about a memory-reclaim deadlock. |
| 5338 | */ |
| 5339 | str = kmalloc(len, GFP_KERNEL); |
| 5340 | if (!str) |
| 5341 | return -ENOMEM; |
Trond Myklebust | ceb3a16 | 2015-01-03 15:16:04 -0500 | [diff] [blame] | 5342 | |
Chuck Lever | e984a55 | 2012-09-14 17:24:21 -0400 | [diff] [blame] | 5343 | rcu_read_lock(); |
Trond Myklebust | f2dd436 | 2015-10-08 11:33:17 -0400 | [diff] [blame] | 5344 | scnprintf(str, len, "Linux NFSv4.0 %s/%s %s", |
Jeff Layton | a319268 | 2015-06-09 19:43:59 -0400 | [diff] [blame] | 5345 | clp->cl_ipaddr, |
| 5346 | rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_ADDR), |
| 5347 | rpc_peeraddr2str(clp->cl_rpcclient, RPC_DISPLAY_PROTO)); |
Chuck Lever | e984a55 | 2012-09-14 17:24:21 -0400 | [diff] [blame] | 5348 | rcu_read_unlock(); |
Jeff Layton | a319268 | 2015-06-09 19:43:59 -0400 | [diff] [blame] | 5349 | |
Jeff Layton | a319268 | 2015-06-09 19:43:59 -0400 | [diff] [blame] | 5350 | clp->cl_owner_id = str; |
| 5351 | return 0; |
Chuck Lever | e984a55 | 2012-09-14 17:24:21 -0400 | [diff] [blame] | 5352 | } |
| 5353 | |
Jeff Layton | 873e385 | 2015-06-09 19:44:00 -0400 | [diff] [blame] | 5354 | static int |
| 5355 | nfs4_init_uniquifier_client_string(struct nfs_client *clp) |
Chuck Lever | e984a55 | 2012-09-14 17:24:21 -0400 | [diff] [blame] | 5356 | { |
Jeff Layton | 873e385 | 2015-06-09 19:44:00 -0400 | [diff] [blame] | 5357 | size_t len; |
| 5358 | char *str; |
| 5359 | |
| 5360 | len = 10 + 10 + 1 + 10 + 1 + |
| 5361 | strlen(nfs4_client_id_uniquifier) + 1 + |
| 5362 | strlen(clp->cl_rpcclient->cl_nodename) + 1; |
| 5363 | |
| 5364 | if (len > NFS4_OPAQUE_LIMIT + 1) |
| 5365 | return -EINVAL; |
| 5366 | |
| 5367 | /* |
| 5368 | * Since this string is allocated at mount time, and held until the |
| 5369 | * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying |
| 5370 | * about a memory-reclaim deadlock. |
| 5371 | */ |
| 5372 | str = kmalloc(len, GFP_KERNEL); |
| 5373 | if (!str) |
| 5374 | return -ENOMEM; |
| 5375 | |
Trond Myklebust | f2dd436 | 2015-10-08 11:33:17 -0400 | [diff] [blame] | 5376 | scnprintf(str, len, "Linux NFSv%u.%u %s/%s", |
Jeff Layton | 873e385 | 2015-06-09 19:44:00 -0400 | [diff] [blame] | 5377 | clp->rpc_ops->version, clp->cl_minorversion, |
| 5378 | nfs4_client_id_uniquifier, |
| 5379 | clp->cl_rpcclient->cl_nodename); |
Jeff Layton | 873e385 | 2015-06-09 19:44:00 -0400 | [diff] [blame] | 5380 | clp->cl_owner_id = str; |
| 5381 | return 0; |
| 5382 | } |
| 5383 | |
| 5384 | static int |
| 5385 | nfs4_init_uniform_client_string(struct nfs_client *clp) |
| 5386 | { |
Jeff Layton | 873e385 | 2015-06-09 19:44:00 -0400 | [diff] [blame] | 5387 | size_t len; |
| 5388 | char *str; |
Trond Myklebust | ceb3a16 | 2015-01-03 15:16:04 -0500 | [diff] [blame] | 5389 | |
| 5390 | if (clp->cl_owner_id != NULL) |
Jeff Layton | 873e385 | 2015-06-09 19:44:00 -0400 | [diff] [blame] | 5391 | return 0; |
Chuck Lever | 6f2ea7f | 2012-09-14 17:24:41 -0400 | [diff] [blame] | 5392 | |
| 5393 | if (nfs4_client_id_uniquifier[0] != '\0') |
Jeff Layton | 873e385 | 2015-06-09 19:44:00 -0400 | [diff] [blame] | 5394 | return nfs4_init_uniquifier_client_string(clp); |
| 5395 | |
| 5396 | len = 10 + 10 + 1 + 10 + 1 + |
| 5397 | strlen(clp->cl_rpcclient->cl_nodename) + 1; |
| 5398 | |
| 5399 | if (len > NFS4_OPAQUE_LIMIT + 1) |
| 5400 | return -EINVAL; |
| 5401 | |
| 5402 | /* |
| 5403 | * Since this string is allocated at mount time, and held until the |
| 5404 | * nfs_client is destroyed, we can use GFP_KERNEL here w/o worrying |
| 5405 | * about a memory-reclaim deadlock. |
| 5406 | */ |
| 5407 | str = kmalloc(len, GFP_KERNEL); |
| 5408 | if (!str) |
| 5409 | return -ENOMEM; |
| 5410 | |
Trond Myklebust | f2dd436 | 2015-10-08 11:33:17 -0400 | [diff] [blame] | 5411 | scnprintf(str, len, "Linux NFSv%u.%u %s", |
Jeff Layton | 873e385 | 2015-06-09 19:44:00 -0400 | [diff] [blame] | 5412 | clp->rpc_ops->version, clp->cl_minorversion, |
| 5413 | clp->cl_rpcclient->cl_nodename); |
Jeff Layton | 873e385 | 2015-06-09 19:44:00 -0400 | [diff] [blame] | 5414 | clp->cl_owner_id = str; |
| 5415 | return 0; |
Chuck Lever | e984a55 | 2012-09-14 17:24:21 -0400 | [diff] [blame] | 5416 | } |
| 5417 | |
Chuck Lever | 706cb8d | 2014-03-12 12:51:47 -0400 | [diff] [blame] | 5418 | /* |
| 5419 | * nfs4_callback_up_net() starts only "tcp" and "tcp6" callback |
| 5420 | * services. Advertise one based on the address family of the |
| 5421 | * clientaddr. |
| 5422 | */ |
| 5423 | static unsigned int |
| 5424 | nfs4_init_callback_netid(const struct nfs_client *clp, char *buf, size_t len) |
| 5425 | { |
| 5426 | if (strchr(clp->cl_ipaddr, ':') != NULL) |
| 5427 | return scnprintf(buf, len, "tcp6"); |
| 5428 | else |
| 5429 | return scnprintf(buf, len, "tcp"); |
| 5430 | } |
| 5431 | |
Jeff Layton | f11b2a1 | 2014-06-21 20:52:17 -0400 | [diff] [blame] | 5432 | static void nfs4_setclientid_done(struct rpc_task *task, void *calldata) |
| 5433 | { |
| 5434 | struct nfs4_setclientid *sc = calldata; |
| 5435 | |
| 5436 | if (task->tk_status == 0) |
| 5437 | sc->sc_cred = get_rpccred(task->tk_rqstp->rq_cred); |
| 5438 | } |
| 5439 | |
| 5440 | static const struct rpc_call_ops nfs4_setclientid_ops = { |
| 5441 | .rpc_call_done = nfs4_setclientid_done, |
| 5442 | }; |
| 5443 | |
Chuck Lever | 6bbb4ae | 2012-07-11 16:30:59 -0400 | [diff] [blame] | 5444 | /** |
| 5445 | * nfs4_proc_setclientid - Negotiate client ID |
| 5446 | * @clp: state data structure |
| 5447 | * @program: RPC program for NFSv4 callback service |
| 5448 | * @port: IP port number for NFS4 callback service |
| 5449 | * @cred: RPC credential to use for this call |
| 5450 | * @res: where to place the result |
| 5451 | * |
| 5452 | * Returns zero, a negative errno, or a negative NFS4ERR status code. |
| 5453 | */ |
Trond Myklebust | bb8b27e | 2010-04-16 16:43:06 -0400 | [diff] [blame] | 5454 | int nfs4_proc_setclientid(struct nfs_client *clp, u32 program, |
| 5455 | unsigned short port, struct rpc_cred *cred, |
| 5456 | struct nfs4_setclientid_res *res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5457 | { |
| 5458 | nfs4_verifier sc_verifier; |
| 5459 | struct nfs4_setclientid setclientid = { |
| 5460 | .sc_verifier = &sc_verifier, |
| 5461 | .sc_prog = program, |
Jeff Layton | 3a6bb73 | 2015-06-09 19:43:57 -0400 | [diff] [blame] | 5462 | .sc_clnt = clp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5463 | }; |
| 5464 | struct rpc_message msg = { |
| 5465 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID], |
| 5466 | .rpc_argp = &setclientid, |
Trond Myklebust | bb8b27e | 2010-04-16 16:43:06 -0400 | [diff] [blame] | 5467 | .rpc_resp = res, |
Trond Myklebust | 286d7d6 | 2006-01-03 09:55:26 +0100 | [diff] [blame] | 5468 | .rpc_cred = cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5469 | }; |
Jeff Layton | f11b2a1 | 2014-06-21 20:52:17 -0400 | [diff] [blame] | 5470 | struct rpc_task *task; |
| 5471 | struct rpc_task_setup task_setup_data = { |
| 5472 | .rpc_client = clp->cl_rpcclient, |
| 5473 | .rpc_message = &msg, |
| 5474 | .callback_ops = &nfs4_setclientid_ops, |
| 5475 | .callback_data = &setclientid, |
| 5476 | .flags = RPC_TASK_TIMEOUT, |
| 5477 | }; |
Chuck Lever | 6bbb4ae | 2012-07-11 16:30:59 -0400 | [diff] [blame] | 5478 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5479 | |
Chuck Lever | de73483 | 2012-07-11 16:30:50 -0400 | [diff] [blame] | 5480 | /* nfs_client_id4 */ |
Chuck Lever | f092075 | 2012-05-21 22:45:41 -0400 | [diff] [blame] | 5481 | nfs4_init_boot_verifier(clp, &sc_verifier); |
Jeff Layton | 873e385 | 2015-06-09 19:44:00 -0400 | [diff] [blame] | 5482 | |
| 5483 | if (test_bit(NFS_CS_MIGRATION, &clp->cl_flags)) |
| 5484 | status = nfs4_init_uniform_client_string(clp); |
| 5485 | else |
Jeff Layton | a319268 | 2015-06-09 19:43:59 -0400 | [diff] [blame] | 5486 | status = nfs4_init_nonuniform_client_string(clp); |
Jeff Layton | 873e385 | 2015-06-09 19:44:00 -0400 | [diff] [blame] | 5487 | |
| 5488 | if (status) |
| 5489 | goto out; |
Jeff Layton | 3a6bb73 | 2015-06-09 19:43:57 -0400 | [diff] [blame] | 5490 | |
Chuck Lever | de73483 | 2012-07-11 16:30:50 -0400 | [diff] [blame] | 5491 | /* cb_client4 */ |
Chuck Lever | 706cb8d | 2014-03-12 12:51:47 -0400 | [diff] [blame] | 5492 | setclientid.sc_netid_len = |
| 5493 | nfs4_init_callback_netid(clp, |
| 5494 | setclientid.sc_netid, |
| 5495 | sizeof(setclientid.sc_netid)); |
Chuck Lever | de73483 | 2012-07-11 16:30:50 -0400 | [diff] [blame] | 5496 | setclientid.sc_uaddr_len = scnprintf(setclientid.sc_uaddr, |
Chuck Lever | d4d3c50 | 2007-12-10 14:57:09 -0500 | [diff] [blame] | 5497 | sizeof(setclientid.sc_uaddr), "%s.%u.%u", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5498 | clp->cl_ipaddr, port >> 8, port & 255); |
| 5499 | |
Jeff Layton | 3a6bb73 | 2015-06-09 19:43:57 -0400 | [diff] [blame] | 5500 | dprintk("NFS call setclientid auth=%s, '%s'\n", |
Chuck Lever | 6bbb4ae | 2012-07-11 16:30:59 -0400 | [diff] [blame] | 5501 | clp->cl_rpcclient->cl_auth->au_ops->au_name, |
Jeff Layton | 3a6bb73 | 2015-06-09 19:43:57 -0400 | [diff] [blame] | 5502 | clp->cl_owner_id); |
Jeff Layton | f11b2a1 | 2014-06-21 20:52:17 -0400 | [diff] [blame] | 5503 | task = rpc_run_task(&task_setup_data); |
| 5504 | if (IS_ERR(task)) { |
| 5505 | status = PTR_ERR(task); |
| 5506 | goto out; |
| 5507 | } |
| 5508 | status = task->tk_status; |
| 5509 | if (setclientid.sc_cred) { |
| 5510 | clp->cl_acceptor = rpcauth_stringify_acceptor(setclientid.sc_cred); |
| 5511 | put_rpccred(setclientid.sc_cred); |
| 5512 | } |
| 5513 | rpc_put_task(task); |
| 5514 | out: |
Trond Myklebust | c6d01c6 | 2013-08-09 11:51:26 -0400 | [diff] [blame] | 5515 | trace_nfs4_setclientid(clp, status); |
Chuck Lever | 6bbb4ae | 2012-07-11 16:30:59 -0400 | [diff] [blame] | 5516 | dprintk("NFS reply setclientid: %d\n", status); |
| 5517 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5518 | } |
| 5519 | |
Chuck Lever | 6bbb4ae | 2012-07-11 16:30:59 -0400 | [diff] [blame] | 5520 | /** |
| 5521 | * nfs4_proc_setclientid_confirm - Confirm client ID |
| 5522 | * @clp: state data structure |
| 5523 | * @res: result of a previous SETCLIENTID |
| 5524 | * @cred: RPC credential to use for this call |
| 5525 | * |
| 5526 | * Returns zero, a negative errno, or a negative NFS4ERR status code. |
| 5527 | */ |
Trond Myklebust | fd954ae | 2011-04-24 14:28:18 -0400 | [diff] [blame] | 5528 | int nfs4_proc_setclientid_confirm(struct nfs_client *clp, |
Trond Myklebust | bb8b27e | 2010-04-16 16:43:06 -0400 | [diff] [blame] | 5529 | struct nfs4_setclientid_res *arg, |
| 5530 | struct rpc_cred *cred) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5531 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5532 | struct rpc_message msg = { |
| 5533 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SETCLIENTID_CONFIRM], |
Trond Myklebust | bb8b27e | 2010-04-16 16:43:06 -0400 | [diff] [blame] | 5534 | .rpc_argp = arg, |
Trond Myklebust | 286d7d6 | 2006-01-03 09:55:26 +0100 | [diff] [blame] | 5535 | .rpc_cred = cred, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5536 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5537 | int status; |
| 5538 | |
Chuck Lever | 6bbb4ae | 2012-07-11 16:30:59 -0400 | [diff] [blame] | 5539 | dprintk("NFS call setclientid_confirm auth=%s, (client ID %llx)\n", |
| 5540 | clp->cl_rpcclient->cl_auth->au_ops->au_name, |
| 5541 | clp->cl_clientid); |
Trond Myklebust | 1bd714f | 2011-04-24 14:29:33 -0400 | [diff] [blame] | 5542 | status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT); |
Trond Myklebust | c6d01c6 | 2013-08-09 11:51:26 -0400 | [diff] [blame] | 5543 | trace_nfs4_setclientid_confirm(clp, status); |
Chuck Lever | 6bbb4ae | 2012-07-11 16:30:59 -0400 | [diff] [blame] | 5544 | dprintk("NFS reply setclientid_confirm: %d\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5545 | return status; |
| 5546 | } |
| 5547 | |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 5548 | struct nfs4_delegreturndata { |
| 5549 | struct nfs4_delegreturnargs args; |
Trond Myklebust | fa178f2 | 2006-01-03 09:55:38 +0100 | [diff] [blame] | 5550 | struct nfs4_delegreturnres res; |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 5551 | struct nfs_fh fh; |
| 5552 | nfs4_stateid stateid; |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 5553 | unsigned long timestamp; |
Trond Myklebust | fa178f2 | 2006-01-03 09:55:38 +0100 | [diff] [blame] | 5554 | struct nfs_fattr fattr; |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 5555 | int rpc_status; |
Peng Tao | 039b756 | 2014-07-03 13:05:02 +0800 | [diff] [blame] | 5556 | struct inode *inode; |
| 5557 | bool roc; |
| 5558 | u32 roc_barrier; |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 5559 | }; |
| 5560 | |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 5561 | static void nfs4_delegreturn_done(struct rpc_task *task, void *calldata) |
| 5562 | { |
| 5563 | struct nfs4_delegreturndata *data = calldata; |
Andy Adamson | 938e101 | 2009-04-01 09:22:28 -0400 | [diff] [blame] | 5564 | |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 5565 | if (!nfs4_sequence_done(task, &data->res.seq_res)) |
| 5566 | return; |
Andy Adamson | 938e101 | 2009-04-01 09:22:28 -0400 | [diff] [blame] | 5567 | |
Trond Myklebust | ca8acf8 | 2013-08-13 10:36:56 -0400 | [diff] [blame] | 5568 | trace_nfs4_delegreturn_exit(&data->args, &data->res, task->tk_status); |
Ricardo Labiaga | 7970886 | 2009-12-07 09:23:21 -0500 | [diff] [blame] | 5569 | switch (task->tk_status) { |
Ricardo Labiaga | 7970886 | 2009-12-07 09:23:21 -0500 | [diff] [blame] | 5570 | case 0: |
Trond Myklebust | fa178f2 | 2006-01-03 09:55:38 +0100 | [diff] [blame] | 5571 | renew_lease(data->res.server, data->timestamp); |
Trond Myklebust | 23ea44c | 2016-11-10 16:06:28 -0500 | [diff] [blame^] | 5572 | break; |
Trond Myklebust | c97cf60 | 2013-11-19 16:34:14 -0500 | [diff] [blame] | 5573 | case -NFS4ERR_ADMIN_REVOKED: |
| 5574 | case -NFS4ERR_DELEG_REVOKED: |
Trond Myklebust | 26d3630 | 2016-09-22 13:39:05 -0400 | [diff] [blame] | 5575 | case -NFS4ERR_EXPIRED: |
| 5576 | nfs4_free_revoked_stateid(data->res.server, |
| 5577 | data->args.stateid, |
| 5578 | task->tk_msg.rpc_cred); |
Trond Myklebust | c97cf60 | 2013-11-19 16:34:14 -0500 | [diff] [blame] | 5579 | case -NFS4ERR_BAD_STATEID: |
| 5580 | case -NFS4ERR_OLD_STATEID: |
| 5581 | case -NFS4ERR_STALE_STATEID: |
Trond Myklebust | c97cf60 | 2013-11-19 16:34:14 -0500 | [diff] [blame] | 5582 | task->tk_status = 0; |
| 5583 | break; |
Ricardo Labiaga | 7970886 | 2009-12-07 09:23:21 -0500 | [diff] [blame] | 5584 | default: |
NeilBrown | 8478eaa | 2014-09-18 16:09:27 +1000 | [diff] [blame] | 5585 | if (nfs4_async_handle_error(task, data->res.server, |
| 5586 | NULL, NULL) == -EAGAIN) { |
Trond Myklebust | d00c5d4 | 2011-10-19 12:17:29 -0700 | [diff] [blame] | 5587 | rpc_restart_call_prepare(task); |
Ricardo Labiaga | 7970886 | 2009-12-07 09:23:21 -0500 | [diff] [blame] | 5588 | return; |
| 5589 | } |
| 5590 | } |
| 5591 | data->rpc_status = task->tk_status; |
Trond Myklebust | 23ea44c | 2016-11-10 16:06:28 -0500 | [diff] [blame^] | 5592 | if (data->roc && data->rpc_status == 0) |
| 5593 | pnfs_roc_set_barrier(data->inode, data->roc_barrier); |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 5594 | } |
| 5595 | |
| 5596 | static void nfs4_delegreturn_release(void *calldata) |
| 5597 | { |
Peng Tao | 039b756 | 2014-07-03 13:05:02 +0800 | [diff] [blame] | 5598 | struct nfs4_delegreturndata *data = calldata; |
Trond Myklebust | ea7c38f | 2015-02-05 15:13:24 -0500 | [diff] [blame] | 5599 | struct inode *inode = data->inode; |
Peng Tao | 039b756 | 2014-07-03 13:05:02 +0800 | [diff] [blame] | 5600 | |
Trond Myklebust | ea7c38f | 2015-02-05 15:13:24 -0500 | [diff] [blame] | 5601 | if (inode) { |
| 5602 | if (data->roc) |
| 5603 | pnfs_roc_release(inode); |
| 5604 | nfs_iput_and_deactive(inode); |
| 5605 | } |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 5606 | kfree(calldata); |
| 5607 | } |
| 5608 | |
Andy Adamson | 938e101 | 2009-04-01 09:22:28 -0400 | [diff] [blame] | 5609 | static void nfs4_delegreturn_prepare(struct rpc_task *task, void *data) |
| 5610 | { |
| 5611 | struct nfs4_delegreturndata *d_data; |
| 5612 | |
| 5613 | d_data = (struct nfs4_delegreturndata *)data; |
| 5614 | |
Peng Tao | 500d701 | 2015-09-22 11:35:22 +0800 | [diff] [blame] | 5615 | if (nfs4_wait_on_layoutreturn(d_data->inode, task)) |
| 5616 | return; |
| 5617 | |
Trond Myklebust | 4ff376f | 2015-08-18 23:23:21 -0500 | [diff] [blame] | 5618 | if (d_data->roc) |
| 5619 | pnfs_roc_get_barrier(d_data->inode, &d_data->roc_barrier); |
Peng Tao | 039b756 | 2014-07-03 13:05:02 +0800 | [diff] [blame] | 5620 | |
Trond Myklebust | d9afbd1 | 2012-10-22 20:28:44 -0400 | [diff] [blame] | 5621 | nfs4_setup_sequence(d_data->res.server, |
| 5622 | &d_data->args.seq_args, |
| 5623 | &d_data->res.seq_res, |
| 5624 | task); |
Andy Adamson | 938e101 | 2009-04-01 09:22:28 -0400 | [diff] [blame] | 5625 | } |
Andy Adamson | 938e101 | 2009-04-01 09:22:28 -0400 | [diff] [blame] | 5626 | |
Jesper Juhl | c8d149f | 2006-03-20 13:44:07 -0500 | [diff] [blame] | 5627 | static const struct rpc_call_ops nfs4_delegreturn_ops = { |
Andy Adamson | 938e101 | 2009-04-01 09:22:28 -0400 | [diff] [blame] | 5628 | .rpc_call_prepare = nfs4_delegreturn_prepare, |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 5629 | .rpc_call_done = nfs4_delegreturn_done, |
| 5630 | .rpc_release = nfs4_delegreturn_release, |
| 5631 | }; |
| 5632 | |
Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 5633 | static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync) |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 5634 | { |
| 5635 | struct nfs4_delegreturndata *data; |
Trond Myklebust | fa178f2 | 2006-01-03 09:55:38 +0100 | [diff] [blame] | 5636 | struct nfs_server *server = NFS_SERVER(inode); |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 5637 | struct rpc_task *task; |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 5638 | struct rpc_message msg = { |
| 5639 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DELEGRETURN], |
| 5640 | .rpc_cred = cred, |
| 5641 | }; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 5642 | struct rpc_task_setup task_setup_data = { |
| 5643 | .rpc_client = server->client, |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 5644 | .rpc_message = &msg, |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 5645 | .callback_ops = &nfs4_delegreturn_ops, |
| 5646 | .flags = RPC_TASK_ASYNC, |
| 5647 | }; |
Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 5648 | int status = 0; |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 5649 | |
Trond Myklebust | 8535b2b | 2010-05-13 12:51:01 -0400 | [diff] [blame] | 5650 | data = kzalloc(sizeof(*data), GFP_NOFS); |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 5651 | if (data == NULL) |
| 5652 | return -ENOMEM; |
Chuck Lever | a9c92d6 | 2013-08-09 12:48:18 -0400 | [diff] [blame] | 5653 | nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1); |
Andrew Elble | 99ade3c | 2015-12-02 09:39:51 -0500 | [diff] [blame] | 5654 | |
| 5655 | nfs4_state_protect(server->nfs_client, |
| 5656 | NFS_SP4_MACH_CRED_CLEANUP, |
| 5657 | &task_setup_data.rpc_client, &msg); |
| 5658 | |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 5659 | data->args.fhandle = &data->fh; |
| 5660 | data->args.stateid = &data->stateid; |
Trond Myklebust | 9e907fe | 2012-04-27 13:48:17 -0400 | [diff] [blame] | 5661 | data->args.bitmask = server->cache_consistency_bitmask; |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 5662 | nfs_copy_fh(&data->fh, NFS_FH(inode)); |
Trond Myklebust | f597c53 | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 5663 | nfs4_stateid_copy(&data->stateid, stateid); |
Trond Myklebust | fa178f2 | 2006-01-03 09:55:38 +0100 | [diff] [blame] | 5664 | data->res.fattr = &data->fattr; |
| 5665 | data->res.server = server; |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 5666 | nfs_fattr_init(data->res.fattr); |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 5667 | data->timestamp = jiffies; |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 5668 | data->rpc_status = 0; |
Trond Myklebust | ea7c38f | 2015-02-05 15:13:24 -0500 | [diff] [blame] | 5669 | data->inode = nfs_igrab_and_active(inode); |
| 5670 | if (data->inode) |
| 5671 | data->roc = nfs4_roc(inode); |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 5672 | |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 5673 | task_setup_data.callback_data = data; |
Trond Myklebust | 1174dd1 | 2010-12-21 10:52:24 -0500 | [diff] [blame] | 5674 | msg.rpc_argp = &data->args; |
| 5675 | msg.rpc_resp = &data->res; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 5676 | task = rpc_run_task(&task_setup_data); |
Trond Myklebust | 7a1218a | 2006-03-20 18:11:10 -0500 | [diff] [blame] | 5677 | if (IS_ERR(task)) |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 5678 | return PTR_ERR(task); |
Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 5679 | if (!issync) |
| 5680 | goto out; |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 5681 | status = nfs4_wait_for_completion_rpc_task(task); |
Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 5682 | if (status != 0) |
| 5683 | goto out; |
| 5684 | status = data->rpc_status; |
Trond Myklebust | e144cbc | 2012-04-28 16:05:03 -0400 | [diff] [blame] | 5685 | if (status == 0) |
| 5686 | nfs_post_op_update_inode_force_wcc(inode, &data->fattr); |
| 5687 | else |
| 5688 | nfs_refresh_inode(inode, &data->fattr); |
Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 5689 | out: |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 5690 | rpc_put_task(task); |
Trond Myklebust | fe65040 | 2006-01-03 09:55:18 +0100 | [diff] [blame] | 5691 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5692 | } |
| 5693 | |
Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 5694 | int nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, const nfs4_stateid *stateid, int issync) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5695 | { |
| 5696 | struct nfs_server *server = NFS_SERVER(inode); |
| 5697 | struct nfs4_exception exception = { }; |
| 5698 | int err; |
| 5699 | do { |
Trond Myklebust | e6f8107 | 2008-01-24 18:14:34 -0500 | [diff] [blame] | 5700 | err = _nfs4_proc_delegreturn(inode, cred, stateid, issync); |
Olga Kornievskaia | 48c9579 | 2015-11-24 13:29:41 -0500 | [diff] [blame] | 5701 | trace_nfs4_delegreturn(inode, stateid, err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5702 | switch (err) { |
| 5703 | case -NFS4ERR_STALE_STATEID: |
| 5704 | case -NFS4ERR_EXPIRED: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5705 | case 0: |
| 5706 | return 0; |
| 5707 | } |
| 5708 | err = nfs4_handle_exception(server, err, &exception); |
| 5709 | } while (exception.retry); |
| 5710 | return err; |
| 5711 | } |
| 5712 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5713 | static int _nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request) |
| 5714 | { |
| 5715 | struct inode *inode = state->inode; |
| 5716 | struct nfs_server *server = NFS_SERVER(inode); |
David Howells | 7539bba | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 5717 | struct nfs_client *clp = server->nfs_client; |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 5718 | struct nfs_lockt_args arg = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5719 | .fh = NFS_FH(inode), |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 5720 | .fl = request, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5721 | }; |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 5722 | struct nfs_lockt_res res = { |
| 5723 | .denied = request, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5724 | }; |
| 5725 | struct rpc_message msg = { |
| 5726 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKT], |
| 5727 | .rpc_argp = &arg, |
| 5728 | .rpc_resp = &res, |
| 5729 | .rpc_cred = state->owner->so_cred, |
| 5730 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5731 | struct nfs4_lock_state *lsp; |
| 5732 | int status; |
| 5733 | |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 5734 | arg.lock_owner.clientid = clp->cl_clientid; |
Trond Myklebust | 8d0a8a9 | 2005-06-22 17:16:32 +0000 | [diff] [blame] | 5735 | status = nfs4_set_lock_state(state, request); |
| 5736 | if (status != 0) |
| 5737 | goto out; |
| 5738 | lsp = request->fl_u.nfs4_fl.owner; |
Trond Myklebust | 48c22eb | 2012-01-17 22:04:25 -0500 | [diff] [blame] | 5739 | arg.lock_owner.id = lsp->ls_seqid.owner_id; |
Trond Myklebust | d035c36 | 2010-12-21 10:45:27 -0500 | [diff] [blame] | 5740 | arg.lock_owner.s_dev = server->s_dev; |
Bryan Schumaker | 7c51305 | 2011-03-24 17:12:24 +0000 | [diff] [blame] | 5741 | status = nfs4_call_sync(server->client, server, &msg, &arg.seq_args, &res.seq_res, 1); |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 5742 | switch (status) { |
| 5743 | case 0: |
| 5744 | request->fl_type = F_UNLCK; |
| 5745 | break; |
| 5746 | case -NFS4ERR_DENIED: |
| 5747 | status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5748 | } |
J. Bruce Fields | 70cc648 | 2007-02-22 18:48:53 -0500 | [diff] [blame] | 5749 | request->fl_ops->fl_release_private(request); |
Trond Myklebust | a6f951d | 2013-10-01 14:24:58 -0400 | [diff] [blame] | 5750 | request->fl_ops = NULL; |
Trond Myklebust | 8d0a8a9 | 2005-06-22 17:16:32 +0000 | [diff] [blame] | 5751 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5752 | return status; |
| 5753 | } |
| 5754 | |
| 5755 | static int nfs4_proc_getlk(struct nfs4_state *state, int cmd, struct file_lock *request) |
| 5756 | { |
| 5757 | struct nfs4_exception exception = { }; |
| 5758 | int err; |
| 5759 | |
| 5760 | do { |
Trond Myklebust | d1b748a | 2013-08-12 16:35:20 -0400 | [diff] [blame] | 5761 | err = _nfs4_proc_getlk(state, cmd, request); |
| 5762 | trace_nfs4_get_lock(request, state, cmd, err); |
| 5763 | err = nfs4_handle_exception(NFS_SERVER(state->inode), err, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5764 | &exception); |
| 5765 | } while (exception.retry); |
| 5766 | return err; |
| 5767 | } |
| 5768 | |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 5769 | struct nfs4_unlockdata { |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 5770 | struct nfs_locku_args arg; |
| 5771 | struct nfs_locku_res res; |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 5772 | struct nfs4_lock_state *lsp; |
| 5773 | struct nfs_open_context *ctx; |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 5774 | struct file_lock fl; |
Trond Myklebust | 516285eb | 2015-09-20 16:15:24 -0400 | [diff] [blame] | 5775 | struct nfs_server *server; |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 5776 | unsigned long timestamp; |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 5777 | }; |
| 5778 | |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 5779 | static struct nfs4_unlockdata *nfs4_alloc_unlockdata(struct file_lock *fl, |
| 5780 | struct nfs_open_context *ctx, |
| 5781 | struct nfs4_lock_state *lsp, |
| 5782 | struct nfs_seqid *seqid) |
| 5783 | { |
| 5784 | struct nfs4_unlockdata *p; |
| 5785 | struct inode *inode = lsp->ls_state->inode; |
| 5786 | |
Trond Myklebust | 8535b2b | 2010-05-13 12:51:01 -0400 | [diff] [blame] | 5787 | p = kzalloc(sizeof(*p), GFP_NOFS); |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 5788 | if (p == NULL) |
| 5789 | return NULL; |
| 5790 | p->arg.fh = NFS_FH(inode); |
| 5791 | p->arg.fl = &p->fl; |
| 5792 | p->arg.seqid = seqid; |
Trond Myklebust | c1d5193 | 2008-04-07 13:20:54 -0400 | [diff] [blame] | 5793 | p->res.seqid = seqid; |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 5794 | p->lsp = lsp; |
| 5795 | atomic_inc(&lsp->ls_count); |
| 5796 | /* Ensure we don't close file until we're done freeing locks! */ |
| 5797 | p->ctx = get_nfs_open_context(ctx); |
| 5798 | memcpy(&p->fl, fl, sizeof(p->fl)); |
| 5799 | p->server = NFS_SERVER(inode); |
| 5800 | return p; |
| 5801 | } |
| 5802 | |
Trond Myklebust | 06f814a | 2006-01-03 09:55:07 +0100 | [diff] [blame] | 5803 | static void nfs4_locku_release_calldata(void *data) |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 5804 | { |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 5805 | struct nfs4_unlockdata *calldata = data; |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 5806 | nfs_free_seqid(calldata->arg.seqid); |
Trond Myklebust | 06f814a | 2006-01-03 09:55:07 +0100 | [diff] [blame] | 5807 | nfs4_put_lock_state(calldata->lsp); |
| 5808 | put_nfs_open_context(calldata->ctx); |
| 5809 | kfree(calldata); |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 5810 | } |
| 5811 | |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 5812 | static void nfs4_locku_done(struct rpc_task *task, void *data) |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 5813 | { |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 5814 | struct nfs4_unlockdata *calldata = data; |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 5815 | |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 5816 | if (!nfs4_sequence_done(task, &calldata->res.seq_res)) |
| 5817 | return; |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 5818 | switch (task->tk_status) { |
| 5819 | case 0: |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 5820 | renew_lease(calldata->server, calldata->timestamp); |
Jeff Layton | 75575dd | 2016-09-17 18:17:32 -0400 | [diff] [blame] | 5821 | locks_lock_inode_wait(calldata->lsp->ls_state->inode, &calldata->fl); |
Trond Myklebust | c69899a | 2015-01-24 16:03:52 -0500 | [diff] [blame] | 5822 | if (nfs4_update_lock_stateid(calldata->lsp, |
| 5823 | &calldata->res.stateid)) |
| 5824 | break; |
Trond Myklebust | 26d3630 | 2016-09-22 13:39:05 -0400 | [diff] [blame] | 5825 | case -NFS4ERR_ADMIN_REVOKED: |
| 5826 | case -NFS4ERR_EXPIRED: |
| 5827 | nfs4_free_revoked_stateid(calldata->server, |
| 5828 | &calldata->arg.stateid, |
| 5829 | task->tk_msg.rpc_cred); |
Trond Myklebust | 9e33bed | 2008-12-23 15:21:46 -0500 | [diff] [blame] | 5830 | case -NFS4ERR_BAD_STATEID: |
| 5831 | case -NFS4ERR_OLD_STATEID: |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 5832 | case -NFS4ERR_STALE_STATEID: |
Trond Myklebust | 425c1d4 | 2015-01-24 14:57:53 -0500 | [diff] [blame] | 5833 | if (!nfs4_stateid_match(&calldata->arg.stateid, |
| 5834 | &calldata->lsp->ls_stateid)) |
| 5835 | rpc_restart_call_prepare(task); |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 5836 | break; |
| 5837 | default: |
NeilBrown | 8478eaa | 2014-09-18 16:09:27 +1000 | [diff] [blame] | 5838 | if (nfs4_async_handle_error(task, calldata->server, |
| 5839 | NULL, NULL) == -EAGAIN) |
Trond Myklebust | d00c5d4 | 2011-10-19 12:17:29 -0700 | [diff] [blame] | 5840 | rpc_restart_call_prepare(task); |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 5841 | } |
Trond Myklebust | 2b1bc30 | 2012-10-29 18:53:23 -0400 | [diff] [blame] | 5842 | nfs_release_seqid(calldata->arg.seqid); |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 5843 | } |
| 5844 | |
Trond Myklebust | 4ce70ad | 2006-01-03 09:55:05 +0100 | [diff] [blame] | 5845 | static void nfs4_locku_prepare(struct rpc_task *task, void *data) |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 5846 | { |
Trond Myklebust | 4ce70ad | 2006-01-03 09:55:05 +0100 | [diff] [blame] | 5847 | struct nfs4_unlockdata *calldata = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5848 | |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 5849 | if (nfs_wait_on_sequence(calldata->arg.seqid, task) != 0) |
Trond Myklebust | c8da19b | 2013-02-11 19:01:21 -0500 | [diff] [blame] | 5850 | goto out_wait; |
Trond Myklebust | 425c1d4 | 2015-01-24 14:57:53 -0500 | [diff] [blame] | 5851 | nfs4_stateid_copy(&calldata->arg.stateid, &calldata->lsp->ls_stateid); |
Trond Myklebust | 795a88c | 2012-09-10 13:26:49 -0400 | [diff] [blame] | 5852 | if (test_bit(NFS_LOCK_INITIALIZED, &calldata->lsp->ls_flags) == 0) { |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 5853 | /* Note: exit _without_ running nfs4_locku_done */ |
Trond Myklebust | c8da19b | 2013-02-11 19:01:21 -0500 | [diff] [blame] | 5854 | goto out_no_action; |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 5855 | } |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 5856 | calldata->timestamp = jiffies; |
Trond Myklebust | 035168a | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 5857 | if (nfs4_setup_sequence(calldata->server, |
Andy Adamson | a893693 | 2009-04-01 09:22:23 -0400 | [diff] [blame] | 5858 | &calldata->arg.seq_args, |
Trond Myklebust | 2240a9e | 2012-10-29 18:37:40 -0400 | [diff] [blame] | 5859 | &calldata->res.seq_res, |
| 5860 | task) != 0) |
| 5861 | nfs_release_seqid(calldata->arg.seqid); |
Trond Myklebust | c8da19b | 2013-02-11 19:01:21 -0500 | [diff] [blame] | 5862 | return; |
| 5863 | out_no_action: |
| 5864 | task->tk_action = NULL; |
| 5865 | out_wait: |
| 5866 | nfs4_sequence_done(task, &calldata->res.seq_res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5867 | } |
| 5868 | |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 5869 | static const struct rpc_call_ops nfs4_locku_ops = { |
Trond Myklebust | 4ce70ad | 2006-01-03 09:55:05 +0100 | [diff] [blame] | 5870 | .rpc_call_prepare = nfs4_locku_prepare, |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 5871 | .rpc_call_done = nfs4_locku_done, |
Trond Myklebust | 06f814a | 2006-01-03 09:55:07 +0100 | [diff] [blame] | 5872 | .rpc_release = nfs4_locku_release_calldata, |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 5873 | }; |
| 5874 | |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 5875 | static struct rpc_task *nfs4_do_unlck(struct file_lock *fl, |
| 5876 | struct nfs_open_context *ctx, |
| 5877 | struct nfs4_lock_state *lsp, |
| 5878 | struct nfs_seqid *seqid) |
| 5879 | { |
| 5880 | struct nfs4_unlockdata *data; |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 5881 | struct rpc_message msg = { |
| 5882 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCKU], |
| 5883 | .rpc_cred = ctx->cred, |
| 5884 | }; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 5885 | struct rpc_task_setup task_setup_data = { |
| 5886 | .rpc_client = NFS_CLIENT(lsp->ls_state->inode), |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 5887 | .rpc_message = &msg, |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 5888 | .callback_ops = &nfs4_locku_ops, |
Trond Myklebust | 101070c | 2008-02-19 20:04:23 -0500 | [diff] [blame] | 5889 | .workqueue = nfsiod_workqueue, |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 5890 | .flags = RPC_TASK_ASYNC, |
| 5891 | }; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 5892 | |
Weston Andros Adamson | fa94072 | 2013-08-13 16:37:34 -0400 | [diff] [blame] | 5893 | nfs4_state_protect(NFS_SERVER(lsp->ls_state->inode)->nfs_client, |
| 5894 | NFS_SP4_MACH_CRED_CLEANUP, &task_setup_data.rpc_client, &msg); |
| 5895 | |
Frank Filz | 137d6ac | 2007-07-09 15:32:29 -0700 | [diff] [blame] | 5896 | /* Ensure this is an unlock - when canceling a lock, the |
| 5897 | * canceled lock is passed in, and it won't be an unlock. |
| 5898 | */ |
| 5899 | fl->fl_type = F_UNLCK; |
| 5900 | |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 5901 | data = nfs4_alloc_unlockdata(fl, ctx, lsp, seqid); |
| 5902 | if (data == NULL) { |
| 5903 | nfs_free_seqid(seqid); |
| 5904 | return ERR_PTR(-ENOMEM); |
| 5905 | } |
| 5906 | |
Chuck Lever | a9c92d6 | 2013-08-09 12:48:18 -0400 | [diff] [blame] | 5907 | nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1); |
Trond Myklebust | 1174dd1 | 2010-12-21 10:52:24 -0500 | [diff] [blame] | 5908 | msg.rpc_argp = &data->arg; |
| 5909 | msg.rpc_resp = &data->res; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 5910 | task_setup_data.callback_data = data; |
| 5911 | return rpc_run_task(&task_setup_data); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 5912 | } |
| 5913 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5914 | static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *request) |
| 5915 | { |
Trond Myklebust | 65b62a2 | 2013-02-07 10:54:07 -0500 | [diff] [blame] | 5916 | struct inode *inode = state->inode; |
| 5917 | struct nfs4_state_owner *sp = state->owner; |
| 5918 | struct nfs_inode *nfsi = NFS_I(inode); |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 5919 | struct nfs_seqid *seqid; |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 5920 | struct nfs4_lock_state *lsp; |
Trond Myklebust | 06f814a | 2006-01-03 09:55:07 +0100 | [diff] [blame] | 5921 | struct rpc_task *task; |
Trond Myklebust | b4019c0 | 2015-01-24 14:19:19 -0500 | [diff] [blame] | 5922 | struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t); |
Trond Myklebust | 06f814a | 2006-01-03 09:55:07 +0100 | [diff] [blame] | 5923 | int status = 0; |
Trond Myklebust | 536ff0f | 2008-04-04 15:08:02 -0400 | [diff] [blame] | 5924 | unsigned char fl_flags = request->fl_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5925 | |
Trond Myklebust | 9b07357 | 2006-06-29 16:38:34 -0400 | [diff] [blame] | 5926 | status = nfs4_set_lock_state(state, request); |
| 5927 | /* Unlock _before_ we do the RPC call */ |
| 5928 | request->fl_flags |= FL_EXISTS; |
Trond Myklebust | 65b62a2 | 2013-02-07 10:54:07 -0500 | [diff] [blame] | 5929 | /* Exclude nfs_delegation_claim_locks() */ |
| 5930 | mutex_lock(&sp->so_delegreturn_mutex); |
| 5931 | /* Exclude nfs4_reclaim_open_stateid() - note nesting! */ |
Trond Myklebust | 19e03c5 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 5932 | down_read(&nfsi->rwsem); |
Jeff Layton | 75575dd | 2016-09-17 18:17:32 -0400 | [diff] [blame] | 5933 | if (locks_lock_inode_wait(inode, request) == -ENOENT) { |
Trond Myklebust | 19e03c5 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 5934 | up_read(&nfsi->rwsem); |
Trond Myklebust | 65b62a2 | 2013-02-07 10:54:07 -0500 | [diff] [blame] | 5935 | mutex_unlock(&sp->so_delegreturn_mutex); |
Trond Myklebust | 9b07357 | 2006-06-29 16:38:34 -0400 | [diff] [blame] | 5936 | goto out; |
Trond Myklebust | 19e03c5 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 5937 | } |
| 5938 | up_read(&nfsi->rwsem); |
Trond Myklebust | 65b62a2 | 2013-02-07 10:54:07 -0500 | [diff] [blame] | 5939 | mutex_unlock(&sp->so_delegreturn_mutex); |
Trond Myklebust | 9b07357 | 2006-06-29 16:38:34 -0400 | [diff] [blame] | 5940 | if (status != 0) |
| 5941 | goto out; |
Trond Myklebust | 6bfc93e | 2005-11-04 15:39:36 -0500 | [diff] [blame] | 5942 | /* Is this a delegated lock? */ |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 5943 | lsp = request->fl_u.nfs4_fl.owner; |
Trond Myklebust | c5a2a15 | 2013-04-30 12:43:42 -0400 | [diff] [blame] | 5944 | if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) == 0) |
| 5945 | goto out; |
Trond Myklebust | b4019c0 | 2015-01-24 14:19:19 -0500 | [diff] [blame] | 5946 | alloc_seqid = NFS_SERVER(inode)->nfs_client->cl_mvops->alloc_seqid; |
| 5947 | seqid = alloc_seqid(&lsp->ls_seqid, GFP_KERNEL); |
Trond Myklebust | 9b07357 | 2006-06-29 16:38:34 -0400 | [diff] [blame] | 5948 | status = -ENOMEM; |
Trond Myklebust | badc76d | 2015-01-23 18:48:00 -0500 | [diff] [blame] | 5949 | if (IS_ERR(seqid)) |
Trond Myklebust | 9b07357 | 2006-06-29 16:38:34 -0400 | [diff] [blame] | 5950 | goto out; |
Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 5951 | task = nfs4_do_unlck(request, nfs_file_open_context(request->fl_file), lsp, seqid); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 5952 | status = PTR_ERR(task); |
| 5953 | if (IS_ERR(task)) |
Trond Myklebust | 9b07357 | 2006-06-29 16:38:34 -0400 | [diff] [blame] | 5954 | goto out; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 5955 | status = nfs4_wait_for_completion_rpc_task(task); |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 5956 | rpc_put_task(task); |
Trond Myklebust | 9b07357 | 2006-06-29 16:38:34 -0400 | [diff] [blame] | 5957 | out: |
Trond Myklebust | 536ff0f | 2008-04-04 15:08:02 -0400 | [diff] [blame] | 5958 | request->fl_flags = fl_flags; |
Trond Myklebust | d1b748a | 2013-08-12 16:35:20 -0400 | [diff] [blame] | 5959 | trace_nfs4_unlock(request, state, F_SETLK, status); |
Trond Myklebust | faf5f49 | 2005-10-18 14:20:15 -0700 | [diff] [blame] | 5960 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5961 | } |
| 5962 | |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 5963 | struct nfs4_lockdata { |
| 5964 | struct nfs_lock_args arg; |
Trond Myklebust | 911d1aa | 2006-01-03 09:55:16 +0100 | [diff] [blame] | 5965 | struct nfs_lock_res res; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 5966 | struct nfs4_lock_state *lsp; |
| 5967 | struct nfs_open_context *ctx; |
| 5968 | struct file_lock fl; |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 5969 | unsigned long timestamp; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 5970 | int rpc_status; |
| 5971 | int cancelled; |
Andy Adamson | 66179ef | 2009-04-01 09:22:22 -0400 | [diff] [blame] | 5972 | struct nfs_server *server; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 5973 | }; |
| 5974 | |
| 5975 | static struct nfs4_lockdata *nfs4_alloc_lockdata(struct file_lock *fl, |
Trond Myklebust | 8535b2b | 2010-05-13 12:51:01 -0400 | [diff] [blame] | 5976 | struct nfs_open_context *ctx, struct nfs4_lock_state *lsp, |
| 5977 | gfp_t gfp_mask) |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 5978 | { |
| 5979 | struct nfs4_lockdata *p; |
| 5980 | struct inode *inode = lsp->ls_state->inode; |
| 5981 | struct nfs_server *server = NFS_SERVER(inode); |
Trond Myklebust | b4019c0 | 2015-01-24 14:19:19 -0500 | [diff] [blame] | 5982 | struct nfs_seqid *(*alloc_seqid)(struct nfs_seqid_counter *, gfp_t); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 5983 | |
Trond Myklebust | 8535b2b | 2010-05-13 12:51:01 -0400 | [diff] [blame] | 5984 | p = kzalloc(sizeof(*p), gfp_mask); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 5985 | if (p == NULL) |
| 5986 | return NULL; |
| 5987 | |
| 5988 | p->arg.fh = NFS_FH(inode); |
| 5989 | p->arg.fl = &p->fl; |
Trond Myklebust | 8535b2b | 2010-05-13 12:51:01 -0400 | [diff] [blame] | 5990 | p->arg.open_seqid = nfs_alloc_seqid(&lsp->ls_state->owner->so_seqid, gfp_mask); |
Trond Myklebust | badc76d | 2015-01-23 18:48:00 -0500 | [diff] [blame] | 5991 | if (IS_ERR(p->arg.open_seqid)) |
Trond Myklebust | 2f74c0a | 2008-01-08 17:56:07 -0500 | [diff] [blame] | 5992 | goto out_free; |
Trond Myklebust | b4019c0 | 2015-01-24 14:19:19 -0500 | [diff] [blame] | 5993 | alloc_seqid = server->nfs_client->cl_mvops->alloc_seqid; |
| 5994 | p->arg.lock_seqid = alloc_seqid(&lsp->ls_seqid, gfp_mask); |
Trond Myklebust | badc76d | 2015-01-23 18:48:00 -0500 | [diff] [blame] | 5995 | if (IS_ERR(p->arg.lock_seqid)) |
Trond Myklebust | 2f74c0a | 2008-01-08 17:56:07 -0500 | [diff] [blame] | 5996 | goto out_free_seqid; |
David Howells | 7539bba | 2006-08-22 20:06:09 -0400 | [diff] [blame] | 5997 | p->arg.lock_owner.clientid = server->nfs_client->cl_clientid; |
Trond Myklebust | 48c22eb | 2012-01-17 22:04:25 -0500 | [diff] [blame] | 5998 | p->arg.lock_owner.id = lsp->ls_seqid.owner_id; |
Trond Myklebust | d035c36 | 2010-12-21 10:45:27 -0500 | [diff] [blame] | 5999 | p->arg.lock_owner.s_dev = server->s_dev; |
Trond Myklebust | c1d5193 | 2008-04-07 13:20:54 -0400 | [diff] [blame] | 6000 | p->res.lock_seqid = p->arg.lock_seqid; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6001 | p->lsp = lsp; |
Andy Adamson | 66179ef | 2009-04-01 09:22:22 -0400 | [diff] [blame] | 6002 | p->server = server; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6003 | atomic_inc(&lsp->ls_count); |
| 6004 | p->ctx = get_nfs_open_context(ctx); |
Jeff Layton | feaff8e | 2015-05-12 15:48:10 -0400 | [diff] [blame] | 6005 | get_file(fl->fl_file); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6006 | memcpy(&p->fl, fl, sizeof(p->fl)); |
| 6007 | return p; |
Trond Myklebust | 2f74c0a | 2008-01-08 17:56:07 -0500 | [diff] [blame] | 6008 | out_free_seqid: |
| 6009 | nfs_free_seqid(p->arg.open_seqid); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6010 | out_free: |
| 6011 | kfree(p); |
| 6012 | return NULL; |
| 6013 | } |
| 6014 | |
| 6015 | static void nfs4_lock_prepare(struct rpc_task *task, void *calldata) |
| 6016 | { |
| 6017 | struct nfs4_lockdata *data = calldata; |
| 6018 | struct nfs4_state *state = data->lsp->ls_state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6019 | |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 6020 | dprintk("%s: begin!\n", __func__); |
Trond Myklebust | 2f74c0a | 2008-01-08 17:56:07 -0500 | [diff] [blame] | 6021 | if (nfs_wait_on_sequence(data->arg.lock_seqid, task) != 0) |
Trond Myklebust | c8da19b | 2013-02-11 19:01:21 -0500 | [diff] [blame] | 6022 | goto out_wait; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6023 | /* Do we need to do an open_to_lock_owner? */ |
Trond Myklebust | 6b44753 | 2015-01-24 18:38:15 -0500 | [diff] [blame] | 6024 | if (!test_bit(NFS_LOCK_INITIALIZED, &data->lsp->ls_flags)) { |
Trond Myklebust | 8fe72ba | 2012-10-29 19:02:20 -0400 | [diff] [blame] | 6025 | if (nfs_wait_on_sequence(data->arg.open_seqid, task) != 0) { |
Trond Myklebust | 2240a9e | 2012-10-29 18:37:40 -0400 | [diff] [blame] | 6026 | goto out_release_lock_seqid; |
Trond Myklebust | 8fe72ba | 2012-10-29 19:02:20 -0400 | [diff] [blame] | 6027 | } |
Trond Myklebust | 425c1d4 | 2015-01-24 14:57:53 -0500 | [diff] [blame] | 6028 | nfs4_stateid_copy(&data->arg.open_stateid, |
| 6029 | &state->open_stateid); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6030 | data->arg.new_lock_owner = 1; |
Trond Myklebust | c1d5193 | 2008-04-07 13:20:54 -0400 | [diff] [blame] | 6031 | data->res.open_seqid = data->arg.open_seqid; |
Trond Myklebust | 425c1d4 | 2015-01-24 14:57:53 -0500 | [diff] [blame] | 6032 | } else { |
Trond Myklebust | 2f74c0a | 2008-01-08 17:56:07 -0500 | [diff] [blame] | 6033 | data->arg.new_lock_owner = 0; |
Trond Myklebust | 425c1d4 | 2015-01-24 14:57:53 -0500 | [diff] [blame] | 6034 | nfs4_stateid_copy(&data->arg.lock_stateid, |
| 6035 | &data->lsp->ls_stateid); |
| 6036 | } |
Trond Myklebust | 5d42230 | 2013-03-14 16:57:48 -0400 | [diff] [blame] | 6037 | if (!nfs4_valid_open_stateid(state)) { |
| 6038 | data->rpc_status = -EBADF; |
| 6039 | task->tk_action = NULL; |
| 6040 | goto out_release_open_seqid; |
| 6041 | } |
Trond Myklebust | 26e976a | 2006-01-03 09:55:21 +0100 | [diff] [blame] | 6042 | data->timestamp = jiffies; |
Trond Myklebust | 035168a | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 6043 | if (nfs4_setup_sequence(data->server, |
| 6044 | &data->arg.seq_args, |
Trond Myklebust | 2240a9e | 2012-10-29 18:37:40 -0400 | [diff] [blame] | 6045 | &data->res.seq_res, |
Trond Myklebust | d9afbd1 | 2012-10-22 20:28:44 -0400 | [diff] [blame] | 6046 | task) == 0) |
Andy Adamson | 66179ef | 2009-04-01 09:22:22 -0400 | [diff] [blame] | 6047 | return; |
Trond Myklebust | 5d42230 | 2013-03-14 16:57:48 -0400 | [diff] [blame] | 6048 | out_release_open_seqid: |
Trond Myklebust | 2240a9e | 2012-10-29 18:37:40 -0400 | [diff] [blame] | 6049 | nfs_release_seqid(data->arg.open_seqid); |
| 6050 | out_release_lock_seqid: |
| 6051 | nfs_release_seqid(data->arg.lock_seqid); |
Trond Myklebust | c8da19b | 2013-02-11 19:01:21 -0500 | [diff] [blame] | 6052 | out_wait: |
| 6053 | nfs4_sequence_done(task, &data->res.seq_res); |
Trond Myklebust | 8fe72ba | 2012-10-29 19:02:20 -0400 | [diff] [blame] | 6054 | dprintk("%s: done!, ret = %d\n", __func__, data->rpc_status); |
Alexandros Batsakis | b257957 | 2009-12-14 21:27:57 -0800 | [diff] [blame] | 6055 | } |
| 6056 | |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6057 | static void nfs4_lock_done(struct rpc_task *task, void *calldata) |
| 6058 | { |
| 6059 | struct nfs4_lockdata *data = calldata; |
Trond Myklebust | 39071e6 | 2015-01-24 15:07:56 -0500 | [diff] [blame] | 6060 | struct nfs4_lock_state *lsp = data->lsp; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6061 | |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 6062 | dprintk("%s: begin!\n", __func__); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6063 | |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 6064 | if (!nfs4_sequence_done(task, &data->res.seq_res)) |
| 6065 | return; |
Andy Adamson | 66179ef | 2009-04-01 09:22:22 -0400 | [diff] [blame] | 6066 | |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6067 | data->rpc_status = task->tk_status; |
Trond Myklebust | 425c1d4 | 2015-01-24 14:57:53 -0500 | [diff] [blame] | 6068 | switch (task->tk_status) { |
| 6069 | case 0: |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 6070 | renew_lease(NFS_SERVER(d_inode(data->ctx->dentry)), |
Trond Myklebust | 39071e6 | 2015-01-24 15:07:56 -0500 | [diff] [blame] | 6071 | data->timestamp); |
Trond Myklebust | c69899a | 2015-01-24 16:03:52 -0500 | [diff] [blame] | 6072 | if (data->arg.new_lock) { |
| 6073 | data->fl.fl_flags &= ~(FL_SLEEP | FL_ACCESS); |
Jeff Layton | 75575dd | 2016-09-17 18:17:32 -0400 | [diff] [blame] | 6074 | if (locks_lock_inode_wait(lsp->ls_state->inode, &data->fl) < 0) { |
Trond Myklebust | c69899a | 2015-01-24 16:03:52 -0500 | [diff] [blame] | 6075 | rpc_restart_call_prepare(task); |
| 6076 | break; |
| 6077 | } |
| 6078 | } |
Trond Myklebust | 39071e6 | 2015-01-24 15:07:56 -0500 | [diff] [blame] | 6079 | if (data->arg.new_lock_owner != 0) { |
| 6080 | nfs_confirm_seqid(&lsp->ls_seqid, 0); |
| 6081 | nfs4_stateid_copy(&lsp->ls_stateid, &data->res.stateid); |
| 6082 | set_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags); |
| 6083 | } else if (!nfs4_update_lock_stateid(lsp, &data->res.stateid)) |
| 6084 | rpc_restart_call_prepare(task); |
Trond Myklebust | 425c1d4 | 2015-01-24 14:57:53 -0500 | [diff] [blame] | 6085 | break; |
| 6086 | case -NFS4ERR_BAD_STATEID: |
| 6087 | case -NFS4ERR_OLD_STATEID: |
| 6088 | case -NFS4ERR_STALE_STATEID: |
| 6089 | case -NFS4ERR_EXPIRED: |
| 6090 | if (data->arg.new_lock_owner != 0) { |
| 6091 | if (!nfs4_stateid_match(&data->arg.open_stateid, |
| 6092 | &lsp->ls_state->open_stateid)) |
| 6093 | rpc_restart_call_prepare(task); |
| 6094 | } else if (!nfs4_stateid_match(&data->arg.lock_stateid, |
| 6095 | &lsp->ls_stateid)) |
| 6096 | rpc_restart_call_prepare(task); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6097 | } |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 6098 | dprintk("%s: done, ret = %d!\n", __func__, data->rpc_status); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6099 | } |
| 6100 | |
| 6101 | static void nfs4_lock_release(void *calldata) |
| 6102 | { |
| 6103 | struct nfs4_lockdata *data = calldata; |
| 6104 | |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 6105 | dprintk("%s: begin!\n", __func__); |
Trond Myklebust | 2f74c0a | 2008-01-08 17:56:07 -0500 | [diff] [blame] | 6106 | nfs_free_seqid(data->arg.open_seqid); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6107 | if (data->cancelled != 0) { |
| 6108 | struct rpc_task *task; |
| 6109 | task = nfs4_do_unlck(&data->fl, data->ctx, data->lsp, |
| 6110 | data->arg.lock_seqid); |
| 6111 | if (!IS_ERR(task)) |
Trond Myklebust | bf294b4 | 2011-02-21 11:05:41 -0800 | [diff] [blame] | 6112 | rpc_put_task_async(task); |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 6113 | dprintk("%s: cancelling lock!\n", __func__); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6114 | } else |
| 6115 | nfs_free_seqid(data->arg.lock_seqid); |
| 6116 | nfs4_put_lock_state(data->lsp); |
| 6117 | put_nfs_open_context(data->ctx); |
Jeff Layton | feaff8e | 2015-05-12 15:48:10 -0400 | [diff] [blame] | 6118 | fput(data->fl.fl_file); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6119 | kfree(data); |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 6120 | dprintk("%s: done!\n", __func__); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6121 | } |
| 6122 | |
| 6123 | static const struct rpc_call_ops nfs4_lock_ops = { |
| 6124 | .rpc_call_prepare = nfs4_lock_prepare, |
| 6125 | .rpc_call_done = nfs4_lock_done, |
| 6126 | .rpc_release = nfs4_lock_release, |
| 6127 | }; |
| 6128 | |
Trond Myklebust | 2bee72a | 2010-01-26 15:42:21 -0500 | [diff] [blame] | 6129 | static void nfs4_handle_setlk_error(struct nfs_server *server, struct nfs4_lock_state *lsp, int new_lock_owner, int error) |
| 6130 | { |
Trond Myklebust | 2bee72a | 2010-01-26 15:42:21 -0500 | [diff] [blame] | 6131 | switch (error) { |
| 6132 | case -NFS4ERR_ADMIN_REVOKED: |
Trond Myklebust | d7f3e4b | 2016-09-22 13:39:09 -0400 | [diff] [blame] | 6133 | case -NFS4ERR_EXPIRED: |
Trond Myklebust | 2bee72a | 2010-01-26 15:42:21 -0500 | [diff] [blame] | 6134 | case -NFS4ERR_BAD_STATEID: |
Trond Myklebust | ecac799 | 2011-03-09 16:00:56 -0500 | [diff] [blame] | 6135 | lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED; |
Trond Myklebust | 2bee72a | 2010-01-26 15:42:21 -0500 | [diff] [blame] | 6136 | if (new_lock_owner != 0 || |
Trond Myklebust | 795a88c | 2012-09-10 13:26:49 -0400 | [diff] [blame] | 6137 | test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) != 0) |
Trond Myklebust | ecac799 | 2011-03-09 16:00:56 -0500 | [diff] [blame] | 6138 | nfs4_schedule_stateid_recovery(server, lsp->ls_state); |
Trond Myklebust | a2c0b9e | 2010-01-26 15:42:47 -0500 | [diff] [blame] | 6139 | break; |
| 6140 | case -NFS4ERR_STALE_STATEID: |
Trond Myklebust | a2c0b9e | 2010-01-26 15:42:47 -0500 | [diff] [blame] | 6141 | lsp->ls_seqid.flags &= ~NFS_SEQID_CONFIRMED; |
Trond Myklebust | ecac799 | 2011-03-09 16:00:56 -0500 | [diff] [blame] | 6142 | nfs4_schedule_lease_recovery(server->nfs_client); |
Trond Myklebust | 2bee72a | 2010-01-26 15:42:21 -0500 | [diff] [blame] | 6143 | }; |
| 6144 | } |
| 6145 | |
Alexandros Batsakis | afe6c27 | 2009-12-09 01:50:14 -0800 | [diff] [blame] | 6146 | static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *fl, int recovery_type) |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6147 | { |
| 6148 | struct nfs4_lockdata *data; |
| 6149 | struct rpc_task *task; |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 6150 | struct rpc_message msg = { |
| 6151 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LOCK], |
| 6152 | .rpc_cred = state->owner->so_cred, |
| 6153 | }; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 6154 | struct rpc_task_setup task_setup_data = { |
| 6155 | .rpc_client = NFS_CLIENT(state->inode), |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 6156 | .rpc_message = &msg, |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 6157 | .callback_ops = &nfs4_lock_ops, |
Trond Myklebust | 101070c | 2008-02-19 20:04:23 -0500 | [diff] [blame] | 6158 | .workqueue = nfsiod_workqueue, |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 6159 | .flags = RPC_TASK_ASYNC, |
| 6160 | }; |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6161 | int ret; |
| 6162 | |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 6163 | dprintk("%s: begin!\n", __func__); |
Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 6164 | data = nfs4_alloc_lockdata(fl, nfs_file_open_context(fl->fl_file), |
Trond Myklebust | 8535b2b | 2010-05-13 12:51:01 -0400 | [diff] [blame] | 6165 | fl->fl_u.nfs4_fl.owner, |
| 6166 | recovery_type == NFS_LOCK_NEW ? GFP_KERNEL : GFP_NOFS); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6167 | if (data == NULL) |
| 6168 | return -ENOMEM; |
| 6169 | if (IS_SETLKW(cmd)) |
| 6170 | data->arg.block = 1; |
Chuck Lever | a9c92d6 | 2013-08-09 12:48:18 -0400 | [diff] [blame] | 6171 | nfs4_init_sequence(&data->arg.seq_args, &data->res.seq_res, 1); |
Trond Myklebust | 1174dd1 | 2010-12-21 10:52:24 -0500 | [diff] [blame] | 6172 | msg.rpc_argp = &data->arg; |
| 6173 | msg.rpc_resp = &data->res; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 6174 | task_setup_data.callback_data = data; |
Trond Myklebust | 8fe72ba | 2012-10-29 19:02:20 -0400 | [diff] [blame] | 6175 | if (recovery_type > NFS_LOCK_NEW) { |
| 6176 | if (recovery_type == NFS_LOCK_RECLAIM) |
| 6177 | data->arg.reclaim = NFS_LOCK_RECLAIM; |
| 6178 | nfs4_set_sequence_privileged(&data->arg.seq_args); |
Trond Myklebust | c69899a | 2015-01-24 16:03:52 -0500 | [diff] [blame] | 6179 | } else |
| 6180 | data->arg.new_lock = 1; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 6181 | task = rpc_run_task(&task_setup_data); |
Trond Myklebust | 7a1218a | 2006-03-20 18:11:10 -0500 | [diff] [blame] | 6182 | if (IS_ERR(task)) |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6183 | return PTR_ERR(task); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6184 | ret = nfs4_wait_for_completion_rpc_task(task); |
| 6185 | if (ret == 0) { |
| 6186 | ret = data->rpc_status; |
Trond Myklebust | 2bee72a | 2010-01-26 15:42:21 -0500 | [diff] [blame] | 6187 | if (ret) |
| 6188 | nfs4_handle_setlk_error(data->server, data->lsp, |
| 6189 | data->arg.new_lock_owner, ret); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6190 | } else |
| 6191 | data->cancelled = 1; |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 6192 | rpc_put_task(task); |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 6193 | dprintk("%s: done, ret = %d!\n", __func__, ret); |
Olga Kornievskaia | 48c9579 | 2015-11-24 13:29:41 -0500 | [diff] [blame] | 6194 | trace_nfs4_set_lock(fl, state, &data->res.stateid, cmd, ret); |
Trond Myklebust | a5d16a4 | 2006-01-03 09:55:17 +0100 | [diff] [blame] | 6195 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6196 | } |
| 6197 | |
| 6198 | static int nfs4_lock_reclaim(struct nfs4_state *state, struct file_lock *request) |
| 6199 | { |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 6200 | struct nfs_server *server = NFS_SERVER(state->inode); |
Trond Myklebust | 05ffe24 | 2012-04-18 12:20:10 -0400 | [diff] [blame] | 6201 | struct nfs4_exception exception = { |
| 6202 | .inode = state->inode, |
| 6203 | }; |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 6204 | int err; |
| 6205 | |
| 6206 | do { |
Trond Myklebust | 42a2d13 | 2006-06-29 16:38:36 -0400 | [diff] [blame] | 6207 | /* Cache the lock if possible... */ |
| 6208 | if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0) |
| 6209 | return 0; |
Alexandros Batsakis | afe6c27 | 2009-12-09 01:50:14 -0800 | [diff] [blame] | 6210 | err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_RECLAIM); |
Trond Myklebust | 168667c | 2010-10-19 19:47:49 -0400 | [diff] [blame] | 6211 | if (err != -NFS4ERR_DELAY) |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 6212 | break; |
| 6213 | nfs4_handle_exception(server, err, &exception); |
| 6214 | } while (exception.retry); |
| 6215 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6216 | } |
| 6217 | |
| 6218 | static int nfs4_lock_expired(struct nfs4_state *state, struct file_lock *request) |
| 6219 | { |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 6220 | struct nfs_server *server = NFS_SERVER(state->inode); |
Trond Myklebust | 05ffe24 | 2012-04-18 12:20:10 -0400 | [diff] [blame] | 6221 | struct nfs4_exception exception = { |
| 6222 | .inode = state->inode, |
| 6223 | }; |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 6224 | int err; |
| 6225 | |
Trond Myklebust | 6bfc93e | 2005-11-04 15:39:36 -0500 | [diff] [blame] | 6226 | err = nfs4_set_lock_state(state, request); |
| 6227 | if (err != 0) |
| 6228 | return err; |
Trond Myklebust | f6de7a3 | 2013-09-04 10:08:54 -0400 | [diff] [blame] | 6229 | if (!recover_lost_locks) { |
NeilBrown | ef1820f | 2013-09-04 17:04:49 +1000 | [diff] [blame] | 6230 | set_bit(NFS_LOCK_LOST, &request->fl_u.nfs4_fl.owner->ls_flags); |
| 6231 | return 0; |
| 6232 | } |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 6233 | do { |
Trond Myklebust | 42a2d13 | 2006-06-29 16:38:36 -0400 | [diff] [blame] | 6234 | if (test_bit(NFS_DELEGATED_STATE, &state->flags) != 0) |
| 6235 | return 0; |
Alexandros Batsakis | afe6c27 | 2009-12-09 01:50:14 -0800 | [diff] [blame] | 6236 | err = _nfs4_do_setlk(state, F_SETLK, request, NFS_LOCK_EXPIRED); |
Trond Myklebust | a9ed2e2 | 2009-12-03 15:53:21 -0500 | [diff] [blame] | 6237 | switch (err) { |
| 6238 | default: |
| 6239 | goto out; |
| 6240 | case -NFS4ERR_GRACE: |
| 6241 | case -NFS4ERR_DELAY: |
| 6242 | nfs4_handle_exception(server, err, &exception); |
| 6243 | err = 0; |
| 6244 | } |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 6245 | } while (exception.retry); |
Trond Myklebust | a9ed2e2 | 2009-12-03 15:53:21 -0500 | [diff] [blame] | 6246 | out: |
Trond Myklebust | 202b50d | 2005-06-22 17:16:29 +0000 | [diff] [blame] | 6247 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6248 | } |
| 6249 | |
Bryan Schumaker | f062eb6 | 2011-06-02 14:59:10 -0400 | [diff] [blame] | 6250 | #if defined(CONFIG_NFS_V4_1) |
Bryan Schumaker | b01dd1d | 2012-01-31 10:39:30 -0500 | [diff] [blame] | 6251 | static int nfs41_lock_expired(struct nfs4_state *state, struct file_lock *request) |
| 6252 | { |
Trond Myklebust | c5896fc | 2016-09-22 13:39:03 -0400 | [diff] [blame] | 6253 | struct nfs4_lock_state *lsp; |
| 6254 | int status; |
Bryan Schumaker | b01dd1d | 2012-01-31 10:39:30 -0500 | [diff] [blame] | 6255 | |
Trond Myklebust | c5896fc | 2016-09-22 13:39:03 -0400 | [diff] [blame] | 6256 | status = nfs4_set_lock_state(state, request); |
| 6257 | if (status != 0) |
| 6258 | return status; |
| 6259 | lsp = request->fl_u.nfs4_fl.owner; |
| 6260 | if (test_bit(NFS_LOCK_INITIALIZED, &lsp->ls_flags) || |
| 6261 | test_bit(NFS_LOCK_LOST, &lsp->ls_flags)) |
| 6262 | return 0; |
| 6263 | status = nfs4_lock_expired(state, request); |
Chuck Lever | eb64cf9 | 2012-07-11 16:30:05 -0400 | [diff] [blame] | 6264 | return status; |
Bryan Schumaker | f062eb6 | 2011-06-02 14:59:10 -0400 | [diff] [blame] | 6265 | } |
| 6266 | #endif |
| 6267 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6268 | static int _nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request) |
| 6269 | { |
Trond Myklebust | 19e03c5 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 6270 | struct nfs_inode *nfsi = NFS_I(state->inode); |
Chuck Lever | 11476e9 | 2016-04-11 16:20:22 -0400 | [diff] [blame] | 6271 | struct nfs4_state_owner *sp = state->owner; |
Trond Myklebust | 01c3b86 | 2006-06-29 16:38:39 -0400 | [diff] [blame] | 6272 | unsigned char fl_flags = request->fl_flags; |
Jeff Layton | 1ea67db | 2016-09-17 18:17:37 -0400 | [diff] [blame] | 6273 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6274 | |
Trond Myklebust | 01c3b86 | 2006-06-29 16:38:39 -0400 | [diff] [blame] | 6275 | request->fl_flags |= FL_ACCESS; |
Jeff Layton | 75575dd | 2016-09-17 18:17:32 -0400 | [diff] [blame] | 6276 | status = locks_lock_inode_wait(state->inode, request); |
Trond Myklebust | 01c3b86 | 2006-06-29 16:38:39 -0400 | [diff] [blame] | 6277 | if (status < 0) |
| 6278 | goto out; |
Chuck Lever | 11476e9 | 2016-04-11 16:20:22 -0400 | [diff] [blame] | 6279 | mutex_lock(&sp->so_delegreturn_mutex); |
Trond Myklebust | 19e03c5 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 6280 | down_read(&nfsi->rwsem); |
Trond Myklebust | 01c3b86 | 2006-06-29 16:38:39 -0400 | [diff] [blame] | 6281 | if (test_bit(NFS_DELEGATED_STATE, &state->flags)) { |
Trond Myklebust | 01c3b86 | 2006-06-29 16:38:39 -0400 | [diff] [blame] | 6282 | /* Yes: cache locks! */ |
Trond Myklebust | 01c3b86 | 2006-06-29 16:38:39 -0400 | [diff] [blame] | 6283 | /* ...but avoid races with delegation recall... */ |
Trond Myklebust | 19e03c5 | 2008-12-23 15:21:44 -0500 | [diff] [blame] | 6284 | request->fl_flags = fl_flags & ~FL_SLEEP; |
Jeff Layton | 75575dd | 2016-09-17 18:17:32 -0400 | [diff] [blame] | 6285 | status = locks_lock_inode_wait(state->inode, request); |
Trond Myklebust | c69899a | 2015-01-24 16:03:52 -0500 | [diff] [blame] | 6286 | up_read(&nfsi->rwsem); |
Chuck Lever | 11476e9 | 2016-04-11 16:20:22 -0400 | [diff] [blame] | 6287 | mutex_unlock(&sp->so_delegreturn_mutex); |
Trond Myklebust | c69899a | 2015-01-24 16:03:52 -0500 | [diff] [blame] | 6288 | goto out; |
Trond Myklebust | 01c3b86 | 2006-06-29 16:38:39 -0400 | [diff] [blame] | 6289 | } |
Trond Myklebust | 9a99af4 | 2013-02-04 20:17:49 -0500 | [diff] [blame] | 6290 | up_read(&nfsi->rwsem); |
Chuck Lever | 11476e9 | 2016-04-11 16:20:22 -0400 | [diff] [blame] | 6291 | mutex_unlock(&sp->so_delegreturn_mutex); |
Alexandros Batsakis | afe6c27 | 2009-12-09 01:50:14 -0800 | [diff] [blame] | 6292 | status = _nfs4_do_setlk(state, cmd, request, NFS_LOCK_NEW); |
Trond Myklebust | 01c3b86 | 2006-06-29 16:38:39 -0400 | [diff] [blame] | 6293 | out: |
| 6294 | request->fl_flags = fl_flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6295 | return status; |
| 6296 | } |
| 6297 | |
| 6298 | static int nfs4_proc_setlk(struct nfs4_state *state, int cmd, struct file_lock *request) |
| 6299 | { |
Trond Myklebust | a1d0b5e | 2012-03-05 19:56:44 -0500 | [diff] [blame] | 6300 | struct nfs4_exception exception = { |
| 6301 | .state = state, |
Trond Myklebust | 05ffe24 | 2012-04-18 12:20:10 -0400 | [diff] [blame] | 6302 | .inode = state->inode, |
Trond Myklebust | a1d0b5e | 2012-03-05 19:56:44 -0500 | [diff] [blame] | 6303 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6304 | int err; |
| 6305 | |
| 6306 | do { |
Trond Myklebust | 965b5d6 | 2009-06-17 13:22:59 -0700 | [diff] [blame] | 6307 | err = _nfs4_proc_setlk(state, cmd, request); |
| 6308 | if (err == -NFS4ERR_DENIED) |
| 6309 | err = -EAGAIN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6310 | err = nfs4_handle_exception(NFS_SERVER(state->inode), |
Trond Myklebust | 965b5d6 | 2009-06-17 13:22:59 -0700 | [diff] [blame] | 6311 | err, &exception); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6312 | } while (exception.retry); |
| 6313 | return err; |
| 6314 | } |
| 6315 | |
Jeff Layton | d2f3a7f | 2016-09-17 18:17:38 -0400 | [diff] [blame] | 6316 | #define NFS4_LOCK_MINTIMEOUT (1 * HZ) |
| 6317 | #define NFS4_LOCK_MAXTIMEOUT (30 * HZ) |
| 6318 | |
| 6319 | static int |
Jeff Layton | a1d617d8 | 2016-09-17 18:17:39 -0400 | [diff] [blame] | 6320 | nfs4_retry_setlk_simple(struct nfs4_state *state, int cmd, |
| 6321 | struct file_lock *request) |
Jeff Layton | d2f3a7f | 2016-09-17 18:17:38 -0400 | [diff] [blame] | 6322 | { |
| 6323 | int status = -ERESTARTSYS; |
| 6324 | unsigned long timeout = NFS4_LOCK_MINTIMEOUT; |
| 6325 | |
| 6326 | while(!signalled()) { |
| 6327 | status = nfs4_proc_setlk(state, cmd, request); |
| 6328 | if ((status != -EAGAIN) || IS_SETLK(cmd)) |
| 6329 | break; |
| 6330 | freezable_schedule_timeout_interruptible(timeout); |
| 6331 | timeout *= 2; |
| 6332 | timeout = min_t(unsigned long, NFS4_LOCK_MAXTIMEOUT, timeout); |
| 6333 | status = -ERESTARTSYS; |
| 6334 | } |
| 6335 | return status; |
| 6336 | } |
| 6337 | |
Jeff Layton | a1d617d8 | 2016-09-17 18:17:39 -0400 | [diff] [blame] | 6338 | #ifdef CONFIG_NFS_V4_1 |
| 6339 | struct nfs4_lock_waiter { |
| 6340 | struct task_struct *task; |
| 6341 | struct inode *inode; |
| 6342 | struct nfs_lowner *owner; |
| 6343 | bool notified; |
| 6344 | }; |
| 6345 | |
| 6346 | static int |
| 6347 | nfs4_wake_lock_waiter(wait_queue_t *wait, unsigned int mode, int flags, void *key) |
| 6348 | { |
| 6349 | int ret; |
| 6350 | struct cb_notify_lock_args *cbnl = key; |
| 6351 | struct nfs4_lock_waiter *waiter = wait->private; |
| 6352 | struct nfs_lowner *lowner = &cbnl->cbnl_owner, |
| 6353 | *wowner = waiter->owner; |
| 6354 | |
| 6355 | /* Only wake if the callback was for the same owner */ |
| 6356 | if (lowner->clientid != wowner->clientid || |
| 6357 | lowner->id != wowner->id || |
| 6358 | lowner->s_dev != wowner->s_dev) |
| 6359 | return 0; |
| 6360 | |
| 6361 | /* Make sure it's for the right inode */ |
| 6362 | if (nfs_compare_fh(NFS_FH(waiter->inode), &cbnl->cbnl_fh)) |
| 6363 | return 0; |
| 6364 | |
| 6365 | waiter->notified = true; |
| 6366 | |
| 6367 | /* override "private" so we can use default_wake_function */ |
| 6368 | wait->private = waiter->task; |
| 6369 | ret = autoremove_wake_function(wait, mode, flags, key); |
| 6370 | wait->private = waiter; |
| 6371 | return ret; |
| 6372 | } |
| 6373 | |
| 6374 | static int |
| 6375 | nfs4_retry_setlk(struct nfs4_state *state, int cmd, struct file_lock *request) |
| 6376 | { |
| 6377 | int status = -ERESTARTSYS; |
| 6378 | unsigned long flags; |
| 6379 | struct nfs4_lock_state *lsp = request->fl_u.nfs4_fl.owner; |
| 6380 | struct nfs_server *server = NFS_SERVER(state->inode); |
| 6381 | struct nfs_client *clp = server->nfs_client; |
| 6382 | wait_queue_head_t *q = &clp->cl_lock_waitq; |
| 6383 | struct nfs_lowner owner = { .clientid = clp->cl_clientid, |
| 6384 | .id = lsp->ls_seqid.owner_id, |
| 6385 | .s_dev = server->s_dev }; |
| 6386 | struct nfs4_lock_waiter waiter = { .task = current, |
| 6387 | .inode = state->inode, |
| 6388 | .owner = &owner, |
| 6389 | .notified = false }; |
| 6390 | wait_queue_t wait; |
| 6391 | |
| 6392 | /* Don't bother with waitqueue if we don't expect a callback */ |
| 6393 | if (!test_bit(NFS_STATE_MAY_NOTIFY_LOCK, &state->flags)) |
| 6394 | return nfs4_retry_setlk_simple(state, cmd, request); |
| 6395 | |
| 6396 | init_wait(&wait); |
| 6397 | wait.private = &waiter; |
| 6398 | wait.func = nfs4_wake_lock_waiter; |
| 6399 | add_wait_queue(q, &wait); |
| 6400 | |
| 6401 | while(!signalled()) { |
| 6402 | status = nfs4_proc_setlk(state, cmd, request); |
| 6403 | if ((status != -EAGAIN) || IS_SETLK(cmd)) |
| 6404 | break; |
| 6405 | |
| 6406 | status = -ERESTARTSYS; |
| 6407 | spin_lock_irqsave(&q->lock, flags); |
| 6408 | if (waiter.notified) { |
| 6409 | spin_unlock_irqrestore(&q->lock, flags); |
| 6410 | continue; |
| 6411 | } |
| 6412 | set_current_state(TASK_INTERRUPTIBLE); |
| 6413 | spin_unlock_irqrestore(&q->lock, flags); |
| 6414 | |
| 6415 | freezable_schedule_timeout_interruptible(NFS4_LOCK_MAXTIMEOUT); |
| 6416 | } |
| 6417 | |
| 6418 | finish_wait(q, &wait); |
| 6419 | return status; |
| 6420 | } |
| 6421 | #else /* !CONFIG_NFS_V4_1 */ |
| 6422 | static inline int |
| 6423 | nfs4_retry_setlk(struct nfs4_state *state, int cmd, struct file_lock *request) |
| 6424 | { |
| 6425 | return nfs4_retry_setlk_simple(state, cmd, request); |
| 6426 | } |
| 6427 | #endif |
| 6428 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6429 | static int |
| 6430 | nfs4_proc_lock(struct file *filp, int cmd, struct file_lock *request) |
| 6431 | { |
| 6432 | struct nfs_open_context *ctx; |
| 6433 | struct nfs4_state *state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6434 | int status; |
| 6435 | |
| 6436 | /* verify open state */ |
Trond Myklebust | cd3758e | 2007-08-10 17:44:32 -0400 | [diff] [blame] | 6437 | ctx = nfs_file_open_context(filp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6438 | state = ctx->state; |
| 6439 | |
| 6440 | if (request->fl_start < 0 || request->fl_end < 0) |
| 6441 | return -EINVAL; |
| 6442 | |
Trond Myklebust | d953126 | 2009-07-21 19:22:38 -0400 | [diff] [blame] | 6443 | if (IS_GETLK(cmd)) { |
| 6444 | if (state != NULL) |
| 6445 | return nfs4_proc_getlk(state, F_GETLK, request); |
| 6446 | return 0; |
| 6447 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6448 | |
| 6449 | if (!(IS_SETLK(cmd) || IS_SETLKW(cmd))) |
| 6450 | return -EINVAL; |
| 6451 | |
Trond Myklebust | d953126 | 2009-07-21 19:22:38 -0400 | [diff] [blame] | 6452 | if (request->fl_type == F_UNLCK) { |
| 6453 | if (state != NULL) |
| 6454 | return nfs4_proc_unlck(state, cmd, request); |
| 6455 | return 0; |
| 6456 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6457 | |
Trond Myklebust | d953126 | 2009-07-21 19:22:38 -0400 | [diff] [blame] | 6458 | if (state == NULL) |
| 6459 | return -ENOLCK; |
Jeff Layton | 1ea67db | 2016-09-17 18:17:37 -0400 | [diff] [blame] | 6460 | |
| 6461 | if ((request->fl_flags & FL_POSIX) && |
| 6462 | !test_bit(NFS_STATE_POSIX_LOCKS, &state->flags)) |
| 6463 | return -ENOLCK; |
| 6464 | |
Trond Myklebust | 5572551 | 2012-04-18 12:48:35 -0400 | [diff] [blame] | 6465 | /* |
| 6466 | * Don't rely on the VFS having checked the file open mode, |
| 6467 | * since it won't do this for flock() locks. |
| 6468 | */ |
Jeff Layton | f44106e | 2012-07-23 15:49:56 -0400 | [diff] [blame] | 6469 | switch (request->fl_type) { |
Trond Myklebust | 5572551 | 2012-04-18 12:48:35 -0400 | [diff] [blame] | 6470 | case F_RDLCK: |
| 6471 | if (!(filp->f_mode & FMODE_READ)) |
| 6472 | return -EBADF; |
| 6473 | break; |
| 6474 | case F_WRLCK: |
| 6475 | if (!(filp->f_mode & FMODE_WRITE)) |
| 6476 | return -EBADF; |
| 6477 | } |
| 6478 | |
Jeff Layton | 1ea67db | 2016-09-17 18:17:37 -0400 | [diff] [blame] | 6479 | status = nfs4_set_lock_state(state, request); |
| 6480 | if (status != 0) |
| 6481 | return status; |
| 6482 | |
Jeff Layton | d2f3a7f | 2016-09-17 18:17:38 -0400 | [diff] [blame] | 6483 | return nfs4_retry_setlk(state, cmd, request); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6484 | } |
| 6485 | |
Trond Myklebust | db4f2e6 | 2013-04-01 15:56:46 -0400 | [diff] [blame] | 6486 | int nfs4_lock_delegation_recall(struct file_lock *fl, struct nfs4_state *state, const nfs4_stateid *stateid) |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 6487 | { |
| 6488 | struct nfs_server *server = NFS_SERVER(state->inode); |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 6489 | int err; |
| 6490 | |
| 6491 | err = nfs4_set_lock_state(state, fl); |
| 6492 | if (err != 0) |
Trond Myklebust | db4f2e6 | 2013-04-01 15:56:46 -0400 | [diff] [blame] | 6493 | return err; |
Trond Myklebust | 4a706fa | 2013-04-01 14:47:22 -0400 | [diff] [blame] | 6494 | err = _nfs4_do_setlk(state, F_SETLK, fl, NFS_LOCK_NEW); |
Trond Myklebust | db4f2e6 | 2013-04-01 15:56:46 -0400 | [diff] [blame] | 6495 | return nfs4_handle_delegation_recall_error(server, state, stateid, err); |
Trond Myklebust | 888e694 | 2005-11-04 15:38:11 -0500 | [diff] [blame] | 6496 | } |
J. Bruce Fields | 6b3b549 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 6497 | |
Trond Myklebust | cf470c3 | 2012-03-07 13:49:12 -0500 | [diff] [blame] | 6498 | struct nfs_release_lockowner_data { |
| 6499 | struct nfs4_lock_state *lsp; |
Trond Myklebust | 5ae67c4 | 2012-03-19 16:17:18 -0400 | [diff] [blame] | 6500 | struct nfs_server *server; |
Trond Myklebust | cf470c3 | 2012-03-07 13:49:12 -0500 | [diff] [blame] | 6501 | struct nfs_release_lockowner_args args; |
Trond Myklebust | b7e63a1 | 2014-02-26 11:19:14 -0800 | [diff] [blame] | 6502 | struct nfs_release_lockowner_res res; |
Chuck Lever | 60ea681 | 2013-10-17 14:13:47 -0400 | [diff] [blame] | 6503 | unsigned long timestamp; |
Trond Myklebust | cf470c3 | 2012-03-07 13:49:12 -0500 | [diff] [blame] | 6504 | }; |
| 6505 | |
Chuck Lever | fbd4bfd | 2013-08-09 12:49:38 -0400 | [diff] [blame] | 6506 | static void nfs4_release_lockowner_prepare(struct rpc_task *task, void *calldata) |
| 6507 | { |
| 6508 | struct nfs_release_lockowner_data *data = calldata; |
Kinglong Mee | 5b53dc8 | 2014-08-04 16:18:16 +0800 | [diff] [blame] | 6509 | struct nfs_server *server = data->server; |
Peng Tao | cb04ad2 | 2014-06-11 05:24:15 +0800 | [diff] [blame] | 6510 | nfs40_setup_sequence(server->nfs_client->cl_slot_tbl, |
| 6511 | &data->args.seq_args, &data->res.seq_res, task); |
Kinglong Mee | 5b53dc8 | 2014-08-04 16:18:16 +0800 | [diff] [blame] | 6512 | data->args.lock_owner.clientid = server->nfs_client->cl_clientid; |
Chuck Lever | 60ea681 | 2013-10-17 14:13:47 -0400 | [diff] [blame] | 6513 | data->timestamp = jiffies; |
Chuck Lever | fbd4bfd | 2013-08-09 12:49:38 -0400 | [diff] [blame] | 6514 | } |
| 6515 | |
| 6516 | static void nfs4_release_lockowner_done(struct rpc_task *task, void *calldata) |
| 6517 | { |
| 6518 | struct nfs_release_lockowner_data *data = calldata; |
Chuck Lever | 60ea681 | 2013-10-17 14:13:47 -0400 | [diff] [blame] | 6519 | struct nfs_server *server = data->server; |
| 6520 | |
Trond Myklebust | b7e63a1 | 2014-02-26 11:19:14 -0800 | [diff] [blame] | 6521 | nfs40_sequence_done(task, &data->res.seq_res); |
Chuck Lever | 60ea681 | 2013-10-17 14:13:47 -0400 | [diff] [blame] | 6522 | |
| 6523 | switch (task->tk_status) { |
| 6524 | case 0: |
| 6525 | renew_lease(server, data->timestamp); |
| 6526 | break; |
| 6527 | case -NFS4ERR_STALE_CLIENTID: |
| 6528 | case -NFS4ERR_EXPIRED: |
Kinglong Mee | 5b53dc8 | 2014-08-04 16:18:16 +0800 | [diff] [blame] | 6529 | nfs4_schedule_lease_recovery(server->nfs_client); |
| 6530 | break; |
Chuck Lever | 60ea681 | 2013-10-17 14:13:47 -0400 | [diff] [blame] | 6531 | case -NFS4ERR_LEASE_MOVED: |
| 6532 | case -NFS4ERR_DELAY: |
NeilBrown | 8478eaa | 2014-09-18 16:09:27 +1000 | [diff] [blame] | 6533 | if (nfs4_async_handle_error(task, server, |
| 6534 | NULL, NULL) == -EAGAIN) |
Chuck Lever | 60ea681 | 2013-10-17 14:13:47 -0400 | [diff] [blame] | 6535 | rpc_restart_call_prepare(task); |
| 6536 | } |
Chuck Lever | fbd4bfd | 2013-08-09 12:49:38 -0400 | [diff] [blame] | 6537 | } |
| 6538 | |
Trond Myklebust | d3c7b7c | 2010-07-01 12:49:01 -0400 | [diff] [blame] | 6539 | static void nfs4_release_lockowner_release(void *calldata) |
| 6540 | { |
Trond Myklebust | cf470c3 | 2012-03-07 13:49:12 -0500 | [diff] [blame] | 6541 | struct nfs_release_lockowner_data *data = calldata; |
Trond Myklebust | 5ae67c4 | 2012-03-19 16:17:18 -0400 | [diff] [blame] | 6542 | nfs4_free_lock_state(data->server, data->lsp); |
Trond Myklebust | d3c7b7c | 2010-07-01 12:49:01 -0400 | [diff] [blame] | 6543 | kfree(calldata); |
| 6544 | } |
| 6545 | |
Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame] | 6546 | static const struct rpc_call_ops nfs4_release_lockowner_ops = { |
Chuck Lever | fbd4bfd | 2013-08-09 12:49:38 -0400 | [diff] [blame] | 6547 | .rpc_call_prepare = nfs4_release_lockowner_prepare, |
| 6548 | .rpc_call_done = nfs4_release_lockowner_done, |
Trond Myklebust | d3c7b7c | 2010-07-01 12:49:01 -0400 | [diff] [blame] | 6549 | .rpc_release = nfs4_release_lockowner_release, |
| 6550 | }; |
| 6551 | |
Jeff Layton | f1cdae8 | 2014-05-01 06:28:47 -0400 | [diff] [blame] | 6552 | static void |
| 6553 | nfs4_release_lockowner(struct nfs_server *server, struct nfs4_lock_state *lsp) |
Trond Myklebust | d3c7b7c | 2010-07-01 12:49:01 -0400 | [diff] [blame] | 6554 | { |
Trond Myklebust | cf470c3 | 2012-03-07 13:49:12 -0500 | [diff] [blame] | 6555 | struct nfs_release_lockowner_data *data; |
Trond Myklebust | d3c7b7c | 2010-07-01 12:49:01 -0400 | [diff] [blame] | 6556 | struct rpc_message msg = { |
| 6557 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RELEASE_LOCKOWNER], |
| 6558 | }; |
| 6559 | |
| 6560 | if (server->nfs_client->cl_mvops->minor_version != 0) |
Jeff Layton | f1cdae8 | 2014-05-01 06:28:47 -0400 | [diff] [blame] | 6561 | return; |
Chuck Lever | fbd4bfd | 2013-08-09 12:49:38 -0400 | [diff] [blame] | 6562 | |
Trond Myklebust | cf470c3 | 2012-03-07 13:49:12 -0500 | [diff] [blame] | 6563 | data = kmalloc(sizeof(*data), GFP_NOFS); |
| 6564 | if (!data) |
Jeff Layton | f1cdae8 | 2014-05-01 06:28:47 -0400 | [diff] [blame] | 6565 | return; |
Trond Myklebust | cf470c3 | 2012-03-07 13:49:12 -0500 | [diff] [blame] | 6566 | data->lsp = lsp; |
Trond Myklebust | 5ae67c4 | 2012-03-19 16:17:18 -0400 | [diff] [blame] | 6567 | data->server = server; |
Trond Myklebust | cf470c3 | 2012-03-07 13:49:12 -0500 | [diff] [blame] | 6568 | data->args.lock_owner.clientid = server->nfs_client->cl_clientid; |
| 6569 | data->args.lock_owner.id = lsp->ls_seqid.owner_id; |
| 6570 | data->args.lock_owner.s_dev = server->s_dev; |
Chuck Lever | fbd4bfd | 2013-08-09 12:49:38 -0400 | [diff] [blame] | 6571 | |
Trond Myklebust | cf470c3 | 2012-03-07 13:49:12 -0500 | [diff] [blame] | 6572 | msg.rpc_argp = &data->args; |
Trond Myklebust | b7e63a1 | 2014-02-26 11:19:14 -0800 | [diff] [blame] | 6573 | msg.rpc_resp = &data->res; |
| 6574 | nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 0); |
Trond Myklebust | cf470c3 | 2012-03-07 13:49:12 -0500 | [diff] [blame] | 6575 | rpc_call_async(server->client, &msg, 0, &nfs4_release_lockowner_ops, data); |
Trond Myklebust | d3c7b7c | 2010-07-01 12:49:01 -0400 | [diff] [blame] | 6576 | } |
| 6577 | |
J. Bruce Fields | aa1870a | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 6578 | #define XATTR_NAME_NFSV4_ACL "system.nfs4_acl" |
| 6579 | |
Andreas Gruenbacher | d9a82a0 | 2015-10-04 19:18:51 +0200 | [diff] [blame] | 6580 | static int nfs4_xattr_set_nfs4_acl(const struct xattr_handler *handler, |
Al Viro | 5930122 | 2016-05-27 10:19:30 -0400 | [diff] [blame] | 6581 | struct dentry *unused, struct inode *inode, |
| 6582 | const char *key, const void *buf, |
| 6583 | size_t buflen, int flags) |
J. Bruce Fields | 6b3b549 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 6584 | { |
Al Viro | 5930122 | 2016-05-27 10:19:30 -0400 | [diff] [blame] | 6585 | return nfs4_proc_set_acl(inode, buf, buflen); |
J. Bruce Fields | 6b3b549 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 6586 | } |
| 6587 | |
Andreas Gruenbacher | d9a82a0 | 2015-10-04 19:18:51 +0200 | [diff] [blame] | 6588 | static int nfs4_xattr_get_nfs4_acl(const struct xattr_handler *handler, |
Al Viro | b296821 | 2016-04-10 20:48:24 -0400 | [diff] [blame] | 6589 | struct dentry *unused, struct inode *inode, |
| 6590 | const char *key, void *buf, size_t buflen) |
J. Bruce Fields | 6b3b549 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 6591 | { |
Al Viro | b296821 | 2016-04-10 20:48:24 -0400 | [diff] [blame] | 6592 | return nfs4_proc_get_acl(inode, buf, buflen); |
J. Bruce Fields | 6b3b549 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 6593 | } |
| 6594 | |
Andreas Gruenbacher | 764a5c6 | 2015-12-02 14:44:43 +0100 | [diff] [blame] | 6595 | static bool nfs4_xattr_list_nfs4_acl(struct dentry *dentry) |
J. Bruce Fields | 6b3b549 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 6596 | { |
Andreas Gruenbacher | 764a5c6 | 2015-12-02 14:44:43 +0100 | [diff] [blame] | 6597 | return nfs4_server_supports_acls(NFS_SERVER(d_inode(dentry))); |
J. Bruce Fields | 6b3b549 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 6598 | } |
| 6599 | |
David Quigley | c9bccef | 2013-05-22 12:50:45 -0400 | [diff] [blame] | 6600 | #ifdef CONFIG_NFS_V4_SECURITY_LABEL |
David Quigley | c9bccef | 2013-05-22 12:50:45 -0400 | [diff] [blame] | 6601 | |
Andreas Gruenbacher | d9a82a0 | 2015-10-04 19:18:51 +0200 | [diff] [blame] | 6602 | static int nfs4_xattr_set_nfs4_label(const struct xattr_handler *handler, |
Al Viro | 5930122 | 2016-05-27 10:19:30 -0400 | [diff] [blame] | 6603 | struct dentry *unused, struct inode *inode, |
| 6604 | const char *key, const void *buf, |
| 6605 | size_t buflen, int flags) |
David Quigley | c9bccef | 2013-05-22 12:50:45 -0400 | [diff] [blame] | 6606 | { |
| 6607 | if (security_ismaclabel(key)) |
Al Viro | 5930122 | 2016-05-27 10:19:30 -0400 | [diff] [blame] | 6608 | return nfs4_set_security_label(inode, buf, buflen); |
David Quigley | c9bccef | 2013-05-22 12:50:45 -0400 | [diff] [blame] | 6609 | |
| 6610 | return -EOPNOTSUPP; |
| 6611 | } |
| 6612 | |
Andreas Gruenbacher | d9a82a0 | 2015-10-04 19:18:51 +0200 | [diff] [blame] | 6613 | static int nfs4_xattr_get_nfs4_label(const struct xattr_handler *handler, |
Al Viro | b296821 | 2016-04-10 20:48:24 -0400 | [diff] [blame] | 6614 | struct dentry *unused, struct inode *inode, |
| 6615 | const char *key, void *buf, size_t buflen) |
David Quigley | c9bccef | 2013-05-22 12:50:45 -0400 | [diff] [blame] | 6616 | { |
| 6617 | if (security_ismaclabel(key)) |
Al Viro | b296821 | 2016-04-10 20:48:24 -0400 | [diff] [blame] | 6618 | return nfs4_get_security_label(inode, buf, buflen); |
David Quigley | c9bccef | 2013-05-22 12:50:45 -0400 | [diff] [blame] | 6619 | return -EOPNOTSUPP; |
| 6620 | } |
| 6621 | |
Andreas Gruenbacher | c4803c4 | 2015-12-02 14:44:41 +0100 | [diff] [blame] | 6622 | static ssize_t |
| 6623 | nfs4_listxattr_nfs4_label(struct inode *inode, char *list, size_t list_len) |
David Quigley | c9bccef | 2013-05-22 12:50:45 -0400 | [diff] [blame] | 6624 | { |
Andreas Gruenbacher | c4803c4 | 2015-12-02 14:44:41 +0100 | [diff] [blame] | 6625 | int len = 0; |
David Quigley | c9bccef | 2013-05-22 12:50:45 -0400 | [diff] [blame] | 6626 | |
Andreas Gruenbacher | c4803c4 | 2015-12-02 14:44:41 +0100 | [diff] [blame] | 6627 | if (nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL)) { |
| 6628 | len = security_inode_listsecurity(inode, list, list_len); |
| 6629 | if (list_len && len > list_len) |
| 6630 | return -ERANGE; |
David Quigley | c9bccef | 2013-05-22 12:50:45 -0400 | [diff] [blame] | 6631 | } |
| 6632 | return len; |
| 6633 | } |
| 6634 | |
| 6635 | static const struct xattr_handler nfs4_xattr_nfs4_label_handler = { |
| 6636 | .prefix = XATTR_SECURITY_PREFIX, |
David Quigley | c9bccef | 2013-05-22 12:50:45 -0400 | [diff] [blame] | 6637 | .get = nfs4_xattr_get_nfs4_label, |
| 6638 | .set = nfs4_xattr_set_nfs4_label, |
| 6639 | }; |
David Quigley | c9bccef | 2013-05-22 12:50:45 -0400 | [diff] [blame] | 6640 | |
Andreas Gruenbacher | c4803c4 | 2015-12-02 14:44:41 +0100 | [diff] [blame] | 6641 | #else |
| 6642 | |
| 6643 | static ssize_t |
| 6644 | nfs4_listxattr_nfs4_label(struct inode *inode, char *list, size_t list_len) |
| 6645 | { |
| 6646 | return 0; |
| 6647 | } |
| 6648 | |
| 6649 | #endif |
David Quigley | c9bccef | 2013-05-22 12:50:45 -0400 | [diff] [blame] | 6650 | |
Andy Adamson | 533eb46 | 2011-06-13 18:25:56 -0400 | [diff] [blame] | 6651 | /* |
| 6652 | * nfs_fhget will use either the mounted_on_fileid or the fileid |
| 6653 | */ |
Trond Myklebust | 69aaaae | 2009-03-11 14:10:28 -0400 | [diff] [blame] | 6654 | static void nfs_fixup_referral_attributes(struct nfs_fattr *fattr) |
| 6655 | { |
Andy Adamson | 533eb46 | 2011-06-13 18:25:56 -0400 | [diff] [blame] | 6656 | if (!(((fattr->valid & NFS_ATTR_FATTR_MOUNTED_ON_FILEID) || |
| 6657 | (fattr->valid & NFS_ATTR_FATTR_FILEID)) && |
| 6658 | (fattr->valid & NFS_ATTR_FATTR_FSID) && |
Chuck Lever | 81934dd | 2012-03-01 17:01:57 -0500 | [diff] [blame] | 6659 | (fattr->valid & NFS_ATTR_FATTR_V4_LOCATIONS))) |
Trond Myklebust | 69aaaae | 2009-03-11 14:10:28 -0400 | [diff] [blame] | 6660 | return; |
| 6661 | |
| 6662 | fattr->valid |= NFS_ATTR_FATTR_TYPE | NFS_ATTR_FATTR_MODE | |
Chuck Lever | 81934dd | 2012-03-01 17:01:57 -0500 | [diff] [blame] | 6663 | NFS_ATTR_FATTR_NLINK | NFS_ATTR_FATTR_V4_REFERRAL; |
Trond Myklebust | 69aaaae | 2009-03-11 14:10:28 -0400 | [diff] [blame] | 6664 | fattr->mode = S_IFDIR | S_IRUGO | S_IXUGO; |
| 6665 | fattr->nlink = 2; |
| 6666 | } |
| 6667 | |
Bryan Schumaker | f05d147 | 2012-04-27 13:27:41 -0400 | [diff] [blame] | 6668 | static int _nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir, |
| 6669 | const struct qstr *name, |
| 6670 | struct nfs4_fs_locations *fs_locations, |
| 6671 | struct page *page) |
Trond Myklebust | 683b57b | 2006-06-09 09:34:22 -0400 | [diff] [blame] | 6672 | { |
| 6673 | struct nfs_server *server = NFS_SERVER(dir); |
David Quigley | a09df2c | 2013-05-22 12:50:41 -0400 | [diff] [blame] | 6674 | u32 bitmask[3] = { |
Manoj Naik | 361e624 | 2006-06-09 09:34:24 -0400 | [diff] [blame] | 6675 | [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS, |
Trond Myklebust | 683b57b | 2006-06-09 09:34:22 -0400 | [diff] [blame] | 6676 | }; |
| 6677 | struct nfs4_fs_locations_arg args = { |
| 6678 | .dir_fh = NFS_FH(dir), |
Trond Myklebust | c228fd3 | 2007-01-13 02:28:11 -0500 | [diff] [blame] | 6679 | .name = name, |
Trond Myklebust | 683b57b | 2006-06-09 09:34:22 -0400 | [diff] [blame] | 6680 | .page = page, |
| 6681 | .bitmask = bitmask, |
| 6682 | }; |
Benny Halevy | 2295846 | 2009-04-01 09:22:02 -0400 | [diff] [blame] | 6683 | struct nfs4_fs_locations_res res = { |
| 6684 | .fs_locations = fs_locations, |
| 6685 | }; |
Trond Myklebust | 683b57b | 2006-06-09 09:34:22 -0400 | [diff] [blame] | 6686 | struct rpc_message msg = { |
| 6687 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS], |
| 6688 | .rpc_argp = &args, |
Benny Halevy | 2295846 | 2009-04-01 09:22:02 -0400 | [diff] [blame] | 6689 | .rpc_resp = &res, |
Trond Myklebust | 683b57b | 2006-06-09 09:34:22 -0400 | [diff] [blame] | 6690 | }; |
| 6691 | int status; |
| 6692 | |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 6693 | dprintk("%s: start\n", __func__); |
Andy Adamson | 533eb46 | 2011-06-13 18:25:56 -0400 | [diff] [blame] | 6694 | |
| 6695 | /* Ask for the fileid of the absent filesystem if mounted_on_fileid |
| 6696 | * is not supported */ |
| 6697 | if (NFS_SERVER(dir)->attr_bitmask[1] & FATTR4_WORD1_MOUNTED_ON_FILEID) |
| 6698 | bitmask[1] |= FATTR4_WORD1_MOUNTED_ON_FILEID; |
| 6699 | else |
| 6700 | bitmask[0] |= FATTR4_WORD0_FILEID; |
| 6701 | |
Trond Myklebust | c228fd3 | 2007-01-13 02:28:11 -0500 | [diff] [blame] | 6702 | nfs_fattr_init(&fs_locations->fattr); |
Trond Myklebust | 683b57b | 2006-06-09 09:34:22 -0400 | [diff] [blame] | 6703 | fs_locations->server = server; |
Manoj Naik | 830b8e3 | 2006-06-09 09:34:25 -0400 | [diff] [blame] | 6704 | fs_locations->nlocations = 0; |
Bryan Schumaker | f05d147 | 2012-04-27 13:27:41 -0400 | [diff] [blame] | 6705 | status = nfs4_call_sync(client, server, &msg, &args.seq_args, &res.seq_res, 0); |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 6706 | dprintk("%s: returned status = %d\n", __func__, status); |
Trond Myklebust | 683b57b | 2006-06-09 09:34:22 -0400 | [diff] [blame] | 6707 | return status; |
| 6708 | } |
| 6709 | |
Bryan Schumaker | f05d147 | 2012-04-27 13:27:41 -0400 | [diff] [blame] | 6710 | int nfs4_proc_fs_locations(struct rpc_clnt *client, struct inode *dir, |
| 6711 | const struct qstr *name, |
| 6712 | struct nfs4_fs_locations *fs_locations, |
| 6713 | struct page *page) |
Bryan Schumaker | db0a959 | 2012-04-27 13:27:39 -0400 | [diff] [blame] | 6714 | { |
| 6715 | struct nfs4_exception exception = { }; |
| 6716 | int err; |
| 6717 | do { |
Trond Myklebust | 078ea3d | 2013-08-12 16:45:55 -0400 | [diff] [blame] | 6718 | err = _nfs4_proc_fs_locations(client, dir, name, |
| 6719 | fs_locations, page); |
| 6720 | trace_nfs4_get_fs_locations(dir, name, err); |
| 6721 | err = nfs4_handle_exception(NFS_SERVER(dir), err, |
Bryan Schumaker | db0a959 | 2012-04-27 13:27:39 -0400 | [diff] [blame] | 6722 | &exception); |
| 6723 | } while (exception.retry); |
| 6724 | return err; |
| 6725 | } |
| 6726 | |
Chuck Lever | b03d735 | 2013-10-17 14:12:50 -0400 | [diff] [blame] | 6727 | /* |
| 6728 | * This operation also signals the server that this client is |
| 6729 | * performing migration recovery. The server can stop returning |
| 6730 | * NFS4ERR_LEASE_MOVED to this client. A RENEW operation is |
| 6731 | * appended to this compound to identify the client ID which is |
| 6732 | * performing recovery. |
| 6733 | */ |
| 6734 | static int _nfs40_proc_get_locations(struct inode *inode, |
| 6735 | struct nfs4_fs_locations *locations, |
| 6736 | struct page *page, struct rpc_cred *cred) |
| 6737 | { |
| 6738 | struct nfs_server *server = NFS_SERVER(inode); |
| 6739 | struct rpc_clnt *clnt = server->client; |
| 6740 | u32 bitmask[2] = { |
| 6741 | [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS, |
| 6742 | }; |
| 6743 | struct nfs4_fs_locations_arg args = { |
| 6744 | .clientid = server->nfs_client->cl_clientid, |
| 6745 | .fh = NFS_FH(inode), |
| 6746 | .page = page, |
| 6747 | .bitmask = bitmask, |
| 6748 | .migration = 1, /* skip LOOKUP */ |
| 6749 | .renew = 1, /* append RENEW */ |
| 6750 | }; |
| 6751 | struct nfs4_fs_locations_res res = { |
| 6752 | .fs_locations = locations, |
| 6753 | .migration = 1, |
| 6754 | .renew = 1, |
| 6755 | }; |
| 6756 | struct rpc_message msg = { |
| 6757 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS], |
| 6758 | .rpc_argp = &args, |
| 6759 | .rpc_resp = &res, |
| 6760 | .rpc_cred = cred, |
| 6761 | }; |
| 6762 | unsigned long now = jiffies; |
| 6763 | int status; |
| 6764 | |
| 6765 | nfs_fattr_init(&locations->fattr); |
| 6766 | locations->server = server; |
| 6767 | locations->nlocations = 0; |
| 6768 | |
| 6769 | nfs4_init_sequence(&args.seq_args, &res.seq_res, 0); |
| 6770 | nfs4_set_sequence_privileged(&args.seq_args); |
| 6771 | status = nfs4_call_sync_sequence(clnt, server, &msg, |
| 6772 | &args.seq_args, &res.seq_res); |
| 6773 | if (status) |
| 6774 | return status; |
| 6775 | |
| 6776 | renew_lease(server, now); |
| 6777 | return 0; |
| 6778 | } |
| 6779 | |
| 6780 | #ifdef CONFIG_NFS_V4_1 |
| 6781 | |
| 6782 | /* |
| 6783 | * This operation also signals the server that this client is |
| 6784 | * performing migration recovery. The server can stop asserting |
| 6785 | * SEQ4_STATUS_LEASE_MOVED for this client. The client ID |
| 6786 | * performing this operation is identified in the SEQUENCE |
| 6787 | * operation in this compound. |
| 6788 | * |
| 6789 | * When the client supports GETATTR(fs_locations_info), it can |
| 6790 | * be plumbed in here. |
| 6791 | */ |
| 6792 | static int _nfs41_proc_get_locations(struct inode *inode, |
| 6793 | struct nfs4_fs_locations *locations, |
| 6794 | struct page *page, struct rpc_cred *cred) |
| 6795 | { |
| 6796 | struct nfs_server *server = NFS_SERVER(inode); |
| 6797 | struct rpc_clnt *clnt = server->client; |
| 6798 | u32 bitmask[2] = { |
| 6799 | [0] = FATTR4_WORD0_FSID | FATTR4_WORD0_FS_LOCATIONS, |
| 6800 | }; |
| 6801 | struct nfs4_fs_locations_arg args = { |
| 6802 | .fh = NFS_FH(inode), |
| 6803 | .page = page, |
| 6804 | .bitmask = bitmask, |
| 6805 | .migration = 1, /* skip LOOKUP */ |
| 6806 | }; |
| 6807 | struct nfs4_fs_locations_res res = { |
| 6808 | .fs_locations = locations, |
| 6809 | .migration = 1, |
| 6810 | }; |
| 6811 | struct rpc_message msg = { |
| 6812 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FS_LOCATIONS], |
| 6813 | .rpc_argp = &args, |
| 6814 | .rpc_resp = &res, |
| 6815 | .rpc_cred = cred, |
| 6816 | }; |
| 6817 | int status; |
| 6818 | |
| 6819 | nfs_fattr_init(&locations->fattr); |
| 6820 | locations->server = server; |
| 6821 | locations->nlocations = 0; |
| 6822 | |
| 6823 | nfs4_init_sequence(&args.seq_args, &res.seq_res, 0); |
| 6824 | nfs4_set_sequence_privileged(&args.seq_args); |
| 6825 | status = nfs4_call_sync_sequence(clnt, server, &msg, |
| 6826 | &args.seq_args, &res.seq_res); |
| 6827 | if (status == NFS4_OK && |
| 6828 | res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED) |
| 6829 | status = -NFS4ERR_LEASE_MOVED; |
| 6830 | return status; |
| 6831 | } |
| 6832 | |
| 6833 | #endif /* CONFIG_NFS_V4_1 */ |
| 6834 | |
| 6835 | /** |
| 6836 | * nfs4_proc_get_locations - discover locations for a migrated FSID |
| 6837 | * @inode: inode on FSID that is migrating |
| 6838 | * @locations: result of query |
| 6839 | * @page: buffer |
| 6840 | * @cred: credential to use for this operation |
| 6841 | * |
| 6842 | * Returns NFS4_OK on success, a negative NFS4ERR status code if the |
| 6843 | * operation failed, or a negative errno if a local error occurred. |
| 6844 | * |
| 6845 | * On success, "locations" is filled in, but if the server has |
| 6846 | * no locations information, NFS_ATTR_FATTR_V4_LOCATIONS is not |
| 6847 | * asserted. |
| 6848 | * |
| 6849 | * -NFS4ERR_LEASE_MOVED is returned if the server still has leases |
| 6850 | * from this client that require migration recovery. |
| 6851 | */ |
| 6852 | int nfs4_proc_get_locations(struct inode *inode, |
| 6853 | struct nfs4_fs_locations *locations, |
| 6854 | struct page *page, struct rpc_cred *cred) |
| 6855 | { |
| 6856 | struct nfs_server *server = NFS_SERVER(inode); |
| 6857 | struct nfs_client *clp = server->nfs_client; |
| 6858 | const struct nfs4_mig_recovery_ops *ops = |
| 6859 | clp->cl_mvops->mig_recovery_ops; |
| 6860 | struct nfs4_exception exception = { }; |
| 6861 | int status; |
| 6862 | |
| 6863 | dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__, |
| 6864 | (unsigned long long)server->fsid.major, |
| 6865 | (unsigned long long)server->fsid.minor, |
| 6866 | clp->cl_hostname); |
| 6867 | nfs_display_fhandle(NFS_FH(inode), __func__); |
| 6868 | |
| 6869 | do { |
| 6870 | status = ops->get_locations(inode, locations, page, cred); |
| 6871 | if (status != -NFS4ERR_DELAY) |
| 6872 | break; |
| 6873 | nfs4_handle_exception(server, status, &exception); |
| 6874 | } while (exception.retry); |
| 6875 | return status; |
| 6876 | } |
| 6877 | |
Chuck Lever | 44c9993 | 2013-10-17 14:13:30 -0400 | [diff] [blame] | 6878 | /* |
| 6879 | * This operation also signals the server that this client is |
| 6880 | * performing "lease moved" recovery. The server can stop |
| 6881 | * returning NFS4ERR_LEASE_MOVED to this client. A RENEW operation |
| 6882 | * is appended to this compound to identify the client ID which is |
| 6883 | * performing recovery. |
| 6884 | */ |
| 6885 | static int _nfs40_proc_fsid_present(struct inode *inode, struct rpc_cred *cred) |
| 6886 | { |
| 6887 | struct nfs_server *server = NFS_SERVER(inode); |
| 6888 | struct nfs_client *clp = NFS_SERVER(inode)->nfs_client; |
| 6889 | struct rpc_clnt *clnt = server->client; |
| 6890 | struct nfs4_fsid_present_arg args = { |
| 6891 | .fh = NFS_FH(inode), |
| 6892 | .clientid = clp->cl_clientid, |
| 6893 | .renew = 1, /* append RENEW */ |
| 6894 | }; |
| 6895 | struct nfs4_fsid_present_res res = { |
| 6896 | .renew = 1, |
| 6897 | }; |
| 6898 | struct rpc_message msg = { |
| 6899 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT], |
| 6900 | .rpc_argp = &args, |
| 6901 | .rpc_resp = &res, |
| 6902 | .rpc_cred = cred, |
| 6903 | }; |
| 6904 | unsigned long now = jiffies; |
| 6905 | int status; |
| 6906 | |
| 6907 | res.fh = nfs_alloc_fhandle(); |
| 6908 | if (res.fh == NULL) |
| 6909 | return -ENOMEM; |
| 6910 | |
| 6911 | nfs4_init_sequence(&args.seq_args, &res.seq_res, 0); |
| 6912 | nfs4_set_sequence_privileged(&args.seq_args); |
| 6913 | status = nfs4_call_sync_sequence(clnt, server, &msg, |
| 6914 | &args.seq_args, &res.seq_res); |
| 6915 | nfs_free_fhandle(res.fh); |
| 6916 | if (status) |
| 6917 | return status; |
| 6918 | |
| 6919 | do_renew_lease(clp, now); |
| 6920 | return 0; |
| 6921 | } |
| 6922 | |
| 6923 | #ifdef CONFIG_NFS_V4_1 |
| 6924 | |
| 6925 | /* |
| 6926 | * This operation also signals the server that this client is |
| 6927 | * performing "lease moved" recovery. The server can stop asserting |
| 6928 | * SEQ4_STATUS_LEASE_MOVED for this client. The client ID performing |
| 6929 | * this operation is identified in the SEQUENCE operation in this |
| 6930 | * compound. |
| 6931 | */ |
| 6932 | static int _nfs41_proc_fsid_present(struct inode *inode, struct rpc_cred *cred) |
| 6933 | { |
| 6934 | struct nfs_server *server = NFS_SERVER(inode); |
| 6935 | struct rpc_clnt *clnt = server->client; |
| 6936 | struct nfs4_fsid_present_arg args = { |
| 6937 | .fh = NFS_FH(inode), |
| 6938 | }; |
| 6939 | struct nfs4_fsid_present_res res = { |
| 6940 | }; |
| 6941 | struct rpc_message msg = { |
| 6942 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FSID_PRESENT], |
| 6943 | .rpc_argp = &args, |
| 6944 | .rpc_resp = &res, |
| 6945 | .rpc_cred = cred, |
| 6946 | }; |
| 6947 | int status; |
| 6948 | |
| 6949 | res.fh = nfs_alloc_fhandle(); |
| 6950 | if (res.fh == NULL) |
| 6951 | return -ENOMEM; |
| 6952 | |
| 6953 | nfs4_init_sequence(&args.seq_args, &res.seq_res, 0); |
| 6954 | nfs4_set_sequence_privileged(&args.seq_args); |
| 6955 | status = nfs4_call_sync_sequence(clnt, server, &msg, |
| 6956 | &args.seq_args, &res.seq_res); |
| 6957 | nfs_free_fhandle(res.fh); |
| 6958 | if (status == NFS4_OK && |
| 6959 | res.seq_res.sr_status_flags & SEQ4_STATUS_LEASE_MOVED) |
| 6960 | status = -NFS4ERR_LEASE_MOVED; |
| 6961 | return status; |
| 6962 | } |
| 6963 | |
| 6964 | #endif /* CONFIG_NFS_V4_1 */ |
| 6965 | |
| 6966 | /** |
| 6967 | * nfs4_proc_fsid_present - Is this FSID present or absent on server? |
| 6968 | * @inode: inode on FSID to check |
| 6969 | * @cred: credential to use for this operation |
| 6970 | * |
| 6971 | * Server indicates whether the FSID is present, moved, or not |
| 6972 | * recognized. This operation is necessary to clear a LEASE_MOVED |
| 6973 | * condition for this client ID. |
| 6974 | * |
| 6975 | * Returns NFS4_OK if the FSID is present on this server, |
| 6976 | * -NFS4ERR_MOVED if the FSID is no longer present, a negative |
| 6977 | * NFS4ERR code if some error occurred on the server, or a |
| 6978 | * negative errno if a local failure occurred. |
| 6979 | */ |
| 6980 | int nfs4_proc_fsid_present(struct inode *inode, struct rpc_cred *cred) |
| 6981 | { |
| 6982 | struct nfs_server *server = NFS_SERVER(inode); |
| 6983 | struct nfs_client *clp = server->nfs_client; |
| 6984 | const struct nfs4_mig_recovery_ops *ops = |
| 6985 | clp->cl_mvops->mig_recovery_ops; |
| 6986 | struct nfs4_exception exception = { }; |
| 6987 | int status; |
| 6988 | |
| 6989 | dprintk("%s: FSID %llx:%llx on \"%s\"\n", __func__, |
| 6990 | (unsigned long long)server->fsid.major, |
| 6991 | (unsigned long long)server->fsid.minor, |
| 6992 | clp->cl_hostname); |
| 6993 | nfs_display_fhandle(NFS_FH(inode), __func__); |
| 6994 | |
| 6995 | do { |
| 6996 | status = ops->fsid_present(inode, cred); |
| 6997 | if (status != -NFS4ERR_DELAY) |
| 6998 | break; |
| 6999 | nfs4_handle_exception(server, status, &exception); |
| 7000 | } while (exception.retry); |
| 7001 | return status; |
| 7002 | } |
| 7003 | |
Andy Adamson | 5ec16a8 | 2013-08-08 10:57:55 -0400 | [diff] [blame] | 7004 | /** |
Weston Andros Adamson | a5250de | 2013-09-03 15:18:49 -0400 | [diff] [blame] | 7005 | * If 'use_integrity' is true and the state managment nfs_client |
| 7006 | * cl_rpcclient is using krb5i/p, use the integrity protected cl_rpcclient |
| 7007 | * and the machine credential as per RFC3530bis and RFC5661 Security |
| 7008 | * Considerations sections. Otherwise, just use the user cred with the |
| 7009 | * filesystem's rpc_client. |
Andy Adamson | 5ec16a8 | 2013-08-08 10:57:55 -0400 | [diff] [blame] | 7010 | */ |
Weston Andros Adamson | a5250de | 2013-09-03 15:18:49 -0400 | [diff] [blame] | 7011 | static int _nfs4_proc_secinfo(struct inode *dir, const struct qstr *name, struct nfs4_secinfo_flavors *flavors, bool use_integrity) |
Bryan Schumaker | 5a5ea0d | 2011-03-24 17:12:29 +0000 | [diff] [blame] | 7012 | { |
| 7013 | int status; |
| 7014 | struct nfs4_secinfo_arg args = { |
| 7015 | .dir_fh = NFS_FH(dir), |
| 7016 | .name = name, |
| 7017 | }; |
| 7018 | struct nfs4_secinfo_res res = { |
| 7019 | .flavors = flavors, |
| 7020 | }; |
| 7021 | struct rpc_message msg = { |
| 7022 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO], |
| 7023 | .rpc_argp = &args, |
| 7024 | .rpc_resp = &res, |
| 7025 | }; |
Weston Andros Adamson | a5250de | 2013-09-03 15:18:49 -0400 | [diff] [blame] | 7026 | struct rpc_clnt *clnt = NFS_SERVER(dir)->client; |
Weston Andros Adamson | 7cb852d | 2013-09-10 18:44:31 -0400 | [diff] [blame] | 7027 | struct rpc_cred *cred = NULL; |
Weston Andros Adamson | a5250de | 2013-09-03 15:18:49 -0400 | [diff] [blame] | 7028 | |
| 7029 | if (use_integrity) { |
| 7030 | clnt = NFS_SERVER(dir)->nfs_client->cl_rpcclient; |
Weston Andros Adamson | 7cb852d | 2013-09-10 18:44:31 -0400 | [diff] [blame] | 7031 | cred = nfs4_get_clid_cred(NFS_SERVER(dir)->nfs_client); |
| 7032 | msg.rpc_cred = cred; |
Weston Andros Adamson | a5250de | 2013-09-03 15:18:49 -0400 | [diff] [blame] | 7033 | } |
Bryan Schumaker | 5a5ea0d | 2011-03-24 17:12:29 +0000 | [diff] [blame] | 7034 | |
| 7035 | dprintk("NFS call secinfo %s\n", name->name); |
Weston Andros Adamson | 8b5bee2 | 2013-08-13 16:37:35 -0400 | [diff] [blame] | 7036 | |
| 7037 | nfs4_state_protect(NFS_SERVER(dir)->nfs_client, |
| 7038 | NFS_SP4_MACH_CRED_SECINFO, &clnt, &msg); |
| 7039 | |
Weston Andros Adamson | a5250de | 2013-09-03 15:18:49 -0400 | [diff] [blame] | 7040 | status = nfs4_call_sync(clnt, NFS_SERVER(dir), &msg, &args.seq_args, |
| 7041 | &res.seq_res, 0); |
Bryan Schumaker | 5a5ea0d | 2011-03-24 17:12:29 +0000 | [diff] [blame] | 7042 | dprintk("NFS reply secinfo: %d\n", status); |
Weston Andros Adamson | a5250de | 2013-09-03 15:18:49 -0400 | [diff] [blame] | 7043 | |
Weston Andros Adamson | 7cb852d | 2013-09-10 18:44:31 -0400 | [diff] [blame] | 7044 | if (cred) |
| 7045 | put_rpccred(cred); |
Weston Andros Adamson | a5250de | 2013-09-03 15:18:49 -0400 | [diff] [blame] | 7046 | |
Bryan Schumaker | 5a5ea0d | 2011-03-24 17:12:29 +0000 | [diff] [blame] | 7047 | return status; |
| 7048 | } |
| 7049 | |
Bryan Schumaker | 72de53e | 2012-04-27 13:27:40 -0400 | [diff] [blame] | 7050 | int nfs4_proc_secinfo(struct inode *dir, const struct qstr *name, |
| 7051 | struct nfs4_secinfo_flavors *flavors) |
Bryan Schumaker | 5a5ea0d | 2011-03-24 17:12:29 +0000 | [diff] [blame] | 7052 | { |
| 7053 | struct nfs4_exception exception = { }; |
| 7054 | int err; |
| 7055 | do { |
Weston Andros Adamson | a5250de | 2013-09-03 15:18:49 -0400 | [diff] [blame] | 7056 | err = -NFS4ERR_WRONGSEC; |
| 7057 | |
| 7058 | /* try to use integrity protection with machine cred */ |
| 7059 | if (_nfs4_is_integrity_protected(NFS_SERVER(dir)->nfs_client)) |
| 7060 | err = _nfs4_proc_secinfo(dir, name, flavors, true); |
| 7061 | |
| 7062 | /* |
| 7063 | * if unable to use integrity protection, or SECINFO with |
| 7064 | * integrity protection returns NFS4ERR_WRONGSEC (which is |
| 7065 | * disallowed by spec, but exists in deployed servers) use |
| 7066 | * the current filesystem's rpc_client and the user cred. |
| 7067 | */ |
| 7068 | if (err == -NFS4ERR_WRONGSEC) |
| 7069 | err = _nfs4_proc_secinfo(dir, name, flavors, false); |
| 7070 | |
Trond Myklebust | 078ea3d | 2013-08-12 16:45:55 -0400 | [diff] [blame] | 7071 | trace_nfs4_secinfo(dir, name, err); |
| 7072 | err = nfs4_handle_exception(NFS_SERVER(dir), err, |
Bryan Schumaker | 5a5ea0d | 2011-03-24 17:12:29 +0000 | [diff] [blame] | 7073 | &exception); |
| 7074 | } while (exception.retry); |
| 7075 | return err; |
| 7076 | } |
| 7077 | |
Andy Adamson | 557134a | 2009-04-01 09:21:53 -0400 | [diff] [blame] | 7078 | #ifdef CONFIG_NFS_V4_1 |
Benny Halevy | 99fe60d | 2009-04-01 09:22:29 -0400 | [diff] [blame] | 7079 | /* |
Andy Adamson | 357f54d | 2010-12-14 10:11:57 -0500 | [diff] [blame] | 7080 | * Check the exchange flags returned by the server for invalid flags, having |
| 7081 | * both PNFS and NON_PNFS flags set, and not having one of NON_PNFS, PNFS, or |
| 7082 | * DS flags set. |
| 7083 | */ |
| 7084 | static int nfs4_check_cl_exchange_flags(u32 flags) |
| 7085 | { |
| 7086 | if (flags & ~EXCHGID4_FLAG_MASK_R) |
| 7087 | goto out_inval; |
| 7088 | if ((flags & EXCHGID4_FLAG_USE_PNFS_MDS) && |
| 7089 | (flags & EXCHGID4_FLAG_USE_NON_PNFS)) |
| 7090 | goto out_inval; |
| 7091 | if (!(flags & (EXCHGID4_FLAG_MASK_PNFS))) |
| 7092 | goto out_inval; |
| 7093 | return NFS_OK; |
| 7094 | out_inval: |
| 7095 | return -NFS4ERR_INVAL; |
| 7096 | } |
| 7097 | |
Weston Andros Adamson | 78fe0f4 | 2011-05-31 19:05:47 -0400 | [diff] [blame] | 7098 | static bool |
Chuck Lever | 79d4e1f | 2012-05-21 22:44:31 -0400 | [diff] [blame] | 7099 | nfs41_same_server_scope(struct nfs41_server_scope *a, |
| 7100 | struct nfs41_server_scope *b) |
Weston Andros Adamson | 78fe0f4 | 2011-05-31 19:05:47 -0400 | [diff] [blame] | 7101 | { |
| 7102 | if (a->server_scope_sz == b->server_scope_sz && |
| 7103 | memcmp(a->server_scope, b->server_scope, a->server_scope_sz) == 0) |
| 7104 | return true; |
| 7105 | |
| 7106 | return false; |
| 7107 | } |
| 7108 | |
Andy Adamson | 02a95de | 2016-02-05 16:08:37 -0500 | [diff] [blame] | 7109 | static void |
| 7110 | nfs4_bind_one_conn_to_session_done(struct rpc_task *task, void *calldata) |
| 7111 | { |
| 7112 | } |
| 7113 | |
| 7114 | static const struct rpc_call_ops nfs4_bind_one_conn_to_session_ops = { |
| 7115 | .rpc_call_done = &nfs4_bind_one_conn_to_session_done, |
| 7116 | }; |
| 7117 | |
Andy Adamson | 357f54d | 2010-12-14 10:11:57 -0500 | [diff] [blame] | 7118 | /* |
Trond Myklebust | d9ddbf5 | 2016-01-30 22:58:24 -0500 | [diff] [blame] | 7119 | * nfs4_proc_bind_one_conn_to_session() |
Weston Andros Adamson | 7c44f1ae | 2012-05-24 13:22:50 -0400 | [diff] [blame] | 7120 | * |
| 7121 | * The 4.1 client currently uses the same TCP connection for the |
| 7122 | * fore and backchannel. |
| 7123 | */ |
Trond Myklebust | d9ddbf5 | 2016-01-30 22:58:24 -0500 | [diff] [blame] | 7124 | static |
| 7125 | int nfs4_proc_bind_one_conn_to_session(struct rpc_clnt *clnt, |
| 7126 | struct rpc_xprt *xprt, |
| 7127 | struct nfs_client *clp, |
| 7128 | struct rpc_cred *cred) |
Weston Andros Adamson | 7c44f1ae | 2012-05-24 13:22:50 -0400 | [diff] [blame] | 7129 | { |
| 7130 | int status; |
Trond Myklebust | 71a097c | 2015-02-18 09:27:18 -0800 | [diff] [blame] | 7131 | struct nfs41_bind_conn_to_session_args args = { |
| 7132 | .client = clp, |
| 7133 | .dir = NFS4_CDFC4_FORE_OR_BOTH, |
| 7134 | }; |
Weston Andros Adamson | 7c44f1ae | 2012-05-24 13:22:50 -0400 | [diff] [blame] | 7135 | struct nfs41_bind_conn_to_session_res res; |
| 7136 | struct rpc_message msg = { |
| 7137 | .rpc_proc = |
| 7138 | &nfs4_procedures[NFSPROC4_CLNT_BIND_CONN_TO_SESSION], |
Trond Myklebust | 71a097c | 2015-02-18 09:27:18 -0800 | [diff] [blame] | 7139 | .rpc_argp = &args, |
Weston Andros Adamson | 7c44f1ae | 2012-05-24 13:22:50 -0400 | [diff] [blame] | 7140 | .rpc_resp = &res, |
Trond Myklebust | 2cf047c | 2012-05-25 17:57:41 -0400 | [diff] [blame] | 7141 | .rpc_cred = cred, |
Weston Andros Adamson | 7c44f1ae | 2012-05-24 13:22:50 -0400 | [diff] [blame] | 7142 | }; |
Trond Myklebust | d9ddbf5 | 2016-01-30 22:58:24 -0500 | [diff] [blame] | 7143 | struct rpc_task_setup task_setup_data = { |
| 7144 | .rpc_client = clnt, |
| 7145 | .rpc_xprt = xprt, |
Andy Adamson | 02a95de | 2016-02-05 16:08:37 -0500 | [diff] [blame] | 7146 | .callback_ops = &nfs4_bind_one_conn_to_session_ops, |
Trond Myklebust | d9ddbf5 | 2016-01-30 22:58:24 -0500 | [diff] [blame] | 7147 | .rpc_message = &msg, |
| 7148 | .flags = RPC_TASK_TIMEOUT, |
| 7149 | }; |
| 7150 | struct rpc_task *task; |
Weston Andros Adamson | 7c44f1ae | 2012-05-24 13:22:50 -0400 | [diff] [blame] | 7151 | |
| 7152 | dprintk("--> %s\n", __func__); |
Weston Andros Adamson | 7c44f1ae | 2012-05-24 13:22:50 -0400 | [diff] [blame] | 7153 | |
Trond Myklebust | 71a097c | 2015-02-18 09:27:18 -0800 | [diff] [blame] | 7154 | nfs4_copy_sessionid(&args.sessionid, &clp->cl_session->sess_id); |
| 7155 | if (!(clp->cl_session->flags & SESSION4_BACK_CHAN)) |
| 7156 | args.dir = NFS4_CDFC4_FORE; |
Weston Andros Adamson | 7c44f1ae | 2012-05-24 13:22:50 -0400 | [diff] [blame] | 7157 | |
Trond Myklebust | d9ddbf5 | 2016-01-30 22:58:24 -0500 | [diff] [blame] | 7158 | /* Do not set the backchannel flag unless this is clnt->cl_xprt */ |
| 7159 | if (xprt != rcu_access_pointer(clnt->cl_xprt)) |
| 7160 | args.dir = NFS4_CDFC4_FORE; |
| 7161 | |
| 7162 | task = rpc_run_task(&task_setup_data); |
| 7163 | if (!IS_ERR(task)) { |
| 7164 | status = task->tk_status; |
| 7165 | rpc_put_task(task); |
| 7166 | } else |
| 7167 | status = PTR_ERR(task); |
Trond Myklebust | c6d01c6 | 2013-08-09 11:51:26 -0400 | [diff] [blame] | 7168 | trace_nfs4_bind_conn_to_session(clp, status); |
Weston Andros Adamson | 7c44f1ae | 2012-05-24 13:22:50 -0400 | [diff] [blame] | 7169 | if (status == 0) { |
Trond Myklebust | 71a097c | 2015-02-18 09:27:18 -0800 | [diff] [blame] | 7170 | if (memcmp(res.sessionid.data, |
Weston Andros Adamson | 7c44f1ae | 2012-05-24 13:22:50 -0400 | [diff] [blame] | 7171 | clp->cl_session->sess_id.data, NFS4_MAX_SESSIONID_LEN)) { |
| 7172 | dprintk("NFS: %s: Session ID mismatch\n", __func__); |
| 7173 | status = -EIO; |
Trond Myklebust | 71a097c | 2015-02-18 09:27:18 -0800 | [diff] [blame] | 7174 | goto out; |
Weston Andros Adamson | 7c44f1ae | 2012-05-24 13:22:50 -0400 | [diff] [blame] | 7175 | } |
Trond Myklebust | 71a097c | 2015-02-18 09:27:18 -0800 | [diff] [blame] | 7176 | if ((res.dir & args.dir) != res.dir || res.dir == 0) { |
Weston Andros Adamson | 7c44f1ae | 2012-05-24 13:22:50 -0400 | [diff] [blame] | 7177 | dprintk("NFS: %s: Unexpected direction from server\n", |
| 7178 | __func__); |
| 7179 | status = -EIO; |
Trond Myklebust | 71a097c | 2015-02-18 09:27:18 -0800 | [diff] [blame] | 7180 | goto out; |
Weston Andros Adamson | 7c44f1ae | 2012-05-24 13:22:50 -0400 | [diff] [blame] | 7181 | } |
Trond Myklebust | 71a097c | 2015-02-18 09:27:18 -0800 | [diff] [blame] | 7182 | if (res.use_conn_in_rdma_mode != args.use_conn_in_rdma_mode) { |
Weston Andros Adamson | 7c44f1ae | 2012-05-24 13:22:50 -0400 | [diff] [blame] | 7183 | dprintk("NFS: %s: Server returned RDMA mode = true\n", |
| 7184 | __func__); |
| 7185 | status = -EIO; |
Trond Myklebust | 71a097c | 2015-02-18 09:27:18 -0800 | [diff] [blame] | 7186 | goto out; |
Weston Andros Adamson | 7c44f1ae | 2012-05-24 13:22:50 -0400 | [diff] [blame] | 7187 | } |
| 7188 | } |
Weston Andros Adamson | 7c44f1ae | 2012-05-24 13:22:50 -0400 | [diff] [blame] | 7189 | out: |
| 7190 | dprintk("<-- %s status= %d\n", __func__, status); |
| 7191 | return status; |
| 7192 | } |
| 7193 | |
Trond Myklebust | d9ddbf5 | 2016-01-30 22:58:24 -0500 | [diff] [blame] | 7194 | struct rpc_bind_conn_calldata { |
| 7195 | struct nfs_client *clp; |
| 7196 | struct rpc_cred *cred; |
| 7197 | }; |
| 7198 | |
| 7199 | static int |
| 7200 | nfs4_proc_bind_conn_to_session_callback(struct rpc_clnt *clnt, |
| 7201 | struct rpc_xprt *xprt, |
| 7202 | void *calldata) |
| 7203 | { |
| 7204 | struct rpc_bind_conn_calldata *p = calldata; |
| 7205 | |
| 7206 | return nfs4_proc_bind_one_conn_to_session(clnt, xprt, p->clp, p->cred); |
| 7207 | } |
| 7208 | |
| 7209 | int nfs4_proc_bind_conn_to_session(struct nfs_client *clp, struct rpc_cred *cred) |
| 7210 | { |
| 7211 | struct rpc_bind_conn_calldata data = { |
| 7212 | .clp = clp, |
| 7213 | .cred = cred, |
| 7214 | }; |
| 7215 | return rpc_clnt_iterate_for_each_xprt(clp->cl_rpcclient, |
| 7216 | nfs4_proc_bind_conn_to_session_callback, &data); |
| 7217 | } |
| 7218 | |
Weston Andros Adamson | 7c44f1ae | 2012-05-24 13:22:50 -0400 | [diff] [blame] | 7219 | /* |
Weston Andros Adamson | fa94072 | 2013-08-13 16:37:34 -0400 | [diff] [blame] | 7220 | * Minimum set of SP4_MACH_CRED operations from RFC 5661 in the enforce map |
| 7221 | * and operations we'd like to see to enable certain features in the allow map |
Benny Halevy | 99fe60d | 2009-04-01 09:22:29 -0400 | [diff] [blame] | 7222 | */ |
Weston Andros Adamson | 2031cd1 | 2013-08-13 16:37:32 -0400 | [diff] [blame] | 7223 | static const struct nfs41_state_protection nfs4_sp4_mach_cred_request = { |
| 7224 | .how = SP4_MACH_CRED, |
| 7225 | .enforce.u.words = { |
| 7226 | [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) | |
| 7227 | 1 << (OP_EXCHANGE_ID - 32) | |
| 7228 | 1 << (OP_CREATE_SESSION - 32) | |
| 7229 | 1 << (OP_DESTROY_SESSION - 32) | |
| 7230 | 1 << (OP_DESTROY_CLIENTID - 32) |
Weston Andros Adamson | fa94072 | 2013-08-13 16:37:34 -0400 | [diff] [blame] | 7231 | }, |
| 7232 | .allow.u.words = { |
| 7233 | [0] = 1 << (OP_CLOSE) | |
Andrew Elble | 99ade3c | 2015-12-02 09:39:51 -0500 | [diff] [blame] | 7234 | 1 << (OP_OPEN_DOWNGRADE) | |
Weston Andros Adamson | a027962 | 2013-09-10 18:44:30 -0400 | [diff] [blame] | 7235 | 1 << (OP_LOCKU) | |
Andrew Elble | 99ade3c | 2015-12-02 09:39:51 -0500 | [diff] [blame] | 7236 | 1 << (OP_DELEGRETURN) | |
Weston Andros Adamson | a027962 | 2013-09-10 18:44:30 -0400 | [diff] [blame] | 7237 | 1 << (OP_COMMIT), |
Weston Andros Adamson | 8b5bee2 | 2013-08-13 16:37:35 -0400 | [diff] [blame] | 7238 | [1] = 1 << (OP_SECINFO - 32) | |
Weston Andros Adamson | 3787d50 | 2013-08-13 16:37:36 -0400 | [diff] [blame] | 7239 | 1 << (OP_SECINFO_NO_NAME - 32) | |
Andrew Elble | 99ade3c | 2015-12-02 09:39:51 -0500 | [diff] [blame] | 7240 | 1 << (OP_LAYOUTRETURN - 32) | |
Weston Andros Adamson | 3787d50 | 2013-08-13 16:37:36 -0400 | [diff] [blame] | 7241 | 1 << (OP_TEST_STATEID - 32) | |
Weston Andros Adamson | a027962 | 2013-09-10 18:44:30 -0400 | [diff] [blame] | 7242 | 1 << (OP_FREE_STATEID - 32) | |
| 7243 | 1 << (OP_WRITE - 32) |
Weston Andros Adamson | 2031cd1 | 2013-08-13 16:37:32 -0400 | [diff] [blame] | 7244 | } |
| 7245 | }; |
| 7246 | |
| 7247 | /* |
| 7248 | * Select the state protection mode for client `clp' given the server results |
| 7249 | * from exchange_id in `sp'. |
| 7250 | * |
| 7251 | * Returns 0 on success, negative errno otherwise. |
| 7252 | */ |
| 7253 | static int nfs4_sp4_select_mode(struct nfs_client *clp, |
| 7254 | struct nfs41_state_protection *sp) |
| 7255 | { |
| 7256 | static const u32 supported_enforce[NFS4_OP_MAP_NUM_WORDS] = { |
| 7257 | [1] = 1 << (OP_BIND_CONN_TO_SESSION - 32) | |
| 7258 | 1 << (OP_EXCHANGE_ID - 32) | |
| 7259 | 1 << (OP_CREATE_SESSION - 32) | |
| 7260 | 1 << (OP_DESTROY_SESSION - 32) | |
| 7261 | 1 << (OP_DESTROY_CLIENTID - 32) |
| 7262 | }; |
| 7263 | unsigned int i; |
| 7264 | |
| 7265 | if (sp->how == SP4_MACH_CRED) { |
| 7266 | /* Print state protect result */ |
| 7267 | dfprintk(MOUNT, "Server SP4_MACH_CRED support:\n"); |
| 7268 | for (i = 0; i <= LAST_NFS4_OP; i++) { |
| 7269 | if (test_bit(i, sp->enforce.u.longs)) |
| 7270 | dfprintk(MOUNT, " enforce op %d\n", i); |
| 7271 | if (test_bit(i, sp->allow.u.longs)) |
| 7272 | dfprintk(MOUNT, " allow op %d\n", i); |
| 7273 | } |
| 7274 | |
| 7275 | /* make sure nothing is on enforce list that isn't supported */ |
| 7276 | for (i = 0; i < NFS4_OP_MAP_NUM_WORDS; i++) { |
| 7277 | if (sp->enforce.u.words[i] & ~supported_enforce[i]) { |
| 7278 | dfprintk(MOUNT, "sp4_mach_cred: disabled\n"); |
| 7279 | return -EINVAL; |
| 7280 | } |
| 7281 | } |
| 7282 | |
| 7283 | /* |
| 7284 | * Minimal mode - state operations are allowed to use machine |
| 7285 | * credential. Note this already happens by default, so the |
| 7286 | * client doesn't have to do anything more than the negotiation. |
| 7287 | * |
| 7288 | * NOTE: we don't care if EXCHANGE_ID is in the list - |
| 7289 | * we're already using the machine cred for exchange_id |
| 7290 | * and will never use a different cred. |
| 7291 | */ |
| 7292 | if (test_bit(OP_BIND_CONN_TO_SESSION, sp->enforce.u.longs) && |
| 7293 | test_bit(OP_CREATE_SESSION, sp->enforce.u.longs) && |
| 7294 | test_bit(OP_DESTROY_SESSION, sp->enforce.u.longs) && |
| 7295 | test_bit(OP_DESTROY_CLIENTID, sp->enforce.u.longs)) { |
| 7296 | dfprintk(MOUNT, "sp4_mach_cred:\n"); |
| 7297 | dfprintk(MOUNT, " minimal mode enabled\n"); |
| 7298 | set_bit(NFS_SP4_MACH_CRED_MINIMAL, &clp->cl_sp4_flags); |
| 7299 | } else { |
| 7300 | dfprintk(MOUNT, "sp4_mach_cred: disabled\n"); |
| 7301 | return -EINVAL; |
| 7302 | } |
Weston Andros Adamson | fa94072 | 2013-08-13 16:37:34 -0400 | [diff] [blame] | 7303 | |
| 7304 | if (test_bit(OP_CLOSE, sp->allow.u.longs) && |
Andrew Elble | 99ade3c | 2015-12-02 09:39:51 -0500 | [diff] [blame] | 7305 | test_bit(OP_OPEN_DOWNGRADE, sp->allow.u.longs) && |
| 7306 | test_bit(OP_DELEGRETURN, sp->allow.u.longs) && |
Weston Andros Adamson | fa94072 | 2013-08-13 16:37:34 -0400 | [diff] [blame] | 7307 | test_bit(OP_LOCKU, sp->allow.u.longs)) { |
| 7308 | dfprintk(MOUNT, " cleanup mode enabled\n"); |
| 7309 | set_bit(NFS_SP4_MACH_CRED_CLEANUP, &clp->cl_sp4_flags); |
| 7310 | } |
Weston Andros Adamson | 8b5bee2 | 2013-08-13 16:37:35 -0400 | [diff] [blame] | 7311 | |
Andrew Elble | 99ade3c | 2015-12-02 09:39:51 -0500 | [diff] [blame] | 7312 | if (test_bit(OP_LAYOUTRETURN, sp->allow.u.longs)) { |
| 7313 | dfprintk(MOUNT, " pnfs cleanup mode enabled\n"); |
| 7314 | set_bit(NFS_SP4_MACH_CRED_PNFS_CLEANUP, |
| 7315 | &clp->cl_sp4_flags); |
| 7316 | } |
| 7317 | |
Weston Andros Adamson | 8b5bee2 | 2013-08-13 16:37:35 -0400 | [diff] [blame] | 7318 | if (test_bit(OP_SECINFO, sp->allow.u.longs) && |
| 7319 | test_bit(OP_SECINFO_NO_NAME, sp->allow.u.longs)) { |
| 7320 | dfprintk(MOUNT, " secinfo mode enabled\n"); |
| 7321 | set_bit(NFS_SP4_MACH_CRED_SECINFO, &clp->cl_sp4_flags); |
| 7322 | } |
Weston Andros Adamson | 3787d50 | 2013-08-13 16:37:36 -0400 | [diff] [blame] | 7323 | |
| 7324 | if (test_bit(OP_TEST_STATEID, sp->allow.u.longs) && |
| 7325 | test_bit(OP_FREE_STATEID, sp->allow.u.longs)) { |
| 7326 | dfprintk(MOUNT, " stateid mode enabled\n"); |
| 7327 | set_bit(NFS_SP4_MACH_CRED_STATEID, &clp->cl_sp4_flags); |
| 7328 | } |
Weston Andros Adamson | 8c21c62 | 2013-08-13 16:37:37 -0400 | [diff] [blame] | 7329 | |
| 7330 | if (test_bit(OP_WRITE, sp->allow.u.longs)) { |
| 7331 | dfprintk(MOUNT, " write mode enabled\n"); |
| 7332 | set_bit(NFS_SP4_MACH_CRED_WRITE, &clp->cl_sp4_flags); |
| 7333 | } |
| 7334 | |
| 7335 | if (test_bit(OP_COMMIT, sp->allow.u.longs)) { |
| 7336 | dfprintk(MOUNT, " commit mode enabled\n"); |
| 7337 | set_bit(NFS_SP4_MACH_CRED_COMMIT, &clp->cl_sp4_flags); |
| 7338 | } |
Weston Andros Adamson | 2031cd1 | 2013-08-13 16:37:32 -0400 | [diff] [blame] | 7339 | } |
| 7340 | |
| 7341 | return 0; |
| 7342 | } |
| 7343 | |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7344 | struct nfs41_exchange_id_data { |
| 7345 | struct nfs41_exchange_id_res res; |
| 7346 | struct nfs41_exchange_id_args args; |
Andy Adamson | ad0849a | 2016-09-09 09:22:28 -0400 | [diff] [blame] | 7347 | struct rpc_xprt *xprt; |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7348 | int rpc_status; |
| 7349 | }; |
| 7350 | |
| 7351 | static void nfs4_exchange_id_done(struct rpc_task *task, void *data) |
| 7352 | { |
| 7353 | struct nfs41_exchange_id_data *cdata = |
| 7354 | (struct nfs41_exchange_id_data *)data; |
| 7355 | struct nfs_client *clp = cdata->args.client; |
| 7356 | int status = task->tk_status; |
| 7357 | |
| 7358 | trace_nfs4_exchange_id(clp, status); |
| 7359 | |
| 7360 | if (status == 0) |
| 7361 | status = nfs4_check_cl_exchange_flags(cdata->res.flags); |
Andy Adamson | ad0849a | 2016-09-09 09:22:28 -0400 | [diff] [blame] | 7362 | |
| 7363 | if (cdata->xprt && status == 0) { |
| 7364 | status = nfs4_detect_session_trunking(clp, &cdata->res, |
| 7365 | cdata->xprt); |
| 7366 | goto out; |
| 7367 | } |
| 7368 | |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7369 | if (status == 0) |
| 7370 | status = nfs4_sp4_select_mode(clp, &cdata->res.state_protect); |
| 7371 | |
| 7372 | if (status == 0) { |
| 7373 | clp->cl_clientid = cdata->res.clientid; |
| 7374 | clp->cl_exchange_flags = cdata->res.flags; |
| 7375 | /* Client ID is not confirmed */ |
| 7376 | if (!(cdata->res.flags & EXCHGID4_FLAG_CONFIRMED_R)) { |
| 7377 | clear_bit(NFS4_SESSION_ESTABLISHED, |
| 7378 | &clp->cl_session->session_state); |
| 7379 | clp->cl_seqid = cdata->res.seqid; |
| 7380 | } |
| 7381 | |
| 7382 | kfree(clp->cl_serverowner); |
| 7383 | clp->cl_serverowner = cdata->res.server_owner; |
| 7384 | cdata->res.server_owner = NULL; |
| 7385 | |
| 7386 | /* use the most recent implementation id */ |
| 7387 | kfree(clp->cl_implid); |
| 7388 | clp->cl_implid = cdata->res.impl_id; |
| 7389 | cdata->res.impl_id = NULL; |
| 7390 | |
| 7391 | if (clp->cl_serverscope != NULL && |
| 7392 | !nfs41_same_server_scope(clp->cl_serverscope, |
| 7393 | cdata->res.server_scope)) { |
| 7394 | dprintk("%s: server_scope mismatch detected\n", |
| 7395 | __func__); |
| 7396 | set_bit(NFS4CLNT_SERVER_SCOPE_MISMATCH, &clp->cl_state); |
| 7397 | kfree(clp->cl_serverscope); |
| 7398 | clp->cl_serverscope = NULL; |
| 7399 | } |
| 7400 | |
| 7401 | if (clp->cl_serverscope == NULL) { |
| 7402 | clp->cl_serverscope = cdata->res.server_scope; |
| 7403 | cdata->res.server_scope = NULL; |
| 7404 | } |
Andy Adamson | ad0849a | 2016-09-09 09:22:28 -0400 | [diff] [blame] | 7405 | /* Save the EXCHANGE_ID verifier session trunk tests */ |
| 7406 | memcpy(clp->cl_confirm.data, cdata->args.verifier->data, |
| 7407 | sizeof(clp->cl_confirm.data)); |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7408 | } |
Andy Adamson | ad0849a | 2016-09-09 09:22:28 -0400 | [diff] [blame] | 7409 | out: |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7410 | cdata->rpc_status = status; |
Andy Adamson | ad0849a | 2016-09-09 09:22:28 -0400 | [diff] [blame] | 7411 | return; |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7412 | } |
| 7413 | |
| 7414 | static void nfs4_exchange_id_release(void *data) |
| 7415 | { |
| 7416 | struct nfs41_exchange_id_data *cdata = |
| 7417 | (struct nfs41_exchange_id_data *)data; |
| 7418 | |
| 7419 | nfs_put_client(cdata->args.client); |
Andy Adamson | ad0849a | 2016-09-09 09:22:28 -0400 | [diff] [blame] | 7420 | if (cdata->xprt) { |
| 7421 | xprt_put(cdata->xprt); |
| 7422 | rpc_clnt_xprt_switch_put(cdata->args.client->cl_rpcclient); |
| 7423 | } |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7424 | kfree(cdata->res.impl_id); |
| 7425 | kfree(cdata->res.server_scope); |
| 7426 | kfree(cdata->res.server_owner); |
| 7427 | kfree(cdata); |
| 7428 | } |
| 7429 | |
| 7430 | static const struct rpc_call_ops nfs4_exchange_id_call_ops = { |
| 7431 | .rpc_call_done = nfs4_exchange_id_done, |
| 7432 | .rpc_release = nfs4_exchange_id_release, |
| 7433 | }; |
| 7434 | |
Weston Andros Adamson | 2031cd1 | 2013-08-13 16:37:32 -0400 | [diff] [blame] | 7435 | /* |
| 7436 | * _nfs4_proc_exchange_id() |
| 7437 | * |
| 7438 | * Wrapper for EXCHANGE_ID operation. |
| 7439 | */ |
| 7440 | static int _nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred, |
Andy Adamson | ad0849a | 2016-09-09 09:22:28 -0400 | [diff] [blame] | 7441 | u32 sp4_how, struct rpc_xprt *xprt) |
Benny Halevy | 99fe60d | 2009-04-01 09:22:29 -0400 | [diff] [blame] | 7442 | { |
| 7443 | nfs4_verifier verifier; |
Benny Halevy | 99fe60d | 2009-04-01 09:22:29 -0400 | [diff] [blame] | 7444 | struct rpc_message msg = { |
| 7445 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_EXCHANGE_ID], |
Benny Halevy | 99fe60d | 2009-04-01 09:22:29 -0400 | [diff] [blame] | 7446 | .rpc_cred = cred, |
| 7447 | }; |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7448 | struct rpc_task_setup task_setup_data = { |
| 7449 | .rpc_client = clp->cl_rpcclient, |
| 7450 | .callback_ops = &nfs4_exchange_id_call_ops, |
| 7451 | .rpc_message = &msg, |
| 7452 | .flags = RPC_TASK_ASYNC | RPC_TASK_TIMEOUT, |
| 7453 | }; |
| 7454 | struct nfs41_exchange_id_data *calldata; |
| 7455 | struct rpc_task *task; |
| 7456 | int status = -EIO; |
| 7457 | |
| 7458 | if (!atomic_inc_not_zero(&clp->cl_count)) |
| 7459 | goto out; |
| 7460 | |
| 7461 | status = -ENOMEM; |
| 7462 | calldata = kzalloc(sizeof(*calldata), GFP_NOFS); |
| 7463 | if (!calldata) |
| 7464 | goto out; |
Benny Halevy | 99fe60d | 2009-04-01 09:22:29 -0400 | [diff] [blame] | 7465 | |
Andy Adamson | ad0849a | 2016-09-09 09:22:28 -0400 | [diff] [blame] | 7466 | if (!xprt) |
| 7467 | nfs4_init_boot_verifier(clp, &verifier); |
Jeff Layton | 873e385 | 2015-06-09 19:44:00 -0400 | [diff] [blame] | 7468 | |
| 7469 | status = nfs4_init_uniform_client_string(clp); |
| 7470 | if (status) |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7471 | goto out_calldata; |
Jeff Layton | 3a6bb73 | 2015-06-09 19:43:57 -0400 | [diff] [blame] | 7472 | |
| 7473 | dprintk("NFS call exchange_id auth=%s, '%s'\n", |
Chuck Lever | 6bbb4ae | 2012-07-11 16:30:59 -0400 | [diff] [blame] | 7474 | clp->cl_rpcclient->cl_auth->au_ops->au_name, |
Jeff Layton | 3a6bb73 | 2015-06-09 19:43:57 -0400 | [diff] [blame] | 7475 | clp->cl_owner_id); |
Benny Halevy | 99fe60d | 2009-04-01 09:22:29 -0400 | [diff] [blame] | 7476 | |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7477 | calldata->res.server_owner = kzalloc(sizeof(struct nfs41_server_owner), |
| 7478 | GFP_NOFS); |
| 7479 | status = -ENOMEM; |
| 7480 | if (unlikely(calldata->res.server_owner == NULL)) |
| 7481 | goto out_calldata; |
Weston Andros Adamson | 78fe0f4 | 2011-05-31 19:05:47 -0400 | [diff] [blame] | 7482 | |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7483 | calldata->res.server_scope = kzalloc(sizeof(struct nfs41_server_scope), |
Trond Myklebust | bbafffd | 2012-05-24 16:31:39 -0400 | [diff] [blame] | 7484 | GFP_NOFS); |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7485 | if (unlikely(calldata->res.server_scope == NULL)) |
Chuck Lever | acdeb69 | 2012-05-21 22:46:16 -0400 | [diff] [blame] | 7486 | goto out_server_owner; |
Benny Halevy | 99fe60d | 2009-04-01 09:22:29 -0400 | [diff] [blame] | 7487 | |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7488 | calldata->res.impl_id = kzalloc(sizeof(struct nfs41_impl_id), GFP_NOFS); |
| 7489 | if (unlikely(calldata->res.impl_id == NULL)) |
Weston Andros Adamson | 7d2ed9a | 2012-02-17 15:20:26 -0500 | [diff] [blame] | 7490 | goto out_server_scope; |
Weston Andros Adamson | 7d2ed9a | 2012-02-17 15:20:26 -0500 | [diff] [blame] | 7491 | |
Weston Andros Adamson | 2031cd1 | 2013-08-13 16:37:32 -0400 | [diff] [blame] | 7492 | switch (sp4_how) { |
| 7493 | case SP4_NONE: |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7494 | calldata->args.state_protect.how = SP4_NONE; |
Weston Andros Adamson | 2031cd1 | 2013-08-13 16:37:32 -0400 | [diff] [blame] | 7495 | break; |
| 7496 | |
| 7497 | case SP4_MACH_CRED: |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7498 | calldata->args.state_protect = nfs4_sp4_mach_cred_request; |
Weston Andros Adamson | 2031cd1 | 2013-08-13 16:37:32 -0400 | [diff] [blame] | 7499 | break; |
| 7500 | |
| 7501 | default: |
| 7502 | /* unsupported! */ |
| 7503 | WARN_ON_ONCE(1); |
| 7504 | status = -EINVAL; |
Kinglong Mee | 6b55970 | 2015-07-01 11:54:53 +0800 | [diff] [blame] | 7505 | goto out_impl_id; |
Weston Andros Adamson | 2031cd1 | 2013-08-13 16:37:32 -0400 | [diff] [blame] | 7506 | } |
Andy Adamson | ad0849a | 2016-09-09 09:22:28 -0400 | [diff] [blame] | 7507 | if (xprt) { |
| 7508 | calldata->xprt = xprt; |
| 7509 | task_setup_data.rpc_xprt = xprt; |
| 7510 | task_setup_data.flags = |
| 7511 | RPC_TASK_SOFT|RPC_TASK_SOFTCONN|RPC_TASK_ASYNC; |
| 7512 | calldata->args.verifier = &clp->cl_confirm; |
| 7513 | } else { |
| 7514 | calldata->args.verifier = &verifier; |
| 7515 | } |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7516 | calldata->args.client = clp; |
| 7517 | #ifdef CONFIG_NFS_V4_1_MIGRATION |
| 7518 | calldata->args.flags = EXCHGID4_FLAG_SUPP_MOVED_REFER | |
| 7519 | EXCHGID4_FLAG_BIND_PRINC_STATEID | |
| 7520 | EXCHGID4_FLAG_SUPP_MOVED_MIGR, |
| 7521 | #else |
| 7522 | calldata->args.flags = EXCHGID4_FLAG_SUPP_MOVED_REFER | |
| 7523 | EXCHGID4_FLAG_BIND_PRINC_STATEID, |
| 7524 | #endif |
| 7525 | msg.rpc_argp = &calldata->args; |
| 7526 | msg.rpc_resp = &calldata->res; |
| 7527 | task_setup_data.callback_data = calldata; |
Weston Andros Adamson | 78fe0f4 | 2011-05-31 19:05:47 -0400 | [diff] [blame] | 7528 | |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7529 | task = rpc_run_task(&task_setup_data); |
| 7530 | if (IS_ERR(task)) { |
| 7531 | status = PTR_ERR(task); |
| 7532 | goto out_impl_id; |
Kinglong Mee | 6b55970 | 2015-07-01 11:54:53 +0800 | [diff] [blame] | 7533 | } |
Weston Andros Adamson | 7d2ed9a | 2012-02-17 15:20:26 -0500 | [diff] [blame] | 7534 | |
Andy Adamson | ad0849a | 2016-09-09 09:22:28 -0400 | [diff] [blame] | 7535 | if (!xprt) { |
| 7536 | status = rpc_wait_for_completion_task(task); |
| 7537 | if (!status) |
| 7538 | status = calldata->rpc_status; |
| 7539 | } else /* session trunking test */ |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7540 | status = calldata->rpc_status; |
Andy Adamson | ad0849a | 2016-09-09 09:22:28 -0400 | [diff] [blame] | 7541 | |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7542 | rpc_put_task(task); |
Weston Andros Adamson | abe9a6d | 2012-02-16 11:17:05 -0500 | [diff] [blame] | 7543 | out: |
Chuck Lever | 177313f | 2012-05-21 22:44:58 -0400 | [diff] [blame] | 7544 | if (clp->cl_implid != NULL) |
Chuck Lever | 6bbb4ae | 2012-07-11 16:30:59 -0400 | [diff] [blame] | 7545 | dprintk("NFS reply exchange_id: Server Implementation ID: " |
Weston Andros Adamson | 7d2ed9a | 2012-02-17 15:20:26 -0500 | [diff] [blame] | 7546 | "domain: %s, name: %s, date: %llu,%u\n", |
Chuck Lever | 6bbb4ae | 2012-07-11 16:30:59 -0400 | [diff] [blame] | 7547 | clp->cl_implid->domain, clp->cl_implid->name, |
Chuck Lever | 5915554 | 2012-05-21 22:44:41 -0400 | [diff] [blame] | 7548 | clp->cl_implid->date.seconds, |
| 7549 | clp->cl_implid->date.nseconds); |
Chuck Lever | 6bbb4ae | 2012-07-11 16:30:59 -0400 | [diff] [blame] | 7550 | dprintk("NFS reply exchange_id: %d\n", status); |
Benny Halevy | 99fe60d | 2009-04-01 09:22:29 -0400 | [diff] [blame] | 7551 | return status; |
Andy Adamson | 8d89bd7 | 2016-09-09 09:22:18 -0400 | [diff] [blame] | 7552 | |
| 7553 | out_impl_id: |
| 7554 | kfree(calldata->res.impl_id); |
| 7555 | out_server_scope: |
| 7556 | kfree(calldata->res.server_scope); |
| 7557 | out_server_owner: |
| 7558 | kfree(calldata->res.server_owner); |
| 7559 | out_calldata: |
| 7560 | kfree(calldata); |
| 7561 | goto out; |
Benny Halevy | 99fe60d | 2009-04-01 09:22:29 -0400 | [diff] [blame] | 7562 | } |
| 7563 | |
Weston Andros Adamson | 2031cd1 | 2013-08-13 16:37:32 -0400 | [diff] [blame] | 7564 | /* |
| 7565 | * nfs4_proc_exchange_id() |
| 7566 | * |
| 7567 | * Returns zero, a negative errno, or a negative NFS4ERR status code. |
| 7568 | * |
| 7569 | * Since the clientid has expired, all compounds using sessions |
| 7570 | * associated with the stale clientid will be returning |
| 7571 | * NFS4ERR_BADSESSION in the sequence operation, and will therefore |
| 7572 | * be in some phase of session reset. |
| 7573 | * |
| 7574 | * Will attempt to negotiate SP4_MACH_CRED if krb5i / krb5p auth is used. |
| 7575 | */ |
| 7576 | int nfs4_proc_exchange_id(struct nfs_client *clp, struct rpc_cred *cred) |
| 7577 | { |
| 7578 | rpc_authflavor_t authflavor = clp->cl_rpcclient->cl_auth->au_flavor; |
| 7579 | int status; |
| 7580 | |
| 7581 | /* try SP4_MACH_CRED if krb5i/p */ |
| 7582 | if (authflavor == RPC_AUTH_GSS_KRB5I || |
| 7583 | authflavor == RPC_AUTH_GSS_KRB5P) { |
Andy Adamson | ad0849a | 2016-09-09 09:22:28 -0400 | [diff] [blame] | 7584 | status = _nfs4_proc_exchange_id(clp, cred, SP4_MACH_CRED, NULL); |
Weston Andros Adamson | 2031cd1 | 2013-08-13 16:37:32 -0400 | [diff] [blame] | 7585 | if (!status) |
| 7586 | return 0; |
| 7587 | } |
| 7588 | |
| 7589 | /* try SP4_NONE */ |
Andy Adamson | ad0849a | 2016-09-09 09:22:28 -0400 | [diff] [blame] | 7590 | return _nfs4_proc_exchange_id(clp, cred, SP4_NONE, NULL); |
Weston Andros Adamson | 2031cd1 | 2013-08-13 16:37:32 -0400 | [diff] [blame] | 7591 | } |
| 7592 | |
Andy Adamson | 04fa2c6 | 2016-09-09 09:22:29 -0400 | [diff] [blame] | 7593 | /** |
| 7594 | * nfs4_test_session_trunk |
| 7595 | * |
| 7596 | * This is an add_xprt_test() test function called from |
| 7597 | * rpc_clnt_setup_test_and_add_xprt. |
| 7598 | * |
| 7599 | * The rpc_xprt_switch is referrenced by rpc_clnt_setup_test_and_add_xprt |
| 7600 | * and is dereferrenced in nfs4_exchange_id_release |
| 7601 | * |
| 7602 | * Upon success, add the new transport to the rpc_clnt |
| 7603 | * |
| 7604 | * @clnt: struct rpc_clnt to get new transport |
| 7605 | * @xprt: the rpc_xprt to test |
| 7606 | * @data: call data for _nfs4_proc_exchange_id. |
| 7607 | */ |
| 7608 | int nfs4_test_session_trunk(struct rpc_clnt *clnt, struct rpc_xprt *xprt, |
| 7609 | void *data) |
| 7610 | { |
| 7611 | struct nfs4_add_xprt_data *adata = (struct nfs4_add_xprt_data *)data; |
| 7612 | u32 sp4_how; |
| 7613 | |
| 7614 | dprintk("--> %s try %s\n", __func__, |
| 7615 | xprt->address_strings[RPC_DISPLAY_ADDR]); |
| 7616 | |
| 7617 | sp4_how = (adata->clp->cl_sp4_flags == 0 ? SP4_NONE : SP4_MACH_CRED); |
| 7618 | |
| 7619 | /* Test connection for session trunking. Async exchange_id call */ |
| 7620 | return _nfs4_proc_exchange_id(adata->clp, adata->cred, sp4_how, xprt); |
| 7621 | } |
| 7622 | EXPORT_SYMBOL_GPL(nfs4_test_session_trunk); |
| 7623 | |
Trond Myklebust | 6624553 | 2012-05-25 17:18:09 -0400 | [diff] [blame] | 7624 | static int _nfs4_proc_destroy_clientid(struct nfs_client *clp, |
| 7625 | struct rpc_cred *cred) |
| 7626 | { |
| 7627 | struct rpc_message msg = { |
| 7628 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_CLIENTID], |
| 7629 | .rpc_argp = clp, |
| 7630 | .rpc_cred = cred, |
| 7631 | }; |
| 7632 | int status; |
| 7633 | |
| 7634 | status = rpc_call_sync(clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT); |
Trond Myklebust | c6d01c6 | 2013-08-09 11:51:26 -0400 | [diff] [blame] | 7635 | trace_nfs4_destroy_clientid(clp, status); |
Trond Myklebust | 6624553 | 2012-05-25 17:18:09 -0400 | [diff] [blame] | 7636 | if (status) |
Trond Myklebust | 02c6752 | 2012-06-07 13:45:53 -0400 | [diff] [blame] | 7637 | dprintk("NFS: Got error %d from the server %s on " |
Trond Myklebust | 6624553 | 2012-05-25 17:18:09 -0400 | [diff] [blame] | 7638 | "DESTROY_CLIENTID.", status, clp->cl_hostname); |
| 7639 | return status; |
| 7640 | } |
| 7641 | |
| 7642 | static int nfs4_proc_destroy_clientid(struct nfs_client *clp, |
| 7643 | struct rpc_cred *cred) |
| 7644 | { |
| 7645 | unsigned int loop; |
| 7646 | int ret; |
| 7647 | |
| 7648 | for (loop = NFS4_MAX_LOOP_ON_RECOVER; loop != 0; loop--) { |
| 7649 | ret = _nfs4_proc_destroy_clientid(clp, cred); |
| 7650 | switch (ret) { |
| 7651 | case -NFS4ERR_DELAY: |
| 7652 | case -NFS4ERR_CLIENTID_BUSY: |
| 7653 | ssleep(1); |
| 7654 | break; |
| 7655 | default: |
| 7656 | return ret; |
| 7657 | } |
| 7658 | } |
| 7659 | return 0; |
| 7660 | } |
| 7661 | |
| 7662 | int nfs4_destroy_clientid(struct nfs_client *clp) |
| 7663 | { |
| 7664 | struct rpc_cred *cred; |
| 7665 | int ret = 0; |
| 7666 | |
| 7667 | if (clp->cl_mvops->minor_version < 1) |
| 7668 | goto out; |
| 7669 | if (clp->cl_exchange_flags == 0) |
| 7670 | goto out; |
Chuck Lever | 05f4c35 | 2012-09-14 17:24:32 -0400 | [diff] [blame] | 7671 | if (clp->cl_preserve_clid) |
| 7672 | goto out; |
Chuck Lever | 73d8bde | 2013-07-24 12:28:37 -0400 | [diff] [blame] | 7673 | cred = nfs4_get_clid_cred(clp); |
Trond Myklebust | 6624553 | 2012-05-25 17:18:09 -0400 | [diff] [blame] | 7674 | ret = nfs4_proc_destroy_clientid(clp, cred); |
| 7675 | if (cred) |
| 7676 | put_rpccred(cred); |
| 7677 | switch (ret) { |
| 7678 | case 0: |
| 7679 | case -NFS4ERR_STALE_CLIENTID: |
| 7680 | clp->cl_exchange_flags = 0; |
| 7681 | } |
| 7682 | out: |
| 7683 | return ret; |
| 7684 | } |
| 7685 | |
Andy Adamson | 2050f0c | 2009-04-01 09:22:30 -0400 | [diff] [blame] | 7686 | struct nfs4_get_lease_time_data { |
| 7687 | struct nfs4_get_lease_time_args *args; |
| 7688 | struct nfs4_get_lease_time_res *res; |
| 7689 | struct nfs_client *clp; |
| 7690 | }; |
| 7691 | |
| 7692 | static void nfs4_get_lease_time_prepare(struct rpc_task *task, |
| 7693 | void *calldata) |
| 7694 | { |
Andy Adamson | 2050f0c | 2009-04-01 09:22:30 -0400 | [diff] [blame] | 7695 | struct nfs4_get_lease_time_data *data = |
| 7696 | (struct nfs4_get_lease_time_data *)calldata; |
| 7697 | |
| 7698 | dprintk("--> %s\n", __func__); |
| 7699 | /* just setup sequence, do not trigger session recovery |
| 7700 | since we're invoked within one */ |
Trond Myklebust | d9afbd1 | 2012-10-22 20:28:44 -0400 | [diff] [blame] | 7701 | nfs41_setup_sequence(data->clp->cl_session, |
| 7702 | &data->args->la_seq_args, |
| 7703 | &data->res->lr_seq_res, |
| 7704 | task); |
Andy Adamson | 2050f0c | 2009-04-01 09:22:30 -0400 | [diff] [blame] | 7705 | dprintk("<-- %s\n", __func__); |
| 7706 | } |
| 7707 | |
| 7708 | /* |
| 7709 | * Called from nfs4_state_manager thread for session setup, so don't recover |
| 7710 | * from sequence operation or clientid errors. |
| 7711 | */ |
| 7712 | static void nfs4_get_lease_time_done(struct rpc_task *task, void *calldata) |
| 7713 | { |
| 7714 | struct nfs4_get_lease_time_data *data = |
| 7715 | (struct nfs4_get_lease_time_data *)calldata; |
| 7716 | |
| 7717 | dprintk("--> %s\n", __func__); |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 7718 | if (!nfs41_sequence_done(task, &data->res->lr_seq_res)) |
| 7719 | return; |
Andy Adamson | 2050f0c | 2009-04-01 09:22:30 -0400 | [diff] [blame] | 7720 | switch (task->tk_status) { |
| 7721 | case -NFS4ERR_DELAY: |
| 7722 | case -NFS4ERR_GRACE: |
| 7723 | dprintk("%s Retry: tk_status %d\n", __func__, task->tk_status); |
| 7724 | rpc_delay(task, NFS4_POLL_RETRY_MIN); |
| 7725 | task->tk_status = 0; |
Andy Adamson | a8a4ae3 | 2011-05-03 13:43:03 -0400 | [diff] [blame] | 7726 | /* fall through */ |
| 7727 | case -NFS4ERR_RETRY_UNCACHED_REP: |
Trond Myklebust | d00c5d4 | 2011-10-19 12:17:29 -0700 | [diff] [blame] | 7728 | rpc_restart_call_prepare(task); |
Andy Adamson | 2050f0c | 2009-04-01 09:22:30 -0400 | [diff] [blame] | 7729 | return; |
| 7730 | } |
Andy Adamson | 2050f0c | 2009-04-01 09:22:30 -0400 | [diff] [blame] | 7731 | dprintk("<-- %s\n", __func__); |
| 7732 | } |
| 7733 | |
Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame] | 7734 | static const struct rpc_call_ops nfs4_get_lease_time_ops = { |
Andy Adamson | 2050f0c | 2009-04-01 09:22:30 -0400 | [diff] [blame] | 7735 | .rpc_call_prepare = nfs4_get_lease_time_prepare, |
| 7736 | .rpc_call_done = nfs4_get_lease_time_done, |
| 7737 | }; |
| 7738 | |
| 7739 | int nfs4_proc_get_lease_time(struct nfs_client *clp, struct nfs_fsinfo *fsinfo) |
| 7740 | { |
| 7741 | struct rpc_task *task; |
| 7742 | struct nfs4_get_lease_time_args args; |
| 7743 | struct nfs4_get_lease_time_res res = { |
| 7744 | .lr_fsinfo = fsinfo, |
| 7745 | }; |
| 7746 | struct nfs4_get_lease_time_data data = { |
| 7747 | .args = &args, |
| 7748 | .res = &res, |
| 7749 | .clp = clp, |
| 7750 | }; |
| 7751 | struct rpc_message msg = { |
| 7752 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GET_LEASE_TIME], |
| 7753 | .rpc_argp = &args, |
| 7754 | .rpc_resp = &res, |
| 7755 | }; |
| 7756 | struct rpc_task_setup task_setup = { |
| 7757 | .rpc_client = clp->cl_rpcclient, |
| 7758 | .rpc_message = &msg, |
| 7759 | .callback_ops = &nfs4_get_lease_time_ops, |
Trond Myklebust | 1bd714f | 2011-04-24 14:29:33 -0400 | [diff] [blame] | 7760 | .callback_data = &data, |
| 7761 | .flags = RPC_TASK_TIMEOUT, |
Andy Adamson | 2050f0c | 2009-04-01 09:22:30 -0400 | [diff] [blame] | 7762 | }; |
| 7763 | int status; |
| 7764 | |
Chuck Lever | a9c92d6 | 2013-08-09 12:48:18 -0400 | [diff] [blame] | 7765 | nfs4_init_sequence(&args.la_seq_args, &res.lr_seq_res, 0); |
Trond Myklebust | 8fe72ba | 2012-10-29 19:02:20 -0400 | [diff] [blame] | 7766 | nfs4_set_sequence_privileged(&args.la_seq_args); |
Andy Adamson | 2050f0c | 2009-04-01 09:22:30 -0400 | [diff] [blame] | 7767 | dprintk("--> %s\n", __func__); |
| 7768 | task = rpc_run_task(&task_setup); |
| 7769 | |
| 7770 | if (IS_ERR(task)) |
| 7771 | status = PTR_ERR(task); |
| 7772 | else { |
| 7773 | status = task->tk_status; |
| 7774 | rpc_put_task(task); |
| 7775 | } |
| 7776 | dprintk("<-- %s return %d\n", __func__, status); |
| 7777 | |
| 7778 | return status; |
| 7779 | } |
| 7780 | |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7781 | /* |
| 7782 | * Initialize the values to be used by the client in CREATE_SESSION |
| 7783 | * If nfs4_init_session set the fore channel request and response sizes, |
| 7784 | * use them. |
| 7785 | * |
| 7786 | * Set the back channel max_resp_sz_cached to zero to force the client to |
| 7787 | * always set csa_cachethis to FALSE because the current implementation |
| 7788 | * of the back channel DRC only supports caching the CB_SEQUENCE operation. |
| 7789 | */ |
Chuck Lever | 6b26cc8 | 2016-05-02 14:40:40 -0400 | [diff] [blame] | 7790 | static void nfs4_init_channel_attrs(struct nfs41_create_session_args *args, |
| 7791 | struct rpc_clnt *clnt) |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7792 | { |
Andy Adamson | 18aad3d | 2013-06-26 12:21:49 -0400 | [diff] [blame] | 7793 | unsigned int max_rqst_sz, max_resp_sz; |
Chuck Lever | 6b26cc8 | 2016-05-02 14:40:40 -0400 | [diff] [blame] | 7794 | unsigned int max_bc_payload = rpc_max_bc_payload(clnt); |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7795 | |
Andy Adamson | 18aad3d | 2013-06-26 12:21:49 -0400 | [diff] [blame] | 7796 | max_rqst_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxwrite_overhead; |
| 7797 | max_resp_sz = NFS_MAX_FILE_IO_SIZE + nfs41_maxread_overhead; |
| 7798 | |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7799 | /* Fore channel attributes */ |
Andy Adamson | 18aad3d | 2013-06-26 12:21:49 -0400 | [diff] [blame] | 7800 | args->fc_attrs.max_rqst_sz = max_rqst_sz; |
| 7801 | args->fc_attrs.max_resp_sz = max_resp_sz; |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7802 | args->fc_attrs.max_ops = NFS4_MAX_OPS; |
Trond Myklebust | ef159e9 | 2012-02-06 19:50:40 -0500 | [diff] [blame] | 7803 | args->fc_attrs.max_reqs = max_session_slots; |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7804 | |
| 7805 | dprintk("%s: Fore Channel : max_rqst_sz=%u max_resp_sz=%u " |
Mike Sager | 8e0d46e | 2009-12-17 12:06:26 -0500 | [diff] [blame] | 7806 | "max_ops=%u max_reqs=%u\n", |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7807 | __func__, |
| 7808 | args->fc_attrs.max_rqst_sz, args->fc_attrs.max_resp_sz, |
Mike Sager | 8e0d46e | 2009-12-17 12:06:26 -0500 | [diff] [blame] | 7809 | args->fc_attrs.max_ops, args->fc_attrs.max_reqs); |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7810 | |
| 7811 | /* Back channel attributes */ |
Chuck Lever | 6b26cc8 | 2016-05-02 14:40:40 -0400 | [diff] [blame] | 7812 | args->bc_attrs.max_rqst_sz = max_bc_payload; |
| 7813 | args->bc_attrs.max_resp_sz = max_bc_payload; |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7814 | args->bc_attrs.max_resp_sz_cached = 0; |
| 7815 | args->bc_attrs.max_ops = NFS4_MAX_BACK_CHANNEL_OPS; |
Trond Myklebust | 5405fc4 | 2016-08-29 20:03:52 -0400 | [diff] [blame] | 7816 | args->bc_attrs.max_reqs = min_t(unsigned short, max_session_cb_slots, 1); |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7817 | |
| 7818 | dprintk("%s: Back Channel : max_rqst_sz=%u max_resp_sz=%u " |
| 7819 | "max_resp_sz_cached=%u max_ops=%u max_reqs=%u\n", |
| 7820 | __func__, |
| 7821 | args->bc_attrs.max_rqst_sz, args->bc_attrs.max_resp_sz, |
| 7822 | args->bc_attrs.max_resp_sz_cached, args->bc_attrs.max_ops, |
| 7823 | args->bc_attrs.max_reqs); |
| 7824 | } |
| 7825 | |
Trond Myklebust | 79969dd | 2015-02-18 11:30:18 -0800 | [diff] [blame] | 7826 | static int nfs4_verify_fore_channel_attrs(struct nfs41_create_session_args *args, |
| 7827 | struct nfs41_create_session_res *res) |
Andy Adamson | 8d35301 | 2009-04-01 09:22:32 -0400 | [diff] [blame] | 7828 | { |
J. Bruce Fields | 43c2e88 | 2010-10-02 15:19:01 -0400 | [diff] [blame] | 7829 | struct nfs4_channel_attrs *sent = &args->fc_attrs; |
Trond Myklebust | 79969dd | 2015-02-18 11:30:18 -0800 | [diff] [blame] | 7830 | struct nfs4_channel_attrs *rcvd = &res->fc_attrs; |
J. Bruce Fields | 43c2e88 | 2010-10-02 15:19:01 -0400 | [diff] [blame] | 7831 | |
J. Bruce Fields | 43c2e88 | 2010-10-02 15:19:01 -0400 | [diff] [blame] | 7832 | if (rcvd->max_resp_sz > sent->max_resp_sz) |
| 7833 | return -EINVAL; |
| 7834 | /* |
| 7835 | * Our requested max_ops is the minimum we need; we're not |
| 7836 | * prepared to break up compounds into smaller pieces than that. |
| 7837 | * So, no point even trying to continue if the server won't |
| 7838 | * cooperate: |
| 7839 | */ |
| 7840 | if (rcvd->max_ops < sent->max_ops) |
| 7841 | return -EINVAL; |
| 7842 | if (rcvd->max_reqs == 0) |
| 7843 | return -EINVAL; |
Vitaliy Gusev | b4b9a0c | 2012-02-15 19:38:25 +0400 | [diff] [blame] | 7844 | if (rcvd->max_reqs > NFS4_MAX_SLOT_TABLE) |
| 7845 | rcvd->max_reqs = NFS4_MAX_SLOT_TABLE; |
J. Bruce Fields | 43c2e88 | 2010-10-02 15:19:01 -0400 | [diff] [blame] | 7846 | return 0; |
Andy Adamson | 8d35301 | 2009-04-01 09:22:32 -0400 | [diff] [blame] | 7847 | } |
| 7848 | |
Trond Myklebust | 79969dd | 2015-02-18 11:30:18 -0800 | [diff] [blame] | 7849 | static int nfs4_verify_back_channel_attrs(struct nfs41_create_session_args *args, |
| 7850 | struct nfs41_create_session_res *res) |
J. Bruce Fields | 43c2e88 | 2010-10-02 15:19:01 -0400 | [diff] [blame] | 7851 | { |
| 7852 | struct nfs4_channel_attrs *sent = &args->bc_attrs; |
Trond Myklebust | 79969dd | 2015-02-18 11:30:18 -0800 | [diff] [blame] | 7853 | struct nfs4_channel_attrs *rcvd = &res->bc_attrs; |
Andy Adamson | 8d35301 | 2009-04-01 09:22:32 -0400 | [diff] [blame] | 7854 | |
Trond Myklebust | b1c0df5 | 2015-02-18 11:34:58 -0800 | [diff] [blame] | 7855 | if (!(res->flags & SESSION4_BACK_CHAN)) |
| 7856 | goto out; |
J. Bruce Fields | 43c2e88 | 2010-10-02 15:19:01 -0400 | [diff] [blame] | 7857 | if (rcvd->max_rqst_sz > sent->max_rqst_sz) |
| 7858 | return -EINVAL; |
| 7859 | if (rcvd->max_resp_sz < sent->max_resp_sz) |
| 7860 | return -EINVAL; |
| 7861 | if (rcvd->max_resp_sz_cached > sent->max_resp_sz_cached) |
| 7862 | return -EINVAL; |
Trond Myklebust | 5405fc4 | 2016-08-29 20:03:52 -0400 | [diff] [blame] | 7863 | if (rcvd->max_ops > sent->max_ops) |
J. Bruce Fields | 43c2e88 | 2010-10-02 15:19:01 -0400 | [diff] [blame] | 7864 | return -EINVAL; |
Trond Myklebust | 5405fc4 | 2016-08-29 20:03:52 -0400 | [diff] [blame] | 7865 | if (rcvd->max_reqs > sent->max_reqs) |
J. Bruce Fields | 43c2e88 | 2010-10-02 15:19:01 -0400 | [diff] [blame] | 7866 | return -EINVAL; |
Trond Myklebust | b1c0df5 | 2015-02-18 11:34:58 -0800 | [diff] [blame] | 7867 | out: |
J. Bruce Fields | 43c2e88 | 2010-10-02 15:19:01 -0400 | [diff] [blame] | 7868 | return 0; |
| 7869 | } |
Andy Adamson | 8d35301 | 2009-04-01 09:22:32 -0400 | [diff] [blame] | 7870 | |
Andy Adamson | 8d35301 | 2009-04-01 09:22:32 -0400 | [diff] [blame] | 7871 | static int nfs4_verify_channel_attrs(struct nfs41_create_session_args *args, |
Trond Myklebust | 79969dd | 2015-02-18 11:30:18 -0800 | [diff] [blame] | 7872 | struct nfs41_create_session_res *res) |
Andy Adamson | 8d35301 | 2009-04-01 09:22:32 -0400 | [diff] [blame] | 7873 | { |
J. Bruce Fields | 43c2e88 | 2010-10-02 15:19:01 -0400 | [diff] [blame] | 7874 | int ret; |
Andy Adamson | 8d35301 | 2009-04-01 09:22:32 -0400 | [diff] [blame] | 7875 | |
Trond Myklebust | 79969dd | 2015-02-18 11:30:18 -0800 | [diff] [blame] | 7876 | ret = nfs4_verify_fore_channel_attrs(args, res); |
J. Bruce Fields | 43c2e88 | 2010-10-02 15:19:01 -0400 | [diff] [blame] | 7877 | if (ret) |
| 7878 | return ret; |
Trond Myklebust | 79969dd | 2015-02-18 11:30:18 -0800 | [diff] [blame] | 7879 | return nfs4_verify_back_channel_attrs(args, res); |
| 7880 | } |
| 7881 | |
| 7882 | static void nfs4_update_session(struct nfs4_session *session, |
| 7883 | struct nfs41_create_session_res *res) |
| 7884 | { |
| 7885 | nfs4_copy_sessionid(&session->sess_id, &res->sessionid); |
Trond Myklebust | e11259f | 2015-03-03 20:35:31 -0500 | [diff] [blame] | 7886 | /* Mark client id and session as being confirmed */ |
| 7887 | session->clp->cl_exchange_flags |= EXCHGID4_FLAG_CONFIRMED_R; |
| 7888 | set_bit(NFS4_SESSION_ESTABLISHED, &session->session_state); |
Trond Myklebust | 79969dd | 2015-02-18 11:30:18 -0800 | [diff] [blame] | 7889 | session->flags = res->flags; |
| 7890 | memcpy(&session->fc_attrs, &res->fc_attrs, sizeof(session->fc_attrs)); |
Trond Myklebust | b1c0df5 | 2015-02-18 11:34:58 -0800 | [diff] [blame] | 7891 | if (res->flags & SESSION4_BACK_CHAN) |
| 7892 | memcpy(&session->bc_attrs, &res->bc_attrs, |
| 7893 | sizeof(session->bc_attrs)); |
Andy Adamson | 8d35301 | 2009-04-01 09:22:32 -0400 | [diff] [blame] | 7894 | } |
| 7895 | |
Trond Myklebust | 848f5bd | 2012-05-25 17:51:23 -0400 | [diff] [blame] | 7896 | static int _nfs4_proc_create_session(struct nfs_client *clp, |
| 7897 | struct rpc_cred *cred) |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7898 | { |
| 7899 | struct nfs4_session *session = clp->cl_session; |
| 7900 | struct nfs41_create_session_args args = { |
| 7901 | .client = clp, |
Trond Myklebust | 79969dd | 2015-02-18 11:30:18 -0800 | [diff] [blame] | 7902 | .clientid = clp->cl_clientid, |
| 7903 | .seqid = clp->cl_seqid, |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7904 | .cb_program = NFS4_CALLBACK, |
| 7905 | }; |
Trond Myklebust | 79969dd | 2015-02-18 11:30:18 -0800 | [diff] [blame] | 7906 | struct nfs41_create_session_res res; |
| 7907 | |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7908 | struct rpc_message msg = { |
| 7909 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_CREATE_SESSION], |
| 7910 | .rpc_argp = &args, |
| 7911 | .rpc_resp = &res, |
Trond Myklebust | 848f5bd | 2012-05-25 17:51:23 -0400 | [diff] [blame] | 7912 | .rpc_cred = cred, |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7913 | }; |
| 7914 | int status; |
| 7915 | |
Chuck Lever | 6b26cc8 | 2016-05-02 14:40:40 -0400 | [diff] [blame] | 7916 | nfs4_init_channel_attrs(&args, clp->cl_rpcclient); |
Andy Adamson | 0f91421 | 2009-04-01 09:23:16 -0400 | [diff] [blame] | 7917 | args.flags = (SESSION4_PERSIST | SESSION4_BACK_CHAN); |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7918 | |
Trond Myklebust | 1bd714f | 2011-04-24 14:29:33 -0400 | [diff] [blame] | 7919 | status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT); |
Trond Myklebust | c6d01c6 | 2013-08-09 11:51:26 -0400 | [diff] [blame] | 7920 | trace_nfs4_create_session(clp, status); |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7921 | |
Trond Myklebust | b519d40 | 2016-09-11 14:50:01 -0400 | [diff] [blame] | 7922 | switch (status) { |
| 7923 | case -NFS4ERR_STALE_CLIENTID: |
| 7924 | case -NFS4ERR_DELAY: |
| 7925 | case -ETIMEDOUT: |
| 7926 | case -EACCES: |
| 7927 | case -EAGAIN: |
| 7928 | goto out; |
| 7929 | }; |
| 7930 | |
| 7931 | clp->cl_seqid++; |
Trond Myklebust | 43095d3 | 2012-11-20 11:13:12 -0500 | [diff] [blame] | 7932 | if (!status) { |
Andy Adamson | 8d35301 | 2009-04-01 09:22:32 -0400 | [diff] [blame] | 7933 | /* Verify the session's negotiated channel_attrs values */ |
Trond Myklebust | 79969dd | 2015-02-18 11:30:18 -0800 | [diff] [blame] | 7934 | status = nfs4_verify_channel_attrs(&args, &res); |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7935 | /* Increment the clientid slot sequence id */ |
Trond Myklebust | 79969dd | 2015-02-18 11:30:18 -0800 | [diff] [blame] | 7936 | if (status) |
| 7937 | goto out; |
| 7938 | nfs4_update_session(session, &res); |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7939 | } |
Trond Myklebust | 79969dd | 2015-02-18 11:30:18 -0800 | [diff] [blame] | 7940 | out: |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7941 | return status; |
| 7942 | } |
| 7943 | |
| 7944 | /* |
| 7945 | * Issues a CREATE_SESSION operation to the server. |
| 7946 | * It is the responsibility of the caller to verify the session is |
| 7947 | * expired before calling this routine. |
| 7948 | */ |
Trond Myklebust | 848f5bd | 2012-05-25 17:51:23 -0400 | [diff] [blame] | 7949 | int nfs4_proc_create_session(struct nfs_client *clp, struct rpc_cred *cred) |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7950 | { |
| 7951 | int status; |
| 7952 | unsigned *ptr; |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7953 | struct nfs4_session *session = clp->cl_session; |
| 7954 | |
| 7955 | dprintk("--> %s clp=%p session=%p\n", __func__, clp, session); |
| 7956 | |
Trond Myklebust | 848f5bd | 2012-05-25 17:51:23 -0400 | [diff] [blame] | 7957 | status = _nfs4_proc_create_session(clp, cred); |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7958 | if (status) |
| 7959 | goto out; |
| 7960 | |
Andy Adamson | aacd553 | 2011-11-09 13:58:21 -0500 | [diff] [blame] | 7961 | /* Init or reset the session slot tables */ |
| 7962 | status = nfs4_setup_session_slot_tables(session); |
| 7963 | dprintk("slot table setup returned %d\n", status); |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7964 | if (status) |
| 7965 | goto out; |
| 7966 | |
| 7967 | ptr = (unsigned *)&session->sess_id.data[0]; |
| 7968 | dprintk("%s client>seqid %d sessionid %u:%u:%u:%u\n", __func__, |
| 7969 | clp->cl_seqid, ptr[0], ptr[1], ptr[2], ptr[3]); |
Andy Adamson | fc93158 | 2009-04-01 09:22:31 -0400 | [diff] [blame] | 7970 | out: |
| 7971 | dprintk("<-- %s\n", __func__); |
| 7972 | return status; |
| 7973 | } |
| 7974 | |
Andy Adamson | 0f3e66c | 2009-04-01 09:22:34 -0400 | [diff] [blame] | 7975 | /* |
| 7976 | * Issue the over-the-wire RPC DESTROY_SESSION. |
| 7977 | * The caller must serialize access to this routine. |
| 7978 | */ |
Trond Myklebust | 848f5bd | 2012-05-25 17:51:23 -0400 | [diff] [blame] | 7979 | int nfs4_proc_destroy_session(struct nfs4_session *session, |
| 7980 | struct rpc_cred *cred) |
Andy Adamson | 0f3e66c | 2009-04-01 09:22:34 -0400 | [diff] [blame] | 7981 | { |
Trond Myklebust | 848f5bd | 2012-05-25 17:51:23 -0400 | [diff] [blame] | 7982 | struct rpc_message msg = { |
| 7983 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_DESTROY_SESSION], |
| 7984 | .rpc_argp = session, |
| 7985 | .rpc_cred = cred, |
| 7986 | }; |
Andy Adamson | 0f3e66c | 2009-04-01 09:22:34 -0400 | [diff] [blame] | 7987 | int status = 0; |
Andy Adamson | 0f3e66c | 2009-04-01 09:22:34 -0400 | [diff] [blame] | 7988 | |
| 7989 | dprintk("--> nfs4_proc_destroy_session\n"); |
| 7990 | |
| 7991 | /* session is still being setup */ |
Trond Myklebust | e11259f | 2015-03-03 20:35:31 -0500 | [diff] [blame] | 7992 | if (!test_and_clear_bit(NFS4_SESSION_ESTABLISHED, &session->session_state)) |
| 7993 | return 0; |
Andy Adamson | 0f3e66c | 2009-04-01 09:22:34 -0400 | [diff] [blame] | 7994 | |
Trond Myklebust | 1bd714f | 2011-04-24 14:29:33 -0400 | [diff] [blame] | 7995 | status = rpc_call_sync(session->clp->cl_rpcclient, &msg, RPC_TASK_TIMEOUT); |
Trond Myklebust | c6d01c6 | 2013-08-09 11:51:26 -0400 | [diff] [blame] | 7996 | trace_nfs4_destroy_session(session->clp, status); |
Andy Adamson | 0f3e66c | 2009-04-01 09:22:34 -0400 | [diff] [blame] | 7997 | |
| 7998 | if (status) |
Trond Myklebust | 08106ac | 2012-06-05 10:08:24 -0400 | [diff] [blame] | 7999 | dprintk("NFS: Got error %d from the server on DESTROY_SESSION. " |
Andy Adamson | 0f3e66c | 2009-04-01 09:22:34 -0400 | [diff] [blame] | 8000 | "Session has been destroyed regardless...\n", status); |
| 8001 | |
| 8002 | dprintk("<-- nfs4_proc_destroy_session\n"); |
| 8003 | return status; |
| 8004 | } |
| 8005 | |
Trond Myklebust | 7b38c36 | 2012-05-23 13:23:31 -0400 | [diff] [blame] | 8006 | /* |
Andy Adamson | fc01cea | 2009-04-01 09:22:36 -0400 | [diff] [blame] | 8007 | * Renew the cl_session lease. |
| 8008 | */ |
Trond Myklebust | d5f8d3f | 2010-06-16 09:52:25 -0400 | [diff] [blame] | 8009 | struct nfs4_sequence_data { |
| 8010 | struct nfs_client *clp; |
| 8011 | struct nfs4_sequence_args args; |
| 8012 | struct nfs4_sequence_res res; |
| 8013 | }; |
| 8014 | |
Alexandros Batsakis | dc96aef | 2010-02-05 03:45:04 -0800 | [diff] [blame] | 8015 | static void nfs41_sequence_release(void *data) |
| 8016 | { |
Trond Myklebust | d5f8d3f | 2010-06-16 09:52:25 -0400 | [diff] [blame] | 8017 | struct nfs4_sequence_data *calldata = data; |
| 8018 | struct nfs_client *clp = calldata->clp; |
Alexandros Batsakis | dc96aef | 2010-02-05 03:45:04 -0800 | [diff] [blame] | 8019 | |
Alexandros Batsakis | 7135840 | 2010-02-05 03:45:05 -0800 | [diff] [blame] | 8020 | if (atomic_read(&clp->cl_count) > 1) |
| 8021 | nfs4_schedule_state_renewal(clp); |
| 8022 | nfs_put_client(clp); |
Trond Myklebust | d5f8d3f | 2010-06-16 09:52:25 -0400 | [diff] [blame] | 8023 | kfree(calldata); |
Alexandros Batsakis | dc96aef | 2010-02-05 03:45:04 -0800 | [diff] [blame] | 8024 | } |
| 8025 | |
Trond Myklebust | aa5190d | 2010-06-16 09:52:25 -0400 | [diff] [blame] | 8026 | static int nfs41_sequence_handle_errors(struct rpc_task *task, struct nfs_client *clp) |
| 8027 | { |
| 8028 | switch(task->tk_status) { |
| 8029 | case -NFS4ERR_DELAY: |
Trond Myklebust | aa5190d | 2010-06-16 09:52:25 -0400 | [diff] [blame] | 8030 | rpc_delay(task, NFS4_POLL_RETRY_MAX); |
| 8031 | return -EAGAIN; |
| 8032 | default: |
Trond Myklebust | 0400a6b | 2011-03-09 16:00:53 -0500 | [diff] [blame] | 8033 | nfs4_schedule_lease_recovery(clp); |
Trond Myklebust | aa5190d | 2010-06-16 09:52:25 -0400 | [diff] [blame] | 8034 | } |
| 8035 | return 0; |
| 8036 | } |
| 8037 | |
Alexandros Batsakis | dc96aef | 2010-02-05 03:45:04 -0800 | [diff] [blame] | 8038 | static void nfs41_sequence_call_done(struct rpc_task *task, void *data) |
Andy Adamson | fc01cea | 2009-04-01 09:22:36 -0400 | [diff] [blame] | 8039 | { |
Trond Myklebust | d5f8d3f | 2010-06-16 09:52:25 -0400 | [diff] [blame] | 8040 | struct nfs4_sequence_data *calldata = data; |
| 8041 | struct nfs_client *clp = calldata->clp; |
Andy Adamson | fc01cea | 2009-04-01 09:22:36 -0400 | [diff] [blame] | 8042 | |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 8043 | if (!nfs41_sequence_done(task, task->tk_msg.rpc_resp)) |
| 8044 | return; |
Andy Adamson | fc01cea | 2009-04-01 09:22:36 -0400 | [diff] [blame] | 8045 | |
Trond Myklebust | c6d01c6 | 2013-08-09 11:51:26 -0400 | [diff] [blame] | 8046 | trace_nfs4_sequence(clp, task->tk_status); |
Andy Adamson | fc01cea | 2009-04-01 09:22:36 -0400 | [diff] [blame] | 8047 | if (task->tk_status < 0) { |
| 8048 | dprintk("%s ERROR %d\n", __func__, task->tk_status); |
Alexandros Batsakis | 7135840 | 2010-02-05 03:45:05 -0800 | [diff] [blame] | 8049 | if (atomic_read(&clp->cl_count) == 1) |
| 8050 | goto out; |
Andy Adamson | fc01cea | 2009-04-01 09:22:36 -0400 | [diff] [blame] | 8051 | |
Trond Myklebust | aa5190d | 2010-06-16 09:52:25 -0400 | [diff] [blame] | 8052 | if (nfs41_sequence_handle_errors(task, clp) == -EAGAIN) { |
| 8053 | rpc_restart_call_prepare(task); |
Andy Adamson | fc01cea | 2009-04-01 09:22:36 -0400 | [diff] [blame] | 8054 | return; |
| 8055 | } |
| 8056 | } |
Andy Adamson | fc01cea | 2009-04-01 09:22:36 -0400 | [diff] [blame] | 8057 | dprintk("%s rpc_cred %p\n", __func__, task->tk_msg.rpc_cred); |
Alexandros Batsakis | 7135840 | 2010-02-05 03:45:05 -0800 | [diff] [blame] | 8058 | out: |
Andy Adamson | fc01cea | 2009-04-01 09:22:36 -0400 | [diff] [blame] | 8059 | dprintk("<-- %s\n", __func__); |
| 8060 | } |
| 8061 | |
| 8062 | static void nfs41_sequence_prepare(struct rpc_task *task, void *data) |
| 8063 | { |
Trond Myklebust | d5f8d3f | 2010-06-16 09:52:25 -0400 | [diff] [blame] | 8064 | struct nfs4_sequence_data *calldata = data; |
| 8065 | struct nfs_client *clp = calldata->clp; |
Andy Adamson | fc01cea | 2009-04-01 09:22:36 -0400 | [diff] [blame] | 8066 | struct nfs4_sequence_args *args; |
| 8067 | struct nfs4_sequence_res *res; |
| 8068 | |
Andy Adamson | fc01cea | 2009-04-01 09:22:36 -0400 | [diff] [blame] | 8069 | args = task->tk_msg.rpc_argp; |
| 8070 | res = task->tk_msg.rpc_resp; |
| 8071 | |
Trond Myklebust | d9afbd1 | 2012-10-22 20:28:44 -0400 | [diff] [blame] | 8072 | nfs41_setup_sequence(clp->cl_session, args, res, task); |
Andy Adamson | fc01cea | 2009-04-01 09:22:36 -0400 | [diff] [blame] | 8073 | } |
| 8074 | |
| 8075 | static const struct rpc_call_ops nfs41_sequence_ops = { |
| 8076 | .rpc_call_done = nfs41_sequence_call_done, |
| 8077 | .rpc_call_prepare = nfs41_sequence_prepare, |
Alexandros Batsakis | dc96aef | 2010-02-05 03:45:04 -0800 | [diff] [blame] | 8078 | .rpc_release = nfs41_sequence_release, |
Andy Adamson | fc01cea | 2009-04-01 09:22:36 -0400 | [diff] [blame] | 8079 | }; |
| 8080 | |
Trond Myklebust | 8fe72ba | 2012-10-29 19:02:20 -0400 | [diff] [blame] | 8081 | static struct rpc_task *_nfs41_proc_sequence(struct nfs_client *clp, |
| 8082 | struct rpc_cred *cred, |
| 8083 | bool is_privileged) |
Andy Adamson | fc01cea | 2009-04-01 09:22:36 -0400 | [diff] [blame] | 8084 | { |
Trond Myklebust | d5f8d3f | 2010-06-16 09:52:25 -0400 | [diff] [blame] | 8085 | struct nfs4_sequence_data *calldata; |
Andy Adamson | fc01cea | 2009-04-01 09:22:36 -0400 | [diff] [blame] | 8086 | struct rpc_message msg = { |
| 8087 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SEQUENCE], |
| 8088 | .rpc_cred = cred, |
| 8089 | }; |
Trond Myklebust | 71ac6da | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 8090 | struct rpc_task_setup task_setup_data = { |
| 8091 | .rpc_client = clp->cl_rpcclient, |
| 8092 | .rpc_message = &msg, |
Trond Myklebust | 8fe72ba | 2012-10-29 19:02:20 -0400 | [diff] [blame] | 8093 | .callback_ops = &nfs41_sequence_ops, |
Trond Myklebust | bc7a05c | 2013-04-08 17:50:28 -0400 | [diff] [blame] | 8094 | .flags = RPC_TASK_ASYNC | RPC_TASK_TIMEOUT, |
Trond Myklebust | 71ac6da | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 8095 | }; |
Andy Adamson | fc01cea | 2009-04-01 09:22:36 -0400 | [diff] [blame] | 8096 | |
Alexandros Batsakis | 7135840 | 2010-02-05 03:45:05 -0800 | [diff] [blame] | 8097 | if (!atomic_inc_not_zero(&clp->cl_count)) |
Trond Myklebust | 71ac6da | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 8098 | return ERR_PTR(-EIO); |
Benny Halevy | dfb4f309 | 2010-09-24 09:17:01 -0400 | [diff] [blame] | 8099 | calldata = kzalloc(sizeof(*calldata), GFP_NOFS); |
Trond Myklebust | d5f8d3f | 2010-06-16 09:52:25 -0400 | [diff] [blame] | 8100 | if (calldata == NULL) { |
Alexandros Batsakis | 7135840 | 2010-02-05 03:45:05 -0800 | [diff] [blame] | 8101 | nfs_put_client(clp); |
Trond Myklebust | 71ac6da | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 8102 | return ERR_PTR(-ENOMEM); |
Andy Adamson | fc01cea | 2009-04-01 09:22:36 -0400 | [diff] [blame] | 8103 | } |
Chuck Lever | a9c92d6 | 2013-08-09 12:48:18 -0400 | [diff] [blame] | 8104 | nfs4_init_sequence(&calldata->args, &calldata->res, 0); |
Trond Myklebust | 8fe72ba | 2012-10-29 19:02:20 -0400 | [diff] [blame] | 8105 | if (is_privileged) |
| 8106 | nfs4_set_sequence_privileged(&calldata->args); |
Trond Myklebust | d5f8d3f | 2010-06-16 09:52:25 -0400 | [diff] [blame] | 8107 | msg.rpc_argp = &calldata->args; |
| 8108 | msg.rpc_resp = &calldata->res; |
| 8109 | calldata->clp = clp; |
Trond Myklebust | 71ac6da | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 8110 | task_setup_data.callback_data = calldata; |
Andy Adamson | fc01cea | 2009-04-01 09:22:36 -0400 | [diff] [blame] | 8111 | |
Trond Myklebust | 71ac6da | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 8112 | return rpc_run_task(&task_setup_data); |
| 8113 | } |
| 8114 | |
Trond Myklebust | 2f60ea6 | 2011-08-24 15:07:37 -0400 | [diff] [blame] | 8115 | static int nfs41_proc_async_sequence(struct nfs_client *clp, struct rpc_cred *cred, unsigned renew_flags) |
Trond Myklebust | 71ac6da | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 8116 | { |
| 8117 | struct rpc_task *task; |
| 8118 | int ret = 0; |
| 8119 | |
Trond Myklebust | 2f60ea6 | 2011-08-24 15:07:37 -0400 | [diff] [blame] | 8120 | if ((renew_flags & NFS4_RENEW_TIMEOUT) == 0) |
Andy Adamson | d1f456b | 2014-09-29 12:31:57 -0400 | [diff] [blame] | 8121 | return -EAGAIN; |
Trond Myklebust | 8fe72ba | 2012-10-29 19:02:20 -0400 | [diff] [blame] | 8122 | task = _nfs41_proc_sequence(clp, cred, false); |
Trond Myklebust | 71ac6da | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 8123 | if (IS_ERR(task)) |
| 8124 | ret = PTR_ERR(task); |
| 8125 | else |
Trond Myklebust | bf294b4 | 2011-02-21 11:05:41 -0800 | [diff] [blame] | 8126 | rpc_put_task_async(task); |
Trond Myklebust | 71ac6da | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 8127 | dprintk("<-- %s status=%d\n", __func__, ret); |
| 8128 | return ret; |
| 8129 | } |
| 8130 | |
| 8131 | static int nfs4_proc_sequence(struct nfs_client *clp, struct rpc_cred *cred) |
| 8132 | { |
| 8133 | struct rpc_task *task; |
| 8134 | int ret; |
| 8135 | |
Trond Myklebust | 8fe72ba | 2012-10-29 19:02:20 -0400 | [diff] [blame] | 8136 | task = _nfs41_proc_sequence(clp, cred, true); |
Trond Myklebust | 71ac6da | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 8137 | if (IS_ERR(task)) { |
| 8138 | ret = PTR_ERR(task); |
| 8139 | goto out; |
| 8140 | } |
| 8141 | ret = rpc_wait_for_completion_task(task); |
Trond Myklebust | be82416 | 2015-07-05 14:50:46 -0400 | [diff] [blame] | 8142 | if (!ret) |
Trond Myklebust | 71ac6da | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 8143 | ret = task->tk_status; |
| 8144 | rpc_put_task(task); |
| 8145 | out: |
| 8146 | dprintk("<-- %s status=%d\n", __func__, ret); |
| 8147 | return ret; |
Andy Adamson | fc01cea | 2009-04-01 09:22:36 -0400 | [diff] [blame] | 8148 | } |
| 8149 | |
Ricardo Labiaga | fce5c83 | 2009-12-05 16:08:41 -0500 | [diff] [blame] | 8150 | struct nfs4_reclaim_complete_data { |
| 8151 | struct nfs_client *clp; |
| 8152 | struct nfs41_reclaim_complete_args arg; |
| 8153 | struct nfs41_reclaim_complete_res res; |
| 8154 | }; |
| 8155 | |
| 8156 | static void nfs4_reclaim_complete_prepare(struct rpc_task *task, void *data) |
| 8157 | { |
| 8158 | struct nfs4_reclaim_complete_data *calldata = data; |
| 8159 | |
Trond Myklebust | d9afbd1 | 2012-10-22 20:28:44 -0400 | [diff] [blame] | 8160 | nfs41_setup_sequence(calldata->clp->cl_session, |
| 8161 | &calldata->arg.seq_args, |
| 8162 | &calldata->res.seq_res, |
| 8163 | task); |
Ricardo Labiaga | fce5c83 | 2009-12-05 16:08:41 -0500 | [diff] [blame] | 8164 | } |
| 8165 | |
Trond Myklebust | aa5190d | 2010-06-16 09:52:25 -0400 | [diff] [blame] | 8166 | static int nfs41_reclaim_complete_handle_errors(struct rpc_task *task, struct nfs_client *clp) |
| 8167 | { |
| 8168 | switch(task->tk_status) { |
| 8169 | case 0: |
| 8170 | case -NFS4ERR_COMPLETE_ALREADY: |
| 8171 | case -NFS4ERR_WRONG_CRED: /* What to do here? */ |
| 8172 | break; |
| 8173 | case -NFS4ERR_DELAY: |
Trond Myklebust | aa5190d | 2010-06-16 09:52:25 -0400 | [diff] [blame] | 8174 | rpc_delay(task, NFS4_POLL_RETRY_MAX); |
Andy Adamson | a8a4ae3 | 2011-05-03 13:43:03 -0400 | [diff] [blame] | 8175 | /* fall through */ |
| 8176 | case -NFS4ERR_RETRY_UNCACHED_REP: |
Trond Myklebust | aa5190d | 2010-06-16 09:52:25 -0400 | [diff] [blame] | 8177 | return -EAGAIN; |
| 8178 | default: |
Trond Myklebust | 0400a6b | 2011-03-09 16:00:53 -0500 | [diff] [blame] | 8179 | nfs4_schedule_lease_recovery(clp); |
Trond Myklebust | aa5190d | 2010-06-16 09:52:25 -0400 | [diff] [blame] | 8180 | } |
| 8181 | return 0; |
| 8182 | } |
| 8183 | |
Ricardo Labiaga | fce5c83 | 2009-12-05 16:08:41 -0500 | [diff] [blame] | 8184 | static void nfs4_reclaim_complete_done(struct rpc_task *task, void *data) |
| 8185 | { |
| 8186 | struct nfs4_reclaim_complete_data *calldata = data; |
| 8187 | struct nfs_client *clp = calldata->clp; |
| 8188 | struct nfs4_sequence_res *res = &calldata->res.seq_res; |
| 8189 | |
| 8190 | dprintk("--> %s\n", __func__); |
Trond Myklebust | 14516c3 | 2010-07-31 14:29:06 -0400 | [diff] [blame] | 8191 | if (!nfs41_sequence_done(task, res)) |
| 8192 | return; |
Ricardo Labiaga | fce5c83 | 2009-12-05 16:08:41 -0500 | [diff] [blame] | 8193 | |
Trond Myklebust | c6d01c6 | 2013-08-09 11:51:26 -0400 | [diff] [blame] | 8194 | trace_nfs4_reclaim_complete(clp, task->tk_status); |
Trond Myklebust | aa5190d | 2010-06-16 09:52:25 -0400 | [diff] [blame] | 8195 | if (nfs41_reclaim_complete_handle_errors(task, clp) == -EAGAIN) { |
| 8196 | rpc_restart_call_prepare(task); |
| 8197 | return; |
| 8198 | } |
Ricardo Labiaga | fce5c83 | 2009-12-05 16:08:41 -0500 | [diff] [blame] | 8199 | dprintk("<-- %s\n", __func__); |
| 8200 | } |
| 8201 | |
| 8202 | static void nfs4_free_reclaim_complete_data(void *data) |
| 8203 | { |
| 8204 | struct nfs4_reclaim_complete_data *calldata = data; |
| 8205 | |
| 8206 | kfree(calldata); |
| 8207 | } |
| 8208 | |
| 8209 | static const struct rpc_call_ops nfs4_reclaim_complete_call_ops = { |
| 8210 | .rpc_call_prepare = nfs4_reclaim_complete_prepare, |
| 8211 | .rpc_call_done = nfs4_reclaim_complete_done, |
| 8212 | .rpc_release = nfs4_free_reclaim_complete_data, |
| 8213 | }; |
| 8214 | |
| 8215 | /* |
| 8216 | * Issue a global reclaim complete. |
| 8217 | */ |
Trond Myklebust | 965e9c2 | 2013-05-20 11:05:17 -0400 | [diff] [blame] | 8218 | static int nfs41_proc_reclaim_complete(struct nfs_client *clp, |
| 8219 | struct rpc_cred *cred) |
Ricardo Labiaga | fce5c83 | 2009-12-05 16:08:41 -0500 | [diff] [blame] | 8220 | { |
| 8221 | struct nfs4_reclaim_complete_data *calldata; |
| 8222 | struct rpc_task *task; |
| 8223 | struct rpc_message msg = { |
| 8224 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_RECLAIM_COMPLETE], |
Trond Myklebust | 965e9c2 | 2013-05-20 11:05:17 -0400 | [diff] [blame] | 8225 | .rpc_cred = cred, |
Ricardo Labiaga | fce5c83 | 2009-12-05 16:08:41 -0500 | [diff] [blame] | 8226 | }; |
| 8227 | struct rpc_task_setup task_setup_data = { |
| 8228 | .rpc_client = clp->cl_rpcclient, |
| 8229 | .rpc_message = &msg, |
| 8230 | .callback_ops = &nfs4_reclaim_complete_call_ops, |
| 8231 | .flags = RPC_TASK_ASYNC, |
| 8232 | }; |
| 8233 | int status = -ENOMEM; |
| 8234 | |
| 8235 | dprintk("--> %s\n", __func__); |
Trond Myklebust | 8535b2b | 2010-05-13 12:51:01 -0400 | [diff] [blame] | 8236 | calldata = kzalloc(sizeof(*calldata), GFP_NOFS); |
Ricardo Labiaga | fce5c83 | 2009-12-05 16:08:41 -0500 | [diff] [blame] | 8237 | if (calldata == NULL) |
| 8238 | goto out; |
| 8239 | calldata->clp = clp; |
| 8240 | calldata->arg.one_fs = 0; |
Ricardo Labiaga | fce5c83 | 2009-12-05 16:08:41 -0500 | [diff] [blame] | 8241 | |
Chuck Lever | a9c92d6 | 2013-08-09 12:48:18 -0400 | [diff] [blame] | 8242 | nfs4_init_sequence(&calldata->arg.seq_args, &calldata->res.seq_res, 0); |
Trond Myklebust | 8fe72ba | 2012-10-29 19:02:20 -0400 | [diff] [blame] | 8243 | nfs4_set_sequence_privileged(&calldata->arg.seq_args); |
Ricardo Labiaga | fce5c83 | 2009-12-05 16:08:41 -0500 | [diff] [blame] | 8244 | msg.rpc_argp = &calldata->arg; |
| 8245 | msg.rpc_resp = &calldata->res; |
| 8246 | task_setup_data.callback_data = calldata; |
| 8247 | task = rpc_run_task(&task_setup_data); |
Dan Carpenter | acf82b8 | 2010-04-22 11:28:39 +0200 | [diff] [blame] | 8248 | if (IS_ERR(task)) { |
Ricardo Labiaga | fce5c83 | 2009-12-05 16:08:41 -0500 | [diff] [blame] | 8249 | status = PTR_ERR(task); |
Dan Carpenter | acf82b8 | 2010-04-22 11:28:39 +0200 | [diff] [blame] | 8250 | goto out; |
| 8251 | } |
Andy Adamson | c34c32e | 2011-03-09 13:13:46 -0500 | [diff] [blame] | 8252 | status = nfs4_wait_for_completion_rpc_task(task); |
| 8253 | if (status == 0) |
| 8254 | status = task->tk_status; |
Ricardo Labiaga | fce5c83 | 2009-12-05 16:08:41 -0500 | [diff] [blame] | 8255 | rpc_put_task(task); |
Dan Carpenter | acf82b8 | 2010-04-22 11:28:39 +0200 | [diff] [blame] | 8256 | return 0; |
Ricardo Labiaga | fce5c83 | 2009-12-05 16:08:41 -0500 | [diff] [blame] | 8257 | out: |
| 8258 | dprintk("<-- %s status=%d\n", __func__, status); |
| 8259 | return status; |
| 8260 | } |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8261 | |
| 8262 | static void |
| 8263 | nfs4_layoutget_prepare(struct rpc_task *task, void *calldata) |
| 8264 | { |
| 8265 | struct nfs4_layoutget *lgp = calldata; |
Fred Isaman | c31663d | 2011-01-06 11:36:24 +0000 | [diff] [blame] | 8266 | struct nfs_server *server = NFS_SERVER(lgp->args.inode); |
Trond Myklebust | 6ba7db3 | 2012-10-22 20:07:20 -0400 | [diff] [blame] | 8267 | struct nfs4_session *session = nfs4_get_session(server); |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8268 | |
| 8269 | dprintk("--> %s\n", __func__); |
Jeff Layton | 183d9e7 | 2016-05-17 12:28:47 -0400 | [diff] [blame] | 8270 | nfs41_setup_sequence(session, &lgp->args.seq_args, |
| 8271 | &lgp->res.seq_res, task); |
| 8272 | dprintk("<-- %s\n", __func__); |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8273 | } |
| 8274 | |
| 8275 | static void nfs4_layoutget_done(struct rpc_task *task, void *calldata) |
| 8276 | { |
| 8277 | struct nfs4_layoutget *lgp = calldata; |
Jeff Layton | 183d9e7 | 2016-05-17 12:28:47 -0400 | [diff] [blame] | 8278 | |
| 8279 | dprintk("--> %s\n", __func__); |
Trond Myklebust | 2e80dbe | 2016-08-28 11:50:26 -0400 | [diff] [blame] | 8280 | nfs41_sequence_process(task, &lgp->res.seq_res); |
Jeff Layton | 183d9e7 | 2016-05-17 12:28:47 -0400 | [diff] [blame] | 8281 | dprintk("<-- %s\n", __func__); |
| 8282 | } |
| 8283 | |
| 8284 | static int |
| 8285 | nfs4_layoutget_handle_exception(struct rpc_task *task, |
| 8286 | struct nfs4_layoutget *lgp, struct nfs4_exception *exception) |
| 8287 | { |
Trond Myklebust | ee314c2 | 2012-10-01 17:25:48 -0700 | [diff] [blame] | 8288 | struct inode *inode = lgp->args.inode; |
| 8289 | struct nfs_server *server = NFS_SERVER(inode); |
| 8290 | struct pnfs_layout_hdr *lo; |
Trond Myklebust | e85d7ee | 2016-07-14 18:46:24 -0400 | [diff] [blame] | 8291 | int nfs4err = task->tk_status; |
| 8292 | int err, status = 0; |
Trond Myklebust | f7db0b2 | 2016-07-14 15:14:02 -0400 | [diff] [blame] | 8293 | LIST_HEAD(head); |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8294 | |
Boaz Harrosh | ed7e542 | 2014-01-22 20:34:54 +0200 | [diff] [blame] | 8295 | dprintk("--> %s tk_status => %d\n", __func__, -task->tk_status); |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8296 | |
Trond Myklebust | e85d7ee | 2016-07-14 18:46:24 -0400 | [diff] [blame] | 8297 | switch (nfs4err) { |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8298 | case 0: |
Trond Myklebust | ee314c2 | 2012-10-01 17:25:48 -0700 | [diff] [blame] | 8299 | goto out; |
Peng Tao | 7c1e6e5 | 2015-12-05 17:01:01 +0800 | [diff] [blame] | 8300 | |
| 8301 | /* |
| 8302 | * NFS4ERR_LAYOUTUNAVAILABLE means we are not supposed to use pnfs |
| 8303 | * on the file. set tk_status to -ENODATA to tell upper layer to |
| 8304 | * retry go inband. |
| 8305 | */ |
| 8306 | case -NFS4ERR_LAYOUTUNAVAILABLE: |
Jeff Layton | 183d9e7 | 2016-05-17 12:28:47 -0400 | [diff] [blame] | 8307 | status = -ENODATA; |
Peng Tao | 7c1e6e5 | 2015-12-05 17:01:01 +0800 | [diff] [blame] | 8308 | goto out; |
Boaz Harrosh | ed7e542 | 2014-01-22 20:34:54 +0200 | [diff] [blame] | 8309 | /* |
Trond Myklebust | 21b874c | 2015-08-31 01:19:22 -0700 | [diff] [blame] | 8310 | * NFS4ERR_BADLAYOUT means the MDS cannot return a layout of |
| 8311 | * length lgp->args.minlength != 0 (see RFC5661 section 18.43.3). |
| 8312 | */ |
| 8313 | case -NFS4ERR_BADLAYOUT: |
Jeff Layton | 183d9e7 | 2016-05-17 12:28:47 -0400 | [diff] [blame] | 8314 | status = -EOVERFLOW; |
| 8315 | goto out; |
Trond Myklebust | 21b874c | 2015-08-31 01:19:22 -0700 | [diff] [blame] | 8316 | /* |
Boaz Harrosh | ed7e542 | 2014-01-22 20:34:54 +0200 | [diff] [blame] | 8317 | * NFS4ERR_LAYOUTTRYLATER is a conflict with another client |
Trond Myklebust | 21b874c | 2015-08-31 01:19:22 -0700 | [diff] [blame] | 8318 | * (or clients) writing to the same RAID stripe except when |
| 8319 | * the minlength argument is 0 (see RFC5661 section 18.43.3). |
Jeff Layton | 183d9e7 | 2016-05-17 12:28:47 -0400 | [diff] [blame] | 8320 | * |
| 8321 | * Treat it like we would RECALLCONFLICT -- we retry for a little |
| 8322 | * while, and then eventually give up. |
Boaz Harrosh | ed7e542 | 2014-01-22 20:34:54 +0200 | [diff] [blame] | 8323 | */ |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8324 | case -NFS4ERR_LAYOUTTRYLATER: |
Jeff Layton | 183d9e7 | 2016-05-17 12:28:47 -0400 | [diff] [blame] | 8325 | if (lgp->args.minlength == 0) { |
| 8326 | status = -EOVERFLOW; |
| 8327 | goto out; |
Boaz Harrosh | ed7e542 | 2014-01-22 20:34:54 +0200 | [diff] [blame] | 8328 | } |
Trond Myklebust | e85d7ee | 2016-07-14 18:46:24 -0400 | [diff] [blame] | 8329 | status = -EBUSY; |
| 8330 | break; |
Jeff Layton | 183d9e7 | 2016-05-17 12:28:47 -0400 | [diff] [blame] | 8331 | case -NFS4ERR_RECALLCONFLICT: |
Jeff Layton | 183d9e7 | 2016-05-17 12:28:47 -0400 | [diff] [blame] | 8332 | status = -ERECALLCONFLICT; |
Trond Myklebust | e85d7ee | 2016-07-14 18:46:24 -0400 | [diff] [blame] | 8333 | break; |
Trond Myklebust | 26f4744 | 2016-09-22 13:39:10 -0400 | [diff] [blame] | 8334 | case -NFS4ERR_DELEG_REVOKED: |
| 8335 | case -NFS4ERR_ADMIN_REVOKED: |
Trond Myklebust | ee314c2 | 2012-10-01 17:25:48 -0700 | [diff] [blame] | 8336 | case -NFS4ERR_EXPIRED: |
| 8337 | case -NFS4ERR_BAD_STATEID: |
Jeff Layton | 183d9e7 | 2016-05-17 12:28:47 -0400 | [diff] [blame] | 8338 | exception->timeout = 0; |
Trond Myklebust | ee314c2 | 2012-10-01 17:25:48 -0700 | [diff] [blame] | 8339 | spin_lock(&inode->i_lock); |
Trond Myklebust | f7db0b2 | 2016-07-14 15:14:02 -0400 | [diff] [blame] | 8340 | lo = NFS_I(inode)->layout; |
| 8341 | /* If the open stateid was bad, then recover it. */ |
| 8342 | if (!lo || test_bit(NFS_LAYOUT_INVALID_STID, &lo->plh_flags) || |
| 8343 | nfs4_stateid_match_other(&lgp->args.stateid, |
Trond Myklebust | 2259f96 | 2015-09-20 13:30:30 -0400 | [diff] [blame] | 8344 | &lgp->args.ctx->state->stateid)) { |
Trond Myklebust | ee314c2 | 2012-10-01 17:25:48 -0700 | [diff] [blame] | 8345 | spin_unlock(&inode->i_lock); |
Jeff Layton | 183d9e7 | 2016-05-17 12:28:47 -0400 | [diff] [blame] | 8346 | exception->state = lgp->args.ctx->state; |
Trond Myklebust | 26f4744 | 2016-09-22 13:39:10 -0400 | [diff] [blame] | 8347 | exception->stateid = &lgp->args.stateid; |
Trond Myklebust | 2259f96 | 2015-09-20 13:30:30 -0400 | [diff] [blame] | 8348 | break; |
| 8349 | } |
Trond Myklebust | ee314c2 | 2012-10-01 17:25:48 -0700 | [diff] [blame] | 8350 | |
Trond Myklebust | f7db0b2 | 2016-07-14 15:14:02 -0400 | [diff] [blame] | 8351 | /* |
| 8352 | * Mark the bad layout state as invalid, then retry |
| 8353 | */ |
Trond Myklebust | 668f455 | 2016-07-24 17:08:59 -0400 | [diff] [blame] | 8354 | pnfs_mark_layout_stateid_invalid(lo, &head); |
Trond Myklebust | f7db0b2 | 2016-07-14 15:14:02 -0400 | [diff] [blame] | 8355 | spin_unlock(&inode->i_lock); |
| 8356 | pnfs_free_lseg_list(&head); |
| 8357 | status = -EAGAIN; |
| 8358 | goto out; |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8359 | } |
Jeff Layton | 183d9e7 | 2016-05-17 12:28:47 -0400 | [diff] [blame] | 8360 | |
Trond Myklebust | e85d7ee | 2016-07-14 18:46:24 -0400 | [diff] [blame] | 8361 | err = nfs4_handle_exception(server, nfs4err, exception); |
| 8362 | if (!status) { |
| 8363 | if (exception->retry) |
| 8364 | status = -EAGAIN; |
| 8365 | else |
| 8366 | status = err; |
| 8367 | } |
Trond Myklebust | ee314c2 | 2012-10-01 17:25:48 -0700 | [diff] [blame] | 8368 | out: |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8369 | dprintk("<-- %s\n", __func__); |
Jeff Layton | 183d9e7 | 2016-05-17 12:28:47 -0400 | [diff] [blame] | 8370 | return status; |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8371 | } |
| 8372 | |
Idan Kedar | 8554116 | 2012-08-02 11:47:10 +0300 | [diff] [blame] | 8373 | static size_t max_response_pages(struct nfs_server *server) |
| 8374 | { |
| 8375 | u32 max_resp_sz = server->nfs_client->cl_session->fc_attrs.max_resp_sz; |
| 8376 | return nfs_page_array_len(0, max_resp_sz); |
| 8377 | } |
| 8378 | |
| 8379 | static void nfs4_free_pages(struct page **pages, size_t size) |
| 8380 | { |
| 8381 | int i; |
| 8382 | |
| 8383 | if (!pages) |
| 8384 | return; |
| 8385 | |
| 8386 | for (i = 0; i < size; i++) { |
| 8387 | if (!pages[i]) |
| 8388 | break; |
| 8389 | __free_page(pages[i]); |
| 8390 | } |
| 8391 | kfree(pages); |
| 8392 | } |
| 8393 | |
| 8394 | static struct page **nfs4_alloc_pages(size_t size, gfp_t gfp_flags) |
| 8395 | { |
| 8396 | struct page **pages; |
| 8397 | int i; |
| 8398 | |
| 8399 | pages = kcalloc(size, sizeof(struct page *), gfp_flags); |
| 8400 | if (!pages) { |
| 8401 | dprintk("%s: can't alloc array of %zu pages\n", __func__, size); |
| 8402 | return NULL; |
| 8403 | } |
| 8404 | |
| 8405 | for (i = 0; i < size; i++) { |
| 8406 | pages[i] = alloc_page(gfp_flags); |
| 8407 | if (!pages[i]) { |
| 8408 | dprintk("%s: failed to allocate page\n", __func__); |
| 8409 | nfs4_free_pages(pages, size); |
| 8410 | return NULL; |
| 8411 | } |
| 8412 | } |
| 8413 | |
| 8414 | return pages; |
| 8415 | } |
| 8416 | |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8417 | static void nfs4_layoutget_release(void *calldata) |
| 8418 | { |
| 8419 | struct nfs4_layoutget *lgp = calldata; |
Weston Andros Adamson | a47970f | 2013-02-25 21:27:33 -0500 | [diff] [blame] | 8420 | struct inode *inode = lgp->args.inode; |
| 8421 | struct nfs_server *server = NFS_SERVER(inode); |
Idan Kedar | 8554116 | 2012-08-02 11:47:10 +0300 | [diff] [blame] | 8422 | size_t max_pages = max_response_pages(server); |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8423 | |
| 8424 | dprintk("--> %s\n", __func__); |
Idan Kedar | 8554116 | 2012-08-02 11:47:10 +0300 | [diff] [blame] | 8425 | nfs4_free_pages(lgp->args.layout.pages, max_pages); |
Weston Andros Adamson | a47970f | 2013-02-25 21:27:33 -0500 | [diff] [blame] | 8426 | pnfs_put_layout_hdr(NFS_I(inode)->layout); |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8427 | put_nfs_open_context(lgp->args.ctx); |
| 8428 | kfree(calldata); |
| 8429 | dprintk("<-- %s\n", __func__); |
| 8430 | } |
| 8431 | |
| 8432 | static const struct rpc_call_ops nfs4_layoutget_call_ops = { |
| 8433 | .rpc_call_prepare = nfs4_layoutget_prepare, |
| 8434 | .rpc_call_done = nfs4_layoutget_done, |
| 8435 | .rpc_release = nfs4_layoutget_release, |
| 8436 | }; |
| 8437 | |
Trond Myklebust | a0b0a6e | 2012-09-17 17:12:15 -0400 | [diff] [blame] | 8438 | struct pnfs_layout_segment * |
Jeff Layton | 183d9e7 | 2016-05-17 12:28:47 -0400 | [diff] [blame] | 8439 | nfs4_proc_layoutget(struct nfs4_layoutget *lgp, long *timeout, gfp_t gfp_flags) |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8440 | { |
Weston Andros Adamson | a47970f | 2013-02-25 21:27:33 -0500 | [diff] [blame] | 8441 | struct inode *inode = lgp->args.inode; |
| 8442 | struct nfs_server *server = NFS_SERVER(inode); |
Idan Kedar | 8554116 | 2012-08-02 11:47:10 +0300 | [diff] [blame] | 8443 | size_t max_pages = max_response_pages(server); |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8444 | struct rpc_task *task; |
| 8445 | struct rpc_message msg = { |
| 8446 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTGET], |
| 8447 | .rpc_argp = &lgp->args, |
| 8448 | .rpc_resp = &lgp->res, |
Trond Myklebust | 6ab5934 | 2013-05-20 10:49:34 -0400 | [diff] [blame] | 8449 | .rpc_cred = lgp->cred, |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8450 | }; |
| 8451 | struct rpc_task_setup task_setup_data = { |
| 8452 | .rpc_client = server->client, |
| 8453 | .rpc_message = &msg, |
| 8454 | .callback_ops = &nfs4_layoutget_call_ops, |
| 8455 | .callback_data = lgp, |
| 8456 | .flags = RPC_TASK_ASYNC, |
| 8457 | }; |
Trond Myklebust | a0b0a6e | 2012-09-17 17:12:15 -0400 | [diff] [blame] | 8458 | struct pnfs_layout_segment *lseg = NULL; |
Trond Myklebust | bc23676 | 2016-06-17 16:48:18 -0400 | [diff] [blame] | 8459 | struct nfs4_exception exception = { |
| 8460 | .inode = inode, |
| 8461 | .timeout = *timeout, |
| 8462 | }; |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8463 | int status = 0; |
| 8464 | |
| 8465 | dprintk("--> %s\n", __func__); |
| 8466 | |
Peng Tao | 4bd5a980 | 2014-11-17 11:05:17 +0800 | [diff] [blame] | 8467 | /* nfs4_layoutget_release calls pnfs_put_layout_hdr */ |
| 8468 | pnfs_get_layout_hdr(NFS_I(inode)->layout); |
| 8469 | |
Idan Kedar | 8554116 | 2012-08-02 11:47:10 +0300 | [diff] [blame] | 8470 | lgp->args.layout.pages = nfs4_alloc_pages(max_pages, gfp_flags); |
| 8471 | if (!lgp->args.layout.pages) { |
| 8472 | nfs4_layoutget_release(lgp); |
Trond Myklebust | a0b0a6e | 2012-09-17 17:12:15 -0400 | [diff] [blame] | 8473 | return ERR_PTR(-ENOMEM); |
Idan Kedar | 8554116 | 2012-08-02 11:47:10 +0300 | [diff] [blame] | 8474 | } |
| 8475 | lgp->args.layout.pglen = max_pages * PAGE_SIZE; |
| 8476 | |
Weston Andros Adamson | 35124a0 | 2011-03-24 16:48:21 -0400 | [diff] [blame] | 8477 | lgp->res.layoutp = &lgp->args.layout; |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8478 | lgp->res.seq_res.sr_slot = NULL; |
Chuck Lever | a9c92d6 | 2013-08-09 12:48:18 -0400 | [diff] [blame] | 8479 | nfs4_init_sequence(&lgp->args.seq_args, &lgp->res.seq_res, 0); |
Weston Andros Adamson | a47970f | 2013-02-25 21:27:33 -0500 | [diff] [blame] | 8480 | |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8481 | task = rpc_run_task(&task_setup_data); |
| 8482 | if (IS_ERR(task)) |
Trond Myklebust | a0b0a6e | 2012-09-17 17:12:15 -0400 | [diff] [blame] | 8483 | return ERR_CAST(task); |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8484 | status = nfs4_wait_for_completion_rpc_task(task); |
Jeff Layton | 183d9e7 | 2016-05-17 12:28:47 -0400 | [diff] [blame] | 8485 | if (status == 0) { |
| 8486 | status = nfs4_layoutget_handle_exception(task, lgp, &exception); |
| 8487 | *timeout = exception.timeout; |
| 8488 | } |
| 8489 | |
Trond Myklebust | 1037e6e | 2013-08-14 16:36:51 -0400 | [diff] [blame] | 8490 | trace_nfs4_layoutget(lgp->args.ctx, |
| 8491 | &lgp->args.range, |
| 8492 | &lgp->res.range, |
Olga Kornievskaia | 48c9579 | 2015-11-24 13:29:41 -0500 | [diff] [blame] | 8493 | &lgp->res.stateid, |
Trond Myklebust | 1037e6e | 2013-08-14 16:36:51 -0400 | [diff] [blame] | 8494 | status); |
Jeff Layton | 183d9e7 | 2016-05-17 12:28:47 -0400 | [diff] [blame] | 8495 | |
Weston Andros Adamson | 085b7a4 | 2013-02-15 16:03:46 -0500 | [diff] [blame] | 8496 | /* if layoutp->len is 0, nfs4_layoutget_prepare called rpc_exit */ |
| 8497 | if (status == 0 && lgp->res.layoutp->len) |
Trond Myklebust | a0b0a6e | 2012-09-17 17:12:15 -0400 | [diff] [blame] | 8498 | lseg = pnfs_layout_process(lgp); |
Trond Myklebust | 2e80dbe | 2016-08-28 11:50:26 -0400 | [diff] [blame] | 8499 | nfs4_sequence_free_slot(&lgp->res.seq_res); |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8500 | rpc_put_task(task); |
| 8501 | dprintk("<-- %s status=%d\n", __func__, status); |
Trond Myklebust | a0b0a6e | 2012-09-17 17:12:15 -0400 | [diff] [blame] | 8502 | if (status) |
| 8503 | return ERR_PTR(status); |
| 8504 | return lseg; |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8505 | } |
| 8506 | |
Benny Halevy | cbe8260 | 2011-05-22 19:52:37 +0300 | [diff] [blame] | 8507 | static void |
| 8508 | nfs4_layoutreturn_prepare(struct rpc_task *task, void *calldata) |
| 8509 | { |
| 8510 | struct nfs4_layoutreturn *lrp = calldata; |
| 8511 | |
| 8512 | dprintk("--> %s\n", __func__); |
Trond Myklebust | d9afbd1 | 2012-10-22 20:28:44 -0400 | [diff] [blame] | 8513 | nfs41_setup_sequence(lrp->clp->cl_session, |
| 8514 | &lrp->args.seq_args, |
| 8515 | &lrp->res.seq_res, |
| 8516 | task); |
Benny Halevy | cbe8260 | 2011-05-22 19:52:37 +0300 | [diff] [blame] | 8517 | } |
| 8518 | |
| 8519 | static void nfs4_layoutreturn_done(struct rpc_task *task, void *calldata) |
| 8520 | { |
| 8521 | struct nfs4_layoutreturn *lrp = calldata; |
| 8522 | struct nfs_server *server; |
| 8523 | |
| 8524 | dprintk("--> %s\n", __func__); |
| 8525 | |
Trond Myklebust | 2e80dbe | 2016-08-28 11:50:26 -0400 | [diff] [blame] | 8526 | if (!nfs41_sequence_process(task, &lrp->res.seq_res)) |
Benny Halevy | cbe8260 | 2011-05-22 19:52:37 +0300 | [diff] [blame] | 8527 | return; |
| 8528 | |
| 8529 | server = NFS_SERVER(lrp->args.inode); |
Trond Myklebust | f22e5ed | 2013-12-04 12:09:45 -0500 | [diff] [blame] | 8530 | switch (task->tk_status) { |
| 8531 | default: |
| 8532 | task->tk_status = 0; |
| 8533 | case 0: |
| 8534 | break; |
| 8535 | case -NFS4ERR_DELAY: |
NeilBrown | 8478eaa | 2014-09-18 16:09:27 +1000 | [diff] [blame] | 8536 | if (nfs4_async_handle_error(task, server, NULL, NULL) != -EAGAIN) |
Trond Myklebust | f22e5ed | 2013-12-04 12:09:45 -0500 | [diff] [blame] | 8537 | break; |
Trond Myklebust | 2e80dbe | 2016-08-28 11:50:26 -0400 | [diff] [blame] | 8538 | nfs4_sequence_free_slot(&lrp->res.seq_res); |
Trond Myklebust | d00c5d4 | 2011-10-19 12:17:29 -0700 | [diff] [blame] | 8539 | rpc_restart_call_prepare(task); |
Benny Halevy | cbe8260 | 2011-05-22 19:52:37 +0300 | [diff] [blame] | 8540 | return; |
| 8541 | } |
Benny Halevy | cbe8260 | 2011-05-22 19:52:37 +0300 | [diff] [blame] | 8542 | dprintk("<-- %s\n", __func__); |
| 8543 | } |
| 8544 | |
| 8545 | static void nfs4_layoutreturn_release(void *calldata) |
| 8546 | { |
| 8547 | struct nfs4_layoutreturn *lrp = calldata; |
Trond Myklebust | 849b286 | 2012-09-24 14:18:39 -0400 | [diff] [blame] | 8548 | struct pnfs_layout_hdr *lo = lrp->args.layout; |
Trond Myklebust | c5d7371 | 2015-07-09 17:58:39 +0200 | [diff] [blame] | 8549 | LIST_HEAD(freeme); |
Benny Halevy | cbe8260 | 2011-05-22 19:52:37 +0300 | [diff] [blame] | 8550 | |
| 8551 | dprintk("--> %s\n", __func__); |
Trond Myklebust | 849b286 | 2012-09-24 14:18:39 -0400 | [diff] [blame] | 8552 | spin_lock(&lo->plh_inode->i_lock); |
Trond Myklebust | 52ec7be | 2016-09-03 11:05:28 -0400 | [diff] [blame] | 8553 | if (lrp->res.lrs_present) { |
| 8554 | pnfs_mark_matching_lsegs_invalid(lo, &freeme, |
| 8555 | &lrp->args.range, |
| 8556 | be32_to_cpu(lrp->args.stateid.seqid)); |
Trond Myklebust | 849b286 | 2012-09-24 14:18:39 -0400 | [diff] [blame] | 8557 | pnfs_set_layout_stateid(lo, &lrp->res.stateid, true); |
Trond Myklebust | 52ec7be | 2016-09-03 11:05:28 -0400 | [diff] [blame] | 8558 | } else |
| 8559 | pnfs_mark_layout_stateid_invalid(lo, &freeme); |
Tom Haynes | d67ae82 | 2014-12-11 17:02:04 -0500 | [diff] [blame] | 8560 | pnfs_clear_layoutreturn_waitbit(lo); |
Trond Myklebust | 849b286 | 2012-09-24 14:18:39 -0400 | [diff] [blame] | 8561 | spin_unlock(&lo->plh_inode->i_lock); |
Trond Myklebust | 2e80dbe | 2016-08-28 11:50:26 -0400 | [diff] [blame] | 8562 | nfs4_sequence_free_slot(&lrp->res.seq_res); |
Trond Myklebust | c5d7371 | 2015-07-09 17:58:39 +0200 | [diff] [blame] | 8563 | pnfs_free_lseg_list(&freeme); |
Trond Myklebust | 70c3bd2 | 2012-09-18 20:51:13 -0400 | [diff] [blame] | 8564 | pnfs_put_layout_hdr(lrp->args.layout); |
Trond Myklebust | 5a0ec8ac | 2015-02-05 16:35:16 -0500 | [diff] [blame] | 8565 | nfs_iput_and_deactive(lrp->inode); |
Benny Halevy | cbe8260 | 2011-05-22 19:52:37 +0300 | [diff] [blame] | 8566 | kfree(calldata); |
| 8567 | dprintk("<-- %s\n", __func__); |
| 8568 | } |
| 8569 | |
| 8570 | static const struct rpc_call_ops nfs4_layoutreturn_call_ops = { |
| 8571 | .rpc_call_prepare = nfs4_layoutreturn_prepare, |
| 8572 | .rpc_call_done = nfs4_layoutreturn_done, |
| 8573 | .rpc_release = nfs4_layoutreturn_release, |
| 8574 | }; |
| 8575 | |
Peng Tao | 6c16605 | 2014-11-17 09:30:40 +0800 | [diff] [blame] | 8576 | int nfs4_proc_layoutreturn(struct nfs4_layoutreturn *lrp, bool sync) |
Benny Halevy | cbe8260 | 2011-05-22 19:52:37 +0300 | [diff] [blame] | 8577 | { |
| 8578 | struct rpc_task *task; |
| 8579 | struct rpc_message msg = { |
| 8580 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTRETURN], |
| 8581 | .rpc_argp = &lrp->args, |
| 8582 | .rpc_resp = &lrp->res, |
Trond Myklebust | 9556000 | 2013-05-20 10:43:47 -0400 | [diff] [blame] | 8583 | .rpc_cred = lrp->cred, |
Benny Halevy | cbe8260 | 2011-05-22 19:52:37 +0300 | [diff] [blame] | 8584 | }; |
| 8585 | struct rpc_task_setup task_setup_data = { |
Andy Adamson | 1771c57 | 2013-07-22 12:42:05 -0400 | [diff] [blame] | 8586 | .rpc_client = NFS_SERVER(lrp->args.inode)->client, |
Benny Halevy | cbe8260 | 2011-05-22 19:52:37 +0300 | [diff] [blame] | 8587 | .rpc_message = &msg, |
| 8588 | .callback_ops = &nfs4_layoutreturn_call_ops, |
| 8589 | .callback_data = lrp, |
| 8590 | }; |
Peng Tao | 6c16605 | 2014-11-17 09:30:40 +0800 | [diff] [blame] | 8591 | int status = 0; |
Benny Halevy | cbe8260 | 2011-05-22 19:52:37 +0300 | [diff] [blame] | 8592 | |
Andrew Elble | 99ade3c | 2015-12-02 09:39:51 -0500 | [diff] [blame] | 8593 | nfs4_state_protect(NFS_SERVER(lrp->args.inode)->nfs_client, |
| 8594 | NFS_SP4_MACH_CRED_PNFS_CLEANUP, |
| 8595 | &task_setup_data.rpc_client, &msg); |
| 8596 | |
Benny Halevy | cbe8260 | 2011-05-22 19:52:37 +0300 | [diff] [blame] | 8597 | dprintk("--> %s\n", __func__); |
Trond Myklebust | 5a0ec8ac | 2015-02-05 16:35:16 -0500 | [diff] [blame] | 8598 | if (!sync) { |
| 8599 | lrp->inode = nfs_igrab_and_active(lrp->args.inode); |
| 8600 | if (!lrp->inode) { |
| 8601 | nfs4_layoutreturn_release(lrp); |
| 8602 | return -EAGAIN; |
| 8603 | } |
| 8604 | task_setup_data.flags |= RPC_TASK_ASYNC; |
| 8605 | } |
Chuck Lever | a9c92d6 | 2013-08-09 12:48:18 -0400 | [diff] [blame] | 8606 | nfs4_init_sequence(&lrp->args.seq_args, &lrp->res.seq_res, 1); |
Benny Halevy | cbe8260 | 2011-05-22 19:52:37 +0300 | [diff] [blame] | 8607 | task = rpc_run_task(&task_setup_data); |
| 8608 | if (IS_ERR(task)) |
| 8609 | return PTR_ERR(task); |
Trond Myklebust | 5a0ec8ac | 2015-02-05 16:35:16 -0500 | [diff] [blame] | 8610 | if (sync) |
| 8611 | status = task->tk_status; |
Olga Kornievskaia | 48c9579 | 2015-11-24 13:29:41 -0500 | [diff] [blame] | 8612 | trace_nfs4_layoutreturn(lrp->args.inode, &lrp->args.stateid, status); |
Benny Halevy | cbe8260 | 2011-05-22 19:52:37 +0300 | [diff] [blame] | 8613 | dprintk("<-- %s status=%d\n", __func__, status); |
| 8614 | rpc_put_task(task); |
| 8615 | return status; |
| 8616 | } |
| 8617 | |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8618 | static int |
Trond Myklebust | cd5875f | 2013-05-20 11:42:54 -0400 | [diff] [blame] | 8619 | _nfs4_proc_getdeviceinfo(struct nfs_server *server, |
| 8620 | struct pnfs_device *pdev, |
| 8621 | struct rpc_cred *cred) |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8622 | { |
| 8623 | struct nfs4_getdeviceinfo_args args = { |
| 8624 | .pdev = pdev, |
Trond Myklebust | 4e59080 | 2015-03-09 14:01:25 -0400 | [diff] [blame] | 8625 | .notify_types = NOTIFY_DEVICEID4_CHANGE | |
| 8626 | NOTIFY_DEVICEID4_DELETE, |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8627 | }; |
| 8628 | struct nfs4_getdeviceinfo_res res = { |
| 8629 | .pdev = pdev, |
| 8630 | }; |
| 8631 | struct rpc_message msg = { |
| 8632 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_GETDEVICEINFO], |
| 8633 | .rpc_argp = &args, |
| 8634 | .rpc_resp = &res, |
Trond Myklebust | cd5875f | 2013-05-20 11:42:54 -0400 | [diff] [blame] | 8635 | .rpc_cred = cred, |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8636 | }; |
| 8637 | int status; |
| 8638 | |
| 8639 | dprintk("--> %s\n", __func__); |
Bryan Schumaker | 7c51305 | 2011-03-24 17:12:24 +0000 | [diff] [blame] | 8640 | status = nfs4_call_sync(server->client, server, &msg, &args.seq_args, &res.seq_res, 0); |
Trond Myklebust | 4e59080 | 2015-03-09 14:01:25 -0400 | [diff] [blame] | 8641 | if (res.notification & ~args.notify_types) |
| 8642 | dprintk("%s: unsupported notification\n", __func__); |
Trond Myklebust | df52699 | 2015-03-09 14:48:32 -0400 | [diff] [blame] | 8643 | if (res.notification != args.notify_types) |
| 8644 | pdev->nocache = 1; |
Trond Myklebust | 4e59080 | 2015-03-09 14:01:25 -0400 | [diff] [blame] | 8645 | |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8646 | dprintk("<-- %s status=%d\n", __func__, status); |
| 8647 | |
| 8648 | return status; |
| 8649 | } |
| 8650 | |
Trond Myklebust | cd5875f | 2013-05-20 11:42:54 -0400 | [diff] [blame] | 8651 | int nfs4_proc_getdeviceinfo(struct nfs_server *server, |
| 8652 | struct pnfs_device *pdev, |
| 8653 | struct rpc_cred *cred) |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8654 | { |
| 8655 | struct nfs4_exception exception = { }; |
| 8656 | int err; |
| 8657 | |
| 8658 | do { |
| 8659 | err = nfs4_handle_exception(server, |
Trond Myklebust | cd5875f | 2013-05-20 11:42:54 -0400 | [diff] [blame] | 8660 | _nfs4_proc_getdeviceinfo(server, pdev, cred), |
Andy Adamson | b1f69b7 | 2010-10-20 00:18:03 -0400 | [diff] [blame] | 8661 | &exception); |
| 8662 | } while (exception.retry); |
| 8663 | return err; |
| 8664 | } |
| 8665 | EXPORT_SYMBOL_GPL(nfs4_proc_getdeviceinfo); |
| 8666 | |
Andy Adamson | 863a3c6 | 2011-03-23 13:27:54 +0000 | [diff] [blame] | 8667 | static void nfs4_layoutcommit_prepare(struct rpc_task *task, void *calldata) |
| 8668 | { |
| 8669 | struct nfs4_layoutcommit_data *data = calldata; |
| 8670 | struct nfs_server *server = NFS_SERVER(data->args.inode); |
Trond Myklebust | 6ba7db3 | 2012-10-22 20:07:20 -0400 | [diff] [blame] | 8671 | struct nfs4_session *session = nfs4_get_session(server); |
Andy Adamson | 863a3c6 | 2011-03-23 13:27:54 +0000 | [diff] [blame] | 8672 | |
Trond Myklebust | d9afbd1 | 2012-10-22 20:28:44 -0400 | [diff] [blame] | 8673 | nfs41_setup_sequence(session, |
| 8674 | &data->args.seq_args, |
| 8675 | &data->res.seq_res, |
| 8676 | task); |
Andy Adamson | 863a3c6 | 2011-03-23 13:27:54 +0000 | [diff] [blame] | 8677 | } |
| 8678 | |
| 8679 | static void |
| 8680 | nfs4_layoutcommit_done(struct rpc_task *task, void *calldata) |
| 8681 | { |
| 8682 | struct nfs4_layoutcommit_data *data = calldata; |
| 8683 | struct nfs_server *server = NFS_SERVER(data->args.inode); |
| 8684 | |
Trond Myklebust | 6ba7db3 | 2012-10-22 20:07:20 -0400 | [diff] [blame] | 8685 | if (!nfs41_sequence_done(task, &data->res.seq_res)) |
Andy Adamson | 863a3c6 | 2011-03-23 13:27:54 +0000 | [diff] [blame] | 8686 | return; |
| 8687 | |
| 8688 | switch (task->tk_status) { /* Just ignore these failures */ |
Trond Myklebust | e59d27e | 2012-03-27 18:22:19 -0400 | [diff] [blame] | 8689 | case -NFS4ERR_DELEG_REVOKED: /* layout was recalled */ |
| 8690 | case -NFS4ERR_BADIOMODE: /* no IOMODE_RW layout for range */ |
| 8691 | case -NFS4ERR_BADLAYOUT: /* no layout */ |
| 8692 | case -NFS4ERR_GRACE: /* loca_recalim always false */ |
Andy Adamson | 863a3c6 | 2011-03-23 13:27:54 +0000 | [diff] [blame] | 8693 | task->tk_status = 0; |
Trond Myklebust | e59d27e | 2012-03-27 18:22:19 -0400 | [diff] [blame] | 8694 | case 0: |
Trond Myklebust | e59d27e | 2012-03-27 18:22:19 -0400 | [diff] [blame] | 8695 | break; |
| 8696 | default: |
NeilBrown | 8478eaa | 2014-09-18 16:09:27 +1000 | [diff] [blame] | 8697 | if (nfs4_async_handle_error(task, server, NULL, NULL) == -EAGAIN) { |
Trond Myklebust | e59d27e | 2012-03-27 18:22:19 -0400 | [diff] [blame] | 8698 | rpc_restart_call_prepare(task); |
| 8699 | return; |
| 8700 | } |
| 8701 | } |
Andy Adamson | 863a3c6 | 2011-03-23 13:27:54 +0000 | [diff] [blame] | 8702 | } |
| 8703 | |
| 8704 | static void nfs4_layoutcommit_release(void *calldata) |
| 8705 | { |
| 8706 | struct nfs4_layoutcommit_data *data = calldata; |
| 8707 | |
Andy Adamson | db29c08 | 2011-07-30 20:52:38 -0400 | [diff] [blame] | 8708 | pnfs_cleanup_layoutcommit(data); |
Trond Myklebust | d8c951c | 2014-01-13 12:08:11 -0500 | [diff] [blame] | 8709 | nfs_post_op_update_inode_force_wcc(data->args.inode, |
| 8710 | data->res.fattr); |
Andy Adamson | 863a3c6 | 2011-03-23 13:27:54 +0000 | [diff] [blame] | 8711 | put_rpccred(data->cred); |
Trond Myklebust | 472e259 | 2015-02-05 16:50:30 -0500 | [diff] [blame] | 8712 | nfs_iput_and_deactive(data->inode); |
Andy Adamson | 863a3c6 | 2011-03-23 13:27:54 +0000 | [diff] [blame] | 8713 | kfree(data); |
| 8714 | } |
| 8715 | |
| 8716 | static const struct rpc_call_ops nfs4_layoutcommit_ops = { |
| 8717 | .rpc_call_prepare = nfs4_layoutcommit_prepare, |
| 8718 | .rpc_call_done = nfs4_layoutcommit_done, |
| 8719 | .rpc_release = nfs4_layoutcommit_release, |
| 8720 | }; |
| 8721 | |
| 8722 | int |
Andy Adamson | ef31153 | 2011-03-12 02:58:10 -0500 | [diff] [blame] | 8723 | nfs4_proc_layoutcommit(struct nfs4_layoutcommit_data *data, bool sync) |
Andy Adamson | 863a3c6 | 2011-03-23 13:27:54 +0000 | [diff] [blame] | 8724 | { |
| 8725 | struct rpc_message msg = { |
| 8726 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_LAYOUTCOMMIT], |
| 8727 | .rpc_argp = &data->args, |
| 8728 | .rpc_resp = &data->res, |
| 8729 | .rpc_cred = data->cred, |
| 8730 | }; |
| 8731 | struct rpc_task_setup task_setup_data = { |
| 8732 | .task = &data->task, |
| 8733 | .rpc_client = NFS_CLIENT(data->args.inode), |
| 8734 | .rpc_message = &msg, |
| 8735 | .callback_ops = &nfs4_layoutcommit_ops, |
| 8736 | .callback_data = data, |
Andy Adamson | 863a3c6 | 2011-03-23 13:27:54 +0000 | [diff] [blame] | 8737 | }; |
| 8738 | struct rpc_task *task; |
| 8739 | int status = 0; |
| 8740 | |
Kinglong Mee | b4839eb | 2015-07-01 12:00:13 +0800 | [diff] [blame] | 8741 | dprintk("NFS: initiating layoutcommit call. sync %d " |
| 8742 | "lbw: %llu inode %lu\n", sync, |
Andy Adamson | 863a3c6 | 2011-03-23 13:27:54 +0000 | [diff] [blame] | 8743 | data->args.lastbytewritten, |
| 8744 | data->args.inode->i_ino); |
| 8745 | |
Trond Myklebust | 472e259 | 2015-02-05 16:50:30 -0500 | [diff] [blame] | 8746 | if (!sync) { |
| 8747 | data->inode = nfs_igrab_and_active(data->args.inode); |
| 8748 | if (data->inode == NULL) { |
| 8749 | nfs4_layoutcommit_release(data); |
| 8750 | return -EAGAIN; |
| 8751 | } |
| 8752 | task_setup_data.flags = RPC_TASK_ASYNC; |
| 8753 | } |
Chuck Lever | a9c92d6 | 2013-08-09 12:48:18 -0400 | [diff] [blame] | 8754 | nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1); |
Andy Adamson | 863a3c6 | 2011-03-23 13:27:54 +0000 | [diff] [blame] | 8755 | task = rpc_run_task(&task_setup_data); |
| 8756 | if (IS_ERR(task)) |
| 8757 | return PTR_ERR(task); |
Trond Myklebust | 472e259 | 2015-02-05 16:50:30 -0500 | [diff] [blame] | 8758 | if (sync) |
| 8759 | status = task->tk_status; |
Olga Kornievskaia | 48c9579 | 2015-11-24 13:29:41 -0500 | [diff] [blame] | 8760 | trace_nfs4_layoutcommit(data->args.inode, &data->args.stateid, status); |
Andy Adamson | 863a3c6 | 2011-03-23 13:27:54 +0000 | [diff] [blame] | 8761 | dprintk("%s: status %d\n", __func__, status); |
| 8762 | rpc_put_task(task); |
| 8763 | return status; |
| 8764 | } |
Bryan Schumaker | fca78d6 | 2011-06-02 14:59:07 -0400 | [diff] [blame] | 8765 | |
Andy Adamson | 9743120 | 2013-08-08 10:57:56 -0400 | [diff] [blame] | 8766 | /** |
| 8767 | * Use the state managment nfs_client cl_rpcclient, which uses krb5i (if |
| 8768 | * possible) as per RFC3530bis and RFC5661 Security Considerations sections |
| 8769 | */ |
Bryan Schumaker | fca78d6 | 2011-06-02 14:59:07 -0400 | [diff] [blame] | 8770 | static int |
| 8771 | _nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle, |
Weston Andros Adamson | b1b3e13 | 2013-09-04 12:13:19 -0400 | [diff] [blame] | 8772 | struct nfs_fsinfo *info, |
| 8773 | struct nfs4_secinfo_flavors *flavors, bool use_integrity) |
Bryan Schumaker | fca78d6 | 2011-06-02 14:59:07 -0400 | [diff] [blame] | 8774 | { |
| 8775 | struct nfs41_secinfo_no_name_args args = { |
| 8776 | .style = SECINFO_STYLE_CURRENT_FH, |
| 8777 | }; |
| 8778 | struct nfs4_secinfo_res res = { |
| 8779 | .flavors = flavors, |
| 8780 | }; |
| 8781 | struct rpc_message msg = { |
| 8782 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_SECINFO_NO_NAME], |
| 8783 | .rpc_argp = &args, |
| 8784 | .rpc_resp = &res, |
| 8785 | }; |
Weston Andros Adamson | b1b3e13 | 2013-09-04 12:13:19 -0400 | [diff] [blame] | 8786 | struct rpc_clnt *clnt = server->client; |
Weston Andros Adamson | 7cb852d | 2013-09-10 18:44:31 -0400 | [diff] [blame] | 8787 | struct rpc_cred *cred = NULL; |
Weston Andros Adamson | b1b3e13 | 2013-09-04 12:13:19 -0400 | [diff] [blame] | 8788 | int status; |
| 8789 | |
| 8790 | if (use_integrity) { |
| 8791 | clnt = server->nfs_client->cl_rpcclient; |
Weston Andros Adamson | 7cb852d | 2013-09-10 18:44:31 -0400 | [diff] [blame] | 8792 | cred = nfs4_get_clid_cred(server->nfs_client); |
| 8793 | msg.rpc_cred = cred; |
Weston Andros Adamson | b1b3e13 | 2013-09-04 12:13:19 -0400 | [diff] [blame] | 8794 | } |
| 8795 | |
| 8796 | dprintk("--> %s\n", __func__); |
| 8797 | status = nfs4_call_sync(clnt, server, &msg, &args.seq_args, |
| 8798 | &res.seq_res, 0); |
| 8799 | dprintk("<-- %s status=%d\n", __func__, status); |
| 8800 | |
Weston Andros Adamson | 7cb852d | 2013-09-10 18:44:31 -0400 | [diff] [blame] | 8801 | if (cred) |
| 8802 | put_rpccred(cred); |
Weston Andros Adamson | b1b3e13 | 2013-09-04 12:13:19 -0400 | [diff] [blame] | 8803 | |
| 8804 | return status; |
Bryan Schumaker | fca78d6 | 2011-06-02 14:59:07 -0400 | [diff] [blame] | 8805 | } |
| 8806 | |
| 8807 | static int |
| 8808 | nfs41_proc_secinfo_no_name(struct nfs_server *server, struct nfs_fh *fhandle, |
| 8809 | struct nfs_fsinfo *info, struct nfs4_secinfo_flavors *flavors) |
| 8810 | { |
| 8811 | struct nfs4_exception exception = { }; |
| 8812 | int err; |
| 8813 | do { |
Weston Andros Adamson | b1b3e13 | 2013-09-04 12:13:19 -0400 | [diff] [blame] | 8814 | /* first try using integrity protection */ |
| 8815 | err = -NFS4ERR_WRONGSEC; |
| 8816 | |
| 8817 | /* try to use integrity protection with machine cred */ |
| 8818 | if (_nfs4_is_integrity_protected(server->nfs_client)) |
| 8819 | err = _nfs41_proc_secinfo_no_name(server, fhandle, info, |
| 8820 | flavors, true); |
| 8821 | |
| 8822 | /* |
| 8823 | * if unable to use integrity protection, or SECINFO with |
| 8824 | * integrity protection returns NFS4ERR_WRONGSEC (which is |
| 8825 | * disallowed by spec, but exists in deployed servers) use |
| 8826 | * the current filesystem's rpc_client and the user cred. |
| 8827 | */ |
| 8828 | if (err == -NFS4ERR_WRONGSEC) |
| 8829 | err = _nfs41_proc_secinfo_no_name(server, fhandle, info, |
| 8830 | flavors, false); |
| 8831 | |
Bryan Schumaker | fca78d6 | 2011-06-02 14:59:07 -0400 | [diff] [blame] | 8832 | switch (err) { |
| 8833 | case 0: |
| 8834 | case -NFS4ERR_WRONGSEC: |
Weston Andros Adamson | 78b19ba | 2014-01-13 16:54:45 -0500 | [diff] [blame] | 8835 | case -ENOTSUPP: |
Trond Myklebust | 05e9cfb | 2012-03-27 18:13:02 -0400 | [diff] [blame] | 8836 | goto out; |
Bryan Schumaker | fca78d6 | 2011-06-02 14:59:07 -0400 | [diff] [blame] | 8837 | default: |
| 8838 | err = nfs4_handle_exception(server, err, &exception); |
| 8839 | } |
| 8840 | } while (exception.retry); |
Trond Myklebust | 05e9cfb | 2012-03-27 18:13:02 -0400 | [diff] [blame] | 8841 | out: |
Bryan Schumaker | fca78d6 | 2011-06-02 14:59:07 -0400 | [diff] [blame] | 8842 | return err; |
| 8843 | } |
| 8844 | |
| 8845 | static int |
| 8846 | nfs41_find_root_sec(struct nfs_server *server, struct nfs_fh *fhandle, |
| 8847 | struct nfs_fsinfo *info) |
| 8848 | { |
| 8849 | int err; |
| 8850 | struct page *page; |
Anna Schumaker | 367156d | 2013-09-25 17:02:48 -0400 | [diff] [blame] | 8851 | rpc_authflavor_t flavor = RPC_AUTH_MAXFLAVOR; |
Bryan Schumaker | fca78d6 | 2011-06-02 14:59:07 -0400 | [diff] [blame] | 8852 | struct nfs4_secinfo_flavors *flavors; |
Weston Andros Adamson | 58a8cf1 | 2013-09-24 13:58:02 -0400 | [diff] [blame] | 8853 | struct nfs4_secinfo4 *secinfo; |
| 8854 | int i; |
Bryan Schumaker | fca78d6 | 2011-06-02 14:59:07 -0400 | [diff] [blame] | 8855 | |
| 8856 | page = alloc_page(GFP_KERNEL); |
| 8857 | if (!page) { |
| 8858 | err = -ENOMEM; |
| 8859 | goto out; |
| 8860 | } |
| 8861 | |
| 8862 | flavors = page_address(page); |
| 8863 | err = nfs41_proc_secinfo_no_name(server, fhandle, info, flavors); |
| 8864 | |
| 8865 | /* |
| 8866 | * Fall back on "guess and check" method if |
| 8867 | * the server doesn't support SECINFO_NO_NAME |
| 8868 | */ |
Weston Andros Adamson | 78b19ba | 2014-01-13 16:54:45 -0500 | [diff] [blame] | 8869 | if (err == -NFS4ERR_WRONGSEC || err == -ENOTSUPP) { |
Bryan Schumaker | fca78d6 | 2011-06-02 14:59:07 -0400 | [diff] [blame] | 8870 | err = nfs4_find_root_sec(server, fhandle, info); |
| 8871 | goto out_freepage; |
| 8872 | } |
| 8873 | if (err) |
| 8874 | goto out_freepage; |
| 8875 | |
Weston Andros Adamson | 58a8cf1 | 2013-09-24 13:58:02 -0400 | [diff] [blame] | 8876 | for (i = 0; i < flavors->num_flavors; i++) { |
| 8877 | secinfo = &flavors->flavors[i]; |
| 8878 | |
| 8879 | switch (secinfo->flavor) { |
| 8880 | case RPC_AUTH_NULL: |
| 8881 | case RPC_AUTH_UNIX: |
| 8882 | case RPC_AUTH_GSS: |
| 8883 | flavor = rpcauth_get_pseudoflavor(secinfo->flavor, |
| 8884 | &secinfo->flavor_info); |
| 8885 | break; |
| 8886 | default: |
| 8887 | flavor = RPC_AUTH_MAXFLAVOR; |
| 8888 | break; |
| 8889 | } |
| 8890 | |
Weston Andros Adamson | 4d4b69d | 2013-10-18 15:15:19 -0400 | [diff] [blame] | 8891 | if (!nfs_auth_info_match(&server->auth_info, flavor)) |
| 8892 | flavor = RPC_AUTH_MAXFLAVOR; |
| 8893 | |
Weston Andros Adamson | 58a8cf1 | 2013-09-24 13:58:02 -0400 | [diff] [blame] | 8894 | if (flavor != RPC_AUTH_MAXFLAVOR) { |
| 8895 | err = nfs4_lookup_root_sec(server, fhandle, |
| 8896 | info, flavor); |
| 8897 | if (!err) |
| 8898 | break; |
| 8899 | } |
| 8900 | } |
| 8901 | |
| 8902 | if (flavor == RPC_AUTH_MAXFLAVOR) |
| 8903 | err = -EPERM; |
Bryan Schumaker | fca78d6 | 2011-06-02 14:59:07 -0400 | [diff] [blame] | 8904 | |
| 8905 | out_freepage: |
| 8906 | put_page(page); |
| 8907 | if (err == -EACCES) |
| 8908 | return -EPERM; |
| 8909 | out: |
| 8910 | return err; |
| 8911 | } |
Bryan Schumaker | 1cab065 | 2012-01-31 10:39:29 -0500 | [diff] [blame] | 8912 | |
Trond Myklebust | ab7cb0d | 2013-05-20 11:20:27 -0400 | [diff] [blame] | 8913 | static int _nfs41_test_stateid(struct nfs_server *server, |
| 8914 | nfs4_stateid *stateid, |
| 8915 | struct rpc_cred *cred) |
Bryan Schumaker | 7d97479 | 2011-06-02 14:59:08 -0400 | [diff] [blame] | 8916 | { |
| 8917 | int status; |
| 8918 | struct nfs41_test_stateid_args args = { |
Bryan Schumaker | 1cab065 | 2012-01-31 10:39:29 -0500 | [diff] [blame] | 8919 | .stateid = stateid, |
Bryan Schumaker | 7d97479 | 2011-06-02 14:59:08 -0400 | [diff] [blame] | 8920 | }; |
| 8921 | struct nfs41_test_stateid_res res; |
| 8922 | struct rpc_message msg = { |
| 8923 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_TEST_STATEID], |
| 8924 | .rpc_argp = &args, |
| 8925 | .rpc_resp = &res, |
Trond Myklebust | ab7cb0d | 2013-05-20 11:20:27 -0400 | [diff] [blame] | 8926 | .rpc_cred = cred, |
Bryan Schumaker | 7d97479 | 2011-06-02 14:59:08 -0400 | [diff] [blame] | 8927 | }; |
Weston Andros Adamson | 3787d50 | 2013-08-13 16:37:36 -0400 | [diff] [blame] | 8928 | struct rpc_clnt *rpc_client = server->client; |
| 8929 | |
| 8930 | nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID, |
| 8931 | &rpc_client, &msg); |
Bryan Schumaker | 1cab065 | 2012-01-31 10:39:29 -0500 | [diff] [blame] | 8932 | |
Chuck Lever | 38527b1 | 2012-07-11 16:30:23 -0400 | [diff] [blame] | 8933 | dprintk("NFS call test_stateid %p\n", stateid); |
Chuck Lever | a9c92d6 | 2013-08-09 12:48:18 -0400 | [diff] [blame] | 8934 | nfs4_init_sequence(&args.seq_args, &res.seq_res, 0); |
Trond Myklebust | 8fe72ba | 2012-10-29 19:02:20 -0400 | [diff] [blame] | 8935 | nfs4_set_sequence_privileged(&args.seq_args); |
Weston Andros Adamson | 3787d50 | 2013-08-13 16:37:36 -0400 | [diff] [blame] | 8936 | status = nfs4_call_sync_sequence(rpc_client, server, &msg, |
Trond Myklebust | 8fe72ba | 2012-10-29 19:02:20 -0400 | [diff] [blame] | 8937 | &args.seq_args, &res.seq_res); |
Chuck Lever | 38527b1 | 2012-07-11 16:30:23 -0400 | [diff] [blame] | 8938 | if (status != NFS_OK) { |
| 8939 | dprintk("NFS reply test_stateid: failed, %d\n", status); |
Chuck Lever | 377e507 | 2012-07-11 16:29:45 -0400 | [diff] [blame] | 8940 | return status; |
Chuck Lever | 38527b1 | 2012-07-11 16:30:23 -0400 | [diff] [blame] | 8941 | } |
| 8942 | dprintk("NFS reply test_stateid: succeeded, %d\n", -res.status); |
Chuck Lever | 377e507 | 2012-07-11 16:29:45 -0400 | [diff] [blame] | 8943 | return -res.status; |
Bryan Schumaker | 7d97479 | 2011-06-02 14:59:08 -0400 | [diff] [blame] | 8944 | } |
| 8945 | |
Trond Myklebust | 43912bb | 2016-09-22 13:38:56 -0400 | [diff] [blame] | 8946 | static void nfs4_handle_delay_or_session_error(struct nfs_server *server, |
| 8947 | int err, struct nfs4_exception *exception) |
| 8948 | { |
| 8949 | exception->retry = 0; |
| 8950 | switch(err) { |
| 8951 | case -NFS4ERR_DELAY: |
Trond Myklebust | 76e8a1b | 2016-09-22 13:39:19 -0400 | [diff] [blame] | 8952 | case -NFS4ERR_RETRY_UNCACHED_REP: |
Trond Myklebust | 43912bb | 2016-09-22 13:38:56 -0400 | [diff] [blame] | 8953 | nfs4_handle_exception(server, err, exception); |
| 8954 | break; |
| 8955 | case -NFS4ERR_BADSESSION: |
| 8956 | case -NFS4ERR_BADSLOT: |
| 8957 | case -NFS4ERR_BAD_HIGH_SLOT: |
| 8958 | case -NFS4ERR_CONN_NOT_BOUND_TO_SESSION: |
| 8959 | case -NFS4ERR_DEADSESSION: |
| 8960 | nfs4_do_handle_exception(server, err, exception); |
| 8961 | } |
| 8962 | } |
| 8963 | |
Chuck Lever | 38527b1 | 2012-07-11 16:30:23 -0400 | [diff] [blame] | 8964 | /** |
| 8965 | * nfs41_test_stateid - perform a TEST_STATEID operation |
| 8966 | * |
| 8967 | * @server: server / transport on which to perform the operation |
| 8968 | * @stateid: state ID to test |
Trond Myklebust | ab7cb0d | 2013-05-20 11:20:27 -0400 | [diff] [blame] | 8969 | * @cred: credential |
Chuck Lever | 38527b1 | 2012-07-11 16:30:23 -0400 | [diff] [blame] | 8970 | * |
| 8971 | * Returns NFS_OK if the server recognizes that "stateid" is valid. |
| 8972 | * Otherwise a negative NFS4ERR value is returned if the operation |
| 8973 | * failed or the state ID is not currently valid. |
| 8974 | */ |
Trond Myklebust | ab7cb0d | 2013-05-20 11:20:27 -0400 | [diff] [blame] | 8975 | static int nfs41_test_stateid(struct nfs_server *server, |
| 8976 | nfs4_stateid *stateid, |
| 8977 | struct rpc_cred *cred) |
Bryan Schumaker | 7d97479 | 2011-06-02 14:59:08 -0400 | [diff] [blame] | 8978 | { |
| 8979 | struct nfs4_exception exception = { }; |
| 8980 | int err; |
| 8981 | do { |
Trond Myklebust | ab7cb0d | 2013-05-20 11:20:27 -0400 | [diff] [blame] | 8982 | err = _nfs41_test_stateid(server, stateid, cred); |
Trond Myklebust | 43912bb | 2016-09-22 13:38:56 -0400 | [diff] [blame] | 8983 | nfs4_handle_delay_or_session_error(server, err, &exception); |
Bryan Schumaker | 7d97479 | 2011-06-02 14:59:08 -0400 | [diff] [blame] | 8984 | } while (exception.retry); |
| 8985 | return err; |
| 8986 | } |
Bryan Schumaker | 9aeda35 | 2011-06-02 14:59:09 -0400 | [diff] [blame] | 8987 | |
Trond Myklebust | 7c1d5fa | 2013-05-03 14:40:01 -0400 | [diff] [blame] | 8988 | struct nfs_free_stateid_data { |
| 8989 | struct nfs_server *server; |
| 8990 | struct nfs41_free_stateid_args args; |
Bryan Schumaker | 9aeda35 | 2011-06-02 14:59:09 -0400 | [diff] [blame] | 8991 | struct nfs41_free_stateid_res res; |
Trond Myklebust | 7c1d5fa | 2013-05-03 14:40:01 -0400 | [diff] [blame] | 8992 | }; |
| 8993 | |
| 8994 | static void nfs41_free_stateid_prepare(struct rpc_task *task, void *calldata) |
| 8995 | { |
| 8996 | struct nfs_free_stateid_data *data = calldata; |
| 8997 | nfs41_setup_sequence(nfs4_get_session(data->server), |
| 8998 | &data->args.seq_args, |
| 8999 | &data->res.seq_res, |
| 9000 | task); |
| 9001 | } |
| 9002 | |
| 9003 | static void nfs41_free_stateid_done(struct rpc_task *task, void *calldata) |
| 9004 | { |
| 9005 | struct nfs_free_stateid_data *data = calldata; |
| 9006 | |
| 9007 | nfs41_sequence_done(task, &data->res.seq_res); |
| 9008 | |
| 9009 | switch (task->tk_status) { |
| 9010 | case -NFS4ERR_DELAY: |
NeilBrown | 8478eaa | 2014-09-18 16:09:27 +1000 | [diff] [blame] | 9011 | if (nfs4_async_handle_error(task, data->server, NULL, NULL) == -EAGAIN) |
Trond Myklebust | 7c1d5fa | 2013-05-03 14:40:01 -0400 | [diff] [blame] | 9012 | rpc_restart_call_prepare(task); |
| 9013 | } |
| 9014 | } |
| 9015 | |
| 9016 | static void nfs41_free_stateid_release(void *calldata) |
| 9017 | { |
| 9018 | kfree(calldata); |
| 9019 | } |
| 9020 | |
Trond Myklebust | 17f26b1 | 2013-08-21 15:48:42 -0400 | [diff] [blame] | 9021 | static const struct rpc_call_ops nfs41_free_stateid_ops = { |
Trond Myklebust | 7c1d5fa | 2013-05-03 14:40:01 -0400 | [diff] [blame] | 9022 | .rpc_call_prepare = nfs41_free_stateid_prepare, |
| 9023 | .rpc_call_done = nfs41_free_stateid_done, |
| 9024 | .rpc_release = nfs41_free_stateid_release, |
| 9025 | }; |
| 9026 | |
| 9027 | static struct rpc_task *_nfs41_free_stateid(struct nfs_server *server, |
Trond Myklebust | f0b0bf8 | 2016-09-22 13:39:04 -0400 | [diff] [blame] | 9028 | const nfs4_stateid *stateid, |
Trond Myklebust | ab7cb0d | 2013-05-20 11:20:27 -0400 | [diff] [blame] | 9029 | struct rpc_cred *cred, |
Trond Myklebust | 7c1d5fa | 2013-05-03 14:40:01 -0400 | [diff] [blame] | 9030 | bool privileged) |
| 9031 | { |
Bryan Schumaker | 9aeda35 | 2011-06-02 14:59:09 -0400 | [diff] [blame] | 9032 | struct rpc_message msg = { |
| 9033 | .rpc_proc = &nfs4_procedures[NFSPROC4_CLNT_FREE_STATEID], |
Trond Myklebust | ab7cb0d | 2013-05-20 11:20:27 -0400 | [diff] [blame] | 9034 | .rpc_cred = cred, |
Bryan Schumaker | 9aeda35 | 2011-06-02 14:59:09 -0400 | [diff] [blame] | 9035 | }; |
Trond Myklebust | 7c1d5fa | 2013-05-03 14:40:01 -0400 | [diff] [blame] | 9036 | struct rpc_task_setup task_setup = { |
| 9037 | .rpc_client = server->client, |
| 9038 | .rpc_message = &msg, |
| 9039 | .callback_ops = &nfs41_free_stateid_ops, |
| 9040 | .flags = RPC_TASK_ASYNC, |
| 9041 | }; |
| 9042 | struct nfs_free_stateid_data *data; |
Bryan Schumaker | 9aeda35 | 2011-06-02 14:59:09 -0400 | [diff] [blame] | 9043 | |
Weston Andros Adamson | 3787d50 | 2013-08-13 16:37:36 -0400 | [diff] [blame] | 9044 | nfs4_state_protect(server->nfs_client, NFS_SP4_MACH_CRED_STATEID, |
| 9045 | &task_setup.rpc_client, &msg); |
| 9046 | |
Chuck Lever | 38527b1 | 2012-07-11 16:30:23 -0400 | [diff] [blame] | 9047 | dprintk("NFS call free_stateid %p\n", stateid); |
Trond Myklebust | 7c1d5fa | 2013-05-03 14:40:01 -0400 | [diff] [blame] | 9048 | data = kmalloc(sizeof(*data), GFP_NOFS); |
| 9049 | if (!data) |
| 9050 | return ERR_PTR(-ENOMEM); |
| 9051 | data->server = server; |
| 9052 | nfs4_stateid_copy(&data->args.stateid, stateid); |
| 9053 | |
| 9054 | task_setup.callback_data = data; |
| 9055 | |
| 9056 | msg.rpc_argp = &data->args; |
| 9057 | msg.rpc_resp = &data->res; |
Trond Myklebust | 76e8a1b | 2016-09-22 13:39:19 -0400 | [diff] [blame] | 9058 | nfs4_init_sequence(&data->args.seq_args, &data->res.seq_res, 1); |
Trond Myklebust | 7c1d5fa | 2013-05-03 14:40:01 -0400 | [diff] [blame] | 9059 | if (privileged) |
| 9060 | nfs4_set_sequence_privileged(&data->args.seq_args); |
| 9061 | |
| 9062 | return rpc_run_task(&task_setup); |
Bryan Schumaker | 9aeda35 | 2011-06-02 14:59:09 -0400 | [diff] [blame] | 9063 | } |
| 9064 | |
Chuck Lever | 38527b1 | 2012-07-11 16:30:23 -0400 | [diff] [blame] | 9065 | /** |
| 9066 | * nfs41_free_stateid - perform a FREE_STATEID operation |
| 9067 | * |
| 9068 | * @server: server / transport on which to perform the operation |
| 9069 | * @stateid: state ID to release |
Trond Myklebust | ab7cb0d | 2013-05-20 11:20:27 -0400 | [diff] [blame] | 9070 | * @cred: credential |
Trond Myklebust | f0b0bf8 | 2016-09-22 13:39:04 -0400 | [diff] [blame] | 9071 | * @is_recovery: set to true if this call needs to be privileged |
Chuck Lever | 38527b1 | 2012-07-11 16:30:23 -0400 | [diff] [blame] | 9072 | * |
Trond Myklebust | f0b0bf8 | 2016-09-22 13:39:04 -0400 | [diff] [blame] | 9073 | * Note: this function is always asynchronous. |
Chuck Lever | 38527b1 | 2012-07-11 16:30:23 -0400 | [diff] [blame] | 9074 | */ |
Trond Myklebust | ab7cb0d | 2013-05-20 11:20:27 -0400 | [diff] [blame] | 9075 | static int nfs41_free_stateid(struct nfs_server *server, |
Trond Myklebust | f0b0bf8 | 2016-09-22 13:39:04 -0400 | [diff] [blame] | 9076 | const nfs4_stateid *stateid, |
| 9077 | struct rpc_cred *cred, |
| 9078 | bool is_recovery) |
Bryan Schumaker | 9aeda35 | 2011-06-02 14:59:09 -0400 | [diff] [blame] | 9079 | { |
Trond Myklebust | 7c1d5fa | 2013-05-03 14:40:01 -0400 | [diff] [blame] | 9080 | struct rpc_task *task; |
Trond Myklebust | 7c1d5fa | 2013-05-03 14:40:01 -0400 | [diff] [blame] | 9081 | |
Trond Myklebust | f0b0bf8 | 2016-09-22 13:39:04 -0400 | [diff] [blame] | 9082 | task = _nfs41_free_stateid(server, stateid, cred, is_recovery); |
Trond Myklebust | 7c1d5fa | 2013-05-03 14:40:01 -0400 | [diff] [blame] | 9083 | if (IS_ERR(task)) |
| 9084 | return PTR_ERR(task); |
Trond Myklebust | 7c1d5fa | 2013-05-03 14:40:01 -0400 | [diff] [blame] | 9085 | rpc_put_task(task); |
Trond Myklebust | f0b0bf8 | 2016-09-22 13:39:04 -0400 | [diff] [blame] | 9086 | return 0; |
Bryan Schumaker | 9aeda35 | 2011-06-02 14:59:09 -0400 | [diff] [blame] | 9087 | } |
Trond Myklebust | 36281ca | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 9088 | |
Jeff Layton | f1cdae8 | 2014-05-01 06:28:47 -0400 | [diff] [blame] | 9089 | static void |
| 9090 | nfs41_free_lock_state(struct nfs_server *server, struct nfs4_lock_state *lsp) |
Trond Myklebust | c8b2d0b | 2013-05-03 16:22:55 -0400 | [diff] [blame] | 9091 | { |
Trond Myklebust | ab7cb0d | 2013-05-20 11:20:27 -0400 | [diff] [blame] | 9092 | struct rpc_cred *cred = lsp->ls_state->owner->so_cred; |
Trond Myklebust | c8b2d0b | 2013-05-03 16:22:55 -0400 | [diff] [blame] | 9093 | |
Trond Myklebust | f0b0bf8 | 2016-09-22 13:39:04 -0400 | [diff] [blame] | 9094 | nfs41_free_stateid(server, &lsp->ls_stateid, cred, false); |
Trond Myklebust | c8b2d0b | 2013-05-03 16:22:55 -0400 | [diff] [blame] | 9095 | nfs4_free_lock_state(server, lsp); |
Trond Myklebust | c8b2d0b | 2013-05-03 16:22:55 -0400 | [diff] [blame] | 9096 | } |
| 9097 | |
Trond Myklebust | 36281ca | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 9098 | static bool nfs41_match_stateid(const nfs4_stateid *s1, |
| 9099 | const nfs4_stateid *s2) |
| 9100 | { |
Trond Myklebust | 93b717f | 2016-05-16 17:42:43 -0400 | [diff] [blame] | 9101 | if (s1->type != s2->type) |
| 9102 | return false; |
| 9103 | |
Trond Myklebust | 2d2f24a | 2012-03-04 18:13:57 -0500 | [diff] [blame] | 9104 | if (memcmp(s1->other, s2->other, sizeof(s1->other)) != 0) |
Trond Myklebust | 36281ca | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 9105 | return false; |
| 9106 | |
Trond Myklebust | 2d2f24a | 2012-03-04 18:13:57 -0500 | [diff] [blame] | 9107 | if (s1->seqid == s2->seqid) |
Trond Myklebust | 36281ca | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 9108 | return true; |
Trond Myklebust | 2d2f24a | 2012-03-04 18:13:57 -0500 | [diff] [blame] | 9109 | if (s1->seqid == 0 || s2->seqid == 0) |
Trond Myklebust | 36281ca | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 9110 | return true; |
| 9111 | |
| 9112 | return false; |
| 9113 | } |
| 9114 | |
Andy Adamson | 557134a | 2009-04-01 09:21:53 -0400 | [diff] [blame] | 9115 | #endif /* CONFIG_NFS_V4_1 */ |
| 9116 | |
Trond Myklebust | 36281ca | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 9117 | static bool nfs4_match_stateid(const nfs4_stateid *s1, |
| 9118 | const nfs4_stateid *s2) |
| 9119 | { |
Trond Myklebust | f597c53 | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 9120 | return nfs4_stateid_match(s1, s2); |
Trond Myklebust | 36281ca | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 9121 | } |
| 9122 | |
| 9123 | |
Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame] | 9124 | static const struct nfs4_state_recovery_ops nfs40_reboot_recovery_ops = { |
Trond Myklebust | 7eff03a | 2008-12-23 15:21:43 -0500 | [diff] [blame] | 9125 | .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT, |
Trond Myklebust | b79a4a1 | 2008-12-23 15:21:41 -0500 | [diff] [blame] | 9126 | .state_flag_bit = NFS_STATE_RECLAIM_REBOOT, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9127 | .recover_open = nfs4_open_reclaim, |
| 9128 | .recover_lock = nfs4_lock_reclaim, |
Andy Adamson | 591d71c | 2009-04-01 09:22:47 -0400 | [diff] [blame] | 9129 | .establish_clid = nfs4_init_clientid, |
Chuck Lever | 05f4c35 | 2012-09-14 17:24:32 -0400 | [diff] [blame] | 9130 | .detect_trunking = nfs40_discover_server_trunking, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9131 | }; |
| 9132 | |
Andy Adamson | 591d71c | 2009-04-01 09:22:47 -0400 | [diff] [blame] | 9133 | #if defined(CONFIG_NFS_V4_1) |
Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame] | 9134 | static const struct nfs4_state_recovery_ops nfs41_reboot_recovery_ops = { |
Andy Adamson | 591d71c | 2009-04-01 09:22:47 -0400 | [diff] [blame] | 9135 | .owner_flag_bit = NFS_OWNER_RECLAIM_REBOOT, |
| 9136 | .state_flag_bit = NFS_STATE_RECLAIM_REBOOT, |
| 9137 | .recover_open = nfs4_open_reclaim, |
| 9138 | .recover_lock = nfs4_lock_reclaim, |
Andy Adamson | 4d643d1 | 2009-12-04 15:52:24 -0500 | [diff] [blame] | 9139 | .establish_clid = nfs41_init_clientid, |
Ricardo Labiaga | fce5c83 | 2009-12-05 16:08:41 -0500 | [diff] [blame] | 9140 | .reclaim_complete = nfs41_proc_reclaim_complete, |
Chuck Lever | 05f4c35 | 2012-09-14 17:24:32 -0400 | [diff] [blame] | 9141 | .detect_trunking = nfs41_discover_server_trunking, |
Andy Adamson | 591d71c | 2009-04-01 09:22:47 -0400 | [diff] [blame] | 9142 | }; |
| 9143 | #endif /* CONFIG_NFS_V4_1 */ |
| 9144 | |
Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame] | 9145 | static const struct nfs4_state_recovery_ops nfs40_nograce_recovery_ops = { |
Trond Myklebust | 7eff03a | 2008-12-23 15:21:43 -0500 | [diff] [blame] | 9146 | .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE, |
Trond Myklebust | b79a4a1 | 2008-12-23 15:21:41 -0500 | [diff] [blame] | 9147 | .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE, |
Trond Myklebust | 4dfd4f7 | 2014-10-17 15:10:25 +0300 | [diff] [blame] | 9148 | .recover_open = nfs40_open_expired, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9149 | .recover_lock = nfs4_lock_expired, |
Andy Adamson | 591d71c | 2009-04-01 09:22:47 -0400 | [diff] [blame] | 9150 | .establish_clid = nfs4_init_clientid, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9151 | }; |
| 9152 | |
Andy Adamson | 591d71c | 2009-04-01 09:22:47 -0400 | [diff] [blame] | 9153 | #if defined(CONFIG_NFS_V4_1) |
Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame] | 9154 | static const struct nfs4_state_recovery_ops nfs41_nograce_recovery_ops = { |
Andy Adamson | 591d71c | 2009-04-01 09:22:47 -0400 | [diff] [blame] | 9155 | .owner_flag_bit = NFS_OWNER_RECLAIM_NOGRACE, |
| 9156 | .state_flag_bit = NFS_STATE_RECLAIM_NOGRACE, |
Bryan Schumaker | f062eb6 | 2011-06-02 14:59:10 -0400 | [diff] [blame] | 9157 | .recover_open = nfs41_open_expired, |
| 9158 | .recover_lock = nfs41_lock_expired, |
Andy Adamson | 4d643d1 | 2009-12-04 15:52:24 -0500 | [diff] [blame] | 9159 | .establish_clid = nfs41_init_clientid, |
Andy Adamson | 591d71c | 2009-04-01 09:22:47 -0400 | [diff] [blame] | 9160 | }; |
| 9161 | #endif /* CONFIG_NFS_V4_1 */ |
| 9162 | |
Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame] | 9163 | static const struct nfs4_state_maintenance_ops nfs40_state_renewal_ops = { |
Benny Halevy | 29fba38 | 2009-04-01 09:22:44 -0400 | [diff] [blame] | 9164 | .sched_state_renewal = nfs4_proc_async_renew, |
Andy Adamson | a7b7210 | 2009-04-01 09:22:46 -0400 | [diff] [blame] | 9165 | .get_state_renewal_cred_locked = nfs4_get_renew_cred_locked, |
Benny Halevy | 8e69514f | 2009-04-01 09:22:45 -0400 | [diff] [blame] | 9166 | .renew_lease = nfs4_proc_renew, |
Benny Halevy | 29fba38 | 2009-04-01 09:22:44 -0400 | [diff] [blame] | 9167 | }; |
| 9168 | |
| 9169 | #if defined(CONFIG_NFS_V4_1) |
Trond Myklebust | 1728017 | 2012-03-11 13:11:00 -0400 | [diff] [blame] | 9170 | static const struct nfs4_state_maintenance_ops nfs41_state_renewal_ops = { |
Benny Halevy | 29fba38 | 2009-04-01 09:22:44 -0400 | [diff] [blame] | 9171 | .sched_state_renewal = nfs41_proc_async_sequence, |
Andy Adamson | a7b7210 | 2009-04-01 09:22:46 -0400 | [diff] [blame] | 9172 | .get_state_renewal_cred_locked = nfs4_get_machine_cred_locked, |
Benny Halevy | 8e69514f | 2009-04-01 09:22:45 -0400 | [diff] [blame] | 9173 | .renew_lease = nfs4_proc_sequence, |
Benny Halevy | 29fba38 | 2009-04-01 09:22:44 -0400 | [diff] [blame] | 9174 | }; |
| 9175 | #endif |
| 9176 | |
Chuck Lever | ec011fe | 2013-10-17 14:12:39 -0400 | [diff] [blame] | 9177 | static const struct nfs4_mig_recovery_ops nfs40_mig_recovery_ops = { |
Chuck Lever | b03d735 | 2013-10-17 14:12:50 -0400 | [diff] [blame] | 9178 | .get_locations = _nfs40_proc_get_locations, |
Chuck Lever | 44c9993 | 2013-10-17 14:13:30 -0400 | [diff] [blame] | 9179 | .fsid_present = _nfs40_proc_fsid_present, |
Chuck Lever | ec011fe | 2013-10-17 14:12:39 -0400 | [diff] [blame] | 9180 | }; |
| 9181 | |
| 9182 | #if defined(CONFIG_NFS_V4_1) |
| 9183 | static const struct nfs4_mig_recovery_ops nfs41_mig_recovery_ops = { |
Chuck Lever | b03d735 | 2013-10-17 14:12:50 -0400 | [diff] [blame] | 9184 | .get_locations = _nfs41_proc_get_locations, |
Chuck Lever | 44c9993 | 2013-10-17 14:13:30 -0400 | [diff] [blame] | 9185 | .fsid_present = _nfs41_proc_fsid_present, |
Chuck Lever | ec011fe | 2013-10-17 14:12:39 -0400 | [diff] [blame] | 9186 | }; |
| 9187 | #endif /* CONFIG_NFS_V4_1 */ |
| 9188 | |
Trond Myklebust | 97dc135 | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 9189 | static const struct nfs4_minor_version_ops nfs_v4_0_minor_ops = { |
| 9190 | .minor_version = 0, |
Trond Myklebust | 39c6daa | 2013-03-15 16:11:57 -0400 | [diff] [blame] | 9191 | .init_caps = NFS_CAP_READDIRPLUS |
| 9192 | | NFS_CAP_ATOMIC_OPEN |
Trond Myklebust | 39c6daa | 2013-03-15 16:11:57 -0400 | [diff] [blame] | 9193 | | NFS_CAP_POSIX_LOCK, |
Chuck Lever | abf79bb | 2013-08-09 12:49:11 -0400 | [diff] [blame] | 9194 | .init_client = nfs40_init_client, |
| 9195 | .shutdown_client = nfs40_shutdown_client, |
Trond Myklebust | 36281ca | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 9196 | .match_stateid = nfs4_match_stateid, |
Bryan Schumaker | fca78d6 | 2011-06-02 14:59:07 -0400 | [diff] [blame] | 9197 | .find_root_sec = nfs4_find_root_sec, |
Trond Myklebust | c8b2d0b | 2013-05-03 16:22:55 -0400 | [diff] [blame] | 9198 | .free_lock_state = nfs4_release_lockowner, |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 9199 | .test_and_free_expired = nfs40_test_and_free_expired_stateid, |
Trond Myklebust | 63f5f79 | 2015-01-23 19:19:25 -0500 | [diff] [blame] | 9200 | .alloc_seqid = nfs_alloc_seqid, |
Chuck Lever | 9915ea7 | 2013-08-09 12:48:27 -0400 | [diff] [blame] | 9201 | .call_sync_ops = &nfs40_call_sync_ops, |
Trond Myklebust | c48f4f3 | 2010-06-16 09:52:27 -0400 | [diff] [blame] | 9202 | .reboot_recovery_ops = &nfs40_reboot_recovery_ops, |
| 9203 | .nograce_recovery_ops = &nfs40_nograce_recovery_ops, |
| 9204 | .state_renewal_ops = &nfs40_state_renewal_ops, |
Chuck Lever | ec011fe | 2013-10-17 14:12:39 -0400 | [diff] [blame] | 9205 | .mig_recovery_ops = &nfs40_mig_recovery_ops, |
Trond Myklebust | 97dc135 | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 9206 | }; |
| 9207 | |
| 9208 | #if defined(CONFIG_NFS_V4_1) |
Trond Myklebust | 63f5f79 | 2015-01-23 19:19:25 -0500 | [diff] [blame] | 9209 | static struct nfs_seqid * |
| 9210 | nfs_alloc_no_seqid(struct nfs_seqid_counter *arg1, gfp_t arg2) |
| 9211 | { |
| 9212 | return NULL; |
| 9213 | } |
| 9214 | |
Trond Myklebust | 97dc135 | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 9215 | static const struct nfs4_minor_version_ops nfs_v4_1_minor_ops = { |
| 9216 | .minor_version = 1, |
Trond Myklebust | 39c6daa | 2013-03-15 16:11:57 -0400 | [diff] [blame] | 9217 | .init_caps = NFS_CAP_READDIRPLUS |
| 9218 | | NFS_CAP_ATOMIC_OPEN |
Trond Myklebust | 3b66486 | 2013-03-17 15:31:15 -0400 | [diff] [blame] | 9219 | | NFS_CAP_POSIX_LOCK |
Trond Myklebust | 49f9a0f | 2013-03-15 16:44:28 -0400 | [diff] [blame] | 9220 | | NFS_CAP_STATEID_NFSV41 |
Anna Schumaker | e983120 | 2014-10-22 15:53:10 -0400 | [diff] [blame] | 9221 | | NFS_CAP_ATOMIC_OPEN_V1, |
Chuck Lever | abf79bb | 2013-08-09 12:49:11 -0400 | [diff] [blame] | 9222 | .init_client = nfs41_init_client, |
| 9223 | .shutdown_client = nfs41_shutdown_client, |
Trond Myklebust | 36281ca | 2012-03-04 18:13:56 -0500 | [diff] [blame] | 9224 | .match_stateid = nfs41_match_stateid, |
Bryan Schumaker | fca78d6 | 2011-06-02 14:59:07 -0400 | [diff] [blame] | 9225 | .find_root_sec = nfs41_find_root_sec, |
Trond Myklebust | c8b2d0b | 2013-05-03 16:22:55 -0400 | [diff] [blame] | 9226 | .free_lock_state = nfs41_free_lock_state, |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 9227 | .test_and_free_expired = nfs41_test_and_free_expired_stateid, |
Trond Myklebust | 63f5f79 | 2015-01-23 19:19:25 -0500 | [diff] [blame] | 9228 | .alloc_seqid = nfs_alloc_no_seqid, |
Andy Adamson | 04fa2c6 | 2016-09-09 09:22:29 -0400 | [diff] [blame] | 9229 | .session_trunk = nfs4_test_session_trunk, |
Chuck Lever | 9915ea7 | 2013-08-09 12:48:27 -0400 | [diff] [blame] | 9230 | .call_sync_ops = &nfs41_call_sync_ops, |
Trond Myklebust | c48f4f3 | 2010-06-16 09:52:27 -0400 | [diff] [blame] | 9231 | .reboot_recovery_ops = &nfs41_reboot_recovery_ops, |
| 9232 | .nograce_recovery_ops = &nfs41_nograce_recovery_ops, |
| 9233 | .state_renewal_ops = &nfs41_state_renewal_ops, |
Chuck Lever | ec011fe | 2013-10-17 14:12:39 -0400 | [diff] [blame] | 9234 | .mig_recovery_ops = &nfs41_mig_recovery_ops, |
Trond Myklebust | 97dc135 | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 9235 | }; |
| 9236 | #endif |
| 9237 | |
Steve Dickson | 42c2c42 | 2013-05-22 12:50:38 -0400 | [diff] [blame] | 9238 | #if defined(CONFIG_NFS_V4_2) |
| 9239 | static const struct nfs4_minor_version_ops nfs_v4_2_minor_ops = { |
| 9240 | .minor_version = 2, |
Bryan Schumaker | 7017310 | 2013-06-19 13:41:43 -0400 | [diff] [blame] | 9241 | .init_caps = NFS_CAP_READDIRPLUS |
| 9242 | | NFS_CAP_ATOMIC_OPEN |
Bryan Schumaker | 7017310 | 2013-06-19 13:41:43 -0400 | [diff] [blame] | 9243 | | NFS_CAP_POSIX_LOCK |
| 9244 | | NFS_CAP_STATEID_NFSV41 |
Anna Schumaker | e983120 | 2014-10-22 15:53:10 -0400 | [diff] [blame] | 9245 | | NFS_CAP_ATOMIC_OPEN_V1 |
Anna Schumaker | f4ac167 | 2014-11-25 13:18:15 -0500 | [diff] [blame] | 9246 | | NFS_CAP_ALLOCATE |
Anna Schumaker | 2e72448 | 2013-05-21 16:53:03 -0400 | [diff] [blame] | 9247 | | NFS_CAP_COPY |
Anna Schumaker | 624bd5b | 2014-11-25 13:18:16 -0500 | [diff] [blame] | 9248 | | NFS_CAP_DEALLOCATE |
Trond Myklebust | 6c5a0d8 | 2015-06-27 11:45:46 -0400 | [diff] [blame] | 9249 | | NFS_CAP_SEEK |
Peng Tao | e5341f3 | 2015-09-26 02:24:35 +0800 | [diff] [blame] | 9250 | | NFS_CAP_LAYOUTSTATS |
| 9251 | | NFS_CAP_CLONE, |
Chuck Lever | abf79bb | 2013-08-09 12:49:11 -0400 | [diff] [blame] | 9252 | .init_client = nfs41_init_client, |
| 9253 | .shutdown_client = nfs41_shutdown_client, |
Steve Dickson | 42c2c42 | 2013-05-22 12:50:38 -0400 | [diff] [blame] | 9254 | .match_stateid = nfs41_match_stateid, |
| 9255 | .find_root_sec = nfs41_find_root_sec, |
Bryan Schumaker | 7017310 | 2013-06-19 13:41:43 -0400 | [diff] [blame] | 9256 | .free_lock_state = nfs41_free_lock_state, |
Chuck Lever | 9915ea7 | 2013-08-09 12:48:27 -0400 | [diff] [blame] | 9257 | .call_sync_ops = &nfs41_call_sync_ops, |
Trond Myklebust | 45870d6 | 2016-09-22 13:38:59 -0400 | [diff] [blame] | 9258 | .test_and_free_expired = nfs41_test_and_free_expired_stateid, |
Trond Myklebust | 63f5f79 | 2015-01-23 19:19:25 -0500 | [diff] [blame] | 9259 | .alloc_seqid = nfs_alloc_no_seqid, |
Andy Adamson | 04fa2c6 | 2016-09-09 09:22:29 -0400 | [diff] [blame] | 9260 | .session_trunk = nfs4_test_session_trunk, |
Steve Dickson | 42c2c42 | 2013-05-22 12:50:38 -0400 | [diff] [blame] | 9261 | .reboot_recovery_ops = &nfs41_reboot_recovery_ops, |
| 9262 | .nograce_recovery_ops = &nfs41_nograce_recovery_ops, |
| 9263 | .state_renewal_ops = &nfs41_state_renewal_ops, |
Kinglong Mee | 18e3b73 | 2015-08-15 21:52:10 +0800 | [diff] [blame] | 9264 | .mig_recovery_ops = &nfs41_mig_recovery_ops, |
Steve Dickson | 42c2c42 | 2013-05-22 12:50:38 -0400 | [diff] [blame] | 9265 | }; |
| 9266 | #endif |
| 9267 | |
Trond Myklebust | 97dc135 | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 9268 | const struct nfs4_minor_version_ops *nfs_v4_minor_ops[] = { |
| 9269 | [0] = &nfs_v4_0_minor_ops, |
| 9270 | #if defined(CONFIG_NFS_V4_1) |
| 9271 | [1] = &nfs_v4_1_minor_ops, |
| 9272 | #endif |
Steve Dickson | 42c2c42 | 2013-05-22 12:50:38 -0400 | [diff] [blame] | 9273 | #if defined(CONFIG_NFS_V4_2) |
| 9274 | [2] = &nfs_v4_2_minor_ops, |
| 9275 | #endif |
Trond Myklebust | 97dc135 | 2010-06-16 09:52:26 -0400 | [diff] [blame] | 9276 | }; |
| 9277 | |
Trond Myklebust | 1399782 | 2016-07-24 17:10:52 -0400 | [diff] [blame] | 9278 | static ssize_t nfs4_listxattr(struct dentry *dentry, char *list, size_t size) |
Andreas Gruenbacher | c4803c4 | 2015-12-02 14:44:41 +0100 | [diff] [blame] | 9279 | { |
| 9280 | ssize_t error, error2; |
| 9281 | |
| 9282 | error = generic_listxattr(dentry, list, size); |
| 9283 | if (error < 0) |
| 9284 | return error; |
| 9285 | if (list) { |
| 9286 | list += error; |
| 9287 | size -= error; |
| 9288 | } |
| 9289 | |
| 9290 | error2 = nfs4_listxattr_nfs4_label(d_inode(dentry), list, size); |
| 9291 | if (error2 < 0) |
| 9292 | return error2; |
| 9293 | return error + error2; |
| 9294 | } |
| 9295 | |
Trond Myklebust | 17f26b1 | 2013-08-21 15:48:42 -0400 | [diff] [blame] | 9296 | static const struct inode_operations nfs4_dir_inode_operations = { |
Bryan Schumaker | 73a7970 | 2012-07-16 16:39:12 -0400 | [diff] [blame] | 9297 | .create = nfs_create, |
| 9298 | .lookup = nfs_lookup, |
| 9299 | .atomic_open = nfs_atomic_open, |
| 9300 | .link = nfs_link, |
| 9301 | .unlink = nfs_unlink, |
| 9302 | .symlink = nfs_symlink, |
| 9303 | .mkdir = nfs_mkdir, |
| 9304 | .rmdir = nfs_rmdir, |
| 9305 | .mknod = nfs_mknod, |
| 9306 | .rename = nfs_rename, |
| 9307 | .permission = nfs_permission, |
| 9308 | .getattr = nfs_getattr, |
| 9309 | .setattr = nfs_setattr, |
| 9310 | .getxattr = generic_getxattr, |
| 9311 | .setxattr = generic_setxattr, |
Andreas Gruenbacher | c4803c4 | 2015-12-02 14:44:41 +0100 | [diff] [blame] | 9312 | .listxattr = nfs4_listxattr, |
Bryan Schumaker | 73a7970 | 2012-07-16 16:39:12 -0400 | [diff] [blame] | 9313 | .removexattr = generic_removexattr, |
| 9314 | }; |
| 9315 | |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 9316 | static const struct inode_operations nfs4_file_inode_operations = { |
J. Bruce Fields | 6b3b549 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 9317 | .permission = nfs_permission, |
| 9318 | .getattr = nfs_getattr, |
| 9319 | .setattr = nfs_setattr, |
Aneesh Kumar K.V | 64c2ce8 | 2010-12-09 11:35:25 +0000 | [diff] [blame] | 9320 | .getxattr = generic_getxattr, |
| 9321 | .setxattr = generic_setxattr, |
Andreas Gruenbacher | c4803c4 | 2015-12-02 14:44:41 +0100 | [diff] [blame] | 9322 | .listxattr = nfs4_listxattr, |
Aneesh Kumar K.V | 64c2ce8 | 2010-12-09 11:35:25 +0000 | [diff] [blame] | 9323 | .removexattr = generic_removexattr, |
J. Bruce Fields | 6b3b549 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 9324 | }; |
| 9325 | |
David Howells | 509de81 | 2006-08-22 20:06:11 -0400 | [diff] [blame] | 9326 | const struct nfs_rpc_ops nfs_v4_clientops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9327 | .version = 4, /* protocol version */ |
| 9328 | .dentry_ops = &nfs4_dentry_operations, |
| 9329 | .dir_inode_ops = &nfs4_dir_inode_operations, |
J. Bruce Fields | 6b3b549 | 2005-06-22 17:16:22 +0000 | [diff] [blame] | 9330 | .file_inode_ops = &nfs4_file_inode_operations, |
Jeff Layton | 1788ea6 | 2011-11-04 13:31:21 -0400 | [diff] [blame] | 9331 | .file_ops = &nfs4_file_operations, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9332 | .getroot = nfs4_proc_get_root, |
Bryan Schumaker | 281cad4 | 2012-04-27 13:27:45 -0400 | [diff] [blame] | 9333 | .submount = nfs4_submount, |
Bryan Schumaker | ff9099f2 | 2012-07-30 16:05:18 -0400 | [diff] [blame] | 9334 | .try_mount = nfs4_try_mount, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9335 | .getattr = nfs4_proc_getattr, |
| 9336 | .setattr = nfs4_proc_setattr, |
| 9337 | .lookup = nfs4_proc_lookup, |
| 9338 | .access = nfs4_proc_access, |
| 9339 | .readlink = nfs4_proc_readlink, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9340 | .create = nfs4_proc_create, |
| 9341 | .remove = nfs4_proc_remove, |
| 9342 | .unlink_setup = nfs4_proc_unlink_setup, |
Bryan Schumaker | 34e137c | 2012-03-19 14:54:41 -0400 | [diff] [blame] | 9343 | .unlink_rpc_prepare = nfs4_proc_unlink_rpc_prepare, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9344 | .unlink_done = nfs4_proc_unlink_done, |
Jeff Layton | d3d4152 | 2010-09-17 17:31:57 -0400 | [diff] [blame] | 9345 | .rename_setup = nfs4_proc_rename_setup, |
Bryan Schumaker | c6bfa1a | 2012-03-19 14:54:42 -0400 | [diff] [blame] | 9346 | .rename_rpc_prepare = nfs4_proc_rename_rpc_prepare, |
Jeff Layton | d3d4152 | 2010-09-17 17:31:57 -0400 | [diff] [blame] | 9347 | .rename_done = nfs4_proc_rename_done, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9348 | .link = nfs4_proc_link, |
| 9349 | .symlink = nfs4_proc_symlink, |
| 9350 | .mkdir = nfs4_proc_mkdir, |
| 9351 | .rmdir = nfs4_proc_remove, |
| 9352 | .readdir = nfs4_proc_readdir, |
| 9353 | .mknod = nfs4_proc_mknod, |
| 9354 | .statfs = nfs4_proc_statfs, |
| 9355 | .fsinfo = nfs4_proc_fsinfo, |
| 9356 | .pathconf = nfs4_proc_pathconf, |
David Howells | e9326dc | 2006-08-22 20:06:10 -0400 | [diff] [blame] | 9357 | .set_capabilities = nfs4_server_capabilities, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9358 | .decode_dirent = nfs4_decode_dirent, |
Anna Schumaker | a4cdda5 | 2014-05-06 09:12:31 -0400 | [diff] [blame] | 9359 | .pgio_rpc_prepare = nfs4_proc_pgio_rpc_prepare, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9360 | .read_setup = nfs4_proc_read_setup, |
Trond Myklebust | ec06c09 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 9361 | .read_done = nfs4_read_done, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9362 | .write_setup = nfs4_proc_write_setup, |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 9363 | .write_done = nfs4_write_done, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9364 | .commit_setup = nfs4_proc_commit_setup, |
Fred Isaman | 0b7c015 | 2012-04-20 14:47:39 -0400 | [diff] [blame] | 9365 | .commit_rpc_prepare = nfs4_proc_commit_rpc_prepare, |
Trond Myklebust | 788e7a8 | 2006-03-20 13:44:27 -0500 | [diff] [blame] | 9366 | .commit_done = nfs4_commit_done, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9367 | .lock = nfs4_proc_lock, |
J. Bruce Fields | e50a1c2 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 9368 | .clear_acl_cache = nfs4_zap_acl_attr, |
Trond Myklebust | 7fe5c39 | 2009-03-19 15:35:50 -0400 | [diff] [blame] | 9369 | .close_context = nfs4_close_context, |
Trond Myklebust | 2b48429 | 2010-09-17 10:56:51 -0400 | [diff] [blame] | 9370 | .open_context = nfs4_atomic_open, |
Bryan Schumaker | 011e2a7 | 2012-06-20 15:53:43 -0400 | [diff] [blame] | 9371 | .have_delegation = nfs4_have_delegation, |
Bryan Schumaker | 57ec14c | 2012-06-20 15:53:44 -0400 | [diff] [blame] | 9372 | .return_delegation = nfs4_inode_return_delegation, |
Bryan Schumaker | 6663ee7 | 2012-06-20 15:53:46 -0400 | [diff] [blame] | 9373 | .alloc_client = nfs4_alloc_client, |
Andy Adamson | 45a52a0 | 2011-03-01 01:34:08 +0000 | [diff] [blame] | 9374 | .init_client = nfs4_init_client, |
Bryan Schumaker | cdb7ece | 2012-06-20 15:53:45 -0400 | [diff] [blame] | 9375 | .free_client = nfs4_free_client, |
Bryan Schumaker | 1179acc | 2012-07-30 16:05:19 -0400 | [diff] [blame] | 9376 | .create_server = nfs4_create_server, |
| 9377 | .clone_server = nfs_clone_server, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9378 | }; |
| 9379 | |
Aneesh Kumar K.V | 64c2ce8 | 2010-12-09 11:35:25 +0000 | [diff] [blame] | 9380 | static const struct xattr_handler nfs4_xattr_nfs4_acl_handler = { |
Andreas Gruenbacher | 98e9cb5 | 2015-12-02 14:44:36 +0100 | [diff] [blame] | 9381 | .name = XATTR_NAME_NFSV4_ACL, |
Aneesh Kumar K.V | 64c2ce8 | 2010-12-09 11:35:25 +0000 | [diff] [blame] | 9382 | .list = nfs4_xattr_list_nfs4_acl, |
| 9383 | .get = nfs4_xattr_get_nfs4_acl, |
| 9384 | .set = nfs4_xattr_set_nfs4_acl, |
| 9385 | }; |
| 9386 | |
| 9387 | const struct xattr_handler *nfs4_xattr_handlers[] = { |
| 9388 | &nfs4_xattr_nfs4_acl_handler, |
David Quigley | c9bccef | 2013-05-22 12:50:45 -0400 | [diff] [blame] | 9389 | #ifdef CONFIG_NFS_V4_SECURITY_LABEL |
| 9390 | &nfs4_xattr_nfs4_label_handler, |
| 9391 | #endif |
Aneesh Kumar K.V | 64c2ce8 | 2010-12-09 11:35:25 +0000 | [diff] [blame] | 9392 | NULL |
| 9393 | }; |
| 9394 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9395 | /* |
| 9396 | * Local variables: |
| 9397 | * c-basic-offset: 8 |
| 9398 | * End: |
| 9399 | */ |