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