Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * NFS server file handle treatment. |
| 4 | * |
| 5 | * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de> |
| 6 | * Portions Copyright (C) 1999 G. Allen Morris III <gam3@acm.org> |
| 7 | * Extensive rewrite by Neil Brown <neilb@cse.unsw.edu.au> Southern-Spring 1999 |
| 8 | * ... and again Southern-Winter 2001 to support export_operations |
| 9 | */ |
| 10 | |
Christoph Hellwig | a569425 | 2007-07-17 04:04:28 -0700 | [diff] [blame] | 11 | #include <linux/exportfs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | |
Andy Adamson | 32c1eb0 | 2007-07-17 04:04:48 -0700 | [diff] [blame] | 13 | #include <linux/sunrpc/svcauth_gss.h> |
Boaz Harrosh | 9a74af2 | 2009-12-03 20:30:56 +0200 | [diff] [blame] | 14 | #include "nfsd.h" |
J. Bruce Fields | 0a3adad | 2009-11-04 18:12:35 -0500 | [diff] [blame] | 15 | #include "vfs.h" |
J. Bruce Fields | 2e8138a | 2007-11-15 17:05:43 -0500 | [diff] [blame] | 16 | #include "auth.h" |
Trond Myklebust | f01274a | 2020-03-01 18:21:39 -0500 | [diff] [blame] | 17 | #include "trace.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
| 19 | #define NFSDDBG_FACILITY NFSDDBG_FH |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
| 21 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | /* |
| 23 | * our acceptability function. |
| 24 | * if NOSUBTREECHECK, accept anything |
| 25 | * if not, require that we can walk up to exp->ex_dentry |
| 26 | * doing some checks on the 'x' bits |
| 27 | */ |
| 28 | static int nfsd_acceptable(void *expv, struct dentry *dentry) |
| 29 | { |
| 30 | struct svc_export *exp = expv; |
| 31 | int rv; |
| 32 | struct dentry *tdentry; |
| 33 | struct dentry *parent; |
| 34 | |
| 35 | if (exp->ex_flags & NFSEXP_NOSUBTREECHECK) |
| 36 | return 1; |
| 37 | |
| 38 | tdentry = dget(dentry); |
Jan Blunck | 5477549 | 2008-02-14 19:38:39 -0800 | [diff] [blame] | 39 | while (tdentry != exp->ex_path.dentry && !IS_ROOT(tdentry)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | /* make sure parents give x permission to user */ |
| 41 | int err; |
| 42 | parent = dget_parent(tdentry); |
Christian Brauner | 47291ba | 2021-01-21 14:19:24 +0100 | [diff] [blame] | 43 | err = inode_permission(&init_user_ns, |
| 44 | d_inode(parent), MAY_EXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | if (err < 0) { |
| 46 | dput(parent); |
| 47 | break; |
| 48 | } |
| 49 | dput(tdentry); |
| 50 | tdentry = parent; |
| 51 | } |
Jan Blunck | 5477549 | 2008-02-14 19:38:39 -0800 | [diff] [blame] | 52 | if (tdentry != exp->ex_path.dentry) |
Al Viro | 97e47fa | 2013-09-16 10:57:01 -0400 | [diff] [blame] | 53 | dprintk("nfsd_acceptable failed at %p %pd\n", tdentry, tdentry); |
Jan Blunck | 5477549 | 2008-02-14 19:38:39 -0800 | [diff] [blame] | 54 | rv = (tdentry == exp->ex_path.dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | dput(tdentry); |
| 56 | return rv; |
| 57 | } |
| 58 | |
| 59 | /* Type check. The correct error return for type mismatches does not seem to be |
| 60 | * generally agreed upon. SunOS seems to use EISDIR if file isn't S_IFREG; a |
| 61 | * comment in the NFSv3 spec says this is incorrect (implementation notes for |
| 62 | * the write call). |
| 63 | */ |
Al Viro | 83b1134 | 2006-10-19 23:28:55 -0700 | [diff] [blame] | 64 | static inline __be32 |
J. Bruce Fields | e75b23f | 2016-07-19 17:33:04 -0400 | [diff] [blame] | 65 | nfsd_mode_check(struct svc_rqst *rqstp, struct dentry *dentry, |
| 66 | umode_t requested) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | { |
J. Bruce Fields | e75b23f | 2016-07-19 17:33:04 -0400 | [diff] [blame] | 68 | umode_t mode = d_inode(dentry)->i_mode & S_IFMT; |
J. Bruce Fields | e10f9e1 | 2011-08-15 17:04:19 -0400 | [diff] [blame] | 69 | |
| 70 | if (requested == 0) /* the caller doesn't care */ |
| 71 | return nfs_ok; |
J. Bruce Fields | e75b23f | 2016-07-19 17:33:04 -0400 | [diff] [blame] | 72 | if (mode == requested) { |
| 73 | if (mode == S_IFDIR && !d_can_lookup(dentry)) { |
| 74 | WARN_ON_ONCE(1); |
| 75 | return nfserr_notdir; |
| 76 | } |
J. Bruce Fields | e10f9e1 | 2011-08-15 17:04:19 -0400 | [diff] [blame] | 77 | return nfs_ok; |
J. Bruce Fields | e75b23f | 2016-07-19 17:33:04 -0400 | [diff] [blame] | 78 | } |
J. Bruce Fields | e10f9e1 | 2011-08-15 17:04:19 -0400 | [diff] [blame] | 79 | /* |
| 80 | * v4 has an error more specific than err_notdir which we should |
| 81 | * return in preference to err_notdir: |
| 82 | */ |
| 83 | if (rqstp->rq_vers == 4 && mode == S_IFLNK) |
| 84 | return nfserr_symlink; |
| 85 | if (requested == S_IFDIR) |
| 86 | return nfserr_notdir; |
| 87 | if (mode == S_IFDIR) |
| 88 | return nfserr_isdir; |
| 89 | return nfserr_inval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | } |
| 91 | |
J. Bruce Fields | 9d7ed13 | 2018-03-08 15:49:48 -0500 | [diff] [blame] | 92 | static bool nfsd_originating_port_ok(struct svc_rqst *rqstp, int flags) |
| 93 | { |
| 94 | if (flags & NFSEXP_INSECURE_PORT) |
| 95 | return true; |
| 96 | /* We don't require gss requests to use low ports: */ |
| 97 | if (rqstp->rq_cred.cr_flavor >= RPC_AUTH_GSS) |
| 98 | return true; |
| 99 | return test_bit(RQ_SECURE, &rqstp->rq_flags); |
| 100 | } |
| 101 | |
J. Bruce Fields | 6fa0283 | 2007-11-12 16:05:03 -0500 | [diff] [blame] | 102 | static __be32 nfsd_setuser_and_check_port(struct svc_rqst *rqstp, |
| 103 | struct svc_export *exp) |
| 104 | { |
J. Bruce Fields | 12045a6e | 2009-12-08 18:15:52 -0500 | [diff] [blame] | 105 | int flags = nfsexp_flags(rqstp, exp); |
| 106 | |
J. Bruce Fields | 6fa0283 | 2007-11-12 16:05:03 -0500 | [diff] [blame] | 107 | /* Check if the request originated from a secure port. */ |
J. Bruce Fields | 9d7ed13 | 2018-03-08 15:49:48 -0500 | [diff] [blame] | 108 | if (!nfsd_originating_port_ok(rqstp, flags)) { |
Pavel Emelyanov | 5216a8e | 2008-02-21 10:57:45 +0300 | [diff] [blame] | 109 | RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]); |
Kinglong Mee | a48fd0f | 2014-05-29 12:18:52 +0800 | [diff] [blame] | 110 | dprintk("nfsd: request from insecure port %s!\n", |
| 111 | svc_print_addr(rqstp, buf, sizeof(buf))); |
J. Bruce Fields | 6fa0283 | 2007-11-12 16:05:03 -0500 | [diff] [blame] | 112 | return nfserr_perm; |
| 113 | } |
| 114 | |
| 115 | /* Set user creds for this exportpoint */ |
| 116 | return nfserrno(nfsd_setuser(rqstp, exp)); |
| 117 | } |
| 118 | |
Steve Dickson | 03a816b4 | 2009-09-09 15:06:05 -0400 | [diff] [blame] | 119 | static inline __be32 check_pseudo_root(struct svc_rqst *rqstp, |
| 120 | struct dentry *dentry, struct svc_export *exp) |
| 121 | { |
| 122 | if (!(exp->ex_flags & NFSEXP_V4ROOT)) |
| 123 | return nfs_ok; |
| 124 | /* |
| 125 | * v2/v3 clients have no need for the V4ROOT export--they use |
| 126 | * the mount protocl instead; also, further V4ROOT checks may be |
| 127 | * in v4-specific code, in which case v2/v3 clients could bypass |
| 128 | * them. |
| 129 | */ |
| 130 | if (!nfsd_v4client(rqstp)) |
| 131 | return nfserr_stale; |
| 132 | /* |
| 133 | * We're exposing only the directories and symlinks that have to be |
| 134 | * traversed on the way to real exports: |
| 135 | */ |
David Howells | e36cb0b | 2015-01-29 12:02:35 +0000 | [diff] [blame] | 136 | if (unlikely(!d_is_dir(dentry) && |
| 137 | !d_is_symlink(dentry))) |
Steve Dickson | 03a816b4 | 2009-09-09 15:06:05 -0400 | [diff] [blame] | 138 | return nfserr_stale; |
| 139 | /* |
| 140 | * A pseudoroot export gives permission to access only one |
| 141 | * single directory; the kernel has to make another upcall |
| 142 | * before granting access to anything else under it: |
| 143 | */ |
| 144 | if (unlikely(dentry != exp->ex_path.dentry)) |
| 145 | return nfserr_stale; |
| 146 | return nfs_ok; |
| 147 | } |
| 148 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | /* |
J. Bruce Fields | 03550fa | 2008-03-14 17:51:12 -0400 | [diff] [blame] | 150 | * Use the given filehandle to look up the corresponding export and |
| 151 | * dentry. On success, the results are used to set fh_export and |
| 152 | * fh_dentry. |
| 153 | */ |
| 154 | static __be32 nfsd_set_fh_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp) |
| 155 | { |
| 156 | struct knfsd_fh *fh = &fhp->fh_handle; |
NeilBrown | c645a88 | 2021-09-02 11:15:29 +1000 | [diff] [blame] | 157 | struct fid *fid = NULL; |
J. Bruce Fields | 03550fa | 2008-03-14 17:51:12 -0400 | [diff] [blame] | 158 | struct svc_export *exp; |
| 159 | struct dentry *dentry; |
| 160 | int fileid_type; |
| 161 | int data_left = fh->fh_size/4; |
NeilBrown | c645a88 | 2021-09-02 11:15:29 +1000 | [diff] [blame] | 162 | int len; |
J. Bruce Fields | 03550fa | 2008-03-14 17:51:12 -0400 | [diff] [blame] | 163 | __be32 error; |
| 164 | |
| 165 | error = nfserr_stale; |
| 166 | if (rqstp->rq_vers > 2) |
| 167 | error = nfserr_badhandle; |
| 168 | if (rqstp->rq_vers == 4 && fh->fh_size == 0) |
| 169 | return nfserr_nofilehandle; |
| 170 | |
NeilBrown | c645a88 | 2021-09-02 11:15:29 +1000 | [diff] [blame] | 171 | if (fh->fh_version != 1) |
| 172 | return error; |
J. Bruce Fields | 03550fa | 2008-03-14 17:51:12 -0400 | [diff] [blame] | 173 | |
NeilBrown | c645a88 | 2021-09-02 11:15:29 +1000 | [diff] [blame] | 174 | if (--data_left < 0) |
| 175 | return error; |
| 176 | if (fh->fh_auth_type != 0) |
| 177 | return error; |
| 178 | len = key_len(fh->fh_fsid_type) / 4; |
| 179 | if (len == 0) |
| 180 | return error; |
| 181 | if (fh->fh_fsid_type == FSID_MAJOR_MINOR) { |
| 182 | /* deprecated, convert to type 3 */ |
| 183 | len = key_len(FSID_ENCODE_DEV)/4; |
| 184 | fh->fh_fsid_type = FSID_ENCODE_DEV; |
| 185 | /* |
| 186 | * struct knfsd_fh uses host-endian fields, which are |
| 187 | * sometimes used to hold net-endian values. This |
| 188 | * confuses sparse, so we must use __force here to |
| 189 | * keep it from complaining. |
| 190 | */ |
| 191 | fh->fh_fsid[0] = new_encode_dev(MKDEV(ntohl((__force __be32)fh->fh_fsid[0]), |
| 192 | ntohl((__force __be32)fh->fh_fsid[1]))); |
| 193 | fh->fh_fsid[1] = fh->fh_fsid[2]; |
J. Bruce Fields | 03550fa | 2008-03-14 17:51:12 -0400 | [diff] [blame] | 194 | } |
NeilBrown | c645a88 | 2021-09-02 11:15:29 +1000 | [diff] [blame] | 195 | data_left -= len; |
| 196 | if (data_left < 0) |
| 197 | return error; |
| 198 | exp = rqst_exp_find(rqstp, fh->fh_fsid_type, fh->fh_fsid); |
| 199 | fid = (struct fid *)(fh->fh_fsid + len); |
J. Bruce Fields | 03550fa | 2008-03-14 17:51:12 -0400 | [diff] [blame] | 200 | |
| 201 | error = nfserr_stale; |
Trond Myklebust | f01274a | 2020-03-01 18:21:39 -0500 | [diff] [blame] | 202 | if (IS_ERR(exp)) { |
| 203 | trace_nfsd_set_fh_dentry_badexport(rqstp, fhp, PTR_ERR(exp)); |
J. Bruce Fields | 03550fa | 2008-03-14 17:51:12 -0400 | [diff] [blame] | 204 | |
Trond Myklebust | f01274a | 2020-03-01 18:21:39 -0500 | [diff] [blame] | 205 | if (PTR_ERR(exp) == -ENOENT) |
| 206 | return error; |
| 207 | |
J. Bruce Fields | 03550fa | 2008-03-14 17:51:12 -0400 | [diff] [blame] | 208 | return nfserrno(PTR_ERR(exp)); |
Trond Myklebust | f01274a | 2020-03-01 18:21:39 -0500 | [diff] [blame] | 209 | } |
J. Bruce Fields | 03550fa | 2008-03-14 17:51:12 -0400 | [diff] [blame] | 210 | |
Neil Brown | 496d6c3 | 2008-05-08 13:03:09 +1000 | [diff] [blame] | 211 | if (exp->ex_flags & NFSEXP_NOSUBTREECHECK) { |
| 212 | /* Elevate privileges so that the lack of 'r' or 'x' |
| 213 | * permission on some parent directory will |
| 214 | * not stop exportfs_decode_fh from being able |
| 215 | * to reconnect a directory into the dentry cache. |
| 216 | * The same problem can affect "SUBTREECHECK" exports, |
| 217 | * but as nfsd_acceptable depends on correct |
| 218 | * access control settings being in effect, we cannot |
| 219 | * fix that case easily. |
| 220 | */ |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 221 | struct cred *new = prepare_creds(); |
Kinglong Mee | 027bc41 | 2014-09-02 22:15:26 +0800 | [diff] [blame] | 222 | if (!new) { |
| 223 | error = nfserrno(-ENOMEM); |
| 224 | goto out; |
| 225 | } |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 226 | new->cap_effective = |
| 227 | cap_raise_nfsd_set(new->cap_effective, |
| 228 | new->cap_permitted); |
| 229 | put_cred(override_creds(new)); |
| 230 | put_cred(new); |
Neil Brown | 496d6c3 | 2008-05-08 13:03:09 +1000 | [diff] [blame] | 231 | } else { |
| 232 | error = nfsd_setuser_and_check_port(rqstp, exp); |
| 233 | if (error) |
| 234 | goto out; |
| 235 | } |
J. Bruce Fields | 03550fa | 2008-03-14 17:51:12 -0400 | [diff] [blame] | 236 | |
| 237 | /* |
| 238 | * Look up the dentry using the NFS file handle. |
| 239 | */ |
| 240 | error = nfserr_stale; |
| 241 | if (rqstp->rq_vers > 2) |
| 242 | error = nfserr_badhandle; |
| 243 | |
NeilBrown | c645a88 | 2021-09-02 11:15:29 +1000 | [diff] [blame] | 244 | fileid_type = fh->fh_fileid_type; |
J. Bruce Fields | 03550fa | 2008-03-14 17:51:12 -0400 | [diff] [blame] | 245 | |
| 246 | if (fileid_type == FILEID_ROOT) |
| 247 | dentry = dget(exp->ex_path.dentry); |
| 248 | else { |
Trond Myklebust | 2e19d10 | 2020-11-30 17:03:18 -0500 | [diff] [blame] | 249 | dentry = exportfs_decode_fh_raw(exp->ex_path.mnt, fid, |
| 250 | data_left, fileid_type, |
| 251 | nfsd_acceptable, exp); |
| 252 | if (IS_ERR_OR_NULL(dentry)) { |
Trond Myklebust | f01274a | 2020-03-01 18:21:39 -0500 | [diff] [blame] | 253 | trace_nfsd_set_fh_dentry_badhandle(rqstp, fhp, |
| 254 | dentry ? PTR_ERR(dentry) : -ESTALE); |
Trond Myklebust | 2e19d10 | 2020-11-30 17:03:18 -0500 | [diff] [blame] | 255 | switch (PTR_ERR(dentry)) { |
| 256 | case -ENOMEM: |
| 257 | case -ETIMEDOUT: |
| 258 | break; |
| 259 | default: |
| 260 | dentry = ERR_PTR(-ESTALE); |
| 261 | } |
| 262 | } |
J. Bruce Fields | 03550fa | 2008-03-14 17:51:12 -0400 | [diff] [blame] | 263 | } |
| 264 | if (dentry == NULL) |
| 265 | goto out; |
| 266 | if (IS_ERR(dentry)) { |
| 267 | if (PTR_ERR(dentry) != -EINVAL) |
| 268 | error = nfserrno(PTR_ERR(dentry)); |
| 269 | goto out; |
| 270 | } |
| 271 | |
David Howells | e36cb0b | 2015-01-29 12:02:35 +0000 | [diff] [blame] | 272 | if (d_is_dir(dentry) && |
J. Bruce Fields | 03550fa | 2008-03-14 17:51:12 -0400 | [diff] [blame] | 273 | (dentry->d_flags & DCACHE_DISCONNECTED)) { |
Al Viro | 97e47fa | 2013-09-16 10:57:01 -0400 | [diff] [blame] | 274 | printk("nfsd: find_fh_dentry returned a DISCONNECTED directory: %pd2\n", |
| 275 | dentry); |
J. Bruce Fields | 03550fa | 2008-03-14 17:51:12 -0400 | [diff] [blame] | 276 | } |
| 277 | |
| 278 | fhp->fh_dentry = dentry; |
| 279 | fhp->fh_export = exp; |
Jeff Layton | daab110 | 2020-11-30 17:03:14 -0500 | [diff] [blame] | 280 | |
| 281 | switch (rqstp->rq_vers) { |
Trond Myklebust | 716a8bc | 2020-11-30 23:14:27 -0500 | [diff] [blame] | 282 | case 4: |
| 283 | if (dentry->d_sb->s_export_op->flags & EXPORT_OP_NOATOMIC_ATTR) |
| 284 | fhp->fh_no_atomic_attr = true; |
| 285 | break; |
Jeff Layton | daab110 | 2020-11-30 17:03:14 -0500 | [diff] [blame] | 286 | case 3: |
| 287 | if (dentry->d_sb->s_export_op->flags & EXPORT_OP_NOWCC) |
| 288 | fhp->fh_no_wcc = true; |
| 289 | break; |
| 290 | case 2: |
| 291 | fhp->fh_no_wcc = true; |
| 292 | } |
| 293 | |
J. Bruce Fields | 03550fa | 2008-03-14 17:51:12 -0400 | [diff] [blame] | 294 | return 0; |
| 295 | out: |
| 296 | exp_put(exp); |
| 297 | return error; |
| 298 | } |
| 299 | |
J. Bruce Fields | b3d47676 | 2008-10-20 13:01:59 -0400 | [diff] [blame] | 300 | /** |
| 301 | * fh_verify - filehandle lookup and access checking |
| 302 | * @rqstp: pointer to current rpc request |
| 303 | * @fhp: filehandle to be verified |
| 304 | * @type: expected type of object pointed to by filehandle |
| 305 | * @access: type of access needed to object |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | * |
J. Bruce Fields | b3d47676 | 2008-10-20 13:01:59 -0400 | [diff] [blame] | 307 | * Look up a dentry from the on-the-wire filehandle, check the client's |
| 308 | * access to the export, and set the current task's credentials. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | * |
J. Bruce Fields | b3d47676 | 2008-10-20 13:01:59 -0400 | [diff] [blame] | 310 | * Regardless of success or failure of fh_verify(), fh_put() should be |
| 311 | * called on @fhp when the caller is finished with the filehandle. |
| 312 | * |
| 313 | * fh_verify() may be called multiple times on a given filehandle, for |
| 314 | * example, when processing an NFSv4 compound. The first call will look |
| 315 | * up a dentry using the on-the-wire filehandle. Subsequent calls will |
| 316 | * skip the lookup and just perform the other checks and possibly change |
| 317 | * the current task's credentials. |
| 318 | * |
| 319 | * @type specifies the type of object expected using one of the S_IF* |
| 320 | * constants defined in include/linux/stat.h. The caller may use zero |
| 321 | * to indicate that it doesn't care, or a negative integer to indicate |
| 322 | * that it expects something not of the given type. |
| 323 | * |
| 324 | * @access is formed from the NFSD_MAY_* constants defined in |
Oleg Drokin | 93f580a | 2016-07-07 21:49:38 -0400 | [diff] [blame] | 325 | * fs/nfsd/vfs.h. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | */ |
Al Viro | 83b1134 | 2006-10-19 23:28:55 -0700 | [diff] [blame] | 327 | __be32 |
Al Viro | 175a4eb | 2011-07-26 03:30:54 -0400 | [diff] [blame] | 328 | fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type, int access) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | { |
Amir Goldstein | 20ad856 | 2021-01-06 09:52:36 +0200 | [diff] [blame] | 330 | struct svc_export *exp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | struct dentry *dentry; |
J. Bruce Fields | 03550fa | 2008-03-14 17:51:12 -0400 | [diff] [blame] | 332 | __be32 error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | |
| 334 | dprintk("nfsd: fh_verify(%s)\n", SVCFH_fmt(fhp)); |
| 335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | if (!fhp->fh_dentry) { |
J. Bruce Fields | 03550fa | 2008-03-14 17:51:12 -0400 | [diff] [blame] | 337 | error = nfsd_set_fh_dentry(rqstp, fhp); |
NeilBrown | d1bbf14 | 2006-07-30 03:03:16 -0700 | [diff] [blame] | 338 | if (error) |
| 339 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | } |
J. Bruce Fields | 864f0f6 | 2009-11-25 17:42:05 -0500 | [diff] [blame] | 341 | dentry = fhp->fh_dentry; |
| 342 | exp = fhp->fh_export; |
| 343 | /* |
| 344 | * We still have to do all these permission checks, even when |
| 345 | * fh_dentry is already set: |
| 346 | * - fh_verify may be called multiple times with different |
| 347 | * "access" arguments (e.g. nfsd_proc_create calls |
| 348 | * fh_verify(...,NFSD_MAY_EXEC) first, then later (in |
| 349 | * nfsd_create) calls fh_verify(...,NFSD_MAY_CREATE). |
| 350 | * - in the NFSv4 case, the filehandle may have been filled |
| 351 | * in by fh_compose, and given a dentry, but further |
| 352 | * compound operations performed with that filehandle |
| 353 | * still need permissions checks. In the worst case, a |
| 354 | * mountpoint crossing may have changed the export |
| 355 | * options, and we may now need to use a different uid |
| 356 | * (for example, if different id-squashing options are in |
| 357 | * effect on the new filesystem). |
| 358 | */ |
Steve Dickson | 03a816b4 | 2009-09-09 15:06:05 -0400 | [diff] [blame] | 359 | error = check_pseudo_root(rqstp, dentry, exp); |
| 360 | if (error) |
| 361 | goto out; |
| 362 | |
J. Bruce Fields | 864f0f6 | 2009-11-25 17:42:05 -0500 | [diff] [blame] | 363 | error = nfsd_setuser_and_check_port(rqstp, exp); |
| 364 | if (error) |
| 365 | goto out; |
J. Bruce Fields | 7fc90ec | 2006-06-30 01:56:14 -0700 | [diff] [blame] | 366 | |
J. Bruce Fields | e75b23f | 2016-07-19 17:33:04 -0400 | [diff] [blame] | 367 | error = nfsd_mode_check(rqstp, dentry, type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | if (error) |
| 369 | goto out; |
| 370 | |
J. Bruce Fields | 04716e6 | 2008-08-07 13:00:20 -0400 | [diff] [blame] | 371 | /* |
| 372 | * pseudoflavor restrictions are not enforced on NLM, |
| 373 | * which clients virtually always use auth_sys for, |
| 374 | * even while using RPCSEC_GSS for NFS. |
| 375 | */ |
J. Bruce Fields | 204f4ce | 2011-04-08 16:32:54 -0400 | [diff] [blame] | 376 | if (access & NFSD_MAY_LOCK || access & NFSD_MAY_BYPASS_GSS) |
J. Bruce Fields | 04716e6 | 2008-08-07 13:00:20 -0400 | [diff] [blame] | 377 | goto skip_pseudoflavor_check; |
| 378 | /* |
| 379 | * Clients may expect to be able to use auth_sys during mount, |
| 380 | * even if they use gss for everything else; see section 2.3.2 |
| 381 | * of rfc 2623. |
| 382 | */ |
| 383 | if (access & NFSD_MAY_BYPASS_GSS_ON_ROOT |
| 384 | && exp->ex_path.dentry == dentry) |
| 385 | goto skip_pseudoflavor_check; |
Andy Adamson | 32c1eb0 | 2007-07-17 04:04:48 -0700 | [diff] [blame] | 386 | |
J. Bruce Fields | 04716e6 | 2008-08-07 13:00:20 -0400 | [diff] [blame] | 387 | error = check_nfsd_access(exp, rqstp); |
| 388 | if (error) |
| 389 | goto out; |
| 390 | |
| 391 | skip_pseudoflavor_check: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | /* Finally, check access permissions. */ |
J. Bruce Fields | 0ec757d | 2007-07-17 04:04:48 -0700 | [diff] [blame] | 393 | error = nfsd_permission(rqstp, exp, dentry, access); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | if (error) { |
Al Viro | 97e47fa | 2013-09-16 10:57:01 -0400 | [diff] [blame] | 396 | dprintk("fh_verify: %pd2 permission failure, " |
NeilBrown | 34e9a63 | 2007-01-29 13:19:52 -0800 | [diff] [blame] | 397 | "acc=%x, error=%d\n", |
Al Viro | 97e47fa | 2013-09-16 10:57:01 -0400 | [diff] [blame] | 398 | dentry, |
Al Viro | fc2dd2e | 2007-02-01 13:52:43 +0000 | [diff] [blame] | 399 | access, ntohl(error)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | if (error == nfserr_stale) |
Amir Goldstein | 20ad856 | 2021-01-06 09:52:36 +0200 | [diff] [blame] | 403 | nfsd_stats_fh_stale_inc(exp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | return error; |
| 405 | } |
| 406 | |
| 407 | |
| 408 | /* |
| 409 | * Compose a file handle for an NFS reply. |
| 410 | * |
| 411 | * Note that when first composed, the dentry may not yet have |
| 412 | * an inode. In this case a call to fh_update should be made |
| 413 | * before the fh goes out on the wire ... |
| 414 | */ |
Christoph Hellwig | 6e91ea2 | 2007-10-21 16:42:03 -0700 | [diff] [blame] | 415 | static void _fh_update(struct svc_fh *fhp, struct svc_export *exp, |
| 416 | struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | { |
Jan Blunck | 5477549 | 2008-02-14 19:38:39 -0800 | [diff] [blame] | 418 | if (dentry != exp->ex_path.dentry) { |
Christoph Hellwig | 6e91ea2 | 2007-10-21 16:42:03 -0700 | [diff] [blame] | 419 | struct fid *fid = (struct fid *) |
Christoph Hellwig | 5409e46 | 2014-05-07 13:49:44 +0200 | [diff] [blame] | 420 | (fhp->fh_handle.fh_fsid + fhp->fh_handle.fh_size/4 - 1); |
Christoph Hellwig | 6e91ea2 | 2007-10-21 16:42:03 -0700 | [diff] [blame] | 421 | int maxsize = (fhp->fh_maxsize - fhp->fh_handle.fh_size)/4; |
| 422 | int subtreecheck = !(exp->ex_flags & NFSEXP_NOSUBTREECHECK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | |
Christoph Hellwig | 6e91ea2 | 2007-10-21 16:42:03 -0700 | [diff] [blame] | 424 | fhp->fh_handle.fh_fileid_type = |
| 425 | exportfs_encode_fh(dentry, fid, &maxsize, subtreecheck); |
| 426 | fhp->fh_handle.fh_size += maxsize * 4; |
| 427 | } else { |
| 428 | fhp->fh_handle.fh_fileid_type = FILEID_ROOT; |
| 429 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | } |
| 431 | |
J. Bruce Fields | 8e49875 | 2009-09-02 19:31:32 -0400 | [diff] [blame] | 432 | static bool is_root_export(struct svc_export *exp) |
| 433 | { |
| 434 | return exp->ex_path.dentry == exp->ex_path.dentry->d_sb->s_root; |
| 435 | } |
| 436 | |
| 437 | static struct super_block *exp_sb(struct svc_export *exp) |
| 438 | { |
Al Viro | fc64005 | 2016-04-10 01:33:30 -0400 | [diff] [blame] | 439 | return exp->ex_path.dentry->d_sb; |
J. Bruce Fields | 8e49875 | 2009-09-02 19:31:32 -0400 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | static bool fsid_type_ok_for_exp(u8 fsid_type, struct svc_export *exp) |
| 443 | { |
| 444 | switch (fsid_type) { |
| 445 | case FSID_DEV: |
| 446 | if (!old_valid_dev(exp_sb(exp)->s_dev)) |
Gustavo A. R. Silva | a677a78 | 2018-08-01 19:44:05 -0500 | [diff] [blame] | 447 | return false; |
Gustavo A. R. Silva | df561f66 | 2020-08-23 17:36:59 -0500 | [diff] [blame] | 448 | fallthrough; |
J. Bruce Fields | 8e49875 | 2009-09-02 19:31:32 -0400 | [diff] [blame] | 449 | case FSID_MAJOR_MINOR: |
| 450 | case FSID_ENCODE_DEV: |
| 451 | return exp_sb(exp)->s_type->fs_flags & FS_REQUIRES_DEV; |
| 452 | case FSID_NUM: |
| 453 | return exp->ex_flags & NFSEXP_FSID; |
| 454 | case FSID_UUID8: |
| 455 | case FSID_UUID16: |
| 456 | if (!is_root_export(exp)) |
Gustavo A. R. Silva | a677a78 | 2018-08-01 19:44:05 -0500 | [diff] [blame] | 457 | return false; |
Gustavo A. R. Silva | df561f66 | 2020-08-23 17:36:59 -0500 | [diff] [blame] | 458 | fallthrough; |
J. Bruce Fields | 8e49875 | 2009-09-02 19:31:32 -0400 | [diff] [blame] | 459 | case FSID_UUID4_INUM: |
| 460 | case FSID_UUID16_INUM: |
| 461 | return exp->ex_uuid != NULL; |
| 462 | } |
Gustavo A. R. Silva | a677a78 | 2018-08-01 19:44:05 -0500 | [diff] [blame] | 463 | return true; |
J. Bruce Fields | 8e49875 | 2009-09-02 19:31:32 -0400 | [diff] [blame] | 464 | } |
| 465 | |
J. Bruce Fields | bc6c53d | 2009-09-02 19:50:40 -0400 | [diff] [blame] | 466 | |
| 467 | static void set_version_and_fsid_type(struct svc_fh *fhp, struct svc_export *exp, struct svc_fh *ref_fh) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | { |
NeilBrown | b41eeef | 2007-05-09 02:34:57 -0700 | [diff] [blame] | 469 | u8 version; |
J. Bruce Fields | bc6c53d | 2009-09-02 19:50:40 -0400 | [diff] [blame] | 470 | u8 fsid_type; |
| 471 | retry: |
NeilBrown | b41eeef | 2007-05-09 02:34:57 -0700 | [diff] [blame] | 472 | version = 1; |
NeilBrown | 7e40536 | 2006-06-30 01:56:12 -0700 | [diff] [blame] | 473 | if (ref_fh && ref_fh->fh_export == exp) { |
NeilBrown | 982aedf | 2007-02-14 00:33:11 -0800 | [diff] [blame] | 474 | version = ref_fh->fh_handle.fh_version; |
NeilBrown | b41eeef | 2007-05-09 02:34:57 -0700 | [diff] [blame] | 475 | fsid_type = ref_fh->fh_handle.fh_fsid_type; |
| 476 | |
NeilBrown | b41eeef | 2007-05-09 02:34:57 -0700 | [diff] [blame] | 477 | ref_fh = NULL; |
| 478 | |
| 479 | switch (version) { |
| 480 | case 0xca: |
NeilBrown | af6a4e2 | 2007-02-14 00:33:12 -0800 | [diff] [blame] | 481 | fsid_type = FSID_DEV; |
NeilBrown | b41eeef | 2007-05-09 02:34:57 -0700 | [diff] [blame] | 482 | break; |
| 483 | case 1: |
| 484 | break; |
| 485 | default: |
| 486 | goto retry; |
| 487 | } |
| 488 | |
J. Bruce Fields | 8e49875 | 2009-09-02 19:31:32 -0400 | [diff] [blame] | 489 | /* |
| 490 | * As the fsid -> filesystem mapping was guided by |
| 491 | * user-space, there is no guarantee that the filesystem |
| 492 | * actually supports that fsid type. If it doesn't we |
| 493 | * loop around again without ref_fh set. |
NeilBrown | 982aedf | 2007-02-14 00:33:11 -0800 | [diff] [blame] | 494 | */ |
J. Bruce Fields | 8e49875 | 2009-09-02 19:31:32 -0400 | [diff] [blame] | 495 | if (!fsid_type_ok_for_exp(fsid_type, exp)) |
| 496 | goto retry; |
Steve Dickson | 30fa8c0 | 2009-01-07 16:54:30 -0500 | [diff] [blame] | 497 | } else if (exp->ex_flags & NFSEXP_FSID) { |
| 498 | fsid_type = FSID_NUM; |
NeilBrown | af6a4e2 | 2007-02-14 00:33:12 -0800 | [diff] [blame] | 499 | } else if (exp->ex_uuid) { |
| 500 | if (fhp->fh_maxsize >= 64) { |
J. Bruce Fields | 8e49875 | 2009-09-02 19:31:32 -0400 | [diff] [blame] | 501 | if (is_root_export(exp)) |
NeilBrown | af6a4e2 | 2007-02-14 00:33:12 -0800 | [diff] [blame] | 502 | fsid_type = FSID_UUID16; |
| 503 | else |
| 504 | fsid_type = FSID_UUID16_INUM; |
| 505 | } else { |
J. Bruce Fields | 8e49875 | 2009-09-02 19:31:32 -0400 | [diff] [blame] | 506 | if (is_root_export(exp)) |
NeilBrown | af6a4e2 | 2007-02-14 00:33:12 -0800 | [diff] [blame] | 507 | fsid_type = FSID_UUID8; |
| 508 | else |
| 509 | fsid_type = FSID_UUID4_INUM; |
| 510 | } |
J. Bruce Fields | bc6c53d | 2009-09-02 19:50:40 -0400 | [diff] [blame] | 511 | } else if (!old_valid_dev(exp_sb(exp)->s_dev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | /* for newer device numbers, we must use a newer fsid format */ |
NeilBrown | af6a4e2 | 2007-02-14 00:33:12 -0800 | [diff] [blame] | 513 | fsid_type = FSID_ENCODE_DEV; |
NeilBrown | 982aedf | 2007-02-14 00:33:11 -0800 | [diff] [blame] | 514 | else |
NeilBrown | af6a4e2 | 2007-02-14 00:33:12 -0800 | [diff] [blame] | 515 | fsid_type = FSID_DEV; |
J. Bruce Fields | bc6c53d | 2009-09-02 19:50:40 -0400 | [diff] [blame] | 516 | fhp->fh_handle.fh_version = version; |
| 517 | if (version) |
| 518 | fhp->fh_handle.fh_fsid_type = fsid_type; |
| 519 | } |
| 520 | |
| 521 | __be32 |
| 522 | fh_compose(struct svc_fh *fhp, struct svc_export *exp, struct dentry *dentry, |
| 523 | struct svc_fh *ref_fh) |
| 524 | { |
| 525 | /* ref_fh is a reference file handle. |
| 526 | * if it is non-null and for the same filesystem, then we should compose |
| 527 | * a filehandle which is of the same version, where possible. |
J. Bruce Fields | bc6c53d | 2009-09-02 19:50:40 -0400 | [diff] [blame] | 528 | */ |
| 529 | |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 530 | struct inode * inode = d_inode(dentry); |
J. Bruce Fields | bc6c53d | 2009-09-02 19:50:40 -0400 | [diff] [blame] | 531 | dev_t ex_dev = exp_sb(exp)->s_dev; |
| 532 | |
Al Viro | 97e47fa | 2013-09-16 10:57:01 -0400 | [diff] [blame] | 533 | dprintk("nfsd: fh_compose(exp %02x:%02x/%ld %pd2, ino=%ld)\n", |
J. Bruce Fields | bc6c53d | 2009-09-02 19:50:40 -0400 | [diff] [blame] | 534 | MAJOR(ex_dev), MINOR(ex_dev), |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 535 | (long) d_inode(exp->ex_path.dentry)->i_ino, |
Al Viro | 97e47fa | 2013-09-16 10:57:01 -0400 | [diff] [blame] | 536 | dentry, |
J. Bruce Fields | bc6c53d | 2009-09-02 19:50:40 -0400 | [diff] [blame] | 537 | (inode ? inode->i_ino : 0)); |
| 538 | |
| 539 | /* Choose filehandle version and fsid type based on |
| 540 | * the reference filehandle (if it is in the same export) |
| 541 | * or the export options. |
| 542 | */ |
Christophe JAILLET | d28c442 | 2016-07-02 08:24:32 +0200 | [diff] [blame] | 543 | set_version_and_fsid_type(fhp, exp, ref_fh); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | |
Jeff Layton | daab110 | 2020-11-30 17:03:14 -0500 | [diff] [blame] | 545 | /* If we have a ref_fh, then copy the fh_no_wcc setting from it. */ |
| 546 | fhp->fh_no_wcc = ref_fh ? ref_fh->fh_no_wcc : false; |
| 547 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | if (ref_fh == fhp) |
| 549 | fh_put(ref_fh); |
| 550 | |
| 551 | if (fhp->fh_locked || fhp->fh_dentry) { |
Al Viro | 97e47fa | 2013-09-16 10:57:01 -0400 | [diff] [blame] | 552 | printk(KERN_ERR "fh_compose: fh %pd2 not initialized!\n", |
| 553 | dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | } |
| 555 | if (fhp->fh_maxsize < NFS_FHSIZE) |
Al Viro | 97e47fa | 2013-09-16 10:57:01 -0400 | [diff] [blame] | 556 | printk(KERN_ERR "fh_compose: called with maxsize %d! %pd2\n", |
NeilBrown | 982aedf | 2007-02-14 00:33:11 -0800 | [diff] [blame] | 557 | fhp->fh_maxsize, |
Al Viro | 97e47fa | 2013-09-16 10:57:01 -0400 | [diff] [blame] | 558 | dentry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | |
| 560 | fhp->fh_dentry = dget(dentry); /* our internal copy */ |
Kinglong Mee | bf18f16 | 2014-06-10 22:06:44 +0800 | [diff] [blame] | 561 | fhp->fh_export = exp_get(exp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | |
NeilBrown | c645a88 | 2021-09-02 11:15:29 +1000 | [diff] [blame] | 563 | fhp->fh_handle.fh_size = |
| 564 | key_len(fhp->fh_handle.fh_fsid_type) + 4; |
| 565 | fhp->fh_handle.fh_auth_type = 0; |
Christoph Hellwig | 5409e46 | 2014-05-07 13:49:44 +0200 | [diff] [blame] | 566 | |
NeilBrown | c645a88 | 2021-09-02 11:15:29 +1000 | [diff] [blame] | 567 | mk_fsid(fhp->fh_handle.fh_fsid_type, |
| 568 | fhp->fh_handle.fh_fsid, |
| 569 | ex_dev, |
| 570 | d_inode(exp->ex_path.dentry)->i_ino, |
| 571 | exp->ex_fsid, exp->ex_uuid); |
NeilBrown | af6a4e2 | 2007-02-14 00:33:12 -0800 | [diff] [blame] | 572 | |
NeilBrown | c645a88 | 2021-09-02 11:15:29 +1000 | [diff] [blame] | 573 | if (inode) |
| 574 | _fh_update(fhp, exp, dentry); |
| 575 | if (fhp->fh_handle.fh_fileid_type == FILEID_INVALID) { |
| 576 | fh_put(fhp); |
| 577 | return nfserr_opnotsupp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | } |
| 579 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | return 0; |
| 581 | } |
| 582 | |
| 583 | /* |
| 584 | * Update file handle information after changing a dentry. |
| 585 | * This is only called by nfsd_create, nfsd_create_v3 and nfsd_proc_create |
| 586 | */ |
Al Viro | 83b1134 | 2006-10-19 23:28:55 -0700 | [diff] [blame] | 587 | __be32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | fh_update(struct svc_fh *fhp) |
| 589 | { |
| 590 | struct dentry *dentry; |
NeilBrown | 982aedf | 2007-02-14 00:33:11 -0800 | [diff] [blame] | 591 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | if (!fhp->fh_dentry) |
| 593 | goto out_bad; |
| 594 | |
| 595 | dentry = fhp->fh_dentry; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 596 | if (d_really_is_negative(dentry)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | goto out_negative; |
NeilBrown | c645a88 | 2021-09-02 11:15:29 +1000 | [diff] [blame] | 598 | if (fhp->fh_handle.fh_fileid_type != FILEID_ROOT) |
| 599 | return 0; |
Christoph Hellwig | 6e91ea2 | 2007-10-21 16:42:03 -0700 | [diff] [blame] | 600 | |
NeilBrown | c645a88 | 2021-09-02 11:15:29 +1000 | [diff] [blame] | 601 | _fh_update(fhp, fhp->fh_export, dentry); |
| 602 | if (fhp->fh_handle.fh_fileid_type == FILEID_INVALID) |
| 603 | return nfserr_opnotsupp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | out_bad: |
| 606 | printk(KERN_ERR "fh_update: fh not verified!\n"); |
J. Bruce Fields | 49e7372 | 2013-09-12 09:31:39 -0400 | [diff] [blame] | 607 | return nfserr_serverfault; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | out_negative: |
Al Viro | 97e47fa | 2013-09-16 10:57:01 -0400 | [diff] [blame] | 609 | printk(KERN_ERR "fh_update: %pd2 still negative!\n", |
| 610 | dentry); |
J. Bruce Fields | 49e7372 | 2013-09-12 09:31:39 -0400 | [diff] [blame] | 611 | return nfserr_serverfault; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | } |
| 613 | |
| 614 | /* |
| 615 | * Release a file handle. |
| 616 | */ |
| 617 | void |
| 618 | fh_put(struct svc_fh *fhp) |
| 619 | { |
| 620 | struct dentry * dentry = fhp->fh_dentry; |
| 621 | struct svc_export * exp = fhp->fh_export; |
| 622 | if (dentry) { |
| 623 | fh_unlock(fhp); |
| 624 | fhp->fh_dentry = NULL; |
| 625 | dput(dentry); |
Jeff Layton | aaf91ec | 2015-09-17 08:28:39 -0400 | [diff] [blame] | 626 | fh_clear_wcc(fhp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | } |
Jan Kara | 4a55c10 | 2012-06-12 16:20:33 +0200 | [diff] [blame] | 628 | fh_drop_write(fhp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | if (exp) { |
Stanislav Kinsbursky | a09581f | 2012-03-28 19:09:22 +0400 | [diff] [blame] | 630 | exp_put(exp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | fhp->fh_export = NULL; |
| 632 | } |
Jeff Layton | daab110 | 2020-11-30 17:03:14 -0500 | [diff] [blame] | 633 | fhp->fh_no_wcc = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | return; |
| 635 | } |
| 636 | |
| 637 | /* |
| 638 | * Shorthand for dprintk()'s |
| 639 | */ |
| 640 | char * SVCFH_fmt(struct svc_fh *fhp) |
| 641 | { |
| 642 | struct knfsd_fh *fh = &fhp->fh_handle; |
NeilBrown | d8b2607 | 2021-09-02 11:16:32 +1000 | [diff] [blame] | 643 | static char buf[2+1+1+64*3+1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | |
NeilBrown | d8b2607 | 2021-09-02 11:16:32 +1000 | [diff] [blame] | 645 | if (fh->fh_size < 0 || fh->fh_size> 64) |
| 646 | return "bad-fh"; |
| 647 | sprintf(buf, "%d: %*ph", fh->fh_size, fh->fh_size, fh->fh_raw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | return buf; |
| 649 | } |
NeilBrown | af6a4e2 | 2007-02-14 00:33:12 -0800 | [diff] [blame] | 650 | |
Chuck Lever | 2c42f80 | 2020-10-21 11:58:41 -0400 | [diff] [blame] | 651 | enum fsid_source fsid_source(const struct svc_fh *fhp) |
NeilBrown | af6a4e2 | 2007-02-14 00:33:12 -0800 | [diff] [blame] | 652 | { |
| 653 | if (fhp->fh_handle.fh_version != 1) |
| 654 | return FSIDSOURCE_DEV; |
| 655 | switch(fhp->fh_handle.fh_fsid_type) { |
| 656 | case FSID_DEV: |
| 657 | case FSID_ENCODE_DEV: |
| 658 | case FSID_MAJOR_MINOR: |
J. Bruce Fields | 8e49875 | 2009-09-02 19:31:32 -0400 | [diff] [blame] | 659 | if (exp_sb(fhp->fh_export)->s_type->fs_flags & FS_REQUIRES_DEV) |
Neil Brown | b8da0d1 | 2007-09-05 17:22:13 -0400 | [diff] [blame] | 660 | return FSIDSOURCE_DEV; |
| 661 | break; |
NeilBrown | af6a4e2 | 2007-02-14 00:33:12 -0800 | [diff] [blame] | 662 | case FSID_NUM: |
NeilBrown | af6a4e2 | 2007-02-14 00:33:12 -0800 | [diff] [blame] | 663 | if (fhp->fh_export->ex_flags & NFSEXP_FSID) |
| 664 | return FSIDSOURCE_FSID; |
Neil Brown | b8da0d1 | 2007-09-05 17:22:13 -0400 | [diff] [blame] | 665 | break; |
| 666 | default: |
| 667 | break; |
NeilBrown | af6a4e2 | 2007-02-14 00:33:12 -0800 | [diff] [blame] | 668 | } |
Neil Brown | b8da0d1 | 2007-09-05 17:22:13 -0400 | [diff] [blame] | 669 | /* either a UUID type filehandle, or the filehandle doesn't |
| 670 | * match the export. |
| 671 | */ |
| 672 | if (fhp->fh_export->ex_flags & NFSEXP_FSID) |
| 673 | return FSIDSOURCE_FSID; |
| 674 | if (fhp->fh_export->ex_uuid) |
| 675 | return FSIDSOURCE_UUID; |
| 676 | return FSIDSOURCE_DEV; |
NeilBrown | af6a4e2 | 2007-02-14 00:33:12 -0800 | [diff] [blame] | 677 | } |