vserver 1.9.3
[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         buflen = inode->i_op->getxattr(dentry, key, NULL, 0);
454         if (buflen <= 0) {
455                 error = buflen < 0 ? buflen : -ENODATA;
456                 goto out_sem;
457         }
458
459         buf = kmalloc(buflen, GFP_KERNEL);
460         if (buf == NULL) {
461                 error = -ENOMEM;
462                 goto out_sem;
463         }
464
465         error = -EOPNOTSUPP;
466         if (inode->i_op && inode->i_op->getxattr) {
467                 error = security_inode_getxattr(dentry, key);
468                 if (error)
469                         goto out_sem;
470                 error = inode->i_op->getxattr(dentry, key, buf, buflen);
471         }
472         if (error < 0)
473                 goto out_sem;
474
475         error = 0;
476         up(&inode->i_sem);
477
478         pacl = posix_acl_from_xattr(buf, buflen);
479  out:
480         kfree(buf);
481         return pacl;
482  out_sem:
483         up(&inode->i_sem);
484         pacl = ERR_PTR(error);
485         goto out;
486 }
487
488 int
489 nfsd4_get_nfs4_acl(struct svc_rqst *rqstp, struct dentry *dentry, struct nfs4_acl **acl)
490 {
491         struct inode *inode = dentry->d_inode;
492         int error = 0;
493         struct posix_acl *pacl = NULL, *dpacl = NULL;
494         unsigned int flags = 0;
495
496         pacl = _get_posix_acl(dentry, XATTR_NAME_ACL_ACCESS);
497         if (IS_ERR(pacl) && PTR_ERR(pacl) == -ENODATA)
498                 pacl = posix_acl_from_mode(inode->i_mode, GFP_KERNEL);
499         if (IS_ERR(pacl)) {
500                 error = PTR_ERR(pacl);
501                 pacl = NULL;
502                 goto out;
503         }
504
505         if (S_ISDIR(inode->i_mode)) {
506                 dpacl = _get_posix_acl(dentry, XATTR_NAME_ACL_DEFAULT);
507                 if (IS_ERR(dpacl) && PTR_ERR(dpacl) == -ENODATA)
508                         dpacl = NULL;
509                 else if (IS_ERR(dpacl)) {
510                         error = PTR_ERR(dpacl);
511                         dpacl = NULL;
512                         goto out;
513                 }
514                 flags = NFS4_ACL_DIR;
515         }
516
517         *acl = nfs4_acl_posix_to_nfsv4(pacl, dpacl, flags);
518         if (IS_ERR(*acl)) {
519                 error = PTR_ERR(*acl);
520                 *acl = NULL;
521         }
522  out:
523         posix_acl_release(pacl);
524         posix_acl_release(dpacl);
525         return error;
526 }
527
528 #endif /* defined(CONFIG_NFS_V4) */
529
530 #ifdef CONFIG_NFSD_V3
531 /*
532  * Check server access rights to a file system object
533  */
534 struct accessmap {
535         u32             access;
536         int             how;
537 };
538 static struct accessmap nfs3_regaccess[] = {
539     {   NFS3_ACCESS_READ,       MAY_READ                        },
540     {   NFS3_ACCESS_EXECUTE,    MAY_EXEC                        },
541     {   NFS3_ACCESS_MODIFY,     MAY_WRITE|MAY_TRUNC             },
542     {   NFS3_ACCESS_EXTEND,     MAY_WRITE                       },
543
544     {   0,                      0                               }
545 };
546
547 static struct accessmap nfs3_diraccess[] = {
548     {   NFS3_ACCESS_READ,       MAY_READ                        },
549     {   NFS3_ACCESS_LOOKUP,     MAY_EXEC                        },
550     {   NFS3_ACCESS_MODIFY,     MAY_EXEC|MAY_WRITE|MAY_TRUNC    },
551     {   NFS3_ACCESS_EXTEND,     MAY_EXEC|MAY_WRITE              },
552     {   NFS3_ACCESS_DELETE,     MAY_REMOVE                      },
553
554     {   0,                      0                               }
555 };
556
557 static struct accessmap nfs3_anyaccess[] = {
558         /* Some clients - Solaris 2.6 at least, make an access call
559          * to the server to check for access for things like /dev/null
560          * (which really, the server doesn't care about).  So
561          * We provide simple access checking for them, looking
562          * mainly at mode bits, and we make sure to ignore read-only
563          * filesystem checks
564          */
565     {   NFS3_ACCESS_READ,       MAY_READ                        },
566     {   NFS3_ACCESS_EXECUTE,    MAY_EXEC                        },
567     {   NFS3_ACCESS_MODIFY,     MAY_WRITE|MAY_LOCAL_ACCESS      },
568     {   NFS3_ACCESS_EXTEND,     MAY_WRITE|MAY_LOCAL_ACCESS      },
569
570     {   0,                      0                               }
571 };
572
573 int
574 nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported)
575 {
576         struct accessmap        *map;
577         struct svc_export       *export;
578         struct dentry           *dentry;
579         u32                     query, result = 0, sresult = 0;
580         unsigned int            error;
581
582         error = fh_verify(rqstp, fhp, 0, MAY_NOP);
583         if (error)
584                 goto out;
585
586         export = fhp->fh_export;
587         dentry = fhp->fh_dentry;
588
589         if (S_ISREG(dentry->d_inode->i_mode))
590                 map = nfs3_regaccess;
591         else if (S_ISDIR(dentry->d_inode->i_mode))
592                 map = nfs3_diraccess;
593         else
594                 map = nfs3_anyaccess;
595
596
597         query = *access;
598         for  (; map->access; map++) {
599                 if (map->access & query) {
600                         unsigned int err2;
601
602                         sresult |= map->access;
603
604                         err2 = nfsd_permission(export, dentry, map->how);
605                         switch (err2) {
606                         case nfs_ok:
607                                 result |= map->access;
608                                 break;
609                                 
610                         /* the following error codes just mean the access was not allowed,
611                          * rather than an error occurred */
612                         case nfserr_rofs:
613                         case nfserr_acces:
614                         case nfserr_perm:
615                                 /* simply don't "or" in the access bit. */
616                                 break;
617                         default:
618                                 error = err2;
619                                 goto out;
620                         }
621                 }
622         }
623         *access = result;
624         if (supported)
625                 *supported = sresult;
626
627  out:
628         return error;
629 }
630 #endif /* CONFIG_NFSD_V3 */
631
632
633
634 /*
635  * Open an existing file or directory.
636  * The access argument indicates the type of open (read/write/lock)
637  * N.B. After this call fhp needs an fh_put
638  */
639 int
640 nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
641                         int access, struct file **filp)
642 {
643         struct dentry   *dentry;
644         struct inode    *inode;
645         int             flags = O_RDONLY|O_LARGEFILE, err;
646
647         /*
648          * If we get here, then the client has already done an "open",
649          * and (hopefully) checked permission - so allow OWNER_OVERRIDE
650          * in case a chmod has now revoked permission.
651          */
652         err = fh_verify(rqstp, fhp, type, access | MAY_OWNER_OVERRIDE);
653         if (err)
654                 goto out;
655
656         dentry = fhp->fh_dentry;
657         inode = dentry->d_inode;
658
659         /* Disallow access to files with the append-only bit set or
660          * with mandatory locking enabled
661          */
662         err = nfserr_perm;
663         if (IS_APPEND(inode) || IS_ISMNDLK(inode))
664                 goto out;
665         if (!inode->i_fop)
666                 goto out;
667
668         /*
669          * Check to see if there are any leases on this file.
670          * This may block while leases are broken.
671          */
672         err = break_lease(inode, O_NONBLOCK | ((access & MAY_WRITE) ? FMODE_WRITE : 0));
673         if (err) /* NOMEM or WOULDBLOCK */
674                 goto out_nfserr;
675
676         if (access & MAY_WRITE) {
677                 flags = O_WRONLY|O_LARGEFILE;
678
679                 DQUOT_INIT(inode);
680         }
681         *filp = dentry_open(dget(dentry), mntget(fhp->fh_export->ex_mnt), flags);
682         if (IS_ERR(*filp))
683                 err = PTR_ERR(*filp);
684 out_nfserr:
685         if (err)
686                 err = nfserrno(err);
687 out:
688         return err;
689 }
690
691 /*
692  * Close a file.
693  */
694 void
695 nfsd_close(struct file *filp)
696 {
697         fput(filp);
698 }
699
700 /*
701  * Sync a file
702  * As this calls fsync (not fdatasync) there is no need for a write_inode
703  * after it.
704  */
705 inline void nfsd_dosync(struct file *filp, struct dentry *dp, 
706                         struct file_operations *fop)
707 {
708         struct inode *inode = dp->d_inode;
709         int (*fsync) (struct file *, struct dentry *, int);
710
711         filemap_fdatawrite(inode->i_mapping);
712         if (fop && (fsync = fop->fsync))
713                 fsync(filp, dp, 0);
714         filemap_fdatawait(inode->i_mapping);
715 }
716         
717
718 void
719 nfsd_sync(struct file *filp)
720 {
721         struct inode *inode = filp->f_dentry->d_inode;
722         dprintk("nfsd: sync file %s\n", filp->f_dentry->d_name.name);
723         down(&inode->i_sem);
724         nfsd_dosync(filp, filp->f_dentry, filp->f_op);
725         up(&inode->i_sem);
726 }
727
728 void
729 nfsd_sync_dir(struct dentry *dp)
730 {
731         nfsd_dosync(NULL, dp, dp->d_inode->i_fop);
732 }
733
734 /*
735  * Obtain the readahead parameters for the file
736  * specified by (dev, ino).
737  */
738 static spinlock_t ra_lock = SPIN_LOCK_UNLOCKED;
739
740 static inline struct raparms *
741 nfsd_get_raparms(dev_t dev, ino_t ino)
742 {
743         struct raparms  *ra, **rap, **frap = NULL;
744         int depth = 0;
745
746         spin_lock(&ra_lock);
747         for (rap = &raparm_cache; (ra = *rap); rap = &ra->p_next) {
748                 if (ra->p_ino == ino && ra->p_dev == dev)
749                         goto found;
750                 depth++;
751                 if (ra->p_count == 0)
752                         frap = rap;
753         }
754         depth = nfsdstats.ra_size*11/10;
755         if (!frap) {    
756                 spin_unlock(&ra_lock);
757                 return NULL;
758         }
759         rap = frap;
760         ra = *frap;
761         ra->p_dev = dev;
762         ra->p_ino = ino;
763         ra->p_set = 0;
764 found:
765         if (rap != &raparm_cache) {
766                 *rap = ra->p_next;
767                 ra->p_next   = raparm_cache;
768                 raparm_cache = ra;
769         }
770         ra->p_count++;
771         nfsdstats.ra_depth[depth*10/nfsdstats.ra_size]++;
772         spin_unlock(&ra_lock);
773         return ra;
774 }
775
776 /*
777  * Grab and keep cached pages assosiated with a file in the svc_rqst
778  * so that they can be passed to the netowork sendmsg/sendpage routines
779  * directrly. They will be released after the sending has completed.
780  */
781 static int
782 nfsd_read_actor(read_descriptor_t *desc, struct page *page, unsigned long offset , unsigned long size)
783 {
784         unsigned long count = desc->count;
785         struct svc_rqst *rqstp = desc->arg.data;
786
787         if (size > count)
788                 size = count;
789
790         if (rqstp->rq_res.page_len == 0) {
791                 get_page(page);
792                 rqstp->rq_respages[rqstp->rq_resused++] = page;
793                 rqstp->rq_res.page_base = offset;
794                 rqstp->rq_res.page_len = size;
795         } else if (page != rqstp->rq_respages[rqstp->rq_resused-1]) {
796                 get_page(page);
797                 rqstp->rq_respages[rqstp->rq_resused++] = page;
798                 rqstp->rq_res.page_len += size;
799         } else {
800                 rqstp->rq_res.page_len += size;
801         }
802
803         desc->count = count - size;
804         desc->written += size;
805         return size;
806 }
807
808 /*
809  * Read data from a file. count must contain the requested read count
810  * on entry. On return, *count contains the number of bytes actually read.
811  * N.B. After this call fhp needs an fh_put
812  */
813 int
814 nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t offset,
815           struct kvec *vec, int vlen, unsigned long *count)
816 {
817         struct raparms  *ra;
818         mm_segment_t    oldfs;
819         int             err;
820         struct file     *file;
821         struct inode    *inode;
822
823         err = nfsd_open(rqstp, fhp, S_IFREG, MAY_READ, &file);
824         if (err)
825                 goto out;
826         err = nfserr_perm;
827         inode = file->f_dentry->d_inode;
828 #ifdef MSNFS
829         if ((fhp->fh_export->ex_flags & NFSEXP_MSNFS) &&
830                 (!lock_may_read(inode, offset, *count)))
831                 goto out_close;
832 #endif
833
834         /* Get readahead parameters */
835         ra = nfsd_get_raparms(inode->i_sb->s_dev, inode->i_ino);
836
837         if (ra && ra->p_set)
838                 file->f_ra = ra->p_ra;
839
840         if (file->f_op->sendfile) {
841                 svc_pushback_unused_pages(rqstp);
842                 err = file->f_op->sendfile(file, &offset, *count,
843                                                  nfsd_read_actor, rqstp);
844         } else {
845                 oldfs = get_fs();
846                 set_fs(KERNEL_DS);
847                 err = vfs_readv(file, (struct iovec __user *)vec, vlen, &offset);
848                 set_fs(oldfs);
849         }
850
851         /* Write back readahead params */
852         if (ra) {
853                 spin_lock(&ra_lock);
854                 ra->p_ra = file->f_ra;
855                 ra->p_set = 1;
856                 ra->p_count--;
857                 spin_unlock(&ra_lock);
858         }
859
860         if (err >= 0) {
861                 nfsdstats.io_read += err;
862                 *count = err;
863                 err = 0;
864                 dnotify_parent(file->f_dentry, DN_ACCESS);
865         } else 
866                 err = nfserrno(err);
867 out_close:
868         nfsd_close(file);
869 out:
870         return err;
871 }
872
873 /*
874  * Write data to a file.
875  * The stable flag requests synchronous writes.
876  * N.B. After this call fhp needs an fh_put
877  */
878 int
879 nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t offset,
880                                 struct kvec *vec, int vlen,
881                                 unsigned long cnt, int *stablep)
882 {
883         struct svc_export       *exp;
884         struct file             *file;
885         struct dentry           *dentry;
886         struct inode            *inode;
887         mm_segment_t            oldfs;
888         int                     err = 0;
889         int                     stable = *stablep;
890
891         err = nfsd_open(rqstp, fhp, S_IFREG, MAY_WRITE, &file);
892         if (err)
893                 goto out;
894         if (!cnt)
895                 goto out_close;
896         err = nfserr_perm;
897
898 #ifdef MSNFS
899         if ((fhp->fh_export->ex_flags & NFSEXP_MSNFS) &&
900                 (!lock_may_write(file->f_dentry->d_inode, offset, cnt)))
901                 goto out_close;
902 #endif
903
904         dentry = file->f_dentry;
905         inode = dentry->d_inode;
906         exp   = fhp->fh_export;
907
908         /*
909          * Request sync writes if
910          *  -   the sync export option has been set, or
911          *  -   the client requested O_SYNC behavior (NFSv3 feature).
912          *  -   The file system doesn't support fsync().
913          * When gathered writes have been configured for this volume,
914          * flushing the data to disk is handled separately below.
915          */
916
917         if (file->f_op->fsync == 0) {/* COMMIT3 cannot work */
918                stable = 2;
919                *stablep = 2; /* FILE_SYNC */
920         }
921
922         if (!EX_ISSYNC(exp))
923                 stable = 0;
924         if (stable && !EX_WGATHER(exp))
925                 file->f_flags |= O_SYNC;
926
927         /* Write the data. */
928         oldfs = get_fs(); set_fs(KERNEL_DS);
929         err = vfs_writev(file, (struct iovec __user *)vec, vlen, &offset);
930         set_fs(oldfs);
931         if (err >= 0) {
932                 nfsdstats.io_write += cnt;
933                 dnotify_parent(file->f_dentry, DN_MODIFY);
934         }
935
936         /* clear setuid/setgid flag after write */
937         if (err >= 0 && (inode->i_mode & (S_ISUID | S_ISGID))) {
938                 struct iattr    ia;
939                 ia.ia_valid = ATTR_KILL_SUID | ATTR_KILL_SGID;
940
941                 down(&inode->i_sem);
942                 notify_change(dentry, &ia);
943                 up(&inode->i_sem);
944         }
945
946         if (err >= 0 && stable) {
947                 static ino_t    last_ino;
948                 static dev_t    last_dev;
949
950                 /*
951                  * Gathered writes: If another process is currently
952                  * writing to the file, there's a high chance
953                  * this is another nfsd (triggered by a bulk write
954                  * from a client's biod). Rather than syncing the
955                  * file with each write request, we sleep for 10 msec.
956                  *
957                  * I don't know if this roughly approximates
958                  * C. Juszak's idea of gathered writes, but it's a
959                  * nice and simple solution (IMHO), and it seems to
960                  * work:-)
961                  */
962                 if (EX_WGATHER(exp)) {
963                         if (atomic_read(&inode->i_writecount) > 1
964                             || (last_ino == inode->i_ino && last_dev == inode->i_sb->s_dev)) {
965                                 dprintk("nfsd: write defer %d\n", current->pid);
966                                 set_current_state(TASK_UNINTERRUPTIBLE);
967                                 schedule_timeout((HZ+99)/100);
968                                 dprintk("nfsd: write resume %d\n", current->pid);
969                         }
970
971                         if (inode->i_state & I_DIRTY) {
972                                 dprintk("nfsd: write sync %d\n", current->pid);
973                                 nfsd_sync(file);
974                         }
975 #if 0
976                         wake_up(&inode->i_wait);
977 #endif
978                 }
979                 last_ino = inode->i_ino;
980                 last_dev = inode->i_sb->s_dev;
981         }
982
983         dprintk("nfsd: write complete err=%d\n", err);
984         if (err >= 0)
985                 err = 0;
986         else 
987                 err = nfserrno(err);
988 out_close:
989         nfsd_close(file);
990 out:
991         return err;
992 }
993
994
995 #ifdef CONFIG_NFSD_V3
996 /*
997  * Commit all pending writes to stable storage.
998  * Strictly speaking, we could sync just the indicated file region here,
999  * but there's currently no way we can ask the VFS to do so.
1000  *
1001  * Unfortunately we cannot lock the file to make sure we return full WCC
1002  * data to the client, as locking happens lower down in the filesystem.
1003  */
1004 int
1005 nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp,
1006                loff_t offset, unsigned long count)
1007 {
1008         struct file     *file;
1009         int             err;
1010
1011         if ((u64)count > ~(u64)offset)
1012                 return nfserr_inval;
1013
1014         if ((err = nfsd_open(rqstp, fhp, S_IFREG, MAY_WRITE, &file)) != 0)
1015                 return err;
1016         if (EX_ISSYNC(fhp->fh_export)) {
1017                 if (file->f_op && file->f_op->fsync) {
1018                         nfsd_sync(file);
1019                 } else {
1020                         err = nfserr_notsupp;
1021                 }
1022         }
1023
1024         nfsd_close(file);
1025         return err;
1026 }
1027 #endif /* CONFIG_NFSD_V3 */
1028
1029 /*
1030  * Create a file (regular, directory, device, fifo); UNIX sockets 
1031  * not yet implemented.
1032  * If the response fh has been verified, the parent directory should
1033  * already be locked. Note that the parent directory is left locked.
1034  *
1035  * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1036  */
1037 int
1038 nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1039                 char *fname, int flen, struct iattr *iap,
1040                 int type, dev_t rdev, struct svc_fh *resfhp)
1041 {
1042         struct dentry   *dentry, *dchild = NULL;
1043         struct inode    *dirp;
1044         int             err;
1045
1046         err = nfserr_perm;
1047         if (!flen)
1048                 goto out;
1049         err = nfserr_exist;
1050         if (isdotent(fname, flen))
1051                 goto out;
1052
1053         err = fh_verify(rqstp, fhp, S_IFDIR, MAY_CREATE);
1054         if (err)
1055                 goto out;
1056
1057         dentry = fhp->fh_dentry;
1058         dirp = dentry->d_inode;
1059
1060         err = nfserr_notdir;
1061         if(!dirp->i_op || !dirp->i_op->lookup)
1062                 goto out;
1063         /*
1064          * Check whether the response file handle has been verified yet.
1065          * If it has, the parent directory should already be locked.
1066          */
1067         if (!resfhp->fh_dentry) {
1068                 /* called from nfsd_proc_mkdir, or possibly nfsd3_proc_create */
1069                 fh_lock(fhp);
1070                 dchild = lookup_one_len(fname, dentry, flen);
1071                 err = PTR_ERR(dchild);
1072                 if (IS_ERR(dchild))
1073                         goto out_nfserr;
1074                 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1075                 if (err)
1076                         goto out;
1077         } else {
1078                 /* called from nfsd_proc_create */
1079                 dchild = dget(resfhp->fh_dentry);
1080                 if (!fhp->fh_locked) {
1081                         /* not actually possible */
1082                         printk(KERN_ERR
1083                                 "nfsd_create: parent %s/%s not locked!\n",
1084                                 dentry->d_parent->d_name.name,
1085                                 dentry->d_name.name);
1086                         err = -EIO;
1087                         goto out;
1088                 }
1089         }
1090         /*
1091          * Make sure the child dentry is still negative ...
1092          */
1093         err = nfserr_exist;
1094         if (dchild->d_inode) {
1095                 dprintk("nfsd_create: dentry %s/%s not negative!\n",
1096                         dentry->d_name.name, dchild->d_name.name);
1097                 goto out; 
1098         }
1099
1100         if (!(iap->ia_valid & ATTR_MODE))
1101                 iap->ia_mode = 0;
1102         iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
1103
1104         /*
1105          * Get the dir op function pointer.
1106          */
1107         err = nfserr_perm;
1108         switch (type) {
1109         case S_IFREG:
1110                 err = vfs_create(dirp, dchild, iap->ia_mode, NULL);
1111                 break;
1112         case S_IFDIR:
1113                 err = vfs_mkdir(dirp, dchild, iap->ia_mode);
1114                 break;
1115         case S_IFCHR:
1116         case S_IFBLK:
1117         case S_IFIFO:
1118         case S_IFSOCK:
1119                 err = vfs_mknod(dirp, dchild, iap->ia_mode, rdev);
1120                 break;
1121         default:
1122                 printk("nfsd: bad file type %o in nfsd_create\n", type);
1123                 err = -EINVAL;
1124         }
1125         if (err < 0)
1126                 goto out_nfserr;
1127
1128         if (EX_ISSYNC(fhp->fh_export)) {
1129                 nfsd_sync_dir(dentry);
1130                 write_inode_now(dchild->d_inode, 1);
1131         }
1132
1133
1134         /* Set file attributes. Mode has already been set and
1135          * setting uid/gid works only for root. Irix appears to
1136          * send along the gid when it tries to implement setgid
1137          * directories via NFS.
1138          */
1139         err = 0;
1140         if ((iap->ia_valid &= ~(ATTR_UID|ATTR_GID|ATTR_MODE)) != 0)
1141                 err = nfsd_setattr(rqstp, resfhp, iap, 0, (time_t)0);
1142         /*
1143          * Update the file handle to get the new inode info.
1144          */
1145         if (!err)
1146                 err = fh_update(resfhp);
1147 out:
1148         if (dchild && !IS_ERR(dchild))
1149                 dput(dchild);
1150         return err;
1151
1152 out_nfserr:
1153         err = nfserrno(err);
1154         goto out;
1155 }
1156
1157 #ifdef CONFIG_NFSD_V3
1158 /*
1159  * NFSv3 version of nfsd_create
1160  */
1161 int
1162 nfsd_create_v3(struct svc_rqst *rqstp, struct svc_fh *fhp,
1163                 char *fname, int flen, struct iattr *iap,
1164                 struct svc_fh *resfhp, int createmode, u32 *verifier,
1165                 int *truncp)
1166 {
1167         struct dentry   *dentry, *dchild = NULL;
1168         struct inode    *dirp;
1169         int             err;
1170         __u32           v_mtime=0, v_atime=0;
1171         int             v_mode=0;
1172
1173         err = nfserr_perm;
1174         if (!flen)
1175                 goto out;
1176         err = nfserr_exist;
1177         if (isdotent(fname, flen))
1178                 goto out;
1179         if (!(iap->ia_valid & ATTR_MODE))
1180                 iap->ia_mode = 0;
1181         err = fh_verify(rqstp, fhp, S_IFDIR, MAY_CREATE);
1182         if (err)
1183                 goto out;
1184
1185         dentry = fhp->fh_dentry;
1186         dirp = dentry->d_inode;
1187
1188         /* Get all the sanity checks out of the way before
1189          * we lock the parent. */
1190         err = nfserr_notdir;
1191         if(!dirp->i_op || !dirp->i_op->lookup)
1192                 goto out;
1193         fh_lock(fhp);
1194
1195         /*
1196          * Compose the response file handle.
1197          */
1198         dchild = lookup_one_len(fname, dentry, flen);
1199         err = PTR_ERR(dchild);
1200         if (IS_ERR(dchild))
1201                 goto out_nfserr;
1202
1203         err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1204         if (err)
1205                 goto out;
1206
1207         if (createmode == NFS3_CREATE_EXCLUSIVE) {
1208                 /* while the verifier would fit in mtime+atime,
1209                  * solaris7 gets confused (bugid 4218508) if these have
1210                  * the high bit set, so we use the mode as well
1211                  */
1212                 v_mtime = verifier[0]&0x7fffffff;
1213                 v_atime = verifier[1]&0x7fffffff;
1214                 v_mode  = S_IFREG
1215                         | ((verifier[0]&0x80000000) >> (32-7)) /* u+x */
1216                         | ((verifier[1]&0x80000000) >> (32-9)) /* u+r */
1217                         ;
1218         }
1219         
1220         if (dchild->d_inode) {
1221                 err = 0;
1222
1223                 switch (createmode) {
1224                 case NFS3_CREATE_UNCHECKED:
1225                         if (! S_ISREG(dchild->d_inode->i_mode))
1226                                 err = nfserr_exist;
1227                         else if (truncp) {
1228                                 /* in nfsv4, we need to treat this case a little
1229                                  * differently.  we don't want to truncate the
1230                                  * file now; this would be wrong if the OPEN
1231                                  * fails for some other reason.  furthermore,
1232                                  * if the size is nonzero, we should ignore it
1233                                  * according to spec!
1234                                  */
1235                                 *truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
1236                         }
1237                         else {
1238                                 iap->ia_valid &= ATTR_SIZE;
1239                                 goto set_attr;
1240                         }
1241                         break;
1242                 case NFS3_CREATE_EXCLUSIVE:
1243                         if (   dchild->d_inode->i_mtime.tv_sec == v_mtime
1244                             && dchild->d_inode->i_atime.tv_sec == v_atime
1245                             && dchild->d_inode->i_mode  == v_mode
1246                             && dchild->d_inode->i_size  == 0 )
1247                                 break;
1248                          /* fallthru */
1249                 case NFS3_CREATE_GUARDED:
1250                         err = nfserr_exist;
1251                 }
1252                 goto out;
1253         }
1254
1255         err = vfs_create(dirp, dchild, iap->ia_mode, NULL);
1256         if (err < 0)
1257                 goto out_nfserr;
1258
1259         if (EX_ISSYNC(fhp->fh_export)) {
1260                 nfsd_sync_dir(dentry);
1261                 /* setattr will sync the child (or not) */
1262         }
1263
1264         /*
1265          * Update the filehandle to get the new inode info.
1266          */
1267         err = fh_update(resfhp);
1268         if (err)
1269                 goto out;
1270
1271         if (createmode == NFS3_CREATE_EXCLUSIVE) {
1272                 /* Cram the verifier into atime/mtime/mode */
1273                 iap->ia_valid = ATTR_MTIME|ATTR_ATIME
1274                         | ATTR_MTIME_SET|ATTR_ATIME_SET
1275                         | ATTR_MODE;
1276                 /* XXX someone who knows this better please fix it for nsec */ 
1277                 iap->ia_mtime.tv_sec = v_mtime;
1278                 iap->ia_atime.tv_sec = v_atime;
1279                 iap->ia_mtime.tv_nsec = 0;
1280                 iap->ia_atime.tv_nsec = 0;
1281                 iap->ia_mode  = v_mode;
1282         }
1283
1284         /* Set file attributes.
1285          * Mode has already been set but we might need to reset it
1286          * for CREATE_EXCLUSIVE
1287          * Irix appears to send along the gid when it tries to
1288          * implement setgid directories via NFS. Clear out all that cruft.
1289          */
1290  set_attr:
1291         if ((iap->ia_valid &= ~(ATTR_UID|ATTR_GID)) != 0)
1292                 err = nfsd_setattr(rqstp, resfhp, iap, 0, (time_t)0);
1293
1294  out:
1295         fh_unlock(fhp);
1296         if (dchild && !IS_ERR(dchild))
1297                 dput(dchild);
1298         return err;
1299  
1300  out_nfserr:
1301         err = nfserrno(err);
1302         goto out;
1303 }
1304 #endif /* CONFIG_NFSD_V3 */
1305
1306 /*
1307  * Read a symlink. On entry, *lenp must contain the maximum path length that
1308  * fits into the buffer. On return, it contains the true length.
1309  * N.B. After this call fhp needs an fh_put
1310  */
1311 int
1312 nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
1313 {
1314         struct dentry   *dentry;
1315         struct inode    *inode;
1316         mm_segment_t    oldfs;
1317         int             err;
1318
1319         err = fh_verify(rqstp, fhp, S_IFLNK, MAY_NOP);
1320         if (err)
1321                 goto out;
1322
1323         dentry = fhp->fh_dentry;
1324         inode = dentry->d_inode;
1325
1326         err = nfserr_inval;
1327         if (!inode->i_op || !inode->i_op->readlink)
1328                 goto out;
1329
1330         touch_atime(fhp->fh_export->ex_mnt, dentry);
1331         /* N.B. Why does this call need a get_fs()??
1332          * Remove the set_fs and watch the fireworks:-) --okir
1333          */
1334
1335         oldfs = get_fs(); set_fs(KERNEL_DS);
1336         err = inode->i_op->readlink(dentry, buf, *lenp);
1337         set_fs(oldfs);
1338
1339         if (err < 0)
1340                 goto out_nfserr;
1341         *lenp = err;
1342         err = 0;
1343 out:
1344         return err;
1345
1346 out_nfserr:
1347         err = nfserrno(err);
1348         goto out;
1349 }
1350
1351 /*
1352  * Create a symlink and look up its inode
1353  * N.B. After this call _both_ fhp and resfhp need an fh_put
1354  */
1355 int
1356 nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
1357                                 char *fname, int flen,
1358                                 char *path,  int plen,
1359                                 struct svc_fh *resfhp,
1360                                 struct iattr *iap)
1361 {
1362         struct dentry   *dentry, *dnew;
1363         int             err, cerr;
1364         umode_t         mode;
1365
1366         err = nfserr_noent;
1367         if (!flen || !plen)
1368                 goto out;
1369         err = nfserr_exist;
1370         if (isdotent(fname, flen))
1371                 goto out;
1372
1373         err = fh_verify(rqstp, fhp, S_IFDIR, MAY_CREATE);
1374         if (err)
1375                 goto out;
1376         fh_lock(fhp);
1377         dentry = fhp->fh_dentry;
1378         dnew = lookup_one_len(fname, dentry, flen);
1379         err = PTR_ERR(dnew);
1380         if (IS_ERR(dnew))
1381                 goto out_nfserr;
1382
1383         mode = S_IALLUGO;
1384         /* Only the MODE ATTRibute is even vaguely meaningful */
1385         if (iap && (iap->ia_valid & ATTR_MODE))
1386                 mode = iap->ia_mode & S_IALLUGO;
1387
1388         if (unlikely(path[plen] != 0)) {
1389                 char *path_alloced = kmalloc(plen+1, GFP_KERNEL);
1390                 if (path_alloced == NULL)
1391                         err = -ENOMEM;
1392                 else {
1393                         strncpy(path_alloced, path, plen);
1394                         path_alloced[plen] = 0;
1395                         err = vfs_symlink(dentry->d_inode, dnew, path_alloced, mode);
1396                         kfree(path_alloced);
1397                 }
1398         } else
1399                 err = vfs_symlink(dentry->d_inode, dnew, path, mode);
1400
1401         if (!err) {
1402                 if (EX_ISSYNC(fhp->fh_export))
1403                         nfsd_sync_dir(dentry);
1404         } else
1405                 err = nfserrno(err);
1406         fh_unlock(fhp);
1407
1408         cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
1409         dput(dnew);
1410         if (err==0) err = cerr;
1411 out:
1412         return err;
1413
1414 out_nfserr:
1415         err = nfserrno(err);
1416         goto out;
1417 }
1418
1419 /*
1420  * Create a hardlink
1421  * N.B. After this call _both_ ffhp and tfhp need an fh_put
1422  */
1423 int
1424 nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
1425                                 char *name, int len, struct svc_fh *tfhp)
1426 {
1427         struct dentry   *ddir, *dnew, *dold;
1428         struct inode    *dirp, *dest;
1429         int             err;
1430
1431         err = fh_verify(rqstp, ffhp, S_IFDIR, MAY_CREATE);
1432         if (err)
1433                 goto out;
1434         err = fh_verify(rqstp, tfhp, -S_IFDIR, MAY_NOP);
1435         if (err)
1436                 goto out;
1437
1438         err = nfserr_perm;
1439         if (!len)
1440                 goto out;
1441         err = nfserr_exist;
1442         if (isdotent(name, len))
1443                 goto out;
1444
1445         fh_lock(ffhp);
1446         ddir = ffhp->fh_dentry;
1447         dirp = ddir->d_inode;
1448
1449         dnew = lookup_one_len(name, ddir, len);
1450         err = PTR_ERR(dnew);
1451         if (IS_ERR(dnew))
1452                 goto out_nfserr;
1453
1454         dold = tfhp->fh_dentry;
1455         dest = dold->d_inode;
1456
1457         err = vfs_link(dold, dirp, dnew);
1458         if (!err) {
1459                 if (EX_ISSYNC(ffhp->fh_export)) {
1460                         nfsd_sync_dir(ddir);
1461                         write_inode_now(dest, 1);
1462                 }
1463         } else {
1464                 if (err == -EXDEV && rqstp->rq_vers == 2)
1465                         err = nfserr_acces;
1466                 else
1467                         err = nfserrno(err);
1468         }
1469
1470         fh_unlock(ffhp);
1471         dput(dnew);
1472 out:
1473         return err;
1474
1475 out_nfserr:
1476         err = nfserrno(err);
1477         goto out;
1478 }
1479
1480 /*
1481  * Rename a file
1482  * N.B. After this call _both_ ffhp and tfhp need an fh_put
1483  */
1484 int
1485 nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
1486                             struct svc_fh *tfhp, char *tname, int tlen)
1487 {
1488         struct dentry   *fdentry, *tdentry, *odentry, *ndentry, *trap;
1489         struct inode    *fdir, *tdir;
1490         int             err;
1491
1492         err = fh_verify(rqstp, ffhp, S_IFDIR, MAY_REMOVE);
1493         if (err)
1494                 goto out;
1495         err = fh_verify(rqstp, tfhp, S_IFDIR, MAY_CREATE);
1496         if (err)
1497                 goto out;
1498
1499         fdentry = ffhp->fh_dentry;
1500         fdir = fdentry->d_inode;
1501
1502         tdentry = tfhp->fh_dentry;
1503         tdir = tdentry->d_inode;
1504
1505         err = (rqstp->rq_vers == 2) ? nfserr_acces : nfserr_xdev;
1506         if (fdir->i_sb != tdir->i_sb)
1507                 goto out;
1508
1509         err = nfserr_perm;
1510         if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
1511                 goto out;
1512
1513         /* cannot use fh_lock as we need deadlock protective ordering
1514          * so do it by hand */
1515         trap = lock_rename(tdentry, fdentry);
1516         ffhp->fh_locked = tfhp->fh_locked = 1;
1517         fill_pre_wcc(ffhp);
1518         fill_pre_wcc(tfhp);
1519
1520         odentry = lookup_one_len(fname, fdentry, flen);
1521         err = PTR_ERR(odentry);
1522         if (IS_ERR(odentry))
1523                 goto out_nfserr;
1524
1525         err = -ENOENT;
1526         if (!odentry->d_inode)
1527                 goto out_dput_old;
1528         err = -EINVAL;
1529         if (odentry == trap)
1530                 goto out_dput_old;
1531
1532         ndentry = lookup_one_len(tname, tdentry, tlen);
1533         err = PTR_ERR(ndentry);
1534         if (IS_ERR(ndentry))
1535                 goto out_dput_old;
1536         err = -ENOTEMPTY;
1537         if (ndentry == trap)
1538                 goto out_dput_new;
1539
1540 #ifdef MSNFS
1541         if ((ffhp->fh_export->ex_flags & NFSEXP_MSNFS) &&
1542                 ((atomic_read(&odentry->d_count) > 1)
1543                  || (atomic_read(&ndentry->d_count) > 1))) {
1544                         err = nfserr_perm;
1545         } else
1546 #endif
1547         err = vfs_rename(fdir, odentry, tdir, ndentry);
1548         if (!err && EX_ISSYNC(tfhp->fh_export)) {
1549                 nfsd_sync_dir(tdentry);
1550                 nfsd_sync_dir(fdentry);
1551         }
1552
1553  out_dput_new:
1554         dput(ndentry);
1555  out_dput_old:
1556         dput(odentry);
1557  out_nfserr:
1558         if (err)
1559                 err = nfserrno(err);
1560
1561         /* we cannot reply on fh_unlock on the two filehandles,
1562          * as that would do the wrong thing if the two directories
1563          * were the same, so again we do it by hand
1564          */
1565         fill_post_wcc(ffhp);
1566         fill_post_wcc(tfhp);
1567         unlock_rename(tdentry, fdentry);
1568         ffhp->fh_locked = tfhp->fh_locked = 0;
1569
1570 out:
1571         return err;
1572 }
1573
1574 /*
1575  * Unlink a file or directory
1576  * N.B. After this call fhp needs an fh_put
1577  */
1578 int
1579 nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
1580                                 char *fname, int flen)
1581 {
1582         struct dentry   *dentry, *rdentry;
1583         struct inode    *dirp;
1584         int             err;
1585
1586         err = nfserr_acces;
1587         if (!flen || isdotent(fname, flen))
1588                 goto out;
1589         err = fh_verify(rqstp, fhp, S_IFDIR, MAY_REMOVE);
1590         if (err)
1591                 goto out;
1592
1593         fh_lock(fhp);
1594         dentry = fhp->fh_dentry;
1595         dirp = dentry->d_inode;
1596
1597         rdentry = lookup_one_len(fname, dentry, flen);
1598         err = PTR_ERR(rdentry);
1599         if (IS_ERR(rdentry))
1600                 goto out_nfserr;
1601
1602         if (!rdentry->d_inode) {
1603                 dput(rdentry);
1604                 err = nfserr_noent;
1605                 goto out;
1606         }
1607
1608         if (!type)
1609                 type = rdentry->d_inode->i_mode & S_IFMT;
1610
1611         if (type != S_IFDIR) { /* It's UNLINK */
1612 #ifdef MSNFS
1613                 if ((fhp->fh_export->ex_flags & NFSEXP_MSNFS) &&
1614                         (atomic_read(&rdentry->d_count) > 1)) {
1615                         err = nfserr_perm;
1616                 } else
1617 #endif
1618                 err = vfs_unlink(dirp, rdentry);
1619         } else { /* It's RMDIR */
1620                 err = vfs_rmdir(dirp, rdentry);
1621         }
1622
1623         dput(rdentry);
1624
1625         if (err)
1626                 goto out_nfserr;
1627         if (EX_ISSYNC(fhp->fh_export)) 
1628                 nfsd_sync_dir(dentry);
1629
1630 out:
1631         return err;
1632
1633 out_nfserr:
1634         err = nfserrno(err);
1635         goto out;
1636 }
1637
1638 /*
1639  * Read entries from a directory.
1640  * The  NFSv3/4 verifier we ignore for now.
1641  */
1642 int
1643 nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp, 
1644              struct readdir_cd *cdp, encode_dent_fn func)
1645 {
1646         int             err;
1647         struct file     *file;
1648         loff_t          offset = *offsetp;
1649
1650         err = nfsd_open(rqstp, fhp, S_IFDIR, MAY_READ, &file);
1651         if (err)
1652                 goto out;
1653
1654         offset = vfs_llseek(file, offset, 0);
1655         if (offset < 0) {
1656                 err = nfserrno((int)offset);
1657                 goto out_close;
1658         }
1659
1660         /*
1661          * Read the directory entries. This silly loop is necessary because
1662          * readdir() is not guaranteed to fill up the entire buffer, but
1663          * may choose to do less.
1664          */
1665
1666         do {
1667                 cdp->err = nfserr_eof; /* will be cleared on successful read */
1668                 err = vfs_readdir(file, (filldir_t) func, cdp);
1669         } while (err >=0 && cdp->err == nfs_ok);
1670         if (err)
1671                 err = nfserrno(err);
1672         else
1673                 err = cdp->err;
1674         *offsetp = vfs_llseek(file, 0, 1);
1675
1676         if (err == nfserr_eof || err == nfserr_toosmall)
1677                 err = nfs_ok; /* can still be found in ->err */
1678 out_close:
1679         nfsd_close(file);
1680 out:
1681         return err;
1682 }
1683
1684 /*
1685  * Get file system stats
1686  * N.B. After this call fhp needs an fh_put
1687  */
1688 int
1689 nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat)
1690 {
1691         int err = fh_verify(rqstp, fhp, 0, MAY_NOP);
1692         if (!err && vfs_statfs(fhp->fh_dentry->d_inode->i_sb,stat))
1693                 err = nfserr_io;
1694         return err;
1695 }
1696
1697 /*
1698  * Check for a user's access permissions to this inode.
1699  */
1700 int
1701 nfsd_permission(struct svc_export *exp, struct dentry *dentry, int acc)
1702 {
1703         struct inode    *inode = dentry->d_inode;
1704         int             err;
1705
1706         if (acc == MAY_NOP)
1707                 return 0;
1708 #if 0
1709         dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
1710                 acc,
1711                 (acc & MAY_READ)?       " read"  : "",
1712                 (acc & MAY_WRITE)?      " write" : "",
1713                 (acc & MAY_EXEC)?       " exec"  : "",
1714                 (acc & MAY_SATTR)?      " sattr" : "",
1715                 (acc & MAY_TRUNC)?      " trunc" : "",
1716                 (acc & MAY_LOCK)?       " lock"  : "",
1717                 (acc & MAY_OWNER_OVERRIDE)? " owneroverride" : "",
1718                 inode->i_mode,
1719                 IS_IMMUTABLE(inode)?    " immut" : "",
1720                 IS_APPEND(inode)?       " append" : "",
1721                 IS_RDONLY(inode)?       " ro" : "");
1722         dprintk("      owner %d/%d user %d/%d\n",
1723                 inode->i_uid, inode->i_gid, current->fsuid, current->fsgid);
1724 #endif
1725
1726         /* Normally we reject any write/sattr etc access on a read-only file
1727          * system.  But if it is IRIX doing check on write-access for a 
1728          * device special file, we ignore rofs.
1729          */
1730         if (!(acc & MAY_LOCAL_ACCESS))
1731                 if (acc & (MAY_WRITE | MAY_SATTR | MAY_TRUNC)) {
1732                         if (EX_RDONLY(exp) || IS_RDONLY(inode))
1733                                 return nfserr_rofs;
1734                         if (/* (acc & MAY_WRITE) && */ IS_IMMUTABLE(inode))
1735                                 return nfserr_perm;
1736                 }
1737         if ((acc & MAY_TRUNC) && IS_APPEND(inode))
1738                 return nfserr_perm;
1739
1740         if (acc & MAY_LOCK) {
1741                 /* If we cannot rely on authentication in NLM requests,
1742                  * just allow locks, otherwise require read permission, or
1743                  * ownership
1744                  */
1745                 if (exp->ex_flags & NFSEXP_NOAUTHNLM)
1746                         return 0;
1747                 else
1748                         acc = MAY_READ | MAY_OWNER_OVERRIDE;
1749         }
1750         /*
1751          * The file owner always gets access permission for accesses that
1752          * would normally be checked at open time. This is to make
1753          * file access work even when the client has done a fchmod(fd, 0).
1754          *
1755          * However, `cp foo bar' should fail nevertheless when bar is
1756          * readonly. A sensible way to do this might be to reject all
1757          * attempts to truncate a read-only file, because a creat() call
1758          * always implies file truncation.
1759          * ... but this isn't really fair.  A process may reasonably call
1760          * ftruncate on an open file descriptor on a file with perm 000.
1761          * We must trust the client to do permission checking - using "ACCESS"
1762          * with NFSv3.
1763          */
1764         if ((acc & MAY_OWNER_OVERRIDE) &&
1765             inode->i_uid == current->fsuid)
1766                 return 0;
1767
1768         err = permission(inode, acc & (MAY_READ|MAY_WRITE|MAY_EXEC), NULL);
1769
1770         /* Allow read access to binaries even when mode 111 */
1771         if (err == -EACCES && S_ISREG(inode->i_mode) &&
1772             acc == (MAY_READ | MAY_OWNER_OVERRIDE))
1773                 err = permission(inode, MAY_EXEC, NULL);
1774
1775         return err? nfserrno(err) : 0;
1776 }
1777
1778 void
1779 nfsd_racache_shutdown(void)
1780 {
1781         if (!raparm_cache)
1782                 return;
1783         dprintk("nfsd: freeing readahead buffers.\n");
1784         kfree(raparml);
1785         raparm_cache = raparml = NULL;
1786 }
1787 /*
1788  * Initialize readahead param cache
1789  */
1790 int
1791 nfsd_racache_init(int cache_size)
1792 {
1793         int     i;
1794
1795         if (raparm_cache)
1796                 return 0;
1797         raparml = kmalloc(sizeof(struct raparms) * cache_size, GFP_KERNEL);
1798
1799         if (raparml != NULL) {
1800                 dprintk("nfsd: allocating %d readahead buffers.\n",
1801                         cache_size);
1802                 memset(raparml, 0, sizeof(struct raparms) * cache_size);
1803                 for (i = 0; i < cache_size - 1; i++) {
1804                         raparml[i].p_next = raparml + i + 1;
1805                 }
1806                 raparm_cache = raparml;
1807         } else {
1808                 printk(KERN_WARNING
1809                        "nfsd: Could not allocate memory read-ahead cache.\n");
1810                 return -ENOMEM;
1811         }
1812         nfsdstats.ra_size = cache_size;
1813         return 0;
1814 }