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