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