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