1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * File operations used by nfsd. Some of these have been ripped from 4 * other parts of the kernel because they weren't exported, others 5 * are partial duplicates with added or changed functionality. 6 * 7 * Note that several functions dget() the dentry upon which they want 8 * to act, most notably those that create directory entries. Response 9 * dentry's are dput()'d if necessary in the release callback. 10 * So if you notice code paths that apparently fail to dput() the 11 * dentry, don't worry--they have been taken care of. 12 * 13 * Copyright (C) 1995-1999 Olaf Kirch <okir@monad.swb.de> 14 * Zerocpy NFS support (C) 2002 Hirokazu Takahashi <taka@valinux.co.jp> 15 */ 16 17 #include <linux/fs.h> 18 #include <linux/file.h> 19 #include <linux/splice.h> 20 #include <linux/falloc.h> 21 #include <linux/fcntl.h> 22 #include <linux/namei.h> 23 #include <linux/delay.h> 24 #include <linux/fsnotify.h> 25 #include <linux/posix_acl_xattr.h> 26 #include <linux/xattr.h> 27 #include <linux/jhash.h> 28 #include <linux/ima.h> 29 #include <linux/pagemap.h> 30 #include <linux/slab.h> 31 #include <linux/uaccess.h> 32 #include <linux/exportfs.h> 33 #include <linux/writeback.h> 34 #include <linux/security.h> 35 36 #include "xdr3.h" 37 38 #ifdef CONFIG_NFSD_V4 39 #include "../internal.h" 40 #include "acl.h" 41 #include "idmap.h" 42 #include "xdr4.h" 43 #endif /* CONFIG_NFSD_V4 */ 44 45 #include "nfsd.h" 46 #include "vfs.h" 47 #include "filecache.h" 48 #include "trace.h" 49 50 #define NFSDDBG_FACILITY NFSDDBG_FILEOP 51 52 /* 53 * Called from nfsd_lookup and encode_dirent. Check if we have crossed 54 * a mount point. 55 * Returns -EAGAIN or -ETIMEDOUT leaving *dpp and *expp unchanged, 56 * or nfs_ok having possibly changed *dpp and *expp 57 */ 58 int 59 nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp, 60 struct svc_export **expp) 61 { 62 struct svc_export *exp = *expp, *exp2 = NULL; 63 struct dentry *dentry = *dpp; 64 struct path path = {.mnt = mntget(exp->ex_path.mnt), 65 .dentry = dget(dentry)}; 66 int err = 0; 67 68 err = follow_down(&path); 69 if (err < 0) 70 goto out; 71 if (path.mnt == exp->ex_path.mnt && path.dentry == dentry && 72 nfsd_mountpoint(dentry, exp) == 2) { 73 /* This is only a mountpoint in some other namespace */ 74 path_put(&path); 75 goto out; 76 } 77 78 exp2 = rqst_exp_get_by_name(rqstp, &path); 79 if (IS_ERR(exp2)) { 80 err = PTR_ERR(exp2); 81 /* 82 * We normally allow NFS clients to continue 83 * "underneath" a mountpoint that is not exported. 84 * The exception is V4ROOT, where no traversal is ever 85 * allowed without an explicit export of the new 86 * directory. 87 */ 88 if (err == -ENOENT && !(exp->ex_flags & NFSEXP_V4ROOT)) 89 err = 0; 90 path_put(&path); 91 goto out; 92 } 93 if (nfsd_v4client(rqstp) || 94 (exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) { 95 /* successfully crossed mount point */ 96 /* 97 * This is subtle: path.dentry is *not* on path.mnt 98 * at this point. The only reason we are safe is that 99 * original mnt is pinned down by exp, so we should 100 * put path *before* putting exp 101 */ 102 *dpp = path.dentry; 103 path.dentry = dentry; 104 *expp = exp2; 105 exp2 = exp; 106 } 107 path_put(&path); 108 exp_put(exp2); 109 out: 110 return err; 111 } 112 113 static void follow_to_parent(struct path *path) 114 { 115 struct dentry *dp; 116 117 while (path->dentry == path->mnt->mnt_root && follow_up(path)) 118 ; 119 dp = dget_parent(path->dentry); 120 dput(path->dentry); 121 path->dentry = dp; 122 } 123 124 static int nfsd_lookup_parent(struct svc_rqst *rqstp, struct dentry *dparent, struct svc_export **exp, struct dentry **dentryp) 125 { 126 struct svc_export *exp2; 127 struct path path = {.mnt = mntget((*exp)->ex_path.mnt), 128 .dentry = dget(dparent)}; 129 130 follow_to_parent(&path); 131 132 exp2 = rqst_exp_parent(rqstp, &path); 133 if (PTR_ERR(exp2) == -ENOENT) { 134 *dentryp = dget(dparent); 135 } else if (IS_ERR(exp2)) { 136 path_put(&path); 137 return PTR_ERR(exp2); 138 } else { 139 *dentryp = dget(path.dentry); 140 exp_put(*exp); 141 *exp = exp2; 142 } 143 path_put(&path); 144 return 0; 145 } 146 147 /* 148 * For nfsd purposes, we treat V4ROOT exports as though there was an 149 * export at *every* directory. 150 * We return: 151 * '1' if this dentry *must* be an export point, 152 * '2' if it might be, if there is really a mount here, and 153 * '0' if there is no chance of an export point here. 154 */ 155 int nfsd_mountpoint(struct dentry *dentry, struct svc_export *exp) 156 { 157 if (!d_inode(dentry)) 158 return 0; 159 if (exp->ex_flags & NFSEXP_V4ROOT) 160 return 1; 161 if (nfsd4_is_junction(dentry)) 162 return 1; 163 if (d_mountpoint(dentry)) 164 /* 165 * Might only be a mountpoint in a different namespace, 166 * but we need to check. 167 */ 168 return 2; 169 return 0; 170 } 171 172 __be32 173 nfsd_lookup_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp, 174 const char *name, unsigned int len, 175 struct svc_export **exp_ret, struct dentry **dentry_ret) 176 { 177 struct svc_export *exp; 178 struct dentry *dparent; 179 struct dentry *dentry; 180 int host_err; 181 182 dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp), len,name); 183 184 dparent = fhp->fh_dentry; 185 exp = exp_get(fhp->fh_export); 186 187 /* Lookup the name, but don't follow links */ 188 if (isdotent(name, len)) { 189 if (len==1) 190 dentry = dget(dparent); 191 else if (dparent != exp->ex_path.dentry) 192 dentry = dget_parent(dparent); 193 else if (!EX_NOHIDE(exp) && !nfsd_v4client(rqstp)) 194 dentry = dget(dparent); /* .. == . just like at / */ 195 else { 196 /* checking mountpoint crossing is very different when stepping up */ 197 host_err = nfsd_lookup_parent(rqstp, dparent, &exp, &dentry); 198 if (host_err) 199 goto out_nfserr; 200 } 201 } else { 202 dentry = lookup_one_len_unlocked(name, dparent, len); 203 host_err = PTR_ERR(dentry); 204 if (IS_ERR(dentry)) 205 goto out_nfserr; 206 if (nfsd_mountpoint(dentry, exp)) { 207 host_err = nfsd_cross_mnt(rqstp, &dentry, &exp); 208 if (host_err) { 209 dput(dentry); 210 goto out_nfserr; 211 } 212 } 213 } 214 *dentry_ret = dentry; 215 *exp_ret = exp; 216 return 0; 217 218 out_nfserr: 219 exp_put(exp); 220 return nfserrno(host_err); 221 } 222 223 /** 224 * nfsd_lookup - look up a single path component for nfsd 225 * 226 * @rqstp: the request context 227 * @fhp: the file handle of the directory 228 * @name: the component name, or %NULL to look up parent 229 * @len: length of name to examine 230 * @resfh: pointer to pre-initialised filehandle to hold result. 231 * 232 * Look up one component of a pathname. 233 * N.B. After this call _both_ fhp and resfh need an fh_put 234 * 235 * If the lookup would cross a mountpoint, and the mounted filesystem 236 * is exported to the client with NFSEXP_NOHIDE, then the lookup is 237 * accepted as it stands and the mounted directory is 238 * returned. Otherwise the covered directory is returned. 239 * NOTE: this mountpoint crossing is not supported properly by all 240 * clients and is explicitly disallowed for NFSv3 241 * 242 */ 243 __be32 244 nfsd_lookup(struct svc_rqst *rqstp, struct svc_fh *fhp, const char *name, 245 unsigned int len, struct svc_fh *resfh) 246 { 247 struct svc_export *exp; 248 struct dentry *dentry; 249 __be32 err; 250 251 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC); 252 if (err) 253 return err; 254 err = nfsd_lookup_dentry(rqstp, fhp, name, len, &exp, &dentry); 255 if (err) 256 return err; 257 err = check_nfsd_access(exp, rqstp); 258 if (err) 259 goto out; 260 /* 261 * Note: we compose the file handle now, but as the 262 * dentry may be negative, it may need to be updated. 263 */ 264 err = fh_compose(resfh, exp, dentry, fhp); 265 if (!err && d_really_is_negative(dentry)) 266 err = nfserr_noent; 267 out: 268 dput(dentry); 269 exp_put(exp); 270 return err; 271 } 272 273 /* 274 * Commit metadata changes to stable storage. 275 */ 276 static int 277 commit_inode_metadata(struct inode *inode) 278 { 279 const struct export_operations *export_ops = inode->i_sb->s_export_op; 280 281 if (export_ops->commit_metadata) 282 return export_ops->commit_metadata(inode); 283 return sync_inode_metadata(inode, 1); 284 } 285 286 static int 287 commit_metadata(struct svc_fh *fhp) 288 { 289 struct inode *inode = d_inode(fhp->fh_dentry); 290 291 if (!EX_ISSYNC(fhp->fh_export)) 292 return 0; 293 return commit_inode_metadata(inode); 294 } 295 296 /* 297 * Go over the attributes and take care of the small differences between 298 * NFS semantics and what Linux expects. 299 */ 300 static void 301 nfsd_sanitize_attrs(struct inode *inode, struct iattr *iap) 302 { 303 /* Ignore mode updates on symlinks */ 304 if (S_ISLNK(inode->i_mode)) 305 iap->ia_valid &= ~ATTR_MODE; 306 307 /* sanitize the mode change */ 308 if (iap->ia_valid & ATTR_MODE) { 309 iap->ia_mode &= S_IALLUGO; 310 iap->ia_mode |= (inode->i_mode & ~S_IALLUGO); 311 } 312 313 /* Revoke setuid/setgid on chown */ 314 if (!S_ISDIR(inode->i_mode) && 315 ((iap->ia_valid & ATTR_UID) || (iap->ia_valid & ATTR_GID))) { 316 iap->ia_valid |= ATTR_KILL_PRIV; 317 if (iap->ia_valid & ATTR_MODE) { 318 /* we're setting mode too, just clear the s*id bits */ 319 iap->ia_mode &= ~S_ISUID; 320 if (iap->ia_mode & S_IXGRP) 321 iap->ia_mode &= ~S_ISGID; 322 } else { 323 /* set ATTR_KILL_* bits and let VFS handle it */ 324 iap->ia_valid |= (ATTR_KILL_SUID | ATTR_KILL_SGID); 325 } 326 } 327 } 328 329 static __be32 330 nfsd_get_write_access(struct svc_rqst *rqstp, struct svc_fh *fhp, 331 struct iattr *iap) 332 { 333 struct inode *inode = d_inode(fhp->fh_dentry); 334 335 if (iap->ia_size < inode->i_size) { 336 __be32 err; 337 338 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry, 339 NFSD_MAY_TRUNC | NFSD_MAY_OWNER_OVERRIDE); 340 if (err) 341 return err; 342 } 343 return nfserrno(get_write_access(inode)); 344 } 345 346 static int __nfsd_setattr(struct dentry *dentry, struct iattr *iap) 347 { 348 int host_err; 349 350 if (iap->ia_valid & ATTR_SIZE) { 351 /* 352 * RFC5661, Section 18.30.4: 353 * Changing the size of a file with SETATTR indirectly 354 * changes the time_modify and change attributes. 355 * 356 * (and similar for the older RFCs) 357 */ 358 struct iattr size_attr = { 359 .ia_valid = ATTR_SIZE | ATTR_CTIME | ATTR_MTIME, 360 .ia_size = iap->ia_size, 361 }; 362 363 if (iap->ia_size < 0) 364 return -EFBIG; 365 366 host_err = notify_change(&init_user_ns, dentry, &size_attr, NULL); 367 if (host_err) 368 return host_err; 369 iap->ia_valid &= ~ATTR_SIZE; 370 371 /* 372 * Avoid the additional setattr call below if the only other 373 * attribute that the client sends is the mtime, as we update 374 * it as part of the size change above. 375 */ 376 if ((iap->ia_valid & ~ATTR_MTIME) == 0) 377 return 0; 378 } 379 380 if (!iap->ia_valid) 381 return 0; 382 383 iap->ia_valid |= ATTR_CTIME; 384 return notify_change(&init_user_ns, dentry, iap, NULL); 385 } 386 387 /** 388 * nfsd_setattr - Set various file attributes. 389 * @rqstp: controlling RPC transaction 390 * @fhp: filehandle of target 391 * @attr: attributes to set 392 * @check_guard: set to 1 if guardtime is a valid timestamp 393 * @guardtime: do not act if ctime.tv_sec does not match this timestamp 394 * 395 * This call may adjust the contents of @attr (in particular, this 396 * call may change the bits in the na_iattr.ia_valid field). 397 * 398 * Returns nfs_ok on success, otherwise an NFS status code is 399 * returned. Caller must release @fhp by calling fh_put in either 400 * case. 401 */ 402 __be32 403 nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, 404 struct nfsd_attrs *attr, 405 int check_guard, time64_t guardtime) 406 { 407 struct dentry *dentry; 408 struct inode *inode; 409 struct iattr *iap = attr->na_iattr; 410 int accmode = NFSD_MAY_SATTR; 411 umode_t ftype = 0; 412 __be32 err; 413 int host_err; 414 bool get_write_count; 415 bool size_change = (iap->ia_valid & ATTR_SIZE); 416 int retries; 417 418 if (iap->ia_valid & ATTR_SIZE) { 419 accmode |= NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE; 420 ftype = S_IFREG; 421 } 422 423 /* 424 * If utimes(2) and friends are called with times not NULL, we should 425 * not set NFSD_MAY_WRITE bit. Otherwise fh_verify->nfsd_permission 426 * will return EACCES, when the caller's effective UID does not match 427 * the owner of the file, and the caller is not privileged. In this 428 * situation, we should return EPERM(notify_change will return this). 429 */ 430 if (iap->ia_valid & (ATTR_ATIME | ATTR_MTIME)) { 431 accmode |= NFSD_MAY_OWNER_OVERRIDE; 432 if (!(iap->ia_valid & (ATTR_ATIME_SET | ATTR_MTIME_SET))) 433 accmode |= NFSD_MAY_WRITE; 434 } 435 436 /* Callers that do fh_verify should do the fh_want_write: */ 437 get_write_count = !fhp->fh_dentry; 438 439 /* Get inode */ 440 err = fh_verify(rqstp, fhp, ftype, accmode); 441 if (err) 442 return err; 443 if (get_write_count) { 444 host_err = fh_want_write(fhp); 445 if (host_err) 446 goto out; 447 } 448 449 dentry = fhp->fh_dentry; 450 inode = d_inode(dentry); 451 452 nfsd_sanitize_attrs(inode, iap); 453 454 if (check_guard && guardtime != inode->i_ctime.tv_sec) 455 return nfserr_notsync; 456 457 /* 458 * The size case is special, it changes the file in addition to the 459 * attributes, and file systems don't expect it to be mixed with 460 * "random" attribute changes. We thus split out the size change 461 * into a separate call to ->setattr, and do the rest as a separate 462 * setattr call. 463 */ 464 if (size_change) { 465 err = nfsd_get_write_access(rqstp, fhp, iap); 466 if (err) 467 return err; 468 } 469 470 inode_lock(inode); 471 for (retries = 1;;) { 472 host_err = __nfsd_setattr(dentry, iap); 473 if (host_err != -EAGAIN || !retries--) 474 break; 475 if (!nfsd_wait_for_delegreturn(rqstp, inode)) 476 break; 477 } 478 if (attr->na_seclabel && attr->na_seclabel->len) 479 attr->na_labelerr = security_inode_setsecctx(dentry, 480 attr->na_seclabel->data, attr->na_seclabel->len); 481 if (IS_ENABLED(CONFIG_FS_POSIX_ACL) && attr->na_pacl) 482 attr->na_aclerr = set_posix_acl(&init_user_ns, 483 inode, ACL_TYPE_ACCESS, 484 attr->na_pacl); 485 if (IS_ENABLED(CONFIG_FS_POSIX_ACL) && 486 !attr->na_aclerr && attr->na_dpacl && S_ISDIR(inode->i_mode)) 487 attr->na_aclerr = set_posix_acl(&init_user_ns, 488 inode, ACL_TYPE_DEFAULT, 489 attr->na_dpacl); 490 inode_unlock(inode); 491 if (size_change) 492 put_write_access(inode); 493 out: 494 if (!host_err) 495 host_err = commit_metadata(fhp); 496 return nfserrno(host_err); 497 } 498 499 #if defined(CONFIG_NFSD_V4) 500 /* 501 * NFS junction information is stored in an extended attribute. 502 */ 503 #define NFSD_JUNCTION_XATTR_NAME XATTR_TRUSTED_PREFIX "junction.nfs" 504 505 /** 506 * nfsd4_is_junction - Test if an object could be an NFS junction 507 * 508 * @dentry: object to test 509 * 510 * Returns 1 if "dentry" appears to contain NFS junction information. 511 * Otherwise 0 is returned. 512 */ 513 int nfsd4_is_junction(struct dentry *dentry) 514 { 515 struct inode *inode = d_inode(dentry); 516 517 if (inode == NULL) 518 return 0; 519 if (inode->i_mode & S_IXUGO) 520 return 0; 521 if (!(inode->i_mode & S_ISVTX)) 522 return 0; 523 if (vfs_getxattr(&init_user_ns, dentry, NFSD_JUNCTION_XATTR_NAME, 524 NULL, 0) <= 0) 525 return 0; 526 return 1; 527 } 528 529 static struct nfsd4_compound_state *nfsd4_get_cstate(struct svc_rqst *rqstp) 530 { 531 return &((struct nfsd4_compoundres *)rqstp->rq_resp)->cstate; 532 } 533 534 __be32 nfsd4_clone_file_range(struct svc_rqst *rqstp, 535 struct nfsd_file *nf_src, u64 src_pos, 536 struct nfsd_file *nf_dst, u64 dst_pos, 537 u64 count, bool sync) 538 { 539 struct file *src = nf_src->nf_file; 540 struct file *dst = nf_dst->nf_file; 541 errseq_t since; 542 loff_t cloned; 543 __be32 ret = 0; 544 545 since = READ_ONCE(dst->f_wb_err); 546 cloned = vfs_clone_file_range(src, src_pos, dst, dst_pos, count, 0); 547 if (cloned < 0) { 548 ret = nfserrno(cloned); 549 goto out_err; 550 } 551 if (count && cloned != count) { 552 ret = nfserrno(-EINVAL); 553 goto out_err; 554 } 555 if (sync) { 556 loff_t dst_end = count ? dst_pos + count - 1 : LLONG_MAX; 557 int status = vfs_fsync_range(dst, dst_pos, dst_end, 0); 558 559 if (!status) 560 status = filemap_check_wb_err(dst->f_mapping, since); 561 if (!status) 562 status = commit_inode_metadata(file_inode(src)); 563 if (status < 0) { 564 struct nfsd_net *nn = net_generic(nf_dst->nf_net, 565 nfsd_net_id); 566 567 trace_nfsd_clone_file_range_err(rqstp, 568 &nfsd4_get_cstate(rqstp)->save_fh, 569 src_pos, 570 &nfsd4_get_cstate(rqstp)->current_fh, 571 dst_pos, 572 count, status); 573 nfsd_reset_write_verifier(nn); 574 trace_nfsd_writeverf_reset(nn, rqstp, status); 575 ret = nfserrno(status); 576 } 577 } 578 out_err: 579 return ret; 580 } 581 582 ssize_t nfsd_copy_file_range(struct file *src, u64 src_pos, struct file *dst, 583 u64 dst_pos, u64 count) 584 { 585 ssize_t ret; 586 587 /* 588 * Limit copy to 4MB to prevent indefinitely blocking an nfsd 589 * thread and client rpc slot. The choice of 4MB is somewhat 590 * arbitrary. We might instead base this on r/wsize, or make it 591 * tunable, or use a time instead of a byte limit, or implement 592 * asynchronous copy. In theory a client could also recognize a 593 * limit like this and pipeline multiple COPY requests. 594 */ 595 count = min_t(u64, count, 1 << 22); 596 ret = vfs_copy_file_range(src, src_pos, dst, dst_pos, count, 0); 597 598 if (ret == -EOPNOTSUPP || ret == -EXDEV) 599 ret = generic_copy_file_range(src, src_pos, dst, dst_pos, 600 count, 0); 601 return ret; 602 } 603 604 __be32 nfsd4_vfs_fallocate(struct svc_rqst *rqstp, struct svc_fh *fhp, 605 struct file *file, loff_t offset, loff_t len, 606 int flags) 607 { 608 int error; 609 610 if (!S_ISREG(file_inode(file)->i_mode)) 611 return nfserr_inval; 612 613 error = vfs_fallocate(file, flags, offset, len); 614 if (!error) 615 error = commit_metadata(fhp); 616 617 return nfserrno(error); 618 } 619 #endif /* defined(CONFIG_NFSD_V4) */ 620 621 /* 622 * Check server access rights to a file system object 623 */ 624 struct accessmap { 625 u32 access; 626 int how; 627 }; 628 static struct accessmap nfs3_regaccess[] = { 629 { NFS3_ACCESS_READ, NFSD_MAY_READ }, 630 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC }, 631 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_TRUNC }, 632 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE }, 633 634 #ifdef CONFIG_NFSD_V4 635 { NFS4_ACCESS_XAREAD, NFSD_MAY_READ }, 636 { NFS4_ACCESS_XAWRITE, NFSD_MAY_WRITE }, 637 { NFS4_ACCESS_XALIST, NFSD_MAY_READ }, 638 #endif 639 640 { 0, 0 } 641 }; 642 643 static struct accessmap nfs3_diraccess[] = { 644 { NFS3_ACCESS_READ, NFSD_MAY_READ }, 645 { NFS3_ACCESS_LOOKUP, NFSD_MAY_EXEC }, 646 { NFS3_ACCESS_MODIFY, NFSD_MAY_EXEC|NFSD_MAY_WRITE|NFSD_MAY_TRUNC}, 647 { NFS3_ACCESS_EXTEND, NFSD_MAY_EXEC|NFSD_MAY_WRITE }, 648 { NFS3_ACCESS_DELETE, NFSD_MAY_REMOVE }, 649 650 #ifdef CONFIG_NFSD_V4 651 { NFS4_ACCESS_XAREAD, NFSD_MAY_READ }, 652 { NFS4_ACCESS_XAWRITE, NFSD_MAY_WRITE }, 653 { NFS4_ACCESS_XALIST, NFSD_MAY_READ }, 654 #endif 655 656 { 0, 0 } 657 }; 658 659 static struct accessmap nfs3_anyaccess[] = { 660 /* Some clients - Solaris 2.6 at least, make an access call 661 * to the server to check for access for things like /dev/null 662 * (which really, the server doesn't care about). So 663 * We provide simple access checking for them, looking 664 * mainly at mode bits, and we make sure to ignore read-only 665 * filesystem checks 666 */ 667 { NFS3_ACCESS_READ, NFSD_MAY_READ }, 668 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC }, 669 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS }, 670 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS }, 671 672 { 0, 0 } 673 }; 674 675 __be32 676 nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported) 677 { 678 struct accessmap *map; 679 struct svc_export *export; 680 struct dentry *dentry; 681 u32 query, result = 0, sresult = 0; 682 __be32 error; 683 684 error = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP); 685 if (error) 686 goto out; 687 688 export = fhp->fh_export; 689 dentry = fhp->fh_dentry; 690 691 if (d_is_reg(dentry)) 692 map = nfs3_regaccess; 693 else if (d_is_dir(dentry)) 694 map = nfs3_diraccess; 695 else 696 map = nfs3_anyaccess; 697 698 699 query = *access; 700 for (; map->access; map++) { 701 if (map->access & query) { 702 __be32 err2; 703 704 sresult |= map->access; 705 706 err2 = nfsd_permission(rqstp, export, dentry, map->how); 707 switch (err2) { 708 case nfs_ok: 709 result |= map->access; 710 break; 711 712 /* the following error codes just mean the access was not allowed, 713 * rather than an error occurred */ 714 case nfserr_rofs: 715 case nfserr_acces: 716 case nfserr_perm: 717 /* simply don't "or" in the access bit. */ 718 break; 719 default: 720 error = err2; 721 goto out; 722 } 723 } 724 } 725 *access = result; 726 if (supported) 727 *supported = sresult; 728 729 out: 730 return error; 731 } 732 733 int nfsd_open_break_lease(struct inode *inode, int access) 734 { 735 unsigned int mode; 736 737 if (access & NFSD_MAY_NOT_BREAK_LEASE) 738 return 0; 739 mode = (access & NFSD_MAY_WRITE) ? O_WRONLY : O_RDONLY; 740 return break_lease(inode, mode | O_NONBLOCK); 741 } 742 743 /* 744 * Open an existing file or directory. 745 * The may_flags argument indicates the type of open (read/write/lock) 746 * and additional flags. 747 * N.B. After this call fhp needs an fh_put 748 */ 749 static __be32 750 __nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type, 751 int may_flags, struct file **filp) 752 { 753 struct path path; 754 struct inode *inode; 755 struct file *file; 756 int flags = O_RDONLY|O_LARGEFILE; 757 __be32 err; 758 int host_err = 0; 759 760 path.mnt = fhp->fh_export->ex_path.mnt; 761 path.dentry = fhp->fh_dentry; 762 inode = d_inode(path.dentry); 763 764 err = nfserr_perm; 765 if (IS_APPEND(inode) && (may_flags & NFSD_MAY_WRITE)) 766 goto out; 767 768 if (!inode->i_fop) 769 goto out; 770 771 host_err = nfsd_open_break_lease(inode, may_flags); 772 if (host_err) /* NOMEM or WOULDBLOCK */ 773 goto out_nfserr; 774 775 if (may_flags & NFSD_MAY_WRITE) { 776 if (may_flags & NFSD_MAY_READ) 777 flags = O_RDWR|O_LARGEFILE; 778 else 779 flags = O_WRONLY|O_LARGEFILE; 780 } 781 782 file = dentry_open(&path, flags, current_cred()); 783 if (IS_ERR(file)) { 784 host_err = PTR_ERR(file); 785 goto out_nfserr; 786 } 787 788 host_err = ima_file_check(file, may_flags); 789 if (host_err) { 790 fput(file); 791 goto out_nfserr; 792 } 793 794 if (may_flags & NFSD_MAY_64BIT_COOKIE) 795 file->f_mode |= FMODE_64BITHASH; 796 else 797 file->f_mode |= FMODE_32BITHASH; 798 799 *filp = file; 800 out_nfserr: 801 err = nfserrno(host_err); 802 out: 803 return err; 804 } 805 806 __be32 807 nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type, 808 int may_flags, struct file **filp) 809 { 810 __be32 err; 811 bool retried = false; 812 813 validate_process_creds(); 814 /* 815 * If we get here, then the client has already done an "open", 816 * and (hopefully) checked permission - so allow OWNER_OVERRIDE 817 * in case a chmod has now revoked permission. 818 * 819 * Arguably we should also allow the owner override for 820 * directories, but we never have and it doesn't seem to have 821 * caused anyone a problem. If we were to change this, note 822 * also that our filldir callbacks would need a variant of 823 * lookup_one_len that doesn't check permissions. 824 */ 825 if (type == S_IFREG) 826 may_flags |= NFSD_MAY_OWNER_OVERRIDE; 827 retry: 828 err = fh_verify(rqstp, fhp, type, may_flags); 829 if (!err) { 830 err = __nfsd_open(rqstp, fhp, type, may_flags, filp); 831 if (err == nfserr_stale && !retried) { 832 retried = true; 833 fh_put(fhp); 834 goto retry; 835 } 836 } 837 validate_process_creds(); 838 return err; 839 } 840 841 /** 842 * nfsd_open_verified - Open a regular file for the filecache 843 * @rqstp: RPC request 844 * @fhp: NFS filehandle of the file to open 845 * @may_flags: internal permission flags 846 * @filp: OUT: open "struct file *" 847 * 848 * Returns an nfsstat value in network byte order. 849 */ 850 __be32 851 nfsd_open_verified(struct svc_rqst *rqstp, struct svc_fh *fhp, int may_flags, 852 struct file **filp) 853 { 854 __be32 err; 855 856 validate_process_creds(); 857 err = __nfsd_open(rqstp, fhp, S_IFREG, may_flags, filp); 858 validate_process_creds(); 859 return err; 860 } 861 862 /* 863 * Grab and keep cached pages associated with a file in the svc_rqst 864 * so that they can be passed to the network sendmsg/sendpage routines 865 * directly. They will be released after the sending has completed. 866 */ 867 static int 868 nfsd_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf, 869 struct splice_desc *sd) 870 { 871 struct svc_rqst *rqstp = sd->u.data; 872 struct page *page = buf->page; // may be a compound one 873 unsigned offset = buf->offset; 874 875 page += offset / PAGE_SIZE; 876 for (int i = sd->len; i > 0; i -= PAGE_SIZE) 877 svc_rqst_replace_page(rqstp, page++); 878 if (rqstp->rq_res.page_len == 0) // first call 879 rqstp->rq_res.page_base = offset % PAGE_SIZE; 880 rqstp->rq_res.page_len += sd->len; 881 return sd->len; 882 } 883 884 static int nfsd_direct_splice_actor(struct pipe_inode_info *pipe, 885 struct splice_desc *sd) 886 { 887 return __splice_from_pipe(pipe, sd, nfsd_splice_actor); 888 } 889 890 static u32 nfsd_eof_on_read(struct file *file, loff_t offset, ssize_t len, 891 size_t expected) 892 { 893 if (expected != 0 && len == 0) 894 return 1; 895 if (offset+len >= i_size_read(file_inode(file))) 896 return 1; 897 return 0; 898 } 899 900 static __be32 nfsd_finish_read(struct svc_rqst *rqstp, struct svc_fh *fhp, 901 struct file *file, loff_t offset, 902 unsigned long *count, u32 *eof, ssize_t host_err) 903 { 904 if (host_err >= 0) { 905 nfsd_stats_io_read_add(fhp->fh_export, host_err); 906 *eof = nfsd_eof_on_read(file, offset, host_err, *count); 907 *count = host_err; 908 fsnotify_access(file); 909 trace_nfsd_read_io_done(rqstp, fhp, offset, *count); 910 return 0; 911 } else { 912 trace_nfsd_read_err(rqstp, fhp, offset, host_err); 913 return nfserrno(host_err); 914 } 915 } 916 917 __be32 nfsd_splice_read(struct svc_rqst *rqstp, struct svc_fh *fhp, 918 struct file *file, loff_t offset, unsigned long *count, 919 u32 *eof) 920 { 921 struct splice_desc sd = { 922 .len = 0, 923 .total_len = *count, 924 .pos = offset, 925 .u.data = rqstp, 926 }; 927 ssize_t host_err; 928 929 trace_nfsd_read_splice(rqstp, fhp, offset, *count); 930 rqstp->rq_next_page = rqstp->rq_respages + 1; 931 host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor); 932 return nfsd_finish_read(rqstp, fhp, file, offset, count, eof, host_err); 933 } 934 935 __be32 nfsd_readv(struct svc_rqst *rqstp, struct svc_fh *fhp, 936 struct file *file, loff_t offset, 937 struct kvec *vec, int vlen, unsigned long *count, 938 u32 *eof) 939 { 940 struct iov_iter iter; 941 loff_t ppos = offset; 942 ssize_t host_err; 943 944 trace_nfsd_read_vector(rqstp, fhp, offset, *count); 945 iov_iter_kvec(&iter, READ, vec, vlen, *count); 946 host_err = vfs_iter_read(file, &iter, &ppos, 0); 947 return nfsd_finish_read(rqstp, fhp, file, offset, count, eof, host_err); 948 } 949 950 /* 951 * Gathered writes: If another process is currently writing to the file, 952 * there's a high chance this is another nfsd (triggered by a bulk write 953 * from a client's biod). Rather than syncing the file with each write 954 * request, we sleep for 10 msec. 955 * 956 * I don't know if this roughly approximates C. Juszak's idea of 957 * gathered writes, but it's a nice and simple solution (IMHO), and it 958 * seems to work:-) 959 * 960 * Note: we do this only in the NFSv2 case, since v3 and higher have a 961 * better tool (separate unstable writes and commits) for solving this 962 * problem. 963 */ 964 static int wait_for_concurrent_writes(struct file *file) 965 { 966 struct inode *inode = file_inode(file); 967 static ino_t last_ino; 968 static dev_t last_dev; 969 int err = 0; 970 971 if (atomic_read(&inode->i_writecount) > 1 972 || (last_ino == inode->i_ino && last_dev == inode->i_sb->s_dev)) { 973 dprintk("nfsd: write defer %d\n", task_pid_nr(current)); 974 msleep(10); 975 dprintk("nfsd: write resume %d\n", task_pid_nr(current)); 976 } 977 978 if (inode->i_state & I_DIRTY) { 979 dprintk("nfsd: write sync %d\n", task_pid_nr(current)); 980 err = vfs_fsync(file, 0); 981 } 982 last_ino = inode->i_ino; 983 last_dev = inode->i_sb->s_dev; 984 return err; 985 } 986 987 __be32 988 nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct nfsd_file *nf, 989 loff_t offset, struct kvec *vec, int vlen, 990 unsigned long *cnt, int stable, 991 __be32 *verf) 992 { 993 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id); 994 struct file *file = nf->nf_file; 995 struct super_block *sb = file_inode(file)->i_sb; 996 struct svc_export *exp; 997 struct iov_iter iter; 998 errseq_t since; 999 __be32 nfserr; 1000 int host_err; 1001 int use_wgather; 1002 loff_t pos = offset; 1003 unsigned long exp_op_flags = 0; 1004 unsigned int pflags = current->flags; 1005 rwf_t flags = 0; 1006 bool restore_flags = false; 1007 1008 trace_nfsd_write_opened(rqstp, fhp, offset, *cnt); 1009 1010 if (sb->s_export_op) 1011 exp_op_flags = sb->s_export_op->flags; 1012 1013 if (test_bit(RQ_LOCAL, &rqstp->rq_flags) && 1014 !(exp_op_flags & EXPORT_OP_REMOTE_FS)) { 1015 /* 1016 * We want throttling in balance_dirty_pages() 1017 * and shrink_inactive_list() to only consider 1018 * the backingdev we are writing to, so that nfs to 1019 * localhost doesn't cause nfsd to lock up due to all 1020 * the client's dirty pages or its congested queue. 1021 */ 1022 current->flags |= PF_LOCAL_THROTTLE; 1023 restore_flags = true; 1024 } 1025 1026 exp = fhp->fh_export; 1027 use_wgather = (rqstp->rq_vers == 2) && EX_WGATHER(exp); 1028 1029 if (!EX_ISSYNC(exp)) 1030 stable = NFS_UNSTABLE; 1031 1032 if (stable && !use_wgather) 1033 flags |= RWF_SYNC; 1034 1035 iov_iter_kvec(&iter, WRITE, vec, vlen, *cnt); 1036 since = READ_ONCE(file->f_wb_err); 1037 if (verf) 1038 nfsd_copy_write_verifier(verf, nn); 1039 host_err = vfs_iter_write(file, &iter, &pos, flags); 1040 if (host_err < 0) { 1041 nfsd_reset_write_verifier(nn); 1042 trace_nfsd_writeverf_reset(nn, rqstp, host_err); 1043 goto out_nfserr; 1044 } 1045 *cnt = host_err; 1046 nfsd_stats_io_write_add(exp, *cnt); 1047 fsnotify_modify(file); 1048 host_err = filemap_check_wb_err(file->f_mapping, since); 1049 if (host_err < 0) 1050 goto out_nfserr; 1051 1052 if (stable && use_wgather) { 1053 host_err = wait_for_concurrent_writes(file); 1054 if (host_err < 0) { 1055 nfsd_reset_write_verifier(nn); 1056 trace_nfsd_writeverf_reset(nn, rqstp, host_err); 1057 } 1058 } 1059 1060 out_nfserr: 1061 if (host_err >= 0) { 1062 trace_nfsd_write_io_done(rqstp, fhp, offset, *cnt); 1063 nfserr = nfs_ok; 1064 } else { 1065 trace_nfsd_write_err(rqstp, fhp, offset, host_err); 1066 nfserr = nfserrno(host_err); 1067 } 1068 if (restore_flags) 1069 current_restore_flags(pflags, PF_LOCAL_THROTTLE); 1070 return nfserr; 1071 } 1072 1073 /* 1074 * Read data from a file. count must contain the requested read count 1075 * on entry. On return, *count contains the number of bytes actually read. 1076 * N.B. After this call fhp needs an fh_put 1077 */ 1078 __be32 nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp, 1079 loff_t offset, struct kvec *vec, int vlen, unsigned long *count, 1080 u32 *eof) 1081 { 1082 struct nfsd_file *nf; 1083 struct file *file; 1084 __be32 err; 1085 1086 trace_nfsd_read_start(rqstp, fhp, offset, *count); 1087 err = nfsd_file_acquire(rqstp, fhp, NFSD_MAY_READ, &nf); 1088 if (err) 1089 return err; 1090 1091 file = nf->nf_file; 1092 if (file->f_op->splice_read && test_bit(RQ_SPLICE_OK, &rqstp->rq_flags)) 1093 err = nfsd_splice_read(rqstp, fhp, file, offset, count, eof); 1094 else 1095 err = nfsd_readv(rqstp, fhp, file, offset, vec, vlen, count, eof); 1096 1097 nfsd_file_put(nf); 1098 1099 trace_nfsd_read_done(rqstp, fhp, offset, *count); 1100 1101 return err; 1102 } 1103 1104 /* 1105 * Write data to a file. 1106 * The stable flag requests synchronous writes. 1107 * N.B. After this call fhp needs an fh_put 1108 */ 1109 __be32 1110 nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t offset, 1111 struct kvec *vec, int vlen, unsigned long *cnt, int stable, 1112 __be32 *verf) 1113 { 1114 struct nfsd_file *nf; 1115 __be32 err; 1116 1117 trace_nfsd_write_start(rqstp, fhp, offset, *cnt); 1118 1119 err = nfsd_file_acquire(rqstp, fhp, NFSD_MAY_WRITE, &nf); 1120 if (err) 1121 goto out; 1122 1123 err = nfsd_vfs_write(rqstp, fhp, nf, offset, vec, 1124 vlen, cnt, stable, verf); 1125 nfsd_file_put(nf); 1126 out: 1127 trace_nfsd_write_done(rqstp, fhp, offset, *cnt); 1128 return err; 1129 } 1130 1131 /** 1132 * nfsd_commit - Commit pending writes to stable storage 1133 * @rqstp: RPC request being processed 1134 * @fhp: NFS filehandle 1135 * @offset: raw offset from beginning of file 1136 * @count: raw count of bytes to sync 1137 * @verf: filled in with the server's current write verifier 1138 * 1139 * Note: we guarantee that data that lies within the range specified 1140 * by the 'offset' and 'count' parameters will be synced. The server 1141 * is permitted to sync data that lies outside this range at the 1142 * same time. 1143 * 1144 * Unfortunately we cannot lock the file to make sure we return full WCC 1145 * data to the client, as locking happens lower down in the filesystem. 1146 * 1147 * Return values: 1148 * An nfsstat value in network byte order. 1149 */ 1150 __be32 1151 nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp, u64 offset, 1152 u32 count, __be32 *verf) 1153 { 1154 u64 maxbytes; 1155 loff_t start, end; 1156 struct nfsd_net *nn; 1157 struct nfsd_file *nf; 1158 __be32 err; 1159 1160 err = nfsd_file_acquire(rqstp, fhp, 1161 NFSD_MAY_WRITE|NFSD_MAY_NOT_BREAK_LEASE, &nf); 1162 if (err) 1163 goto out; 1164 1165 /* 1166 * Convert the client-provided (offset, count) range to a 1167 * (start, end) range. If the client-provided range falls 1168 * outside the maximum file size of the underlying FS, 1169 * clamp the sync range appropriately. 1170 */ 1171 start = 0; 1172 end = LLONG_MAX; 1173 maxbytes = (u64)fhp->fh_dentry->d_sb->s_maxbytes; 1174 if (offset < maxbytes) { 1175 start = offset; 1176 if (count && (offset + count - 1 < maxbytes)) 1177 end = offset + count - 1; 1178 } 1179 1180 nn = net_generic(nf->nf_net, nfsd_net_id); 1181 if (EX_ISSYNC(fhp->fh_export)) { 1182 errseq_t since = READ_ONCE(nf->nf_file->f_wb_err); 1183 int err2; 1184 1185 err2 = vfs_fsync_range(nf->nf_file, start, end, 0); 1186 switch (err2) { 1187 case 0: 1188 nfsd_copy_write_verifier(verf, nn); 1189 err2 = filemap_check_wb_err(nf->nf_file->f_mapping, 1190 since); 1191 err = nfserrno(err2); 1192 break; 1193 case -EINVAL: 1194 err = nfserr_notsupp; 1195 break; 1196 default: 1197 nfsd_reset_write_verifier(nn); 1198 trace_nfsd_writeverf_reset(nn, rqstp, err2); 1199 err = nfserrno(err2); 1200 } 1201 } else 1202 nfsd_copy_write_verifier(verf, nn); 1203 1204 nfsd_file_put(nf); 1205 out: 1206 return err; 1207 } 1208 1209 /** 1210 * nfsd_create_setattr - Set a created file's attributes 1211 * @rqstp: RPC transaction being executed 1212 * @fhp: NFS filehandle of parent directory 1213 * @resfhp: NFS filehandle of new object 1214 * @attrs: requested attributes of new object 1215 * 1216 * Returns nfs_ok on success, or an nfsstat in network byte order. 1217 */ 1218 __be32 1219 nfsd_create_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, 1220 struct svc_fh *resfhp, struct nfsd_attrs *attrs) 1221 { 1222 struct iattr *iap = attrs->na_iattr; 1223 __be32 status; 1224 1225 /* 1226 * Mode has already been set by file creation. 1227 */ 1228 iap->ia_valid &= ~ATTR_MODE; 1229 1230 /* 1231 * Setting uid/gid works only for root. Irix appears to 1232 * send along the gid on create when it tries to implement 1233 * setgid directories via NFS: 1234 */ 1235 if (!uid_eq(current_fsuid(), GLOBAL_ROOT_UID)) 1236 iap->ia_valid &= ~(ATTR_UID|ATTR_GID); 1237 1238 /* 1239 * Callers expect new file metadata to be committed even 1240 * if the attributes have not changed. 1241 */ 1242 if (iap->ia_valid) 1243 status = nfsd_setattr(rqstp, resfhp, attrs, 0, (time64_t)0); 1244 else 1245 status = nfserrno(commit_metadata(resfhp)); 1246 1247 /* 1248 * Transactional filesystems had a chance to commit changes 1249 * for both parent and child simultaneously making the 1250 * following commit_metadata a noop in many cases. 1251 */ 1252 if (!status) 1253 status = nfserrno(commit_metadata(fhp)); 1254 1255 /* 1256 * Update the new filehandle to pick up the new attributes. 1257 */ 1258 if (!status) 1259 status = fh_update(resfhp); 1260 1261 return status; 1262 } 1263 1264 /* HPUX client sometimes creates a file in mode 000, and sets size to 0. 1265 * setting size to 0 may fail for some specific file systems by the permission 1266 * checking which requires WRITE permission but the mode is 000. 1267 * we ignore the resizing(to 0) on the just new created file, since the size is 1268 * 0 after file created. 1269 * 1270 * call this only after vfs_create() is called. 1271 * */ 1272 static void 1273 nfsd_check_ignore_resizing(struct iattr *iap) 1274 { 1275 if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0)) 1276 iap->ia_valid &= ~ATTR_SIZE; 1277 } 1278 1279 /* The parent directory should already be locked: */ 1280 __be32 1281 nfsd_create_locked(struct svc_rqst *rqstp, struct svc_fh *fhp, 1282 struct nfsd_attrs *attrs, 1283 int type, dev_t rdev, struct svc_fh *resfhp) 1284 { 1285 struct dentry *dentry, *dchild; 1286 struct inode *dirp; 1287 struct iattr *iap = attrs->na_iattr; 1288 __be32 err; 1289 int host_err; 1290 1291 dentry = fhp->fh_dentry; 1292 dirp = d_inode(dentry); 1293 1294 dchild = dget(resfhp->fh_dentry); 1295 err = nfsd_permission(rqstp, fhp->fh_export, dentry, NFSD_MAY_CREATE); 1296 if (err) 1297 goto out; 1298 1299 if (!(iap->ia_valid & ATTR_MODE)) 1300 iap->ia_mode = 0; 1301 iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type; 1302 1303 if (!IS_POSIXACL(dirp)) 1304 iap->ia_mode &= ~current_umask(); 1305 1306 err = 0; 1307 host_err = 0; 1308 switch (type) { 1309 case S_IFREG: 1310 host_err = vfs_create(&init_user_ns, dirp, dchild, iap->ia_mode, true); 1311 if (!host_err) 1312 nfsd_check_ignore_resizing(iap); 1313 break; 1314 case S_IFDIR: 1315 host_err = vfs_mkdir(&init_user_ns, dirp, dchild, iap->ia_mode); 1316 if (!host_err && unlikely(d_unhashed(dchild))) { 1317 struct dentry *d; 1318 d = lookup_one_len(dchild->d_name.name, 1319 dchild->d_parent, 1320 dchild->d_name.len); 1321 if (IS_ERR(d)) { 1322 host_err = PTR_ERR(d); 1323 break; 1324 } 1325 if (unlikely(d_is_negative(d))) { 1326 dput(d); 1327 err = nfserr_serverfault; 1328 goto out; 1329 } 1330 dput(resfhp->fh_dentry); 1331 resfhp->fh_dentry = dget(d); 1332 err = fh_update(resfhp); 1333 dput(dchild); 1334 dchild = d; 1335 if (err) 1336 goto out; 1337 } 1338 break; 1339 case S_IFCHR: 1340 case S_IFBLK: 1341 case S_IFIFO: 1342 case S_IFSOCK: 1343 host_err = vfs_mknod(&init_user_ns, dirp, dchild, 1344 iap->ia_mode, rdev); 1345 break; 1346 default: 1347 printk(KERN_WARNING "nfsd: bad file type %o in nfsd_create\n", 1348 type); 1349 host_err = -EINVAL; 1350 } 1351 if (host_err < 0) 1352 goto out_nfserr; 1353 1354 err = nfsd_create_setattr(rqstp, fhp, resfhp, attrs); 1355 1356 out: 1357 dput(dchild); 1358 return err; 1359 1360 out_nfserr: 1361 err = nfserrno(host_err); 1362 goto out; 1363 } 1364 1365 /* 1366 * Create a filesystem object (regular, directory, special). 1367 * Note that the parent directory is left locked. 1368 * 1369 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp 1370 */ 1371 __be32 1372 nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp, 1373 char *fname, int flen, struct nfsd_attrs *attrs, 1374 int type, dev_t rdev, struct svc_fh *resfhp) 1375 { 1376 struct dentry *dentry, *dchild = NULL; 1377 __be32 err; 1378 int host_err; 1379 1380 if (isdotent(fname, flen)) 1381 return nfserr_exist; 1382 1383 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_NOP); 1384 if (err) 1385 return err; 1386 1387 dentry = fhp->fh_dentry; 1388 1389 host_err = fh_want_write(fhp); 1390 if (host_err) 1391 return nfserrno(host_err); 1392 1393 inode_lock_nested(dentry->d_inode, I_MUTEX_PARENT); 1394 dchild = lookup_one_len(fname, dentry, flen); 1395 host_err = PTR_ERR(dchild); 1396 if (IS_ERR(dchild)) { 1397 err = nfserrno(host_err); 1398 goto out_unlock; 1399 } 1400 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp); 1401 /* 1402 * We unconditionally drop our ref to dchild as fh_compose will have 1403 * already grabbed its own ref for it. 1404 */ 1405 dput(dchild); 1406 if (err) 1407 goto out_unlock; 1408 fh_fill_pre_attrs(fhp); 1409 err = nfsd_create_locked(rqstp, fhp, attrs, type, rdev, resfhp); 1410 fh_fill_post_attrs(fhp); 1411 out_unlock: 1412 inode_unlock(dentry->d_inode); 1413 return err; 1414 } 1415 1416 /* 1417 * Read a symlink. On entry, *lenp must contain the maximum path length that 1418 * fits into the buffer. On return, it contains the true length. 1419 * N.B. After this call fhp needs an fh_put 1420 */ 1421 __be32 1422 nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp) 1423 { 1424 __be32 err; 1425 const char *link; 1426 struct path path; 1427 DEFINE_DELAYED_CALL(done); 1428 int len; 1429 1430 err = fh_verify(rqstp, fhp, S_IFLNK, NFSD_MAY_NOP); 1431 if (unlikely(err)) 1432 return err; 1433 1434 path.mnt = fhp->fh_export->ex_path.mnt; 1435 path.dentry = fhp->fh_dentry; 1436 1437 if (unlikely(!d_is_symlink(path.dentry))) 1438 return nfserr_inval; 1439 1440 touch_atime(&path); 1441 1442 link = vfs_get_link(path.dentry, &done); 1443 if (IS_ERR(link)) 1444 return nfserrno(PTR_ERR(link)); 1445 1446 len = strlen(link); 1447 if (len < *lenp) 1448 *lenp = len; 1449 memcpy(buf, link, *lenp); 1450 do_delayed_call(&done); 1451 return 0; 1452 } 1453 1454 /** 1455 * nfsd_symlink - Create a symlink and look up its inode 1456 * @rqstp: RPC transaction being executed 1457 * @fhp: NFS filehandle of parent directory 1458 * @fname: filename of the new symlink 1459 * @flen: length of @fname 1460 * @path: content of the new symlink (NUL-terminated) 1461 * @attrs: requested attributes of new object 1462 * @resfhp: NFS filehandle of new object 1463 * 1464 * N.B. After this call _both_ fhp and resfhp need an fh_put 1465 * 1466 * Returns nfs_ok on success, or an nfsstat in network byte order. 1467 */ 1468 __be32 1469 nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp, 1470 char *fname, int flen, 1471 char *path, struct nfsd_attrs *attrs, 1472 struct svc_fh *resfhp) 1473 { 1474 struct dentry *dentry, *dnew; 1475 __be32 err, cerr; 1476 int host_err; 1477 1478 err = nfserr_noent; 1479 if (!flen || path[0] == '\0') 1480 goto out; 1481 err = nfserr_exist; 1482 if (isdotent(fname, flen)) 1483 goto out; 1484 1485 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE); 1486 if (err) 1487 goto out; 1488 1489 host_err = fh_want_write(fhp); 1490 if (host_err) { 1491 err = nfserrno(host_err); 1492 goto out; 1493 } 1494 1495 dentry = fhp->fh_dentry; 1496 inode_lock_nested(dentry->d_inode, I_MUTEX_PARENT); 1497 dnew = lookup_one_len(fname, dentry, flen); 1498 if (IS_ERR(dnew)) { 1499 err = nfserrno(PTR_ERR(dnew)); 1500 inode_unlock(dentry->d_inode); 1501 goto out_drop_write; 1502 } 1503 fh_fill_pre_attrs(fhp); 1504 host_err = vfs_symlink(&init_user_ns, d_inode(dentry), dnew, path); 1505 err = nfserrno(host_err); 1506 cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp); 1507 if (!err) 1508 nfsd_create_setattr(rqstp, fhp, resfhp, attrs); 1509 fh_fill_post_attrs(fhp); 1510 inode_unlock(dentry->d_inode); 1511 if (!err) 1512 err = nfserrno(commit_metadata(fhp)); 1513 dput(dnew); 1514 if (err==0) err = cerr; 1515 out_drop_write: 1516 fh_drop_write(fhp); 1517 out: 1518 return err; 1519 } 1520 1521 /* 1522 * Create a hardlink 1523 * N.B. After this call _both_ ffhp and tfhp need an fh_put 1524 */ 1525 __be32 1526 nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp, 1527 char *name, int len, struct svc_fh *tfhp) 1528 { 1529 struct dentry *ddir, *dnew, *dold; 1530 struct inode *dirp; 1531 __be32 err; 1532 int host_err; 1533 1534 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_CREATE); 1535 if (err) 1536 goto out; 1537 err = fh_verify(rqstp, tfhp, 0, NFSD_MAY_NOP); 1538 if (err) 1539 goto out; 1540 err = nfserr_isdir; 1541 if (d_is_dir(tfhp->fh_dentry)) 1542 goto out; 1543 err = nfserr_perm; 1544 if (!len) 1545 goto out; 1546 err = nfserr_exist; 1547 if (isdotent(name, len)) 1548 goto out; 1549 1550 host_err = fh_want_write(tfhp); 1551 if (host_err) { 1552 err = nfserrno(host_err); 1553 goto out; 1554 } 1555 1556 ddir = ffhp->fh_dentry; 1557 dirp = d_inode(ddir); 1558 inode_lock_nested(dirp, I_MUTEX_PARENT); 1559 1560 dnew = lookup_one_len(name, ddir, len); 1561 if (IS_ERR(dnew)) { 1562 err = nfserrno(PTR_ERR(dnew)); 1563 goto out_unlock; 1564 } 1565 1566 dold = tfhp->fh_dentry; 1567 1568 err = nfserr_noent; 1569 if (d_really_is_negative(dold)) 1570 goto out_dput; 1571 fh_fill_pre_attrs(ffhp); 1572 host_err = vfs_link(dold, &init_user_ns, dirp, dnew, NULL); 1573 fh_fill_post_attrs(ffhp); 1574 inode_unlock(dirp); 1575 if (!host_err) { 1576 err = nfserrno(commit_metadata(ffhp)); 1577 if (!err) 1578 err = nfserrno(commit_metadata(tfhp)); 1579 } else { 1580 if (host_err == -EXDEV && rqstp->rq_vers == 2) 1581 err = nfserr_acces; 1582 else 1583 err = nfserrno(host_err); 1584 } 1585 dput(dnew); 1586 out_drop_write: 1587 fh_drop_write(tfhp); 1588 out: 1589 return err; 1590 1591 out_dput: 1592 dput(dnew); 1593 out_unlock: 1594 inode_unlock(dirp); 1595 goto out_drop_write; 1596 } 1597 1598 static void 1599 nfsd_close_cached_files(struct dentry *dentry) 1600 { 1601 struct inode *inode = d_inode(dentry); 1602 1603 if (inode && S_ISREG(inode->i_mode)) 1604 nfsd_file_close_inode_sync(inode); 1605 } 1606 1607 static bool 1608 nfsd_has_cached_files(struct dentry *dentry) 1609 { 1610 bool ret = false; 1611 struct inode *inode = d_inode(dentry); 1612 1613 if (inode && S_ISREG(inode->i_mode)) 1614 ret = nfsd_file_is_cached(inode); 1615 return ret; 1616 } 1617 1618 /* 1619 * Rename a file 1620 * N.B. After this call _both_ ffhp and tfhp need an fh_put 1621 */ 1622 __be32 1623 nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen, 1624 struct svc_fh *tfhp, char *tname, int tlen) 1625 { 1626 struct dentry *fdentry, *tdentry, *odentry, *ndentry, *trap; 1627 struct inode *fdir, *tdir; 1628 __be32 err; 1629 int host_err; 1630 bool close_cached = false; 1631 1632 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_REMOVE); 1633 if (err) 1634 goto out; 1635 err = fh_verify(rqstp, tfhp, S_IFDIR, NFSD_MAY_CREATE); 1636 if (err) 1637 goto out; 1638 1639 fdentry = ffhp->fh_dentry; 1640 fdir = d_inode(fdentry); 1641 1642 tdentry = tfhp->fh_dentry; 1643 tdir = d_inode(tdentry); 1644 1645 err = nfserr_perm; 1646 if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen)) 1647 goto out; 1648 1649 retry: 1650 host_err = fh_want_write(ffhp); 1651 if (host_err) { 1652 err = nfserrno(host_err); 1653 goto out; 1654 } 1655 1656 trap = lock_rename(tdentry, fdentry); 1657 fh_fill_pre_attrs(ffhp); 1658 fh_fill_pre_attrs(tfhp); 1659 1660 odentry = lookup_one_len(fname, fdentry, flen); 1661 host_err = PTR_ERR(odentry); 1662 if (IS_ERR(odentry)) 1663 goto out_nfserr; 1664 1665 host_err = -ENOENT; 1666 if (d_really_is_negative(odentry)) 1667 goto out_dput_old; 1668 host_err = -EINVAL; 1669 if (odentry == trap) 1670 goto out_dput_old; 1671 1672 ndentry = lookup_one_len(tname, tdentry, tlen); 1673 host_err = PTR_ERR(ndentry); 1674 if (IS_ERR(ndentry)) 1675 goto out_dput_old; 1676 host_err = -ENOTEMPTY; 1677 if (ndentry == trap) 1678 goto out_dput_new; 1679 1680 host_err = -EXDEV; 1681 if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt) 1682 goto out_dput_new; 1683 if (ffhp->fh_export->ex_path.dentry != tfhp->fh_export->ex_path.dentry) 1684 goto out_dput_new; 1685 1686 if ((ndentry->d_sb->s_export_op->flags & EXPORT_OP_CLOSE_BEFORE_UNLINK) && 1687 nfsd_has_cached_files(ndentry)) { 1688 close_cached = true; 1689 goto out_dput_old; 1690 } else { 1691 struct renamedata rd = { 1692 .old_mnt_userns = &init_user_ns, 1693 .old_dir = fdir, 1694 .old_dentry = odentry, 1695 .new_mnt_userns = &init_user_ns, 1696 .new_dir = tdir, 1697 .new_dentry = ndentry, 1698 }; 1699 int retries; 1700 1701 for (retries = 1;;) { 1702 host_err = vfs_rename(&rd); 1703 if (host_err != -EAGAIN || !retries--) 1704 break; 1705 if (!nfsd_wait_for_delegreturn(rqstp, d_inode(odentry))) 1706 break; 1707 } 1708 if (!host_err) { 1709 host_err = commit_metadata(tfhp); 1710 if (!host_err) 1711 host_err = commit_metadata(ffhp); 1712 } 1713 } 1714 out_dput_new: 1715 dput(ndentry); 1716 out_dput_old: 1717 dput(odentry); 1718 out_nfserr: 1719 err = nfserrno(host_err); 1720 1721 if (!close_cached) { 1722 fh_fill_post_attrs(ffhp); 1723 fh_fill_post_attrs(tfhp); 1724 } 1725 unlock_rename(tdentry, fdentry); 1726 fh_drop_write(ffhp); 1727 1728 /* 1729 * If the target dentry has cached open files, then we need to try to 1730 * close them prior to doing the rename. Flushing delayed fput 1731 * shouldn't be done with locks held however, so we delay it until this 1732 * point and then reattempt the whole shebang. 1733 */ 1734 if (close_cached) { 1735 close_cached = false; 1736 nfsd_close_cached_files(ndentry); 1737 dput(ndentry); 1738 goto retry; 1739 } 1740 out: 1741 return err; 1742 } 1743 1744 /* 1745 * Unlink a file or directory 1746 * N.B. After this call fhp needs an fh_put 1747 */ 1748 __be32 1749 nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, 1750 char *fname, int flen) 1751 { 1752 struct dentry *dentry, *rdentry; 1753 struct inode *dirp; 1754 struct inode *rinode; 1755 __be32 err; 1756 int host_err; 1757 1758 err = nfserr_acces; 1759 if (!flen || isdotent(fname, flen)) 1760 goto out; 1761 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_REMOVE); 1762 if (err) 1763 goto out; 1764 1765 host_err = fh_want_write(fhp); 1766 if (host_err) 1767 goto out_nfserr; 1768 1769 dentry = fhp->fh_dentry; 1770 dirp = d_inode(dentry); 1771 inode_lock_nested(dirp, I_MUTEX_PARENT); 1772 1773 rdentry = lookup_one_len(fname, dentry, flen); 1774 host_err = PTR_ERR(rdentry); 1775 if (IS_ERR(rdentry)) 1776 goto out_unlock; 1777 1778 if (d_really_is_negative(rdentry)) { 1779 dput(rdentry); 1780 host_err = -ENOENT; 1781 goto out_unlock; 1782 } 1783 rinode = d_inode(rdentry); 1784 ihold(rinode); 1785 1786 if (!type) 1787 type = d_inode(rdentry)->i_mode & S_IFMT; 1788 1789 fh_fill_pre_attrs(fhp); 1790 if (type != S_IFDIR) { 1791 int retries; 1792 1793 if (rdentry->d_sb->s_export_op->flags & EXPORT_OP_CLOSE_BEFORE_UNLINK) 1794 nfsd_close_cached_files(rdentry); 1795 1796 for (retries = 1;;) { 1797 host_err = vfs_unlink(&init_user_ns, dirp, rdentry, NULL); 1798 if (host_err != -EAGAIN || !retries--) 1799 break; 1800 if (!nfsd_wait_for_delegreturn(rqstp, rinode)) 1801 break; 1802 } 1803 } else { 1804 host_err = vfs_rmdir(&init_user_ns, dirp, rdentry); 1805 } 1806 fh_fill_post_attrs(fhp); 1807 1808 inode_unlock(dirp); 1809 if (!host_err) 1810 host_err = commit_metadata(fhp); 1811 dput(rdentry); 1812 iput(rinode); /* truncate the inode here */ 1813 1814 out_drop_write: 1815 fh_drop_write(fhp); 1816 out_nfserr: 1817 if (host_err == -EBUSY) { 1818 /* name is mounted-on. There is no perfect 1819 * error status. 1820 */ 1821 if (nfsd_v4client(rqstp)) 1822 err = nfserr_file_open; 1823 else 1824 err = nfserr_acces; 1825 } else { 1826 err = nfserrno(host_err); 1827 } 1828 out: 1829 return err; 1830 out_unlock: 1831 inode_unlock(dirp); 1832 goto out_drop_write; 1833 } 1834 1835 /* 1836 * We do this buffering because we must not call back into the file 1837 * system's ->lookup() method from the filldir callback. That may well 1838 * deadlock a number of file systems. 1839 * 1840 * This is based heavily on the implementation of same in XFS. 1841 */ 1842 struct buffered_dirent { 1843 u64 ino; 1844 loff_t offset; 1845 int namlen; 1846 unsigned int d_type; 1847 char name[]; 1848 }; 1849 1850 struct readdir_data { 1851 struct dir_context ctx; 1852 char *dirent; 1853 size_t used; 1854 int full; 1855 }; 1856 1857 static bool nfsd_buffered_filldir(struct dir_context *ctx, const char *name, 1858 int namlen, loff_t offset, u64 ino, 1859 unsigned int d_type) 1860 { 1861 struct readdir_data *buf = 1862 container_of(ctx, struct readdir_data, ctx); 1863 struct buffered_dirent *de = (void *)(buf->dirent + buf->used); 1864 unsigned int reclen; 1865 1866 reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64)); 1867 if (buf->used + reclen > PAGE_SIZE) { 1868 buf->full = 1; 1869 return false; 1870 } 1871 1872 de->namlen = namlen; 1873 de->offset = offset; 1874 de->ino = ino; 1875 de->d_type = d_type; 1876 memcpy(de->name, name, namlen); 1877 buf->used += reclen; 1878 1879 return true; 1880 } 1881 1882 static __be32 nfsd_buffered_readdir(struct file *file, struct svc_fh *fhp, 1883 nfsd_filldir_t func, struct readdir_cd *cdp, 1884 loff_t *offsetp) 1885 { 1886 struct buffered_dirent *de; 1887 int host_err; 1888 int size; 1889 loff_t offset; 1890 struct readdir_data buf = { 1891 .ctx.actor = nfsd_buffered_filldir, 1892 .dirent = (void *)__get_free_page(GFP_KERNEL) 1893 }; 1894 1895 if (!buf.dirent) 1896 return nfserrno(-ENOMEM); 1897 1898 offset = *offsetp; 1899 1900 while (1) { 1901 unsigned int reclen; 1902 1903 cdp->err = nfserr_eof; /* will be cleared on successful read */ 1904 buf.used = 0; 1905 buf.full = 0; 1906 1907 host_err = iterate_dir(file, &buf.ctx); 1908 if (buf.full) 1909 host_err = 0; 1910 1911 if (host_err < 0) 1912 break; 1913 1914 size = buf.used; 1915 1916 if (!size) 1917 break; 1918 1919 de = (struct buffered_dirent *)buf.dirent; 1920 while (size > 0) { 1921 offset = de->offset; 1922 1923 if (func(cdp, de->name, de->namlen, de->offset, 1924 de->ino, de->d_type)) 1925 break; 1926 1927 if (cdp->err != nfs_ok) 1928 break; 1929 1930 trace_nfsd_dirent(fhp, de->ino, de->name, de->namlen); 1931 1932 reclen = ALIGN(sizeof(*de) + de->namlen, 1933 sizeof(u64)); 1934 size -= reclen; 1935 de = (struct buffered_dirent *)((char *)de + reclen); 1936 } 1937 if (size > 0) /* We bailed out early */ 1938 break; 1939 1940 offset = vfs_llseek(file, 0, SEEK_CUR); 1941 } 1942 1943 free_page((unsigned long)(buf.dirent)); 1944 1945 if (host_err) 1946 return nfserrno(host_err); 1947 1948 *offsetp = offset; 1949 return cdp->err; 1950 } 1951 1952 /* 1953 * Read entries from a directory. 1954 * The NFSv3/4 verifier we ignore for now. 1955 */ 1956 __be32 1957 nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp, 1958 struct readdir_cd *cdp, nfsd_filldir_t func) 1959 { 1960 __be32 err; 1961 struct file *file; 1962 loff_t offset = *offsetp; 1963 int may_flags = NFSD_MAY_READ; 1964 1965 /* NFSv2 only supports 32 bit cookies */ 1966 if (rqstp->rq_vers > 2) 1967 may_flags |= NFSD_MAY_64BIT_COOKIE; 1968 1969 err = nfsd_open(rqstp, fhp, S_IFDIR, may_flags, &file); 1970 if (err) 1971 goto out; 1972 1973 offset = vfs_llseek(file, offset, SEEK_SET); 1974 if (offset < 0) { 1975 err = nfserrno((int)offset); 1976 goto out_close; 1977 } 1978 1979 err = nfsd_buffered_readdir(file, fhp, func, cdp, offsetp); 1980 1981 if (err == nfserr_eof || err == nfserr_toosmall) 1982 err = nfs_ok; /* can still be found in ->err */ 1983 out_close: 1984 fput(file); 1985 out: 1986 return err; 1987 } 1988 1989 /* 1990 * Get file system stats 1991 * N.B. After this call fhp needs an fh_put 1992 */ 1993 __be32 1994 nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat, int access) 1995 { 1996 __be32 err; 1997 1998 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP | access); 1999 if (!err) { 2000 struct path path = { 2001 .mnt = fhp->fh_export->ex_path.mnt, 2002 .dentry = fhp->fh_dentry, 2003 }; 2004 if (vfs_statfs(&path, stat)) 2005 err = nfserr_io; 2006 } 2007 return err; 2008 } 2009 2010 static int exp_rdonly(struct svc_rqst *rqstp, struct svc_export *exp) 2011 { 2012 return nfsexp_flags(rqstp, exp) & NFSEXP_READONLY; 2013 } 2014 2015 #ifdef CONFIG_NFSD_V4 2016 /* 2017 * Helper function to translate error numbers. In the case of xattr operations, 2018 * some error codes need to be translated outside of the standard translations. 2019 * 2020 * ENODATA needs to be translated to nfserr_noxattr. 2021 * E2BIG to nfserr_xattr2big. 2022 * 2023 * Additionally, vfs_listxattr can return -ERANGE. This means that the 2024 * file has too many extended attributes to retrieve inside an 2025 * XATTR_LIST_MAX sized buffer. This is a bug in the xattr implementation: 2026 * filesystems will allow the adding of extended attributes until they hit 2027 * their own internal limit. This limit may be larger than XATTR_LIST_MAX. 2028 * So, at that point, the attributes are present and valid, but can't 2029 * be retrieved using listxattr, since the upper level xattr code enforces 2030 * the XATTR_LIST_MAX limit. 2031 * 2032 * This bug means that we need to deal with listxattr returning -ERANGE. The 2033 * best mapping is to return TOOSMALL. 2034 */ 2035 static __be32 2036 nfsd_xattr_errno(int err) 2037 { 2038 switch (err) { 2039 case -ENODATA: 2040 return nfserr_noxattr; 2041 case -E2BIG: 2042 return nfserr_xattr2big; 2043 case -ERANGE: 2044 return nfserr_toosmall; 2045 } 2046 return nfserrno(err); 2047 } 2048 2049 /* 2050 * Retrieve the specified user extended attribute. To avoid always 2051 * having to allocate the maximum size (since we are not getting 2052 * a maximum size from the RPC), do a probe + alloc. Hold a reader 2053 * lock on i_rwsem to prevent the extended attribute from changing 2054 * size while we're doing this. 2055 */ 2056 __be32 2057 nfsd_getxattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char *name, 2058 void **bufp, int *lenp) 2059 { 2060 ssize_t len; 2061 __be32 err; 2062 char *buf; 2063 struct inode *inode; 2064 struct dentry *dentry; 2065 2066 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_READ); 2067 if (err) 2068 return err; 2069 2070 err = nfs_ok; 2071 dentry = fhp->fh_dentry; 2072 inode = d_inode(dentry); 2073 2074 inode_lock_shared(inode); 2075 2076 len = vfs_getxattr(&init_user_ns, dentry, name, NULL, 0); 2077 2078 /* 2079 * Zero-length attribute, just return. 2080 */ 2081 if (len == 0) { 2082 *bufp = NULL; 2083 *lenp = 0; 2084 goto out; 2085 } 2086 2087 if (len < 0) { 2088 err = nfsd_xattr_errno(len); 2089 goto out; 2090 } 2091 2092 if (len > *lenp) { 2093 err = nfserr_toosmall; 2094 goto out; 2095 } 2096 2097 buf = kvmalloc(len, GFP_KERNEL | GFP_NOFS); 2098 if (buf == NULL) { 2099 err = nfserr_jukebox; 2100 goto out; 2101 } 2102 2103 len = vfs_getxattr(&init_user_ns, dentry, name, buf, len); 2104 if (len <= 0) { 2105 kvfree(buf); 2106 buf = NULL; 2107 err = nfsd_xattr_errno(len); 2108 } 2109 2110 *lenp = len; 2111 *bufp = buf; 2112 2113 out: 2114 inode_unlock_shared(inode); 2115 2116 return err; 2117 } 2118 2119 /* 2120 * Retrieve the xattr names. Since we can't know how many are 2121 * user extended attributes, we must get all attributes here, 2122 * and have the XDR encode filter out the "user." ones. 2123 * 2124 * While this could always just allocate an XATTR_LIST_MAX 2125 * buffer, that's a waste, so do a probe + allocate. To 2126 * avoid any changes between the probe and allocate, wrap 2127 * this in inode_lock. 2128 */ 2129 __be32 2130 nfsd_listxattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char **bufp, 2131 int *lenp) 2132 { 2133 ssize_t len; 2134 __be32 err; 2135 char *buf; 2136 struct inode *inode; 2137 struct dentry *dentry; 2138 2139 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_READ); 2140 if (err) 2141 return err; 2142 2143 dentry = fhp->fh_dentry; 2144 inode = d_inode(dentry); 2145 *lenp = 0; 2146 2147 inode_lock_shared(inode); 2148 2149 len = vfs_listxattr(dentry, NULL, 0); 2150 if (len <= 0) { 2151 err = nfsd_xattr_errno(len); 2152 goto out; 2153 } 2154 2155 if (len > XATTR_LIST_MAX) { 2156 err = nfserr_xattr2big; 2157 goto out; 2158 } 2159 2160 /* 2161 * We're holding i_rwsem - use GFP_NOFS. 2162 */ 2163 buf = kvmalloc(len, GFP_KERNEL | GFP_NOFS); 2164 if (buf == NULL) { 2165 err = nfserr_jukebox; 2166 goto out; 2167 } 2168 2169 len = vfs_listxattr(dentry, buf, len); 2170 if (len <= 0) { 2171 kvfree(buf); 2172 err = nfsd_xattr_errno(len); 2173 goto out; 2174 } 2175 2176 *lenp = len; 2177 *bufp = buf; 2178 2179 err = nfs_ok; 2180 out: 2181 inode_unlock_shared(inode); 2182 2183 return err; 2184 } 2185 2186 /** 2187 * nfsd_removexattr - Remove an extended attribute 2188 * @rqstp: RPC transaction being executed 2189 * @fhp: NFS filehandle of object with xattr to remove 2190 * @name: name of xattr to remove (NUL-terminate) 2191 * 2192 * Pass in a NULL pointer for delegated_inode, and let the client deal 2193 * with NFS4ERR_DELAY (same as with e.g. setattr and remove). 2194 * 2195 * Returns nfs_ok on success, or an nfsstat in network byte order. 2196 */ 2197 __be32 2198 nfsd_removexattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char *name) 2199 { 2200 __be32 err; 2201 int ret; 2202 2203 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_WRITE); 2204 if (err) 2205 return err; 2206 2207 ret = fh_want_write(fhp); 2208 if (ret) 2209 return nfserrno(ret); 2210 2211 inode_lock(fhp->fh_dentry->d_inode); 2212 fh_fill_pre_attrs(fhp); 2213 2214 ret = __vfs_removexattr_locked(&init_user_ns, fhp->fh_dentry, 2215 name, NULL); 2216 2217 fh_fill_post_attrs(fhp); 2218 inode_unlock(fhp->fh_dentry->d_inode); 2219 fh_drop_write(fhp); 2220 2221 return nfsd_xattr_errno(ret); 2222 } 2223 2224 __be32 2225 nfsd_setxattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char *name, 2226 void *buf, u32 len, u32 flags) 2227 { 2228 __be32 err; 2229 int ret; 2230 2231 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_WRITE); 2232 if (err) 2233 return err; 2234 2235 ret = fh_want_write(fhp); 2236 if (ret) 2237 return nfserrno(ret); 2238 inode_lock(fhp->fh_dentry->d_inode); 2239 fh_fill_pre_attrs(fhp); 2240 2241 ret = __vfs_setxattr_locked(&init_user_ns, fhp->fh_dentry, name, buf, 2242 len, flags, NULL); 2243 fh_fill_post_attrs(fhp); 2244 inode_unlock(fhp->fh_dentry->d_inode); 2245 fh_drop_write(fhp); 2246 2247 return nfsd_xattr_errno(ret); 2248 } 2249 #endif 2250 2251 /* 2252 * Check for a user's access permissions to this inode. 2253 */ 2254 __be32 2255 nfsd_permission(struct svc_rqst *rqstp, struct svc_export *exp, 2256 struct dentry *dentry, int acc) 2257 { 2258 struct inode *inode = d_inode(dentry); 2259 int err; 2260 2261 if ((acc & NFSD_MAY_MASK) == NFSD_MAY_NOP) 2262 return 0; 2263 #if 0 2264 dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n", 2265 acc, 2266 (acc & NFSD_MAY_READ)? " read" : "", 2267 (acc & NFSD_MAY_WRITE)? " write" : "", 2268 (acc & NFSD_MAY_EXEC)? " exec" : "", 2269 (acc & NFSD_MAY_SATTR)? " sattr" : "", 2270 (acc & NFSD_MAY_TRUNC)? " trunc" : "", 2271 (acc & NFSD_MAY_LOCK)? " lock" : "", 2272 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "", 2273 inode->i_mode, 2274 IS_IMMUTABLE(inode)? " immut" : "", 2275 IS_APPEND(inode)? " append" : "", 2276 __mnt_is_readonly(exp->ex_path.mnt)? " ro" : ""); 2277 dprintk(" owner %d/%d user %d/%d\n", 2278 inode->i_uid, inode->i_gid, current_fsuid(), current_fsgid()); 2279 #endif 2280 2281 /* Normally we reject any write/sattr etc access on a read-only file 2282 * system. But if it is IRIX doing check on write-access for a 2283 * device special file, we ignore rofs. 2284 */ 2285 if (!(acc & NFSD_MAY_LOCAL_ACCESS)) 2286 if (acc & (NFSD_MAY_WRITE | NFSD_MAY_SATTR | NFSD_MAY_TRUNC)) { 2287 if (exp_rdonly(rqstp, exp) || 2288 __mnt_is_readonly(exp->ex_path.mnt)) 2289 return nfserr_rofs; 2290 if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode)) 2291 return nfserr_perm; 2292 } 2293 if ((acc & NFSD_MAY_TRUNC) && IS_APPEND(inode)) 2294 return nfserr_perm; 2295 2296 if (acc & NFSD_MAY_LOCK) { 2297 /* If we cannot rely on authentication in NLM requests, 2298 * just allow locks, otherwise require read permission, or 2299 * ownership 2300 */ 2301 if (exp->ex_flags & NFSEXP_NOAUTHNLM) 2302 return 0; 2303 else 2304 acc = NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE; 2305 } 2306 /* 2307 * The file owner always gets access permission for accesses that 2308 * would normally be checked at open time. This is to make 2309 * file access work even when the client has done a fchmod(fd, 0). 2310 * 2311 * However, `cp foo bar' should fail nevertheless when bar is 2312 * readonly. A sensible way to do this might be to reject all 2313 * attempts to truncate a read-only file, because a creat() call 2314 * always implies file truncation. 2315 * ... but this isn't really fair. A process may reasonably call 2316 * ftruncate on an open file descriptor on a file with perm 000. 2317 * We must trust the client to do permission checking - using "ACCESS" 2318 * with NFSv3. 2319 */ 2320 if ((acc & NFSD_MAY_OWNER_OVERRIDE) && 2321 uid_eq(inode->i_uid, current_fsuid())) 2322 return 0; 2323 2324 /* This assumes NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */ 2325 err = inode_permission(&init_user_ns, inode, 2326 acc & (MAY_READ | MAY_WRITE | MAY_EXEC)); 2327 2328 /* Allow read access to binaries even when mode 111 */ 2329 if (err == -EACCES && S_ISREG(inode->i_mode) && 2330 (acc == (NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE) || 2331 acc == (NFSD_MAY_READ | NFSD_MAY_READ_IF_EXEC))) 2332 err = inode_permission(&init_user_ns, inode, MAY_EXEC); 2333 2334 return err? nfserrno(err) : 0; 2335 } 2336