2 * File operations used by nfsd. Some of these have been ripped from
3 * other parts of the kernel because they weren't exported, others
4 * are partial duplicates with added or changed functionality.
6 * Note that several functions dget() the dentry upon which they want
7 * to act, most notably those that create directory entries. Response
8 * dentry's are dput()'d if necessary in the release callback.
9 * So if you notice code paths that apparently fail to dput() the
10 * dentry, don't worry--they have been taken care of.
12 * Copyright (C) 1995-1999 Olaf Kirch <okir@monad.swb.de>
13 * Zerocpy NFS support (C) 2002 Hirokazu Takahashi <taka@valinux.co.jp>
17 #include <linux/file.h>
18 #include <linux/splice.h>
19 #include <linux/fcntl.h>
20 #include <linux/namei.h>
21 #include <linux/delay.h>
22 #include <linux/fsnotify.h>
23 #include <linux/posix_acl_xattr.h>
24 #include <linux/xattr.h>
25 #include <linux/jhash.h>
26 #include <linux/ima.h>
27 #include <linux/slab.h>
28 #include <asm/uaccess.h>
29 #include <linux/exportfs.h>
30 #include <linux/writeback.h>
31 #include <linux/security.h>
35 #endif /* CONFIG_NFSD_V3 */
40 #endif /* CONFIG_NFSD_V4 */
45 #define NFSDDBG_FACILITY NFSDDBG_FILEOP
49 * This is a cache of readahead params that help us choose the proper
50 * readahead strategy. Initially, we set all readahead parameters to 0
51 * and let the VFS handle things.
52 * If you increase the number of cached files very much, you'll need to
53 * add a hash table here.
56 struct raparms
*p_next
;
61 struct file_ra_state p_ra
;
62 unsigned int p_hindex
;
65 struct raparm_hbucket
{
66 struct raparms
*pb_head
;
68 } ____cacheline_aligned_in_smp
;
70 #define RAPARM_HASH_BITS 4
71 #define RAPARM_HASH_SIZE (1<<RAPARM_HASH_BITS)
72 #define RAPARM_HASH_MASK (RAPARM_HASH_SIZE-1)
73 static struct raparm_hbucket raparm_hash
[RAPARM_HASH_SIZE
];
76 * Called from nfsd_lookup and encode_dirent. Check if we have crossed
78 * Returns -EAGAIN or -ETIMEDOUT leaving *dpp and *expp unchanged,
79 * or nfs_ok having possibly changed *dpp and *expp
82 nfsd_cross_mnt(struct svc_rqst
*rqstp
, struct dentry
**dpp
,
83 struct svc_export
**expp
)
85 struct svc_export
*exp
= *expp
, *exp2
= NULL
;
86 struct dentry
*dentry
= *dpp
;
87 struct path path
= {.mnt
= mntget(exp
->ex_path
.mnt
),
88 .dentry
= dget(dentry
)};
91 err
= follow_down(&path
);
95 exp2
= rqst_exp_get_by_name(rqstp
, &path
);
99 * We normally allow NFS clients to continue
100 * "underneath" a mountpoint that is not exported.
101 * The exception is V4ROOT, where no traversal is ever
102 * allowed without an explicit export of the new
105 if (err
== -ENOENT
&& !(exp
->ex_flags
& NFSEXP_V4ROOT
))
110 if (nfsd_v4client(rqstp
) ||
111 (exp
->ex_flags
& NFSEXP_CROSSMOUNT
) || EX_NOHIDE(exp2
)) {
112 /* successfully crossed mount point */
114 * This is subtle: path.dentry is *not* on path.mnt
115 * at this point. The only reason we are safe is that
116 * original mnt is pinned down by exp, so we should
117 * put path *before* putting exp
120 path
.dentry
= dentry
;
130 static void follow_to_parent(struct path
*path
)
134 while (path
->dentry
== path
->mnt
->mnt_root
&& follow_up(path
))
136 dp
= dget_parent(path
->dentry
);
141 static int nfsd_lookup_parent(struct svc_rqst
*rqstp
, struct dentry
*dparent
, struct svc_export
**exp
, struct dentry
**dentryp
)
143 struct svc_export
*exp2
;
144 struct path path
= {.mnt
= mntget((*exp
)->ex_path
.mnt
),
145 .dentry
= dget(dparent
)};
147 follow_to_parent(&path
);
149 exp2
= rqst_exp_parent(rqstp
, &path
);
150 if (PTR_ERR(exp2
) == -ENOENT
) {
151 *dentryp
= dget(dparent
);
152 } else if (IS_ERR(exp2
)) {
154 return PTR_ERR(exp2
);
156 *dentryp
= dget(path
.dentry
);
165 * For nfsd purposes, we treat V4ROOT exports as though there was an
166 * export at *every* directory.
168 int nfsd_mountpoint(struct dentry
*dentry
, struct svc_export
*exp
)
170 if (d_mountpoint(dentry
))
172 if (nfsd4_is_junction(dentry
))
174 if (!(exp
->ex_flags
& NFSEXP_V4ROOT
))
176 return dentry
->d_inode
!= NULL
;
180 nfsd_lookup_dentry(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
181 const char *name
, unsigned int len
,
182 struct svc_export
**exp_ret
, struct dentry
**dentry_ret
)
184 struct svc_export
*exp
;
185 struct dentry
*dparent
;
186 struct dentry
*dentry
;
189 dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp
), len
,name
);
191 dparent
= fhp
->fh_dentry
;
192 exp
= fhp
->fh_export
;
195 /* Lookup the name, but don't follow links */
196 if (isdotent(name
, len
)) {
198 dentry
= dget(dparent
);
199 else if (dparent
!= exp
->ex_path
.dentry
)
200 dentry
= dget_parent(dparent
);
201 else if (!EX_NOHIDE(exp
) && !nfsd_v4client(rqstp
))
202 dentry
= dget(dparent
); /* .. == . just like at / */
204 /* checking mountpoint crossing is very different when stepping up */
205 host_err
= nfsd_lookup_parent(rqstp
, dparent
, &exp
, &dentry
);
211 dentry
= lookup_one_len(name
, dparent
, len
);
212 host_err
= PTR_ERR(dentry
);
216 * check if we have crossed a mount point ...
218 if (nfsd_mountpoint(dentry
, exp
)) {
219 if ((host_err
= nfsd_cross_mnt(rqstp
, &dentry
, &exp
))) {
225 *dentry_ret
= dentry
;
231 return nfserrno(host_err
);
235 * Look up one component of a pathname.
236 * N.B. After this call _both_ fhp and resfh need an fh_put
238 * If the lookup would cross a mountpoint, and the mounted filesystem
239 * is exported to the client with NFSEXP_NOHIDE, then the lookup is
240 * accepted as it stands and the mounted directory is
241 * returned. Otherwise the covered directory is returned.
242 * NOTE: this mountpoint crossing is not supported properly by all
243 * clients and is explicitly disallowed for NFSv3
244 * NeilBrown <neilb@cse.unsw.edu.au>
247 nfsd_lookup(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, const char *name
,
248 unsigned int len
, struct svc_fh
*resfh
)
250 struct svc_export
*exp
;
251 struct dentry
*dentry
;
254 err
= fh_verify(rqstp
, fhp
, S_IFDIR
, NFSD_MAY_EXEC
);
257 err
= nfsd_lookup_dentry(rqstp
, fhp
, name
, len
, &exp
, &dentry
);
260 err
= check_nfsd_access(exp
, rqstp
);
264 * Note: we compose the file handle now, but as the
265 * dentry may be negative, it may need to be updated.
267 err
= fh_compose(resfh
, exp
, dentry
, fhp
);
268 if (!err
&& !dentry
->d_inode
)
276 static int nfsd_break_lease(struct inode
*inode
)
278 if (!S_ISREG(inode
->i_mode
))
280 return break_lease(inode
, O_WRONLY
| O_NONBLOCK
);
284 * Commit metadata changes to stable storage.
287 commit_metadata(struct svc_fh
*fhp
)
289 struct inode
*inode
= fhp
->fh_dentry
->d_inode
;
290 const struct export_operations
*export_ops
= inode
->i_sb
->s_export_op
;
292 if (!EX_ISSYNC(fhp
->fh_export
))
295 if (export_ops
->commit_metadata
)
296 return export_ops
->commit_metadata(inode
);
297 return sync_inode_metadata(inode
, 1);
301 * Go over the attributes and take care of the small differences between
302 * NFS semantics and what Linux expects.
305 nfsd_sanitize_attrs(struct inode
*inode
, struct iattr
*iap
)
308 * NFSv2 does not differentiate between "set-[ac]time-to-now"
309 * which only requires access, and "set-[ac]time-to-X" which
310 * requires ownership.
311 * So if it looks like it might be "set both to the same time which
312 * is close to now", and if inode_change_ok fails, then we
313 * convert to "set to now" instead of "set to explicit time"
315 * We only call inode_change_ok as the last test as technically
316 * it is not an interface that we should be using.
318 #define BOTH_TIME_SET (ATTR_ATIME_SET | ATTR_MTIME_SET)
319 #define MAX_TOUCH_TIME_ERROR (30*60)
320 if ((iap
->ia_valid
& BOTH_TIME_SET
) == BOTH_TIME_SET
&&
321 iap
->ia_mtime
.tv_sec
== iap
->ia_atime
.tv_sec
) {
325 * Now just make sure time is in the right ballpark.
326 * Solaris, at least, doesn't seem to care what the time
327 * request is. We require it be within 30 minutes of now.
329 time_t delta
= iap
->ia_atime
.tv_sec
- get_seconds();
332 if (delta
< MAX_TOUCH_TIME_ERROR
&&
333 inode_change_ok(inode
, iap
) != 0) {
335 * Turn off ATTR_[AM]TIME_SET but leave ATTR_[AM]TIME.
336 * This will cause notify_change to set these times
339 iap
->ia_valid
&= ~BOTH_TIME_SET
;
343 /* sanitize the mode change */
344 if (iap
->ia_valid
& ATTR_MODE
) {
345 iap
->ia_mode
&= S_IALLUGO
;
346 iap
->ia_mode
|= (inode
->i_mode
& ~S_IALLUGO
);
349 /* Revoke setuid/setgid on chown */
350 if (!S_ISDIR(inode
->i_mode
) &&
351 (((iap
->ia_valid
& ATTR_UID
) && !uid_eq(iap
->ia_uid
, inode
->i_uid
)) ||
352 ((iap
->ia_valid
& ATTR_GID
) && !gid_eq(iap
->ia_gid
, inode
->i_gid
)))) {
353 iap
->ia_valid
|= ATTR_KILL_PRIV
;
354 if (iap
->ia_valid
& ATTR_MODE
) {
355 /* we're setting mode too, just clear the s*id bits */
356 iap
->ia_mode
&= ~S_ISUID
;
357 if (iap
->ia_mode
& S_IXGRP
)
358 iap
->ia_mode
&= ~S_ISGID
;
360 /* set ATTR_KILL_* bits and let VFS handle it */
361 iap
->ia_valid
|= (ATTR_KILL_SUID
| ATTR_KILL_SGID
);
367 nfsd_get_write_access(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
370 struct inode
*inode
= fhp
->fh_dentry
->d_inode
;
373 if (iap
->ia_size
< inode
->i_size
) {
376 err
= nfsd_permission(rqstp
, fhp
->fh_export
, fhp
->fh_dentry
,
377 NFSD_MAY_TRUNC
| NFSD_MAY_OWNER_OVERRIDE
);
382 host_err
= get_write_access(inode
);
386 host_err
= locks_verify_truncate(inode
, NULL
, iap
->ia_size
);
388 goto out_put_write_access
;
391 out_put_write_access
:
392 put_write_access(inode
);
394 return nfserrno(host_err
);
398 * Set various file attributes. After this call fhp needs an fh_put.
401 nfsd_setattr(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct iattr
*iap
,
402 int check_guard
, time_t guardtime
)
404 struct dentry
*dentry
;
406 int accmode
= NFSD_MAY_SATTR
;
410 bool get_write_count
;
413 if (iap
->ia_valid
& (ATTR_ATIME
| ATTR_MTIME
| ATTR_SIZE
))
414 accmode
|= NFSD_MAY_WRITE
|NFSD_MAY_OWNER_OVERRIDE
;
415 if (iap
->ia_valid
& ATTR_SIZE
)
418 /* Callers that do fh_verify should do the fh_want_write: */
419 get_write_count
= !fhp
->fh_dentry
;
422 err
= fh_verify(rqstp
, fhp
, ftype
, accmode
);
425 if (get_write_count
) {
426 host_err
= fh_want_write(fhp
);
428 return nfserrno(host_err
);
431 dentry
= fhp
->fh_dentry
;
432 inode
= dentry
->d_inode
;
434 /* Ignore any mode updates on symlinks */
435 if (S_ISLNK(inode
->i_mode
))
436 iap
->ia_valid
&= ~ATTR_MODE
;
441 nfsd_sanitize_attrs(inode
, iap
);
444 * The size case is special, it changes the file in addition to the
447 if (iap
->ia_valid
& ATTR_SIZE
) {
448 err
= nfsd_get_write_access(rqstp
, fhp
, iap
);
454 iap
->ia_valid
|= ATTR_CTIME
;
456 if (check_guard
&& guardtime
!= inode
->i_ctime
.tv_sec
) {
457 err
= nfserr_notsync
;
458 goto out_put_write_access
;
461 host_err
= nfsd_break_lease(inode
);
463 goto out_put_write_access_nfserror
;
466 host_err
= notify_change(dentry
, iap
);
469 out_put_write_access_nfserror
:
470 err
= nfserrno(host_err
);
471 out_put_write_access
:
473 put_write_access(inode
);
475 commit_metadata(fhp
);
480 #if defined(CONFIG_NFSD_V2_ACL) || \
481 defined(CONFIG_NFSD_V3_ACL) || \
482 defined(CONFIG_NFSD_V4)
483 static ssize_t
nfsd_getxattr(struct dentry
*dentry
, char *key
, void **buf
)
488 buflen
= vfs_getxattr(dentry
, key
, NULL
, 0);
492 *buf
= kmalloc(buflen
, GFP_KERNEL
);
496 ret
= vfs_getxattr(dentry
, key
, *buf
, buflen
);
503 #if defined(CONFIG_NFSD_V4)
505 set_nfsv4_acl_one(struct dentry
*dentry
, struct posix_acl
*pacl
, char *key
)
512 buflen
= posix_acl_xattr_size(pacl
->a_count
);
513 buf
= kmalloc(buflen
, GFP_KERNEL
);
518 len
= posix_acl_to_xattr(&init_user_ns
, pacl
, buf
, buflen
);
524 error
= vfs_setxattr(dentry
, key
, buf
, len
, 0);
531 nfsd4_set_nfs4_acl(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
532 struct nfs4_acl
*acl
)
536 struct dentry
*dentry
;
538 struct posix_acl
*pacl
= NULL
, *dpacl
= NULL
;
539 unsigned int flags
= 0;
542 error
= fh_verify(rqstp
, fhp
, 0, NFSD_MAY_SATTR
);
546 dentry
= fhp
->fh_dentry
;
547 inode
= dentry
->d_inode
;
548 if (S_ISDIR(inode
->i_mode
))
549 flags
= NFS4_ACL_DIR
;
551 host_error
= nfs4_acl_nfsv4_to_posix(acl
, &pacl
, &dpacl
, flags
);
552 if (host_error
== -EINVAL
) {
553 return nfserr_attrnotsupp
;
554 } else if (host_error
< 0)
557 host_error
= set_nfsv4_acl_one(dentry
, pacl
, POSIX_ACL_XATTR_ACCESS
);
561 if (S_ISDIR(inode
->i_mode
))
562 host_error
= set_nfsv4_acl_one(dentry
, dpacl
, POSIX_ACL_XATTR_DEFAULT
);
565 posix_acl_release(pacl
);
566 posix_acl_release(dpacl
);
568 if (host_error
== -EOPNOTSUPP
)
569 return nfserr_attrnotsupp
;
571 return nfserrno(host_error
);
574 static struct posix_acl
*
575 _get_posix_acl(struct dentry
*dentry
, char *key
)
578 struct posix_acl
*pacl
= NULL
;
581 buflen
= nfsd_getxattr(dentry
, key
, &buf
);
585 return ERR_PTR(buflen
);
587 pacl
= posix_acl_from_xattr(&init_user_ns
, buf
, buflen
);
593 nfsd4_get_nfs4_acl(struct svc_rqst
*rqstp
, struct dentry
*dentry
, struct nfs4_acl
**acl
)
595 struct inode
*inode
= dentry
->d_inode
;
597 struct posix_acl
*pacl
= NULL
, *dpacl
= NULL
;
598 unsigned int flags
= 0;
600 pacl
= _get_posix_acl(dentry
, POSIX_ACL_XATTR_ACCESS
);
601 if (IS_ERR(pacl
) && PTR_ERR(pacl
) == -ENODATA
)
602 pacl
= posix_acl_from_mode(inode
->i_mode
, GFP_KERNEL
);
604 error
= PTR_ERR(pacl
);
609 if (S_ISDIR(inode
->i_mode
)) {
610 dpacl
= _get_posix_acl(dentry
, POSIX_ACL_XATTR_DEFAULT
);
611 if (IS_ERR(dpacl
) && PTR_ERR(dpacl
) == -ENODATA
)
613 else if (IS_ERR(dpacl
)) {
614 error
= PTR_ERR(dpacl
);
618 flags
= NFS4_ACL_DIR
;
621 *acl
= nfs4_acl_posix_to_nfsv4(pacl
, dpacl
, flags
);
623 error
= PTR_ERR(*acl
);
627 posix_acl_release(pacl
);
628 posix_acl_release(dpacl
);
633 * NFS junction information is stored in an extended attribute.
635 #define NFSD_JUNCTION_XATTR_NAME XATTR_TRUSTED_PREFIX "junction.nfs"
638 * nfsd4_is_junction - Test if an object could be an NFS junction
640 * @dentry: object to test
642 * Returns 1 if "dentry" appears to contain NFS junction information.
643 * Otherwise 0 is returned.
645 int nfsd4_is_junction(struct dentry
*dentry
)
647 struct inode
*inode
= dentry
->d_inode
;
651 if (inode
->i_mode
& S_IXUGO
)
653 if (!(inode
->i_mode
& S_ISVTX
))
655 if (vfs_getxattr(dentry
, NFSD_JUNCTION_XATTR_NAME
, NULL
, 0) <= 0)
659 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
660 __be32
nfsd4_set_nfs4_label(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
661 struct xdr_netobj
*label
)
665 struct dentry
*dentry
;
667 error
= fh_verify(rqstp
, fhp
, 0 /* S_IFREG */, NFSD_MAY_SATTR
);
671 dentry
= fhp
->fh_dentry
;
673 mutex_lock(&dentry
->d_inode
->i_mutex
);
674 host_error
= security_inode_setsecctx(dentry
, label
->data
, label
->len
);
675 mutex_unlock(&dentry
->d_inode
->i_mutex
);
676 return nfserrno(host_error
);
679 __be32
nfsd4_set_nfs4_label(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
680 struct xdr_netobj
*label
)
682 return nfserr_notsupp
;
686 #endif /* defined(CONFIG_NFSD_V4) */
688 #ifdef CONFIG_NFSD_V3
690 * Check server access rights to a file system object
696 static struct accessmap nfs3_regaccess
[] = {
697 { NFS3_ACCESS_READ
, NFSD_MAY_READ
},
698 { NFS3_ACCESS_EXECUTE
, NFSD_MAY_EXEC
},
699 { NFS3_ACCESS_MODIFY
, NFSD_MAY_WRITE
|NFSD_MAY_TRUNC
},
700 { NFS3_ACCESS_EXTEND
, NFSD_MAY_WRITE
},
705 static struct accessmap nfs3_diraccess
[] = {
706 { NFS3_ACCESS_READ
, NFSD_MAY_READ
},
707 { NFS3_ACCESS_LOOKUP
, NFSD_MAY_EXEC
},
708 { NFS3_ACCESS_MODIFY
, NFSD_MAY_EXEC
|NFSD_MAY_WRITE
|NFSD_MAY_TRUNC
},
709 { NFS3_ACCESS_EXTEND
, NFSD_MAY_EXEC
|NFSD_MAY_WRITE
},
710 { NFS3_ACCESS_DELETE
, NFSD_MAY_REMOVE
},
715 static struct accessmap nfs3_anyaccess
[] = {
716 /* Some clients - Solaris 2.6 at least, make an access call
717 * to the server to check for access for things like /dev/null
718 * (which really, the server doesn't care about). So
719 * We provide simple access checking for them, looking
720 * mainly at mode bits, and we make sure to ignore read-only
723 { NFS3_ACCESS_READ
, NFSD_MAY_READ
},
724 { NFS3_ACCESS_EXECUTE
, NFSD_MAY_EXEC
},
725 { NFS3_ACCESS_MODIFY
, NFSD_MAY_WRITE
|NFSD_MAY_LOCAL_ACCESS
},
726 { NFS3_ACCESS_EXTEND
, NFSD_MAY_WRITE
|NFSD_MAY_LOCAL_ACCESS
},
732 nfsd_access(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, u32
*access
, u32
*supported
)
734 struct accessmap
*map
;
735 struct svc_export
*export
;
736 struct dentry
*dentry
;
737 u32 query
, result
= 0, sresult
= 0;
740 error
= fh_verify(rqstp
, fhp
, 0, NFSD_MAY_NOP
);
744 export
= fhp
->fh_export
;
745 dentry
= fhp
->fh_dentry
;
747 if (S_ISREG(dentry
->d_inode
->i_mode
))
748 map
= nfs3_regaccess
;
749 else if (S_ISDIR(dentry
->d_inode
->i_mode
))
750 map
= nfs3_diraccess
;
752 map
= nfs3_anyaccess
;
756 for (; map
->access
; map
++) {
757 if (map
->access
& query
) {
760 sresult
|= map
->access
;
762 err2
= nfsd_permission(rqstp
, export
, dentry
, map
->how
);
765 result
|= map
->access
;
768 /* the following error codes just mean the access was not allowed,
769 * rather than an error occurred */
773 /* simply don't "or" in the access bit. */
783 *supported
= sresult
;
788 #endif /* CONFIG_NFSD_V3 */
790 static int nfsd_open_break_lease(struct inode
*inode
, int access
)
794 if (access
& NFSD_MAY_NOT_BREAK_LEASE
)
796 mode
= (access
& NFSD_MAY_WRITE
) ? O_WRONLY
: O_RDONLY
;
797 return break_lease(inode
, mode
| O_NONBLOCK
);
801 * Open an existing file or directory.
802 * The may_flags argument indicates the type of open (read/write/lock)
803 * and additional flags.
804 * N.B. After this call fhp needs an fh_put
807 nfsd_open(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, umode_t type
,
808 int may_flags
, struct file
**filp
)
812 int flags
= O_RDONLY
|O_LARGEFILE
;
816 validate_process_creds();
819 * If we get here, then the client has already done an "open",
820 * and (hopefully) checked permission - so allow OWNER_OVERRIDE
821 * in case a chmod has now revoked permission.
823 * Arguably we should also allow the owner override for
824 * directories, but we never have and it doesn't seem to have
825 * caused anyone a problem. If we were to change this, note
826 * also that our filldir callbacks would need a variant of
827 * lookup_one_len that doesn't check permissions.
830 may_flags
|= NFSD_MAY_OWNER_OVERRIDE
;
831 err
= fh_verify(rqstp
, fhp
, type
, may_flags
);
835 path
.mnt
= fhp
->fh_export
->ex_path
.mnt
;
836 path
.dentry
= fhp
->fh_dentry
;
837 inode
= path
.dentry
->d_inode
;
839 /* Disallow write access to files with the append-only bit set
840 * or any access when mandatory locking enabled
843 if (IS_APPEND(inode
) && (may_flags
& NFSD_MAY_WRITE
))
846 * We must ignore files (but only files) which might have mandatory
847 * locks on them because there is no way to know if the accesser has
850 if (S_ISREG((inode
)->i_mode
) && mandatory_lock(inode
))
856 host_err
= nfsd_open_break_lease(inode
, may_flags
);
857 if (host_err
) /* NOMEM or WOULDBLOCK */
860 if (may_flags
& NFSD_MAY_WRITE
) {
861 if (may_flags
& NFSD_MAY_READ
)
862 flags
= O_RDWR
|O_LARGEFILE
;
864 flags
= O_WRONLY
|O_LARGEFILE
;
866 *filp
= dentry_open(&path
, flags
, current_cred());
868 host_err
= PTR_ERR(*filp
);
871 host_err
= ima_file_check(*filp
, may_flags
);
873 if (may_flags
& NFSD_MAY_64BIT_COOKIE
)
874 (*filp
)->f_mode
|= FMODE_64BITHASH
;
876 (*filp
)->f_mode
|= FMODE_32BITHASH
;
880 err
= nfserrno(host_err
);
882 validate_process_creds();
890 nfsd_close(struct file
*filp
)
896 * Obtain the readahead parameters for the file
897 * specified by (dev, ino).
900 static inline struct raparms
*
901 nfsd_get_raparms(dev_t dev
, ino_t ino
)
903 struct raparms
*ra
, **rap
, **frap
= NULL
;
906 struct raparm_hbucket
*rab
;
908 hash
= jhash_2words(dev
, ino
, 0xfeedbeef) & RAPARM_HASH_MASK
;
909 rab
= &raparm_hash
[hash
];
911 spin_lock(&rab
->pb_lock
);
912 for (rap
= &rab
->pb_head
; (ra
= *rap
); rap
= &ra
->p_next
) {
913 if (ra
->p_ino
== ino
&& ra
->p_dev
== dev
)
916 if (ra
->p_count
== 0)
919 depth
= nfsdstats
.ra_size
;
921 spin_unlock(&rab
->pb_lock
);
931 if (rap
!= &rab
->pb_head
) {
933 ra
->p_next
= rab
->pb_head
;
937 nfsdstats
.ra_depth
[depth
*10/nfsdstats
.ra_size
]++;
938 spin_unlock(&rab
->pb_lock
);
943 * Grab and keep cached pages associated with a file in the svc_rqst
944 * so that they can be passed to the network sendmsg/sendpage routines
945 * directly. They will be released after the sending has completed.
948 nfsd_splice_actor(struct pipe_inode_info
*pipe
, struct pipe_buffer
*buf
,
949 struct splice_desc
*sd
)
951 struct svc_rqst
*rqstp
= sd
->u
.data
;
952 struct page
**pp
= rqstp
->rq_next_page
;
953 struct page
*page
= buf
->page
;
958 if (rqstp
->rq_res
.page_len
== 0) {
960 put_page(*rqstp
->rq_next_page
);
961 *(rqstp
->rq_next_page
++) = page
;
962 rqstp
->rq_res
.page_base
= buf
->offset
;
963 rqstp
->rq_res
.page_len
= size
;
964 } else if (page
!= pp
[-1]) {
966 if (*rqstp
->rq_next_page
)
967 put_page(*rqstp
->rq_next_page
);
968 *(rqstp
->rq_next_page
++) = page
;
969 rqstp
->rq_res
.page_len
+= size
;
971 rqstp
->rq_res
.page_len
+= size
;
976 static int nfsd_direct_splice_actor(struct pipe_inode_info
*pipe
,
977 struct splice_desc
*sd
)
979 return __splice_from_pipe(pipe
, sd
, nfsd_splice_actor
);
983 nfsd_vfs_read(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct file
*file
,
984 loff_t offset
, struct kvec
*vec
, int vlen
, unsigned long *count
)
992 if (file
->f_op
->splice_read
&& rqstp
->rq_splice_ok
) {
993 struct splice_desc sd
= {
1000 rqstp
->rq_next_page
= rqstp
->rq_respages
+ 1;
1001 host_err
= splice_direct_to_actor(file
, &sd
, nfsd_direct_splice_actor
);
1005 host_err
= vfs_readv(file
, (struct iovec __user
*)vec
, vlen
, &offset
);
1009 if (host_err
>= 0) {
1010 nfsdstats
.io_read
+= host_err
;
1013 fsnotify_access(file
);
1015 err
= nfserrno(host_err
);
1019 static void kill_suid(struct dentry
*dentry
)
1022 ia
.ia_valid
= ATTR_KILL_SUID
| ATTR_KILL_SGID
| ATTR_KILL_PRIV
;
1024 mutex_lock(&dentry
->d_inode
->i_mutex
);
1025 notify_change(dentry
, &ia
);
1026 mutex_unlock(&dentry
->d_inode
->i_mutex
);
1030 * Gathered writes: If another process is currently writing to the file,
1031 * there's a high chance this is another nfsd (triggered by a bulk write
1032 * from a client's biod). Rather than syncing the file with each write
1033 * request, we sleep for 10 msec.
1035 * I don't know if this roughly approximates C. Juszak's idea of
1036 * gathered writes, but it's a nice and simple solution (IMHO), and it
1039 * Note: we do this only in the NFSv2 case, since v3 and higher have a
1040 * better tool (separate unstable writes and commits) for solving this
1043 static int wait_for_concurrent_writes(struct file
*file
)
1045 struct inode
*inode
= file_inode(file
);
1046 static ino_t last_ino
;
1047 static dev_t last_dev
;
1050 if (atomic_read(&inode
->i_writecount
) > 1
1051 || (last_ino
== inode
->i_ino
&& last_dev
== inode
->i_sb
->s_dev
)) {
1052 dprintk("nfsd: write defer %d\n", task_pid_nr(current
));
1054 dprintk("nfsd: write resume %d\n", task_pid_nr(current
));
1057 if (inode
->i_state
& I_DIRTY
) {
1058 dprintk("nfsd: write sync %d\n", task_pid_nr(current
));
1059 err
= vfs_fsync(file
, 0);
1061 last_ino
= inode
->i_ino
;
1062 last_dev
= inode
->i_sb
->s_dev
;
1067 nfsd_vfs_write(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct file
*file
,
1068 loff_t offset
, struct kvec
*vec
, int vlen
,
1069 unsigned long *cnt
, int *stablep
)
1071 struct svc_export
*exp
;
1072 struct dentry
*dentry
;
1073 struct inode
*inode
;
1077 int stable
= *stablep
;
1079 loff_t pos
= offset
;
1081 dentry
= file
->f_path
.dentry
;
1082 inode
= dentry
->d_inode
;
1083 exp
= fhp
->fh_export
;
1085 use_wgather
= (rqstp
->rq_vers
== 2) && EX_WGATHER(exp
);
1087 if (!EX_ISSYNC(exp
))
1090 /* Write the data. */
1091 oldfs
= get_fs(); set_fs(KERNEL_DS
);
1092 host_err
= vfs_writev(file
, (struct iovec __user
*)vec
, vlen
, &pos
);
1097 nfsdstats
.io_write
+= host_err
;
1098 fsnotify_modify(file
);
1100 /* clear setuid/setgid flag after write */
1101 if (inode
->i_mode
& (S_ISUID
| S_ISGID
))
1106 host_err
= wait_for_concurrent_writes(file
);
1108 host_err
= vfs_fsync_range(file
, offset
, offset
+*cnt
, 0);
1112 dprintk("nfsd: write complete host_err=%d\n", host_err
);
1116 err
= nfserrno(host_err
);
1121 * Read data from a file. count must contain the requested read count
1122 * on entry. On return, *count contains the number of bytes actually read.
1123 * N.B. After this call fhp needs an fh_put
1125 __be32
nfsd_read(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
1126 loff_t offset
, struct kvec
*vec
, int vlen
, unsigned long *count
)
1129 struct inode
*inode
;
1133 err
= nfsd_open(rqstp
, fhp
, S_IFREG
, NFSD_MAY_READ
, &file
);
1137 inode
= file_inode(file
);
1139 /* Get readahead parameters */
1140 ra
= nfsd_get_raparms(inode
->i_sb
->s_dev
, inode
->i_ino
);
1142 if (ra
&& ra
->p_set
)
1143 file
->f_ra
= ra
->p_ra
;
1145 err
= nfsd_vfs_read(rqstp
, fhp
, file
, offset
, vec
, vlen
, count
);
1147 /* Write back readahead params */
1149 struct raparm_hbucket
*rab
= &raparm_hash
[ra
->p_hindex
];
1150 spin_lock(&rab
->pb_lock
);
1151 ra
->p_ra
= file
->f_ra
;
1154 spin_unlock(&rab
->pb_lock
);
1161 /* As above, but use the provided file descriptor. */
1163 nfsd_read_file(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct file
*file
,
1164 loff_t offset
, struct kvec
*vec
, int vlen
,
1165 unsigned long *count
)
1170 err
= nfsd_permission(rqstp
, fhp
->fh_export
, fhp
->fh_dentry
,
1171 NFSD_MAY_READ
|NFSD_MAY_OWNER_OVERRIDE
);
1174 err
= nfsd_vfs_read(rqstp
, fhp
, file
, offset
, vec
, vlen
, count
);
1175 } else /* Note file may still be NULL in NFSv4 special stateid case: */
1176 err
= nfsd_read(rqstp
, fhp
, offset
, vec
, vlen
, count
);
1182 * Write data to a file.
1183 * The stable flag requests synchronous writes.
1184 * N.B. After this call fhp needs an fh_put
1187 nfsd_write(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct file
*file
,
1188 loff_t offset
, struct kvec
*vec
, int vlen
, unsigned long *cnt
,
1194 err
= nfsd_permission(rqstp
, fhp
->fh_export
, fhp
->fh_dentry
,
1195 NFSD_MAY_WRITE
|NFSD_MAY_OWNER_OVERRIDE
);
1198 err
= nfsd_vfs_write(rqstp
, fhp
, file
, offset
, vec
, vlen
, cnt
,
1201 err
= nfsd_open(rqstp
, fhp
, S_IFREG
, NFSD_MAY_WRITE
, &file
);
1206 err
= nfsd_vfs_write(rqstp
, fhp
, file
, offset
, vec
, vlen
,
1214 #ifdef CONFIG_NFSD_V3
1216 * Commit all pending writes to stable storage.
1218 * Note: we only guarantee that data that lies within the range specified
1219 * by the 'offset' and 'count' parameters will be synced.
1221 * Unfortunately we cannot lock the file to make sure we return full WCC
1222 * data to the client, as locking happens lower down in the filesystem.
1225 nfsd_commit(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
1226 loff_t offset
, unsigned long count
)
1229 loff_t end
= LLONG_MAX
;
1230 __be32 err
= nfserr_inval
;
1235 end
= offset
+ (loff_t
)count
- 1;
1240 err
= nfsd_open(rqstp
, fhp
, S_IFREG
,
1241 NFSD_MAY_WRITE
|NFSD_MAY_NOT_BREAK_LEASE
, &file
);
1244 if (EX_ISSYNC(fhp
->fh_export
)) {
1245 int err2
= vfs_fsync_range(file
, offset
, end
, 0);
1247 if (err2
!= -EINVAL
)
1248 err
= nfserrno(err2
);
1250 err
= nfserr_notsupp
;
1257 #endif /* CONFIG_NFSD_V3 */
1260 nfsd_create_setattr(struct svc_rqst
*rqstp
, struct svc_fh
*resfhp
,
1264 * Mode has already been set earlier in create:
1266 iap
->ia_valid
&= ~ATTR_MODE
;
1268 * Setting uid/gid works only for root. Irix appears to
1269 * send along the gid on create when it tries to implement
1270 * setgid directories via NFS:
1272 if (!uid_eq(current_fsuid(), GLOBAL_ROOT_UID
))
1273 iap
->ia_valid
&= ~(ATTR_UID
|ATTR_GID
);
1275 return nfsd_setattr(rqstp
, resfhp
, iap
, 0, (time_t)0);
1279 /* HPUX client sometimes creates a file in mode 000, and sets size to 0.
1280 * setting size to 0 may fail for some specific file systems by the permission
1281 * checking which requires WRITE permission but the mode is 000.
1282 * we ignore the resizing(to 0) on the just new created file, since the size is
1283 * 0 after file created.
1285 * call this only after vfs_create() is called.
1288 nfsd_check_ignore_resizing(struct iattr
*iap
)
1290 if ((iap
->ia_valid
& ATTR_SIZE
) && (iap
->ia_size
== 0))
1291 iap
->ia_valid
&= ~ATTR_SIZE
;
1295 * Create a file (regular, directory, device, fifo); UNIX sockets
1296 * not yet implemented.
1297 * If the response fh has been verified, the parent directory should
1298 * already be locked. Note that the parent directory is left locked.
1300 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1303 nfsd_create(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
1304 char *fname
, int flen
, struct iattr
*iap
,
1305 int type
, dev_t rdev
, struct svc_fh
*resfhp
)
1307 struct dentry
*dentry
, *dchild
= NULL
;
1317 if (isdotent(fname
, flen
))
1320 err
= fh_verify(rqstp
, fhp
, S_IFDIR
, NFSD_MAY_CREATE
);
1324 dentry
= fhp
->fh_dentry
;
1325 dirp
= dentry
->d_inode
;
1327 err
= nfserr_notdir
;
1328 if (!dirp
->i_op
->lookup
)
1331 * Check whether the response file handle has been verified yet.
1332 * If it has, the parent directory should already be locked.
1334 if (!resfhp
->fh_dentry
) {
1335 host_err
= fh_want_write(fhp
);
1339 /* called from nfsd_proc_mkdir, or possibly nfsd3_proc_create */
1340 fh_lock_nested(fhp
, I_MUTEX_PARENT
);
1341 dchild
= lookup_one_len(fname
, dentry
, flen
);
1342 host_err
= PTR_ERR(dchild
);
1345 err
= fh_compose(resfhp
, fhp
->fh_export
, dchild
, fhp
);
1349 /* called from nfsd_proc_create */
1350 dchild
= dget(resfhp
->fh_dentry
);
1351 if (!fhp
->fh_locked
) {
1352 /* not actually possible */
1354 "nfsd_create: parent %s/%s not locked!\n",
1355 dentry
->d_parent
->d_name
.name
,
1356 dentry
->d_name
.name
);
1362 * Make sure the child dentry is still negative ...
1365 if (dchild
->d_inode
) {
1366 dprintk("nfsd_create: dentry %s/%s not negative!\n",
1367 dentry
->d_name
.name
, dchild
->d_name
.name
);
1371 if (!(iap
->ia_valid
& ATTR_MODE
))
1373 iap
->ia_mode
= (iap
->ia_mode
& S_IALLUGO
) | type
;
1376 if (!S_ISREG(type
) && !S_ISDIR(type
) && !special_file(type
)) {
1377 printk(KERN_WARNING
"nfsd: bad file type %o in nfsd_create\n",
1383 * Get the dir op function pointer.
1389 host_err
= vfs_create(dirp
, dchild
, iap
->ia_mode
, true);
1391 nfsd_check_ignore_resizing(iap
);
1394 host_err
= vfs_mkdir(dirp
, dchild
, iap
->ia_mode
);
1400 host_err
= vfs_mknod(dirp
, dchild
, iap
->ia_mode
, rdev
);
1406 err
= nfsd_create_setattr(rqstp
, resfhp
, iap
);
1409 * nfsd_setattr already committed the child. Transactional filesystems
1410 * had a chance to commit changes for both parent and child
1411 * simultaneously making the following commit_metadata a noop.
1413 err2
= nfserrno(commit_metadata(fhp
));
1417 * Update the file handle to get the new inode info.
1420 err
= fh_update(resfhp
);
1422 if (dchild
&& !IS_ERR(dchild
))
1427 err
= nfserrno(host_err
);
1431 #ifdef CONFIG_NFSD_V3
1433 static inline int nfsd_create_is_exclusive(int createmode
)
1435 return createmode
== NFS3_CREATE_EXCLUSIVE
1436 || createmode
== NFS4_CREATE_EXCLUSIVE4_1
;
1440 * NFSv3 and NFSv4 version of nfsd_create
1443 do_nfsd_create(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
1444 char *fname
, int flen
, struct iattr
*iap
,
1445 struct svc_fh
*resfhp
, int createmode
, u32
*verifier
,
1446 bool *truncp
, bool *created
)
1448 struct dentry
*dentry
, *dchild
= NULL
;
1452 __u32 v_mtime
=0, v_atime
=0;
1458 if (isdotent(fname
, flen
))
1460 if (!(iap
->ia_valid
& ATTR_MODE
))
1462 err
= fh_verify(rqstp
, fhp
, S_IFDIR
, NFSD_MAY_EXEC
);
1466 dentry
= fhp
->fh_dentry
;
1467 dirp
= dentry
->d_inode
;
1469 /* Get all the sanity checks out of the way before
1470 * we lock the parent. */
1471 err
= nfserr_notdir
;
1472 if (!dirp
->i_op
->lookup
)
1475 host_err
= fh_want_write(fhp
);
1479 fh_lock_nested(fhp
, I_MUTEX_PARENT
);
1482 * Compose the response file handle.
1484 dchild
= lookup_one_len(fname
, dentry
, flen
);
1485 host_err
= PTR_ERR(dchild
);
1489 /* If file doesn't exist, check for permissions to create one */
1490 if (!dchild
->d_inode
) {
1491 err
= fh_verify(rqstp
, fhp
, S_IFDIR
, NFSD_MAY_CREATE
);
1496 err
= fh_compose(resfhp
, fhp
->fh_export
, dchild
, fhp
);
1500 if (nfsd_create_is_exclusive(createmode
)) {
1501 /* solaris7 gets confused (bugid 4218508) if these have
1502 * the high bit set, so just clear the high bits. If this is
1503 * ever changed to use different attrs for storing the
1504 * verifier, then do_open_lookup() will also need to be fixed
1507 v_mtime
= verifier
[0]&0x7fffffff;
1508 v_atime
= verifier
[1]&0x7fffffff;
1511 if (dchild
->d_inode
) {
1514 switch (createmode
) {
1515 case NFS3_CREATE_UNCHECKED
:
1516 if (! S_ISREG(dchild
->d_inode
->i_mode
))
1519 /* in nfsv4, we need to treat this case a little
1520 * differently. we don't want to truncate the
1521 * file now; this would be wrong if the OPEN
1522 * fails for some other reason. furthermore,
1523 * if the size is nonzero, we should ignore it
1524 * according to spec!
1526 *truncp
= (iap
->ia_valid
& ATTR_SIZE
) && !iap
->ia_size
;
1529 iap
->ia_valid
&= ATTR_SIZE
;
1533 case NFS3_CREATE_EXCLUSIVE
:
1534 if ( dchild
->d_inode
->i_mtime
.tv_sec
== v_mtime
1535 && dchild
->d_inode
->i_atime
.tv_sec
== v_atime
1536 && dchild
->d_inode
->i_size
== 0 ) {
1541 case NFS4_CREATE_EXCLUSIVE4_1
:
1542 if ( dchild
->d_inode
->i_mtime
.tv_sec
== v_mtime
1543 && dchild
->d_inode
->i_atime
.tv_sec
== v_atime
1544 && dchild
->d_inode
->i_size
== 0 ) {
1550 case NFS3_CREATE_GUARDED
:
1557 host_err
= vfs_create(dirp
, dchild
, iap
->ia_mode
, true);
1565 nfsd_check_ignore_resizing(iap
);
1567 if (nfsd_create_is_exclusive(createmode
)) {
1568 /* Cram the verifier into atime/mtime */
1569 iap
->ia_valid
= ATTR_MTIME
|ATTR_ATIME
1570 | ATTR_MTIME_SET
|ATTR_ATIME_SET
;
1571 /* XXX someone who knows this better please fix it for nsec */
1572 iap
->ia_mtime
.tv_sec
= v_mtime
;
1573 iap
->ia_atime
.tv_sec
= v_atime
;
1574 iap
->ia_mtime
.tv_nsec
= 0;
1575 iap
->ia_atime
.tv_nsec
= 0;
1579 err
= nfsd_create_setattr(rqstp
, resfhp
, iap
);
1582 * nfsd_setattr already committed the child (and possibly also the parent).
1585 err
= nfserrno(commit_metadata(fhp
));
1588 * Update the filehandle to get the new inode info.
1591 err
= fh_update(resfhp
);
1595 if (dchild
&& !IS_ERR(dchild
))
1601 err
= nfserrno(host_err
);
1604 #endif /* CONFIG_NFSD_V3 */
1607 * Read a symlink. On entry, *lenp must contain the maximum path length that
1608 * fits into the buffer. On return, it contains the true length.
1609 * N.B. After this call fhp needs an fh_put
1612 nfsd_readlink(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, char *buf
, int *lenp
)
1614 struct inode
*inode
;
1620 err
= fh_verify(rqstp
, fhp
, S_IFLNK
, NFSD_MAY_NOP
);
1624 path
.mnt
= fhp
->fh_export
->ex_path
.mnt
;
1625 path
.dentry
= fhp
->fh_dentry
;
1626 inode
= path
.dentry
->d_inode
;
1629 if (!inode
->i_op
->readlink
)
1633 /* N.B. Why does this call need a get_fs()??
1634 * Remove the set_fs and watch the fireworks:-) --okir
1637 oldfs
= get_fs(); set_fs(KERNEL_DS
);
1638 host_err
= inode
->i_op
->readlink(path
.dentry
, (char __user
*)buf
, *lenp
);
1649 err
= nfserrno(host_err
);
1654 * Create a symlink and look up its inode
1655 * N.B. After this call _both_ fhp and resfhp need an fh_put
1658 nfsd_symlink(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
1659 char *fname
, int flen
,
1660 char *path
, int plen
,
1661 struct svc_fh
*resfhp
,
1664 struct dentry
*dentry
, *dnew
;
1672 if (isdotent(fname
, flen
))
1675 err
= fh_verify(rqstp
, fhp
, S_IFDIR
, NFSD_MAY_CREATE
);
1679 host_err
= fh_want_write(fhp
);
1684 dentry
= fhp
->fh_dentry
;
1685 dnew
= lookup_one_len(fname
, dentry
, flen
);
1686 host_err
= PTR_ERR(dnew
);
1690 if (unlikely(path
[plen
] != 0)) {
1691 char *path_alloced
= kmalloc(plen
+1, GFP_KERNEL
);
1692 if (path_alloced
== NULL
)
1695 strncpy(path_alloced
, path
, plen
);
1696 path_alloced
[plen
] = 0;
1697 host_err
= vfs_symlink(dentry
->d_inode
, dnew
, path_alloced
);
1698 kfree(path_alloced
);
1701 host_err
= vfs_symlink(dentry
->d_inode
, dnew
, path
);
1702 err
= nfserrno(host_err
);
1704 err
= nfserrno(commit_metadata(fhp
));
1709 cerr
= fh_compose(resfhp
, fhp
->fh_export
, dnew
, fhp
);
1711 if (err
==0) err
= cerr
;
1716 err
= nfserrno(host_err
);
1722 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1725 nfsd_link(struct svc_rqst
*rqstp
, struct svc_fh
*ffhp
,
1726 char *name
, int len
, struct svc_fh
*tfhp
)
1728 struct dentry
*ddir
, *dnew
, *dold
;
1733 err
= fh_verify(rqstp
, ffhp
, S_IFDIR
, NFSD_MAY_CREATE
);
1736 err
= fh_verify(rqstp
, tfhp
, 0, NFSD_MAY_NOP
);
1740 if (S_ISDIR(tfhp
->fh_dentry
->d_inode
->i_mode
))
1746 if (isdotent(name
, len
))
1749 host_err
= fh_want_write(tfhp
);
1751 err
= nfserrno(host_err
);
1755 fh_lock_nested(ffhp
, I_MUTEX_PARENT
);
1756 ddir
= ffhp
->fh_dentry
;
1757 dirp
= ddir
->d_inode
;
1759 dnew
= lookup_one_len(name
, ddir
, len
);
1760 host_err
= PTR_ERR(dnew
);
1764 dold
= tfhp
->fh_dentry
;
1769 host_err
= nfsd_break_lease(dold
->d_inode
);
1771 err
= nfserrno(host_err
);
1774 host_err
= vfs_link(dold
, dirp
, dnew
);
1776 err
= nfserrno(commit_metadata(ffhp
));
1778 err
= nfserrno(commit_metadata(tfhp
));
1780 if (host_err
== -EXDEV
&& rqstp
->rq_vers
== 2)
1783 err
= nfserrno(host_err
);
1789 fh_drop_write(tfhp
);
1794 err
= nfserrno(host_err
);
1800 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1803 nfsd_rename(struct svc_rqst
*rqstp
, struct svc_fh
*ffhp
, char *fname
, int flen
,
1804 struct svc_fh
*tfhp
, char *tname
, int tlen
)
1806 struct dentry
*fdentry
, *tdentry
, *odentry
, *ndentry
, *trap
;
1807 struct inode
*fdir
, *tdir
;
1811 err
= fh_verify(rqstp
, ffhp
, S_IFDIR
, NFSD_MAY_REMOVE
);
1814 err
= fh_verify(rqstp
, tfhp
, S_IFDIR
, NFSD_MAY_CREATE
);
1818 fdentry
= ffhp
->fh_dentry
;
1819 fdir
= fdentry
->d_inode
;
1821 tdentry
= tfhp
->fh_dentry
;
1822 tdir
= tdentry
->d_inode
;
1825 if (!flen
|| isdotent(fname
, flen
) || !tlen
|| isdotent(tname
, tlen
))
1828 host_err
= fh_want_write(ffhp
);
1830 err
= nfserrno(host_err
);
1834 /* cannot use fh_lock as we need deadlock protective ordering
1835 * so do it by hand */
1836 trap
= lock_rename(tdentry
, fdentry
);
1837 ffhp
->fh_locked
= tfhp
->fh_locked
= 1;
1841 odentry
= lookup_one_len(fname
, fdentry
, flen
);
1842 host_err
= PTR_ERR(odentry
);
1843 if (IS_ERR(odentry
))
1847 if (!odentry
->d_inode
)
1850 if (odentry
== trap
)
1853 ndentry
= lookup_one_len(tname
, tdentry
, tlen
);
1854 host_err
= PTR_ERR(ndentry
);
1855 if (IS_ERR(ndentry
))
1857 host_err
= -ENOTEMPTY
;
1858 if (ndentry
== trap
)
1862 if (ffhp
->fh_export
->ex_path
.mnt
!= tfhp
->fh_export
->ex_path
.mnt
)
1864 if (ffhp
->fh_export
->ex_path
.dentry
!= tfhp
->fh_export
->ex_path
.dentry
)
1867 host_err
= nfsd_break_lease(odentry
->d_inode
);
1870 if (ndentry
->d_inode
) {
1871 host_err
= nfsd_break_lease(ndentry
->d_inode
);
1875 host_err
= vfs_rename(fdir
, odentry
, tdir
, ndentry
);
1877 host_err
= commit_metadata(tfhp
);
1879 host_err
= commit_metadata(ffhp
);
1886 err
= nfserrno(host_err
);
1888 /* we cannot reply on fh_unlock on the two filehandles,
1889 * as that would do the wrong thing if the two directories
1890 * were the same, so again we do it by hand
1892 fill_post_wcc(ffhp
);
1893 fill_post_wcc(tfhp
);
1894 unlock_rename(tdentry
, fdentry
);
1895 ffhp
->fh_locked
= tfhp
->fh_locked
= 0;
1896 fh_drop_write(ffhp
);
1903 * Unlink a file or directory
1904 * N.B. After this call fhp needs an fh_put
1907 nfsd_unlink(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, int type
,
1908 char *fname
, int flen
)
1910 struct dentry
*dentry
, *rdentry
;
1916 if (!flen
|| isdotent(fname
, flen
))
1918 err
= fh_verify(rqstp
, fhp
, S_IFDIR
, NFSD_MAY_REMOVE
);
1922 host_err
= fh_want_write(fhp
);
1926 fh_lock_nested(fhp
, I_MUTEX_PARENT
);
1927 dentry
= fhp
->fh_dentry
;
1928 dirp
= dentry
->d_inode
;
1930 rdentry
= lookup_one_len(fname
, dentry
, flen
);
1931 host_err
= PTR_ERR(rdentry
);
1932 if (IS_ERR(rdentry
))
1935 if (!rdentry
->d_inode
) {
1942 type
= rdentry
->d_inode
->i_mode
& S_IFMT
;
1944 host_err
= nfsd_break_lease(rdentry
->d_inode
);
1947 if (type
!= S_IFDIR
)
1948 host_err
= vfs_unlink(dirp
, rdentry
);
1950 host_err
= vfs_rmdir(dirp
, rdentry
);
1952 host_err
= commit_metadata(fhp
);
1957 err
= nfserrno(host_err
);
1963 * We do this buffering because we must not call back into the file
1964 * system's ->lookup() method from the filldir callback. That may well
1965 * deadlock a number of file systems.
1967 * This is based heavily on the implementation of same in XFS.
1969 struct buffered_dirent
{
1973 unsigned int d_type
;
1977 struct readdir_data
{
1978 struct dir_context ctx
;
1984 static int nfsd_buffered_filldir(void *__buf
, const char *name
, int namlen
,
1985 loff_t offset
, u64 ino
, unsigned int d_type
)
1987 struct readdir_data
*buf
= __buf
;
1988 struct buffered_dirent
*de
= (void *)(buf
->dirent
+ buf
->used
);
1989 unsigned int reclen
;
1991 reclen
= ALIGN(sizeof(struct buffered_dirent
) + namlen
, sizeof(u64
));
1992 if (buf
->used
+ reclen
> PAGE_SIZE
) {
1997 de
->namlen
= namlen
;
1998 de
->offset
= offset
;
2000 de
->d_type
= d_type
;
2001 memcpy(de
->name
, name
, namlen
);
2002 buf
->used
+= reclen
;
2007 static __be32
nfsd_buffered_readdir(struct file
*file
, filldir_t func
,
2008 struct readdir_cd
*cdp
, loff_t
*offsetp
)
2010 struct buffered_dirent
*de
;
2014 struct readdir_data buf
= {
2015 .ctx
.actor
= nfsd_buffered_filldir
,
2016 .dirent
= (void *)__get_free_page(GFP_KERNEL
)
2020 return nfserrno(-ENOMEM
);
2025 struct inode
*dir_inode
= file_inode(file
);
2026 unsigned int reclen
;
2028 cdp
->err
= nfserr_eof
; /* will be cleared on successful read */
2032 host_err
= iterate_dir(file
, &buf
.ctx
);
2045 * Various filldir functions may end up calling back into
2046 * lookup_one_len() and the file system's ->lookup() method.
2047 * These expect i_mutex to be held, as it would within readdir.
2049 host_err
= mutex_lock_killable(&dir_inode
->i_mutex
);
2053 de
= (struct buffered_dirent
*)buf
.dirent
;
2055 offset
= de
->offset
;
2057 if (func(cdp
, de
->name
, de
->namlen
, de
->offset
,
2058 de
->ino
, de
->d_type
))
2061 if (cdp
->err
!= nfs_ok
)
2064 reclen
= ALIGN(sizeof(*de
) + de
->namlen
,
2067 de
= (struct buffered_dirent
*)((char *)de
+ reclen
);
2069 mutex_unlock(&dir_inode
->i_mutex
);
2070 if (size
> 0) /* We bailed out early */
2073 offset
= vfs_llseek(file
, 0, SEEK_CUR
);
2076 free_page((unsigned long)(buf
.dirent
));
2079 return nfserrno(host_err
);
2086 * Read entries from a directory.
2087 * The NFSv3/4 verifier we ignore for now.
2090 nfsd_readdir(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, loff_t
*offsetp
,
2091 struct readdir_cd
*cdp
, filldir_t func
)
2095 loff_t offset
= *offsetp
;
2096 int may_flags
= NFSD_MAY_READ
;
2098 /* NFSv2 only supports 32 bit cookies */
2099 if (rqstp
->rq_vers
> 2)
2100 may_flags
|= NFSD_MAY_64BIT_COOKIE
;
2102 err
= nfsd_open(rqstp
, fhp
, S_IFDIR
, may_flags
, &file
);
2106 offset
= vfs_llseek(file
, offset
, SEEK_SET
);
2108 err
= nfserrno((int)offset
);
2112 err
= nfsd_buffered_readdir(file
, func
, cdp
, offsetp
);
2114 if (err
== nfserr_eof
|| err
== nfserr_toosmall
)
2115 err
= nfs_ok
; /* can still be found in ->err */
2123 * Get file system stats
2124 * N.B. After this call fhp needs an fh_put
2127 nfsd_statfs(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct kstatfs
*stat
, int access
)
2131 err
= fh_verify(rqstp
, fhp
, 0, NFSD_MAY_NOP
| access
);
2133 struct path path
= {
2134 .mnt
= fhp
->fh_export
->ex_path
.mnt
,
2135 .dentry
= fhp
->fh_dentry
,
2137 if (vfs_statfs(&path
, stat
))
2143 static int exp_rdonly(struct svc_rqst
*rqstp
, struct svc_export
*exp
)
2145 return nfsexp_flags(rqstp
, exp
) & NFSEXP_READONLY
;
2149 * Check for a user's access permissions to this inode.
2152 nfsd_permission(struct svc_rqst
*rqstp
, struct svc_export
*exp
,
2153 struct dentry
*dentry
, int acc
)
2155 struct inode
*inode
= dentry
->d_inode
;
2158 if ((acc
& NFSD_MAY_MASK
) == NFSD_MAY_NOP
)
2161 dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
2163 (acc
& NFSD_MAY_READ
)? " read" : "",
2164 (acc
& NFSD_MAY_WRITE
)? " write" : "",
2165 (acc
& NFSD_MAY_EXEC
)? " exec" : "",
2166 (acc
& NFSD_MAY_SATTR
)? " sattr" : "",
2167 (acc
& NFSD_MAY_TRUNC
)? " trunc" : "",
2168 (acc
& NFSD_MAY_LOCK
)? " lock" : "",
2169 (acc
& NFSD_MAY_OWNER_OVERRIDE
)? " owneroverride" : "",
2171 IS_IMMUTABLE(inode
)? " immut" : "",
2172 IS_APPEND(inode
)? " append" : "",
2173 __mnt_is_readonly(exp
->ex_path
.mnt
)? " ro" : "");
2174 dprintk(" owner %d/%d user %d/%d\n",
2175 inode
->i_uid
, inode
->i_gid
, current_fsuid(), current_fsgid());
2178 /* Normally we reject any write/sattr etc access on a read-only file
2179 * system. But if it is IRIX doing check on write-access for a
2180 * device special file, we ignore rofs.
2182 if (!(acc
& NFSD_MAY_LOCAL_ACCESS
))
2183 if (acc
& (NFSD_MAY_WRITE
| NFSD_MAY_SATTR
| NFSD_MAY_TRUNC
)) {
2184 if (exp_rdonly(rqstp
, exp
) ||
2185 __mnt_is_readonly(exp
->ex_path
.mnt
))
2187 if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode
))
2190 if ((acc
& NFSD_MAY_TRUNC
) && IS_APPEND(inode
))
2193 if (acc
& NFSD_MAY_LOCK
) {
2194 /* If we cannot rely on authentication in NLM requests,
2195 * just allow locks, otherwise require read permission, or
2198 if (exp
->ex_flags
& NFSEXP_NOAUTHNLM
)
2201 acc
= NFSD_MAY_READ
| NFSD_MAY_OWNER_OVERRIDE
;
2204 * The file owner always gets access permission for accesses that
2205 * would normally be checked at open time. This is to make
2206 * file access work even when the client has done a fchmod(fd, 0).
2208 * However, `cp foo bar' should fail nevertheless when bar is
2209 * readonly. A sensible way to do this might be to reject all
2210 * attempts to truncate a read-only file, because a creat() call
2211 * always implies file truncation.
2212 * ... but this isn't really fair. A process may reasonably call
2213 * ftruncate on an open file descriptor on a file with perm 000.
2214 * We must trust the client to do permission checking - using "ACCESS"
2217 if ((acc
& NFSD_MAY_OWNER_OVERRIDE
) &&
2218 uid_eq(inode
->i_uid
, current_fsuid()))
2221 /* This assumes NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
2222 err
= inode_permission(inode
, acc
& (MAY_READ
|MAY_WRITE
|MAY_EXEC
));
2224 /* Allow read access to binaries even when mode 111 */
2225 if (err
== -EACCES
&& S_ISREG(inode
->i_mode
) &&
2226 (acc
== (NFSD_MAY_READ
| NFSD_MAY_OWNER_OVERRIDE
) ||
2227 acc
== (NFSD_MAY_READ
| NFSD_MAY_READ_IF_EXEC
)))
2228 err
= inode_permission(inode
, MAY_EXEC
);
2230 return err
? nfserrno(err
) : 0;
2234 nfsd_racache_shutdown(void)
2236 struct raparms
*raparm
, *last_raparm
;
2239 dprintk("nfsd: freeing readahead buffers.\n");
2241 for (i
= 0; i
< RAPARM_HASH_SIZE
; i
++) {
2242 raparm
= raparm_hash
[i
].pb_head
;
2244 last_raparm
= raparm
;
2245 raparm
= raparm
->p_next
;
2248 raparm_hash
[i
].pb_head
= NULL
;
2252 * Initialize readahead param cache
2255 nfsd_racache_init(int cache_size
)
2260 struct raparms
**raparm
= NULL
;
2263 if (raparm_hash
[0].pb_head
)
2265 nperbucket
= DIV_ROUND_UP(cache_size
, RAPARM_HASH_SIZE
);
2268 cache_size
= nperbucket
* RAPARM_HASH_SIZE
;
2270 dprintk("nfsd: allocating %d readahead buffers.\n", cache_size
);
2272 for (i
= 0; i
< RAPARM_HASH_SIZE
; i
++) {
2273 spin_lock_init(&raparm_hash
[i
].pb_lock
);
2275 raparm
= &raparm_hash
[i
].pb_head
;
2276 for (j
= 0; j
< nperbucket
; j
++) {
2277 *raparm
= kzalloc(sizeof(struct raparms
), GFP_KERNEL
);
2280 raparm
= &(*raparm
)->p_next
;
2285 nfsdstats
.ra_size
= cache_size
;
2289 dprintk("nfsd: kmalloc failed, freeing readahead buffers\n");
2290 nfsd_racache_shutdown();
2294 #if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
2296 nfsd_get_posix_acl(struct svc_fh
*fhp
, int type
)
2298 struct inode
*inode
= fhp
->fh_dentry
->d_inode
;
2302 struct posix_acl
*acl
;
2304 if (!IS_POSIXACL(inode
))
2305 return ERR_PTR(-EOPNOTSUPP
);
2308 case ACL_TYPE_ACCESS
:
2309 name
= POSIX_ACL_XATTR_ACCESS
;
2311 case ACL_TYPE_DEFAULT
:
2312 name
= POSIX_ACL_XATTR_DEFAULT
;
2315 return ERR_PTR(-EOPNOTSUPP
);
2318 size
= nfsd_getxattr(fhp
->fh_dentry
, name
, &value
);
2320 return ERR_PTR(size
);
2322 acl
= posix_acl_from_xattr(&init_user_ns
, value
, size
);
2328 nfsd_set_posix_acl(struct svc_fh
*fhp
, int type
, struct posix_acl
*acl
)
2330 struct inode
*inode
= fhp
->fh_dentry
->d_inode
;
2336 if (!IS_POSIXACL(inode
) ||
2337 !inode
->i_op
->setxattr
|| !inode
->i_op
->removexattr
)
2340 case ACL_TYPE_ACCESS
:
2341 name
= POSIX_ACL_XATTR_ACCESS
;
2343 case ACL_TYPE_DEFAULT
:
2344 name
= POSIX_ACL_XATTR_DEFAULT
;
2350 if (acl
&& acl
->a_count
) {
2351 size
= posix_acl_xattr_size(acl
->a_count
);
2352 value
= kmalloc(size
, GFP_KERNEL
);
2355 error
= posix_acl_to_xattr(&init_user_ns
, acl
, value
, size
);
2362 error
= fh_want_write(fhp
);
2366 error
= vfs_setxattr(fhp
->fh_dentry
, name
, value
, size
, 0);
2368 if (!S_ISDIR(inode
->i_mode
) && type
== ACL_TYPE_DEFAULT
)
2371 error
= vfs_removexattr(fhp
->fh_dentry
, name
);
2372 if (error
== -ENODATA
)
2382 #endif /* defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL) */