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