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