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