Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * Server-side procedures for NFSv4. |
| 3 | * |
| 4 | * Copyright (c) 2002 The Regents of the University of Michigan. |
| 5 | * All rights reserved. |
| 6 | * |
| 7 | * Kendrick Smith <kmsmith@umich.edu> |
| 8 | * Andy Adamson <andros@umich.edu> |
| 9 | * |
| 10 | * Redistribution and use in source and binary forms, with or without |
| 11 | * modification, are permitted provided that the following conditions |
| 12 | * are met: |
| 13 | * |
| 14 | * 1. Redistributions of source code must retain the above copyright |
| 15 | * notice, this list of conditions and the following disclaimer. |
| 16 | * 2. Redistributions in binary form must reproduce the above copyright |
| 17 | * notice, this list of conditions and the following disclaimer in the |
| 18 | * documentation and/or other materials provided with the distribution. |
| 19 | * 3. Neither the name of the University nor the names of its |
| 20 | * contributors may be used to endorse or promote products derived |
| 21 | * from this software without specific prior written permission. |
| 22 | * |
| 23 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 24 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 25 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 26 | * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 27 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 28 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 29 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 30 | * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 31 | * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 32 | * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 33 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | */ |
J. Bruce Fields | 880a3a5 | 2018-03-21 17:19:02 -0400 | [diff] [blame] | 35 | #include <linux/fs_struct.h> |
NeilBrown | 7e06b7f | 2005-06-23 22:03:13 -0700 | [diff] [blame] | 36 | #include <linux/file.h> |
Anna Schumaker | b0cb908 | 2014-11-07 14:44:27 -0500 | [diff] [blame] | 37 | #include <linux/falloc.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 38 | #include <linux/slab.h> |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 39 | #include <linux/kthread.h> |
Olga Kornievskaia | 624322f | 2019-10-04 16:34:26 -0400 | [diff] [blame] | 40 | #include <linux/sunrpc/addr.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 42 | #include "idmap.h" |
Boaz Harrosh | 9a74af2 | 2009-12-03 20:30:56 +0200 | [diff] [blame] | 43 | #include "cache.h" |
| 44 | #include "xdr4.h" |
J. Bruce Fields | 0a3adad | 2009-11-04 18:12:35 -0500 | [diff] [blame] | 45 | #include "vfs.h" |
Tigran Mkrtchyan | 8b70484 | 2012-02-13 22:55:24 +0100 | [diff] [blame] | 46 | #include "current_stateid.h" |
Stanislav Kinsbursky | 3320fef19 | 2012-11-14 18:22:07 +0300 | [diff] [blame] | 47 | #include "netns.h" |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 48 | #include "acl.h" |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 49 | #include "pnfs.h" |
Christoph Hellwig | 31ef83d | 2014-08-16 19:02:22 -0500 | [diff] [blame] | 50 | #include "trace.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 52 | #ifdef CONFIG_NFSD_V4_SECURITY_LABEL |
| 53 | #include <linux/security.h> |
| 54 | |
| 55 | static inline void |
| 56 | nfsd4_security_inode_setsecctx(struct svc_fh *resfh, struct xdr_netobj *label, u32 *bmval) |
| 57 | { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 58 | struct inode *inode = d_inode(resfh->fh_dentry); |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 59 | int status; |
| 60 | |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 61 | inode_lock(inode); |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 62 | status = security_inode_setsecctx(resfh->fh_dentry, |
| 63 | label->data, label->len); |
Al Viro | 5955102 | 2016-01-22 15:40:57 -0500 | [diff] [blame] | 64 | inode_unlock(inode); |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 65 | |
| 66 | if (status) |
| 67 | /* |
| 68 | * XXX: We should really fail the whole open, but we may |
| 69 | * already have created a new file, so it may be too |
| 70 | * late. For now this seems the least of evils: |
| 71 | */ |
| 72 | bmval[2] &= ~FATTR4_WORD2_SECURITY_LABEL; |
| 73 | |
| 74 | return; |
| 75 | } |
| 76 | #else |
| 77 | static inline void |
| 78 | nfsd4_security_inode_setsecctx(struct svc_fh *resfh, struct xdr_netobj *label, u32 *bmval) |
| 79 | { } |
| 80 | #endif |
| 81 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | #define NFSDDBG_FACILITY NFSDDBG_PROC |
| 83 | |
Yu Zhiguo | 3c8e031 | 2009-05-16 16:22:31 +0800 | [diff] [blame] | 84 | static u32 nfsd_attrmask[] = { |
| 85 | NFSD_WRITEABLE_ATTRS_WORD0, |
| 86 | NFSD_WRITEABLE_ATTRS_WORD1, |
| 87 | NFSD_WRITEABLE_ATTRS_WORD2 |
| 88 | }; |
| 89 | |
| 90 | static u32 nfsd41_ex_attrmask[] = { |
| 91 | NFSD_SUPPATTR_EXCLCREAT_WORD0, |
| 92 | NFSD_SUPPATTR_EXCLCREAT_WORD1, |
| 93 | NFSD_SUPPATTR_EXCLCREAT_WORD2 |
| 94 | }; |
| 95 | |
| 96 | static __be32 |
| 97 | check_attr_support(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 98 | u32 *bmval, u32 *writable) |
| 99 | { |
| 100 | struct dentry *dentry = cstate->current_fh.fh_dentry; |
J. Bruce Fields | 32ddd94 | 2017-01-03 12:30:11 -0500 | [diff] [blame] | 101 | struct svc_export *exp = cstate->current_fh.fh_export; |
Yu Zhiguo | 3c8e031 | 2009-05-16 16:22:31 +0800 | [diff] [blame] | 102 | |
J. Bruce Fields | 916d2d8 | 2016-10-18 14:18:40 -0400 | [diff] [blame] | 103 | if (!nfsd_attrs_supported(cstate->minorversion, bmval)) |
Yu Zhiguo | 3c8e031 | 2009-05-16 16:22:31 +0800 | [diff] [blame] | 104 | return nfserr_attrnotsupp; |
J. Bruce Fields | 916d2d8 | 2016-10-18 14:18:40 -0400 | [diff] [blame] | 105 | if ((bmval[0] & FATTR4_WORD0_ACL) && !IS_POSIXACL(d_inode(dentry))) |
| 106 | return nfserr_attrnotsupp; |
J. Bruce Fields | 32ddd94 | 2017-01-03 12:30:11 -0500 | [diff] [blame] | 107 | if ((bmval[2] & FATTR4_WORD2_SECURITY_LABEL) && |
| 108 | !(exp->ex_flags & NFSEXP_SECURITY_LABEL)) |
| 109 | return nfserr_attrnotsupp; |
J. Bruce Fields | 916d2d8 | 2016-10-18 14:18:40 -0400 | [diff] [blame] | 110 | if (writable && !bmval_is_subset(bmval, writable)) |
| 111 | return nfserr_inval; |
Andreas Gruenbacher | 47057ab | 2016-01-12 20:24:14 +0100 | [diff] [blame] | 112 | if (writable && (bmval[2] & FATTR4_WORD2_MODE_UMASK) && |
| 113 | (bmval[1] & FATTR4_WORD1_MODE)) |
| 114 | return nfserr_inval; |
Yu Zhiguo | 3c8e031 | 2009-05-16 16:22:31 +0800 | [diff] [blame] | 115 | return nfs_ok; |
| 116 | } |
| 117 | |
| 118 | static __be32 |
| 119 | nfsd4_check_open_attributes(struct svc_rqst *rqstp, |
| 120 | struct nfsd4_compound_state *cstate, struct nfsd4_open *open) |
| 121 | { |
| 122 | __be32 status = nfs_ok; |
| 123 | |
| 124 | if (open->op_create == NFS4_OPEN_CREATE) { |
| 125 | if (open->op_createmode == NFS4_CREATE_UNCHECKED |
| 126 | || open->op_createmode == NFS4_CREATE_GUARDED) |
| 127 | status = check_attr_support(rqstp, cstate, |
| 128 | open->op_bmval, nfsd_attrmask); |
| 129 | else if (open->op_createmode == NFS4_CREATE_EXCLUSIVE4_1) |
| 130 | status = check_attr_support(rqstp, cstate, |
| 131 | open->op_bmval, nfsd41_ex_attrmask); |
| 132 | } |
| 133 | |
| 134 | return status; |
| 135 | } |
| 136 | |
Yu Zhiguo | 9208faf | 2009-07-06 17:24:16 +0800 | [diff] [blame] | 137 | static int |
| 138 | is_create_with_attrs(struct nfsd4_open *open) |
| 139 | { |
| 140 | return open->op_create == NFS4_OPEN_CREATE |
| 141 | && (open->op_createmode == NFS4_CREATE_UNCHECKED |
| 142 | || open->op_createmode == NFS4_CREATE_GUARDED |
| 143 | || open->op_createmode == NFS4_CREATE_EXCLUSIVE4_1); |
| 144 | } |
| 145 | |
| 146 | /* |
| 147 | * if error occurs when setting the acl, just clear the acl bit |
| 148 | * in the returned attr bitmap. |
| 149 | */ |
| 150 | static void |
| 151 | do_set_nfs4_acl(struct svc_rqst *rqstp, struct svc_fh *fhp, |
| 152 | struct nfs4_acl *acl, u32 *bmval) |
| 153 | { |
| 154 | __be32 status; |
| 155 | |
| 156 | status = nfsd4_set_nfs4_acl(rqstp, fhp, acl); |
| 157 | if (status) |
| 158 | /* |
| 159 | * We should probably fail the whole open at this point, |
| 160 | * but we've already created the file, so it's too late; |
| 161 | * So this seems the least of evils: |
| 162 | */ |
| 163 | bmval[0] &= ~FATTR4_WORD0_ACL; |
| 164 | } |
| 165 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | static inline void |
| 167 | fh_dup2(struct svc_fh *dst, struct svc_fh *src) |
| 168 | { |
| 169 | fh_put(dst); |
| 170 | dget(src->fh_dentry); |
| 171 | if (src->fh_export) |
Kinglong Mee | bf18f16 | 2014-06-10 22:06:44 +0800 | [diff] [blame] | 172 | exp_get(src->fh_export); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | *dst = *src; |
| 174 | } |
| 175 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 176 | static __be32 |
J. Bruce Fields | dc730e1 | 2006-10-17 00:10:13 -0700 | [diff] [blame] | 177 | do_open_permission(struct svc_rqst *rqstp, struct svc_fh *current_fh, struct nfsd4_open *open, int accmode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 179 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
| 181 | if (open->op_truncate && |
| 182 | !(open->op_share_access & NFS4_SHARE_ACCESS_WRITE)) |
| 183 | return nfserr_inval; |
| 184 | |
J. Bruce Fields | a043226 | 2011-08-25 10:48:39 -0400 | [diff] [blame] | 185 | accmode |= NFSD_MAY_READ_IF_EXEC; |
| 186 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | if (open->op_share_access & NFS4_SHARE_ACCESS_READ) |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 188 | accmode |= NFSD_MAY_READ; |
J. Bruce Fields | 9801d8a | 2006-10-17 00:10:14 -0700 | [diff] [blame] | 189 | if (open->op_share_access & NFS4_SHARE_ACCESS_WRITE) |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 190 | accmode |= (NFSD_MAY_WRITE | NFSD_MAY_TRUNC); |
J. Bruce Fields | 57ecb34 | 2009-12-01 19:42:57 -0500 | [diff] [blame] | 191 | if (open->op_share_deny & NFS4_SHARE_DENY_READ) |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 192 | accmode |= NFSD_MAY_WRITE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | |
| 194 | status = fh_verify(rqstp, current_fh, S_IFREG, accmode); |
| 195 | |
| 196 | return status; |
| 197 | } |
| 198 | |
J. Bruce Fields | aadab6c | 2011-08-15 16:55:02 -0400 | [diff] [blame] | 199 | static __be32 nfsd_check_obj_isreg(struct svc_fh *fh) |
| 200 | { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 201 | umode_t mode = d_inode(fh->fh_dentry)->i_mode; |
J. Bruce Fields | aadab6c | 2011-08-15 16:55:02 -0400 | [diff] [blame] | 202 | |
| 203 | if (S_ISREG(mode)) |
| 204 | return nfs_ok; |
| 205 | if (S_ISDIR(mode)) |
| 206 | return nfserr_isdir; |
| 207 | /* |
| 208 | * Using err_symlink as our catch-all case may look odd; but |
| 209 | * there's no other obvious error for this case in 4.0, and we |
| 210 | * happen to know that it will cause the linux v4 client to do |
| 211 | * the right thing on attempts to open something other than a |
| 212 | * regular file. |
| 213 | */ |
| 214 | return nfserr_symlink; |
| 215 | } |
| 216 | |
J. Bruce Fields | bbc9c36 | 2013-03-22 18:03:49 -0400 | [diff] [blame] | 217 | static void nfsd4_set_open_owner_reply_cache(struct nfsd4_compound_state *cstate, struct nfsd4_open *open, struct svc_fh *resfh) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | { |
J. Bruce Fields | bbc9c36 | 2013-03-22 18:03:49 -0400 | [diff] [blame] | 219 | if (nfsd4_has_session(cstate)) |
| 220 | return; |
| 221 | fh_copy_shallow(&open->op_openowner->oo_owner.so_replay.rp_openfh, |
| 222 | &resfh->fh_handle); |
| 223 | } |
| 224 | |
| 225 | static __be32 |
J. Bruce Fields | c0e6bee | 2012-01-27 17:26:06 -0500 | [diff] [blame] | 226 | do_open_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_open *open, struct svc_fh **resfh) |
J. Bruce Fields | bbc9c36 | 2013-03-22 18:03:49 -0400 | [diff] [blame] | 227 | { |
| 228 | struct svc_fh *current_fh = &cstate->current_fh; |
Neil Brown | 7007c90 | 2012-12-07 15:40:55 -0500 | [diff] [blame] | 229 | int accmode; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 230 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
J. Bruce Fields | c0e6bee | 2012-01-27 17:26:06 -0500 | [diff] [blame] | 232 | *resfh = kmalloc(sizeof(struct svc_fh), GFP_KERNEL); |
| 233 | if (!*resfh) |
J. Bruce Fields | 59deeb9 | 2012-01-27 16:49:55 -0500 | [diff] [blame] | 234 | return nfserr_jukebox; |
J. Bruce Fields | c0e6bee | 2012-01-27 17:26:06 -0500 | [diff] [blame] | 235 | fh_init(*resfh, NFS4_FHSIZE); |
zhengbin | 500c2481 | 2019-12-25 11:19:35 +0800 | [diff] [blame] | 236 | open->op_truncate = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
| 238 | if (open->op_create) { |
Benny Halevy | 79fb54a | 2009-04-03 08:29:17 +0300 | [diff] [blame] | 239 | /* FIXME: check session persistence and pnfs flags. |
| 240 | * The nfsv4.1 spec requires the following semantics: |
| 241 | * |
| 242 | * Persistent | pNFS | Server REQUIRED | Client Allowed |
| 243 | * Reply Cache | server | | |
| 244 | * -------------+--------+-----------------+-------------------- |
| 245 | * no | no | EXCLUSIVE4_1 | EXCLUSIVE4_1 |
| 246 | * | | | (SHOULD) |
| 247 | * | | and EXCLUSIVE4 | or EXCLUSIVE4 |
| 248 | * | | | (SHOULD NOT) |
| 249 | * no | yes | EXCLUSIVE4_1 | EXCLUSIVE4_1 |
| 250 | * yes | no | GUARDED4 | GUARDED4 |
| 251 | * yes | yes | GUARDED4 | GUARDED4 |
| 252 | */ |
| 253 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | /* |
| 255 | * Note: create modes (UNCHECKED,GUARDED...) are the same |
Mi Jinlong | ac6721a | 2011-04-20 17:06:25 +0800 | [diff] [blame] | 256 | * in NFSv4 as in v3 except EXCLUSIVE4_1. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | */ |
J. Bruce Fields | 880a3a5 | 2018-03-21 17:19:02 -0400 | [diff] [blame] | 258 | current->fs->umask = open->op_umask; |
Mi Jinlong | ac6721a | 2011-04-20 17:06:25 +0800 | [diff] [blame] | 259 | status = do_nfsd_create(rqstp, current_fh, open->op_fname.data, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | open->op_fname.len, &open->op_iattr, |
J. Bruce Fields | c0e6bee | 2012-01-27 17:26:06 -0500 | [diff] [blame] | 261 | *resfh, open->op_createmode, |
Jeff Layton | 749997e | 2007-07-31 00:37:51 -0700 | [diff] [blame] | 262 | (u32 *)open->op_verf.data, |
J. Bruce Fields | 856121b | 2011-10-13 11:37:11 -0400 | [diff] [blame] | 263 | &open->op_truncate, &open->op_created); |
J. Bruce Fields | 880a3a5 | 2018-03-21 17:19:02 -0400 | [diff] [blame] | 264 | current->fs->umask = 0; |
Jeff Layton | 749997e | 2007-07-31 00:37:51 -0700 | [diff] [blame] | 265 | |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 266 | if (!status && open->op_label.len) |
J. Bruce Fields | c0e6bee | 2012-01-27 17:26:06 -0500 | [diff] [blame] | 267 | nfsd4_security_inode_setsecctx(*resfh, &open->op_label, open->op_bmval); |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 268 | |
J. Bruce Fields | 99f8872 | 2009-02-02 15:12:27 -0500 | [diff] [blame] | 269 | /* |
Kinglong Mee | ead8fb8 | 2015-07-30 21:55:02 +0800 | [diff] [blame] | 270 | * Following rfc 3530 14.2.16, and rfc 5661 18.16.4 |
| 271 | * use the returned bitmask to indicate which attributes |
| 272 | * we used to store the verifier: |
Jeff Layton | 749997e | 2007-07-31 00:37:51 -0700 | [diff] [blame] | 273 | */ |
Kinglong Mee | ead8fb8 | 2015-07-30 21:55:02 +0800 | [diff] [blame] | 274 | if (nfsd_create_is_exclusive(open->op_createmode) && status == 0) |
| 275 | open->op_bmval[1] |= (FATTR4_WORD1_TIME_ACCESS | |
| 276 | FATTR4_WORD1_TIME_MODIFY); |
J. Bruce Fields | 4335723 | 2014-01-24 18:04:40 -0500 | [diff] [blame] | 277 | } else |
| 278 | /* |
| 279 | * Note this may exit with the parent still locked. |
| 280 | * We will hold the lock until nfsd4_open's final |
| 281 | * lookup, to prevent renames or unlinks until we've had |
| 282 | * a chance to an acquire a delegation if appropriate. |
| 283 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | status = nfsd_lookup(rqstp, current_fh, |
J. Bruce Fields | c0e6bee | 2012-01-27 17:26:06 -0500 | [diff] [blame] | 285 | open->op_fname.data, open->op_fname.len, *resfh); |
J. Bruce Fields | af85852 | 2006-11-08 17:44:39 -0800 | [diff] [blame] | 286 | if (status) |
| 287 | goto out; |
J. Bruce Fields | c0e6bee | 2012-01-27 17:26:06 -0500 | [diff] [blame] | 288 | status = nfsd_check_obj_isreg(*resfh); |
J. Bruce Fields | 9dc4e6c | 2012-04-09 18:06:49 -0400 | [diff] [blame] | 289 | if (status) |
| 290 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | |
Yu Zhiguo | 9208faf | 2009-07-06 17:24:16 +0800 | [diff] [blame] | 292 | if (is_create_with_attrs(open) && open->op_acl != NULL) |
J. Bruce Fields | c0e6bee | 2012-01-27 17:26:06 -0500 | [diff] [blame] | 293 | do_set_nfs4_acl(rqstp, *resfh, open->op_acl, open->op_bmval); |
Yu Zhiguo | 9208faf | 2009-07-06 17:24:16 +0800 | [diff] [blame] | 294 | |
J. Bruce Fields | c0e6bee | 2012-01-27 17:26:06 -0500 | [diff] [blame] | 295 | nfsd4_set_open_owner_reply_cache(cstate, open, *resfh); |
Neil Brown | 7007c90 | 2012-12-07 15:40:55 -0500 | [diff] [blame] | 296 | accmode = NFSD_MAY_NOP; |
J. Bruce Fields | 89f6c33 | 2013-06-19 15:47:37 -0400 | [diff] [blame] | 297 | if (open->op_created || |
| 298 | open->op_claim_type == NFS4_OPEN_CLAIM_DELEGATE_CUR) |
Neil Brown | 7007c90 | 2012-12-07 15:40:55 -0500 | [diff] [blame] | 299 | accmode |= NFSD_MAY_OWNER_OVERRIDE; |
J. Bruce Fields | c0e6bee | 2012-01-27 17:26:06 -0500 | [diff] [blame] | 300 | status = do_open_permission(rqstp, *resfh, open, accmode); |
J. Bruce Fields | 41fd1e4 | 2012-01-27 16:26:02 -0500 | [diff] [blame] | 301 | set_change_info(&open->op_cinfo, current_fh); |
J. Bruce Fields | af85852 | 2006-11-08 17:44:39 -0800 | [diff] [blame] | 302 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | return status; |
| 304 | } |
| 305 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 306 | static __be32 |
J. Bruce Fields | bbc9c36 | 2013-03-22 18:03:49 -0400 | [diff] [blame] | 307 | do_open_fhandle(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_open *open) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | { |
J. Bruce Fields | bbc9c36 | 2013-03-22 18:03:49 -0400 | [diff] [blame] | 309 | struct svc_fh *current_fh = &cstate->current_fh; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 310 | __be32 status; |
J. Bruce Fields | 9f415eb | 2013-05-03 16:09:09 -0400 | [diff] [blame] | 311 | int accmode = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | /* We don't know the target directory, and therefore can not |
| 314 | * set the change info |
| 315 | */ |
| 316 | |
| 317 | memset(&open->op_cinfo, 0, sizeof(struct nfsd4_change_info)); |
| 318 | |
J. Bruce Fields | bbc9c36 | 2013-03-22 18:03:49 -0400 | [diff] [blame] | 319 | nfsd4_set_open_owner_reply_cache(cstate, open, current_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
| 321 | open->op_truncate = (open->op_iattr.ia_valid & ATTR_SIZE) && |
| 322 | (open->op_iattr.ia_size == 0); |
J. Bruce Fields | 9f415eb | 2013-05-03 16:09:09 -0400 | [diff] [blame] | 323 | /* |
| 324 | * In the delegation case, the client is telling us about an |
| 325 | * open that it *already* performed locally, some time ago. We |
| 326 | * should let it succeed now if possible. |
| 327 | * |
| 328 | * In the case of a CLAIM_FH open, on the other hand, the client |
| 329 | * may be counting on us to enforce permissions (the Linux 4.1 |
| 330 | * client uses this for normal opens, for example). |
| 331 | */ |
| 332 | if (open->op_claim_type == NFS4_OPEN_CLAIM_DELEG_CUR_FH) |
| 333 | accmode = NFSD_MAY_OWNER_OVERRIDE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | |
J. Bruce Fields | 9f415eb | 2013-05-03 16:09:09 -0400 | [diff] [blame] | 335 | status = do_open_permission(rqstp, current_fh, open, accmode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | |
| 337 | return status; |
| 338 | } |
| 339 | |
Andy Adamson | 60adfc5 | 2009-04-03 08:28:50 +0300 | [diff] [blame] | 340 | static void |
| 341 | copy_clientid(clientid_t *clid, struct nfsd4_session *session) |
| 342 | { |
| 343 | struct nfsd4_sessionid *sid = |
| 344 | (struct nfsd4_sessionid *)session->se_sessionid.data; |
| 345 | |
| 346 | clid->cl_boot = sid->clientid.cl_boot; |
| 347 | clid->cl_id = sid->clientid.cl_id; |
| 348 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 350 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 351 | nfsd4_open(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 352 | union nfsd4_op_u *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 354 | struct nfsd4_open *open = &u->open; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 355 | __be32 status; |
J. Bruce Fields | c0e6bee | 2012-01-27 17:26:06 -0500 | [diff] [blame] | 356 | struct svc_fh *resfh = NULL; |
Stanislav Kinsbursky | 3320fef19 | 2012-11-14 18:22:07 +0300 | [diff] [blame] | 357 | struct net *net = SVC_NET(rqstp); |
| 358 | struct nfsd_net *nn = net_generic(net, nfsd_net_id); |
J. Bruce Fields | 03f318c | 2018-06-08 12:28:47 -0400 | [diff] [blame] | 359 | bool reclaim = false; |
Andy Adamson | 6668958 | 2009-04-03 08:28:45 +0300 | [diff] [blame] | 360 | |
J. Bruce Fields | fe0750e | 2011-07-30 23:33:59 -0400 | [diff] [blame] | 361 | dprintk("NFSD: nfsd4_open filename %.*s op_openowner %p\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | (int)open->op_fname.len, open->op_fname.data, |
J. Bruce Fields | fe0750e | 2011-07-30 23:33:59 -0400 | [diff] [blame] | 363 | open->op_openowner); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | /* This check required by spec. */ |
| 366 | if (open->op_create && open->op_claim_type != NFS4_OPEN_CLAIM_NULL) |
| 367 | return nfserr_inval; |
| 368 | |
zhengbin | 500c2481 | 2019-12-25 11:19:35 +0800 | [diff] [blame] | 369 | open->op_created = false; |
Mi Jinlong | ab1350b | 2011-07-14 15:06:26 +0800 | [diff] [blame] | 370 | /* |
| 371 | * RFC5661 18.51.3 |
| 372 | * Before RECLAIM_COMPLETE done, server should deny new lock |
| 373 | */ |
| 374 | if (nfsd4_has_session(cstate) && |
Jeff Layton | a52d726 | 2012-03-21 09:52:02 -0400 | [diff] [blame] | 375 | !test_bit(NFSD4_CLIENT_RECLAIM_COMPLETE, |
| 376 | &cstate->session->se_client->cl_flags) && |
Mi Jinlong | ab1350b | 2011-07-14 15:06:26 +0800 | [diff] [blame] | 377 | open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS) |
| 378 | return nfserr_grace; |
| 379 | |
Andy Adamson | 60adfc5 | 2009-04-03 08:28:50 +0300 | [diff] [blame] | 380 | if (nfsd4_has_session(cstate)) |
| 381 | copy_clientid(&open->op_clientid, cstate->session); |
| 382 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | /* check seqid for replay. set nfs4_owner */ |
Kinglong Mee | 6cd2266 | 2015-07-13 17:32:05 +0800 | [diff] [blame] | 384 | status = nfsd4_process_open1(cstate, open, nn); |
Al Viro | a90b061 | 2006-10-19 23:29:03 -0700 | [diff] [blame] | 385 | if (status == nfserr_replay_me) { |
J. Bruce Fields | fe0750e | 2011-07-30 23:33:59 -0400 | [diff] [blame] | 386 | struct nfs4_replay *rp = &open->op_openowner->oo_owner.so_replay; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 387 | fh_put(&cstate->current_fh); |
J. Bruce Fields | a4773c0 | 2009-02-02 17:23:10 -0500 | [diff] [blame] | 388 | fh_copy_shallow(&cstate->current_fh.fh_handle, |
| 389 | &rp->rp_openfh); |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 390 | status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | if (status) |
| 392 | dprintk("nfsd4_open: replay failed" |
| 393 | " restoring previous filehandle\n"); |
| 394 | else |
Al Viro | a90b061 | 2006-10-19 23:29:03 -0700 | [diff] [blame] | 395 | status = nfserr_replay_me; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | } |
| 397 | if (status) |
| 398 | goto out; |
J. Bruce Fields | 9d313b1 | 2013-02-28 12:51:49 -0800 | [diff] [blame] | 399 | if (open->op_xdr_error) { |
| 400 | status = open->op_xdr_error; |
| 401 | goto out; |
| 402 | } |
J. Bruce Fields | fb553c0 | 2006-01-18 17:43:36 -0800 | [diff] [blame] | 403 | |
Yu Zhiguo | 3c8e031 | 2009-05-16 16:22:31 +0800 | [diff] [blame] | 404 | status = nfsd4_check_open_attributes(rqstp, cstate, open); |
| 405 | if (status) |
| 406 | goto out; |
| 407 | |
J. Bruce Fields | fb553c0 | 2006-01-18 17:43:36 -0800 | [diff] [blame] | 408 | /* Openowner is now set, so sequence id will get bumped. Now we need |
| 409 | * these checks before we do any creates: */ |
J. Bruce Fields | cbd0d51 | 2006-02-07 12:58:32 -0800 | [diff] [blame] | 410 | status = nfserr_grace; |
J. Bruce Fields | c87fb4a | 2015-08-06 12:47:02 -0400 | [diff] [blame] | 411 | if (opens_in_grace(net) && open->op_claim_type != NFS4_OPEN_CLAIM_PREVIOUS) |
J. Bruce Fields | cbd0d51 | 2006-02-07 12:58:32 -0800 | [diff] [blame] | 412 | goto out; |
| 413 | status = nfserr_no_grace; |
J. Bruce Fields | c87fb4a | 2015-08-06 12:47:02 -0400 | [diff] [blame] | 414 | if (!opens_in_grace(net) && open->op_claim_type == NFS4_OPEN_CLAIM_PREVIOUS) |
J. Bruce Fields | cbd0d51 | 2006-02-07 12:58:32 -0800 | [diff] [blame] | 415 | goto out; |
J. Bruce Fields | fb553c0 | 2006-01-18 17:43:36 -0800 | [diff] [blame] | 416 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | switch (open->op_claim_type) { |
NeilBrown | 0dd3c19 | 2005-06-23 22:02:56 -0700 | [diff] [blame] | 418 | case NFS4_OPEN_CLAIM_DELEGATE_CUR: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | case NFS4_OPEN_CLAIM_NULL: |
J. Bruce Fields | c0e6bee | 2012-01-27 17:26:06 -0500 | [diff] [blame] | 420 | status = do_open_lookup(rqstp, cstate, open, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | if (status) |
| 422 | goto out; |
| 423 | break; |
| 424 | case NFS4_OPEN_CLAIM_PREVIOUS: |
Stanislav Kinsbursky | 3320fef19 | 2012-11-14 18:22:07 +0300 | [diff] [blame] | 425 | status = nfs4_check_open_reclaim(&open->op_clientid, |
Trond Myklebust | 0fe492d | 2014-06-30 11:48:47 -0400 | [diff] [blame] | 426 | cstate, nn); |
Mi Jinlong | 0cf99b9 | 2011-11-23 10:48:40 +0800 | [diff] [blame] | 427 | if (status) |
| 428 | goto out; |
Jeff Layton | ba5378b | 2014-05-30 09:09:28 -0400 | [diff] [blame] | 429 | open->op_openowner->oo_flags |= NFS4_OO_CONFIRMED; |
J. Bruce Fields | 03f318c | 2018-06-08 12:28:47 -0400 | [diff] [blame] | 430 | reclaim = true; |
Gustavo A. R. Silva | 0a4c926 | 2019-01-23 02:48:28 -0600 | [diff] [blame] | 431 | /* fall through */ |
J. Bruce Fields | 8b289b2 | 2011-10-19 11:52:12 -0400 | [diff] [blame] | 432 | case NFS4_OPEN_CLAIM_FH: |
| 433 | case NFS4_OPEN_CLAIM_DELEG_CUR_FH: |
J. Bruce Fields | bbc9c36 | 2013-03-22 18:03:49 -0400 | [diff] [blame] | 434 | status = do_open_fhandle(rqstp, cstate, open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | if (status) |
| 436 | goto out; |
J. Bruce Fields | c0e6bee | 2012-01-27 17:26:06 -0500 | [diff] [blame] | 437 | resfh = &cstate->current_fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | break; |
J. Bruce Fields | 8b289b2 | 2011-10-19 11:52:12 -0400 | [diff] [blame] | 439 | case NFS4_OPEN_CLAIM_DELEG_PREV_FH: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | case NFS4_OPEN_CLAIM_DELEGATE_PREV: |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 441 | dprintk("NFSD: unsupported OPEN claim type %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | open->op_claim_type); |
| 443 | status = nfserr_notsupp; |
| 444 | goto out; |
| 445 | default: |
J. Bruce Fields | 2fdada0 | 2007-07-27 16:10:37 -0400 | [diff] [blame] | 446 | dprintk("NFSD: Invalid OPEN claim type %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | open->op_claim_type); |
| 448 | status = nfserr_inval; |
| 449 | goto out; |
| 450 | } |
| 451 | /* |
| 452 | * nfsd4_process_open2() does the actual opening of the file. If |
| 453 | * successful, it (1) truncates the file if open->op_truncate was |
| 454 | * set, (2) sets open->op_stateid, (3) sets open->op_delegation. |
| 455 | */ |
J. Bruce Fields | c0e6bee | 2012-01-27 17:26:06 -0500 | [diff] [blame] | 456 | status = nfsd4_process_open2(rqstp, resfh, open); |
Jeff Layton | b3fbfe0 | 2014-07-29 21:37:44 -0400 | [diff] [blame] | 457 | WARN(status && open->op_created, |
| 458 | "nfsd4_process_open2 failed to open newly-created file! status=%u\n", |
| 459 | be32_to_cpu(status)); |
J. Bruce Fields | 03f318c | 2018-06-08 12:28:47 -0400 | [diff] [blame] | 460 | if (reclaim && !status) |
| 461 | nn->somebody_reclaimed = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | out: |
J. Bruce Fields | c0e6bee | 2012-01-27 17:26:06 -0500 | [diff] [blame] | 463 | if (resfh && resfh != &cstate->current_fh) { |
| 464 | fh_dup2(&cstate->current_fh, resfh); |
| 465 | fh_put(resfh); |
| 466 | kfree(resfh); |
| 467 | } |
Jeff Layton | 4229789 | 2015-03-23 10:53:44 -0400 | [diff] [blame] | 468 | nfsd4_cleanup_open_state(cstate, open); |
J. Bruce Fields | 9411b1d | 2013-04-01 16:37:12 -0400 | [diff] [blame] | 469 | nfsd4_bump_seqid(cstate, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | return status; |
| 471 | } |
| 472 | |
| 473 | /* |
J. Bruce Fields | 9d313b1 | 2013-02-28 12:51:49 -0800 | [diff] [blame] | 474 | * OPEN is the only seqid-mutating operation whose decoding can fail |
| 475 | * with a seqid-mutating error (specifically, decoding of user names in |
| 476 | * the attributes). Therefore we have to do some processing to look up |
| 477 | * the stateowner so that we can bump the seqid. |
| 478 | */ |
| 479 | static __be32 nfsd4_open_omfg(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, struct nfsd4_op *op) |
| 480 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 481 | struct nfsd4_open *open = &op->u.open; |
J. Bruce Fields | 9d313b1 | 2013-02-28 12:51:49 -0800 | [diff] [blame] | 482 | |
| 483 | if (!seqid_mutating_err(ntohl(op->status))) |
| 484 | return op->status; |
| 485 | if (nfsd4_has_session(cstate)) |
| 486 | return op->status; |
| 487 | open->op_xdr_error = op->status; |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 488 | return nfsd4_open(rqstp, cstate, &op->u); |
J. Bruce Fields | 9d313b1 | 2013-02-28 12:51:49 -0800 | [diff] [blame] | 489 | } |
| 490 | |
| 491 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | * filehandle-manipulating ops. |
| 493 | */ |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 494 | static __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 495 | nfsd4_getfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 496 | union nfsd4_op_u *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 498 | u->getfh = &cstate->current_fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | return nfs_ok; |
| 500 | } |
| 501 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 502 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 503 | nfsd4_putfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 504 | union nfsd4_op_u *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 506 | struct nfsd4_putfh *putfh = &u->putfh; |
Olga Kornievskaia | b9e8638 | 2019-10-07 10:56:48 -0400 | [diff] [blame] | 507 | __be32 ret; |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 508 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 509 | fh_put(&cstate->current_fh); |
| 510 | cstate->current_fh.fh_handle.fh_size = putfh->pf_fhlen; |
| 511 | memcpy(&cstate->current_fh.fh_handle.fh_base, putfh->pf_fhval, |
| 512 | putfh->pf_fhlen); |
Olga Kornievskaia | b9e8638 | 2019-10-07 10:56:48 -0400 | [diff] [blame] | 513 | ret = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_BYPASS_GSS); |
| 514 | #ifdef CONFIG_NFSD_V4_2_INTER_SSC |
| 515 | if (ret == nfserr_stale && putfh->no_verify) { |
| 516 | SET_FH_FLAG(&cstate->current_fh, NFSD4_FH_FOREIGN); |
| 517 | ret = 0; |
| 518 | } |
| 519 | #endif |
| 520 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | } |
| 522 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 523 | static __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 524 | nfsd4_putrootfh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 525 | union nfsd4_op_u *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | { |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 527 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 529 | fh_put(&cstate->current_fh); |
J. Bruce Fields | df547ef | 2007-07-17 04:04:43 -0700 | [diff] [blame] | 530 | status = exp_pseudoroot(rqstp, &cstate->current_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | return status; |
| 532 | } |
| 533 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 534 | static __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 535 | nfsd4_restorefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 536 | union nfsd4_op_u *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | { |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 538 | if (!cstate->save_fh.fh_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | return nfserr_restorefh; |
| 540 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 541 | fh_dup2(&cstate->current_fh, &cstate->save_fh); |
Olga Kornievskaia | 51100d2 | 2018-09-13 13:58:24 -0400 | [diff] [blame] | 542 | if (HAS_CSTATE_FLAG(cstate, SAVED_STATE_ID_FLAG)) { |
Tigran Mkrtchyan | 37c593c | 2012-02-13 22:55:32 +0100 | [diff] [blame] | 543 | memcpy(&cstate->current_stateid, &cstate->save_stateid, sizeof(stateid_t)); |
Olga Kornievskaia | 51100d2 | 2018-09-13 13:58:24 -0400 | [diff] [blame] | 544 | SET_CSTATE_FLAG(cstate, CURRENT_STATE_ID_FLAG); |
Tigran Mkrtchyan | 37c593c | 2012-02-13 22:55:32 +0100 | [diff] [blame] | 545 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | return nfs_ok; |
| 547 | } |
| 548 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 549 | static __be32 |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 550 | nfsd4_savefh(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 551 | union nfsd4_op_u *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | { |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 553 | fh_dup2(&cstate->save_fh, &cstate->current_fh); |
Olga Kornievskaia | 51100d2 | 2018-09-13 13:58:24 -0400 | [diff] [blame] | 554 | if (HAS_CSTATE_FLAG(cstate, CURRENT_STATE_ID_FLAG)) { |
Tigran Mkrtchyan | 37c593c | 2012-02-13 22:55:32 +0100 | [diff] [blame] | 555 | memcpy(&cstate->save_stateid, &cstate->current_stateid, sizeof(stateid_t)); |
Olga Kornievskaia | 51100d2 | 2018-09-13 13:58:24 -0400 | [diff] [blame] | 556 | SET_CSTATE_FLAG(cstate, SAVED_STATE_ID_FLAG); |
Tigran Mkrtchyan | 37c593c | 2012-02-13 22:55:32 +0100 | [diff] [blame] | 557 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | return nfs_ok; |
| 559 | } |
| 560 | |
| 561 | /* |
| 562 | * misc nfsv4 ops |
| 563 | */ |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 564 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 565 | nfsd4_access(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 566 | union nfsd4_op_u *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 568 | struct nfsd4_access *access = &u->access; |
| 569 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | if (access->ac_req_access & ~NFS3_ACCESS_FULL) |
| 571 | return nfserr_inval; |
| 572 | |
| 573 | access->ac_resp_access = access->ac_req_access; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 574 | return nfsd_access(rqstp, &cstate->current_fh, &access->ac_resp_access, |
| 575 | &access->ac_supported); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | } |
| 577 | |
Stanislav Kinsbursky | b9c0ef8 | 2012-12-06 14:23:19 +0300 | [diff] [blame] | 578 | static void gen_boot_verifier(nfs4_verifier *verifier, struct net *net) |
Chuck Lever | ab4684d | 2012-03-02 17:13:50 -0500 | [diff] [blame] | 579 | { |
Trond Myklebust | 27c438f | 2019-09-02 13:02:56 -0400 | [diff] [blame] | 580 | __be32 *verf = (__be32 *)verifier->data; |
Chuck Lever | ab4684d | 2012-03-02 17:13:50 -0500 | [diff] [blame] | 581 | |
Trond Myklebust | 27c438f | 2019-09-02 13:02:56 -0400 | [diff] [blame] | 582 | BUILD_BUG_ON(2*sizeof(*verf) != sizeof(verifier->data)); |
| 583 | |
| 584 | nfsd_copy_boot_verifier(verf, net_generic(net, nfsd_net_id)); |
Chuck Lever | ab4684d | 2012-03-02 17:13:50 -0500 | [diff] [blame] | 585 | } |
| 586 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 587 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 588 | nfsd4_commit(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 589 | union nfsd4_op_u *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 591 | struct nfsd4_commit *commit = &u->commit; |
| 592 | |
J. Bruce Fields | 75c096f | 2011-08-15 18:39:32 -0400 | [diff] [blame] | 593 | return nfsd_commit(rqstp, &cstate->current_fh, commit->co_offset, |
Trond Myklebust | 524ff1a | 2020-01-06 13:40:36 -0500 | [diff] [blame] | 594 | commit->co_count, |
| 595 | (__be32 *)commit->co_verf.data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | } |
| 597 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 598 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 599 | nfsd4_create(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 600 | union nfsd4_op_u *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 602 | struct nfsd4_create *create = &u->create; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | struct svc_fh resfh; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 604 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | dev_t rdev; |
| 606 | |
| 607 | fh_init(&resfh, NFS4_FHSIZE); |
| 608 | |
J. Bruce Fields | fa08139 | 2016-07-21 16:00:12 -0400 | [diff] [blame] | 609 | status = fh_verify(rqstp, &cstate->current_fh, S_IFDIR, NFSD_MAY_NOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | if (status) |
| 611 | return status; |
| 612 | |
Yu Zhiguo | 3c8e031 | 2009-05-16 16:22:31 +0800 | [diff] [blame] | 613 | status = check_attr_support(rqstp, cstate, create->cr_bmval, |
| 614 | nfsd_attrmask); |
| 615 | if (status) |
| 616 | return status; |
| 617 | |
J. Bruce Fields | 880a3a5 | 2018-03-21 17:19:02 -0400 | [diff] [blame] | 618 | current->fs->umask = create->cr_umask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | switch (create->cr_type) { |
| 620 | case NF4LNK: |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 621 | status = nfsd_symlink(rqstp, &cstate->current_fh, |
| 622 | create->cr_name, create->cr_namelen, |
Kinglong Mee | 1e444f5 | 2014-07-01 17:48:02 +0800 | [diff] [blame] | 623 | create->cr_data, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | break; |
| 625 | |
| 626 | case NF4BLK: |
J. Bruce Fields | 880a3a5 | 2018-03-21 17:19:02 -0400 | [diff] [blame] | 627 | status = nfserr_inval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | rdev = MKDEV(create->cr_specdata1, create->cr_specdata2); |
| 629 | if (MAJOR(rdev) != create->cr_specdata1 || |
| 630 | MINOR(rdev) != create->cr_specdata2) |
J. Bruce Fields | 880a3a5 | 2018-03-21 17:19:02 -0400 | [diff] [blame] | 631 | goto out_umask; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 632 | status = nfsd_create(rqstp, &cstate->current_fh, |
| 633 | create->cr_name, create->cr_namelen, |
| 634 | &create->cr_iattr, S_IFBLK, rdev, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | break; |
| 636 | |
| 637 | case NF4CHR: |
J. Bruce Fields | 880a3a5 | 2018-03-21 17:19:02 -0400 | [diff] [blame] | 638 | status = nfserr_inval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | rdev = MKDEV(create->cr_specdata1, create->cr_specdata2); |
| 640 | if (MAJOR(rdev) != create->cr_specdata1 || |
| 641 | MINOR(rdev) != create->cr_specdata2) |
J. Bruce Fields | 880a3a5 | 2018-03-21 17:19:02 -0400 | [diff] [blame] | 642 | goto out_umask; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 643 | status = nfsd_create(rqstp, &cstate->current_fh, |
| 644 | create->cr_name, create->cr_namelen, |
| 645 | &create->cr_iattr,S_IFCHR, rdev, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | break; |
| 647 | |
| 648 | case NF4SOCK: |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 649 | status = nfsd_create(rqstp, &cstate->current_fh, |
| 650 | create->cr_name, create->cr_namelen, |
| 651 | &create->cr_iattr, S_IFSOCK, 0, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | break; |
| 653 | |
| 654 | case NF4FIFO: |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 655 | status = nfsd_create(rqstp, &cstate->current_fh, |
| 656 | create->cr_name, create->cr_namelen, |
| 657 | &create->cr_iattr, S_IFIFO, 0, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | break; |
| 659 | |
| 660 | case NF4DIR: |
| 661 | create->cr_iattr.ia_valid &= ~ATTR_SIZE; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 662 | status = nfsd_create(rqstp, &cstate->current_fh, |
| 663 | create->cr_name, create->cr_namelen, |
| 664 | &create->cr_iattr, S_IFDIR, 0, &resfh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | break; |
| 666 | |
| 667 | default: |
| 668 | status = nfserr_badtype; |
| 669 | } |
| 670 | |
Yu Zhiguo | 9208faf | 2009-07-06 17:24:16 +0800 | [diff] [blame] | 671 | if (status) |
| 672 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 674 | if (create->cr_label.len) |
| 675 | nfsd4_security_inode_setsecctx(&resfh, &create->cr_label, create->cr_bmval); |
| 676 | |
Yu Zhiguo | 9208faf | 2009-07-06 17:24:16 +0800 | [diff] [blame] | 677 | if (create->cr_acl != NULL) |
| 678 | do_set_nfs4_acl(rqstp, &resfh, create->cr_acl, |
| 679 | create->cr_bmval); |
| 680 | |
| 681 | fh_unlock(&cstate->current_fh); |
| 682 | set_change_info(&create->cr_cinfo, &cstate->current_fh); |
| 683 | fh_dup2(&cstate->current_fh, &resfh); |
| 684 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | fh_put(&resfh); |
J. Bruce Fields | 880a3a5 | 2018-03-21 17:19:02 -0400 | [diff] [blame] | 686 | out_umask: |
| 687 | current->fs->umask = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | return status; |
| 689 | } |
| 690 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 691 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 692 | nfsd4_getattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 693 | union nfsd4_op_u *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 695 | struct nfsd4_getattr *getattr = &u->getattr; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 696 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 698 | status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 699 | if (status) |
| 700 | return status; |
| 701 | |
| 702 | if (getattr->ga_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1) |
| 703 | return nfserr_inval; |
| 704 | |
J. Bruce Fields | 916d2d8 | 2016-10-18 14:18:40 -0400 | [diff] [blame] | 705 | getattr->ga_bmval[0] &= nfsd_suppattrs[cstate->minorversion][0]; |
| 706 | getattr->ga_bmval[1] &= nfsd_suppattrs[cstate->minorversion][1]; |
| 707 | getattr->ga_bmval[2] &= nfsd_suppattrs[cstate->minorversion][2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 709 | getattr->ga_fhp = &cstate->current_fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | return nfs_ok; |
| 711 | } |
| 712 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 713 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 714 | nfsd4_link(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 715 | union nfsd4_op_u *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 717 | struct nfsd4_link *link = &u->link; |
J. Bruce Fields | 9542446 | 2017-09-15 16:02:52 -0400 | [diff] [blame] | 718 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 720 | status = nfsd_link(rqstp, &cstate->current_fh, |
| 721 | link->li_name, link->li_namelen, &cstate->save_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | if (!status) |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 723 | set_change_info(&link->li_cinfo, &cstate->current_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 724 | return status; |
| 725 | } |
| 726 | |
J. Bruce Fields | 0ff7ab4 | 2010-12-16 10:06:27 -0500 | [diff] [blame] | 727 | static __be32 nfsd4_do_lookupp(struct svc_rqst *rqstp, struct svc_fh *fh) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | { |
| 729 | struct svc_fh tmp_fh; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 730 | __be32 ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | |
| 732 | fh_init(&tmp_fh, NFS4_FHSIZE); |
J. Bruce Fields | df547ef | 2007-07-17 04:04:43 -0700 | [diff] [blame] | 733 | ret = exp_pseudoroot(rqstp, &tmp_fh); |
| 734 | if (ret) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | return ret; |
J. Bruce Fields | 0ff7ab4 | 2010-12-16 10:06:27 -0500 | [diff] [blame] | 736 | if (tmp_fh.fh_dentry == fh->fh_dentry) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | fh_put(&tmp_fh); |
| 738 | return nfserr_noent; |
| 739 | } |
| 740 | fh_put(&tmp_fh); |
J. Bruce Fields | 0ff7ab4 | 2010-12-16 10:06:27 -0500 | [diff] [blame] | 741 | return nfsd_lookup(rqstp, fh, "..", 2, fh); |
| 742 | } |
| 743 | |
| 744 | static __be32 |
| 745 | nfsd4_lookupp(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 746 | union nfsd4_op_u *u) |
J. Bruce Fields | 0ff7ab4 | 2010-12-16 10:06:27 -0500 | [diff] [blame] | 747 | { |
| 748 | return nfsd4_do_lookupp(rqstp, &cstate->current_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | } |
| 750 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 751 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 752 | nfsd4_lookup(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 753 | union nfsd4_op_u *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | { |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 755 | return nfsd_lookup(rqstp, &cstate->current_fh, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 756 | u->lookup.lo_name, u->lookup.lo_len, |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 757 | &cstate->current_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | } |
| 759 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 760 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 761 | nfsd4_read(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 762 | union nfsd4_op_u *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 764 | struct nfsd4_read *read = &u->read; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 765 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 767 | read->rd_nf = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | if (read->rd_offset >= OFFSET_MAX) |
| 769 | return nfserr_inval; |
| 770 | |
Chuck Lever | 87c5942 | 2018-03-28 13:29:11 -0400 | [diff] [blame] | 771 | trace_nfsd_read_start(rqstp, &cstate->current_fh, |
| 772 | read->rd_offset, read->rd_length); |
| 773 | |
J. Bruce Fields | 9b3234b | 2012-12-04 18:03:46 -0500 | [diff] [blame] | 774 | /* |
| 775 | * If we do a zero copy read, then a client will see read data |
| 776 | * that reflects the state of the file *after* performing the |
| 777 | * following compound. |
| 778 | * |
| 779 | * To ensure proper ordering, we therefore turn off zero copy if |
| 780 | * the client wants us to do more in this compound: |
| 781 | */ |
| 782 | if (!nfsd4_last_compound_op(rqstp)) |
Jeff Layton | 779fb0f | 2014-11-19 07:51:18 -0500 | [diff] [blame] | 783 | clear_bit(RQ_SPLICE_OK, &rqstp->rq_flags); |
J. Bruce Fields | 9b3234b | 2012-12-04 18:03:46 -0500 | [diff] [blame] | 784 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | /* check stateid */ |
Anna Schumaker | aa0d6ae | 2015-12-03 12:59:51 +0100 | [diff] [blame] | 786 | status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh, |
| 787 | &read->rd_stateid, RD_STATE, |
Olga Kornievskaia | 624322f | 2019-10-04 16:34:26 -0400 | [diff] [blame] | 788 | &read->rd_nf, NULL); |
Christoph Hellwig | af90f70 | 2015-06-18 16:45:00 +0200 | [diff] [blame] | 789 | if (status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | dprintk("NFSD: nfsd4_read: couldn't process stateid!\n"); |
| 791 | goto out; |
| 792 | } |
| 793 | status = nfs_ok; |
| 794 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | read->rd_rqstp = rqstp; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 796 | read->rd_fhp = &cstate->current_fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | return status; |
| 798 | } |
| 799 | |
J. Bruce Fields | 34b1744c | 2017-05-05 17:09:37 -0400 | [diff] [blame] | 800 | |
| 801 | static void |
| 802 | nfsd4_read_release(union nfsd4_op_u *u) |
| 803 | { |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 804 | if (u->read.rd_nf) |
| 805 | nfsd_file_put(u->read.rd_nf); |
Chuck Lever | 87c5942 | 2018-03-28 13:29:11 -0400 | [diff] [blame] | 806 | trace_nfsd_read_done(u->read.rd_rqstp, u->read.rd_fhp, |
| 807 | u->read.rd_offset, u->read.rd_length); |
J. Bruce Fields | 34b1744c | 2017-05-05 17:09:37 -0400 | [diff] [blame] | 808 | } |
| 809 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 810 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 811 | nfsd4_readdir(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 812 | union nfsd4_op_u *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 813 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 814 | struct nfsd4_readdir *readdir = &u->readdir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | u64 cookie = readdir->rd_cookie; |
| 816 | static const nfs4_verifier zeroverf; |
| 817 | |
| 818 | /* no need to check permission - this will be done in nfsd_readdir() */ |
| 819 | |
| 820 | if (readdir->rd_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1) |
| 821 | return nfserr_inval; |
| 822 | |
J. Bruce Fields | 916d2d8 | 2016-10-18 14:18:40 -0400 | [diff] [blame] | 823 | readdir->rd_bmval[0] &= nfsd_suppattrs[cstate->minorversion][0]; |
| 824 | readdir->rd_bmval[1] &= nfsd_suppattrs[cstate->minorversion][1]; |
| 825 | readdir->rd_bmval[2] &= nfsd_suppattrs[cstate->minorversion][2]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | |
Bernd Schubert | 832023b | 2011-08-08 17:38:08 +0200 | [diff] [blame] | 827 | if ((cookie == 1) || (cookie == 2) || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | (cookie == 0 && memcmp(readdir->rd_verf.data, zeroverf.data, NFS4_VERIFIER_SIZE))) |
| 829 | return nfserr_bad_cookie; |
| 830 | |
| 831 | readdir->rd_rqstp = rqstp; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 832 | readdir->rd_fhp = &cstate->current_fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | return nfs_ok; |
| 834 | } |
| 835 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 836 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 837 | nfsd4_readlink(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 838 | union nfsd4_op_u *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 840 | u->readlink.rl_rqstp = rqstp; |
| 841 | u->readlink.rl_fhp = &cstate->current_fh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | return nfs_ok; |
| 843 | } |
| 844 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 845 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 846 | nfsd4_remove(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 847 | union nfsd4_op_u *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 849 | struct nfsd4_remove *remove = &u->remove; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 850 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | |
J. Bruce Fields | c87fb4a | 2015-08-06 12:47:02 -0400 | [diff] [blame] | 852 | if (opens_in_grace(SVC_NET(rqstp))) |
NeilBrown | c815afc | 2005-06-23 22:03:00 -0700 | [diff] [blame] | 853 | return nfserr_grace; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 854 | status = nfsd_unlink(rqstp, &cstate->current_fh, 0, |
| 855 | remove->rm_name, remove->rm_namelen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | if (!status) { |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 857 | fh_unlock(&cstate->current_fh); |
| 858 | set_change_info(&remove->rm_cinfo, &cstate->current_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | } |
| 860 | return status; |
| 861 | } |
| 862 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 863 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 864 | nfsd4_rename(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 865 | union nfsd4_op_u *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 867 | struct nfsd4_rename *rename = &u->rename; |
J. Bruce Fields | 9542446 | 2017-09-15 16:02:52 -0400 | [diff] [blame] | 868 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | |
J. Bruce Fields | f8f71d0 | 2018-11-06 11:47:20 -0500 | [diff] [blame] | 870 | if (opens_in_grace(SVC_NET(rqstp))) |
NeilBrown | c815afc | 2005-06-23 22:03:00 -0700 | [diff] [blame] | 871 | return nfserr_grace; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 872 | status = nfsd_rename(rqstp, &cstate->save_fh, rename->rn_sname, |
| 873 | rename->rn_snamelen, &cstate->current_fh, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | rename->rn_tname, rename->rn_tnamelen); |
J. Bruce Fields | 2a6cf94 | 2013-04-30 15:28:51 -0400 | [diff] [blame] | 875 | if (status) |
| 876 | return status; |
| 877 | set_change_info(&rename->rn_sinfo, &cstate->current_fh); |
| 878 | set_change_info(&rename->rn_tinfo, &cstate->save_fh); |
| 879 | return nfs_ok; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | } |
| 881 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 882 | static __be32 |
Andy Adamson | dcb488a3 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 883 | nfsd4_secinfo(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 884 | union nfsd4_op_u *u) |
Andy Adamson | dcb488a3 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 885 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 886 | struct nfsd4_secinfo *secinfo = &u->secinfo; |
Andy Adamson | dcb488a3 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 887 | struct svc_export *exp; |
| 888 | struct dentry *dentry; |
| 889 | __be32 err; |
| 890 | |
J. Bruce Fields | 29a78a3 | 2011-04-09 11:28:53 -0400 | [diff] [blame] | 891 | err = fh_verify(rqstp, &cstate->current_fh, S_IFDIR, NFSD_MAY_EXEC); |
| 892 | if (err) |
| 893 | return err; |
Andy Adamson | dcb488a3 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 894 | err = nfsd_lookup_dentry(rqstp, &cstate->current_fh, |
| 895 | secinfo->si_name, secinfo->si_namelen, |
| 896 | &exp, &dentry); |
| 897 | if (err) |
| 898 | return err; |
J. Bruce Fields | 2f6fc05 | 2016-03-02 16:36:21 -0800 | [diff] [blame] | 899 | fh_unlock(&cstate->current_fh); |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 900 | if (d_really_is_negative(dentry)) { |
Andy Adamson | dcb488a3 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 901 | exp_put(exp); |
| 902 | err = nfserr_noent; |
| 903 | } else |
| 904 | secinfo->si_exp = exp; |
| 905 | dput(dentry); |
J. Bruce Fields | 56560b9 | 2010-12-16 09:57:15 -0500 | [diff] [blame] | 906 | if (cstate->minorversion) |
| 907 | /* See rfc 5661 section 2.6.3.1.1.8 */ |
| 908 | fh_put(&cstate->current_fh); |
Andy Adamson | dcb488a3 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 909 | return err; |
| 910 | } |
| 911 | |
| 912 | static __be32 |
J. Bruce Fields | 04f4ad1 | 2010-12-16 09:51:13 -0500 | [diff] [blame] | 913 | nfsd4_secinfo_no_name(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 914 | union nfsd4_op_u *u) |
J. Bruce Fields | 04f4ad1 | 2010-12-16 09:51:13 -0500 | [diff] [blame] | 915 | { |
| 916 | __be32 err; |
| 917 | |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 918 | switch (u->secinfo_no_name.sin_style) { |
J. Bruce Fields | 04f4ad1 | 2010-12-16 09:51:13 -0500 | [diff] [blame] | 919 | case NFS4_SECINFO_STYLE4_CURRENT_FH: |
| 920 | break; |
| 921 | case NFS4_SECINFO_STYLE4_PARENT: |
| 922 | err = nfsd4_do_lookupp(rqstp, &cstate->current_fh); |
| 923 | if (err) |
| 924 | return err; |
| 925 | break; |
| 926 | default: |
| 927 | return nfserr_inval; |
| 928 | } |
Kinglong Mee | bf18f16 | 2014-06-10 22:06:44 +0800 | [diff] [blame] | 929 | |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 930 | u->secinfo_no_name.sin_exp = exp_get(cstate->current_fh.fh_export); |
J. Bruce Fields | 04f4ad1 | 2010-12-16 09:51:13 -0500 | [diff] [blame] | 931 | fh_put(&cstate->current_fh); |
| 932 | return nfs_ok; |
| 933 | } |
| 934 | |
J. Bruce Fields | 34b1744c | 2017-05-05 17:09:37 -0400 | [diff] [blame] | 935 | static void |
| 936 | nfsd4_secinfo_release(union nfsd4_op_u *u) |
| 937 | { |
| 938 | if (u->secinfo.si_exp) |
| 939 | exp_put(u->secinfo.si_exp); |
| 940 | } |
| 941 | |
Eryu Guan | ec572b9 | 2017-09-29 15:01:10 +0800 | [diff] [blame] | 942 | static void |
| 943 | nfsd4_secinfo_no_name_release(union nfsd4_op_u *u) |
| 944 | { |
| 945 | if (u->secinfo_no_name.sin_exp) |
| 946 | exp_put(u->secinfo_no_name.sin_exp); |
| 947 | } |
| 948 | |
J. Bruce Fields | 04f4ad1 | 2010-12-16 09:51:13 -0500 | [diff] [blame] | 949 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 950 | nfsd4_setattr(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 951 | union nfsd4_op_u *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 953 | struct nfsd4_setattr *setattr = &u->setattr; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 954 | __be32 status = nfs_ok; |
Al Viro | 96f6f98 | 2012-04-12 23:47:00 -0400 | [diff] [blame] | 955 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | if (setattr->sa_iattr.ia_valid & ATTR_SIZE) { |
Christoph Hellwig | af90f70 | 2015-06-18 16:45:00 +0200 | [diff] [blame] | 958 | status = nfs4_preprocess_stateid_op(rqstp, cstate, |
Anna Schumaker | aa0d6ae | 2015-12-03 12:59:51 +0100 | [diff] [blame] | 959 | &cstate->current_fh, &setattr->sa_stateid, |
Olga Kornievskaia | 624322f | 2019-10-04 16:34:26 -0400 | [diff] [blame] | 960 | WR_STATE, NULL, NULL); |
J. Bruce Fields | 375c554 | 2006-01-18 17:43:33 -0800 | [diff] [blame] | 961 | if (status) { |
Greg Banks | 3e3b480 | 2006-10-02 02:17:41 -0700 | [diff] [blame] | 962 | dprintk("NFSD: nfsd4_setattr: couldn't process stateid!\n"); |
J. Bruce Fields | 375c554 | 2006-01-18 17:43:33 -0800 | [diff] [blame] | 963 | return status; |
| 964 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | } |
Al Viro | 96f6f98 | 2012-04-12 23:47:00 -0400 | [diff] [blame] | 966 | err = fh_want_write(&cstate->current_fh); |
| 967 | if (err) |
| 968 | return nfserrno(err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | status = nfs_ok; |
Yu Zhiguo | 3c8e031 | 2009-05-16 16:22:31 +0800 | [diff] [blame] | 970 | |
| 971 | status = check_attr_support(rqstp, cstate, setattr->sa_bmval, |
| 972 | nfsd_attrmask); |
| 973 | if (status) |
| 974 | goto out; |
| 975 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | if (setattr->sa_acl != NULL) |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 977 | status = nfsd4_set_nfs4_acl(rqstp, &cstate->current_fh, |
| 978 | setattr->sa_acl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | if (status) |
Dave Hansen | 18f335a | 2008-02-15 14:37:38 -0800 | [diff] [blame] | 980 | goto out; |
David Quigley | 18032ca | 2013-05-02 13:19:10 -0400 | [diff] [blame] | 981 | if (setattr->sa_label.len) |
| 982 | status = nfsd4_set_nfs4_label(rqstp, &cstate->current_fh, |
| 983 | &setattr->sa_label); |
| 984 | if (status) |
| 985 | goto out; |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 986 | status = nfsd_setattr(rqstp, &cstate->current_fh, &setattr->sa_iattr, |
Arnd Bergmann | 2a1aa48 | 2019-11-03 17:50:18 +0100 | [diff] [blame] | 987 | 0, (time64_t)0); |
Dave Hansen | 18f335a | 2008-02-15 14:37:38 -0800 | [diff] [blame] | 988 | out: |
Al Viro | bad0dcf | 2011-11-23 12:03:18 -0500 | [diff] [blame] | 989 | fh_drop_write(&cstate->current_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | return status; |
| 991 | } |
| 992 | |
J.Bruce Fields | 7191155 | 2006-12-13 00:35:29 -0800 | [diff] [blame] | 993 | static __be32 |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 994 | nfsd4_write(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 995 | union nfsd4_op_u *u) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 996 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 997 | struct nfsd4_write *write = &u->write; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | stateid_t *stateid = &write->wr_stateid; |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 999 | struct nfsd_file *nf = NULL; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1000 | __be32 status = nfs_ok; |
David Shaw | 31dec25 | 2009-03-05 20:16:14 -0500 | [diff] [blame] | 1001 | unsigned long cnt; |
J. Bruce Fields | ffe1137 | 2012-11-15 14:52:19 -0500 | [diff] [blame] | 1002 | int nvecs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | if (write->wr_offset >= OFFSET_MAX) |
| 1005 | return nfserr_inval; |
| 1006 | |
Chuck Lever | d890be1 | 2018-03-27 10:53:27 -0400 | [diff] [blame] | 1007 | cnt = write->wr_buflen; |
| 1008 | trace_nfsd_write_start(rqstp, &cstate->current_fh, |
| 1009 | write->wr_offset, cnt); |
Anna Schumaker | aa0d6ae | 2015-12-03 12:59:51 +0100 | [diff] [blame] | 1010 | status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh, |
Olga Kornievskaia | 624322f | 2019-10-04 16:34:26 -0400 | [diff] [blame] | 1011 | stateid, WR_STATE, &nf, NULL); |
J. Bruce Fields | 375c554 | 2006-01-18 17:43:33 -0800 | [diff] [blame] | 1012 | if (status) { |
| 1013 | dprintk("NFSD: nfsd4_write: couldn't process stateid!\n"); |
| 1014 | return status; |
| 1015 | } |
| 1016 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | write->wr_how_written = write->wr_stable_how; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | |
Chuck Lever | 3fd9557 | 2018-07-27 11:19:05 -0400 | [diff] [blame] | 1019 | nvecs = svc_fill_write_vector(rqstp, write->wr_pagelist, |
| 1020 | &write->wr_head, write->wr_buflen); |
J. Bruce Fields | ffe1137 | 2012-11-15 14:52:19 -0500 | [diff] [blame] | 1021 | WARN_ON_ONCE(nvecs > ARRAY_SIZE(rqstp->rq_vec)); |
| 1022 | |
Trond Myklebust | 16f8f89 | 2020-01-06 13:40:29 -0500 | [diff] [blame] | 1023 | status = nfsd_vfs_write(rqstp, &cstate->current_fh, nf, |
Christoph Hellwig | af90f70 | 2015-06-18 16:45:00 +0200 | [diff] [blame] | 1024 | write->wr_offset, rqstp->rq_vec, nvecs, &cnt, |
Trond Myklebust | 19e0663 | 2020-01-06 13:40:37 -0500 | [diff] [blame] | 1025 | write->wr_how_written, |
| 1026 | (__be32 *)write->wr_verifier.data); |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 1027 | nfsd_file_put(nf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | |
David Shaw | 31dec25 | 2009-03-05 20:16:14 -0500 | [diff] [blame] | 1029 | write->wr_bytes_written = cnt; |
Chuck Lever | d890be1 | 2018-03-27 10:53:27 -0400 | [diff] [blame] | 1030 | trace_nfsd_write_done(rqstp, &cstate->current_fh, |
| 1031 | write->wr_offset, cnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | } |
| 1034 | |
Anna Schumaker | 24bab49 | 2014-09-26 13:58:27 -0400 | [diff] [blame] | 1035 | static __be32 |
Anna Schumaker | 29ae7f9 | 2016-09-07 15:57:30 -0400 | [diff] [blame] | 1036 | nfsd4_verify_copy(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 1037 | stateid_t *src_stateid, struct nfsd_file **src, |
| 1038 | stateid_t *dst_stateid, struct nfsd_file **dst) |
Christoph Hellwig | ffa0160 | 2015-12-03 12:59:52 +0100 | [diff] [blame] | 1039 | { |
Christoph Hellwig | ffa0160 | 2015-12-03 12:59:52 +0100 | [diff] [blame] | 1040 | __be32 status; |
| 1041 | |
Scott Mayhew | 01310bb | 2018-11-08 11:11:36 -0500 | [diff] [blame] | 1042 | if (!cstate->save_fh.fh_dentry) |
| 1043 | return nfserr_nofilehandle; |
| 1044 | |
Christoph Hellwig | ffa0160 | 2015-12-03 12:59:52 +0100 | [diff] [blame] | 1045 | status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->save_fh, |
Olga Kornievskaia | 624322f | 2019-10-04 16:34:26 -0400 | [diff] [blame] | 1046 | src_stateid, RD_STATE, src, NULL); |
Christoph Hellwig | ffa0160 | 2015-12-03 12:59:52 +0100 | [diff] [blame] | 1047 | if (status) { |
| 1048 | dprintk("NFSD: %s: couldn't process src stateid!\n", __func__); |
| 1049 | goto out; |
| 1050 | } |
| 1051 | |
| 1052 | status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh, |
Olga Kornievskaia | 624322f | 2019-10-04 16:34:26 -0400 | [diff] [blame] | 1053 | dst_stateid, WR_STATE, dst, NULL); |
Christoph Hellwig | ffa0160 | 2015-12-03 12:59:52 +0100 | [diff] [blame] | 1054 | if (status) { |
| 1055 | dprintk("NFSD: %s: couldn't process dst stateid!\n", __func__); |
| 1056 | goto out_put_src; |
| 1057 | } |
| 1058 | |
| 1059 | /* fix up for NFS-specific error code */ |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 1060 | if (!S_ISREG(file_inode((*src)->nf_file)->i_mode) || |
| 1061 | !S_ISREG(file_inode((*dst)->nf_file)->i_mode)) { |
Christoph Hellwig | ffa0160 | 2015-12-03 12:59:52 +0100 | [diff] [blame] | 1062 | status = nfserr_wrong_type; |
| 1063 | goto out_put_dst; |
| 1064 | } |
| 1065 | |
Anna Schumaker | 29ae7f9 | 2016-09-07 15:57:30 -0400 | [diff] [blame] | 1066 | out: |
| 1067 | return status; |
| 1068 | out_put_dst: |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 1069 | nfsd_file_put(*dst); |
Anna Schumaker | 29ae7f9 | 2016-09-07 15:57:30 -0400 | [diff] [blame] | 1070 | out_put_src: |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 1071 | nfsd_file_put(*src); |
Anna Schumaker | 29ae7f9 | 2016-09-07 15:57:30 -0400 | [diff] [blame] | 1072 | goto out; |
| 1073 | } |
| 1074 | |
| 1075 | static __be32 |
| 1076 | nfsd4_clone(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1077 | union nfsd4_op_u *u) |
Anna Schumaker | 29ae7f9 | 2016-09-07 15:57:30 -0400 | [diff] [blame] | 1078 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1079 | struct nfsd4_clone *clone = &u->clone; |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 1080 | struct nfsd_file *src, *dst; |
Anna Schumaker | 29ae7f9 | 2016-09-07 15:57:30 -0400 | [diff] [blame] | 1081 | __be32 status; |
| 1082 | |
| 1083 | status = nfsd4_verify_copy(rqstp, cstate, &clone->cl_src_stateid, &src, |
| 1084 | &clone->cl_dst_stateid, &dst); |
| 1085 | if (status) |
| 1086 | goto out; |
| 1087 | |
Trond Myklebust | b66ae6d | 2020-01-06 13:40:32 -0500 | [diff] [blame] | 1088 | status = nfsd4_clone_file_range(src, clone->cl_src_pos, |
| 1089 | dst, clone->cl_dst_pos, clone->cl_count, |
Trond Myklebust | a25e3726 | 2019-11-27 17:05:51 -0500 | [diff] [blame] | 1090 | EX_ISSYNC(cstate->current_fh.fh_export)); |
Christoph Hellwig | ffa0160 | 2015-12-03 12:59:52 +0100 | [diff] [blame] | 1091 | |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 1092 | nfsd_file_put(dst); |
| 1093 | nfsd_file_put(src); |
Christoph Hellwig | ffa0160 | 2015-12-03 12:59:52 +0100 | [diff] [blame] | 1094 | out: |
| 1095 | return status; |
| 1096 | } |
| 1097 | |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1098 | void nfs4_put_copy(struct nfsd4_copy *copy) |
| 1099 | { |
| 1100 | if (!refcount_dec_and_test(©->refcount)) |
| 1101 | return; |
| 1102 | kfree(copy); |
| 1103 | } |
| 1104 | |
| 1105 | static bool |
| 1106 | check_and_set_stop_copy(struct nfsd4_copy *copy) |
| 1107 | { |
| 1108 | bool value; |
| 1109 | |
| 1110 | spin_lock(©->cp_clp->async_lock); |
| 1111 | value = copy->stopped; |
| 1112 | if (!copy->stopped) |
| 1113 | copy->stopped = true; |
| 1114 | spin_unlock(©->cp_clp->async_lock); |
| 1115 | return value; |
| 1116 | } |
| 1117 | |
| 1118 | static void nfsd4_stop_copy(struct nfsd4_copy *copy) |
| 1119 | { |
| 1120 | /* only 1 thread should stop the copy */ |
| 1121 | if (!check_and_set_stop_copy(copy)) |
| 1122 | kthread_stop(copy->copy_task); |
| 1123 | nfs4_put_copy(copy); |
| 1124 | } |
| 1125 | |
| 1126 | static struct nfsd4_copy *nfsd4_get_copy(struct nfs4_client *clp) |
| 1127 | { |
| 1128 | struct nfsd4_copy *copy = NULL; |
| 1129 | |
| 1130 | spin_lock(&clp->async_lock); |
| 1131 | if (!list_empty(&clp->async_copies)) { |
| 1132 | copy = list_first_entry(&clp->async_copies, struct nfsd4_copy, |
| 1133 | copies); |
| 1134 | refcount_inc(©->refcount); |
| 1135 | } |
| 1136 | spin_unlock(&clp->async_lock); |
| 1137 | return copy; |
| 1138 | } |
| 1139 | |
| 1140 | void nfsd4_shutdown_copy(struct nfs4_client *clp) |
| 1141 | { |
| 1142 | struct nfsd4_copy *copy; |
| 1143 | |
| 1144 | while ((copy = nfsd4_get_copy(clp)) != NULL) |
| 1145 | nfsd4_stop_copy(copy); |
| 1146 | } |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1147 | #ifdef CONFIG_NFSD_V4_2_INTER_SSC |
| 1148 | |
| 1149 | extern struct file *nfs42_ssc_open(struct vfsmount *ss_mnt, |
| 1150 | struct nfs_fh *src_fh, |
| 1151 | nfs4_stateid *stateid); |
| 1152 | extern void nfs42_ssc_close(struct file *filep); |
| 1153 | |
| 1154 | extern void nfs_sb_deactive(struct super_block *sb); |
| 1155 | |
| 1156 | #define NFSD42_INTERSSC_MOUNTOPS "vers=4.2,addr=%s,sec=sys" |
| 1157 | |
Chuck Lever | f245397 | 2020-04-06 16:01:42 -0400 | [diff] [blame^] | 1158 | /* |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1159 | * Support one copy source server for now. |
| 1160 | */ |
| 1161 | static __be32 |
| 1162 | nfsd4_interssc_connect(struct nl4_server *nss, struct svc_rqst *rqstp, |
| 1163 | struct vfsmount **mount) |
| 1164 | { |
| 1165 | struct file_system_type *type; |
| 1166 | struct vfsmount *ss_mnt; |
| 1167 | struct nfs42_netaddr *naddr; |
| 1168 | struct sockaddr_storage tmp_addr; |
| 1169 | size_t tmp_addrlen, match_netid_len = 3; |
| 1170 | char *startsep = "", *endsep = "", *match_netid = "tcp"; |
| 1171 | char *ipaddr, *dev_name, *raw_data; |
Olga Kornievskaia | b8290ca | 2019-12-04 15:13:53 -0500 | [diff] [blame] | 1172 | int len, raw_len; |
| 1173 | __be32 status = nfserr_inval; |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1174 | |
| 1175 | naddr = &nss->u.nl4_addr; |
| 1176 | tmp_addrlen = rpc_uaddr2sockaddr(SVC_NET(rqstp), naddr->addr, |
| 1177 | naddr->addr_len, |
| 1178 | (struct sockaddr *)&tmp_addr, |
| 1179 | sizeof(tmp_addr)); |
| 1180 | if (tmp_addrlen == 0) |
| 1181 | goto out_err; |
| 1182 | |
| 1183 | if (tmp_addr.ss_family == AF_INET6) { |
| 1184 | startsep = "["; |
| 1185 | endsep = "]"; |
| 1186 | match_netid = "tcp6"; |
| 1187 | match_netid_len = 4; |
| 1188 | } |
| 1189 | |
| 1190 | if (naddr->netid_len != match_netid_len || |
| 1191 | strncmp(naddr->netid, match_netid, naddr->netid_len)) |
| 1192 | goto out_err; |
| 1193 | |
| 1194 | /* Construct the raw data for the vfs_kern_mount call */ |
| 1195 | len = RPC_MAX_ADDRBUFLEN + 1; |
| 1196 | ipaddr = kzalloc(len, GFP_KERNEL); |
| 1197 | if (!ipaddr) |
| 1198 | goto out_err; |
| 1199 | |
| 1200 | rpc_ntop((struct sockaddr *)&tmp_addr, ipaddr, len); |
| 1201 | |
| 1202 | /* 2 for ipv6 endsep and startsep. 3 for ":/" and trailing '/0'*/ |
| 1203 | |
| 1204 | raw_len = strlen(NFSD42_INTERSSC_MOUNTOPS) + strlen(ipaddr); |
| 1205 | raw_data = kzalloc(raw_len, GFP_KERNEL); |
| 1206 | if (!raw_data) |
| 1207 | goto out_free_ipaddr; |
| 1208 | |
| 1209 | snprintf(raw_data, raw_len, NFSD42_INTERSSC_MOUNTOPS, ipaddr); |
| 1210 | |
Olga Kornievskaia | b8290ca | 2019-12-04 15:13:53 -0500 | [diff] [blame] | 1211 | status = nfserr_nodev; |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1212 | type = get_fs_type("nfs"); |
| 1213 | if (!type) |
| 1214 | goto out_free_rawdata; |
| 1215 | |
| 1216 | /* Set the server:<export> for the vfs_kern_mount call */ |
| 1217 | dev_name = kzalloc(len + 5, GFP_KERNEL); |
| 1218 | if (!dev_name) |
| 1219 | goto out_free_rawdata; |
| 1220 | snprintf(dev_name, len + 5, "%s%s%s:/", startsep, ipaddr, endsep); |
| 1221 | |
| 1222 | /* Use an 'internal' mount: SB_KERNMOUNT -> MNT_INTERNAL */ |
| 1223 | ss_mnt = vfs_kern_mount(type, SB_KERNMOUNT, dev_name, raw_data); |
| 1224 | module_put(type->owner); |
| 1225 | if (IS_ERR(ss_mnt)) |
| 1226 | goto out_free_devname; |
| 1227 | |
| 1228 | status = 0; |
| 1229 | *mount = ss_mnt; |
| 1230 | |
| 1231 | out_free_devname: |
| 1232 | kfree(dev_name); |
| 1233 | out_free_rawdata: |
| 1234 | kfree(raw_data); |
| 1235 | out_free_ipaddr: |
| 1236 | kfree(ipaddr); |
| 1237 | out_err: |
| 1238 | return status; |
| 1239 | } |
| 1240 | |
| 1241 | static void |
| 1242 | nfsd4_interssc_disconnect(struct vfsmount *ss_mnt) |
| 1243 | { |
| 1244 | nfs_sb_deactive(ss_mnt->mnt_sb); |
| 1245 | mntput(ss_mnt); |
| 1246 | } |
| 1247 | |
Chuck Lever | f245397 | 2020-04-06 16:01:42 -0400 | [diff] [blame^] | 1248 | /* |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1249 | * Verify COPY destination stateid. |
Chuck Lever | f245397 | 2020-04-06 16:01:42 -0400 | [diff] [blame^] | 1250 | * |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1251 | * Connect to the source server with NFSv4.1. |
| 1252 | * Create the source struct file for nfsd_copy_range. |
| 1253 | * Called with COPY cstate: |
| 1254 | * SAVED_FH: source filehandle |
| 1255 | * CURRENT_FH: destination filehandle |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1256 | */ |
| 1257 | static __be32 |
| 1258 | nfsd4_setup_inter_ssc(struct svc_rqst *rqstp, |
| 1259 | struct nfsd4_compound_state *cstate, |
| 1260 | struct nfsd4_copy *copy, struct vfsmount **mount) |
| 1261 | { |
| 1262 | struct svc_fh *s_fh = NULL; |
| 1263 | stateid_t *s_stid = ©->cp_src_stateid; |
Olga Kornievskaia | b8290ca | 2019-12-04 15:13:53 -0500 | [diff] [blame] | 1264 | __be32 status = nfserr_inval; |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1265 | |
| 1266 | /* Verify the destination stateid and set dst struct file*/ |
| 1267 | status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh, |
| 1268 | ©->cp_dst_stateid, |
| 1269 | WR_STATE, ©->nf_dst, NULL); |
| 1270 | if (status) |
| 1271 | goto out; |
| 1272 | |
| 1273 | status = nfsd4_interssc_connect(©->cp_src, rqstp, mount); |
| 1274 | if (status) |
| 1275 | goto out; |
| 1276 | |
| 1277 | s_fh = &cstate->save_fh; |
| 1278 | |
| 1279 | copy->c_fh.size = s_fh->fh_handle.fh_size; |
| 1280 | memcpy(copy->c_fh.data, &s_fh->fh_handle.fh_base, copy->c_fh.size); |
Olga Kornievskaia | 3f9544c | 2019-12-04 15:13:53 -0500 | [diff] [blame] | 1281 | copy->stateid.seqid = cpu_to_be32(s_stid->si_generation); |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1282 | memcpy(copy->stateid.other, (void *)&s_stid->si_opaque, |
| 1283 | sizeof(stateid_opaque_t)); |
| 1284 | |
| 1285 | status = 0; |
| 1286 | out: |
| 1287 | return status; |
| 1288 | } |
| 1289 | |
| 1290 | static void |
| 1291 | nfsd4_cleanup_inter_ssc(struct vfsmount *ss_mnt, struct nfsd_file *src, |
| 1292 | struct nfsd_file *dst) |
| 1293 | { |
| 1294 | nfs42_ssc_close(src->nf_file); |
| 1295 | nfsd_file_put(src); |
| 1296 | nfsd_file_put(dst); |
| 1297 | mntput(ss_mnt); |
| 1298 | } |
| 1299 | |
| 1300 | #else /* CONFIG_NFSD_V4_2_INTER_SSC */ |
| 1301 | |
| 1302 | static __be32 |
| 1303 | nfsd4_setup_inter_ssc(struct svc_rqst *rqstp, |
| 1304 | struct nfsd4_compound_state *cstate, |
| 1305 | struct nfsd4_copy *copy, |
| 1306 | struct vfsmount **mount) |
| 1307 | { |
| 1308 | *mount = NULL; |
Olga Kornievskaia | b8290ca | 2019-12-04 15:13:53 -0500 | [diff] [blame] | 1309 | return nfserr_inval; |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1310 | } |
| 1311 | |
| 1312 | static void |
| 1313 | nfsd4_cleanup_inter_ssc(struct vfsmount *ss_mnt, struct nfsd_file *src, |
| 1314 | struct nfsd_file *dst) |
| 1315 | { |
| 1316 | } |
| 1317 | |
| 1318 | static void |
| 1319 | nfsd4_interssc_disconnect(struct vfsmount *ss_mnt) |
| 1320 | { |
| 1321 | } |
| 1322 | |
| 1323 | static struct file *nfs42_ssc_open(struct vfsmount *ss_mnt, |
| 1324 | struct nfs_fh *src_fh, |
| 1325 | nfs4_stateid *stateid) |
| 1326 | { |
| 1327 | return NULL; |
| 1328 | } |
| 1329 | #endif /* CONFIG_NFSD_V4_2_INTER_SSC */ |
| 1330 | |
| 1331 | static __be32 |
| 1332 | nfsd4_setup_intra_ssc(struct svc_rqst *rqstp, |
| 1333 | struct nfsd4_compound_state *cstate, |
| 1334 | struct nfsd4_copy *copy) |
| 1335 | { |
| 1336 | return nfsd4_verify_copy(rqstp, cstate, ©->cp_src_stateid, |
| 1337 | ©->nf_src, ©->cp_dst_stateid, |
| 1338 | ©->nf_dst); |
| 1339 | } |
| 1340 | |
| 1341 | static void |
| 1342 | nfsd4_cleanup_intra_ssc(struct nfsd_file *src, struct nfsd_file *dst) |
| 1343 | { |
| 1344 | nfsd_file_put(src); |
| 1345 | nfsd_file_put(dst); |
| 1346 | } |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1347 | |
| 1348 | static void nfsd4_cb_offload_release(struct nfsd4_callback *cb) |
| 1349 | { |
| 1350 | struct nfsd4_copy *copy = container_of(cb, struct nfsd4_copy, cp_cb); |
| 1351 | |
| 1352 | nfs4_put_copy(copy); |
| 1353 | } |
| 1354 | |
| 1355 | static int nfsd4_cb_offload_done(struct nfsd4_callback *cb, |
| 1356 | struct rpc_task *task) |
| 1357 | { |
| 1358 | return 1; |
| 1359 | } |
| 1360 | |
| 1361 | static const struct nfsd4_callback_ops nfsd4_cb_offload_ops = { |
| 1362 | .release = nfsd4_cb_offload_release, |
| 1363 | .done = nfsd4_cb_offload_done |
| 1364 | }; |
| 1365 | |
| 1366 | static void nfsd4_init_copy_res(struct nfsd4_copy *copy, bool sync) |
| 1367 | { |
| 1368 | copy->cp_res.wr_stable_how = NFS_UNSTABLE; |
| 1369 | copy->cp_synchronous = sync; |
| 1370 | gen_boot_verifier(©->cp_res.wr_verifier, copy->cp_clp->net); |
| 1371 | } |
| 1372 | |
| 1373 | static ssize_t _nfsd_copy_file_range(struct nfsd4_copy *copy) |
| 1374 | { |
| 1375 | ssize_t bytes_copied = 0; |
| 1376 | size_t bytes_total = copy->cp_count; |
| 1377 | u64 src_pos = copy->cp_src_pos; |
| 1378 | u64 dst_pos = copy->cp_dst_pos; |
| 1379 | |
| 1380 | do { |
| 1381 | if (kthread_should_stop()) |
| 1382 | break; |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 1383 | bytes_copied = nfsd_copy_file_range(copy->nf_src->nf_file, |
| 1384 | src_pos, copy->nf_dst->nf_file, dst_pos, |
| 1385 | bytes_total); |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1386 | if (bytes_copied <= 0) |
| 1387 | break; |
| 1388 | bytes_total -= bytes_copied; |
| 1389 | copy->cp_res.wr_bytes_written += bytes_copied; |
| 1390 | src_pos += bytes_copied; |
| 1391 | dst_pos += bytes_copied; |
| 1392 | } while (bytes_total > 0 && !copy->cp_synchronous); |
| 1393 | return bytes_copied; |
| 1394 | } |
| 1395 | |
| 1396 | static __be32 nfsd4_do_copy(struct nfsd4_copy *copy, bool sync) |
| 1397 | { |
| 1398 | __be32 status; |
| 1399 | ssize_t bytes; |
| 1400 | |
| 1401 | bytes = _nfsd_copy_file_range(copy); |
| 1402 | /* for async copy, we ignore the error, client can always retry |
| 1403 | * to get the error |
| 1404 | */ |
| 1405 | if (bytes < 0 && !copy->cp_res.wr_bytes_written) |
| 1406 | status = nfserrno(bytes); |
| 1407 | else { |
| 1408 | nfsd4_init_copy_res(copy, sync); |
| 1409 | status = nfs_ok; |
| 1410 | } |
| 1411 | |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1412 | if (!copy->cp_intra) /* Inter server SSC */ |
| 1413 | nfsd4_cleanup_inter_ssc(copy->ss_mnt, copy->nf_src, |
| 1414 | copy->nf_dst); |
| 1415 | else |
| 1416 | nfsd4_cleanup_intra_ssc(copy->nf_src, copy->nf_dst); |
| 1417 | |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1418 | return status; |
| 1419 | } |
| 1420 | |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1421 | static int dup_copy_fields(struct nfsd4_copy *src, struct nfsd4_copy *dst) |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1422 | { |
| 1423 | dst->cp_src_pos = src->cp_src_pos; |
| 1424 | dst->cp_dst_pos = src->cp_dst_pos; |
| 1425 | dst->cp_count = src->cp_count; |
| 1426 | dst->cp_synchronous = src->cp_synchronous; |
| 1427 | memcpy(&dst->cp_res, &src->cp_res, sizeof(src->cp_res)); |
| 1428 | memcpy(&dst->fh, &src->fh, sizeof(src->fh)); |
| 1429 | dst->cp_clp = src->cp_clp; |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 1430 | dst->nf_dst = nfsd_file_get(src->nf_dst); |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1431 | dst->cp_intra = src->cp_intra; |
| 1432 | if (src->cp_intra) /* for inter, file_src doesn't exist yet */ |
| 1433 | dst->nf_src = nfsd_file_get(src->nf_src); |
| 1434 | |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1435 | memcpy(&dst->cp_stateid, &src->cp_stateid, sizeof(src->cp_stateid)); |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1436 | memcpy(&dst->cp_src, &src->cp_src, sizeof(struct nl4_server)); |
| 1437 | memcpy(&dst->stateid, &src->stateid, sizeof(src->stateid)); |
| 1438 | memcpy(&dst->c_fh, &src->c_fh, sizeof(src->c_fh)); |
| 1439 | dst->ss_mnt = src->ss_mnt; |
| 1440 | |
| 1441 | return 0; |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1442 | } |
| 1443 | |
| 1444 | static void cleanup_async_copy(struct nfsd4_copy *copy) |
| 1445 | { |
Olga Kornievskaia | 624322f | 2019-10-04 16:34:26 -0400 | [diff] [blame] | 1446 | nfs4_free_copy_state(copy); |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 1447 | nfsd_file_put(copy->nf_dst); |
Olga Kornievskaia | 2e577f0 | 2019-12-04 15:13:54 -0500 | [diff] [blame] | 1448 | if (copy->cp_intra) |
| 1449 | nfsd_file_put(copy->nf_src); |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1450 | spin_lock(©->cp_clp->async_lock); |
| 1451 | list_del(©->copies); |
| 1452 | spin_unlock(©->cp_clp->async_lock); |
| 1453 | nfs4_put_copy(copy); |
| 1454 | } |
| 1455 | |
| 1456 | static int nfsd4_do_async_copy(void *data) |
| 1457 | { |
| 1458 | struct nfsd4_copy *copy = (struct nfsd4_copy *)data; |
| 1459 | struct nfsd4_copy *cb_copy; |
| 1460 | |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1461 | if (!copy->cp_intra) { /* Inter server SSC */ |
| 1462 | copy->nf_src = kzalloc(sizeof(struct nfsd_file), GFP_KERNEL); |
| 1463 | if (!copy->nf_src) { |
| 1464 | copy->nfserr = nfserr_serverfault; |
| 1465 | nfsd4_interssc_disconnect(copy->ss_mnt); |
| 1466 | goto do_callback; |
| 1467 | } |
| 1468 | copy->nf_src->nf_file = nfs42_ssc_open(copy->ss_mnt, ©->c_fh, |
| 1469 | ©->stateid); |
| 1470 | if (IS_ERR(copy->nf_src->nf_file)) { |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1471 | copy->nfserr = nfserr_offload_denied; |
| 1472 | nfsd4_interssc_disconnect(copy->ss_mnt); |
| 1473 | goto do_callback; |
| 1474 | } |
| 1475 | } |
| 1476 | |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1477 | copy->nfserr = nfsd4_do_copy(copy, 0); |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1478 | do_callback: |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1479 | cb_copy = kzalloc(sizeof(struct nfsd4_copy), GFP_KERNEL); |
| 1480 | if (!cb_copy) |
| 1481 | goto out; |
| 1482 | memcpy(&cb_copy->cp_res, ©->cp_res, sizeof(copy->cp_res)); |
| 1483 | cb_copy->cp_clp = copy->cp_clp; |
| 1484 | cb_copy->nfserr = copy->nfserr; |
| 1485 | memcpy(&cb_copy->fh, ©->fh, sizeof(copy->fh)); |
| 1486 | nfsd4_init_cb(&cb_copy->cp_cb, cb_copy->cp_clp, |
| 1487 | &nfsd4_cb_offload_ops, NFSPROC4_CLNT_CB_OFFLOAD); |
| 1488 | nfsd4_run_cb(&cb_copy->cp_cb); |
| 1489 | out: |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1490 | if (!copy->cp_intra) |
| 1491 | kfree(copy->nf_src); |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1492 | cleanup_async_copy(copy); |
| 1493 | return 0; |
| 1494 | } |
| 1495 | |
Christoph Hellwig | ffa0160 | 2015-12-03 12:59:52 +0100 | [diff] [blame] | 1496 | static __be32 |
Anna Schumaker | 29ae7f9 | 2016-09-07 15:57:30 -0400 | [diff] [blame] | 1497 | nfsd4_copy(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1498 | union nfsd4_op_u *u) |
Anna Schumaker | 29ae7f9 | 2016-09-07 15:57:30 -0400 | [diff] [blame] | 1499 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1500 | struct nfsd4_copy *copy = &u->copy; |
Anna Schumaker | 29ae7f9 | 2016-09-07 15:57:30 -0400 | [diff] [blame] | 1501 | __be32 status; |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1502 | struct nfsd4_copy *async_copy = NULL; |
Anna Schumaker | 29ae7f9 | 2016-09-07 15:57:30 -0400 | [diff] [blame] | 1503 | |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1504 | if (!copy->cp_intra) { /* Inter server SSC */ |
| 1505 | if (!inter_copy_offload_enable || copy->cp_synchronous) { |
| 1506 | status = nfserr_notsupp; |
| 1507 | goto out; |
| 1508 | } |
| 1509 | status = nfsd4_setup_inter_ssc(rqstp, cstate, copy, |
| 1510 | ©->ss_mnt); |
| 1511 | if (status) |
| 1512 | return nfserr_offload_denied; |
| 1513 | } else { |
| 1514 | status = nfsd4_setup_intra_ssc(rqstp, cstate, copy); |
| 1515 | if (status) |
| 1516 | return status; |
| 1517 | } |
Anna Schumaker | 29ae7f9 | 2016-09-07 15:57:30 -0400 | [diff] [blame] | 1518 | |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1519 | copy->cp_clp = cstate->clp; |
| 1520 | memcpy(©->fh, &cstate->current_fh.fh_handle, |
| 1521 | sizeof(struct knfsd_fh)); |
| 1522 | if (!copy->cp_synchronous) { |
| 1523 | struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id); |
Anna Schumaker | 29ae7f9 | 2016-09-07 15:57:30 -0400 | [diff] [blame] | 1524 | |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1525 | status = nfserrno(-ENOMEM); |
| 1526 | async_copy = kzalloc(sizeof(struct nfsd4_copy), GFP_KERNEL); |
| 1527 | if (!async_copy) |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1528 | goto out_err; |
| 1529 | if (!nfs4_init_copy_state(nn, copy)) |
| 1530 | goto out_err; |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1531 | refcount_set(&async_copy->refcount, 1); |
| 1532 | memcpy(©->cp_res.cb_stateid, ©->cp_stateid, |
| 1533 | sizeof(copy->cp_stateid)); |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1534 | status = dup_copy_fields(copy, async_copy); |
| 1535 | if (status) |
| 1536 | goto out_err; |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1537 | async_copy->copy_task = kthread_create(nfsd4_do_async_copy, |
| 1538 | async_copy, "%s", "copy thread"); |
| 1539 | if (IS_ERR(async_copy->copy_task)) |
| 1540 | goto out_err; |
| 1541 | spin_lock(&async_copy->cp_clp->async_lock); |
| 1542 | list_add(&async_copy->copies, |
| 1543 | &async_copy->cp_clp->async_copies); |
| 1544 | spin_unlock(&async_copy->cp_clp->async_lock); |
| 1545 | wake_up_process(async_copy->copy_task); |
Anna Schumaker | 29ae7f9 | 2016-09-07 15:57:30 -0400 | [diff] [blame] | 1546 | status = nfs_ok; |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1547 | } else { |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1548 | status = nfsd4_do_copy(copy, 1); |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1549 | } |
Anna Schumaker | 29ae7f9 | 2016-09-07 15:57:30 -0400 | [diff] [blame] | 1550 | out: |
| 1551 | return status; |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1552 | out_err: |
Olga Kornievskaia | 18f428d | 2019-12-04 15:13:54 -0500 | [diff] [blame] | 1553 | if (async_copy) |
| 1554 | cleanup_async_copy(async_copy); |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1555 | status = nfserrno(-ENOMEM); |
| 1556 | if (!copy->cp_intra) |
| 1557 | nfsd4_interssc_disconnect(copy->ss_mnt); |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1558 | goto out; |
| 1559 | } |
| 1560 | |
| 1561 | struct nfsd4_copy * |
| 1562 | find_async_copy(struct nfs4_client *clp, stateid_t *stateid) |
| 1563 | { |
| 1564 | struct nfsd4_copy *copy; |
| 1565 | |
| 1566 | spin_lock(&clp->async_lock); |
| 1567 | list_for_each_entry(copy, &clp->async_copies, copies) { |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1568 | if (memcmp(©->cp_stateid.stid, stateid, NFS4_STATEID_SIZE)) |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1569 | continue; |
| 1570 | refcount_inc(©->refcount); |
| 1571 | spin_unlock(&clp->async_lock); |
| 1572 | return copy; |
| 1573 | } |
| 1574 | spin_unlock(&clp->async_lock); |
| 1575 | return NULL; |
Anna Schumaker | 29ae7f9 | 2016-09-07 15:57:30 -0400 | [diff] [blame] | 1576 | } |
| 1577 | |
| 1578 | static __be32 |
Olga Kornievskaia | 885e2bf | 2018-07-20 18:19:19 -0400 | [diff] [blame] | 1579 | nfsd4_offload_cancel(struct svc_rqst *rqstp, |
| 1580 | struct nfsd4_compound_state *cstate, |
| 1581 | union nfsd4_op_u *u) |
| 1582 | { |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1583 | struct nfsd4_offload_status *os = &u->offload_status; |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1584 | struct nfsd4_copy *copy; |
| 1585 | struct nfs4_client *clp = cstate->clp; |
| 1586 | |
| 1587 | copy = find_async_copy(clp, &os->stateid); |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1588 | if (!copy) { |
| 1589 | struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id); |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1590 | |
Olga Kornievskaia | ce0887a | 2019-10-09 11:50:48 -0400 | [diff] [blame] | 1591 | return manage_cpntf_state(nn, &os->stateid, clp, NULL); |
| 1592 | } else |
| 1593 | nfsd4_stop_copy(copy); |
| 1594 | |
| 1595 | return nfs_ok; |
Olga Kornievskaia | 885e2bf | 2018-07-20 18:19:19 -0400 | [diff] [blame] | 1596 | } |
| 1597 | |
| 1598 | static __be32 |
Olga Kornievskaia | 5191186 | 2019-08-08 11:14:59 -0400 | [diff] [blame] | 1599 | nfsd4_copy_notify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 1600 | union nfsd4_op_u *u) |
| 1601 | { |
Olga Kornievskaia | 624322f | 2019-10-04 16:34:26 -0400 | [diff] [blame] | 1602 | struct nfsd4_copy_notify *cn = &u->copy_notify; |
| 1603 | __be32 status; |
| 1604 | struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id); |
| 1605 | struct nfs4_stid *stid; |
| 1606 | struct nfs4_cpntf_state *cps; |
| 1607 | struct nfs4_client *clp = cstate->clp; |
| 1608 | |
| 1609 | status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh, |
| 1610 | &cn->cpn_src_stateid, RD_STATE, NULL, |
| 1611 | &stid); |
| 1612 | if (status) |
| 1613 | return status; |
| 1614 | |
| 1615 | cn->cpn_sec = nn->nfsd4_lease; |
| 1616 | cn->cpn_nsec = 0; |
| 1617 | |
| 1618 | status = nfserrno(-ENOMEM); |
| 1619 | cps = nfs4_alloc_init_cpntf_state(nn, stid); |
| 1620 | if (!cps) |
| 1621 | goto out; |
| 1622 | memcpy(&cn->cpn_cnr_stateid, &cps->cp_stateid.stid, sizeof(stateid_t)); |
| 1623 | memcpy(&cps->cp_p_stateid, &stid->sc_stateid, sizeof(stateid_t)); |
| 1624 | memcpy(&cps->cp_p_clid, &clp->cl_clientid, sizeof(clientid_t)); |
| 1625 | |
| 1626 | /* For now, only return one server address in cpn_src, the |
| 1627 | * address used by the client to connect to this server. |
| 1628 | */ |
| 1629 | cn->cpn_src.nl4_type = NL4_NETADDR; |
| 1630 | status = nfsd4_set_netaddr((struct sockaddr *)&rqstp->rq_daddr, |
| 1631 | &cn->cpn_src.u.nl4_addr); |
| 1632 | WARN_ON_ONCE(status); |
| 1633 | if (status) { |
| 1634 | nfs4_put_cpntf_state(nn, cps); |
| 1635 | goto out; |
| 1636 | } |
| 1637 | out: |
| 1638 | nfs4_put_stid(stid); |
| 1639 | return status; |
Olga Kornievskaia | 5191186 | 2019-08-08 11:14:59 -0400 | [diff] [blame] | 1640 | } |
| 1641 | |
| 1642 | static __be32 |
Anna Schumaker | 95d871f | 2014-11-07 14:44:26 -0500 | [diff] [blame] | 1643 | nfsd4_fallocate(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
| 1644 | struct nfsd4_fallocate *fallocate, int flags) |
| 1645 | { |
J. Bruce Fields | 0d4d672 | 2018-11-06 17:44:03 -0500 | [diff] [blame] | 1646 | __be32 status; |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 1647 | struct nfsd_file *nf; |
Anna Schumaker | 95d871f | 2014-11-07 14:44:26 -0500 | [diff] [blame] | 1648 | |
Anna Schumaker | aa0d6ae | 2015-12-03 12:59:51 +0100 | [diff] [blame] | 1649 | status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh, |
Anna Schumaker | 95d871f | 2014-11-07 14:44:26 -0500 | [diff] [blame] | 1650 | &fallocate->falloc_stateid, |
Olga Kornievskaia | 624322f | 2019-10-04 16:34:26 -0400 | [diff] [blame] | 1651 | WR_STATE, &nf, NULL); |
Anna Schumaker | 95d871f | 2014-11-07 14:44:26 -0500 | [diff] [blame] | 1652 | if (status != nfs_ok) { |
| 1653 | dprintk("NFSD: nfsd4_fallocate: couldn't process stateid!\n"); |
| 1654 | return status; |
| 1655 | } |
| 1656 | |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 1657 | status = nfsd4_vfs_fallocate(rqstp, &cstate->current_fh, nf->nf_file, |
Anna Schumaker | 95d871f | 2014-11-07 14:44:26 -0500 | [diff] [blame] | 1658 | fallocate->falloc_offset, |
| 1659 | fallocate->falloc_length, |
| 1660 | flags); |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 1661 | nfsd_file_put(nf); |
Anna Schumaker | 95d871f | 2014-11-07 14:44:26 -0500 | [diff] [blame] | 1662 | return status; |
| 1663 | } |
Olga Kornievskaia | 6308bc9 | 2018-07-20 18:19:18 -0400 | [diff] [blame] | 1664 | static __be32 |
| 1665 | nfsd4_offload_status(struct svc_rqst *rqstp, |
| 1666 | struct nfsd4_compound_state *cstate, |
| 1667 | union nfsd4_op_u *u) |
| 1668 | { |
Olga Kornievskaia | e0639dc | 2018-07-20 18:19:20 -0400 | [diff] [blame] | 1669 | struct nfsd4_offload_status *os = &u->offload_status; |
| 1670 | __be32 status = 0; |
| 1671 | struct nfsd4_copy *copy; |
| 1672 | struct nfs4_client *clp = cstate->clp; |
| 1673 | |
| 1674 | copy = find_async_copy(clp, &os->stateid); |
| 1675 | if (copy) { |
| 1676 | os->count = copy->cp_res.wr_bytes_written; |
| 1677 | nfs4_put_copy(copy); |
| 1678 | } else |
| 1679 | status = nfserr_bad_stateid; |
| 1680 | |
| 1681 | return status; |
Olga Kornievskaia | 6308bc9 | 2018-07-20 18:19:18 -0400 | [diff] [blame] | 1682 | } |
Anna Schumaker | 95d871f | 2014-11-07 14:44:26 -0500 | [diff] [blame] | 1683 | |
| 1684 | static __be32 |
| 1685 | nfsd4_allocate(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1686 | union nfsd4_op_u *u) |
Anna Schumaker | 95d871f | 2014-11-07 14:44:26 -0500 | [diff] [blame] | 1687 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1688 | return nfsd4_fallocate(rqstp, cstate, &u->allocate, 0); |
Anna Schumaker | 95d871f | 2014-11-07 14:44:26 -0500 | [diff] [blame] | 1689 | } |
| 1690 | |
| 1691 | static __be32 |
Anna Schumaker | b0cb908 | 2014-11-07 14:44:27 -0500 | [diff] [blame] | 1692 | nfsd4_deallocate(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1693 | union nfsd4_op_u *u) |
Anna Schumaker | b0cb908 | 2014-11-07 14:44:27 -0500 | [diff] [blame] | 1694 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1695 | return nfsd4_fallocate(rqstp, cstate, &u->deallocate, |
Anna Schumaker | b0cb908 | 2014-11-07 14:44:27 -0500 | [diff] [blame] | 1696 | FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE); |
| 1697 | } |
| 1698 | |
| 1699 | static __be32 |
Anna Schumaker | 24bab49 | 2014-09-26 13:58:27 -0400 | [diff] [blame] | 1700 | nfsd4_seek(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1701 | union nfsd4_op_u *u) |
Anna Schumaker | 24bab49 | 2014-09-26 13:58:27 -0400 | [diff] [blame] | 1702 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1703 | struct nfsd4_seek *seek = &u->seek; |
Anna Schumaker | 24bab49 | 2014-09-26 13:58:27 -0400 | [diff] [blame] | 1704 | int whence; |
| 1705 | __be32 status; |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 1706 | struct nfsd_file *nf; |
Anna Schumaker | 24bab49 | 2014-09-26 13:58:27 -0400 | [diff] [blame] | 1707 | |
Anna Schumaker | aa0d6ae | 2015-12-03 12:59:51 +0100 | [diff] [blame] | 1708 | status = nfs4_preprocess_stateid_op(rqstp, cstate, &cstate->current_fh, |
Anna Schumaker | 24bab49 | 2014-09-26 13:58:27 -0400 | [diff] [blame] | 1709 | &seek->seek_stateid, |
Olga Kornievskaia | 624322f | 2019-10-04 16:34:26 -0400 | [diff] [blame] | 1710 | RD_STATE, &nf, NULL); |
Anna Schumaker | 24bab49 | 2014-09-26 13:58:27 -0400 | [diff] [blame] | 1711 | if (status) { |
| 1712 | dprintk("NFSD: nfsd4_seek: couldn't process stateid!\n"); |
| 1713 | return status; |
| 1714 | } |
| 1715 | |
| 1716 | switch (seek->seek_whence) { |
| 1717 | case NFS4_CONTENT_DATA: |
| 1718 | whence = SEEK_DATA; |
| 1719 | break; |
| 1720 | case NFS4_CONTENT_HOLE: |
| 1721 | whence = SEEK_HOLE; |
| 1722 | break; |
| 1723 | default: |
| 1724 | status = nfserr_union_notsupp; |
| 1725 | goto out; |
| 1726 | } |
| 1727 | |
| 1728 | /* |
| 1729 | * Note: This call does change file->f_pos, but nothing in NFSD |
| 1730 | * should ever file->f_pos. |
| 1731 | */ |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 1732 | seek->seek_pos = vfs_llseek(nf->nf_file, seek->seek_offset, whence); |
Anna Schumaker | 24bab49 | 2014-09-26 13:58:27 -0400 | [diff] [blame] | 1733 | if (seek->seek_pos < 0) |
| 1734 | status = nfserrno(seek->seek_pos); |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 1735 | else if (seek->seek_pos >= i_size_read(file_inode(nf->nf_file))) |
Anna Schumaker | 24bab49 | 2014-09-26 13:58:27 -0400 | [diff] [blame] | 1736 | seek->seek_eof = true; |
| 1737 | |
| 1738 | out: |
Jeff Layton | 5c4583b | 2019-08-18 14:18:54 -0400 | [diff] [blame] | 1739 | nfsd_file_put(nf); |
Anna Schumaker | 24bab49 | 2014-09-26 13:58:27 -0400 | [diff] [blame] | 1740 | return status; |
| 1741 | } |
| 1742 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1743 | /* This routine never returns NFS_OK! If there are no other errors, it |
| 1744 | * will return NFSERR_SAME or NFSERR_NOT_SAME depending on whether the |
| 1745 | * attributes matched. VERIFY is implemented by mapping NFSERR_SAME |
| 1746 | * to NFS_OK after the call; NVERIFY by mapping NFSERR_NOT_SAME to NFS_OK. |
| 1747 | */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1748 | static __be32 |
J.Bruce Fields | c954e2a | 2006-12-13 00:35:31 -0800 | [diff] [blame] | 1749 | _nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 1750 | struct nfsd4_verify *verify) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1751 | { |
Al Viro | 2ebbc01 | 2006-10-19 23:28:58 -0700 | [diff] [blame] | 1752 | __be32 *buf, *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | int count; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 1754 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1755 | |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 1756 | status = fh_verify(rqstp, &cstate->current_fh, 0, NFSD_MAY_NOP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1757 | if (status) |
| 1758 | return status; |
| 1759 | |
Yu Zhiguo | 3c8e031 | 2009-05-16 16:22:31 +0800 | [diff] [blame] | 1760 | status = check_attr_support(rqstp, cstate, verify->ve_bmval, NULL); |
| 1761 | if (status) |
| 1762 | return status; |
| 1763 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1764 | if ((verify->ve_bmval[0] & FATTR4_WORD0_RDATTR_ERROR) |
| 1765 | || (verify->ve_bmval[1] & NFSD_WRITEONLY_ATTRS_WORD1)) |
| 1766 | return nfserr_inval; |
| 1767 | if (verify->ve_attrlen & 3) |
| 1768 | return nfserr_inval; |
| 1769 | |
| 1770 | /* count in words: |
| 1771 | * bitmap_len(1) + bitmap(2) + attr_len(1) = 4 |
| 1772 | */ |
| 1773 | count = 4 + (verify->ve_attrlen >> 2); |
| 1774 | buf = kmalloc(count << 2, GFP_KERNEL); |
| 1775 | if (!buf) |
J. Bruce Fields | 3e77246 | 2011-08-10 19:07:33 -0400 | [diff] [blame] | 1776 | return nfserr_jukebox; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1777 | |
J. Bruce Fields | 84822d0 | 2012-12-14 17:57:50 -0500 | [diff] [blame] | 1778 | p = buf; |
J. Bruce Fields | d518465 | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 1779 | status = nfsd4_encode_fattr_to_buf(&p, count, &cstate->current_fh, |
J.Bruce Fields | ca36431 | 2006-12-13 00:35:27 -0800 | [diff] [blame] | 1780 | cstate->current_fh.fh_export, |
J. Bruce Fields | d518465 | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 1781 | cstate->current_fh.fh_dentry, |
| 1782 | verify->ve_bmval, |
Frank Filz | 406a7ea | 2007-11-27 11:34:05 -0800 | [diff] [blame] | 1783 | rqstp, 0); |
J. Bruce Fields | 41ae6e71 | 2013-08-21 15:32:50 -0400 | [diff] [blame] | 1784 | /* |
| 1785 | * If nfsd4_encode_fattr() ran out of space, assume that's because |
| 1786 | * the attributes are longer (hence different) than those given: |
| 1787 | */ |
J. Bruce Fields | 84822d0 | 2012-12-14 17:57:50 -0500 | [diff] [blame] | 1788 | if (status == nfserr_resource) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1789 | status = nfserr_not_same; |
| 1790 | if (status) |
| 1791 | goto out_kfree; |
| 1792 | |
Benny Halevy | 95ec28c | 2009-04-03 08:29:08 +0300 | [diff] [blame] | 1793 | /* skip bitmap */ |
| 1794 | p = buf + 1 + ntohl(buf[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1795 | status = nfserr_not_same; |
| 1796 | if (ntohl(*p++) != verify->ve_attrlen) |
| 1797 | goto out_kfree; |
| 1798 | if (!memcmp(p, verify->ve_attrval, verify->ve_attrlen)) |
| 1799 | status = nfserr_same; |
| 1800 | |
| 1801 | out_kfree: |
| 1802 | kfree(buf); |
| 1803 | return status; |
| 1804 | } |
| 1805 | |
J.Bruce Fields | c954e2a | 2006-12-13 00:35:31 -0800 | [diff] [blame] | 1806 | static __be32 |
| 1807 | nfsd4_nverify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1808 | union nfsd4_op_u *u) |
J.Bruce Fields | c954e2a | 2006-12-13 00:35:31 -0800 | [diff] [blame] | 1809 | { |
| 1810 | __be32 status; |
| 1811 | |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1812 | status = _nfsd4_verify(rqstp, cstate, &u->verify); |
J.Bruce Fields | c954e2a | 2006-12-13 00:35:31 -0800 | [diff] [blame] | 1813 | return status == nfserr_not_same ? nfs_ok : status; |
| 1814 | } |
| 1815 | |
| 1816 | static __be32 |
| 1817 | nfsd4_verify(struct svc_rqst *rqstp, struct nfsd4_compound_state *cstate, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1818 | union nfsd4_op_u *u) |
J.Bruce Fields | c954e2a | 2006-12-13 00:35:31 -0800 | [diff] [blame] | 1819 | { |
| 1820 | __be32 status; |
| 1821 | |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1822 | status = _nfsd4_verify(rqstp, cstate, &u->nverify); |
J.Bruce Fields | c954e2a | 2006-12-13 00:35:31 -0800 | [diff] [blame] | 1823 | return status == nfserr_same ? nfs_ok : status; |
| 1824 | } |
| 1825 | |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1826 | #ifdef CONFIG_NFSD_PNFS |
| 1827 | static const struct nfsd4_layout_ops * |
| 1828 | nfsd4_layout_verify(struct svc_export *exp, unsigned int layout_type) |
| 1829 | { |
Jeff Layton | 8a4c392 | 2016-07-10 15:55:58 -0400 | [diff] [blame] | 1830 | if (!exp->ex_layout_types) { |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1831 | dprintk("%s: export does not support pNFS\n", __func__); |
| 1832 | return NULL; |
| 1833 | } |
| 1834 | |
Ari Kauppi | b550a32 | 2017-05-05 16:07:55 -0400 | [diff] [blame] | 1835 | if (layout_type >= LAYOUT_TYPE_MAX || |
| 1836 | !(exp->ex_layout_types & (1 << layout_type))) { |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1837 | dprintk("%s: layout type %d not supported\n", |
| 1838 | __func__, layout_type); |
| 1839 | return NULL; |
| 1840 | } |
| 1841 | |
| 1842 | return nfsd4_layout_ops[layout_type]; |
| 1843 | } |
| 1844 | |
| 1845 | static __be32 |
| 1846 | nfsd4_getdeviceinfo(struct svc_rqst *rqstp, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1847 | struct nfsd4_compound_state *cstate, union nfsd4_op_u *u) |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1848 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1849 | struct nfsd4_getdeviceinfo *gdp = &u->getdeviceinfo; |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1850 | const struct nfsd4_layout_ops *ops; |
| 1851 | struct nfsd4_deviceid_map *map; |
| 1852 | struct svc_export *exp; |
| 1853 | __be32 nfserr; |
| 1854 | |
| 1855 | dprintk("%s: layout_type %u dev_id [0x%llx:0x%x] maxcnt %u\n", |
| 1856 | __func__, |
| 1857 | gdp->gd_layout_type, |
| 1858 | gdp->gd_devid.fsid_idx, gdp->gd_devid.generation, |
| 1859 | gdp->gd_maxcount); |
| 1860 | |
| 1861 | map = nfsd4_find_devid_map(gdp->gd_devid.fsid_idx); |
| 1862 | if (!map) { |
| 1863 | dprintk("%s: couldn't find device ID to export mapping!\n", |
| 1864 | __func__); |
| 1865 | return nfserr_noent; |
| 1866 | } |
| 1867 | |
| 1868 | exp = rqst_exp_find(rqstp, map->fsid_type, map->fsid); |
| 1869 | if (IS_ERR(exp)) { |
| 1870 | dprintk("%s: could not find device id\n", __func__); |
| 1871 | return nfserr_noent; |
| 1872 | } |
| 1873 | |
| 1874 | nfserr = nfserr_layoutunavailable; |
| 1875 | ops = nfsd4_layout_verify(exp, gdp->gd_layout_type); |
| 1876 | if (!ops) |
| 1877 | goto out; |
| 1878 | |
| 1879 | nfserr = nfs_ok; |
Christoph Hellwig | f99d4fb | 2016-03-04 20:46:17 +0100 | [diff] [blame] | 1880 | if (gdp->gd_maxcount != 0) { |
| 1881 | nfserr = ops->proc_getdeviceinfo(exp->ex_path.mnt->mnt_sb, |
Tom Haynes | d7c920d | 2016-06-14 13:41:27 -0700 | [diff] [blame] | 1882 | rqstp, cstate->session->se_client, gdp); |
Christoph Hellwig | f99d4fb | 2016-03-04 20:46:17 +0100 | [diff] [blame] | 1883 | } |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1884 | |
| 1885 | gdp->gd_notify_types &= ops->notify_types; |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1886 | out: |
Kinglong Mee | a142038 | 2015-03-15 23:12:15 +0800 | [diff] [blame] | 1887 | exp_put(exp); |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1888 | return nfserr; |
| 1889 | } |
| 1890 | |
J. Bruce Fields | 34b1744c | 2017-05-05 17:09:37 -0400 | [diff] [blame] | 1891 | static void |
| 1892 | nfsd4_getdeviceinfo_release(union nfsd4_op_u *u) |
| 1893 | { |
| 1894 | kfree(u->getdeviceinfo.gd_device); |
| 1895 | } |
| 1896 | |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1897 | static __be32 |
| 1898 | nfsd4_layoutget(struct svc_rqst *rqstp, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1899 | struct nfsd4_compound_state *cstate, union nfsd4_op_u *u) |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1900 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1901 | struct nfsd4_layoutget *lgp = &u->layoutget; |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1902 | struct svc_fh *current_fh = &cstate->current_fh; |
| 1903 | const struct nfsd4_layout_ops *ops; |
| 1904 | struct nfs4_layout_stateid *ls; |
| 1905 | __be32 nfserr; |
Benjamin Coddington | 66282ec | 2017-12-19 09:35:25 -0500 | [diff] [blame] | 1906 | int accmode = NFSD_MAY_READ_IF_EXEC; |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1907 | |
| 1908 | switch (lgp->lg_seg.iomode) { |
| 1909 | case IOMODE_READ: |
Benjamin Coddington | 66282ec | 2017-12-19 09:35:25 -0500 | [diff] [blame] | 1910 | accmode |= NFSD_MAY_READ; |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1911 | break; |
| 1912 | case IOMODE_RW: |
Benjamin Coddington | 66282ec | 2017-12-19 09:35:25 -0500 | [diff] [blame] | 1913 | accmode |= NFSD_MAY_READ | NFSD_MAY_WRITE; |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1914 | break; |
| 1915 | default: |
| 1916 | dprintk("%s: invalid iomode %d\n", |
| 1917 | __func__, lgp->lg_seg.iomode); |
| 1918 | nfserr = nfserr_badiomode; |
| 1919 | goto out; |
| 1920 | } |
| 1921 | |
| 1922 | nfserr = fh_verify(rqstp, current_fh, 0, accmode); |
| 1923 | if (nfserr) |
| 1924 | goto out; |
| 1925 | |
| 1926 | nfserr = nfserr_layoutunavailable; |
| 1927 | ops = nfsd4_layout_verify(current_fh->fh_export, lgp->lg_layout_type); |
| 1928 | if (!ops) |
| 1929 | goto out; |
| 1930 | |
| 1931 | /* |
| 1932 | * Verify minlength and range as per RFC5661: |
| 1933 | * o If loga_length is less than loga_minlength, |
| 1934 | * the metadata server MUST return NFS4ERR_INVAL. |
| 1935 | * o If the sum of loga_offset and loga_minlength exceeds |
| 1936 | * NFS4_UINT64_MAX, and loga_minlength is not |
| 1937 | * NFS4_UINT64_MAX, the error NFS4ERR_INVAL MUST result. |
| 1938 | * o If the sum of loga_offset and loga_length exceeds |
| 1939 | * NFS4_UINT64_MAX, and loga_length is not NFS4_UINT64_MAX, |
| 1940 | * the error NFS4ERR_INVAL MUST result. |
| 1941 | */ |
| 1942 | nfserr = nfserr_inval; |
| 1943 | if (lgp->lg_seg.length < lgp->lg_minlength || |
| 1944 | (lgp->lg_minlength != NFS4_MAX_UINT64 && |
| 1945 | lgp->lg_minlength > NFS4_MAX_UINT64 - lgp->lg_seg.offset) || |
| 1946 | (lgp->lg_seg.length != NFS4_MAX_UINT64 && |
| 1947 | lgp->lg_seg.length > NFS4_MAX_UINT64 - lgp->lg_seg.offset)) |
| 1948 | goto out; |
| 1949 | if (lgp->lg_seg.length == 0) |
| 1950 | goto out; |
| 1951 | |
| 1952 | nfserr = nfsd4_preprocess_layout_stateid(rqstp, cstate, &lgp->lg_sid, |
| 1953 | true, lgp->lg_layout_type, &ls); |
Christoph Hellwig | 31ef83d | 2014-08-16 19:02:22 -0500 | [diff] [blame] | 1954 | if (nfserr) { |
Chuck Lever | f394b62 | 2018-03-27 10:53:11 -0400 | [diff] [blame] | 1955 | trace_nfsd_layout_get_lookup_fail(&lgp->lg_sid); |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1956 | goto out; |
Christoph Hellwig | 31ef83d | 2014-08-16 19:02:22 -0500 | [diff] [blame] | 1957 | } |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1958 | |
Christoph Hellwig | c5c707f | 2014-09-23 12:38:48 +0200 | [diff] [blame] | 1959 | nfserr = nfserr_recallconflict; |
| 1960 | if (atomic_read(&ls->ls_stid.sc_file->fi_lo_recalls)) |
| 1961 | goto out_put_stid; |
| 1962 | |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1963 | nfserr = ops->proc_layoutget(d_inode(current_fh->fh_dentry), |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1964 | current_fh, lgp); |
| 1965 | if (nfserr) |
| 1966 | goto out_put_stid; |
| 1967 | |
| 1968 | nfserr = nfsd4_insert_layout(lgp, ls); |
| 1969 | |
| 1970 | out_put_stid: |
Jeff Layton | cc8a553 | 2015-09-17 07:58:24 -0400 | [diff] [blame] | 1971 | mutex_unlock(&ls->ls_mutex); |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1972 | nfs4_put_stid(&ls->ls_stid); |
| 1973 | out: |
| 1974 | return nfserr; |
| 1975 | } |
| 1976 | |
J. Bruce Fields | 34b1744c | 2017-05-05 17:09:37 -0400 | [diff] [blame] | 1977 | static void |
| 1978 | nfsd4_layoutget_release(union nfsd4_op_u *u) |
| 1979 | { |
| 1980 | kfree(u->layoutget.lg_content); |
| 1981 | } |
| 1982 | |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1983 | static __be32 |
| 1984 | nfsd4_layoutcommit(struct svc_rqst *rqstp, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1985 | struct nfsd4_compound_state *cstate, union nfsd4_op_u *u) |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1986 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 1987 | struct nfsd4_layoutcommit *lcp = &u->layoutcommit; |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 1988 | const struct nfsd4_layout_seg *seg = &lcp->lc_seg; |
| 1989 | struct svc_fh *current_fh = &cstate->current_fh; |
| 1990 | const struct nfsd4_layout_ops *ops; |
| 1991 | loff_t new_size = lcp->lc_last_wr + 1; |
| 1992 | struct inode *inode; |
| 1993 | struct nfs4_layout_stateid *ls; |
| 1994 | __be32 nfserr; |
| 1995 | |
| 1996 | nfserr = fh_verify(rqstp, current_fh, 0, NFSD_MAY_WRITE); |
| 1997 | if (nfserr) |
| 1998 | goto out; |
| 1999 | |
| 2000 | nfserr = nfserr_layoutunavailable; |
| 2001 | ops = nfsd4_layout_verify(current_fh->fh_export, lcp->lc_layout_type); |
| 2002 | if (!ops) |
| 2003 | goto out; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 2004 | inode = d_inode(current_fh->fh_dentry); |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 2005 | |
| 2006 | nfserr = nfserr_inval; |
| 2007 | if (new_size <= seg->offset) { |
| 2008 | dprintk("pnfsd: last write before layout segment\n"); |
| 2009 | goto out; |
| 2010 | } |
| 2011 | if (new_size > seg->offset + seg->length) { |
| 2012 | dprintk("pnfsd: last write beyond layout segment\n"); |
| 2013 | goto out; |
| 2014 | } |
| 2015 | if (!lcp->lc_newoffset && new_size > i_size_read(inode)) { |
| 2016 | dprintk("pnfsd: layoutcommit beyond EOF\n"); |
| 2017 | goto out; |
| 2018 | } |
| 2019 | |
| 2020 | nfserr = nfsd4_preprocess_layout_stateid(rqstp, cstate, &lcp->lc_sid, |
| 2021 | false, lcp->lc_layout_type, |
| 2022 | &ls); |
| 2023 | if (nfserr) { |
Chuck Lever | f394b62 | 2018-03-27 10:53:11 -0400 | [diff] [blame] | 2024 | trace_nfsd_layout_commit_lookup_fail(&lcp->lc_sid); |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 2025 | /* fixup error code as per RFC5661 */ |
| 2026 | if (nfserr == nfserr_bad_stateid) |
| 2027 | nfserr = nfserr_badlayout; |
| 2028 | goto out; |
| 2029 | } |
| 2030 | |
Jeff Layton | cc8a553 | 2015-09-17 07:58:24 -0400 | [diff] [blame] | 2031 | /* LAYOUTCOMMIT does not require any serialization */ |
| 2032 | mutex_unlock(&ls->ls_mutex); |
| 2033 | |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 2034 | if (new_size > i_size_read(inode)) { |
| 2035 | lcp->lc_size_chg = 1; |
| 2036 | lcp->lc_newsize = new_size; |
| 2037 | } else { |
| 2038 | lcp->lc_size_chg = 0; |
| 2039 | } |
| 2040 | |
Kinglong Mee | d8398fc | 2015-07-07 10:12:03 +0800 | [diff] [blame] | 2041 | nfserr = ops->proc_layoutcommit(inode, lcp); |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 2042 | nfs4_put_stid(&ls->ls_stid); |
| 2043 | out: |
| 2044 | return nfserr; |
| 2045 | } |
| 2046 | |
| 2047 | static __be32 |
| 2048 | nfsd4_layoutreturn(struct svc_rqst *rqstp, |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2049 | struct nfsd4_compound_state *cstate, union nfsd4_op_u *u) |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 2050 | { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2051 | struct nfsd4_layoutreturn *lrp = &u->layoutreturn; |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 2052 | struct svc_fh *current_fh = &cstate->current_fh; |
| 2053 | __be32 nfserr; |
| 2054 | |
| 2055 | nfserr = fh_verify(rqstp, current_fh, 0, NFSD_MAY_NOP); |
| 2056 | if (nfserr) |
| 2057 | goto out; |
| 2058 | |
| 2059 | nfserr = nfserr_layoutunavailable; |
| 2060 | if (!nfsd4_layout_verify(current_fh->fh_export, lrp->lr_layout_type)) |
| 2061 | goto out; |
| 2062 | |
| 2063 | switch (lrp->lr_seg.iomode) { |
| 2064 | case IOMODE_READ: |
| 2065 | case IOMODE_RW: |
| 2066 | case IOMODE_ANY: |
| 2067 | break; |
| 2068 | default: |
| 2069 | dprintk("%s: invalid iomode %d\n", __func__, |
| 2070 | lrp->lr_seg.iomode); |
| 2071 | nfserr = nfserr_inval; |
| 2072 | goto out; |
| 2073 | } |
| 2074 | |
| 2075 | switch (lrp->lr_return_type) { |
| 2076 | case RETURN_FILE: |
| 2077 | nfserr = nfsd4_return_file_layouts(rqstp, cstate, lrp); |
| 2078 | break; |
| 2079 | case RETURN_FSID: |
| 2080 | case RETURN_ALL: |
| 2081 | nfserr = nfsd4_return_client_layouts(rqstp, cstate, lrp); |
| 2082 | break; |
| 2083 | default: |
| 2084 | dprintk("%s: invalid return_type %d\n", __func__, |
| 2085 | lrp->lr_return_type); |
| 2086 | nfserr = nfserr_inval; |
| 2087 | break; |
| 2088 | } |
| 2089 | out: |
| 2090 | return nfserr; |
| 2091 | } |
| 2092 | #endif /* CONFIG_NFSD_PNFS */ |
| 2093 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2094 | /* |
| 2095 | * NULL call. |
| 2096 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 2097 | static __be32 |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 2098 | nfsd4_proc_null(struct svc_rqst *rqstp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2099 | { |
| 2100 | return nfs_ok; |
| 2101 | } |
| 2102 | |
Shankar Anand | e2b2095 | 2006-07-10 04:45:44 -0700 | [diff] [blame] | 2103 | static inline void nfsd4_increment_op_stats(u32 opnum) |
| 2104 | { |
| 2105 | if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP) |
| 2106 | nfsdstats.nfs4_opcount[opnum]++; |
| 2107 | } |
| 2108 | |
Christoph Hellwig | bb2a8b0 | 2017-05-08 23:46:47 +0200 | [diff] [blame] | 2109 | static const struct nfsd4_operation nfsd4_ops[]; |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2110 | |
Adrian Bunk | f1c7f79 | 2008-08-08 19:26:42 +0300 | [diff] [blame] | 2111 | static const char *nfsd4_op_name(unsigned opnum); |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2112 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2113 | /* |
J. Bruce Fields | 5771635 | 2010-04-21 12:27:19 -0400 | [diff] [blame] | 2114 | * Enforce NFSv4.1 COMPOUND ordering rules: |
Andy Adamson | f9bb94c4 | 2009-04-03 08:28:12 +0300 | [diff] [blame] | 2115 | * |
J. Bruce Fields | 5771635 | 2010-04-21 12:27:19 -0400 | [diff] [blame] | 2116 | * Also note, enforced elsewhere: |
| 2117 | * - SEQUENCE other than as first op results in |
| 2118 | * NFS4ERR_SEQUENCE_POS. (Enforced in nfsd4_sequence().) |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 2119 | * - BIND_CONN_TO_SESSION must be the only op in its compound. |
| 2120 | * (Enforced in nfsd4_bind_conn_to_session().) |
J. Bruce Fields | 5771635 | 2010-04-21 12:27:19 -0400 | [diff] [blame] | 2121 | * - DESTROY_SESSION must be the final operation in a compound, if |
| 2122 | * sessionid's in SEQUENCE and DESTROY_SESSION are the same. |
| 2123 | * (Enforced in nfsd4_destroy_session().) |
Andy Adamson | f9bb94c4 | 2009-04-03 08:28:12 +0300 | [diff] [blame] | 2124 | */ |
J. Bruce Fields | 5771635 | 2010-04-21 12:27:19 -0400 | [diff] [blame] | 2125 | static __be32 nfs41_check_op_ordering(struct nfsd4_compoundargs *args) |
Andy Adamson | f9bb94c4 | 2009-04-03 08:28:12 +0300 | [diff] [blame] | 2126 | { |
J. Bruce Fields | 7a04cfd | 2018-06-13 15:04:59 -0400 | [diff] [blame] | 2127 | struct nfsd4_op *first_op = &args->ops[0]; |
J. Bruce Fields | 5771635 | 2010-04-21 12:27:19 -0400 | [diff] [blame] | 2128 | |
| 2129 | /* These ordering requirements don't apply to NFSv4.0: */ |
| 2130 | if (args->minorversion == 0) |
| 2131 | return nfs_ok; |
| 2132 | /* This is weird, but OK, not our problem: */ |
| 2133 | if (args->opcnt == 0) |
| 2134 | return nfs_ok; |
J. Bruce Fields | 7a04cfd | 2018-06-13 15:04:59 -0400 | [diff] [blame] | 2135 | if (first_op->status == nfserr_op_illegal) |
J. Bruce Fields | 5771635 | 2010-04-21 12:27:19 -0400 | [diff] [blame] | 2136 | return nfs_ok; |
J. Bruce Fields | 7a04cfd | 2018-06-13 15:04:59 -0400 | [diff] [blame] | 2137 | if (!(nfsd4_ops[first_op->opnum].op_flags & ALLOWED_AS_FIRST_OP)) |
J. Bruce Fields | 5771635 | 2010-04-21 12:27:19 -0400 | [diff] [blame] | 2138 | return nfserr_op_not_in_session; |
J. Bruce Fields | 7a04cfd | 2018-06-13 15:04:59 -0400 | [diff] [blame] | 2139 | if (first_op->opnum == OP_SEQUENCE) |
J. Bruce Fields | 5771635 | 2010-04-21 12:27:19 -0400 | [diff] [blame] | 2140 | return nfs_ok; |
J. Bruce Fields | 7a04cfd | 2018-06-13 15:04:59 -0400 | [diff] [blame] | 2141 | /* |
| 2142 | * So first_op is something allowed outside a session, like |
| 2143 | * EXCHANGE_ID; but then it has to be the only op in the |
| 2144 | * compound: |
| 2145 | */ |
J. Bruce Fields | 5771635 | 2010-04-21 12:27:19 -0400 | [diff] [blame] | 2146 | if (args->opcnt != 1) |
| 2147 | return nfserr_not_only_op; |
| 2148 | return nfs_ok; |
Andy Adamson | f9bb94c4 | 2009-04-03 08:28:12 +0300 | [diff] [blame] | 2149 | } |
| 2150 | |
J. Bruce Fields | f4f9ef4 | 2017-07-06 17:51:29 -0400 | [diff] [blame] | 2151 | const struct nfsd4_operation *OPDESC(struct nfsd4_op *op) |
J. Bruce Fields | 22b0321 | 2011-04-09 11:23:24 -0400 | [diff] [blame] | 2152 | { |
| 2153 | return &nfsd4_ops[op->opnum]; |
| 2154 | } |
| 2155 | |
J. Bruce Fields | 1091006 | 2011-01-24 12:11:02 -0500 | [diff] [blame] | 2156 | bool nfsd4_cache_this_op(struct nfsd4_op *op) |
| 2157 | { |
J. Bruce Fields | e372ba6 | 2014-05-19 12:27:11 -0400 | [diff] [blame] | 2158 | if (op->opnum == OP_ILLEGAL) |
| 2159 | return false; |
J. Bruce Fields | c856694 | 2011-09-20 08:49:51 -0400 | [diff] [blame] | 2160 | return OPDESC(op)->op_flags & OP_CACHEME; |
J. Bruce Fields | 1091006 | 2011-01-24 12:11:02 -0500 | [diff] [blame] | 2161 | } |
| 2162 | |
J. Bruce Fields | 68d9318 | 2011-04-08 17:00:50 -0400 | [diff] [blame] | 2163 | static bool need_wrongsec_check(struct svc_rqst *rqstp) |
| 2164 | { |
| 2165 | struct nfsd4_compoundres *resp = rqstp->rq_resp; |
| 2166 | struct nfsd4_compoundargs *argp = rqstp->rq_argp; |
| 2167 | struct nfsd4_op *this = &argp->ops[resp->opcnt - 1]; |
| 2168 | struct nfsd4_op *next = &argp->ops[resp->opcnt]; |
Christoph Hellwig | bb2a8b0 | 2017-05-08 23:46:47 +0200 | [diff] [blame] | 2169 | const struct nfsd4_operation *thisd = OPDESC(this); |
| 2170 | const struct nfsd4_operation *nextd; |
J. Bruce Fields | 68d9318 | 2011-04-08 17:00:50 -0400 | [diff] [blame] | 2171 | |
J. Bruce Fields | 68d9318 | 2011-04-08 17:00:50 -0400 | [diff] [blame] | 2172 | /* |
| 2173 | * Most ops check wronsec on our own; only the putfh-like ops |
| 2174 | * have special rules. |
| 2175 | */ |
| 2176 | if (!(thisd->op_flags & OP_IS_PUTFH_LIKE)) |
| 2177 | return false; |
| 2178 | /* |
| 2179 | * rfc 5661 2.6.3.1.1.6: don't bother erroring out a |
| 2180 | * put-filehandle operation if we're not going to use the |
| 2181 | * result: |
| 2182 | */ |
| 2183 | if (argp->opcnt == resp->opcnt) |
| 2184 | return false; |
J. Bruce Fields | 51904b0 | 2014-10-22 14:46:29 -0400 | [diff] [blame] | 2185 | if (next->opnum == OP_ILLEGAL) |
| 2186 | return false; |
J. Bruce Fields | 68d9318 | 2011-04-08 17:00:50 -0400 | [diff] [blame] | 2187 | nextd = OPDESC(next); |
| 2188 | /* |
| 2189 | * Rest of 2.6.3.1.1: certain operations will return WRONGSEC |
| 2190 | * errors themselves as necessary; others should check for them |
| 2191 | * now: |
| 2192 | */ |
| 2193 | return !(nextd->op_flags & OP_HANDLES_WRONGSEC); |
| 2194 | } |
| 2195 | |
J. Bruce Fields | 2d124dfaa | 2014-01-15 16:26:42 -0500 | [diff] [blame] | 2196 | static void svcxdr_init_encode(struct svc_rqst *rqstp, |
| 2197 | struct nfsd4_compoundres *resp) |
| 2198 | { |
| 2199 | struct xdr_stream *xdr = &resp->xdr; |
| 2200 | struct xdr_buf *buf = &rqstp->rq_res; |
| 2201 | struct kvec *head = buf->head; |
| 2202 | |
| 2203 | xdr->buf = buf; |
J. Bruce Fields | ddd1ea5 | 2013-08-27 21:32:25 -0400 | [diff] [blame] | 2204 | xdr->iov = head; |
J. Bruce Fields | 2d124dfaa | 2014-01-15 16:26:42 -0500 | [diff] [blame] | 2205 | xdr->p = head->iov_base + head->iov_len; |
J. Bruce Fields | a5cddc8 | 2014-05-12 18:10:58 -0400 | [diff] [blame] | 2206 | xdr->end = head->iov_base + PAGE_SIZE - rqstp->rq_auth_slack; |
J. Bruce Fields | 6ac9039 | 2014-02-26 17:39:35 -0500 | [diff] [blame] | 2207 | /* Tail and page_len should be zero at this point: */ |
| 2208 | buf->len = buf->head[0].iov_len; |
J. Bruce Fields | 2825a7f | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 2209 | xdr->scratch.iov_len = 0; |
J. Bruce Fields | 05638dc | 2014-06-02 12:05:47 -0400 | [diff] [blame] | 2210 | xdr->page_ptr = buf->pages - 1; |
J. Bruce Fields | 2825a7f | 2013-08-26 16:04:46 -0400 | [diff] [blame] | 2211 | buf->buflen = PAGE_SIZE * (1 + rqstp->rq_page_end - buf->pages) |
J. Bruce Fields | a5cddc8 | 2014-05-12 18:10:58 -0400 | [diff] [blame] | 2212 | - rqstp->rq_auth_slack; |
J. Bruce Fields | 2d124dfaa | 2014-01-15 16:26:42 -0500 | [diff] [blame] | 2213 | } |
| 2214 | |
Olga Kornievskaia | b9e8638 | 2019-10-07 10:56:48 -0400 | [diff] [blame] | 2215 | #ifdef CONFIG_NFSD_V4_2_INTER_SSC |
| 2216 | static void |
| 2217 | check_if_stalefh_allowed(struct nfsd4_compoundargs *args) |
| 2218 | { |
| 2219 | struct nfsd4_op *op, *current_op = NULL, *saved_op = NULL; |
| 2220 | struct nfsd4_copy *copy; |
| 2221 | struct nfsd4_putfh *putfh; |
| 2222 | int i; |
| 2223 | |
| 2224 | /* traverse all operation and if it's a COPY compound, mark the |
| 2225 | * source filehandle to skip verification |
| 2226 | */ |
| 2227 | for (i = 0; i < args->opcnt; i++) { |
| 2228 | op = &args->ops[i]; |
| 2229 | if (op->opnum == OP_PUTFH) |
| 2230 | current_op = op; |
| 2231 | else if (op->opnum == OP_SAVEFH) |
| 2232 | saved_op = current_op; |
| 2233 | else if (op->opnum == OP_RESTOREFH) |
| 2234 | current_op = saved_op; |
| 2235 | else if (op->opnum == OP_COPY) { |
| 2236 | copy = (struct nfsd4_copy *)&op->u; |
| 2237 | if (!saved_op) { |
| 2238 | op->status = nfserr_nofilehandle; |
| 2239 | return; |
| 2240 | } |
| 2241 | putfh = (struct nfsd4_putfh *)&saved_op->u; |
| 2242 | if (!copy->cp_intra) |
| 2243 | putfh->no_verify = true; |
| 2244 | } |
| 2245 | } |
| 2246 | } |
| 2247 | #else |
| 2248 | static void |
| 2249 | check_if_stalefh_allowed(struct nfsd4_compoundargs *args) |
| 2250 | { |
| 2251 | } |
| 2252 | #endif |
| 2253 | |
Andy Adamson | f9bb94c4 | 2009-04-03 08:28:12 +0300 | [diff] [blame] | 2254 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2255 | * COMPOUND call. |
| 2256 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 2257 | static __be32 |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 2258 | nfsd4_proc_compound(struct svc_rqst *rqstp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2259 | { |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 2260 | struct nfsd4_compoundargs *args = rqstp->rq_argp; |
| 2261 | struct nfsd4_compoundres *resp = rqstp->rq_resp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2262 | struct nfsd4_op *op; |
Andy Adamson | e354d57 | 2009-03-28 11:30:52 +0300 | [diff] [blame] | 2263 | struct nfsd4_compound_state *cstate = &resp->cstate; |
Kinglong Mee | 4daeed2 | 2014-03-26 17:10:37 +0800 | [diff] [blame] | 2264 | struct svc_fh *current_fh = &cstate->current_fh; |
| 2265 | struct svc_fh *save_fh = &cstate->save_fh; |
Trond Myklebust | e333f3b | 2019-04-09 11:46:19 -0400 | [diff] [blame] | 2266 | struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id); |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 2267 | __be32 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2268 | |
J. Bruce Fields | 2d124dfaa | 2014-01-15 16:26:42 -0500 | [diff] [blame] | 2269 | svcxdr_init_encode(rqstp, resp); |
J. Bruce Fields | 4aea24b | 2014-01-15 15:17:58 -0500 | [diff] [blame] | 2270 | resp->tagp = resp->xdr.p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2271 | /* reserve space for: taglen, tag, and opcnt */ |
J. Bruce Fields | d3f627c | 2014-02-26 17:00:38 -0500 | [diff] [blame] | 2272 | xdr_reserve_space(&resp->xdr, 8 + args->taglen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2273 | resp->taglen = args->taglen; |
| 2274 | resp->tag = args->tag; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2275 | resp->rqstp = rqstp; |
Kinglong Mee | 4daeed2 | 2014-03-26 17:10:37 +0800 | [diff] [blame] | 2276 | cstate->minorversion = args->minorversion; |
Kinglong Mee | 4daeed2 | 2014-03-26 17:10:37 +0800 | [diff] [blame] | 2277 | fh_init(current_fh, NFS4_FHSIZE); |
| 2278 | fh_init(save_fh, NFS4_FHSIZE); |
NeilBrown | 8ff30fa | 2010-08-12 17:04:07 +1000 | [diff] [blame] | 2279 | /* |
| 2280 | * Don't use the deferral mechanism for NFSv4; compounds make it |
| 2281 | * too hard to avoid non-idempotency problems. |
| 2282 | */ |
Jeff Layton | 30660e04b | 2014-11-19 07:51:16 -0500 | [diff] [blame] | 2283 | clear_bit(RQ_USEDEFERRAL, &rqstp->rq_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2284 | |
| 2285 | /* |
| 2286 | * According to RFC3010, this takes precedence over all other errors. |
| 2287 | */ |
| 2288 | status = nfserr_minor_vers_mismatch; |
Trond Myklebust | e333f3b | 2019-04-09 11:46:19 -0400 | [diff] [blame] | 2289 | if (nfsd_minorversion(nn, args->minorversion, NFSD_TEST) <= 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2290 | goto out; |
J. Bruce Fields | 0078117 | 2017-11-15 12:30:27 -0500 | [diff] [blame] | 2291 | status = nfserr_resource; |
| 2292 | if (args->opcnt > NFSD_MAX_OPS_PER_COMPOUND) |
| 2293 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2294 | |
J. Bruce Fields | 5771635 | 2010-04-21 12:27:19 -0400 | [diff] [blame] | 2295 | status = nfs41_check_op_ordering(args); |
| 2296 | if (status) { |
Andy Adamson | f9bb94c4 | 2009-04-03 08:28:12 +0300 | [diff] [blame] | 2297 | op = &args->ops[0]; |
J. Bruce Fields | 5771635 | 2010-04-21 12:27:19 -0400 | [diff] [blame] | 2298 | op->status = status; |
J. Bruce Fields | 5b7b15ae | 2018-06-13 15:21:35 -0400 | [diff] [blame] | 2299 | resp->opcnt = 1; |
Andy Adamson | f9bb94c4 | 2009-04-03 08:28:12 +0300 | [diff] [blame] | 2300 | goto encode_op; |
| 2301 | } |
Olga Kornievskaia | b9e8638 | 2019-10-07 10:56:48 -0400 | [diff] [blame] | 2302 | check_if_stalefh_allowed(args); |
Andy Adamson | f9bb94c4 | 2009-04-03 08:28:12 +0300 | [diff] [blame] | 2303 | |
Chuck Lever | fff4080 | 2018-03-27 10:53:54 -0400 | [diff] [blame] | 2304 | trace_nfsd_compound(rqstp, args->opcnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2305 | while (!status && resp->opcnt < args->opcnt) { |
| 2306 | op = &args->ops[resp->opcnt++]; |
| 2307 | |
| 2308 | /* |
| 2309 | * The XDR decode routines may have pre-set op->status; |
| 2310 | * for example, if there is a miscellaneous XDR error |
| 2311 | * it will be set to nfserr_bad_xdr. |
| 2312 | */ |
J. Bruce Fields | 9d313b1 | 2013-02-28 12:51:49 -0800 | [diff] [blame] | 2313 | if (op->status) { |
| 2314 | if (op->opnum == OP_OPEN) |
| 2315 | op->status = nfsd4_open_omfg(rqstp, cstate, op); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2316 | goto encode_op; |
J. Bruce Fields | 9d313b1 | 2013-02-28 12:51:49 -0800 | [diff] [blame] | 2317 | } |
Olga Kornievskaia | b9e8638 | 2019-10-07 10:56:48 -0400 | [diff] [blame] | 2318 | if (!current_fh->fh_dentry && |
| 2319 | !HAS_FH_FLAG(current_fh, NFSD4_FH_FOREIGN)) { |
J. Bruce Fields | f4f9ef4 | 2017-07-06 17:51:29 -0400 | [diff] [blame] | 2320 | if (!(op->opdesc->op_flags & ALLOWED_WITHOUT_FH)) { |
J.Bruce Fields | 42ca099 | 2006-10-04 02:16:20 -0700 | [diff] [blame] | 2321 | op->status = nfserr_nofilehandle; |
| 2322 | goto encode_op; |
| 2323 | } |
Olga Kornievskaia | b9e8638 | 2019-10-07 10:56:48 -0400 | [diff] [blame] | 2324 | } else if (current_fh->fh_export && |
| 2325 | current_fh->fh_export->ex_fslocs.migrated && |
J. Bruce Fields | f4f9ef4 | 2017-07-06 17:51:29 -0400 | [diff] [blame] | 2326 | !(op->opdesc->op_flags & ALLOWED_ON_ABSENT_FS)) { |
J.Bruce Fields | 42ca099 | 2006-10-04 02:16:20 -0700 | [diff] [blame] | 2327 | op->status = nfserr_moved; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2328 | goto encode_op; |
| 2329 | } |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2330 | |
Kinglong Mee | 2336745 | 2014-03-29 10:23:47 +0800 | [diff] [blame] | 2331 | fh_clear_wcc(current_fh); |
| 2332 | |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2333 | /* If op is non-idempotent */ |
J. Bruce Fields | f4f9ef4 | 2017-07-06 17:51:29 -0400 | [diff] [blame] | 2334 | if (op->opdesc->op_flags & OP_MODIFIES_SOMETHING) { |
J. Bruce Fields | 4c69d58 | 2014-01-28 16:01:04 -0500 | [diff] [blame] | 2335 | /* |
J. Bruce Fields | a8095f7 | 2014-03-11 17:54:34 -0400 | [diff] [blame] | 2336 | * Don't execute this op if we couldn't encode a |
| 2337 | * succesful reply: |
| 2338 | */ |
J. Bruce Fields | f4f9ef4 | 2017-07-06 17:51:29 -0400 | [diff] [blame] | 2339 | u32 plen = op->opdesc->op_rsize_bop(rqstp, op); |
J. Bruce Fields | a8095f7 | 2014-03-11 17:54:34 -0400 | [diff] [blame] | 2340 | /* |
| 2341 | * Plus if there's another operation, make sure |
J. Bruce Fields | 4c69d58 | 2014-01-28 16:01:04 -0500 | [diff] [blame] | 2342 | * we'll have space to at least encode an error: |
| 2343 | */ |
| 2344 | if (resp->opcnt < args->opcnt) |
| 2345 | plen += COMPOUND_ERR_SLACK_SPACE; |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2346 | op->status = nfsd4_check_resp_size(resp, plen); |
| 2347 | } |
| 2348 | |
| 2349 | if (op->status) |
| 2350 | goto encode_op; |
| 2351 | |
J. Bruce Fields | f4f9ef4 | 2017-07-06 17:51:29 -0400 | [diff] [blame] | 2352 | if (op->opdesc->op_get_currentstateid) |
| 2353 | op->opdesc->op_get_currentstateid(cstate, &op->u); |
| 2354 | op->status = op->opdesc->op_func(rqstp, cstate, &op->u); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2355 | |
J. Bruce Fields | 9a30740 | 2017-05-23 12:24:40 -0400 | [diff] [blame] | 2356 | /* Only from SEQUENCE */ |
| 2357 | if (cstate->status == nfserr_replay_cache) { |
| 2358 | dprintk("%s NFS4.1 replay from cache\n", __func__); |
| 2359 | status = op->status; |
| 2360 | goto out; |
| 2361 | } |
Tigran Mkrtchyan | 8b70484 | 2012-02-13 22:55:24 +0100 | [diff] [blame] | 2362 | if (!op->status) { |
J. Bruce Fields | f4f9ef4 | 2017-07-06 17:51:29 -0400 | [diff] [blame] | 2363 | if (op->opdesc->op_set_currentstateid) |
| 2364 | op->opdesc->op_set_currentstateid(cstate, &op->u); |
Tigran Mkrtchyan | 8b70484 | 2012-02-13 22:55:24 +0100 | [diff] [blame] | 2365 | |
J. Bruce Fields | f4f9ef4 | 2017-07-06 17:51:29 -0400 | [diff] [blame] | 2366 | if (op->opdesc->op_flags & OP_CLEAR_STATEID) |
Tigran Mkrtchyan | 37c593c | 2012-02-13 22:55:32 +0100 | [diff] [blame] | 2367 | clear_current_stateid(cstate); |
Tigran Mkrtchyan | 8b70484 | 2012-02-13 22:55:24 +0100 | [diff] [blame] | 2368 | |
J. Bruce Fields | d781e3d | 2019-12-06 16:07:32 -0500 | [diff] [blame] | 2369 | if (current_fh->fh_export && |
| 2370 | need_wrongsec_check(rqstp)) |
Kinglong Mee | 4daeed2 | 2014-03-26 17:10:37 +0800 | [diff] [blame] | 2371 | op->status = check_nfsd_access(current_fh->fh_export, rqstp); |
Tigran Mkrtchyan | 8b70484 | 2012-02-13 22:55:24 +0100 | [diff] [blame] | 2372 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2373 | encode_op: |
Al Viro | a90b061 | 2006-10-19 23:29:03 -0700 | [diff] [blame] | 2374 | if (op->status == nfserr_replay_me) { |
J.Bruce Fields | a4f1706a9 | 2006-12-13 00:35:28 -0800 | [diff] [blame] | 2375 | op->replay = &cstate->replay_owner->so_replay; |
J. Bruce Fields | d0a381d | 2014-01-30 17:18:38 -0500 | [diff] [blame] | 2376 | nfsd4_encode_replay(&resp->xdr, op); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2377 | status = op->status = op->replay->rp_status; |
| 2378 | } else { |
| 2379 | nfsd4_encode_operation(resp, op); |
| 2380 | status = op->status; |
| 2381 | } |
Benny Halevy | 0407717 | 2008-12-15 19:40:49 +0200 | [diff] [blame] | 2382 | |
Chuck Lever | fff4080 | 2018-03-27 10:53:54 -0400 | [diff] [blame] | 2383 | trace_nfsd_compound_status(args->opcnt, resp->opcnt, status, |
| 2384 | nfsd4_op_name(op->opnum)); |
Benny Halevy | 0407717 | 2008-12-15 19:40:49 +0200 | [diff] [blame] | 2385 | |
Jeff Layton | 58fb12e | 2014-07-29 21:34:27 -0400 | [diff] [blame] | 2386 | nfsd4_cstate_clear_replay(cstate); |
Shankar Anand | e2b2095 | 2006-07-10 04:45:44 -0700 | [diff] [blame] | 2387 | nfsd4_increment_op_stats(op->opnum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2388 | } |
| 2389 | |
Kinglong Mee | 4daeed2 | 2014-03-26 17:10:37 +0800 | [diff] [blame] | 2390 | cstate->status = status; |
| 2391 | fh_put(current_fh); |
| 2392 | fh_put(save_fh); |
| 2393 | BUG_ON(cstate->replay_owner); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2394 | out: |
Andy Adamson | 2f42587 | 2009-04-03 08:27:32 +0300 | [diff] [blame] | 2395 | /* Reset deferral mechanism for RPC deferrals */ |
Jeff Layton | 30660e04b | 2014-11-19 07:51:16 -0500 | [diff] [blame] | 2396 | set_bit(RQ_USEDEFERRAL, &rqstp->rq_flags); |
J. Bruce Fields | 3b12cd9 | 2008-05-05 17:17:44 -0400 | [diff] [blame] | 2397 | dprintk("nfsv4 compound returned %d\n", ntohl(status)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2398 | return status; |
| 2399 | } |
| 2400 | |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2401 | #define op_encode_hdr_size (2) |
| 2402 | #define op_encode_stateid_maxsz (XDR_QUADLEN(NFS4_STATEID_SIZE)) |
| 2403 | #define op_encode_verifier_maxsz (XDR_QUADLEN(NFS4_VERIFIER_SIZE)) |
| 2404 | #define op_encode_change_info_maxsz (5) |
| 2405 | #define nfs4_fattr_bitmap_maxsz (4) |
| 2406 | |
J. Bruce Fields | 8c7424c | 2014-03-10 12:19:10 -0400 | [diff] [blame] | 2407 | /* We'll fall back on returning no lockowner if run out of space: */ |
| 2408 | #define op_encode_lockowner_maxsz (0) |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2409 | #define op_encode_lock_denied_maxsz (8 + op_encode_lockowner_maxsz) |
| 2410 | |
| 2411 | #define nfs4_owner_maxsz (1 + XDR_QUADLEN(IDMAP_NAMESZ)) |
| 2412 | |
| 2413 | #define op_encode_ace_maxsz (3 + nfs4_owner_maxsz) |
| 2414 | #define op_encode_delegation_maxsz (1 + op_encode_stateid_maxsz + 1 + \ |
| 2415 | op_encode_ace_maxsz) |
| 2416 | |
| 2417 | #define op_encode_channel_attrs_maxsz (6 + 1 + 1) |
| 2418 | |
| 2419 | static inline u32 nfsd4_only_status_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2420 | { |
| 2421 | return (op_encode_hdr_size) * sizeof(__be32); |
| 2422 | } |
| 2423 | |
| 2424 | static inline u32 nfsd4_status_stateid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2425 | { |
| 2426 | return (op_encode_hdr_size + op_encode_stateid_maxsz)* sizeof(__be32); |
| 2427 | } |
| 2428 | |
Kinglong Mee | 2282cd2 | 2017-02-03 22:36:00 +0800 | [diff] [blame] | 2429 | static inline u32 nfsd4_access_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2430 | { |
| 2431 | /* ac_supported, ac_resp_access */ |
| 2432 | return (op_encode_hdr_size + 2)* sizeof(__be32); |
| 2433 | } |
| 2434 | |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2435 | static inline u32 nfsd4_commit_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2436 | { |
| 2437 | return (op_encode_hdr_size + op_encode_verifier_maxsz) * sizeof(__be32); |
| 2438 | } |
| 2439 | |
| 2440 | static inline u32 nfsd4_create_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2441 | { |
| 2442 | return (op_encode_hdr_size + op_encode_change_info_maxsz |
| 2443 | + nfs4_fattr_bitmap_maxsz) * sizeof(__be32); |
| 2444 | } |
| 2445 | |
J. Bruce Fields | b86cef6 | 2014-03-23 12:01:48 -0400 | [diff] [blame] | 2446 | /* |
| 2447 | * Note since this is an idempotent operation we won't insist on failing |
| 2448 | * the op prematurely if the estimate is too large. We may turn off splice |
| 2449 | * reads unnecessarily. |
| 2450 | */ |
| 2451 | static inline u32 nfsd4_getattr_rsize(struct svc_rqst *rqstp, |
| 2452 | struct nfsd4_op *op) |
| 2453 | { |
| 2454 | u32 *bmap = op->u.getattr.ga_bmval; |
| 2455 | u32 bmap0 = bmap[0], bmap1 = bmap[1], bmap2 = bmap[2]; |
| 2456 | u32 ret = 0; |
| 2457 | |
| 2458 | if (bmap0 & FATTR4_WORD0_ACL) |
| 2459 | return svc_max_payload(rqstp); |
| 2460 | if (bmap0 & FATTR4_WORD0_FS_LOCATIONS) |
| 2461 | return svc_max_payload(rqstp); |
| 2462 | |
| 2463 | if (bmap1 & FATTR4_WORD1_OWNER) { |
| 2464 | ret += IDMAP_NAMESZ + 4; |
| 2465 | bmap1 &= ~FATTR4_WORD1_OWNER; |
| 2466 | } |
| 2467 | if (bmap1 & FATTR4_WORD1_OWNER_GROUP) { |
| 2468 | ret += IDMAP_NAMESZ + 4; |
| 2469 | bmap1 &= ~FATTR4_WORD1_OWNER_GROUP; |
| 2470 | } |
| 2471 | if (bmap0 & FATTR4_WORD0_FILEHANDLE) { |
| 2472 | ret += NFS4_FHSIZE + 4; |
| 2473 | bmap0 &= ~FATTR4_WORD0_FILEHANDLE; |
| 2474 | } |
| 2475 | if (bmap2 & FATTR4_WORD2_SECURITY_LABEL) { |
Kinglong Mee | 1ec8c0c | 2015-03-28 23:46:09 +0800 | [diff] [blame] | 2476 | ret += NFS4_MAXLABELLEN + 12; |
J. Bruce Fields | b86cef6 | 2014-03-23 12:01:48 -0400 | [diff] [blame] | 2477 | bmap2 &= ~FATTR4_WORD2_SECURITY_LABEL; |
| 2478 | } |
| 2479 | /* |
| 2480 | * Largest of remaining attributes are 16 bytes (e.g., |
| 2481 | * supported_attributes) |
| 2482 | */ |
| 2483 | ret += 16 * (hweight32(bmap0) + hweight32(bmap1) + hweight32(bmap2)); |
| 2484 | /* bitmask, length */ |
| 2485 | ret += 20; |
| 2486 | return ret; |
| 2487 | } |
| 2488 | |
Kinglong Mee | 2282cd2 | 2017-02-03 22:36:00 +0800 | [diff] [blame] | 2489 | static inline u32 nfsd4_getfh_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2490 | { |
| 2491 | return (op_encode_hdr_size + 1) * sizeof(__be32) + NFS4_FHSIZE; |
| 2492 | } |
| 2493 | |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2494 | static inline u32 nfsd4_link_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2495 | { |
| 2496 | return (op_encode_hdr_size + op_encode_change_info_maxsz) |
| 2497 | * sizeof(__be32); |
| 2498 | } |
| 2499 | |
| 2500 | static inline u32 nfsd4_lock_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2501 | { |
| 2502 | return (op_encode_hdr_size + op_encode_lock_denied_maxsz) |
| 2503 | * sizeof(__be32); |
| 2504 | } |
| 2505 | |
| 2506 | static inline u32 nfsd4_open_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2507 | { |
| 2508 | return (op_encode_hdr_size + op_encode_stateid_maxsz |
| 2509 | + op_encode_change_info_maxsz + 1 |
| 2510 | + nfs4_fattr_bitmap_maxsz |
| 2511 | + op_encode_delegation_maxsz) * sizeof(__be32); |
| 2512 | } |
| 2513 | |
| 2514 | static inline u32 nfsd4_read_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2515 | { |
| 2516 | u32 maxcount = 0, rlen = 0; |
| 2517 | |
| 2518 | maxcount = svc_max_payload(rqstp); |
Kinglong Mee | 3c7aa15 | 2014-06-10 18:08:19 +0800 | [diff] [blame] | 2519 | rlen = min(op->u.read.rd_length, maxcount); |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2520 | |
J. Bruce Fields | 622f560 | 2014-05-16 14:38:20 -0400 | [diff] [blame] | 2521 | return (op_encode_hdr_size + 2 + XDR_QUADLEN(rlen)) * sizeof(__be32); |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2522 | } |
| 2523 | |
| 2524 | static inline u32 nfsd4_readdir_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2525 | { |
Kinglong Mee | 3c7aa15 | 2014-06-10 18:08:19 +0800 | [diff] [blame] | 2526 | u32 maxcount = 0, rlen = 0; |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2527 | |
Kinglong Mee | 3c7aa15 | 2014-06-10 18:08:19 +0800 | [diff] [blame] | 2528 | maxcount = svc_max_payload(rqstp); |
| 2529 | rlen = min(op->u.readdir.rd_maxcount, maxcount); |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2530 | |
J. Bruce Fields | 561f0ed | 2014-01-20 16:37:11 -0500 | [diff] [blame] | 2531 | return (op_encode_hdr_size + op_encode_verifier_maxsz + |
| 2532 | XDR_QUADLEN(rlen)) * sizeof(__be32); |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2533 | } |
| 2534 | |
Kinglong Mee | 2282cd2 | 2017-02-03 22:36:00 +0800 | [diff] [blame] | 2535 | static inline u32 nfsd4_readlink_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2536 | { |
| 2537 | return (op_encode_hdr_size + 1) * sizeof(__be32) + PAGE_SIZE; |
| 2538 | } |
| 2539 | |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2540 | static inline u32 nfsd4_remove_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2541 | { |
| 2542 | return (op_encode_hdr_size + op_encode_change_info_maxsz) |
| 2543 | * sizeof(__be32); |
| 2544 | } |
| 2545 | |
| 2546 | static inline u32 nfsd4_rename_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2547 | { |
| 2548 | return (op_encode_hdr_size + op_encode_change_info_maxsz |
| 2549 | + op_encode_change_info_maxsz) * sizeof(__be32); |
| 2550 | } |
| 2551 | |
J. Bruce Fields | ccae70a | 2014-03-23 09:34:22 -0700 | [diff] [blame] | 2552 | static inline u32 nfsd4_sequence_rsize(struct svc_rqst *rqstp, |
| 2553 | struct nfsd4_op *op) |
| 2554 | { |
J. Bruce Fields | d1d84c9 | 2014-08-21 15:04:31 -0400 | [diff] [blame] | 2555 | return (op_encode_hdr_size |
| 2556 | + XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + 5) * sizeof(__be32); |
J. Bruce Fields | ccae70a | 2014-03-23 09:34:22 -0700 | [diff] [blame] | 2557 | } |
| 2558 | |
Kinglong Mee | 2282cd2 | 2017-02-03 22:36:00 +0800 | [diff] [blame] | 2559 | static inline u32 nfsd4_test_stateid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2560 | { |
| 2561 | return (op_encode_hdr_size + 1 + op->u.test_stateid.ts_num_ids) |
| 2562 | * sizeof(__be32); |
| 2563 | } |
| 2564 | |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2565 | static inline u32 nfsd4_setattr_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2566 | { |
| 2567 | return (op_encode_hdr_size + nfs4_fattr_bitmap_maxsz) * sizeof(__be32); |
| 2568 | } |
| 2569 | |
Kinglong Mee | 2282cd2 | 2017-02-03 22:36:00 +0800 | [diff] [blame] | 2570 | static inline u32 nfsd4_secinfo_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2571 | { |
| 2572 | return (op_encode_hdr_size + RPC_AUTH_MAXFLAVOR * |
| 2573 | (4 + XDR_QUADLEN(GSS_OID_MAX_LEN))) * sizeof(__be32); |
| 2574 | } |
| 2575 | |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2576 | static inline u32 nfsd4_setclientid_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2577 | { |
J. Bruce Fields | 480efae | 2014-03-10 14:17:55 -0400 | [diff] [blame] | 2578 | return (op_encode_hdr_size + 2 + XDR_QUADLEN(NFS4_VERIFIER_SIZE)) * |
| 2579 | sizeof(__be32); |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2580 | } |
| 2581 | |
| 2582 | static inline u32 nfsd4_write_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2583 | { |
J. Bruce Fields | f34e432 | 2014-05-16 21:24:56 -0400 | [diff] [blame] | 2584 | return (op_encode_hdr_size + 2 + op_encode_verifier_maxsz) * sizeof(__be32); |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2585 | } |
| 2586 | |
| 2587 | static inline u32 nfsd4_exchange_id_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2588 | { |
| 2589 | return (op_encode_hdr_size + 2 + 1 + /* eir_clientid, eir_sequenceid */\ |
Kinglong Mee | a8bb84b | 2013-12-10 15:24:36 +0800 | [diff] [blame] | 2590 | 1 + 1 + /* eir_flags, spr_how */\ |
| 2591 | 4 + /* spo_must_enforce & _allow with bitmap */\ |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2592 | 2 + /*eir_server_owner.so_minor_id */\ |
| 2593 | /* eir_server_owner.so_major_id<> */\ |
| 2594 | XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 +\ |
| 2595 | /* eir_server_scope<> */\ |
| 2596 | XDR_QUADLEN(NFS4_OPAQUE_LIMIT) + 1 +\ |
| 2597 | 1 + /* eir_server_impl_id array length */\ |
| 2598 | 0 /* ignored eir_server_impl_id contents */) * sizeof(__be32); |
| 2599 | } |
| 2600 | |
| 2601 | static inline u32 nfsd4_bind_conn_to_session_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2602 | { |
| 2603 | return (op_encode_hdr_size + \ |
| 2604 | XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + /* bctsr_sessid */\ |
| 2605 | 2 /* bctsr_dir, use_conn_in_rdma_mode */) * sizeof(__be32); |
| 2606 | } |
| 2607 | |
| 2608 | static inline u32 nfsd4_create_session_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2609 | { |
| 2610 | return (op_encode_hdr_size + \ |
| 2611 | XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN) + /* sessionid */\ |
| 2612 | 2 + /* csr_sequence, csr_flags */\ |
| 2613 | op_encode_channel_attrs_maxsz + \ |
| 2614 | op_encode_channel_attrs_maxsz) * sizeof(__be32); |
| 2615 | } |
| 2616 | |
Anna Schumaker | 29ae7f9 | 2016-09-07 15:57:30 -0400 | [diff] [blame] | 2617 | static inline u32 nfsd4_copy_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2618 | { |
| 2619 | return (op_encode_hdr_size + |
| 2620 | 1 /* wr_callback */ + |
| 2621 | op_encode_stateid_maxsz /* wr_callback */ + |
| 2622 | 2 /* wr_count */ + |
| 2623 | 1 /* wr_committed */ + |
| 2624 | op_encode_verifier_maxsz + |
| 2625 | 1 /* cr_consecutive */ + |
| 2626 | 1 /* cr_synchronous */) * sizeof(__be32); |
| 2627 | } |
| 2628 | |
Olga Kornievskaia | 6308bc9 | 2018-07-20 18:19:18 -0400 | [diff] [blame] | 2629 | static inline u32 nfsd4_offload_status_rsize(struct svc_rqst *rqstp, |
| 2630 | struct nfsd4_op *op) |
| 2631 | { |
| 2632 | return (op_encode_hdr_size + |
| 2633 | 2 /* osr_count */ + |
| 2634 | 1 /* osr_complete<1> optional 0 for now */) * sizeof(__be32); |
| 2635 | } |
| 2636 | |
Olga Kornievskaia | 5191186 | 2019-08-08 11:14:59 -0400 | [diff] [blame] | 2637 | static inline u32 nfsd4_copy_notify_rsize(struct svc_rqst *rqstp, |
| 2638 | struct nfsd4_op *op) |
| 2639 | { |
| 2640 | return (op_encode_hdr_size + |
| 2641 | 3 /* cnr_lease_time */ + |
| 2642 | 1 /* We support one cnr_source_server */ + |
| 2643 | 1 /* cnr_stateid seq */ + |
| 2644 | op_encode_stateid_maxsz /* cnr_stateid */ + |
| 2645 | 1 /* num cnr_source_server*/ + |
| 2646 | 1 /* nl4_type */ + |
| 2647 | 1 /* nl4 size */ + |
| 2648 | XDR_QUADLEN(NFS4_OPAQUE_LIMIT) /*nl4_loc + nl4_loc_sz */) |
| 2649 | * sizeof(__be32); |
| 2650 | } |
| 2651 | |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 2652 | #ifdef CONFIG_NFSD_PNFS |
Kinglong Mee | 2282cd2 | 2017-02-03 22:36:00 +0800 | [diff] [blame] | 2653 | static inline u32 nfsd4_getdeviceinfo_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2654 | { |
| 2655 | u32 maxcount = 0, rlen = 0; |
| 2656 | |
| 2657 | maxcount = svc_max_payload(rqstp); |
| 2658 | rlen = min(op->u.getdeviceinfo.gd_maxcount, maxcount); |
| 2659 | |
| 2660 | return (op_encode_hdr_size + |
| 2661 | 1 /* gd_layout_type*/ + |
| 2662 | XDR_QUADLEN(rlen) + |
| 2663 | 2 /* gd_notify_types */) * sizeof(__be32); |
| 2664 | } |
| 2665 | |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 2666 | /* |
| 2667 | * At this stage we don't really know what layout driver will handle the request, |
| 2668 | * so we need to define an arbitrary upper bound here. |
| 2669 | */ |
| 2670 | #define MAX_LAYOUT_SIZE 128 |
| 2671 | static inline u32 nfsd4_layoutget_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2672 | { |
| 2673 | return (op_encode_hdr_size + |
| 2674 | 1 /* logr_return_on_close */ + |
| 2675 | op_encode_stateid_maxsz + |
| 2676 | 1 /* nr of layouts */ + |
| 2677 | MAX_LAYOUT_SIZE) * sizeof(__be32); |
| 2678 | } |
| 2679 | |
| 2680 | static inline u32 nfsd4_layoutcommit_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2681 | { |
| 2682 | return (op_encode_hdr_size + |
| 2683 | 1 /* locr_newsize */ + |
| 2684 | 2 /* ns_size */) * sizeof(__be32); |
| 2685 | } |
| 2686 | |
| 2687 | static inline u32 nfsd4_layoutreturn_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2688 | { |
| 2689 | return (op_encode_hdr_size + |
| 2690 | 1 /* lrs_stateid */ + |
| 2691 | op_encode_stateid_maxsz) * sizeof(__be32); |
| 2692 | } |
| 2693 | #endif /* CONFIG_NFSD_PNFS */ |
| 2694 | |
Kinglong Mee | 2282cd2 | 2017-02-03 22:36:00 +0800 | [diff] [blame] | 2695 | |
| 2696 | static inline u32 nfsd4_seek_rsize(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 2697 | { |
| 2698 | return (op_encode_hdr_size + 3) * sizeof(__be32); |
| 2699 | } |
| 2700 | |
Christoph Hellwig | bb2a8b0 | 2017-05-08 23:46:47 +0200 | [diff] [blame] | 2701 | static const struct nfsd4_operation nfsd4_ops[] = { |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2702 | [OP_ACCESS] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2703 | .op_func = nfsd4_access, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2704 | .op_name = "OP_ACCESS", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2705 | .op_rsize_bop = nfsd4_access_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2706 | }, |
| 2707 | [OP_CLOSE] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2708 | .op_func = nfsd4_close, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2709 | .op_flags = OP_MODIFIES_SOMETHING, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2710 | .op_name = "OP_CLOSE", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2711 | .op_rsize_bop = nfsd4_status_stateid_rsize, |
Christoph Hellwig | 57832e7 | 2017-05-08 20:37:33 +0200 | [diff] [blame] | 2712 | .op_get_currentstateid = nfsd4_get_closestateid, |
Christoph Hellwig | b60e985 | 2017-05-08 20:03:15 +0200 | [diff] [blame] | 2713 | .op_set_currentstateid = nfsd4_set_closestateid, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2714 | }, |
| 2715 | [OP_COMMIT] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2716 | .op_func = nfsd4_commit, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2717 | .op_flags = OP_MODIFIES_SOMETHING, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2718 | .op_name = "OP_COMMIT", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2719 | .op_rsize_bop = nfsd4_commit_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2720 | }, |
| 2721 | [OP_CREATE] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2722 | .op_func = nfsd4_create, |
Tigran Mkrtchyan | d147105 | 2012-02-13 22:55:29 +0100 | [diff] [blame] | 2723 | .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME | OP_CLEAR_STATEID, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2724 | .op_name = "OP_CREATE", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2725 | .op_rsize_bop = nfsd4_create_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2726 | }, |
| 2727 | [OP_DELEGRETURN] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2728 | .op_func = nfsd4_delegreturn, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2729 | .op_flags = OP_MODIFIES_SOMETHING, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2730 | .op_name = "OP_DELEGRETURN", |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2731 | .op_rsize_bop = nfsd4_only_status_rsize, |
Christoph Hellwig | 57832e7 | 2017-05-08 20:37:33 +0200 | [diff] [blame] | 2732 | .op_get_currentstateid = nfsd4_get_delegreturnstateid, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2733 | }, |
| 2734 | [OP_GETATTR] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2735 | .op_func = nfsd4_getattr, |
J.Bruce Fields | eeac294 | 2006-12-13 00:35:39 -0800 | [diff] [blame] | 2736 | .op_flags = ALLOWED_ON_ABSENT_FS, |
J. Bruce Fields | b86cef6 | 2014-03-23 12:01:48 -0400 | [diff] [blame] | 2737 | .op_rsize_bop = nfsd4_getattr_rsize, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2738 | .op_name = "OP_GETATTR", |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2739 | }, |
| 2740 | [OP_GETFH] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2741 | .op_func = nfsd4_getfh, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2742 | .op_name = "OP_GETFH", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2743 | .op_rsize_bop = nfsd4_getfh_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2744 | }, |
| 2745 | [OP_LINK] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2746 | .op_func = nfsd4_link, |
J. Bruce Fields | c856694 | 2011-09-20 08:49:51 -0400 | [diff] [blame] | 2747 | .op_flags = ALLOWED_ON_ABSENT_FS | OP_MODIFIES_SOMETHING |
| 2748 | | OP_CACHEME, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2749 | .op_name = "OP_LINK", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2750 | .op_rsize_bop = nfsd4_link_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2751 | }, |
| 2752 | [OP_LOCK] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2753 | .op_func = nfsd4_lock, |
J. Bruce Fields | b7571e4 | 2017-05-06 10:49:21 -0400 | [diff] [blame] | 2754 | .op_flags = OP_MODIFIES_SOMETHING | |
| 2755 | OP_NONTRIVIAL_ERROR_ENCODE, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2756 | .op_name = "OP_LOCK", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2757 | .op_rsize_bop = nfsd4_lock_rsize, |
Christoph Hellwig | b60e985 | 2017-05-08 20:03:15 +0200 | [diff] [blame] | 2758 | .op_set_currentstateid = nfsd4_set_lockstateid, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2759 | }, |
| 2760 | [OP_LOCKT] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2761 | .op_func = nfsd4_lockt, |
J. Bruce Fields | b7571e4 | 2017-05-06 10:49:21 -0400 | [diff] [blame] | 2762 | .op_flags = OP_NONTRIVIAL_ERROR_ENCODE, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2763 | .op_name = "OP_LOCKT", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2764 | .op_rsize_bop = nfsd4_lock_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2765 | }, |
| 2766 | [OP_LOCKU] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2767 | .op_func = nfsd4_locku, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2768 | .op_flags = OP_MODIFIES_SOMETHING, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2769 | .op_name = "OP_LOCKU", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2770 | .op_rsize_bop = nfsd4_status_stateid_rsize, |
Christoph Hellwig | 57832e7 | 2017-05-08 20:37:33 +0200 | [diff] [blame] | 2771 | .op_get_currentstateid = nfsd4_get_lockustateid, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2772 | }, |
| 2773 | [OP_LOOKUP] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2774 | .op_func = nfsd4_lookup, |
Tigran Mkrtchyan | d147105 | 2012-02-13 22:55:29 +0100 | [diff] [blame] | 2775 | .op_flags = OP_HANDLES_WRONGSEC | OP_CLEAR_STATEID, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2776 | .op_name = "OP_LOOKUP", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2777 | .op_rsize_bop = nfsd4_only_status_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2778 | }, |
| 2779 | [OP_LOOKUPP] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2780 | .op_func = nfsd4_lookupp, |
Tigran Mkrtchyan | d147105 | 2012-02-13 22:55:29 +0100 | [diff] [blame] | 2781 | .op_flags = OP_HANDLES_WRONGSEC | OP_CLEAR_STATEID, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2782 | .op_name = "OP_LOOKUPP", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2783 | .op_rsize_bop = nfsd4_only_status_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2784 | }, |
| 2785 | [OP_NVERIFY] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2786 | .op_func = nfsd4_nverify, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2787 | .op_name = "OP_NVERIFY", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2788 | .op_rsize_bop = nfsd4_only_status_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2789 | }, |
| 2790 | [OP_OPEN] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2791 | .op_func = nfsd4_open, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2792 | .op_flags = OP_HANDLES_WRONGSEC | OP_MODIFIES_SOMETHING, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2793 | .op_name = "OP_OPEN", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2794 | .op_rsize_bop = nfsd4_open_rsize, |
Christoph Hellwig | b60e985 | 2017-05-08 20:03:15 +0200 | [diff] [blame] | 2795 | .op_set_currentstateid = nfsd4_set_openstateid, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2796 | }, |
| 2797 | [OP_OPEN_CONFIRM] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2798 | .op_func = nfsd4_open_confirm, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2799 | .op_flags = OP_MODIFIES_SOMETHING, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2800 | .op_name = "OP_OPEN_CONFIRM", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2801 | .op_rsize_bop = nfsd4_status_stateid_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2802 | }, |
| 2803 | [OP_OPEN_DOWNGRADE] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2804 | .op_func = nfsd4_open_downgrade, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2805 | .op_flags = OP_MODIFIES_SOMETHING, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2806 | .op_name = "OP_OPEN_DOWNGRADE", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2807 | .op_rsize_bop = nfsd4_status_stateid_rsize, |
Christoph Hellwig | 57832e7 | 2017-05-08 20:37:33 +0200 | [diff] [blame] | 2808 | .op_get_currentstateid = nfsd4_get_opendowngradestateid, |
Christoph Hellwig | b60e985 | 2017-05-08 20:03:15 +0200 | [diff] [blame] | 2809 | .op_set_currentstateid = nfsd4_set_opendowngradestateid, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2810 | }, |
| 2811 | [OP_PUTFH] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2812 | .op_func = nfsd4_putfh, |
J. Bruce Fields | 68d9318 | 2011-04-08 17:00:50 -0400 | [diff] [blame] | 2813 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS |
J. Bruce Fields | 5b64869 | 2014-03-07 11:43:58 -0500 | [diff] [blame] | 2814 | | OP_IS_PUTFH_LIKE | OP_CLEAR_STATEID, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2815 | .op_name = "OP_PUTFH", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2816 | .op_rsize_bop = nfsd4_only_status_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2817 | }, |
J.Bruce Fields | eeac294 | 2006-12-13 00:35:39 -0800 | [diff] [blame] | 2818 | [OP_PUTPUBFH] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2819 | .op_func = nfsd4_putrootfh, |
J. Bruce Fields | 68d9318 | 2011-04-08 17:00:50 -0400 | [diff] [blame] | 2820 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS |
J. Bruce Fields | 5b64869 | 2014-03-07 11:43:58 -0500 | [diff] [blame] | 2821 | | OP_IS_PUTFH_LIKE | OP_CLEAR_STATEID, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2822 | .op_name = "OP_PUTPUBFH", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2823 | .op_rsize_bop = nfsd4_only_status_rsize, |
J.Bruce Fields | eeac294 | 2006-12-13 00:35:39 -0800 | [diff] [blame] | 2824 | }, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2825 | [OP_PUTROOTFH] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2826 | .op_func = nfsd4_putrootfh, |
J. Bruce Fields | 68d9318 | 2011-04-08 17:00:50 -0400 | [diff] [blame] | 2827 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS |
J. Bruce Fields | 5b64869 | 2014-03-07 11:43:58 -0500 | [diff] [blame] | 2828 | | OP_IS_PUTFH_LIKE | OP_CLEAR_STATEID, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2829 | .op_name = "OP_PUTROOTFH", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2830 | .op_rsize_bop = nfsd4_only_status_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2831 | }, |
| 2832 | [OP_READ] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2833 | .op_func = nfsd4_read, |
J. Bruce Fields | 34b1744c | 2017-05-05 17:09:37 -0400 | [diff] [blame] | 2834 | .op_release = nfsd4_read_release, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2835 | .op_name = "OP_READ", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2836 | .op_rsize_bop = nfsd4_read_rsize, |
Christoph Hellwig | 57832e7 | 2017-05-08 20:37:33 +0200 | [diff] [blame] | 2837 | .op_get_currentstateid = nfsd4_get_readstateid, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2838 | }, |
| 2839 | [OP_READDIR] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2840 | .op_func = nfsd4_readdir, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2841 | .op_name = "OP_READDIR", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2842 | .op_rsize_bop = nfsd4_readdir_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2843 | }, |
| 2844 | [OP_READLINK] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2845 | .op_func = nfsd4_readlink, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2846 | .op_name = "OP_READLINK", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2847 | .op_rsize_bop = nfsd4_readlink_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2848 | }, |
| 2849 | [OP_REMOVE] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2850 | .op_func = nfsd4_remove, |
J. Bruce Fields | c856694 | 2011-09-20 08:49:51 -0400 | [diff] [blame] | 2851 | .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2852 | .op_name = "OP_REMOVE", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2853 | .op_rsize_bop = nfsd4_remove_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2854 | }, |
| 2855 | [OP_RENAME] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2856 | .op_func = nfsd4_rename, |
J. Bruce Fields | c856694 | 2011-09-20 08:49:51 -0400 | [diff] [blame] | 2857 | .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2858 | .op_name = "OP_RENAME", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2859 | .op_rsize_bop = nfsd4_rename_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2860 | }, |
| 2861 | [OP_RENEW] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2862 | .op_func = nfsd4_renew, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2863 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS |
| 2864 | | OP_MODIFIES_SOMETHING, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2865 | .op_name = "OP_RENEW", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2866 | .op_rsize_bop = nfsd4_only_status_rsize, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2867 | |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2868 | }, |
| 2869 | [OP_RESTOREFH] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2870 | .op_func = nfsd4_restorefh, |
J. Bruce Fields | 68d9318 | 2011-04-08 17:00:50 -0400 | [diff] [blame] | 2871 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2872 | | OP_IS_PUTFH_LIKE | OP_MODIFIES_SOMETHING, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2873 | .op_name = "OP_RESTOREFH", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2874 | .op_rsize_bop = nfsd4_only_status_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2875 | }, |
| 2876 | [OP_SAVEFH] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2877 | .op_func = nfsd4_savefh, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2878 | .op_flags = OP_HANDLES_WRONGSEC | OP_MODIFIES_SOMETHING, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2879 | .op_name = "OP_SAVEFH", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2880 | .op_rsize_bop = nfsd4_only_status_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2881 | }, |
Andy Adamson | dcb488a3 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 2882 | [OP_SECINFO] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2883 | .op_func = nfsd4_secinfo, |
J. Bruce Fields | 34b1744c | 2017-05-05 17:09:37 -0400 | [diff] [blame] | 2884 | .op_release = nfsd4_secinfo_release, |
J. Bruce Fields | 68d9318 | 2011-04-08 17:00:50 -0400 | [diff] [blame] | 2885 | .op_flags = OP_HANDLES_WRONGSEC, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2886 | .op_name = "OP_SECINFO", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2887 | .op_rsize_bop = nfsd4_secinfo_rsize, |
Andy Adamson | dcb488a3 | 2007-07-17 04:04:51 -0700 | [diff] [blame] | 2888 | }, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2889 | [OP_SETATTR] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2890 | .op_func = nfsd4_setattr, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2891 | .op_name = "OP_SETATTR", |
J. Bruce Fields | b7571e4 | 2017-05-06 10:49:21 -0400 | [diff] [blame] | 2892 | .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME |
| 2893 | | OP_NONTRIVIAL_ERROR_ENCODE, |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2894 | .op_rsize_bop = nfsd4_setattr_rsize, |
Christoph Hellwig | 57832e7 | 2017-05-08 20:37:33 +0200 | [diff] [blame] | 2895 | .op_get_currentstateid = nfsd4_get_setattrstateid, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2896 | }, |
| 2897 | [OP_SETCLIENTID] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2898 | .op_func = nfsd4_setclientid, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2899 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS |
J. Bruce Fields | b7571e4 | 2017-05-06 10:49:21 -0400 | [diff] [blame] | 2900 | | OP_MODIFIES_SOMETHING | OP_CACHEME |
| 2901 | | OP_NONTRIVIAL_ERROR_ENCODE, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2902 | .op_name = "OP_SETCLIENTID", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2903 | .op_rsize_bop = nfsd4_setclientid_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2904 | }, |
| 2905 | [OP_SETCLIENTID_CONFIRM] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2906 | .op_func = nfsd4_setclientid_confirm, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2907 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS |
J. Bruce Fields | c856694 | 2011-09-20 08:49:51 -0400 | [diff] [blame] | 2908 | | OP_MODIFIES_SOMETHING | OP_CACHEME, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2909 | .op_name = "OP_SETCLIENTID_CONFIRM", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2910 | .op_rsize_bop = nfsd4_only_status_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2911 | }, |
| 2912 | [OP_VERIFY] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2913 | .op_func = nfsd4_verify, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2914 | .op_name = "OP_VERIFY", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2915 | .op_rsize_bop = nfsd4_only_status_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2916 | }, |
| 2917 | [OP_WRITE] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2918 | .op_func = nfsd4_write, |
J. Bruce Fields | c856694 | 2011-09-20 08:49:51 -0400 | [diff] [blame] | 2919 | .op_flags = OP_MODIFIES_SOMETHING | OP_CACHEME, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2920 | .op_name = "OP_WRITE", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2921 | .op_rsize_bop = nfsd4_write_rsize, |
Christoph Hellwig | 57832e7 | 2017-05-08 20:37:33 +0200 | [diff] [blame] | 2922 | .op_get_currentstateid = nfsd4_get_writestateid, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2923 | }, |
| 2924 | [OP_RELEASE_LOCKOWNER] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2925 | .op_func = nfsd4_release_lockowner, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2926 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_ON_ABSENT_FS |
| 2927 | | OP_MODIFIES_SOMETHING, |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 2928 | .op_name = "OP_RELEASE_LOCKOWNER", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2929 | .op_rsize_bop = nfsd4_only_status_rsize, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 2930 | }, |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 2931 | |
| 2932 | /* NFSv4.1 operations */ |
| 2933 | [OP_EXCHANGE_ID] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2934 | .op_func = nfsd4_exchange_id, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2935 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP |
| 2936 | | OP_MODIFIES_SOMETHING, |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 2937 | .op_name = "OP_EXCHANGE_ID", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2938 | .op_rsize_bop = nfsd4_exchange_id_rsize, |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 2939 | }, |
J. Bruce Fields | cb73a9f | 2012-11-01 18:09:48 -0400 | [diff] [blame] | 2940 | [OP_BACKCHANNEL_CTL] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2941 | .op_func = nfsd4_backchannel_ctl, |
J. Bruce Fields | cb73a9f | 2012-11-01 18:09:48 -0400 | [diff] [blame] | 2942 | .op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING, |
| 2943 | .op_name = "OP_BACKCHANNEL_CTL", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2944 | .op_rsize_bop = nfsd4_only_status_rsize, |
J. Bruce Fields | cb73a9f | 2012-11-01 18:09:48 -0400 | [diff] [blame] | 2945 | }, |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 2946 | [OP_BIND_CONN_TO_SESSION] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2947 | .op_func = nfsd4_bind_conn_to_session, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2948 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP |
| 2949 | | OP_MODIFIES_SOMETHING, |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 2950 | .op_name = "OP_BIND_CONN_TO_SESSION", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2951 | .op_rsize_bop = nfsd4_bind_conn_to_session_rsize, |
J. Bruce Fields | 1d1bc8f | 2010-10-04 23:12:59 -0400 | [diff] [blame] | 2952 | }, |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 2953 | [OP_CREATE_SESSION] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2954 | .op_func = nfsd4_create_session, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2955 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP |
| 2956 | | OP_MODIFIES_SOMETHING, |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 2957 | .op_name = "OP_CREATE_SESSION", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2958 | .op_rsize_bop = nfsd4_create_session_rsize, |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 2959 | }, |
| 2960 | [OP_DESTROY_SESSION] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2961 | .op_func = nfsd4_destroy_session, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2962 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP |
| 2963 | | OP_MODIFIES_SOMETHING, |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 2964 | .op_name = "OP_DESTROY_SESSION", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2965 | .op_rsize_bop = nfsd4_only_status_rsize, |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 2966 | }, |
| 2967 | [OP_SEQUENCE] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2968 | .op_func = nfsd4_sequence, |
Andy Adamson | f9bb94c4 | 2009-04-03 08:28:12 +0300 | [diff] [blame] | 2969 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP, |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 2970 | .op_name = "OP_SEQUENCE", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2971 | .op_rsize_bop = nfsd4_sequence_rsize, |
Andy Adamson | 069b6ad | 2009-04-03 08:27:58 +0300 | [diff] [blame] | 2972 | }, |
Benny Halevy | 094b5d7 | 2011-06-16 11:39:10 -0400 | [diff] [blame] | 2973 | [OP_DESTROY_CLIENTID] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2974 | .op_func = nfsd4_destroy_clientid, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2975 | .op_flags = ALLOWED_WITHOUT_FH | ALLOWED_AS_FIRST_OP |
| 2976 | | OP_MODIFIES_SOMETHING, |
Benny Halevy | 094b5d7 | 2011-06-16 11:39:10 -0400 | [diff] [blame] | 2977 | .op_name = "OP_DESTROY_CLIENTID", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2978 | .op_rsize_bop = nfsd4_only_status_rsize, |
Benny Halevy | 094b5d7 | 2011-06-16 11:39:10 -0400 | [diff] [blame] | 2979 | }, |
J. Bruce Fields | 4dc6ec0 | 2010-04-19 15:11:28 -0400 | [diff] [blame] | 2980 | [OP_RECLAIM_COMPLETE] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2981 | .op_func = nfsd4_reclaim_complete, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 2982 | .op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING, |
J. Bruce Fields | 4dc6ec0 | 2010-04-19 15:11:28 -0400 | [diff] [blame] | 2983 | .op_name = "OP_RECLAIM_COMPLETE", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2984 | .op_rsize_bop = nfsd4_only_status_rsize, |
J. Bruce Fields | 4dc6ec0 | 2010-04-19 15:11:28 -0400 | [diff] [blame] | 2985 | }, |
J. Bruce Fields | 04f4ad1 | 2010-12-16 09:51:13 -0500 | [diff] [blame] | 2986 | [OP_SECINFO_NO_NAME] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2987 | .op_func = nfsd4_secinfo_no_name, |
Eryu Guan | ec572b9 | 2017-09-29 15:01:10 +0800 | [diff] [blame] | 2988 | .op_release = nfsd4_secinfo_no_name_release, |
J. Bruce Fields | 68d9318 | 2011-04-08 17:00:50 -0400 | [diff] [blame] | 2989 | .op_flags = OP_HANDLES_WRONGSEC, |
J. Bruce Fields | 04f4ad1 | 2010-12-16 09:51:13 -0500 | [diff] [blame] | 2990 | .op_name = "OP_SECINFO_NO_NAME", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2991 | .op_rsize_bop = nfsd4_secinfo_rsize, |
J. Bruce Fields | 04f4ad1 | 2010-12-16 09:51:13 -0500 | [diff] [blame] | 2992 | }, |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 2993 | [OP_TEST_STATEID] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 2994 | .op_func = nfsd4_test_stateid, |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 2995 | .op_flags = ALLOWED_WITHOUT_FH, |
| 2996 | .op_name = "OP_TEST_STATEID", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 2997 | .op_rsize_bop = nfsd4_test_stateid_rsize, |
Bryan Schumaker | 1745680 | 2011-07-13 10:50:48 -0400 | [diff] [blame] | 2998 | }, |
Bryan Schumaker | e1ca12d | 2011-07-13 11:04:21 -0400 | [diff] [blame] | 2999 | [OP_FREE_STATEID] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 3000 | .op_func = nfsd4_free_stateid, |
Mi Jinlong | 58e7b33 | 2011-08-28 18:18:56 +0800 | [diff] [blame] | 3001 | .op_flags = ALLOWED_WITHOUT_FH | OP_MODIFIES_SOMETHING, |
Bryan Schumaker | e1ca12d | 2011-07-13 11:04:21 -0400 | [diff] [blame] | 3002 | .op_name = "OP_FREE_STATEID", |
Christoph Hellwig | 57832e7 | 2017-05-08 20:37:33 +0200 | [diff] [blame] | 3003 | .op_get_currentstateid = nfsd4_get_freestateid, |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 3004 | .op_rsize_bop = nfsd4_only_status_rsize, |
Bryan Schumaker | e1ca12d | 2011-07-13 11:04:21 -0400 | [diff] [blame] | 3005 | }, |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 3006 | #ifdef CONFIG_NFSD_PNFS |
| 3007 | [OP_GETDEVICEINFO] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 3008 | .op_func = nfsd4_getdeviceinfo, |
J. Bruce Fields | 34b1744c | 2017-05-05 17:09:37 -0400 | [diff] [blame] | 3009 | .op_release = nfsd4_getdeviceinfo_release, |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 3010 | .op_flags = ALLOWED_WITHOUT_FH, |
| 3011 | .op_name = "OP_GETDEVICEINFO", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 3012 | .op_rsize_bop = nfsd4_getdeviceinfo_rsize, |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 3013 | }, |
| 3014 | [OP_LAYOUTGET] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 3015 | .op_func = nfsd4_layoutget, |
J. Bruce Fields | 34b1744c | 2017-05-05 17:09:37 -0400 | [diff] [blame] | 3016 | .op_release = nfsd4_layoutget_release, |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 3017 | .op_flags = OP_MODIFIES_SOMETHING, |
| 3018 | .op_name = "OP_LAYOUTGET", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 3019 | .op_rsize_bop = nfsd4_layoutget_rsize, |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 3020 | }, |
| 3021 | [OP_LAYOUTCOMMIT] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 3022 | .op_func = nfsd4_layoutcommit, |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 3023 | .op_flags = OP_MODIFIES_SOMETHING, |
| 3024 | .op_name = "OP_LAYOUTCOMMIT", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 3025 | .op_rsize_bop = nfsd4_layoutcommit_rsize, |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 3026 | }, |
| 3027 | [OP_LAYOUTRETURN] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 3028 | .op_func = nfsd4_layoutreturn, |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 3029 | .op_flags = OP_MODIFIES_SOMETHING, |
| 3030 | .op_name = "OP_LAYOUTRETURN", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 3031 | .op_rsize_bop = nfsd4_layoutreturn_rsize, |
Christoph Hellwig | 9cf514c | 2014-05-05 13:11:59 +0200 | [diff] [blame] | 3032 | }, |
| 3033 | #endif /* CONFIG_NFSD_PNFS */ |
Anna Schumaker | 24bab49 | 2014-09-26 13:58:27 -0400 | [diff] [blame] | 3034 | |
| 3035 | /* NFSv4.2 operations */ |
Anna Schumaker | 95d871f | 2014-11-07 14:44:26 -0500 | [diff] [blame] | 3036 | [OP_ALLOCATE] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 3037 | .op_func = nfsd4_allocate, |
Olga Kornievskaia | 03b31f4 | 2018-12-04 14:09:21 -0500 | [diff] [blame] | 3038 | .op_flags = OP_MODIFIES_SOMETHING, |
Anna Schumaker | 95d871f | 2014-11-07 14:44:26 -0500 | [diff] [blame] | 3039 | .op_name = "OP_ALLOCATE", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 3040 | .op_rsize_bop = nfsd4_only_status_rsize, |
Anna Schumaker | 95d871f | 2014-11-07 14:44:26 -0500 | [diff] [blame] | 3041 | }, |
Anna Schumaker | b0cb908 | 2014-11-07 14:44:27 -0500 | [diff] [blame] | 3042 | [OP_DEALLOCATE] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 3043 | .op_func = nfsd4_deallocate, |
Olga Kornievskaia | 03b31f4 | 2018-12-04 14:09:21 -0500 | [diff] [blame] | 3044 | .op_flags = OP_MODIFIES_SOMETHING, |
Anna Schumaker | b0cb908 | 2014-11-07 14:44:27 -0500 | [diff] [blame] | 3045 | .op_name = "OP_DEALLOCATE", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 3046 | .op_rsize_bop = nfsd4_only_status_rsize, |
Anna Schumaker | b0cb908 | 2014-11-07 14:44:27 -0500 | [diff] [blame] | 3047 | }, |
Christoph Hellwig | ffa0160 | 2015-12-03 12:59:52 +0100 | [diff] [blame] | 3048 | [OP_CLONE] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 3049 | .op_func = nfsd4_clone, |
Olga Kornievskaia | 03b31f4 | 2018-12-04 14:09:21 -0500 | [diff] [blame] | 3050 | .op_flags = OP_MODIFIES_SOMETHING, |
Christoph Hellwig | ffa0160 | 2015-12-03 12:59:52 +0100 | [diff] [blame] | 3051 | .op_name = "OP_CLONE", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 3052 | .op_rsize_bop = nfsd4_only_status_rsize, |
Christoph Hellwig | ffa0160 | 2015-12-03 12:59:52 +0100 | [diff] [blame] | 3053 | }, |
Anna Schumaker | 29ae7f9 | 2016-09-07 15:57:30 -0400 | [diff] [blame] | 3054 | [OP_COPY] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 3055 | .op_func = nfsd4_copy, |
Olga Kornievskaia | 03b31f4 | 2018-12-04 14:09:21 -0500 | [diff] [blame] | 3056 | .op_flags = OP_MODIFIES_SOMETHING, |
Anna Schumaker | 29ae7f9 | 2016-09-07 15:57:30 -0400 | [diff] [blame] | 3057 | .op_name = "OP_COPY", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 3058 | .op_rsize_bop = nfsd4_copy_rsize, |
Anna Schumaker | 29ae7f9 | 2016-09-07 15:57:30 -0400 | [diff] [blame] | 3059 | }, |
Anna Schumaker | 24bab49 | 2014-09-26 13:58:27 -0400 | [diff] [blame] | 3060 | [OP_SEEK] = { |
Christoph Hellwig | eb69853 | 2017-05-08 20:58:35 +0200 | [diff] [blame] | 3061 | .op_func = nfsd4_seek, |
Anna Schumaker | 24bab49 | 2014-09-26 13:58:27 -0400 | [diff] [blame] | 3062 | .op_name = "OP_SEEK", |
Christoph Hellwig | 1c12263 | 2017-05-08 20:42:10 +0200 | [diff] [blame] | 3063 | .op_rsize_bop = nfsd4_seek_rsize, |
Anna Schumaker | 24bab49 | 2014-09-26 13:58:27 -0400 | [diff] [blame] | 3064 | }, |
Olga Kornievskaia | 6308bc9 | 2018-07-20 18:19:18 -0400 | [diff] [blame] | 3065 | [OP_OFFLOAD_STATUS] = { |
| 3066 | .op_func = nfsd4_offload_status, |
| 3067 | .op_name = "OP_OFFLOAD_STATUS", |
| 3068 | .op_rsize_bop = nfsd4_offload_status_rsize, |
| 3069 | }, |
Olga Kornievskaia | 885e2bf | 2018-07-20 18:19:19 -0400 | [diff] [blame] | 3070 | [OP_OFFLOAD_CANCEL] = { |
| 3071 | .op_func = nfsd4_offload_cancel, |
| 3072 | .op_flags = OP_MODIFIES_SOMETHING, |
| 3073 | .op_name = "OP_OFFLOAD_CANCEL", |
| 3074 | .op_rsize_bop = nfsd4_only_status_rsize, |
| 3075 | }, |
Olga Kornievskaia | 5191186 | 2019-08-08 11:14:59 -0400 | [diff] [blame] | 3076 | [OP_COPY_NOTIFY] = { |
| 3077 | .op_func = nfsd4_copy_notify, |
| 3078 | .op_flags = OP_MODIFIES_SOMETHING, |
| 3079 | .op_name = "OP_COPY_NOTIFY", |
| 3080 | .op_rsize_bop = nfsd4_copy_notify_rsize, |
| 3081 | }, |
J.Bruce Fields | b591480 | 2006-12-13 00:35:38 -0800 | [diff] [blame] | 3082 | }; |
| 3083 | |
Andrew Elble | ed94164 | 2016-06-15 12:52:09 -0400 | [diff] [blame] | 3084 | /** |
| 3085 | * nfsd4_spo_must_allow - Determine if the compound op contains an |
| 3086 | * operation that is allowed to be sent with machine credentials |
| 3087 | * |
| 3088 | * @rqstp: a pointer to the struct svc_rqst |
| 3089 | * |
| 3090 | * Checks to see if the compound contains a spo_must_allow op |
| 3091 | * and confirms that it was sent with the proper machine creds. |
| 3092 | */ |
| 3093 | |
| 3094 | bool nfsd4_spo_must_allow(struct svc_rqst *rqstp) |
| 3095 | { |
| 3096 | struct nfsd4_compoundres *resp = rqstp->rq_resp; |
| 3097 | struct nfsd4_compoundargs *argp = rqstp->rq_argp; |
| 3098 | struct nfsd4_op *this = &argp->ops[resp->opcnt - 1]; |
| 3099 | struct nfsd4_compound_state *cstate = &resp->cstate; |
| 3100 | struct nfs4_op_map *allow = &cstate->clp->cl_spo_must_allow; |
| 3101 | u32 opiter; |
| 3102 | |
| 3103 | if (!cstate->minorversion) |
| 3104 | return false; |
| 3105 | |
| 3106 | if (cstate->spo_must_allowed == true) |
| 3107 | return true; |
| 3108 | |
| 3109 | opiter = resp->opcnt; |
| 3110 | while (opiter < argp->opcnt) { |
| 3111 | this = &argp->ops[opiter++]; |
| 3112 | if (test_bit(this->opnum, allow->u.longs) && |
| 3113 | cstate->clp->cl_mach_cred && |
| 3114 | nfsd4_mach_creds_match(cstate->clp, rqstp)) { |
| 3115 | cstate->spo_must_allowed = true; |
| 3116 | return true; |
| 3117 | } |
| 3118 | } |
| 3119 | cstate->spo_must_allowed = false; |
| 3120 | return false; |
| 3121 | } |
| 3122 | |
J. Bruce Fields | 4f0cefb | 2014-03-11 15:39:13 -0400 | [diff] [blame] | 3123 | int nfsd4_max_reply(struct svc_rqst *rqstp, struct nfsd4_op *op) |
| 3124 | { |
Olga Kornievskaia | 05b7278 | 2017-03-23 14:36:20 -0400 | [diff] [blame] | 3125 | if (op->opnum == OP_ILLEGAL || op->status == nfserr_notsupp) |
J. Bruce Fields | 4f0cefb | 2014-03-11 15:39:13 -0400 | [diff] [blame] | 3126 | return op_encode_hdr_size * sizeof(__be32); |
Kinglong Mee | 2282cd2 | 2017-02-03 22:36:00 +0800 | [diff] [blame] | 3127 | |
| 3128 | BUG_ON(OPDESC(op)->op_rsize_bop == NULL); |
| 3129 | return OPDESC(op)->op_rsize_bop(rqstp, op); |
J. Bruce Fields | 4f0cefb | 2014-03-11 15:39:13 -0400 | [diff] [blame] | 3130 | } |
| 3131 | |
J. Bruce Fields | 07d1f80 | 2014-03-06 20:39:29 -0500 | [diff] [blame] | 3132 | void warn_on_nonidempotent_op(struct nfsd4_op *op) |
| 3133 | { |
| 3134 | if (OPDESC(op)->op_flags & OP_MODIFIES_SOMETHING) { |
| 3135 | pr_err("unable to encode reply to nonidempotent op %d (%s)\n", |
| 3136 | op->opnum, nfsd4_op_name(op->opnum)); |
| 3137 | WARN_ON_ONCE(1); |
| 3138 | } |
| 3139 | } |
| 3140 | |
Adrian Bunk | f1c7f79 | 2008-08-08 19:26:42 +0300 | [diff] [blame] | 3141 | static const char *nfsd4_op_name(unsigned opnum) |
Benny Halevy | b001a1b | 2008-07-02 11:15:03 +0300 | [diff] [blame] | 3142 | { |
| 3143 | if (opnum < ARRAY_SIZE(nfsd4_ops)) |
| 3144 | return nfsd4_ops[opnum].op_name; |
| 3145 | return "unknown_operation"; |
| 3146 | } |
| 3147 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3148 | #define nfsd4_voidres nfsd4_voidargs |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3149 | struct nfsd4_voidargs { int dummy; }; |
| 3150 | |
Christoph Hellwig | 860bda2 | 2017-05-12 16:11:49 +0200 | [diff] [blame] | 3151 | static const struct svc_procedure nfsd_procedures4[2] = { |
Yu Zhiguo | 0a93a47 | 2009-05-19 14:09:54 +0800 | [diff] [blame] | 3152 | [NFSPROC4_NULL] = { |
Christoph Hellwig | f7235b6 | 2017-05-08 17:59:13 +0200 | [diff] [blame] | 3153 | .pc_func = nfsd4_proc_null, |
Christoph Hellwig | 63f8de3 | 2017-05-08 19:42:02 +0200 | [diff] [blame] | 3154 | .pc_encode = nfs4svc_encode_voidres, |
Yu Zhiguo | 0a93a47 | 2009-05-19 14:09:54 +0800 | [diff] [blame] | 3155 | .pc_argsize = sizeof(struct nfsd4_voidargs), |
| 3156 | .pc_ressize = sizeof(struct nfsd4_voidres), |
| 3157 | .pc_cachetype = RC_NOCACHE, |
| 3158 | .pc_xdrressize = 1, |
| 3159 | }, |
| 3160 | [NFSPROC4_COMPOUND] = { |
Christoph Hellwig | f7235b6 | 2017-05-08 17:59:13 +0200 | [diff] [blame] | 3161 | .pc_func = nfsd4_proc_compound, |
Christoph Hellwig | 026fec7 | 2017-05-08 19:01:48 +0200 | [diff] [blame] | 3162 | .pc_decode = nfs4svc_decode_compoundargs, |
Christoph Hellwig | 63f8de3 | 2017-05-08 19:42:02 +0200 | [diff] [blame] | 3163 | .pc_encode = nfs4svc_encode_compoundres, |
Yu Zhiguo | 0a93a47 | 2009-05-19 14:09:54 +0800 | [diff] [blame] | 3164 | .pc_argsize = sizeof(struct nfsd4_compoundargs), |
| 3165 | .pc_ressize = sizeof(struct nfsd4_compoundres), |
J. Bruce Fields | 3e98abf | 2011-07-16 17:15:10 -0400 | [diff] [blame] | 3166 | .pc_release = nfsd4_release_compoundargs, |
Yu Zhiguo | 0a93a47 | 2009-05-19 14:09:54 +0800 | [diff] [blame] | 3167 | .pc_cachetype = RC_NOCACHE, |
| 3168 | .pc_xdrressize = NFSD_BUFSIZE/4, |
| 3169 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3170 | }; |
| 3171 | |
Christoph Hellwig | 7fd38af | 2017-05-08 23:40:27 +0200 | [diff] [blame] | 3172 | static unsigned int nfsd_count3[ARRAY_SIZE(nfsd_procedures4)]; |
Christoph Hellwig | e967918 | 2017-05-12 16:21:37 +0200 | [diff] [blame] | 3173 | const struct svc_version nfsd_version4 = { |
Jeff Layton | 5283b03 | 2017-02-24 13:25:24 -0500 | [diff] [blame] | 3174 | .vs_vers = 4, |
| 3175 | .vs_nproc = 2, |
| 3176 | .vs_proc = nfsd_procedures4, |
Christoph Hellwig | 7fd38af | 2017-05-08 23:40:27 +0200 | [diff] [blame] | 3177 | .vs_count = nfsd_count3, |
Jeff Layton | 5283b03 | 2017-02-24 13:25:24 -0500 | [diff] [blame] | 3178 | .vs_dispatch = nfsd_dispatch, |
| 3179 | .vs_xdrsize = NFS4_SVC_XDRSIZE, |
| 3180 | .vs_rpcb_optnl = true, |
| 3181 | .vs_need_cong_ctrl = true, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3182 | }; |
| 3183 | |
| 3184 | /* |
| 3185 | * Local variables: |
| 3186 | * c-basic-offset: 8 |
| 3187 | * End: |
| 3188 | */ |