1 #define MSNFS /* HACK HACK */
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.
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.
15 * Copyright (C) 1995-1999 Olaf Kirch <okir@monad.swb.de>
16 * Zerocpy NFS support (C) 2002 Hirokazu Takahashi <taka@valinux.co.jp>
19 #include <linux/config.h>
20 #include <linux/string.h>
21 #include <linux/time.h>
22 #include <linux/errno.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>
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>
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>
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 */
59 #include <asm/uaccess.h>
61 #define NFSDDBG_FACILITY NFSDDBG_FILEOP
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
69 #define IS_ISMNDLK(i) (S_ISREG((i)->i_mode) && MANDATORY_LOCK(i))
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.
79 struct raparms
*p_next
;
84 struct file_ra_state p_ra
;
87 static struct raparms
* raparml
;
88 static struct raparms
* raparm_cache
;
91 * Called from nfsd_lookup and encode_dirent. Check if we have crossed
93 * Returns -EAGAIN leaving *dpp and *expp unchanged,
94 * or nfs_ok having possibly changed *dpp and *expp
97 nfsd_cross_mnt(struct svc_rqst
*rqstp
, struct dentry
**dpp
,
98 struct svc_export
**expp
)
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
);
106 while (follow_down(&mnt
,&mounts
)&&d_mountpoint(mounts
));
108 exp2
= exp_get_by_name(exp
->ex_client
, mnt
, mounts
, &rqstp
->rq_chandle
);
115 if (exp2
&& ((exp
->ex_flags
& NFSEXP_CROSSMOUNT
) || EX_NOHIDE(exp2
))) {
116 /* successfully crossed mount point */
122 if (exp2
) exp_put(exp2
);
131 * Look up one component of a pathname.
132 * N.B. After this call _both_ fhp and resfh need an fh_put
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>
143 nfsd_lookup(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, const char *name
,
144 int len
, struct svc_fh
*resfh
)
146 struct svc_export
*exp
;
147 struct dentry
*dparent
;
148 struct dentry
*dentry
;
151 dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp
), len
,name
);
153 /* Obtain dentry and export. */
154 err
= fh_verify(rqstp
, fhp
, S_IFDIR
, MAY_EXEC
);
158 dparent
= fhp
->fh_dentry
;
159 exp
= fhp
->fh_export
;
164 /* Lookup the name, but don't follow links */
165 if (isdotent(name
, len
)) {
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 / */
173 /* checking mountpoint crossing is very different when stepping up */
174 struct svc_export
*exp2
= NULL
;
176 struct vfsmount
*mnt
= mntget(exp
->ex_mnt
);
177 dentry
= dget(dparent
);
178 while(dentry
== mnt
->mnt_root
&& follow_up(&mnt
, &dentry
))
180 dp
= dget_parent(dentry
);
184 exp2
= exp_parent(exp
->ex_client
, mnt
, dentry
,
194 dentry
= dget(dparent
);
203 dentry
= lookup_one_len(name
, dparent
, len
);
204 err
= PTR_ERR(dentry
);
208 * check if we have crossed a mount point ...
210 if (d_mountpoint(dentry
)) {
211 if ((err
= nfsd_cross_mnt(rqstp
, &dentry
, &exp
))) {
218 * Note: we compose the file handle now, but as the
219 * dentry may be negative, it may need to be updated.
221 err
= fh_compose(resfh
, exp
, dentry
, fhp
);
222 if (!err
&& !dentry
->d_inode
)
235 * Set various file attributes.
236 * N.B. After this call fhp needs an fh_put
239 nfsd_setattr(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct iattr
*iap
,
240 int check_guard
, time_t guardtime
)
242 struct dentry
*dentry
;
244 int accmode
= MAY_SATTR
;
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
)
256 err
= fh_verify(rqstp
, fhp
, ftype
, accmode
);
260 dentry
= fhp
->fh_dentry
;
261 inode
= dentry
->d_inode
;
263 /* Ignore any mode updates on symlinks */
264 if (S_ISLNK(inode
->i_mode
))
265 iap
->ia_valid
&= ~ATTR_MODE
;
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"
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.
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
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.
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"
297 iap
->ia_valid
&= ~BOTH_TIME_SET
;
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
);
310 * If we are changing the size of the file, then
311 * we need to break all leases.
313 err
= break_lease(inode
, FMODE_WRITE
| O_NONBLOCK
);
314 if (err
== -EWOULDBLOCK
)
316 if (err
) /* ENOMEM or EWOULDBLOCK */
319 err
= get_write_access(inode
);
324 err
= locks_verify_truncate(inode
, NULL
, iap
->ia_size
);
326 put_write_access(inode
);
332 imode
= inode
->i_mode
;
333 if (iap
->ia_valid
& ATTR_MODE
) {
334 iap
->ia_mode
&= S_IALLUGO
;
335 imode
= iap
->ia_mode
|= (imode
& ~S_IALLUGO
);
338 /* Revoke setuid/setgid bit on chown/chgrp */
339 if ((iap
->ia_valid
& ATTR_UID
) && iap
->ia_uid
!= inode
->i_uid
)
340 iap
->ia_valid
|= ATTR_KILL_SUID
;
341 if ((iap
->ia_valid
& ATTR_GID
) && iap
->ia_gid
!= inode
->i_gid
)
342 iap
->ia_valid
|= ATTR_KILL_SGID
;
344 /* Change the attributes. */
346 iap
->ia_valid
|= ATTR_CTIME
;
348 err
= nfserr_notsync
;
349 if (!check_guard
|| guardtime
== inode
->i_ctime
.tv_sec
) {
351 err
= notify_change(dentry
, iap
);
356 put_write_access(inode
);
358 if (EX_ISSYNC(fhp
->fh_export
))
359 write_inode_now(inode
, 1);
368 #if defined(CONFIG_NFSD_V2_ACL) || \
369 defined(CONFIG_NFSD_V3_ACL) || \
370 defined(CONFIG_NFSD_V4)
371 static ssize_t
nfsd_getxattr(struct dentry
*dentry
, char *key
, void **buf
)
376 buflen
= vfs_getxattr(dentry
, key
, NULL
, 0);
380 *buf
= kmalloc(buflen
, GFP_KERNEL
);
384 error
= vfs_getxattr(dentry
, key
, *buf
, buflen
);
391 #if defined(CONFIG_NFSD_V4)
393 set_nfsv4_acl_one(struct dentry
*dentry
, struct posix_acl
*pacl
, char *key
)
400 buflen
= posix_acl_xattr_size(pacl
->a_count
);
401 buf
= kmalloc(buflen
, GFP_KERNEL
);
406 len
= posix_acl_to_xattr(pacl
, buf
, buflen
);
412 error
= vfs_setxattr(dentry
, key
, buf
, len
, 0);
419 nfsd4_set_nfs4_acl(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
420 struct nfs4_acl
*acl
)
423 struct dentry
*dentry
;
425 struct posix_acl
*pacl
= NULL
, *dpacl
= NULL
;
426 unsigned int flags
= 0;
429 error
= fh_verify(rqstp
, fhp
, 0 /* S_IFREG */, MAY_SATTR
);
433 dentry
= fhp
->fh_dentry
;
434 inode
= dentry
->d_inode
;
435 if (S_ISDIR(inode
->i_mode
))
436 flags
= NFS4_ACL_DIR
;
438 error
= nfs4_acl_nfsv4_to_posix(acl
, &pacl
, &dpacl
, flags
);
439 if (error
== -EINVAL
) {
440 error
= nfserr_attrnotsupp
;
442 } else if (error
< 0)
446 error
= set_nfsv4_acl_one(dentry
, pacl
, POSIX_ACL_XATTR_ACCESS
);
452 error
= set_nfsv4_acl_one(dentry
, dpacl
, POSIX_ACL_XATTR_DEFAULT
);
460 posix_acl_release(pacl
);
461 posix_acl_release(dpacl
);
464 error
= nfserrno(error
);
468 static struct posix_acl
*
469 _get_posix_acl(struct dentry
*dentry
, char *key
)
472 struct posix_acl
*pacl
= NULL
;
475 buflen
= nfsd_getxattr(dentry
, key
, &buf
);
479 return ERR_PTR(buflen
);
481 pacl
= posix_acl_from_xattr(buf
, buflen
);
487 nfsd4_get_nfs4_acl(struct svc_rqst
*rqstp
, struct dentry
*dentry
, struct nfs4_acl
**acl
)
489 struct inode
*inode
= dentry
->d_inode
;
491 struct posix_acl
*pacl
= NULL
, *dpacl
= NULL
;
492 unsigned int flags
= 0;
494 pacl
= _get_posix_acl(dentry
, POSIX_ACL_XATTR_ACCESS
);
495 if (IS_ERR(pacl
) && PTR_ERR(pacl
) == -ENODATA
)
496 pacl
= posix_acl_from_mode(inode
->i_mode
, GFP_KERNEL
);
498 error
= PTR_ERR(pacl
);
503 if (S_ISDIR(inode
->i_mode
)) {
504 dpacl
= _get_posix_acl(dentry
, POSIX_ACL_XATTR_DEFAULT
);
505 if (IS_ERR(dpacl
) && PTR_ERR(dpacl
) == -ENODATA
)
507 else if (IS_ERR(dpacl
)) {
508 error
= PTR_ERR(dpacl
);
512 flags
= NFS4_ACL_DIR
;
515 *acl
= nfs4_acl_posix_to_nfsv4(pacl
, dpacl
, flags
);
517 error
= PTR_ERR(*acl
);
521 posix_acl_release(pacl
);
522 posix_acl_release(dpacl
);
526 #endif /* defined(CONFIG_NFS_V4) */
528 #ifdef CONFIG_NFSD_V3
530 * Check server access rights to a file system object
536 static struct accessmap nfs3_regaccess
[] = {
537 { NFS3_ACCESS_READ
, MAY_READ
},
538 { NFS3_ACCESS_EXECUTE
, MAY_EXEC
},
539 { NFS3_ACCESS_MODIFY
, MAY_WRITE
|MAY_TRUNC
},
540 { NFS3_ACCESS_EXTEND
, MAY_WRITE
},
545 static struct accessmap nfs3_diraccess
[] = {
546 { NFS3_ACCESS_READ
, MAY_READ
},
547 { NFS3_ACCESS_LOOKUP
, MAY_EXEC
},
548 { NFS3_ACCESS_MODIFY
, MAY_EXEC
|MAY_WRITE
|MAY_TRUNC
},
549 { NFS3_ACCESS_EXTEND
, MAY_EXEC
|MAY_WRITE
},
550 { NFS3_ACCESS_DELETE
, MAY_REMOVE
},
555 static struct accessmap nfs3_anyaccess
[] = {
556 /* Some clients - Solaris 2.6 at least, make an access call
557 * to the server to check for access for things like /dev/null
558 * (which really, the server doesn't care about). So
559 * We provide simple access checking for them, looking
560 * mainly at mode bits, and we make sure to ignore read-only
563 { NFS3_ACCESS_READ
, MAY_READ
},
564 { NFS3_ACCESS_EXECUTE
, MAY_EXEC
},
565 { NFS3_ACCESS_MODIFY
, MAY_WRITE
|MAY_LOCAL_ACCESS
},
566 { NFS3_ACCESS_EXTEND
, MAY_WRITE
|MAY_LOCAL_ACCESS
},
572 nfsd_access(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, u32
*access
, u32
*supported
)
574 struct accessmap
*map
;
575 struct svc_export
*export
;
576 struct dentry
*dentry
;
577 u32 query
, result
= 0, sresult
= 0;
580 error
= fh_verify(rqstp
, fhp
, 0, MAY_NOP
);
584 export
= fhp
->fh_export
;
585 dentry
= fhp
->fh_dentry
;
587 if (S_ISREG(dentry
->d_inode
->i_mode
))
588 map
= nfs3_regaccess
;
589 else if (S_ISDIR(dentry
->d_inode
->i_mode
))
590 map
= nfs3_diraccess
;
592 map
= nfs3_anyaccess
;
596 for (; map
->access
; map
++) {
597 if (map
->access
& query
) {
600 sresult
|= map
->access
;
602 err2
= nfsd_permission(export
, dentry
, map
->how
);
605 result
|= map
->access
;
608 /* the following error codes just mean the access was not allowed,
609 * rather than an error occurred */
613 /* simply don't "or" in the access bit. */
623 *supported
= sresult
;
628 #endif /* CONFIG_NFSD_V3 */
633 * Open an existing file or directory.
634 * The access argument indicates the type of open (read/write/lock)
635 * N.B. After this call fhp needs an fh_put
638 nfsd_open(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, int type
,
639 int access
, struct file
**filp
)
641 struct dentry
*dentry
;
643 int flags
= O_RDONLY
|O_LARGEFILE
, err
;
646 * If we get here, then the client has already done an "open",
647 * and (hopefully) checked permission - so allow OWNER_OVERRIDE
648 * in case a chmod has now revoked permission.
650 err
= fh_verify(rqstp
, fhp
, type
, access
| MAY_OWNER_OVERRIDE
);
654 dentry
= fhp
->fh_dentry
;
655 inode
= dentry
->d_inode
;
657 /* Disallow write access to files with the append-only bit set
658 * or any access when mandatory locking enabled
661 if (IS_APPEND(inode
) && (access
& MAY_WRITE
))
663 if (IS_ISMNDLK(inode
))
670 * Check to see if there are any leases on this file.
671 * This may block while leases are broken.
673 err
= break_lease(inode
, O_NONBLOCK
| ((access
& MAY_WRITE
) ? FMODE_WRITE
: 0));
674 if (err
== -EWOULDBLOCK
)
676 if (err
) /* NOMEM or WOULDBLOCK */
679 if (access
& MAY_WRITE
) {
680 flags
= O_WRONLY
|O_LARGEFILE
;
684 *filp
= dentry_open(dget(dentry
), mntget(fhp
->fh_export
->ex_mnt
), flags
);
686 err
= PTR_ERR(*filp
);
698 nfsd_close(struct file
*filp
)
705 * As this calls fsync (not fdatasync) there is no need for a write_inode
708 static inline int nfsd_dosync(struct file
*filp
, struct dentry
*dp
,
709 struct file_operations
*fop
)
711 struct inode
*inode
= dp
->d_inode
;
712 int (*fsync
) (struct file
*, struct dentry
*, int);
715 err
= filemap_fdatawrite(inode
->i_mapping
);
716 if (err
== 0 && fop
&& (fsync
= fop
->fsync
))
717 err
= fsync(filp
, dp
, 0);
719 err
= filemap_fdatawait(inode
->i_mapping
);
726 nfsd_sync(struct file
*filp
)
729 struct inode
*inode
= filp
->f_dentry
->d_inode
;
730 dprintk("nfsd: sync file %s\n", filp
->f_dentry
->d_name
.name
);
731 mutex_lock(&inode
->i_mutex
);
732 err
=nfsd_dosync(filp
, filp
->f_dentry
, filp
->f_op
);
733 mutex_unlock(&inode
->i_mutex
);
739 nfsd_sync_dir(struct dentry
*dp
)
741 return nfsd_dosync(NULL
, dp
, dp
->d_inode
->i_fop
);
745 * Obtain the readahead parameters for the file
746 * specified by (dev, ino).
748 static DEFINE_SPINLOCK(ra_lock
);
750 static inline struct raparms
*
751 nfsd_get_raparms(dev_t dev
, ino_t ino
)
753 struct raparms
*ra
, **rap
, **frap
= NULL
;
757 for (rap
= &raparm_cache
; (ra
= *rap
); rap
= &ra
->p_next
) {
758 if (ra
->p_ino
== ino
&& ra
->p_dev
== dev
)
761 if (ra
->p_count
== 0)
764 depth
= nfsdstats
.ra_size
*11/10;
766 spin_unlock(&ra_lock
);
775 if (rap
!= &raparm_cache
) {
777 ra
->p_next
= raparm_cache
;
781 nfsdstats
.ra_depth
[depth
*10/nfsdstats
.ra_size
]++;
782 spin_unlock(&ra_lock
);
787 * Grab and keep cached pages assosiated with a file in the svc_rqst
788 * so that they can be passed to the netowork sendmsg/sendpage routines
789 * directrly. They will be released after the sending has completed.
792 nfsd_read_actor(read_descriptor_t
*desc
, struct page
*page
, unsigned long offset
, unsigned long size
)
794 unsigned long count
= desc
->count
;
795 struct svc_rqst
*rqstp
= desc
->arg
.data
;
800 if (rqstp
->rq_res
.page_len
== 0) {
802 rqstp
->rq_respages
[rqstp
->rq_resused
++] = page
;
803 rqstp
->rq_res
.page_base
= offset
;
804 rqstp
->rq_res
.page_len
= size
;
805 } else if (page
!= rqstp
->rq_respages
[rqstp
->rq_resused
-1]) {
807 rqstp
->rq_respages
[rqstp
->rq_resused
++] = page
;
808 rqstp
->rq_res
.page_len
+= size
;
810 rqstp
->rq_res
.page_len
+= size
;
813 desc
->count
= count
- size
;
814 desc
->written
+= size
;
819 nfsd_vfs_read(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct file
*file
,
820 loff_t offset
, struct kvec
*vec
, int vlen
, unsigned long *count
)
828 inode
= file
->f_dentry
->d_inode
;
830 if ((fhp
->fh_export
->ex_flags
& NFSEXP_MSNFS
) &&
831 (!lock_may_read(inode
, offset
, *count
)))
835 /* Get readahead parameters */
836 ra
= nfsd_get_raparms(inode
->i_sb
->s_dev
, inode
->i_ino
);
839 file
->f_ra
= ra
->p_ra
;
841 if (file
->f_op
->sendfile
) {
842 svc_pushback_unused_pages(rqstp
);
843 err
= file
->f_op
->sendfile(file
, &offset
, *count
,
844 nfsd_read_actor
, rqstp
);
848 err
= vfs_readv(file
, (struct iovec __user
*)vec
, vlen
, &offset
);
852 /* Write back readahead params */
855 ra
->p_ra
= file
->f_ra
;
858 spin_unlock(&ra_lock
);
862 nfsdstats
.io_read
+= err
;
865 fsnotify_access(file
->f_dentry
);
872 static void kill_suid(struct dentry
*dentry
)
875 ia
.ia_valid
= ATTR_KILL_SUID
| ATTR_KILL_SGID
;
877 mutex_lock(&dentry
->d_inode
->i_mutex
);
878 notify_change(dentry
, &ia
);
879 mutex_unlock(&dentry
->d_inode
->i_mutex
);
883 nfsd_vfs_write(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct file
*file
,
884 loff_t offset
, struct kvec
*vec
, int vlen
,
885 unsigned long cnt
, int *stablep
)
887 struct svc_export
*exp
;
888 struct dentry
*dentry
;
892 int stable
= *stablep
;
897 if ((fhp
->fh_export
->ex_flags
& NFSEXP_MSNFS
) &&
898 (!lock_may_write(file
->f_dentry
->d_inode
, offset
, cnt
)))
902 dentry
= file
->f_dentry
;
903 inode
= dentry
->d_inode
;
904 exp
= fhp
->fh_export
;
907 * Request sync writes if
908 * - the sync export option has been set, or
909 * - the client requested O_SYNC behavior (NFSv3 feature).
910 * - The file system doesn't support fsync().
911 * When gathered writes have been configured for this volume,
912 * flushing the data to disk is handled separately below.
915 if (file
->f_op
->fsync
== 0) {/* COMMIT3 cannot work */
917 *stablep
= 2; /* FILE_SYNC */
922 if (stable
&& !EX_WGATHER(exp
))
923 file
->f_flags
|= O_SYNC
;
925 /* Write the data. */
926 oldfs
= get_fs(); set_fs(KERNEL_DS
);
927 err
= vfs_writev(file
, (struct iovec __user
*)vec
, vlen
, &offset
);
930 nfsdstats
.io_write
+= cnt
;
931 fsnotify_modify(file
->f_dentry
);
934 /* clear setuid/setgid flag after write */
935 if (err
>= 0 && (inode
->i_mode
& (S_ISUID
| S_ISGID
)))
938 if (err
>= 0 && stable
) {
939 static ino_t last_ino
;
940 static dev_t last_dev
;
943 * Gathered writes: If another process is currently
944 * writing to the file, there's a high chance
945 * this is another nfsd (triggered by a bulk write
946 * from a client's biod). Rather than syncing the
947 * file with each write request, we sleep for 10 msec.
949 * I don't know if this roughly approximates
950 * C. Juszak's idea of gathered writes, but it's a
951 * nice and simple solution (IMHO), and it seems to
954 if (EX_WGATHER(exp
)) {
955 if (atomic_read(&inode
->i_writecount
) > 1
956 || (last_ino
== inode
->i_ino
&& last_dev
== inode
->i_sb
->s_dev
)) {
957 dprintk("nfsd: write defer %d\n", current
->pid
);
959 dprintk("nfsd: write resume %d\n", current
->pid
);
962 if (inode
->i_state
& I_DIRTY
) {
963 dprintk("nfsd: write sync %d\n", current
->pid
);
967 wake_up(&inode
->i_wait
);
970 last_ino
= inode
->i_ino
;
971 last_dev
= inode
->i_sb
->s_dev
;
974 dprintk("nfsd: write complete err=%d\n", err
);
984 * Read data from a file. count must contain the requested read count
985 * on entry. On return, *count contains the number of bytes actually read.
986 * N.B. After this call fhp needs an fh_put
989 nfsd_read(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct file
*file
,
990 loff_t offset
, struct kvec
*vec
, int vlen
,
991 unsigned long *count
)
996 err
= nfsd_permission(fhp
->fh_export
, fhp
->fh_dentry
,
997 MAY_READ
|MAY_OWNER_OVERRIDE
);
1000 err
= nfsd_vfs_read(rqstp
, fhp
, file
, offset
, vec
, vlen
, count
);
1002 err
= nfsd_open(rqstp
, fhp
, S_IFREG
, MAY_READ
, &file
);
1005 err
= nfsd_vfs_read(rqstp
, fhp
, file
, offset
, vec
, vlen
, count
);
1013 * Write data to a file.
1014 * The stable flag requests synchronous writes.
1015 * N.B. After this call fhp needs an fh_put
1018 nfsd_write(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct file
*file
,
1019 loff_t offset
, struct kvec
*vec
, int vlen
, unsigned long cnt
,
1025 err
= nfsd_permission(fhp
->fh_export
, fhp
->fh_dentry
,
1026 MAY_WRITE
|MAY_OWNER_OVERRIDE
);
1029 err
= nfsd_vfs_write(rqstp
, fhp
, file
, offset
, vec
, vlen
, cnt
,
1032 err
= nfsd_open(rqstp
, fhp
, S_IFREG
, MAY_WRITE
, &file
);
1037 err
= nfsd_vfs_write(rqstp
, fhp
, file
, offset
, vec
, vlen
,
1045 #ifdef CONFIG_NFSD_V3
1047 * Commit all pending writes to stable storage.
1048 * Strictly speaking, we could sync just the indicated file region here,
1049 * but there's currently no way we can ask the VFS to do so.
1051 * Unfortunately we cannot lock the file to make sure we return full WCC
1052 * data to the client, as locking happens lower down in the filesystem.
1055 nfsd_commit(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
1056 loff_t offset
, unsigned long count
)
1061 if ((u64
)count
> ~(u64
)offset
)
1062 return nfserr_inval
;
1064 if ((err
= nfsd_open(rqstp
, fhp
, S_IFREG
, MAY_WRITE
, &file
)) != 0)
1066 if (EX_ISSYNC(fhp
->fh_export
)) {
1067 if (file
->f_op
&& file
->f_op
->fsync
) {
1068 err
= nfserrno(nfsd_sync(file
));
1070 err
= nfserr_notsupp
;
1077 #endif /* CONFIG_NFSD_V3 */
1080 * Create a file (regular, directory, device, fifo); UNIX sockets
1081 * not yet implemented.
1082 * If the response fh has been verified, the parent directory should
1083 * already be locked. Note that the parent directory is left locked.
1085 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1088 nfsd_create(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
1089 char *fname
, int flen
, struct iattr
*iap
,
1090 int type
, dev_t rdev
, struct svc_fh
*resfhp
)
1092 struct dentry
*dentry
, *dchild
= NULL
;
1100 if (isdotent(fname
, flen
))
1103 err
= fh_verify(rqstp
, fhp
, S_IFDIR
, MAY_CREATE
);
1107 dentry
= fhp
->fh_dentry
;
1108 dirp
= dentry
->d_inode
;
1110 err
= nfserr_notdir
;
1111 if(!dirp
->i_op
|| !dirp
->i_op
->lookup
)
1114 * Check whether the response file handle has been verified yet.
1115 * If it has, the parent directory should already be locked.
1117 if (!resfhp
->fh_dentry
) {
1118 /* called from nfsd_proc_mkdir, or possibly nfsd3_proc_create */
1120 dchild
= lookup_one_len(fname
, dentry
, flen
);
1121 err
= PTR_ERR(dchild
);
1124 err
= fh_compose(resfhp
, fhp
->fh_export
, dchild
, fhp
);
1128 /* called from nfsd_proc_create */
1129 dchild
= dget(resfhp
->fh_dentry
);
1130 if (!fhp
->fh_locked
) {
1131 /* not actually possible */
1133 "nfsd_create: parent %s/%s not locked!\n",
1134 dentry
->d_parent
->d_name
.name
,
1135 dentry
->d_name
.name
);
1141 * Make sure the child dentry is still negative ...
1144 if (dchild
->d_inode
) {
1145 dprintk("nfsd_create: dentry %s/%s not negative!\n",
1146 dentry
->d_name
.name
, dchild
->d_name
.name
);
1150 if (!(iap
->ia_valid
& ATTR_MODE
))
1152 iap
->ia_mode
= (iap
->ia_mode
& S_IALLUGO
) | type
;
1155 * Get the dir op function pointer.
1160 err
= vfs_create(dirp
, dchild
, iap
->ia_mode
, NULL
);
1163 err
= vfs_mkdir(dirp
, dchild
, iap
->ia_mode
);
1169 err
= vfs_mknod(dirp
, dchild
, iap
->ia_mode
, rdev
);
1172 printk("nfsd: bad file type %o in nfsd_create\n", type
);
1178 if (EX_ISSYNC(fhp
->fh_export
)) {
1179 err
= nfserrno(nfsd_sync_dir(dentry
));
1180 write_inode_now(dchild
->d_inode
, 1);
1184 /* Set file attributes. Mode has already been set and
1185 * setting uid/gid works only for root. Irix appears to
1186 * send along the gid when it tries to implement setgid
1187 * directories via NFS.
1189 if ((iap
->ia_valid
&= ~(ATTR_UID
|ATTR_GID
|ATTR_MODE
)) != 0) {
1190 int err2
= nfsd_setattr(rqstp
, resfhp
, iap
, 0, (time_t)0);
1195 * Update the file handle to get the new inode info.
1198 err
= fh_update(resfhp
);
1200 if (dchild
&& !IS_ERR(dchild
))
1205 err
= nfserrno(err
);
1209 #ifdef CONFIG_NFSD_V3
1211 * NFSv3 version of nfsd_create
1214 nfsd_create_v3(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
1215 char *fname
, int flen
, struct iattr
*iap
,
1216 struct svc_fh
*resfhp
, int createmode
, u32
*verifier
,
1219 struct dentry
*dentry
, *dchild
= NULL
;
1222 __u32 v_mtime
=0, v_atime
=0;
1229 if (isdotent(fname
, flen
))
1231 if (!(iap
->ia_valid
& ATTR_MODE
))
1233 err
= fh_verify(rqstp
, fhp
, S_IFDIR
, MAY_CREATE
);
1237 dentry
= fhp
->fh_dentry
;
1238 dirp
= dentry
->d_inode
;
1240 /* Get all the sanity checks out of the way before
1241 * we lock the parent. */
1242 err
= nfserr_notdir
;
1243 if(!dirp
->i_op
|| !dirp
->i_op
->lookup
)
1248 * Compose the response file handle.
1250 dchild
= lookup_one_len(fname
, dentry
, flen
);
1251 err
= PTR_ERR(dchild
);
1255 err
= fh_compose(resfhp
, fhp
->fh_export
, dchild
, fhp
);
1259 if (createmode
== NFS3_CREATE_EXCLUSIVE
) {
1260 /* while the verifier would fit in mtime+atime,
1261 * solaris7 gets confused (bugid 4218508) if these have
1262 * the high bit set, so we use the mode as well
1264 v_mtime
= verifier
[0]&0x7fffffff;
1265 v_atime
= verifier
[1]&0x7fffffff;
1267 | ((verifier
[0]&0x80000000) >> (32-7)) /* u+x */
1268 | ((verifier
[1]&0x80000000) >> (32-9)) /* u+r */
1272 if (dchild
->d_inode
) {
1275 switch (createmode
) {
1276 case NFS3_CREATE_UNCHECKED
:
1277 if (! S_ISREG(dchild
->d_inode
->i_mode
))
1280 /* in nfsv4, we need to treat this case a little
1281 * differently. we don't want to truncate the
1282 * file now; this would be wrong if the OPEN
1283 * fails for some other reason. furthermore,
1284 * if the size is nonzero, we should ignore it
1285 * according to spec!
1287 *truncp
= (iap
->ia_valid
& ATTR_SIZE
) && !iap
->ia_size
;
1290 iap
->ia_valid
&= ATTR_SIZE
;
1294 case NFS3_CREATE_EXCLUSIVE
:
1295 if ( dchild
->d_inode
->i_mtime
.tv_sec
== v_mtime
1296 && dchild
->d_inode
->i_atime
.tv_sec
== v_atime
1297 && dchild
->d_inode
->i_mode
== v_mode
1298 && dchild
->d_inode
->i_size
== 0 )
1301 case NFS3_CREATE_GUARDED
:
1307 err
= vfs_create(dirp
, dchild
, iap
->ia_mode
, NULL
);
1311 if (EX_ISSYNC(fhp
->fh_export
)) {
1312 err
= nfserrno(nfsd_sync_dir(dentry
));
1313 /* setattr will sync the child (or not) */
1316 if (createmode
== NFS3_CREATE_EXCLUSIVE
) {
1317 /* Cram the verifier into atime/mtime/mode */
1318 iap
->ia_valid
= ATTR_MTIME
|ATTR_ATIME
1319 | ATTR_MTIME_SET
|ATTR_ATIME_SET
1321 /* XXX someone who knows this better please fix it for nsec */
1322 iap
->ia_mtime
.tv_sec
= v_mtime
;
1323 iap
->ia_atime
.tv_sec
= v_atime
;
1324 iap
->ia_mtime
.tv_nsec
= 0;
1325 iap
->ia_atime
.tv_nsec
= 0;
1326 iap
->ia_mode
= v_mode
;
1329 /* Set file attributes.
1330 * Mode has already been set but we might need to reset it
1331 * for CREATE_EXCLUSIVE
1332 * Irix appears to send along the gid when it tries to
1333 * implement setgid directories via NFS. Clear out all that cruft.
1336 if ((iap
->ia_valid
&= ~(ATTR_UID
|ATTR_GID
)) != 0) {
1337 int err2
= nfsd_setattr(rqstp
, resfhp
, iap
, 0, (time_t)0);
1343 * Update the filehandle to get the new inode info.
1346 err
= fh_update(resfhp
);
1350 if (dchild
&& !IS_ERR(dchild
))
1355 err
= nfserrno(err
);
1358 #endif /* CONFIG_NFSD_V3 */
1361 * Read a symlink. On entry, *lenp must contain the maximum path length that
1362 * fits into the buffer. On return, it contains the true length.
1363 * N.B. After this call fhp needs an fh_put
1366 nfsd_readlink(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, char *buf
, int *lenp
)
1368 struct dentry
*dentry
;
1369 struct inode
*inode
;
1373 err
= fh_verify(rqstp
, fhp
, S_IFLNK
, MAY_NOP
);
1377 dentry
= fhp
->fh_dentry
;
1378 inode
= dentry
->d_inode
;
1381 if (!inode
->i_op
|| !inode
->i_op
->readlink
)
1384 touch_atime(fhp
->fh_export
->ex_mnt
, dentry
);
1385 /* N.B. Why does this call need a get_fs()??
1386 * Remove the set_fs and watch the fireworks:-) --okir
1389 oldfs
= get_fs(); set_fs(KERNEL_DS
);
1390 err
= inode
->i_op
->readlink(dentry
, buf
, *lenp
);
1401 err
= nfserrno(err
);
1406 * Create a symlink and look up its inode
1407 * N.B. After this call _both_ fhp and resfhp need an fh_put
1410 nfsd_symlink(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
1411 char *fname
, int flen
,
1412 char *path
, int plen
,
1413 struct svc_fh
*resfhp
,
1416 struct dentry
*dentry
, *dnew
;
1424 if (isdotent(fname
, flen
))
1427 err
= fh_verify(rqstp
, fhp
, S_IFDIR
, MAY_CREATE
);
1431 dentry
= fhp
->fh_dentry
;
1432 dnew
= lookup_one_len(fname
, dentry
, flen
);
1433 err
= PTR_ERR(dnew
);
1438 /* Only the MODE ATTRibute is even vaguely meaningful */
1439 if (iap
&& (iap
->ia_valid
& ATTR_MODE
))
1440 mode
= iap
->ia_mode
& S_IALLUGO
;
1442 if (unlikely(path
[plen
] != 0)) {
1443 char *path_alloced
= kmalloc(plen
+1, GFP_KERNEL
);
1444 if (path_alloced
== NULL
)
1447 strncpy(path_alloced
, path
, plen
);
1448 path_alloced
[plen
] = 0;
1449 err
= vfs_symlink(dentry
->d_inode
, dnew
, path_alloced
, mode
);
1450 kfree(path_alloced
);
1453 err
= vfs_symlink(dentry
->d_inode
, dnew
, path
, mode
);
1456 if (EX_ISSYNC(fhp
->fh_export
))
1457 err
= nfsd_sync_dir(dentry
);
1459 err
= nfserrno(err
);
1462 cerr
= fh_compose(resfhp
, fhp
->fh_export
, dnew
, fhp
);
1464 if (err
==0) err
= cerr
;
1469 err
= nfserrno(err
);
1475 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1478 nfsd_link(struct svc_rqst
*rqstp
, struct svc_fh
*ffhp
,
1479 char *name
, int len
, struct svc_fh
*tfhp
)
1481 struct dentry
*ddir
, *dnew
, *dold
;
1482 struct inode
*dirp
, *dest
;
1485 err
= fh_verify(rqstp
, ffhp
, S_IFDIR
, MAY_CREATE
);
1488 err
= fh_verify(rqstp
, tfhp
, -S_IFDIR
, MAY_NOP
);
1496 if (isdotent(name
, len
))
1500 ddir
= ffhp
->fh_dentry
;
1501 dirp
= ddir
->d_inode
;
1503 dnew
= lookup_one_len(name
, ddir
, len
);
1504 err
= PTR_ERR(dnew
);
1508 dold
= tfhp
->fh_dentry
;
1509 dest
= dold
->d_inode
;
1511 err
= vfs_link(dold
, dirp
, dnew
);
1513 if (EX_ISSYNC(ffhp
->fh_export
)) {
1514 err
= nfserrno(nfsd_sync_dir(ddir
));
1515 write_inode_now(dest
, 1);
1518 if (err
== -EXDEV
&& rqstp
->rq_vers
== 2)
1521 err
= nfserrno(err
);
1530 err
= nfserrno(err
);
1536 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1539 nfsd_rename(struct svc_rqst
*rqstp
, struct svc_fh
*ffhp
, char *fname
, int flen
,
1540 struct svc_fh
*tfhp
, char *tname
, int tlen
)
1542 struct dentry
*fdentry
, *tdentry
, *odentry
, *ndentry
, *trap
;
1543 struct inode
*fdir
, *tdir
;
1546 err
= fh_verify(rqstp
, ffhp
, S_IFDIR
, MAY_REMOVE
);
1549 err
= fh_verify(rqstp
, tfhp
, S_IFDIR
, MAY_CREATE
);
1553 fdentry
= ffhp
->fh_dentry
;
1554 fdir
= fdentry
->d_inode
;
1556 tdentry
= tfhp
->fh_dentry
;
1557 tdir
= tdentry
->d_inode
;
1559 err
= (rqstp
->rq_vers
== 2) ? nfserr_acces
: nfserr_xdev
;
1560 if (fdir
->i_sb
!= tdir
->i_sb
)
1564 if (!flen
|| isdotent(fname
, flen
) || !tlen
|| isdotent(tname
, tlen
))
1567 /* cannot use fh_lock as we need deadlock protective ordering
1568 * so do it by hand */
1569 trap
= lock_rename(tdentry
, fdentry
);
1570 ffhp
->fh_locked
= tfhp
->fh_locked
= 1;
1574 odentry
= lookup_one_len(fname
, fdentry
, flen
);
1575 err
= PTR_ERR(odentry
);
1576 if (IS_ERR(odentry
))
1580 if (!odentry
->d_inode
)
1583 if (odentry
== trap
)
1586 ndentry
= lookup_one_len(tname
, tdentry
, tlen
);
1587 err
= PTR_ERR(ndentry
);
1588 if (IS_ERR(ndentry
))
1591 if (ndentry
== trap
)
1595 if ((ffhp
->fh_export
->ex_flags
& NFSEXP_MSNFS
) &&
1596 ((atomic_read(&odentry
->d_count
) > 1)
1597 || (atomic_read(&ndentry
->d_count
) > 1))) {
1601 err
= vfs_rename(fdir
, odentry
, tdir
, ndentry
);
1602 if (!err
&& EX_ISSYNC(tfhp
->fh_export
)) {
1603 err
= nfsd_sync_dir(tdentry
);
1605 err
= nfsd_sync_dir(fdentry
);
1614 err
= nfserrno(err
);
1616 /* we cannot reply on fh_unlock on the two filehandles,
1617 * as that would do the wrong thing if the two directories
1618 * were the same, so again we do it by hand
1620 fill_post_wcc(ffhp
);
1621 fill_post_wcc(tfhp
);
1622 unlock_rename(tdentry
, fdentry
);
1623 ffhp
->fh_locked
= tfhp
->fh_locked
= 0;
1630 * Unlink a file or directory
1631 * N.B. After this call fhp needs an fh_put
1634 nfsd_unlink(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, int type
,
1635 char *fname
, int flen
)
1637 struct dentry
*dentry
, *rdentry
;
1642 if (!flen
|| isdotent(fname
, flen
))
1644 err
= fh_verify(rqstp
, fhp
, S_IFDIR
, MAY_REMOVE
);
1649 dentry
= fhp
->fh_dentry
;
1650 dirp
= dentry
->d_inode
;
1652 rdentry
= lookup_one_len(fname
, dentry
, flen
);
1653 err
= PTR_ERR(rdentry
);
1654 if (IS_ERR(rdentry
))
1657 if (!rdentry
->d_inode
) {
1664 type
= rdentry
->d_inode
->i_mode
& S_IFMT
;
1666 if (type
!= S_IFDIR
) { /* It's UNLINK */
1668 if ((fhp
->fh_export
->ex_flags
& NFSEXP_MSNFS
) &&
1669 (atomic_read(&rdentry
->d_count
) > 1)) {
1673 err
= vfs_unlink(dirp
, rdentry
);
1674 } else { /* It's RMDIR */
1675 err
= vfs_rmdir(dirp
, rdentry
);
1681 EX_ISSYNC(fhp
->fh_export
))
1682 err
= nfsd_sync_dir(dentry
);
1685 err
= nfserrno(err
);
1691 * Read entries from a directory.
1692 * The NFSv3/4 verifier we ignore for now.
1695 nfsd_readdir(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, loff_t
*offsetp
,
1696 struct readdir_cd
*cdp
, encode_dent_fn func
)
1700 loff_t offset
= *offsetp
;
1702 err
= nfsd_open(rqstp
, fhp
, S_IFDIR
, MAY_READ
, &file
);
1706 offset
= vfs_llseek(file
, offset
, 0);
1708 err
= nfserrno((int)offset
);
1713 * Read the directory entries. This silly loop is necessary because
1714 * readdir() is not guaranteed to fill up the entire buffer, but
1715 * may choose to do less.
1719 cdp
->err
= nfserr_eof
; /* will be cleared on successful read */
1720 err
= vfs_readdir(file
, (filldir_t
) func
, cdp
);
1721 } while (err
>=0 && cdp
->err
== nfs_ok
);
1723 err
= nfserrno(err
);
1726 *offsetp
= vfs_llseek(file
, 0, 1);
1728 if (err
== nfserr_eof
|| err
== nfserr_toosmall
)
1729 err
= nfs_ok
; /* can still be found in ->err */
1737 * Get file system stats
1738 * N.B. After this call fhp needs an fh_put
1741 nfsd_statfs(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct kstatfs
*stat
)
1743 int err
= fh_verify(rqstp
, fhp
, 0, MAY_NOP
);
1744 if (!err
&& vfs_statfs(fhp
->fh_dentry
->d_inode
->i_sb
,stat
))
1750 * Check for a user's access permissions to this inode.
1753 nfsd_permission(struct svc_export
*exp
, struct dentry
*dentry
, int acc
)
1755 struct inode
*inode
= dentry
->d_inode
;
1761 dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
1763 (acc
& MAY_READ
)? " read" : "",
1764 (acc
& MAY_WRITE
)? " write" : "",
1765 (acc
& MAY_EXEC
)? " exec" : "",
1766 (acc
& MAY_SATTR
)? " sattr" : "",
1767 (acc
& MAY_TRUNC
)? " trunc" : "",
1768 (acc
& MAY_LOCK
)? " lock" : "",
1769 (acc
& MAY_OWNER_OVERRIDE
)? " owneroverride" : "",
1771 IS_IMMUTABLE(inode
)? " immut" : "",
1772 IS_APPEND(inode
)? " append" : "",
1773 IS_RDONLY(inode
)? " ro" : "");
1774 dprintk(" owner %d/%d user %d/%d\n",
1775 inode
->i_uid
, inode
->i_gid
, current
->fsuid
, current
->fsgid
);
1778 /* Normally we reject any write/sattr etc access on a read-only file
1779 * system. But if it is IRIX doing check on write-access for a
1780 * device special file, we ignore rofs.
1782 if (!(acc
& MAY_LOCAL_ACCESS
))
1783 if (acc
& (MAY_WRITE
| MAY_SATTR
| MAY_TRUNC
)) {
1784 if (EX_RDONLY(exp
) || IS_RDONLY(inode
))
1786 if (/* (acc & MAY_WRITE) && */ IS_IMMUTABLE(inode
))
1789 if ((acc
& MAY_TRUNC
) && IS_APPEND(inode
))
1792 if (acc
& MAY_LOCK
) {
1793 /* If we cannot rely on authentication in NLM requests,
1794 * just allow locks, otherwise require read permission, or
1797 if (exp
->ex_flags
& NFSEXP_NOAUTHNLM
)
1800 acc
= MAY_READ
| MAY_OWNER_OVERRIDE
;
1803 * The file owner always gets access permission for accesses that
1804 * would normally be checked at open time. This is to make
1805 * file access work even when the client has done a fchmod(fd, 0).
1807 * However, `cp foo bar' should fail nevertheless when bar is
1808 * readonly. A sensible way to do this might be to reject all
1809 * attempts to truncate a read-only file, because a creat() call
1810 * always implies file truncation.
1811 * ... but this isn't really fair. A process may reasonably call
1812 * ftruncate on an open file descriptor on a file with perm 000.
1813 * We must trust the client to do permission checking - using "ACCESS"
1816 if ((acc
& MAY_OWNER_OVERRIDE
) &&
1817 inode
->i_uid
== current
->fsuid
)
1820 err
= permission(inode
, acc
& (MAY_READ
|MAY_WRITE
|MAY_EXEC
), NULL
);
1822 /* Allow read access to binaries even when mode 111 */
1823 if (err
== -EACCES
&& S_ISREG(inode
->i_mode
) &&
1824 acc
== (MAY_READ
| MAY_OWNER_OVERRIDE
))
1825 err
= permission(inode
, MAY_EXEC
, NULL
);
1827 return err
? nfserrno(err
) : 0;
1831 nfsd_racache_shutdown(void)
1835 dprintk("nfsd: freeing readahead buffers.\n");
1837 raparm_cache
= raparml
= NULL
;
1840 * Initialize readahead param cache
1843 nfsd_racache_init(int cache_size
)
1849 raparml
= kmalloc(sizeof(struct raparms
) * cache_size
, GFP_KERNEL
);
1851 if (raparml
!= NULL
) {
1852 dprintk("nfsd: allocating %d readahead buffers.\n",
1854 memset(raparml
, 0, sizeof(struct raparms
) * cache_size
);
1855 for (i
= 0; i
< cache_size
- 1; i
++) {
1856 raparml
[i
].p_next
= raparml
+ i
+ 1;
1858 raparm_cache
= raparml
;
1861 "nfsd: Could not allocate memory read-ahead cache.\n");
1864 nfsdstats
.ra_size
= cache_size
;
1868 #if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
1870 nfsd_get_posix_acl(struct svc_fh
*fhp
, int type
)
1872 struct inode
*inode
= fhp
->fh_dentry
->d_inode
;
1876 struct posix_acl
*acl
;
1878 if (!IS_POSIXACL(inode
))
1879 return ERR_PTR(-EOPNOTSUPP
);
1882 case ACL_TYPE_ACCESS
:
1883 name
= POSIX_ACL_XATTR_ACCESS
;
1885 case ACL_TYPE_DEFAULT
:
1886 name
= POSIX_ACL_XATTR_DEFAULT
;
1889 return ERR_PTR(-EOPNOTSUPP
);
1892 size
= nfsd_getxattr(fhp
->fh_dentry
, name
, &value
);
1894 return ERR_PTR(size
);
1896 acl
= posix_acl_from_xattr(value
, size
);
1902 nfsd_set_posix_acl(struct svc_fh
*fhp
, int type
, struct posix_acl
*acl
)
1904 struct inode
*inode
= fhp
->fh_dentry
->d_inode
;
1910 if (!IS_POSIXACL(inode
) || !inode
->i_op
||
1911 !inode
->i_op
->setxattr
|| !inode
->i_op
->removexattr
)
1914 case ACL_TYPE_ACCESS
:
1915 name
= POSIX_ACL_XATTR_ACCESS
;
1917 case ACL_TYPE_DEFAULT
:
1918 name
= POSIX_ACL_XATTR_DEFAULT
;
1924 if (acl
&& acl
->a_count
) {
1925 size
= posix_acl_xattr_size(acl
->a_count
);
1926 value
= kmalloc(size
, GFP_KERNEL
);
1929 size
= posix_acl_to_xattr(acl
, value
, size
);
1938 error
= vfs_setxattr(fhp
->fh_dentry
, name
, value
, size
, 0);
1940 if (!S_ISDIR(inode
->i_mode
) && type
== ACL_TYPE_DEFAULT
)
1943 error
= vfs_removexattr(fhp
->fh_dentry
, name
);
1944 if (error
== -ENODATA
)
1953 #endif /* defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL) */