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