]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - fs/nfsd/vfs.c
4949f4a8cd4740e42ebe29d7eb0a6e3ed5495e05
[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 err = nfserrno(err2);
1146 break;
1147 case -EINVAL:
1148 err = nfserr_notsupp;
1149 break;
1150 default:
1151 nfsd_reset_boot_verifier(net_generic(nf->nf_net,
1152 nfsd_net_id));
1153 err = nfserrno(err2);
1154 }
1155 } else
1156 nfsd_copy_boot_verifier(verf, net_generic(nf->nf_net,
1157 nfsd_net_id));
1158
1159 nfsd_file_put(nf);
1160 out:
1161 return err;
1162 }
1163 #endif /* CONFIG_NFSD_V3 */
1164
1165 static __be32
1166 nfsd_create_setattr(struct svc_rqst *rqstp, struct svc_fh *resfhp,
1167 struct iattr *iap)
1168 {
1169 /*
1170 * Mode has already been set earlier in create:
1171 */
1172 iap->ia_valid &= ~ATTR_MODE;
1173 /*
1174 * Setting uid/gid works only for root. Irix appears to
1175 * send along the gid on create when it tries to implement
1176 * setgid directories via NFS:
1177 */
1178 if (!uid_eq(current_fsuid(), GLOBAL_ROOT_UID))
1179 iap->ia_valid &= ~(ATTR_UID|ATTR_GID);
1180 if (iap->ia_valid)
1181 return nfsd_setattr(rqstp, resfhp, iap, 0, (time64_t)0);
1182 /* Callers expect file metadata to be committed here */
1183 return nfserrno(commit_metadata(resfhp));
1184 }
1185
1186 /* HPUX client sometimes creates a file in mode 000, and sets size to 0.
1187 * setting size to 0 may fail for some specific file systems by the permission
1188 * checking which requires WRITE permission but the mode is 000.
1189 * we ignore the resizing(to 0) on the just new created file, since the size is
1190 * 0 after file created.
1191 *
1192 * call this only after vfs_create() is called.
1193 * */
1194 static void
1195 nfsd_check_ignore_resizing(struct iattr *iap)
1196 {
1197 if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0))
1198 iap->ia_valid &= ~ATTR_SIZE;
1199 }
1200
1201 /* The parent directory should already be locked: */
1202 __be32
1203 nfsd_create_locked(struct svc_rqst *rqstp, struct svc_fh *fhp,
1204 char *fname, int flen, struct iattr *iap,
1205 int type, dev_t rdev, struct svc_fh *resfhp)
1206 {
1207 struct dentry *dentry, *dchild;
1208 struct inode *dirp;
1209 __be32 err;
1210 __be32 err2;
1211 int host_err;
1212
1213 dentry = fhp->fh_dentry;
1214 dirp = d_inode(dentry);
1215
1216 dchild = dget(resfhp->fh_dentry);
1217 if (!fhp->fh_locked) {
1218 WARN_ONCE(1, "nfsd_create: parent %pd2 not locked!\n",
1219 dentry);
1220 err = nfserr_io;
1221 goto out;
1222 }
1223
1224 err = nfsd_permission(rqstp, fhp->fh_export, dentry, NFSD_MAY_CREATE);
1225 if (err)
1226 goto out;
1227
1228 if (!(iap->ia_valid & ATTR_MODE))
1229 iap->ia_mode = 0;
1230 iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
1231
1232 if (!IS_POSIXACL(dirp))
1233 iap->ia_mode &= ~current_umask();
1234
1235 err = 0;
1236 host_err = 0;
1237 switch (type) {
1238 case S_IFREG:
1239 host_err = vfs_create(&init_user_ns, dirp, dchild, iap->ia_mode, true);
1240 if (!host_err)
1241 nfsd_check_ignore_resizing(iap);
1242 break;
1243 case S_IFDIR:
1244 host_err = vfs_mkdir(&init_user_ns, dirp, dchild, iap->ia_mode);
1245 if (!host_err && unlikely(d_unhashed(dchild))) {
1246 struct dentry *d;
1247 d = lookup_one_len(dchild->d_name.name,
1248 dchild->d_parent,
1249 dchild->d_name.len);
1250 if (IS_ERR(d)) {
1251 host_err = PTR_ERR(d);
1252 break;
1253 }
1254 if (unlikely(d_is_negative(d))) {
1255 dput(d);
1256 err = nfserr_serverfault;
1257 goto out;
1258 }
1259 dput(resfhp->fh_dentry);
1260 resfhp->fh_dentry = dget(d);
1261 err = fh_update(resfhp);
1262 dput(dchild);
1263 dchild = d;
1264 if (err)
1265 goto out;
1266 }
1267 break;
1268 case S_IFCHR:
1269 case S_IFBLK:
1270 case S_IFIFO:
1271 case S_IFSOCK:
1272 host_err = vfs_mknod(&init_user_ns, dirp, dchild,
1273 iap->ia_mode, rdev);
1274 break;
1275 default:
1276 printk(KERN_WARNING "nfsd: bad file type %o in nfsd_create\n",
1277 type);
1278 host_err = -EINVAL;
1279 }
1280 if (host_err < 0)
1281 goto out_nfserr;
1282
1283 err = nfsd_create_setattr(rqstp, resfhp, iap);
1284
1285 /*
1286 * nfsd_create_setattr already committed the child. Transactional
1287 * filesystems had a chance to commit changes for both parent and
1288 * child simultaneously making the following commit_metadata a
1289 * noop.
1290 */
1291 err2 = nfserrno(commit_metadata(fhp));
1292 if (err2)
1293 err = err2;
1294 /*
1295 * Update the file handle to get the new inode info.
1296 */
1297 if (!err)
1298 err = fh_update(resfhp);
1299 out:
1300 dput(dchild);
1301 return err;
1302
1303 out_nfserr:
1304 err = nfserrno(host_err);
1305 goto out;
1306 }
1307
1308 /*
1309 * Create a filesystem object (regular, directory, special).
1310 * Note that the parent directory is left locked.
1311 *
1312 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1313 */
1314 __be32
1315 nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1316 char *fname, int flen, struct iattr *iap,
1317 int type, dev_t rdev, struct svc_fh *resfhp)
1318 {
1319 struct dentry *dentry, *dchild = NULL;
1320 __be32 err;
1321 int host_err;
1322
1323 if (isdotent(fname, flen))
1324 return nfserr_exist;
1325
1326 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_NOP);
1327 if (err)
1328 return err;
1329
1330 dentry = fhp->fh_dentry;
1331
1332 host_err = fh_want_write(fhp);
1333 if (host_err)
1334 return nfserrno(host_err);
1335
1336 fh_lock_nested(fhp, I_MUTEX_PARENT);
1337 dchild = lookup_one_len(fname, dentry, flen);
1338 host_err = PTR_ERR(dchild);
1339 if (IS_ERR(dchild))
1340 return nfserrno(host_err);
1341 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1342 /*
1343 * We unconditionally drop our ref to dchild as fh_compose will have
1344 * already grabbed its own ref for it.
1345 */
1346 dput(dchild);
1347 if (err)
1348 return err;
1349 return nfsd_create_locked(rqstp, fhp, fname, flen, iap, type,
1350 rdev, resfhp);
1351 }
1352
1353 #ifdef CONFIG_NFSD_V3
1354
1355 /*
1356 * NFSv3 and NFSv4 version of nfsd_create
1357 */
1358 __be32
1359 do_nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1360 char *fname, int flen, struct iattr *iap,
1361 struct svc_fh *resfhp, int createmode, u32 *verifier,
1362 bool *truncp, bool *created)
1363 {
1364 struct dentry *dentry, *dchild = NULL;
1365 struct inode *dirp;
1366 __be32 err;
1367 int host_err;
1368 __u32 v_mtime=0, v_atime=0;
1369
1370 err = nfserr_perm;
1371 if (!flen)
1372 goto out;
1373 err = nfserr_exist;
1374 if (isdotent(fname, flen))
1375 goto out;
1376 if (!(iap->ia_valid & ATTR_MODE))
1377 iap->ia_mode = 0;
1378 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
1379 if (err)
1380 goto out;
1381
1382 dentry = fhp->fh_dentry;
1383 dirp = d_inode(dentry);
1384
1385 host_err = fh_want_write(fhp);
1386 if (host_err)
1387 goto out_nfserr;
1388
1389 fh_lock_nested(fhp, I_MUTEX_PARENT);
1390
1391 /*
1392 * Compose the response file handle.
1393 */
1394 dchild = lookup_one_len(fname, dentry, flen);
1395 host_err = PTR_ERR(dchild);
1396 if (IS_ERR(dchild))
1397 goto out_nfserr;
1398
1399 /* If file doesn't exist, check for permissions to create one */
1400 if (d_really_is_negative(dchild)) {
1401 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1402 if (err)
1403 goto out;
1404 }
1405
1406 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1407 if (err)
1408 goto out;
1409
1410 if (nfsd_create_is_exclusive(createmode)) {
1411 /* solaris7 gets confused (bugid 4218508) if these have
1412 * the high bit set, so just clear the high bits. If this is
1413 * ever changed to use different attrs for storing the
1414 * verifier, then do_open_lookup() will also need to be fixed
1415 * accordingly.
1416 */
1417 v_mtime = verifier[0]&0x7fffffff;
1418 v_atime = verifier[1]&0x7fffffff;
1419 }
1420
1421 if (d_really_is_positive(dchild)) {
1422 err = 0;
1423
1424 switch (createmode) {
1425 case NFS3_CREATE_UNCHECKED:
1426 if (! d_is_reg(dchild))
1427 goto out;
1428 else if (truncp) {
1429 /* in nfsv4, we need to treat this case a little
1430 * differently. we don't want to truncate the
1431 * file now; this would be wrong if the OPEN
1432 * fails for some other reason. furthermore,
1433 * if the size is nonzero, we should ignore it
1434 * according to spec!
1435 */
1436 *truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
1437 }
1438 else {
1439 iap->ia_valid &= ATTR_SIZE;
1440 goto set_attr;
1441 }
1442 break;
1443 case NFS3_CREATE_EXCLUSIVE:
1444 if ( d_inode(dchild)->i_mtime.tv_sec == v_mtime
1445 && d_inode(dchild)->i_atime.tv_sec == v_atime
1446 && d_inode(dchild)->i_size == 0 ) {
1447 if (created)
1448 *created = true;
1449 break;
1450 }
1451 fallthrough;
1452 case NFS4_CREATE_EXCLUSIVE4_1:
1453 if ( d_inode(dchild)->i_mtime.tv_sec == v_mtime
1454 && d_inode(dchild)->i_atime.tv_sec == v_atime
1455 && d_inode(dchild)->i_size == 0 ) {
1456 if (created)
1457 *created = true;
1458 goto set_attr;
1459 }
1460 fallthrough;
1461 case NFS3_CREATE_GUARDED:
1462 err = nfserr_exist;
1463 }
1464 fh_drop_write(fhp);
1465 goto out;
1466 }
1467
1468 if (!IS_POSIXACL(dirp))
1469 iap->ia_mode &= ~current_umask();
1470
1471 host_err = vfs_create(&init_user_ns, dirp, dchild, iap->ia_mode, true);
1472 if (host_err < 0) {
1473 fh_drop_write(fhp);
1474 goto out_nfserr;
1475 }
1476 if (created)
1477 *created = true;
1478
1479 nfsd_check_ignore_resizing(iap);
1480
1481 if (nfsd_create_is_exclusive(createmode)) {
1482 /* Cram the verifier into atime/mtime */
1483 iap->ia_valid = ATTR_MTIME|ATTR_ATIME
1484 | ATTR_MTIME_SET|ATTR_ATIME_SET;
1485 /* XXX someone who knows this better please fix it for nsec */
1486 iap->ia_mtime.tv_sec = v_mtime;
1487 iap->ia_atime.tv_sec = v_atime;
1488 iap->ia_mtime.tv_nsec = 0;
1489 iap->ia_atime.tv_nsec = 0;
1490 }
1491
1492 set_attr:
1493 err = nfsd_create_setattr(rqstp, resfhp, iap);
1494
1495 /*
1496 * nfsd_create_setattr already committed the child
1497 * (and possibly also the parent).
1498 */
1499 if (!err)
1500 err = nfserrno(commit_metadata(fhp));
1501
1502 /*
1503 * Update the filehandle to get the new inode info.
1504 */
1505 if (!err)
1506 err = fh_update(resfhp);
1507
1508 out:
1509 fh_unlock(fhp);
1510 if (dchild && !IS_ERR(dchild))
1511 dput(dchild);
1512 fh_drop_write(fhp);
1513 return err;
1514
1515 out_nfserr:
1516 err = nfserrno(host_err);
1517 goto out;
1518 }
1519 #endif /* CONFIG_NFSD_V3 */
1520
1521 /*
1522 * Read a symlink. On entry, *lenp must contain the maximum path length that
1523 * fits into the buffer. On return, it contains the true length.
1524 * N.B. After this call fhp needs an fh_put
1525 */
1526 __be32
1527 nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
1528 {
1529 __be32 err;
1530 const char *link;
1531 struct path path;
1532 DEFINE_DELAYED_CALL(done);
1533 int len;
1534
1535 err = fh_verify(rqstp, fhp, S_IFLNK, NFSD_MAY_NOP);
1536 if (unlikely(err))
1537 return err;
1538
1539 path.mnt = fhp->fh_export->ex_path.mnt;
1540 path.dentry = fhp->fh_dentry;
1541
1542 if (unlikely(!d_is_symlink(path.dentry)))
1543 return nfserr_inval;
1544
1545 touch_atime(&path);
1546
1547 link = vfs_get_link(path.dentry, &done);
1548 if (IS_ERR(link))
1549 return nfserrno(PTR_ERR(link));
1550
1551 len = strlen(link);
1552 if (len < *lenp)
1553 *lenp = len;
1554 memcpy(buf, link, *lenp);
1555 do_delayed_call(&done);
1556 return 0;
1557 }
1558
1559 /*
1560 * Create a symlink and look up its inode
1561 * N.B. After this call _both_ fhp and resfhp need an fh_put
1562 */
1563 __be32
1564 nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
1565 char *fname, int flen,
1566 char *path,
1567 struct svc_fh *resfhp)
1568 {
1569 struct dentry *dentry, *dnew;
1570 __be32 err, cerr;
1571 int host_err;
1572
1573 err = nfserr_noent;
1574 if (!flen || path[0] == '\0')
1575 goto out;
1576 err = nfserr_exist;
1577 if (isdotent(fname, flen))
1578 goto out;
1579
1580 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1581 if (err)
1582 goto out;
1583
1584 host_err = fh_want_write(fhp);
1585 if (host_err)
1586 goto out_nfserr;
1587
1588 fh_lock(fhp);
1589 dentry = fhp->fh_dentry;
1590 dnew = lookup_one_len(fname, dentry, flen);
1591 host_err = PTR_ERR(dnew);
1592 if (IS_ERR(dnew))
1593 goto out_nfserr;
1594
1595 host_err = vfs_symlink(&init_user_ns, d_inode(dentry), dnew, path);
1596 err = nfserrno(host_err);
1597 fh_unlock(fhp);
1598 if (!err)
1599 err = nfserrno(commit_metadata(fhp));
1600
1601 fh_drop_write(fhp);
1602
1603 cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
1604 dput(dnew);
1605 if (err==0) err = cerr;
1606 out:
1607 return err;
1608
1609 out_nfserr:
1610 err = nfserrno(host_err);
1611 goto out;
1612 }
1613
1614 /*
1615 * Create a hardlink
1616 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1617 */
1618 __be32
1619 nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
1620 char *name, int len, struct svc_fh *tfhp)
1621 {
1622 struct dentry *ddir, *dnew, *dold;
1623 struct inode *dirp;
1624 __be32 err;
1625 int host_err;
1626
1627 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_CREATE);
1628 if (err)
1629 goto out;
1630 err = fh_verify(rqstp, tfhp, 0, NFSD_MAY_NOP);
1631 if (err)
1632 goto out;
1633 err = nfserr_isdir;
1634 if (d_is_dir(tfhp->fh_dentry))
1635 goto out;
1636 err = nfserr_perm;
1637 if (!len)
1638 goto out;
1639 err = nfserr_exist;
1640 if (isdotent(name, len))
1641 goto out;
1642
1643 host_err = fh_want_write(tfhp);
1644 if (host_err) {
1645 err = nfserrno(host_err);
1646 goto out;
1647 }
1648
1649 fh_lock_nested(ffhp, I_MUTEX_PARENT);
1650 ddir = ffhp->fh_dentry;
1651 dirp = d_inode(ddir);
1652
1653 dnew = lookup_one_len(name, ddir, len);
1654 host_err = PTR_ERR(dnew);
1655 if (IS_ERR(dnew))
1656 goto out_nfserr;
1657
1658 dold = tfhp->fh_dentry;
1659
1660 err = nfserr_noent;
1661 if (d_really_is_negative(dold))
1662 goto out_dput;
1663 host_err = vfs_link(dold, &init_user_ns, dirp, dnew, NULL);
1664 fh_unlock(ffhp);
1665 if (!host_err) {
1666 err = nfserrno(commit_metadata(ffhp));
1667 if (!err)
1668 err = nfserrno(commit_metadata(tfhp));
1669 } else {
1670 if (host_err == -EXDEV && rqstp->rq_vers == 2)
1671 err = nfserr_acces;
1672 else
1673 err = nfserrno(host_err);
1674 }
1675 out_dput:
1676 dput(dnew);
1677 out_unlock:
1678 fh_unlock(ffhp);
1679 fh_drop_write(tfhp);
1680 out:
1681 return err;
1682
1683 out_nfserr:
1684 err = nfserrno(host_err);
1685 goto out_unlock;
1686 }
1687
1688 static void
1689 nfsd_close_cached_files(struct dentry *dentry)
1690 {
1691 struct inode *inode = d_inode(dentry);
1692
1693 if (inode && S_ISREG(inode->i_mode))
1694 nfsd_file_close_inode_sync(inode);
1695 }
1696
1697 static bool
1698 nfsd_has_cached_files(struct dentry *dentry)
1699 {
1700 bool ret = false;
1701 struct inode *inode = d_inode(dentry);
1702
1703 if (inode && S_ISREG(inode->i_mode))
1704 ret = nfsd_file_is_cached(inode);
1705 return ret;
1706 }
1707
1708 /*
1709 * Rename a file
1710 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1711 */
1712 __be32
1713 nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
1714 struct svc_fh *tfhp, char *tname, int tlen)
1715 {
1716 struct dentry *fdentry, *tdentry, *odentry, *ndentry, *trap;
1717 struct inode *fdir, *tdir;
1718 __be32 err;
1719 int host_err;
1720 bool close_cached = false;
1721
1722 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_REMOVE);
1723 if (err)
1724 goto out;
1725 err = fh_verify(rqstp, tfhp, S_IFDIR, NFSD_MAY_CREATE);
1726 if (err)
1727 goto out;
1728
1729 fdentry = ffhp->fh_dentry;
1730 fdir = d_inode(fdentry);
1731
1732 tdentry = tfhp->fh_dentry;
1733 tdir = d_inode(tdentry);
1734
1735 err = nfserr_perm;
1736 if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
1737 goto out;
1738
1739 retry:
1740 host_err = fh_want_write(ffhp);
1741 if (host_err) {
1742 err = nfserrno(host_err);
1743 goto out;
1744 }
1745
1746 /* cannot use fh_lock as we need deadlock protective ordering
1747 * so do it by hand */
1748 trap = lock_rename(tdentry, fdentry);
1749 ffhp->fh_locked = tfhp->fh_locked = true;
1750 fill_pre_wcc(ffhp);
1751 fill_pre_wcc(tfhp);
1752
1753 odentry = lookup_one_len(fname, fdentry, flen);
1754 host_err = PTR_ERR(odentry);
1755 if (IS_ERR(odentry))
1756 goto out_nfserr;
1757
1758 host_err = -ENOENT;
1759 if (d_really_is_negative(odentry))
1760 goto out_dput_old;
1761 host_err = -EINVAL;
1762 if (odentry == trap)
1763 goto out_dput_old;
1764
1765 ndentry = lookup_one_len(tname, tdentry, tlen);
1766 host_err = PTR_ERR(ndentry);
1767 if (IS_ERR(ndentry))
1768 goto out_dput_old;
1769 host_err = -ENOTEMPTY;
1770 if (ndentry == trap)
1771 goto out_dput_new;
1772
1773 host_err = -EXDEV;
1774 if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt)
1775 goto out_dput_new;
1776 if (ffhp->fh_export->ex_path.dentry != tfhp->fh_export->ex_path.dentry)
1777 goto out_dput_new;
1778
1779 if ((ndentry->d_sb->s_export_op->flags & EXPORT_OP_CLOSE_BEFORE_UNLINK) &&
1780 nfsd_has_cached_files(ndentry)) {
1781 close_cached = true;
1782 goto out_dput_old;
1783 } else {
1784 struct renamedata rd = {
1785 .old_mnt_userns = &init_user_ns,
1786 .old_dir = fdir,
1787 .old_dentry = odentry,
1788 .new_mnt_userns = &init_user_ns,
1789 .new_dir = tdir,
1790 .new_dentry = ndentry,
1791 };
1792 host_err = vfs_rename(&rd);
1793 if (!host_err) {
1794 host_err = commit_metadata(tfhp);
1795 if (!host_err)
1796 host_err = commit_metadata(ffhp);
1797 }
1798 }
1799 out_dput_new:
1800 dput(ndentry);
1801 out_dput_old:
1802 dput(odentry);
1803 out_nfserr:
1804 err = nfserrno(host_err);
1805 /*
1806 * We cannot rely on fh_unlock on the two filehandles,
1807 * as that would do the wrong thing if the two directories
1808 * were the same, so again we do it by hand.
1809 */
1810 if (!close_cached) {
1811 fill_post_wcc(ffhp);
1812 fill_post_wcc(tfhp);
1813 }
1814 unlock_rename(tdentry, fdentry);
1815 ffhp->fh_locked = tfhp->fh_locked = false;
1816 fh_drop_write(ffhp);
1817
1818 /*
1819 * If the target dentry has cached open files, then we need to try to
1820 * close them prior to doing the rename. Flushing delayed fput
1821 * shouldn't be done with locks held however, so we delay it until this
1822 * point and then reattempt the whole shebang.
1823 */
1824 if (close_cached) {
1825 close_cached = false;
1826 nfsd_close_cached_files(ndentry);
1827 dput(ndentry);
1828 goto retry;
1829 }
1830 out:
1831 return err;
1832 }
1833
1834 /*
1835 * Unlink a file or directory
1836 * N.B. After this call fhp needs an fh_put
1837 */
1838 __be32
1839 nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
1840 char *fname, int flen)
1841 {
1842 struct dentry *dentry, *rdentry;
1843 struct inode *dirp;
1844 struct inode *rinode;
1845 __be32 err;
1846 int host_err;
1847
1848 err = nfserr_acces;
1849 if (!flen || isdotent(fname, flen))
1850 goto out;
1851 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_REMOVE);
1852 if (err)
1853 goto out;
1854
1855 host_err = fh_want_write(fhp);
1856 if (host_err)
1857 goto out_nfserr;
1858
1859 fh_lock_nested(fhp, I_MUTEX_PARENT);
1860 dentry = fhp->fh_dentry;
1861 dirp = d_inode(dentry);
1862
1863 rdentry = lookup_one_len(fname, dentry, flen);
1864 host_err = PTR_ERR(rdentry);
1865 if (IS_ERR(rdentry))
1866 goto out_drop_write;
1867
1868 if (d_really_is_negative(rdentry)) {
1869 dput(rdentry);
1870 host_err = -ENOENT;
1871 goto out_drop_write;
1872 }
1873 rinode = d_inode(rdentry);
1874 ihold(rinode);
1875
1876 if (!type)
1877 type = d_inode(rdentry)->i_mode & S_IFMT;
1878
1879 if (type != S_IFDIR) {
1880 if (rdentry->d_sb->s_export_op->flags & EXPORT_OP_CLOSE_BEFORE_UNLINK)
1881 nfsd_close_cached_files(rdentry);
1882 host_err = vfs_unlink(&init_user_ns, dirp, rdentry, NULL);
1883 } else {
1884 host_err = vfs_rmdir(&init_user_ns, dirp, rdentry);
1885 }
1886
1887 fh_unlock(fhp);
1888 if (!host_err)
1889 host_err = commit_metadata(fhp);
1890 dput(rdentry);
1891 iput(rinode); /* truncate the inode here */
1892
1893 out_drop_write:
1894 fh_drop_write(fhp);
1895 out_nfserr:
1896 if (host_err == -EBUSY) {
1897 /* name is mounted-on. There is no perfect
1898 * error status.
1899 */
1900 if (nfsd_v4client(rqstp))
1901 err = nfserr_file_open;
1902 else
1903 err = nfserr_acces;
1904 } else {
1905 err = nfserrno(host_err);
1906 }
1907 out:
1908 return err;
1909 }
1910
1911 /*
1912 * We do this buffering because we must not call back into the file
1913 * system's ->lookup() method from the filldir callback. That may well
1914 * deadlock a number of file systems.
1915 *
1916 * This is based heavily on the implementation of same in XFS.
1917 */
1918 struct buffered_dirent {
1919 u64 ino;
1920 loff_t offset;
1921 int namlen;
1922 unsigned int d_type;
1923 char name[];
1924 };
1925
1926 struct readdir_data {
1927 struct dir_context ctx;
1928 char *dirent;
1929 size_t used;
1930 int full;
1931 };
1932
1933 static int nfsd_buffered_filldir(struct dir_context *ctx, const char *name,
1934 int namlen, loff_t offset, u64 ino,
1935 unsigned int d_type)
1936 {
1937 struct readdir_data *buf =
1938 container_of(ctx, struct readdir_data, ctx);
1939 struct buffered_dirent *de = (void *)(buf->dirent + buf->used);
1940 unsigned int reclen;
1941
1942 reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64));
1943 if (buf->used + reclen > PAGE_SIZE) {
1944 buf->full = 1;
1945 return -EINVAL;
1946 }
1947
1948 de->namlen = namlen;
1949 de->offset = offset;
1950 de->ino = ino;
1951 de->d_type = d_type;
1952 memcpy(de->name, name, namlen);
1953 buf->used += reclen;
1954
1955 return 0;
1956 }
1957
1958 static __be32 nfsd_buffered_readdir(struct file *file, struct svc_fh *fhp,
1959 nfsd_filldir_t func, struct readdir_cd *cdp,
1960 loff_t *offsetp)
1961 {
1962 struct buffered_dirent *de;
1963 int host_err;
1964 int size;
1965 loff_t offset;
1966 struct readdir_data buf = {
1967 .ctx.actor = nfsd_buffered_filldir,
1968 .dirent = (void *)__get_free_page(GFP_KERNEL)
1969 };
1970
1971 if (!buf.dirent)
1972 return nfserrno(-ENOMEM);
1973
1974 offset = *offsetp;
1975
1976 while (1) {
1977 unsigned int reclen;
1978
1979 cdp->err = nfserr_eof; /* will be cleared on successful read */
1980 buf.used = 0;
1981 buf.full = 0;
1982
1983 host_err = iterate_dir(file, &buf.ctx);
1984 if (buf.full)
1985 host_err = 0;
1986
1987 if (host_err < 0)
1988 break;
1989
1990 size = buf.used;
1991
1992 if (!size)
1993 break;
1994
1995 de = (struct buffered_dirent *)buf.dirent;
1996 while (size > 0) {
1997 offset = de->offset;
1998
1999 if (func(cdp, de->name, de->namlen, de->offset,
2000 de->ino, de->d_type))
2001 break;
2002
2003 if (cdp->err != nfs_ok)
2004 break;
2005
2006 trace_nfsd_dirent(fhp, de->ino, de->name, de->namlen);
2007
2008 reclen = ALIGN(sizeof(*de) + de->namlen,
2009 sizeof(u64));
2010 size -= reclen;
2011 de = (struct buffered_dirent *)((char *)de + reclen);
2012 }
2013 if (size > 0) /* We bailed out early */
2014 break;
2015
2016 offset = vfs_llseek(file, 0, SEEK_CUR);
2017 }
2018
2019 free_page((unsigned long)(buf.dirent));
2020
2021 if (host_err)
2022 return nfserrno(host_err);
2023
2024 *offsetp = offset;
2025 return cdp->err;
2026 }
2027
2028 /*
2029 * Read entries from a directory.
2030 * The NFSv3/4 verifier we ignore for now.
2031 */
2032 __be32
2033 nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp,
2034 struct readdir_cd *cdp, nfsd_filldir_t func)
2035 {
2036 __be32 err;
2037 struct file *file;
2038 loff_t offset = *offsetp;
2039 int may_flags = NFSD_MAY_READ;
2040
2041 /* NFSv2 only supports 32 bit cookies */
2042 if (rqstp->rq_vers > 2)
2043 may_flags |= NFSD_MAY_64BIT_COOKIE;
2044
2045 err = nfsd_open(rqstp, fhp, S_IFDIR, may_flags, &file);
2046 if (err)
2047 goto out;
2048
2049 offset = vfs_llseek(file, offset, SEEK_SET);
2050 if (offset < 0) {
2051 err = nfserrno((int)offset);
2052 goto out_close;
2053 }
2054
2055 err = nfsd_buffered_readdir(file, fhp, func, cdp, offsetp);
2056
2057 if (err == nfserr_eof || err == nfserr_toosmall)
2058 err = nfs_ok; /* can still be found in ->err */
2059 out_close:
2060 fput(file);
2061 out:
2062 return err;
2063 }
2064
2065 /*
2066 * Get file system stats
2067 * N.B. After this call fhp needs an fh_put
2068 */
2069 __be32
2070 nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat, int access)
2071 {
2072 __be32 err;
2073
2074 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP | access);
2075 if (!err) {
2076 struct path path = {
2077 .mnt = fhp->fh_export->ex_path.mnt,
2078 .dentry = fhp->fh_dentry,
2079 };
2080 if (vfs_statfs(&path, stat))
2081 err = nfserr_io;
2082 }
2083 return err;
2084 }
2085
2086 static int exp_rdonly(struct svc_rqst *rqstp, struct svc_export *exp)
2087 {
2088 return nfsexp_flags(rqstp, exp) & NFSEXP_READONLY;
2089 }
2090
2091 #ifdef CONFIG_NFSD_V4
2092 /*
2093 * Helper function to translate error numbers. In the case of xattr operations,
2094 * some error codes need to be translated outside of the standard translations.
2095 *
2096 * ENODATA needs to be translated to nfserr_noxattr.
2097 * E2BIG to nfserr_xattr2big.
2098 *
2099 * Additionally, vfs_listxattr can return -ERANGE. This means that the
2100 * file has too many extended attributes to retrieve inside an
2101 * XATTR_LIST_MAX sized buffer. This is a bug in the xattr implementation:
2102 * filesystems will allow the adding of extended attributes until they hit
2103 * their own internal limit. This limit may be larger than XATTR_LIST_MAX.
2104 * So, at that point, the attributes are present and valid, but can't
2105 * be retrieved using listxattr, since the upper level xattr code enforces
2106 * the XATTR_LIST_MAX limit.
2107 *
2108 * This bug means that we need to deal with listxattr returning -ERANGE. The
2109 * best mapping is to return TOOSMALL.
2110 */
2111 static __be32
2112 nfsd_xattr_errno(int err)
2113 {
2114 switch (err) {
2115 case -ENODATA:
2116 return nfserr_noxattr;
2117 case -E2BIG:
2118 return nfserr_xattr2big;
2119 case -ERANGE:
2120 return nfserr_toosmall;
2121 }
2122 return nfserrno(err);
2123 }
2124
2125 /*
2126 * Retrieve the specified user extended attribute. To avoid always
2127 * having to allocate the maximum size (since we are not getting
2128 * a maximum size from the RPC), do a probe + alloc. Hold a reader
2129 * lock on i_rwsem to prevent the extended attribute from changing
2130 * size while we're doing this.
2131 */
2132 __be32
2133 nfsd_getxattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char *name,
2134 void **bufp, int *lenp)
2135 {
2136 ssize_t len;
2137 __be32 err;
2138 char *buf;
2139 struct inode *inode;
2140 struct dentry *dentry;
2141
2142 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_READ);
2143 if (err)
2144 return err;
2145
2146 err = nfs_ok;
2147 dentry = fhp->fh_dentry;
2148 inode = d_inode(dentry);
2149
2150 inode_lock_shared(inode);
2151
2152 len = vfs_getxattr(&init_user_ns, dentry, name, NULL, 0);
2153
2154 /*
2155 * Zero-length attribute, just return.
2156 */
2157 if (len == 0) {
2158 *bufp = NULL;
2159 *lenp = 0;
2160 goto out;
2161 }
2162
2163 if (len < 0) {
2164 err = nfsd_xattr_errno(len);
2165 goto out;
2166 }
2167
2168 if (len > *lenp) {
2169 err = nfserr_toosmall;
2170 goto out;
2171 }
2172
2173 buf = kvmalloc(len, GFP_KERNEL | GFP_NOFS);
2174 if (buf == NULL) {
2175 err = nfserr_jukebox;
2176 goto out;
2177 }
2178
2179 len = vfs_getxattr(&init_user_ns, dentry, name, buf, len);
2180 if (len <= 0) {
2181 kvfree(buf);
2182 buf = NULL;
2183 err = nfsd_xattr_errno(len);
2184 }
2185
2186 *lenp = len;
2187 *bufp = buf;
2188
2189 out:
2190 inode_unlock_shared(inode);
2191
2192 return err;
2193 }
2194
2195 /*
2196 * Retrieve the xattr names. Since we can't know how many are
2197 * user extended attributes, we must get all attributes here,
2198 * and have the XDR encode filter out the "user." ones.
2199 *
2200 * While this could always just allocate an XATTR_LIST_MAX
2201 * buffer, that's a waste, so do a probe + allocate. To
2202 * avoid any changes between the probe and allocate, wrap
2203 * this in inode_lock.
2204 */
2205 __be32
2206 nfsd_listxattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char **bufp,
2207 int *lenp)
2208 {
2209 ssize_t len;
2210 __be32 err;
2211 char *buf;
2212 struct inode *inode;
2213 struct dentry *dentry;
2214
2215 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_READ);
2216 if (err)
2217 return err;
2218
2219 dentry = fhp->fh_dentry;
2220 inode = d_inode(dentry);
2221 *lenp = 0;
2222
2223 inode_lock_shared(inode);
2224
2225 len = vfs_listxattr(dentry, NULL, 0);
2226 if (len <= 0) {
2227 err = nfsd_xattr_errno(len);
2228 goto out;
2229 }
2230
2231 if (len > XATTR_LIST_MAX) {
2232 err = nfserr_xattr2big;
2233 goto out;
2234 }
2235
2236 /*
2237 * We're holding i_rwsem - use GFP_NOFS.
2238 */
2239 buf = kvmalloc(len, GFP_KERNEL | GFP_NOFS);
2240 if (buf == NULL) {
2241 err = nfserr_jukebox;
2242 goto out;
2243 }
2244
2245 len = vfs_listxattr(dentry, buf, len);
2246 if (len <= 0) {
2247 kvfree(buf);
2248 err = nfsd_xattr_errno(len);
2249 goto out;
2250 }
2251
2252 *lenp = len;
2253 *bufp = buf;
2254
2255 err = nfs_ok;
2256 out:
2257 inode_unlock_shared(inode);
2258
2259 return err;
2260 }
2261
2262 /*
2263 * Removexattr and setxattr need to call fh_lock to both lock the inode
2264 * and set the change attribute. Since the top-level vfs_removexattr
2265 * and vfs_setxattr calls already do their own inode_lock calls, call
2266 * the _locked variant. Pass in a NULL pointer for delegated_inode,
2267 * and let the client deal with NFS4ERR_DELAY (same as with e.g.
2268 * setattr and remove).
2269 */
2270 __be32
2271 nfsd_removexattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char *name)
2272 {
2273 __be32 err;
2274 int ret;
2275
2276 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_WRITE);
2277 if (err)
2278 return err;
2279
2280 ret = fh_want_write(fhp);
2281 if (ret)
2282 return nfserrno(ret);
2283
2284 fh_lock(fhp);
2285
2286 ret = __vfs_removexattr_locked(&init_user_ns, fhp->fh_dentry,
2287 name, NULL);
2288
2289 fh_unlock(fhp);
2290 fh_drop_write(fhp);
2291
2292 return nfsd_xattr_errno(ret);
2293 }
2294
2295 __be32
2296 nfsd_setxattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char *name,
2297 void *buf, u32 len, u32 flags)
2298 {
2299 __be32 err;
2300 int ret;
2301
2302 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_WRITE);
2303 if (err)
2304 return err;
2305
2306 ret = fh_want_write(fhp);
2307 if (ret)
2308 return nfserrno(ret);
2309 fh_lock(fhp);
2310
2311 ret = __vfs_setxattr_locked(&init_user_ns, fhp->fh_dentry, name, buf,
2312 len, flags, NULL);
2313
2314 fh_unlock(fhp);
2315 fh_drop_write(fhp);
2316
2317 return nfsd_xattr_errno(ret);
2318 }
2319 #endif
2320
2321 /*
2322 * Check for a user's access permissions to this inode.
2323 */
2324 __be32
2325 nfsd_permission(struct svc_rqst *rqstp, struct svc_export *exp,
2326 struct dentry *dentry, int acc)
2327 {
2328 struct inode *inode = d_inode(dentry);
2329 int err;
2330
2331 if ((acc & NFSD_MAY_MASK) == NFSD_MAY_NOP)
2332 return 0;
2333 #if 0
2334 dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
2335 acc,
2336 (acc & NFSD_MAY_READ)? " read" : "",
2337 (acc & NFSD_MAY_WRITE)? " write" : "",
2338 (acc & NFSD_MAY_EXEC)? " exec" : "",
2339 (acc & NFSD_MAY_SATTR)? " sattr" : "",
2340 (acc & NFSD_MAY_TRUNC)? " trunc" : "",
2341 (acc & NFSD_MAY_LOCK)? " lock" : "",
2342 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "",
2343 inode->i_mode,
2344 IS_IMMUTABLE(inode)? " immut" : "",
2345 IS_APPEND(inode)? " append" : "",
2346 __mnt_is_readonly(exp->ex_path.mnt)? " ro" : "");
2347 dprintk(" owner %d/%d user %d/%d\n",
2348 inode->i_uid, inode->i_gid, current_fsuid(), current_fsgid());
2349 #endif
2350
2351 /* Normally we reject any write/sattr etc access on a read-only file
2352 * system. But if it is IRIX doing check on write-access for a
2353 * device special file, we ignore rofs.
2354 */
2355 if (!(acc & NFSD_MAY_LOCAL_ACCESS))
2356 if (acc & (NFSD_MAY_WRITE | NFSD_MAY_SATTR | NFSD_MAY_TRUNC)) {
2357 if (exp_rdonly(rqstp, exp) ||
2358 __mnt_is_readonly(exp->ex_path.mnt))
2359 return nfserr_rofs;
2360 if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode))
2361 return nfserr_perm;
2362 }
2363 if ((acc & NFSD_MAY_TRUNC) && IS_APPEND(inode))
2364 return nfserr_perm;
2365
2366 if (acc & NFSD_MAY_LOCK) {
2367 /* If we cannot rely on authentication in NLM requests,
2368 * just allow locks, otherwise require read permission, or
2369 * ownership
2370 */
2371 if (exp->ex_flags & NFSEXP_NOAUTHNLM)
2372 return 0;
2373 else
2374 acc = NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE;
2375 }
2376 /*
2377 * The file owner always gets access permission for accesses that
2378 * would normally be checked at open time. This is to make
2379 * file access work even when the client has done a fchmod(fd, 0).
2380 *
2381 * However, `cp foo bar' should fail nevertheless when bar is
2382 * readonly. A sensible way to do this might be to reject all
2383 * attempts to truncate a read-only file, because a creat() call
2384 * always implies file truncation.
2385 * ... but this isn't really fair. A process may reasonably call
2386 * ftruncate on an open file descriptor on a file with perm 000.
2387 * We must trust the client to do permission checking - using "ACCESS"
2388 * with NFSv3.
2389 */
2390 if ((acc & NFSD_MAY_OWNER_OVERRIDE) &&
2391 uid_eq(inode->i_uid, current_fsuid()))
2392 return 0;
2393
2394 /* This assumes NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
2395 err = inode_permission(&init_user_ns, inode,
2396 acc & (MAY_READ | MAY_WRITE | MAY_EXEC));
2397
2398 /* Allow read access to binaries even when mode 111 */
2399 if (err == -EACCES && S_ISREG(inode->i_mode) &&
2400 (acc == (NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE) ||
2401 acc == (NFSD_MAY_READ | NFSD_MAY_READ_IF_EXEC)))
2402 err = inode_permission(&init_user_ns, inode, MAY_EXEC);
2403
2404 return err? nfserrno(err) : 0;
2405 }