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