[PATCH] NFSD: Add server support for NFSv3 ACLs.
[pandora-kernel.git] / 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/config.h>
20 #include <linux/string.h>
21 #include <linux/time.h>
22 #include <linux/errno.h>
23 #include <linux/fs.h>
24 #include <linux/file.h>
25 #include <linux/mount.h>
26 #include <linux/major.h>
27 #include <linux/ext2_fs.h>
28 #include <linux/proc_fs.h>
29 #include <linux/stat.h>
30 #include <linux/fcntl.h>
31 #include <linux/net.h>
32 #include <linux/unistd.h>
33 #include <linux/slab.h>
34 #include <linux/pagemap.h>
35 #include <linux/in.h>
36 #include <linux/module.h>
37 #include <linux/namei.h>
38 #include <linux/vfs.h>
39 #include <linux/delay.h>
40 #include <linux/sunrpc/svc.h>
41 #include <linux/nfsd/nfsd.h>
42 #ifdef CONFIG_NFSD_V3
43 #include <linux/nfs3.h>
44 #include <linux/nfsd/xdr3.h>
45 #endif /* CONFIG_NFSD_V3 */
46 #include <linux/nfsd/nfsfh.h>
47 #include <linux/quotaops.h>
48 #include <linux/dnotify.h>
49 #include <linux/xattr_acl.h>
50 #include <linux/posix_acl.h>
51 #ifdef CONFIG_NFSD_V4
52 #include <linux/posix_acl_xattr.h>
53 #include <linux/xattr_acl.h>
54 #include <linux/xattr.h>
55 #include <linux/nfs4.h>
56 #include <linux/nfs4_acl.h>
57 #include <linux/nfsd_idmap.h>
58 #include <linux/security.h>
59 #endif /* CONFIG_NFSD_V4 */
60
61 #include <asm/uaccess.h>
62
63 #define NFSDDBG_FACILITY                NFSDDBG_FILEOP
64 #define NFSD_PARANOIA
65
66
67 /* We must ignore files (but only files) which might have mandatory
68  * locks on them because there is no way to know if the accesser has
69  * the lock.
70  */
71 #define IS_ISMNDLK(i)   (S_ISREG((i)->i_mode) && MANDATORY_LOCK(i))
72
73 /*
74  * This is a cache of readahead params that help us choose the proper
75  * readahead strategy. Initially, we set all readahead parameters to 0
76  * and let the VFS handle things.
77  * If you increase the number of cached files very much, you'll need to
78  * add a hash table here.
79  */
80 struct raparms {
81         struct raparms          *p_next;
82         unsigned int            p_count;
83         ino_t                   p_ino;
84         dev_t                   p_dev;
85         int                     p_set;
86         struct file_ra_state    p_ra;
87 };
88
89 static struct raparms *         raparml;
90 static struct raparms *         raparm_cache;
91
92 /* 
93  * Called from nfsd_lookup and encode_dirent. Check if we have crossed 
94  * a mount point.
95  * Returns -EAGAIN leaving *dpp and *expp unchanged, 
96  *  or nfs_ok having possibly changed *dpp and *expp
97  */
98 int
99 nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp, 
100                         struct svc_export **expp)
101 {
102         struct svc_export *exp = *expp, *exp2 = NULL;
103         struct dentry *dentry = *dpp;
104         struct vfsmount *mnt = mntget(exp->ex_mnt);
105         struct dentry *mounts = dget(dentry);
106         int err = nfs_ok;
107
108         while (follow_down(&mnt,&mounts)&&d_mountpoint(mounts));
109
110         exp2 = exp_get_by_name(exp->ex_client, mnt, mounts, &rqstp->rq_chandle);
111         if (IS_ERR(exp2)) {
112                 err = PTR_ERR(exp2);
113                 dput(mounts);
114                 mntput(mnt);
115                 goto out;
116         }
117         if (exp2 && ((exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2))) {
118                 /* successfully crossed mount point */
119                 exp_put(exp);
120                 *expp = exp2;
121                 dput(dentry);
122                 *dpp = mounts;
123         } else {
124                 if (exp2) exp_put(exp2);
125                 dput(mounts);
126         }
127         mntput(mnt);
128 out:
129         return err;
130 }
131
132 /*
133  * Look up one component of a pathname.
134  * N.B. After this call _both_ fhp and resfh need an fh_put
135  *
136  * If the lookup would cross a mountpoint, and the mounted filesystem
137  * is exported to the client with NFSEXP_NOHIDE, then the lookup is
138  * accepted as it stands and the mounted directory is
139  * returned. Otherwise the covered directory is returned.
140  * NOTE: this mountpoint crossing is not supported properly by all
141  *   clients and is explicitly disallowed for NFSv3
142  *      NeilBrown <neilb@cse.unsw.edu.au>
143  */
144 int
145 nfsd_lookup(struct svc_rqst *rqstp, struct svc_fh *fhp, const char *name,
146                                         int len, struct svc_fh *resfh)
147 {
148         struct svc_export       *exp;
149         struct dentry           *dparent;
150         struct dentry           *dentry;
151         int                     err;
152
153         dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp), len,name);
154
155         /* Obtain dentry and export. */
156         err = fh_verify(rqstp, fhp, S_IFDIR, MAY_EXEC);
157         if (err)
158                 return err;
159
160         dparent = fhp->fh_dentry;
161         exp  = fhp->fh_export;
162         exp_get(exp);
163
164         err = nfserr_acces;
165
166         /* Lookup the name, but don't follow links */
167         if (isdotent(name, len)) {
168                 if (len==1)
169                         dentry = dget(dparent);
170                 else if (dparent != exp->ex_dentry) {
171                         dentry = dget_parent(dparent);
172                 } else  if (!EX_NOHIDE(exp))
173                         dentry = dget(dparent); /* .. == . just like at / */
174                 else {
175                         /* checking mountpoint crossing is very different when stepping up */
176                         struct svc_export *exp2 = NULL;
177                         struct dentry *dp;
178                         struct vfsmount *mnt = mntget(exp->ex_mnt);
179                         dentry = dget(dparent);
180                         while(dentry == mnt->mnt_root && follow_up(&mnt, &dentry))
181                                 ;
182                         dp = dget_parent(dentry);
183                         dput(dentry);
184                         dentry = dp;
185
186                         exp2 = exp_parent(exp->ex_client, mnt, dentry,
187                                           &rqstp->rq_chandle);
188                         if (IS_ERR(exp2)) {
189                                 err = PTR_ERR(exp2);
190                                 dput(dentry);
191                                 mntput(mnt);
192                                 goto out_nfserr;
193                         }
194                         if (!exp2) {
195                                 dput(dentry);
196                                 dentry = dget(dparent);
197                         } else {
198                                 exp_put(exp);
199                                 exp = exp2;
200                         }
201                         mntput(mnt);
202                 }
203         } else {
204                 fh_lock(fhp);
205                 dentry = lookup_one_len(name, dparent, len);
206                 err = PTR_ERR(dentry);
207                 if (IS_ERR(dentry))
208                         goto out_nfserr;
209                 /*
210                  * check if we have crossed a mount point ...
211                  */
212                 if (d_mountpoint(dentry)) {
213                         if ((err = nfsd_cross_mnt(rqstp, &dentry, &exp))) {
214                                 dput(dentry);
215                                 goto out_nfserr;
216                         }
217                 }
218         }
219         /*
220          * Note: we compose the file handle now, but as the
221          * dentry may be negative, it may need to be updated.
222          */
223         err = fh_compose(resfh, exp, dentry, fhp);
224         if (!err && !dentry->d_inode)
225                 err = nfserr_noent;
226         dput(dentry);
227 out:
228         exp_put(exp);
229         return err;
230
231 out_nfserr:
232         err = nfserrno(err);
233         goto out;
234 }
235
236 /*
237  * Set various file attributes.
238  * N.B. After this call fhp needs an fh_put
239  */
240 int
241 nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, struct iattr *iap,
242              int check_guard, time_t guardtime)
243 {
244         struct dentry   *dentry;
245         struct inode    *inode;
246         int             accmode = MAY_SATTR;
247         int             ftype = 0;
248         int             imode;
249         int             err;
250         int             size_change = 0;
251
252         if (iap->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_SIZE))
253                 accmode |= MAY_WRITE|MAY_OWNER_OVERRIDE;
254         if (iap->ia_valid & ATTR_SIZE)
255                 ftype = S_IFREG;
256
257         /* Get inode */
258         err = fh_verify(rqstp, fhp, ftype, accmode);
259         if (err || !iap->ia_valid)
260                 goto out;
261
262         dentry = fhp->fh_dentry;
263         inode = dentry->d_inode;
264
265         /* NFSv2 does not differentiate between "set-[ac]time-to-now"
266          * which only requires access, and "set-[ac]time-to-X" which
267          * requires ownership.
268          * So if it looks like it might be "set both to the same time which
269          * is close to now", and if inode_change_ok fails, then we
270          * convert to "set to now" instead of "set to explicit time"
271          *
272          * We only call inode_change_ok as the last test as technically
273          * it is not an interface that we should be using.  It is only
274          * valid if the filesystem does not define it's own i_op->setattr.
275          */
276 #define BOTH_TIME_SET (ATTR_ATIME_SET | ATTR_MTIME_SET)
277 #define MAX_TOUCH_TIME_ERROR (30*60)
278         if ((iap->ia_valid & BOTH_TIME_SET) == BOTH_TIME_SET
279             && iap->ia_mtime.tv_sec == iap->ia_atime.tv_sec
280             ) {
281             /* Looks probable.  Now just make sure time is in the right ballpark.
282              * Solaris, at least, doesn't seem to care what the time request is.
283              * We require it be within 30 minutes of now.
284              */
285             time_t delta = iap->ia_atime.tv_sec - get_seconds();
286             if (delta<0) delta = -delta;
287             if (delta < MAX_TOUCH_TIME_ERROR &&
288                 inode_change_ok(inode, iap) != 0) {
289                 /* turn off ATTR_[AM]TIME_SET but leave ATTR_[AM]TIME
290                  * this will cause notify_change to set these times to "now"
291                  */
292                 iap->ia_valid &= ~BOTH_TIME_SET;
293             }
294         }
295             
296         /* The size case is special. It changes the file as well as the attributes.  */
297         if (iap->ia_valid & ATTR_SIZE) {
298                 if (iap->ia_size < inode->i_size) {
299                         err = nfsd_permission(fhp->fh_export, dentry, MAY_TRUNC|MAY_OWNER_OVERRIDE);
300                         if (err)
301                                 goto out;
302                 }
303
304                 /*
305                  * If we are changing the size of the file, then
306                  * we need to break all leases.
307                  */
308                 err = break_lease(inode, FMODE_WRITE | O_NONBLOCK);
309                 if (err == -EWOULDBLOCK)
310                         err = -ETIMEDOUT;
311                 if (err) /* ENOMEM or EWOULDBLOCK */
312                         goto out_nfserr;
313
314                 err = get_write_access(inode);
315                 if (err)
316                         goto out_nfserr;
317
318                 size_change = 1;
319                 err = locks_verify_truncate(inode, NULL, iap->ia_size);
320                 if (err) {
321                         put_write_access(inode);
322                         goto out_nfserr;
323                 }
324                 DQUOT_INIT(inode);
325         }
326
327         imode = inode->i_mode;
328         if (iap->ia_valid & ATTR_MODE) {
329                 iap->ia_mode &= S_IALLUGO;
330                 imode = iap->ia_mode |= (imode & ~S_IALLUGO);
331         }
332
333         /* Revoke setuid/setgid bit on chown/chgrp */
334         if ((iap->ia_valid & ATTR_UID) && iap->ia_uid != inode->i_uid)
335                 iap->ia_valid |= ATTR_KILL_SUID;
336         if ((iap->ia_valid & ATTR_GID) && iap->ia_gid != inode->i_gid)
337                 iap->ia_valid |= ATTR_KILL_SGID;
338
339         /* Change the attributes. */
340
341         iap->ia_valid |= ATTR_CTIME;
342
343         err = nfserr_notsync;
344         if (!check_guard || guardtime == inode->i_ctime.tv_sec) {
345                 fh_lock(fhp);
346                 err = notify_change(dentry, iap);
347                 err = nfserrno(err);
348                 fh_unlock(fhp);
349         }
350         if (size_change)
351                 put_write_access(inode);
352         if (!err)
353                 if (EX_ISSYNC(fhp->fh_export))
354                         write_inode_now(inode, 1);
355 out:
356         return err;
357
358 out_nfserr:
359         err = nfserrno(err);
360         goto out;
361 }
362
363 #if defined(CONFIG_NFSD_V4)
364
365 static int
366 set_nfsv4_acl_one(struct dentry *dentry, struct posix_acl *pacl, char *key)
367 {
368         int len;
369         size_t buflen;
370         char *buf = NULL;
371         int error = 0;
372         struct inode *inode = dentry->d_inode;
373
374         buflen = posix_acl_xattr_size(pacl->a_count);
375         buf = kmalloc(buflen, GFP_KERNEL);
376         error = -ENOMEM;
377         if (buf == NULL)
378                 goto out;
379
380         len = posix_acl_to_xattr(pacl, buf, buflen);
381         if (len < 0) {
382                 error = len;
383                 goto out;
384         }
385
386         error = -EOPNOTSUPP;
387         if (inode->i_op && inode->i_op->setxattr) {
388                 down(&inode->i_sem);
389                 security_inode_setxattr(dentry, key, buf, len, 0);
390                 error = inode->i_op->setxattr(dentry, key, buf, len, 0);
391                 if (!error)
392                         security_inode_post_setxattr(dentry, key, buf, len, 0);
393                 up(&inode->i_sem);
394         }
395 out:
396         kfree(buf);
397         return error;
398 }
399
400 int
401 nfsd4_set_nfs4_acl(struct svc_rqst *rqstp, struct svc_fh *fhp,
402     struct nfs4_acl *acl)
403 {
404         int error;
405         struct dentry *dentry;
406         struct inode *inode;
407         struct posix_acl *pacl = NULL, *dpacl = NULL;
408         unsigned int flags = 0;
409
410         /* Get inode */
411         error = fh_verify(rqstp, fhp, 0 /* S_IFREG */, MAY_SATTR);
412         if (error)
413                 goto out;
414
415         dentry = fhp->fh_dentry;
416         inode = dentry->d_inode;
417         if (S_ISDIR(inode->i_mode))
418                 flags = NFS4_ACL_DIR;
419
420         error = nfs4_acl_nfsv4_to_posix(acl, &pacl, &dpacl, flags);
421         if (error == -EINVAL) {
422                 error = nfserr_attrnotsupp;
423                 goto out;
424         } else if (error < 0)
425                 goto out_nfserr;
426
427         if (pacl) {
428                 error = set_nfsv4_acl_one(dentry, pacl, XATTR_NAME_ACL_ACCESS);
429                 if (error < 0)
430                         goto out_nfserr;
431         }
432
433         if (dpacl) {
434                 error = set_nfsv4_acl_one(dentry, dpacl, XATTR_NAME_ACL_DEFAULT);
435                 if (error < 0)
436                         goto out_nfserr;
437         }
438
439         error = nfs_ok;
440
441 out:
442         posix_acl_release(pacl);
443         posix_acl_release(dpacl);
444         return (error);
445 out_nfserr:
446         error = nfserrno(error);
447         goto out;
448 }
449
450 static struct posix_acl *
451 _get_posix_acl(struct dentry *dentry, char *key)
452 {
453         struct inode *inode = dentry->d_inode;
454         char *buf = NULL;
455         int buflen, error = 0;
456         struct posix_acl *pacl = NULL;
457
458         error = -EOPNOTSUPP;
459         if (inode->i_op == NULL)
460                 goto out_err;
461         if (inode->i_op->getxattr == NULL)
462                 goto out_err;
463
464         error = security_inode_getxattr(dentry, key);
465         if (error)
466                 goto out_err;
467
468         buflen = inode->i_op->getxattr(dentry, key, NULL, 0);
469         if (buflen <= 0) {
470                 error = buflen < 0 ? buflen : -ENODATA;
471                 goto out_err;
472         }
473
474         buf = kmalloc(buflen, GFP_KERNEL);
475         if (buf == NULL) {
476                 error = -ENOMEM;
477                 goto out_err;
478         }
479
480         error = inode->i_op->getxattr(dentry, key, buf, buflen);
481         if (error < 0)
482                 goto out_err;
483
484         pacl = posix_acl_from_xattr(buf, buflen);
485  out:
486         kfree(buf);
487         return pacl;
488  out_err:
489         pacl = ERR_PTR(error);
490         goto out;
491 }
492
493 int
494 nfsd4_get_nfs4_acl(struct svc_rqst *rqstp, struct dentry *dentry, struct nfs4_acl **acl)
495 {
496         struct inode *inode = dentry->d_inode;
497         int error = 0;
498         struct posix_acl *pacl = NULL, *dpacl = NULL;
499         unsigned int flags = 0;
500
501         pacl = _get_posix_acl(dentry, XATTR_NAME_ACL_ACCESS);
502         if (IS_ERR(pacl) && PTR_ERR(pacl) == -ENODATA)
503                 pacl = posix_acl_from_mode(inode->i_mode, GFP_KERNEL);
504         if (IS_ERR(pacl)) {
505                 error = PTR_ERR(pacl);
506                 pacl = NULL;
507                 goto out;
508         }
509
510         if (S_ISDIR(inode->i_mode)) {
511                 dpacl = _get_posix_acl(dentry, XATTR_NAME_ACL_DEFAULT);
512                 if (IS_ERR(dpacl) && PTR_ERR(dpacl) == -ENODATA)
513                         dpacl = NULL;
514                 else if (IS_ERR(dpacl)) {
515                         error = PTR_ERR(dpacl);
516                         dpacl = NULL;
517                         goto out;
518                 }
519                 flags = NFS4_ACL_DIR;
520         }
521
522         *acl = nfs4_acl_posix_to_nfsv4(pacl, dpacl, flags);
523         if (IS_ERR(*acl)) {
524                 error = PTR_ERR(*acl);
525                 *acl = NULL;
526         }
527  out:
528         posix_acl_release(pacl);
529         posix_acl_release(dpacl);
530         return error;
531 }
532
533 #endif /* defined(CONFIG_NFS_V4) */
534
535 #ifdef CONFIG_NFSD_V3
536 /*
537  * Check server access rights to a file system object
538  */
539 struct accessmap {
540         u32             access;
541         int             how;
542 };
543 static struct accessmap nfs3_regaccess[] = {
544     {   NFS3_ACCESS_READ,       MAY_READ                        },
545     {   NFS3_ACCESS_EXECUTE,    MAY_EXEC                        },
546     {   NFS3_ACCESS_MODIFY,     MAY_WRITE|MAY_TRUNC             },
547     {   NFS3_ACCESS_EXTEND,     MAY_WRITE                       },
548
549     {   0,                      0                               }
550 };
551
552 static struct accessmap nfs3_diraccess[] = {
553     {   NFS3_ACCESS_READ,       MAY_READ                        },
554     {   NFS3_ACCESS_LOOKUP,     MAY_EXEC                        },
555     {   NFS3_ACCESS_MODIFY,     MAY_EXEC|MAY_WRITE|MAY_TRUNC    },
556     {   NFS3_ACCESS_EXTEND,     MAY_EXEC|MAY_WRITE              },
557     {   NFS3_ACCESS_DELETE,     MAY_REMOVE                      },
558
559     {   0,                      0                               }
560 };
561
562 static struct accessmap nfs3_anyaccess[] = {
563         /* Some clients - Solaris 2.6 at least, make an access call
564          * to the server to check for access for things like /dev/null
565          * (which really, the server doesn't care about).  So
566          * We provide simple access checking for them, looking
567          * mainly at mode bits, and we make sure to ignore read-only
568          * filesystem checks
569          */
570     {   NFS3_ACCESS_READ,       MAY_READ                        },
571     {   NFS3_ACCESS_EXECUTE,    MAY_EXEC                        },
572     {   NFS3_ACCESS_MODIFY,     MAY_WRITE|MAY_LOCAL_ACCESS      },
573     {   NFS3_ACCESS_EXTEND,     MAY_WRITE|MAY_LOCAL_ACCESS      },
574
575     {   0,                      0                               }
576 };
577
578 int
579 nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported)
580 {
581         struct accessmap        *map;
582         struct svc_export       *export;
583         struct dentry           *dentry;
584         u32                     query, result = 0, sresult = 0;
585         unsigned int            error;
586
587         error = fh_verify(rqstp, fhp, 0, MAY_NOP);
588         if (error)
589                 goto out;
590
591         export = fhp->fh_export;
592         dentry = fhp->fh_dentry;
593
594         if (S_ISREG(dentry->d_inode->i_mode))
595                 map = nfs3_regaccess;
596         else if (S_ISDIR(dentry->d_inode->i_mode))
597                 map = nfs3_diraccess;
598         else
599                 map = nfs3_anyaccess;
600
601
602         query = *access;
603         for  (; map->access; map++) {
604                 if (map->access & query) {
605                         unsigned int err2;
606
607                         sresult |= map->access;
608
609                         err2 = nfsd_permission(export, dentry, map->how);
610                         switch (err2) {
611                         case nfs_ok:
612                                 result |= map->access;
613                                 break;
614                                 
615                         /* the following error codes just mean the access was not allowed,
616                          * rather than an error occurred */
617                         case nfserr_rofs:
618                         case nfserr_acces:
619                         case nfserr_perm:
620                                 /* simply don't "or" in the access bit. */
621                                 break;
622                         default:
623                                 error = err2;
624                                 goto out;
625                         }
626                 }
627         }
628         *access = result;
629         if (supported)
630                 *supported = sresult;
631
632  out:
633         return error;
634 }
635 #endif /* CONFIG_NFSD_V3 */
636
637
638
639 /*
640  * Open an existing file or directory.
641  * The access argument indicates the type of open (read/write/lock)
642  * N.B. After this call fhp needs an fh_put
643  */
644 int
645 nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
646                         int access, struct file **filp)
647 {
648         struct dentry   *dentry;
649         struct inode    *inode;
650         int             flags = O_RDONLY|O_LARGEFILE, err;
651
652         /*
653          * If we get here, then the client has already done an "open",
654          * and (hopefully) checked permission - so allow OWNER_OVERRIDE
655          * in case a chmod has now revoked permission.
656          */
657         err = fh_verify(rqstp, fhp, type, access | MAY_OWNER_OVERRIDE);
658         if (err)
659                 goto out;
660
661         dentry = fhp->fh_dentry;
662         inode = dentry->d_inode;
663
664         /* Disallow write access to files with the append-only bit set
665          * or any access when mandatory locking enabled
666          */
667         err = nfserr_perm;
668         if (IS_APPEND(inode) && (access & MAY_WRITE))
669                 goto out;
670         if (IS_ISMNDLK(inode))
671                 goto out;
672
673         if (!inode->i_fop)
674                 goto out;
675
676         /*
677          * Check to see if there are any leases on this file.
678          * This may block while leases are broken.
679          */
680         err = break_lease(inode, O_NONBLOCK | ((access & MAY_WRITE) ? FMODE_WRITE : 0));
681         if (err == -EWOULDBLOCK)
682                 err = -ETIMEDOUT;
683         if (err) /* NOMEM or WOULDBLOCK */
684                 goto out_nfserr;
685
686         if (access & MAY_WRITE) {
687                 flags = O_WRONLY|O_LARGEFILE;
688
689                 DQUOT_INIT(inode);
690         }
691         *filp = dentry_open(dget(dentry), mntget(fhp->fh_export->ex_mnt), flags);
692         if (IS_ERR(*filp))
693                 err = PTR_ERR(*filp);
694 out_nfserr:
695         if (err)
696                 err = nfserrno(err);
697 out:
698         return err;
699 }
700
701 /*
702  * Close a file.
703  */
704 void
705 nfsd_close(struct file *filp)
706 {
707         fput(filp);
708 }
709
710 /*
711  * Sync a file
712  * As this calls fsync (not fdatasync) there is no need for a write_inode
713  * after it.
714  */
715 static inline void nfsd_dosync(struct file *filp, struct dentry *dp,
716                                struct file_operations *fop)
717 {
718         struct inode *inode = dp->d_inode;
719         int (*fsync) (struct file *, struct dentry *, int);
720
721         filemap_fdatawrite(inode->i_mapping);
722         if (fop && (fsync = fop->fsync))
723                 fsync(filp, dp, 0);
724         filemap_fdatawait(inode->i_mapping);
725 }
726         
727
728 static void
729 nfsd_sync(struct file *filp)
730 {
731         struct inode *inode = filp->f_dentry->d_inode;
732         dprintk("nfsd: sync file %s\n", filp->f_dentry->d_name.name);
733         down(&inode->i_sem);
734         nfsd_dosync(filp, filp->f_dentry, filp->f_op);
735         up(&inode->i_sem);
736 }
737
738 static void
739 nfsd_sync_dir(struct dentry *dp)
740 {
741         nfsd_dosync(NULL, dp, dp->d_inode->i_fop);
742 }
743
744 /*
745  * Obtain the readahead parameters for the file
746  * specified by (dev, ino).
747  */
748 static DEFINE_SPINLOCK(ra_lock);
749
750 static inline struct raparms *
751 nfsd_get_raparms(dev_t dev, ino_t ino)
752 {
753         struct raparms  *ra, **rap, **frap = NULL;
754         int depth = 0;
755
756         spin_lock(&ra_lock);
757         for (rap = &raparm_cache; (ra = *rap); rap = &ra->p_next) {
758                 if (ra->p_ino == ino && ra->p_dev == dev)
759                         goto found;
760                 depth++;
761                 if (ra->p_count == 0)
762                         frap = rap;
763         }
764         depth = nfsdstats.ra_size*11/10;
765         if (!frap) {    
766                 spin_unlock(&ra_lock);
767                 return NULL;
768         }
769         rap = frap;
770         ra = *frap;
771         ra->p_dev = dev;
772         ra->p_ino = ino;
773         ra->p_set = 0;
774 found:
775         if (rap != &raparm_cache) {
776                 *rap = ra->p_next;
777                 ra->p_next   = raparm_cache;
778                 raparm_cache = ra;
779         }
780         ra->p_count++;
781         nfsdstats.ra_depth[depth*10/nfsdstats.ra_size]++;
782         spin_unlock(&ra_lock);
783         return ra;
784 }
785
786 /*
787  * Grab and keep cached pages assosiated with a file in the svc_rqst
788  * so that they can be passed to the netowork sendmsg/sendpage routines
789  * directrly. They will be released after the sending has completed.
790  */
791 static int
792 nfsd_read_actor(read_descriptor_t *desc, struct page *page, unsigned long offset , unsigned long size)
793 {
794         unsigned long count = desc->count;
795         struct svc_rqst *rqstp = desc->arg.data;
796
797         if (size > count)
798                 size = count;
799
800         if (rqstp->rq_res.page_len == 0) {
801                 get_page(page);
802                 rqstp->rq_respages[rqstp->rq_resused++] = page;
803                 rqstp->rq_res.page_base = offset;
804                 rqstp->rq_res.page_len = size;
805         } else if (page != rqstp->rq_respages[rqstp->rq_resused-1]) {
806                 get_page(page);
807                 rqstp->rq_respages[rqstp->rq_resused++] = page;
808                 rqstp->rq_res.page_len += size;
809         } else {
810                 rqstp->rq_res.page_len += size;
811         }
812
813         desc->count = count - size;
814         desc->written += size;
815         return size;
816 }
817
818 static inline int
819 nfsd_vfs_read(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
820               loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
821 {
822         struct inode *inode;
823         struct raparms  *ra;
824         mm_segment_t    oldfs;
825         int             err;
826
827         err = nfserr_perm;
828         inode = file->f_dentry->d_inode;
829 #ifdef MSNFS
830         if ((fhp->fh_export->ex_flags & NFSEXP_MSNFS) &&
831                 (!lock_may_read(inode, offset, *count)))
832                 goto out;
833 #endif
834
835         /* Get readahead parameters */
836         ra = nfsd_get_raparms(inode->i_sb->s_dev, inode->i_ino);
837
838         if (ra && ra->p_set)
839                 file->f_ra = ra->p_ra;
840
841         if (file->f_op->sendfile) {
842                 svc_pushback_unused_pages(rqstp);
843                 err = file->f_op->sendfile(file, &offset, *count,
844                                                  nfsd_read_actor, rqstp);
845         } else {
846                 oldfs = get_fs();
847                 set_fs(KERNEL_DS);
848                 err = vfs_readv(file, (struct iovec __user *)vec, vlen, &offset);
849                 set_fs(oldfs);
850         }
851
852         /* Write back readahead params */
853         if (ra) {
854                 spin_lock(&ra_lock);
855                 ra->p_ra = file->f_ra;
856                 ra->p_set = 1;
857                 ra->p_count--;
858                 spin_unlock(&ra_lock);
859         }
860
861         if (err >= 0) {
862                 nfsdstats.io_read += err;
863                 *count = err;
864                 err = 0;
865                 dnotify_parent(file->f_dentry, DN_ACCESS);
866         } else 
867                 err = nfserrno(err);
868 out:
869         return err;
870 }
871
872 static inline int
873 nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
874                                 loff_t offset, struct kvec *vec, int vlen,
875                                 unsigned long cnt, int *stablep)
876 {
877         struct svc_export       *exp;
878         struct dentry           *dentry;
879         struct inode            *inode;
880         mm_segment_t            oldfs;
881         int                     err = 0;
882         int                     stable = *stablep;
883
884         err = nfserr_perm;
885
886 #ifdef MSNFS
887         if ((fhp->fh_export->ex_flags & NFSEXP_MSNFS) &&
888                 (!lock_may_write(file->f_dentry->d_inode, offset, cnt)))
889                 goto out;
890 #endif
891
892         dentry = file->f_dentry;
893         inode = dentry->d_inode;
894         exp   = fhp->fh_export;
895
896         /*
897          * Request sync writes if
898          *  -   the sync export option has been set, or
899          *  -   the client requested O_SYNC behavior (NFSv3 feature).
900          *  -   The file system doesn't support fsync().
901          * When gathered writes have been configured for this volume,
902          * flushing the data to disk is handled separately below.
903          */
904
905         if (file->f_op->fsync == 0) {/* COMMIT3 cannot work */
906                stable = 2;
907                *stablep = 2; /* FILE_SYNC */
908         }
909
910         if (!EX_ISSYNC(exp))
911                 stable = 0;
912         if (stable && !EX_WGATHER(exp))
913                 file->f_flags |= O_SYNC;
914
915         /* Write the data. */
916         oldfs = get_fs(); set_fs(KERNEL_DS);
917         err = vfs_writev(file, (struct iovec __user *)vec, vlen, &offset);
918         set_fs(oldfs);
919         if (err >= 0) {
920                 nfsdstats.io_write += cnt;
921                 dnotify_parent(file->f_dentry, DN_MODIFY);
922         }
923
924         /* clear setuid/setgid flag after write */
925         if (err >= 0 && (inode->i_mode & (S_ISUID | S_ISGID))) {
926                 struct iattr    ia;
927                 ia.ia_valid = ATTR_KILL_SUID | ATTR_KILL_SGID;
928
929                 down(&inode->i_sem);
930                 notify_change(dentry, &ia);
931                 up(&inode->i_sem);
932         }
933
934         if (err >= 0 && stable) {
935                 static ino_t    last_ino;
936                 static dev_t    last_dev;
937
938                 /*
939                  * Gathered writes: If another process is currently
940                  * writing to the file, there's a high chance
941                  * this is another nfsd (triggered by a bulk write
942                  * from a client's biod). Rather than syncing the
943                  * file with each write request, we sleep for 10 msec.
944                  *
945                  * I don't know if this roughly approximates
946                  * C. Juszak's idea of gathered writes, but it's a
947                  * nice and simple solution (IMHO), and it seems to
948                  * work:-)
949                  */
950                 if (EX_WGATHER(exp)) {
951                         if (atomic_read(&inode->i_writecount) > 1
952                             || (last_ino == inode->i_ino && last_dev == inode->i_sb->s_dev)) {
953                                 dprintk("nfsd: write defer %d\n", current->pid);
954                                 msleep(10);
955                                 dprintk("nfsd: write resume %d\n", current->pid);
956                         }
957
958                         if (inode->i_state & I_DIRTY) {
959                                 dprintk("nfsd: write sync %d\n", current->pid);
960                                 nfsd_sync(file);
961                         }
962 #if 0
963                         wake_up(&inode->i_wait);
964 #endif
965                 }
966                 last_ino = inode->i_ino;
967                 last_dev = inode->i_sb->s_dev;
968         }
969
970         dprintk("nfsd: write complete err=%d\n", err);
971         if (err >= 0)
972                 err = 0;
973         else 
974                 err = nfserrno(err);
975 out:
976         return err;
977 }
978
979 /*
980  * Read data from a file. count must contain the requested read count
981  * on entry. On return, *count contains the number of bytes actually read.
982  * N.B. After this call fhp needs an fh_put
983  */
984 int
985 nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
986                 loff_t offset, struct kvec *vec, int vlen,
987                 unsigned long *count)
988 {
989         int             err;
990
991         if (file) {
992                 err = nfsd_permission(fhp->fh_export, fhp->fh_dentry,
993                                 MAY_READ|MAY_OWNER_OVERRIDE);
994                 if (err)
995                         goto out;
996                 err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
997         } else {
998                 err = nfsd_open(rqstp, fhp, S_IFREG, MAY_READ, &file);
999                 if (err)
1000                         goto out;
1001                 err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
1002                 nfsd_close(file);
1003         }
1004 out:
1005         return err;
1006 }
1007
1008 /*
1009  * Write data to a file.
1010  * The stable flag requests synchronous writes.
1011  * N.B. After this call fhp needs an fh_put
1012  */
1013 int
1014 nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
1015                 loff_t offset, struct kvec *vec, int vlen, unsigned long cnt,
1016                 int *stablep)
1017 {
1018         int                     err = 0;
1019
1020         if (file) {
1021                 err = nfsd_permission(fhp->fh_export, fhp->fh_dentry,
1022                                 MAY_WRITE|MAY_OWNER_OVERRIDE);
1023                 if (err)
1024                         goto out;
1025                 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen, cnt,
1026                                 stablep);
1027         } else {
1028                 err = nfsd_open(rqstp, fhp, S_IFREG, MAY_WRITE, &file);
1029                 if (err)
1030                         goto out;
1031
1032                 if (cnt)
1033                         err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen,
1034                                              cnt, stablep);
1035                 nfsd_close(file);
1036         }
1037 out:
1038         return err;
1039 }
1040
1041 #ifdef CONFIG_NFSD_V3
1042 /*
1043  * Commit all pending writes to stable storage.
1044  * Strictly speaking, we could sync just the indicated file region here,
1045  * but there's currently no way we can ask the VFS to do so.
1046  *
1047  * Unfortunately we cannot lock the file to make sure we return full WCC
1048  * data to the client, as locking happens lower down in the filesystem.
1049  */
1050 int
1051 nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp,
1052                loff_t offset, unsigned long count)
1053 {
1054         struct file     *file;
1055         int             err;
1056
1057         if ((u64)count > ~(u64)offset)
1058                 return nfserr_inval;
1059
1060         if ((err = nfsd_open(rqstp, fhp, S_IFREG, MAY_WRITE, &file)) != 0)
1061                 return err;
1062         if (EX_ISSYNC(fhp->fh_export)) {
1063                 if (file->f_op && file->f_op->fsync) {
1064                         nfsd_sync(file);
1065                 } else {
1066                         err = nfserr_notsupp;
1067                 }
1068         }
1069
1070         nfsd_close(file);
1071         return err;
1072 }
1073 #endif /* CONFIG_NFSD_V3 */
1074
1075 /*
1076  * Create a file (regular, directory, device, fifo); UNIX sockets 
1077  * not yet implemented.
1078  * If the response fh has been verified, the parent directory should
1079  * already be locked. Note that the parent directory is left locked.
1080  *
1081  * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1082  */
1083 int
1084 nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1085                 char *fname, int flen, struct iattr *iap,
1086                 int type, dev_t rdev, struct svc_fh *resfhp)
1087 {
1088         struct dentry   *dentry, *dchild = NULL;
1089         struct inode    *dirp;
1090         int             err;
1091
1092         err = nfserr_perm;
1093         if (!flen)
1094                 goto out;
1095         err = nfserr_exist;
1096         if (isdotent(fname, flen))
1097                 goto out;
1098
1099         err = fh_verify(rqstp, fhp, S_IFDIR, MAY_CREATE);
1100         if (err)
1101                 goto out;
1102
1103         dentry = fhp->fh_dentry;
1104         dirp = dentry->d_inode;
1105
1106         err = nfserr_notdir;
1107         if(!dirp->i_op || !dirp->i_op->lookup)
1108                 goto out;
1109         /*
1110          * Check whether the response file handle has been verified yet.
1111          * If it has, the parent directory should already be locked.
1112          */
1113         if (!resfhp->fh_dentry) {
1114                 /* called from nfsd_proc_mkdir, or possibly nfsd3_proc_create */
1115                 fh_lock(fhp);
1116                 dchild = lookup_one_len(fname, dentry, flen);
1117                 err = PTR_ERR(dchild);
1118                 if (IS_ERR(dchild))
1119                         goto out_nfserr;
1120                 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1121                 if (err)
1122                         goto out;
1123         } else {
1124                 /* called from nfsd_proc_create */
1125                 dchild = dget(resfhp->fh_dentry);
1126                 if (!fhp->fh_locked) {
1127                         /* not actually possible */
1128                         printk(KERN_ERR
1129                                 "nfsd_create: parent %s/%s not locked!\n",
1130                                 dentry->d_parent->d_name.name,
1131                                 dentry->d_name.name);
1132                         err = -EIO;
1133                         goto out;
1134                 }
1135         }
1136         /*
1137          * Make sure the child dentry is still negative ...
1138          */
1139         err = nfserr_exist;
1140         if (dchild->d_inode) {
1141                 dprintk("nfsd_create: dentry %s/%s not negative!\n",
1142                         dentry->d_name.name, dchild->d_name.name);
1143                 goto out; 
1144         }
1145
1146         if (!(iap->ia_valid & ATTR_MODE))
1147                 iap->ia_mode = 0;
1148         iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
1149
1150         /*
1151          * Get the dir op function pointer.
1152          */
1153         err = nfserr_perm;
1154         switch (type) {
1155         case S_IFREG:
1156                 err = vfs_create(dirp, dchild, iap->ia_mode, NULL);
1157                 break;
1158         case S_IFDIR:
1159                 err = vfs_mkdir(dirp, dchild, iap->ia_mode);
1160                 break;
1161         case S_IFCHR:
1162         case S_IFBLK:
1163         case S_IFIFO:
1164         case S_IFSOCK:
1165                 err = vfs_mknod(dirp, dchild, iap->ia_mode, rdev);
1166                 break;
1167         default:
1168                 printk("nfsd: bad file type %o in nfsd_create\n", type);
1169                 err = -EINVAL;
1170         }
1171         if (err < 0)
1172                 goto out_nfserr;
1173
1174         if (EX_ISSYNC(fhp->fh_export)) {
1175                 nfsd_sync_dir(dentry);
1176                 write_inode_now(dchild->d_inode, 1);
1177         }
1178
1179
1180         /* Set file attributes. Mode has already been set and
1181          * setting uid/gid works only for root. Irix appears to
1182          * send along the gid when it tries to implement setgid
1183          * directories via NFS.
1184          */
1185         err = 0;
1186         if ((iap->ia_valid &= ~(ATTR_UID|ATTR_GID|ATTR_MODE)) != 0)
1187                 err = nfsd_setattr(rqstp, resfhp, iap, 0, (time_t)0);
1188         /*
1189          * Update the file handle to get the new inode info.
1190          */
1191         if (!err)
1192                 err = fh_update(resfhp);
1193 out:
1194         if (dchild && !IS_ERR(dchild))
1195                 dput(dchild);
1196         return err;
1197
1198 out_nfserr:
1199         err = nfserrno(err);
1200         goto out;
1201 }
1202
1203 #ifdef CONFIG_NFSD_V3
1204 /*
1205  * NFSv3 version of nfsd_create
1206  */
1207 int
1208 nfsd_create_v3(struct svc_rqst *rqstp, struct svc_fh *fhp,
1209                 char *fname, int flen, struct iattr *iap,
1210                 struct svc_fh *resfhp, int createmode, u32 *verifier,
1211                 int *truncp)
1212 {
1213         struct dentry   *dentry, *dchild = NULL;
1214         struct inode    *dirp;
1215         int             err;
1216         __u32           v_mtime=0, v_atime=0;
1217         int             v_mode=0;
1218
1219         err = nfserr_perm;
1220         if (!flen)
1221                 goto out;
1222         err = nfserr_exist;
1223         if (isdotent(fname, flen))
1224                 goto out;
1225         if (!(iap->ia_valid & ATTR_MODE))
1226                 iap->ia_mode = 0;
1227         err = fh_verify(rqstp, fhp, S_IFDIR, MAY_CREATE);
1228         if (err)
1229                 goto out;
1230
1231         dentry = fhp->fh_dentry;
1232         dirp = dentry->d_inode;
1233
1234         /* Get all the sanity checks out of the way before
1235          * we lock the parent. */
1236         err = nfserr_notdir;
1237         if(!dirp->i_op || !dirp->i_op->lookup)
1238                 goto out;
1239         fh_lock(fhp);
1240
1241         /*
1242          * Compose the response file handle.
1243          */
1244         dchild = lookup_one_len(fname, dentry, flen);
1245         err = PTR_ERR(dchild);
1246         if (IS_ERR(dchild))
1247                 goto out_nfserr;
1248
1249         err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1250         if (err)
1251                 goto out;
1252
1253         if (createmode == NFS3_CREATE_EXCLUSIVE) {
1254                 /* while the verifier would fit in mtime+atime,
1255                  * solaris7 gets confused (bugid 4218508) if these have
1256                  * the high bit set, so we use the mode as well
1257                  */
1258                 v_mtime = verifier[0]&0x7fffffff;
1259                 v_atime = verifier[1]&0x7fffffff;
1260                 v_mode  = S_IFREG
1261                         | ((verifier[0]&0x80000000) >> (32-7)) /* u+x */
1262                         | ((verifier[1]&0x80000000) >> (32-9)) /* u+r */
1263                         ;
1264         }
1265         
1266         if (dchild->d_inode) {
1267                 err = 0;
1268
1269                 switch (createmode) {
1270                 case NFS3_CREATE_UNCHECKED:
1271                         if (! S_ISREG(dchild->d_inode->i_mode))
1272                                 err = nfserr_exist;
1273                         else if (truncp) {
1274                                 /* in nfsv4, we need to treat this case a little
1275                                  * differently.  we don't want to truncate the
1276                                  * file now; this would be wrong if the OPEN
1277                                  * fails for some other reason.  furthermore,
1278                                  * if the size is nonzero, we should ignore it
1279                                  * according to spec!
1280                                  */
1281                                 *truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
1282                         }
1283                         else {
1284                                 iap->ia_valid &= ATTR_SIZE;
1285                                 goto set_attr;
1286                         }
1287                         break;
1288                 case NFS3_CREATE_EXCLUSIVE:
1289                         if (   dchild->d_inode->i_mtime.tv_sec == v_mtime
1290                             && dchild->d_inode->i_atime.tv_sec == v_atime
1291                             && dchild->d_inode->i_mode  == v_mode
1292                             && dchild->d_inode->i_size  == 0 )
1293                                 break;
1294                          /* fallthru */
1295                 case NFS3_CREATE_GUARDED:
1296                         err = nfserr_exist;
1297                 }
1298                 goto out;
1299         }
1300
1301         err = vfs_create(dirp, dchild, iap->ia_mode, NULL);
1302         if (err < 0)
1303                 goto out_nfserr;
1304
1305         if (EX_ISSYNC(fhp->fh_export)) {
1306                 nfsd_sync_dir(dentry);
1307                 /* setattr will sync the child (or not) */
1308         }
1309
1310         /*
1311          * Update the filehandle to get the new inode info.
1312          */
1313         err = fh_update(resfhp);
1314         if (err)
1315                 goto out;
1316
1317         if (createmode == NFS3_CREATE_EXCLUSIVE) {
1318                 /* Cram the verifier into atime/mtime/mode */
1319                 iap->ia_valid = ATTR_MTIME|ATTR_ATIME
1320                         | ATTR_MTIME_SET|ATTR_ATIME_SET
1321                         | ATTR_MODE;
1322                 /* XXX someone who knows this better please fix it for nsec */ 
1323                 iap->ia_mtime.tv_sec = v_mtime;
1324                 iap->ia_atime.tv_sec = v_atime;
1325                 iap->ia_mtime.tv_nsec = 0;
1326                 iap->ia_atime.tv_nsec = 0;
1327                 iap->ia_mode  = v_mode;
1328         }
1329
1330         /* Set file attributes.
1331          * Mode has already been set but we might need to reset it
1332          * for CREATE_EXCLUSIVE
1333          * Irix appears to send along the gid when it tries to
1334          * implement setgid directories via NFS. Clear out all that cruft.
1335          */
1336  set_attr:
1337         if ((iap->ia_valid &= ~(ATTR_UID|ATTR_GID)) != 0)
1338                 err = nfsd_setattr(rqstp, resfhp, iap, 0, (time_t)0);
1339
1340  out:
1341         fh_unlock(fhp);
1342         if (dchild && !IS_ERR(dchild))
1343                 dput(dchild);
1344         return err;
1345  
1346  out_nfserr:
1347         err = nfserrno(err);
1348         goto out;
1349 }
1350 #endif /* CONFIG_NFSD_V3 */
1351
1352 /*
1353  * Read a symlink. On entry, *lenp must contain the maximum path length that
1354  * fits into the buffer. On return, it contains the true length.
1355  * N.B. After this call fhp needs an fh_put
1356  */
1357 int
1358 nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
1359 {
1360         struct dentry   *dentry;
1361         struct inode    *inode;
1362         mm_segment_t    oldfs;
1363         int             err;
1364
1365         err = fh_verify(rqstp, fhp, S_IFLNK, MAY_NOP);
1366         if (err)
1367                 goto out;
1368
1369         dentry = fhp->fh_dentry;
1370         inode = dentry->d_inode;
1371
1372         err = nfserr_inval;
1373         if (!inode->i_op || !inode->i_op->readlink)
1374                 goto out;
1375
1376         touch_atime(fhp->fh_export->ex_mnt, dentry);
1377         /* N.B. Why does this call need a get_fs()??
1378          * Remove the set_fs and watch the fireworks:-) --okir
1379          */
1380
1381         oldfs = get_fs(); set_fs(KERNEL_DS);
1382         err = inode->i_op->readlink(dentry, buf, *lenp);
1383         set_fs(oldfs);
1384
1385         if (err < 0)
1386                 goto out_nfserr;
1387         *lenp = err;
1388         err = 0;
1389 out:
1390         return err;
1391
1392 out_nfserr:
1393         err = nfserrno(err);
1394         goto out;
1395 }
1396
1397 /*
1398  * Create a symlink and look up its inode
1399  * N.B. After this call _both_ fhp and resfhp need an fh_put
1400  */
1401 int
1402 nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
1403                                 char *fname, int flen,
1404                                 char *path,  int plen,
1405                                 struct svc_fh *resfhp,
1406                                 struct iattr *iap)
1407 {
1408         struct dentry   *dentry, *dnew;
1409         int             err, cerr;
1410         umode_t         mode;
1411
1412         err = nfserr_noent;
1413         if (!flen || !plen)
1414                 goto out;
1415         err = nfserr_exist;
1416         if (isdotent(fname, flen))
1417                 goto out;
1418
1419         err = fh_verify(rqstp, fhp, S_IFDIR, MAY_CREATE);
1420         if (err)
1421                 goto out;
1422         fh_lock(fhp);
1423         dentry = fhp->fh_dentry;
1424         dnew = lookup_one_len(fname, dentry, flen);
1425         err = PTR_ERR(dnew);
1426         if (IS_ERR(dnew))
1427                 goto out_nfserr;
1428
1429         mode = S_IALLUGO;
1430         /* Only the MODE ATTRibute is even vaguely meaningful */
1431         if (iap && (iap->ia_valid & ATTR_MODE))
1432                 mode = iap->ia_mode & S_IALLUGO;
1433
1434         if (unlikely(path[plen] != 0)) {
1435                 char *path_alloced = kmalloc(plen+1, GFP_KERNEL);
1436                 if (path_alloced == NULL)
1437                         err = -ENOMEM;
1438                 else {
1439                         strncpy(path_alloced, path, plen);
1440                         path_alloced[plen] = 0;
1441                         err = vfs_symlink(dentry->d_inode, dnew, path_alloced, mode);
1442                         kfree(path_alloced);
1443                 }
1444         } else
1445                 err = vfs_symlink(dentry->d_inode, dnew, path, mode);
1446
1447         if (!err) {
1448                 if (EX_ISSYNC(fhp->fh_export))
1449                         nfsd_sync_dir(dentry);
1450         } else
1451                 err = nfserrno(err);
1452         fh_unlock(fhp);
1453
1454         cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
1455         dput(dnew);
1456         if (err==0) err = cerr;
1457 out:
1458         return err;
1459
1460 out_nfserr:
1461         err = nfserrno(err);
1462         goto out;
1463 }
1464
1465 /*
1466  * Create a hardlink
1467  * N.B. After this call _both_ ffhp and tfhp need an fh_put
1468  */
1469 int
1470 nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
1471                                 char *name, int len, struct svc_fh *tfhp)
1472 {
1473         struct dentry   *ddir, *dnew, *dold;
1474         struct inode    *dirp, *dest;
1475         int             err;
1476
1477         err = fh_verify(rqstp, ffhp, S_IFDIR, MAY_CREATE);
1478         if (err)
1479                 goto out;
1480         err = fh_verify(rqstp, tfhp, -S_IFDIR, MAY_NOP);
1481         if (err)
1482                 goto out;
1483
1484         err = nfserr_perm;
1485         if (!len)
1486                 goto out;
1487         err = nfserr_exist;
1488         if (isdotent(name, len))
1489                 goto out;
1490
1491         fh_lock(ffhp);
1492         ddir = ffhp->fh_dentry;
1493         dirp = ddir->d_inode;
1494
1495         dnew = lookup_one_len(name, ddir, len);
1496         err = PTR_ERR(dnew);
1497         if (IS_ERR(dnew))
1498                 goto out_nfserr;
1499
1500         dold = tfhp->fh_dentry;
1501         dest = dold->d_inode;
1502
1503         err = vfs_link(dold, dirp, dnew);
1504         if (!err) {
1505                 if (EX_ISSYNC(ffhp->fh_export)) {
1506                         nfsd_sync_dir(ddir);
1507                         write_inode_now(dest, 1);
1508                 }
1509         } else {
1510                 if (err == -EXDEV && rqstp->rq_vers == 2)
1511                         err = nfserr_acces;
1512                 else
1513                         err = nfserrno(err);
1514         }
1515
1516         fh_unlock(ffhp);
1517         dput(dnew);
1518 out:
1519         return err;
1520
1521 out_nfserr:
1522         err = nfserrno(err);
1523         goto out;
1524 }
1525
1526 /*
1527  * Rename a file
1528  * N.B. After this call _both_ ffhp and tfhp need an fh_put
1529  */
1530 int
1531 nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
1532                             struct svc_fh *tfhp, char *tname, int tlen)
1533 {
1534         struct dentry   *fdentry, *tdentry, *odentry, *ndentry, *trap;
1535         struct inode    *fdir, *tdir;
1536         int             err;
1537
1538         err = fh_verify(rqstp, ffhp, S_IFDIR, MAY_REMOVE);
1539         if (err)
1540                 goto out;
1541         err = fh_verify(rqstp, tfhp, S_IFDIR, MAY_CREATE);
1542         if (err)
1543                 goto out;
1544
1545         fdentry = ffhp->fh_dentry;
1546         fdir = fdentry->d_inode;
1547
1548         tdentry = tfhp->fh_dentry;
1549         tdir = tdentry->d_inode;
1550
1551         err = (rqstp->rq_vers == 2) ? nfserr_acces : nfserr_xdev;
1552         if (fdir->i_sb != tdir->i_sb)
1553                 goto out;
1554
1555         err = nfserr_perm;
1556         if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
1557                 goto out;
1558
1559         /* cannot use fh_lock as we need deadlock protective ordering
1560          * so do it by hand */
1561         trap = lock_rename(tdentry, fdentry);
1562         ffhp->fh_locked = tfhp->fh_locked = 1;
1563         fill_pre_wcc(ffhp);
1564         fill_pre_wcc(tfhp);
1565
1566         odentry = lookup_one_len(fname, fdentry, flen);
1567         err = PTR_ERR(odentry);
1568         if (IS_ERR(odentry))
1569                 goto out_nfserr;
1570
1571         err = -ENOENT;
1572         if (!odentry->d_inode)
1573                 goto out_dput_old;
1574         err = -EINVAL;
1575         if (odentry == trap)
1576                 goto out_dput_old;
1577
1578         ndentry = lookup_one_len(tname, tdentry, tlen);
1579         err = PTR_ERR(ndentry);
1580         if (IS_ERR(ndentry))
1581                 goto out_dput_old;
1582         err = -ENOTEMPTY;
1583         if (ndentry == trap)
1584                 goto out_dput_new;
1585
1586 #ifdef MSNFS
1587         if ((ffhp->fh_export->ex_flags & NFSEXP_MSNFS) &&
1588                 ((atomic_read(&odentry->d_count) > 1)
1589                  || (atomic_read(&ndentry->d_count) > 1))) {
1590                         err = nfserr_perm;
1591         } else
1592 #endif
1593         err = vfs_rename(fdir, odentry, tdir, ndentry);
1594         if (!err && EX_ISSYNC(tfhp->fh_export)) {
1595                 nfsd_sync_dir(tdentry);
1596                 nfsd_sync_dir(fdentry);
1597         }
1598
1599  out_dput_new:
1600         dput(ndentry);
1601  out_dput_old:
1602         dput(odentry);
1603  out_nfserr:
1604         if (err)
1605                 err = nfserrno(err);
1606
1607         /* we cannot reply on fh_unlock on the two filehandles,
1608          * as that would do the wrong thing if the two directories
1609          * were the same, so again we do it by hand
1610          */
1611         fill_post_wcc(ffhp);
1612         fill_post_wcc(tfhp);
1613         unlock_rename(tdentry, fdentry);
1614         ffhp->fh_locked = tfhp->fh_locked = 0;
1615
1616 out:
1617         return err;
1618 }
1619
1620 /*
1621  * Unlink a file or directory
1622  * N.B. After this call fhp needs an fh_put
1623  */
1624 int
1625 nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
1626                                 char *fname, int flen)
1627 {
1628         struct dentry   *dentry, *rdentry;
1629         struct inode    *dirp;
1630         int             err;
1631
1632         err = nfserr_acces;
1633         if (!flen || isdotent(fname, flen))
1634                 goto out;
1635         err = fh_verify(rqstp, fhp, S_IFDIR, MAY_REMOVE);
1636         if (err)
1637                 goto out;
1638
1639         fh_lock(fhp);
1640         dentry = fhp->fh_dentry;
1641         dirp = dentry->d_inode;
1642
1643         rdentry = lookup_one_len(fname, dentry, flen);
1644         err = PTR_ERR(rdentry);
1645         if (IS_ERR(rdentry))
1646                 goto out_nfserr;
1647
1648         if (!rdentry->d_inode) {
1649                 dput(rdentry);
1650                 err = nfserr_noent;
1651                 goto out;
1652         }
1653
1654         if (!type)
1655                 type = rdentry->d_inode->i_mode & S_IFMT;
1656
1657         if (type != S_IFDIR) { /* It's UNLINK */
1658 #ifdef MSNFS
1659                 if ((fhp->fh_export->ex_flags & NFSEXP_MSNFS) &&
1660                         (atomic_read(&rdentry->d_count) > 1)) {
1661                         err = nfserr_perm;
1662                 } else
1663 #endif
1664                 err = vfs_unlink(dirp, rdentry);
1665         } else { /* It's RMDIR */
1666                 err = vfs_rmdir(dirp, rdentry);
1667         }
1668
1669         dput(rdentry);
1670
1671         if (err)
1672                 goto out_nfserr;
1673         if (EX_ISSYNC(fhp->fh_export)) 
1674                 nfsd_sync_dir(dentry);
1675
1676 out:
1677         return err;
1678
1679 out_nfserr:
1680         err = nfserrno(err);
1681         goto out;
1682 }
1683
1684 /*
1685  * Read entries from a directory.
1686  * The  NFSv3/4 verifier we ignore for now.
1687  */
1688 int
1689 nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp, 
1690              struct readdir_cd *cdp, encode_dent_fn func)
1691 {
1692         int             err;
1693         struct file     *file;
1694         loff_t          offset = *offsetp;
1695
1696         err = nfsd_open(rqstp, fhp, S_IFDIR, MAY_READ, &file);
1697         if (err)
1698                 goto out;
1699
1700         offset = vfs_llseek(file, offset, 0);
1701         if (offset < 0) {
1702                 err = nfserrno((int)offset);
1703                 goto out_close;
1704         }
1705
1706         /*
1707          * Read the directory entries. This silly loop is necessary because
1708          * readdir() is not guaranteed to fill up the entire buffer, but
1709          * may choose to do less.
1710          */
1711
1712         do {
1713                 cdp->err = nfserr_eof; /* will be cleared on successful read */
1714                 err = vfs_readdir(file, (filldir_t) func, cdp);
1715         } while (err >=0 && cdp->err == nfs_ok);
1716         if (err)
1717                 err = nfserrno(err);
1718         else
1719                 err = cdp->err;
1720         *offsetp = vfs_llseek(file, 0, 1);
1721
1722         if (err == nfserr_eof || err == nfserr_toosmall)
1723                 err = nfs_ok; /* can still be found in ->err */
1724 out_close:
1725         nfsd_close(file);
1726 out:
1727         return err;
1728 }
1729
1730 /*
1731  * Get file system stats
1732  * N.B. After this call fhp needs an fh_put
1733  */
1734 int
1735 nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat)
1736 {
1737         int err = fh_verify(rqstp, fhp, 0, MAY_NOP);
1738         if (!err && vfs_statfs(fhp->fh_dentry->d_inode->i_sb,stat))
1739                 err = nfserr_io;
1740         return err;
1741 }
1742
1743 /*
1744  * Check for a user's access permissions to this inode.
1745  */
1746 int
1747 nfsd_permission(struct svc_export *exp, struct dentry *dentry, int acc)
1748 {
1749         struct inode    *inode = dentry->d_inode;
1750         int             err;
1751
1752         if (acc == MAY_NOP)
1753                 return 0;
1754 #if 0
1755         dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
1756                 acc,
1757                 (acc & MAY_READ)?       " read"  : "",
1758                 (acc & MAY_WRITE)?      " write" : "",
1759                 (acc & MAY_EXEC)?       " exec"  : "",
1760                 (acc & MAY_SATTR)?      " sattr" : "",
1761                 (acc & MAY_TRUNC)?      " trunc" : "",
1762                 (acc & MAY_LOCK)?       " lock"  : "",
1763                 (acc & MAY_OWNER_OVERRIDE)? " owneroverride" : "",
1764                 inode->i_mode,
1765                 IS_IMMUTABLE(inode)?    " immut" : "",
1766                 IS_APPEND(inode)?       " append" : "",
1767                 IS_RDONLY(inode)?       " ro" : "");
1768         dprintk("      owner %d/%d user %d/%d\n",
1769                 inode->i_uid, inode->i_gid, current->fsuid, current->fsgid);
1770 #endif
1771
1772         /* Normally we reject any write/sattr etc access on a read-only file
1773          * system.  But if it is IRIX doing check on write-access for a 
1774          * device special file, we ignore rofs.
1775          */
1776         if (!(acc & MAY_LOCAL_ACCESS))
1777                 if (acc & (MAY_WRITE | MAY_SATTR | MAY_TRUNC)) {
1778                         if (EX_RDONLY(exp) || IS_RDONLY(inode))
1779                                 return nfserr_rofs;
1780                         if (/* (acc & MAY_WRITE) && */ IS_IMMUTABLE(inode))
1781                                 return nfserr_perm;
1782                 }
1783         if ((acc & MAY_TRUNC) && IS_APPEND(inode))
1784                 return nfserr_perm;
1785
1786         if (acc & MAY_LOCK) {
1787                 /* If we cannot rely on authentication in NLM requests,
1788                  * just allow locks, otherwise require read permission, or
1789                  * ownership
1790                  */
1791                 if (exp->ex_flags & NFSEXP_NOAUTHNLM)
1792                         return 0;
1793                 else
1794                         acc = MAY_READ | MAY_OWNER_OVERRIDE;
1795         }
1796         /*
1797          * The file owner always gets access permission for accesses that
1798          * would normally be checked at open time. This is to make
1799          * file access work even when the client has done a fchmod(fd, 0).
1800          *
1801          * However, `cp foo bar' should fail nevertheless when bar is
1802          * readonly. A sensible way to do this might be to reject all
1803          * attempts to truncate a read-only file, because a creat() call
1804          * always implies file truncation.
1805          * ... but this isn't really fair.  A process may reasonably call
1806          * ftruncate on an open file descriptor on a file with perm 000.
1807          * We must trust the client to do permission checking - using "ACCESS"
1808          * with NFSv3.
1809          */
1810         if ((acc & MAY_OWNER_OVERRIDE) &&
1811             inode->i_uid == current->fsuid)
1812                 return 0;
1813
1814         err = permission(inode, acc & (MAY_READ|MAY_WRITE|MAY_EXEC), NULL);
1815
1816         /* Allow read access to binaries even when mode 111 */
1817         if (err == -EACCES && S_ISREG(inode->i_mode) &&
1818             acc == (MAY_READ | MAY_OWNER_OVERRIDE))
1819                 err = permission(inode, MAY_EXEC, NULL);
1820
1821         return err? nfserrno(err) : 0;
1822 }
1823
1824 void
1825 nfsd_racache_shutdown(void)
1826 {
1827         if (!raparm_cache)
1828                 return;
1829         dprintk("nfsd: freeing readahead buffers.\n");
1830         kfree(raparml);
1831         raparm_cache = raparml = NULL;
1832 }
1833 /*
1834  * Initialize readahead param cache
1835  */
1836 int
1837 nfsd_racache_init(int cache_size)
1838 {
1839         int     i;
1840
1841         if (raparm_cache)
1842                 return 0;
1843         raparml = kmalloc(sizeof(struct raparms) * cache_size, GFP_KERNEL);
1844
1845         if (raparml != NULL) {
1846                 dprintk("nfsd: allocating %d readahead buffers.\n",
1847                         cache_size);
1848                 memset(raparml, 0, sizeof(struct raparms) * cache_size);
1849                 for (i = 0; i < cache_size - 1; i++) {
1850                         raparml[i].p_next = raparml + i + 1;
1851                 }
1852                 raparm_cache = raparml;
1853         } else {
1854                 printk(KERN_WARNING
1855                        "nfsd: Could not allocate memory read-ahead cache.\n");
1856                 return -ENOMEM;
1857         }
1858         nfsdstats.ra_size = cache_size;
1859         return 0;
1860 }
1861
1862 #if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
1863 struct posix_acl *
1864 nfsd_get_posix_acl(struct svc_fh *fhp, int type)
1865 {
1866         struct inode *inode = fhp->fh_dentry->d_inode;
1867         char *name;
1868         void *value = NULL;
1869         ssize_t size;
1870         struct posix_acl *acl;
1871
1872         if (!IS_POSIXACL(inode) || !inode->i_op || !inode->i_op->getxattr)
1873                 return ERR_PTR(-EOPNOTSUPP);
1874         switch(type) {
1875                 case ACL_TYPE_ACCESS:
1876                         name = XATTR_NAME_ACL_ACCESS;
1877                         break;
1878                 case ACL_TYPE_DEFAULT:
1879                         name = XATTR_NAME_ACL_DEFAULT;
1880                         break;
1881                 default:
1882                         return ERR_PTR(-EOPNOTSUPP);
1883         }
1884
1885         size = inode->i_op->getxattr(fhp->fh_dentry, name, NULL, 0);
1886
1887         if (size < 0) {
1888                 acl = ERR_PTR(size);
1889                 goto getout;
1890         } else if (size > 0) {
1891                 value = kmalloc(size, GFP_KERNEL);
1892                 if (!value) {
1893                         acl = ERR_PTR(-ENOMEM);
1894                         goto getout;
1895                 }
1896                 size = inode->i_op->getxattr(fhp->fh_dentry, name, value, size);
1897                 if (size < 0) {
1898                         acl = ERR_PTR(size);
1899                         goto getout;
1900                 }
1901         }
1902         acl = posix_acl_from_xattr(value, size);
1903
1904 getout:
1905         kfree(value);
1906         return acl;
1907 }
1908
1909 int
1910 nfsd_set_posix_acl(struct svc_fh *fhp, int type, struct posix_acl *acl)
1911 {
1912         struct inode *inode = fhp->fh_dentry->d_inode;
1913         char *name;
1914         void *value = NULL;
1915         size_t size;
1916         int error;
1917
1918         if (!IS_POSIXACL(inode) || !inode->i_op ||
1919             !inode->i_op->setxattr || !inode->i_op->removexattr)
1920                 return -EOPNOTSUPP;
1921         switch(type) {
1922                 case ACL_TYPE_ACCESS:
1923                         name = XATTR_NAME_ACL_ACCESS;
1924                         break;
1925                 case ACL_TYPE_DEFAULT:
1926                         name = XATTR_NAME_ACL_DEFAULT;
1927                         break;
1928                 default:
1929                         return -EOPNOTSUPP;
1930         }
1931
1932         if (acl && acl->a_count) {
1933                 size = xattr_acl_size(acl->a_count);
1934                 value = kmalloc(size, GFP_KERNEL);
1935                 if (!value)
1936                         return -ENOMEM;
1937                 size = posix_acl_to_xattr(acl, value, size);
1938                 if (size < 0) {
1939                         error = size;
1940                         goto getout;
1941                 }
1942         } else
1943                 size = 0;
1944
1945         if (!fhp->fh_locked)
1946                 fh_lock(fhp);  /* unlocking is done automatically */
1947         if (size)
1948                 error = inode->i_op->setxattr(fhp->fh_dentry, name,
1949                                               value, size, 0);
1950         else {
1951                 if (!S_ISDIR(inode->i_mode) && type == ACL_TYPE_DEFAULT)
1952                         error = 0;
1953                 else {
1954                         error = inode->i_op->removexattr(fhp->fh_dentry, name);
1955                         if (error == -ENODATA)
1956                                 error = 0;
1957                 }
1958         }
1959
1960 getout:
1961         kfree(value);
1962         return error;
1963 }
1964 #endif  /* defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL) */