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