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