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/falloc.h>
20 #include <linux/fcntl.h>
21 #include <linux/namei.h>
22 #include <linux/delay.h>
23 #include <linux/fsnotify.h>
24 #include <linux/posix_acl_xattr.h>
25 #include <linux/xattr.h>
26 #include <linux/jhash.h>
27 #include <linux/ima.h>
28 #include <linux/slab.h>
29 #include <asm/uaccess.h>
30 #include <linux/exportfs.h>
31 #include <linux/writeback.h>
32 #include <linux/security.h>
36 #endif /* CONFIG_NFSD_V3 */
41 #endif /* CONFIG_NFSD_V4 */
46 #define NFSDDBG_FACILITY NFSDDBG_FILEOP
50 * This is a cache of readahead params that help us choose the proper
51 * readahead strategy. Initially, we set all readahead parameters to 0
52 * and let the VFS handle things.
53 * If you increase the number of cached files very much, you'll need to
54 * add a hash table here.
57 struct raparms
*p_next
;
62 struct file_ra_state p_ra
;
63 unsigned int p_hindex
;
66 struct raparm_hbucket
{
67 struct raparms
*pb_head
;
69 } ____cacheline_aligned_in_smp
;
71 #define RAPARM_HASH_BITS 4
72 #define RAPARM_HASH_SIZE (1<<RAPARM_HASH_BITS)
73 #define RAPARM_HASH_MASK (RAPARM_HASH_SIZE-1)
74 static struct raparm_hbucket raparm_hash
[RAPARM_HASH_SIZE
];
77 * Called from nfsd_lookup and encode_dirent. Check if we have crossed
79 * Returns -EAGAIN or -ETIMEDOUT leaving *dpp and *expp unchanged,
80 * or nfs_ok having possibly changed *dpp and *expp
83 nfsd_cross_mnt(struct svc_rqst
*rqstp
, struct dentry
**dpp
,
84 struct svc_export
**expp
)
86 struct svc_export
*exp
= *expp
, *exp2
= NULL
;
87 struct dentry
*dentry
= *dpp
;
88 struct path path
= {.mnt
= mntget(exp
->ex_path
.mnt
),
89 .dentry
= dget(dentry
)};
92 err
= follow_down(&path
);
96 exp2
= rqst_exp_get_by_name(rqstp
, &path
);
100 * We normally allow NFS clients to continue
101 * "underneath" a mountpoint that is not exported.
102 * The exception is V4ROOT, where no traversal is ever
103 * allowed without an explicit export of the new
106 if (err
== -ENOENT
&& !(exp
->ex_flags
& NFSEXP_V4ROOT
))
111 if (nfsd_v4client(rqstp
) ||
112 (exp
->ex_flags
& NFSEXP_CROSSMOUNT
) || EX_NOHIDE(exp2
)) {
113 /* successfully crossed mount point */
115 * This is subtle: path.dentry is *not* on path.mnt
116 * at this point. The only reason we are safe is that
117 * original mnt is pinned down by exp, so we should
118 * put path *before* putting exp
121 path
.dentry
= dentry
;
131 static void follow_to_parent(struct path
*path
)
135 while (path
->dentry
== path
->mnt
->mnt_root
&& follow_up(path
))
137 dp
= dget_parent(path
->dentry
);
142 static int nfsd_lookup_parent(struct svc_rqst
*rqstp
, struct dentry
*dparent
, struct svc_export
**exp
, struct dentry
**dentryp
)
144 struct svc_export
*exp2
;
145 struct path path
= {.mnt
= mntget((*exp
)->ex_path
.mnt
),
146 .dentry
= dget(dparent
)};
148 follow_to_parent(&path
);
150 exp2
= rqst_exp_parent(rqstp
, &path
);
151 if (PTR_ERR(exp2
) == -ENOENT
) {
152 *dentryp
= dget(dparent
);
153 } else if (IS_ERR(exp2
)) {
155 return PTR_ERR(exp2
);
157 *dentryp
= dget(path
.dentry
);
166 * For nfsd purposes, we treat V4ROOT exports as though there was an
167 * export at *every* directory.
169 int nfsd_mountpoint(struct dentry
*dentry
, struct svc_export
*exp
)
171 if (d_mountpoint(dentry
))
173 if (nfsd4_is_junction(dentry
))
175 if (!(exp
->ex_flags
& NFSEXP_V4ROOT
))
177 return d_inode(dentry
) != NULL
;
181 nfsd_lookup_dentry(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
182 const char *name
, unsigned int len
,
183 struct svc_export
**exp_ret
, struct dentry
**dentry_ret
)
185 struct svc_export
*exp
;
186 struct dentry
*dparent
;
187 struct dentry
*dentry
;
190 dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp
), len
,name
);
192 dparent
= fhp
->fh_dentry
;
193 exp
= exp_get(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 * In the nfsd4_open() case, this may be held across
212 * subsequent open and delegation acquisition which may
213 * need to take the child's i_mutex:
215 fh_lock_nested(fhp
, I_MUTEX_PARENT
);
216 dentry
= lookup_one_len(name
, dparent
, len
);
217 host_err
= PTR_ERR(dentry
);
221 * check if we have crossed a mount point ...
223 if (nfsd_mountpoint(dentry
, exp
)) {
224 if ((host_err
= nfsd_cross_mnt(rqstp
, &dentry
, &exp
))) {
230 *dentry_ret
= dentry
;
236 return nfserrno(host_err
);
240 * Look up one component of a pathname.
241 * N.B. After this call _both_ fhp and resfh need an fh_put
243 * If the lookup would cross a mountpoint, and the mounted filesystem
244 * is exported to the client with NFSEXP_NOHIDE, then the lookup is
245 * accepted as it stands and the mounted directory is
246 * returned. Otherwise the covered directory is returned.
247 * NOTE: this mountpoint crossing is not supported properly by all
248 * clients and is explicitly disallowed for NFSv3
249 * NeilBrown <neilb@cse.unsw.edu.au>
252 nfsd_lookup(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, const char *name
,
253 unsigned int len
, struct svc_fh
*resfh
)
255 struct svc_export
*exp
;
256 struct dentry
*dentry
;
259 err
= fh_verify(rqstp
, fhp
, S_IFDIR
, NFSD_MAY_EXEC
);
262 err
= nfsd_lookup_dentry(rqstp
, fhp
, name
, len
, &exp
, &dentry
);
265 err
= check_nfsd_access(exp
, rqstp
);
269 * Note: we compose the file handle now, but as the
270 * dentry may be negative, it may need to be updated.
272 err
= fh_compose(resfh
, exp
, dentry
, fhp
);
273 if (!err
&& d_really_is_negative(dentry
))
282 * Commit metadata changes to stable storage.
285 commit_metadata(struct svc_fh
*fhp
)
287 struct inode
*inode
= d_inode(fhp
->fh_dentry
);
288 const struct export_operations
*export_ops
= inode
->i_sb
->s_export_op
;
290 if (!EX_ISSYNC(fhp
->fh_export
))
293 if (export_ops
->commit_metadata
)
294 return export_ops
->commit_metadata(inode
);
295 return sync_inode_metadata(inode
, 1);
299 * Go over the attributes and take care of the small differences between
300 * NFS semantics and what Linux expects.
303 nfsd_sanitize_attrs(struct inode
*inode
, struct iattr
*iap
)
305 /* sanitize the mode change */
306 if (iap
->ia_valid
& ATTR_MODE
) {
307 iap
->ia_mode
&= S_IALLUGO
;
308 iap
->ia_mode
|= (inode
->i_mode
& ~S_IALLUGO
);
311 /* Revoke setuid/setgid on chown */
312 if (!S_ISDIR(inode
->i_mode
) &&
313 ((iap
->ia_valid
& ATTR_UID
) || (iap
->ia_valid
& ATTR_GID
))) {
314 iap
->ia_valid
|= ATTR_KILL_PRIV
;
315 if (iap
->ia_valid
& ATTR_MODE
) {
316 /* we're setting mode too, just clear the s*id bits */
317 iap
->ia_mode
&= ~S_ISUID
;
318 if (iap
->ia_mode
& S_IXGRP
)
319 iap
->ia_mode
&= ~S_ISGID
;
321 /* set ATTR_KILL_* bits and let VFS handle it */
322 iap
->ia_valid
|= (ATTR_KILL_SUID
| ATTR_KILL_SGID
);
328 nfsd_get_write_access(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
331 struct inode
*inode
= d_inode(fhp
->fh_dentry
);
334 if (iap
->ia_size
< inode
->i_size
) {
337 err
= nfsd_permission(rqstp
, fhp
->fh_export
, fhp
->fh_dentry
,
338 NFSD_MAY_TRUNC
| NFSD_MAY_OWNER_OVERRIDE
);
343 host_err
= get_write_access(inode
);
347 host_err
= locks_verify_truncate(inode
, NULL
, iap
->ia_size
);
349 goto out_put_write_access
;
352 out_put_write_access
:
353 put_write_access(inode
);
355 return nfserrno(host_err
);
359 * Set various file attributes. After this call fhp needs an fh_put.
362 nfsd_setattr(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct iattr
*iap
,
363 int check_guard
, time_t guardtime
)
365 struct dentry
*dentry
;
367 int accmode
= NFSD_MAY_SATTR
;
371 bool get_write_count
;
374 if (iap
->ia_valid
& (ATTR_ATIME
| ATTR_MTIME
| ATTR_SIZE
))
375 accmode
|= NFSD_MAY_WRITE
|NFSD_MAY_OWNER_OVERRIDE
;
376 if (iap
->ia_valid
& ATTR_SIZE
)
379 /* Callers that do fh_verify should do the fh_want_write: */
380 get_write_count
= !fhp
->fh_dentry
;
383 err
= fh_verify(rqstp
, fhp
, ftype
, accmode
);
386 if (get_write_count
) {
387 host_err
= fh_want_write(fhp
);
389 return nfserrno(host_err
);
392 dentry
= fhp
->fh_dentry
;
393 inode
= d_inode(dentry
);
395 /* Ignore any mode updates on symlinks */
396 if (S_ISLNK(inode
->i_mode
))
397 iap
->ia_valid
&= ~ATTR_MODE
;
402 nfsd_sanitize_attrs(inode
, iap
);
405 * The size case is special, it changes the file in addition to the
408 if (iap
->ia_valid
& ATTR_SIZE
) {
409 err
= nfsd_get_write_access(rqstp
, fhp
, iap
);
415 * RFC5661, Section 18.30.4:
416 * Changing the size of a file with SETATTR indirectly
417 * changes the time_modify and change attributes.
419 * (and similar for the older RFCs)
421 if (iap
->ia_size
!= i_size_read(inode
))
422 iap
->ia_valid
|= ATTR_MTIME
;
425 iap
->ia_valid
|= ATTR_CTIME
;
427 if (check_guard
&& guardtime
!= inode
->i_ctime
.tv_sec
) {
428 err
= nfserr_notsync
;
429 goto out_put_write_access
;
433 host_err
= notify_change(dentry
, iap
, NULL
);
435 err
= nfserrno(host_err
);
437 out_put_write_access
:
439 put_write_access(inode
);
441 err
= nfserrno(commit_metadata(fhp
));
446 #if defined(CONFIG_NFSD_V4)
448 * NFS junction information is stored in an extended attribute.
450 #define NFSD_JUNCTION_XATTR_NAME XATTR_TRUSTED_PREFIX "junction.nfs"
453 * nfsd4_is_junction - Test if an object could be an NFS junction
455 * @dentry: object to test
457 * Returns 1 if "dentry" appears to contain NFS junction information.
458 * Otherwise 0 is returned.
460 int nfsd4_is_junction(struct dentry
*dentry
)
462 struct inode
*inode
= d_inode(dentry
);
466 if (inode
->i_mode
& S_IXUGO
)
468 if (!(inode
->i_mode
& S_ISVTX
))
470 if (vfs_getxattr(dentry
, NFSD_JUNCTION_XATTR_NAME
, NULL
, 0) <= 0)
474 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
475 __be32
nfsd4_set_nfs4_label(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
476 struct xdr_netobj
*label
)
480 struct dentry
*dentry
;
482 error
= fh_verify(rqstp
, fhp
, 0 /* S_IFREG */, NFSD_MAY_SATTR
);
486 dentry
= fhp
->fh_dentry
;
488 mutex_lock(&d_inode(dentry
)->i_mutex
);
489 host_error
= security_inode_setsecctx(dentry
, label
->data
, label
->len
);
490 mutex_unlock(&d_inode(dentry
)->i_mutex
);
491 return nfserrno(host_error
);
494 __be32
nfsd4_set_nfs4_label(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
495 struct xdr_netobj
*label
)
497 return nfserr_notsupp
;
501 __be32
nfsd4_vfs_fallocate(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
502 struct file
*file
, loff_t offset
, loff_t len
,
507 if (!S_ISREG(file_inode(file
)->i_mode
))
510 error
= vfs_fallocate(file
, flags
, offset
, len
);
512 error
= commit_metadata(fhp
);
514 return nfserrno(error
);
516 #endif /* defined(CONFIG_NFSD_V4) */
518 #ifdef CONFIG_NFSD_V3
520 * Check server access rights to a file system object
526 static struct accessmap nfs3_regaccess
[] = {
527 { NFS3_ACCESS_READ
, NFSD_MAY_READ
},
528 { NFS3_ACCESS_EXECUTE
, NFSD_MAY_EXEC
},
529 { NFS3_ACCESS_MODIFY
, NFSD_MAY_WRITE
|NFSD_MAY_TRUNC
},
530 { NFS3_ACCESS_EXTEND
, NFSD_MAY_WRITE
},
535 static struct accessmap nfs3_diraccess
[] = {
536 { NFS3_ACCESS_READ
, NFSD_MAY_READ
},
537 { NFS3_ACCESS_LOOKUP
, NFSD_MAY_EXEC
},
538 { NFS3_ACCESS_MODIFY
, NFSD_MAY_EXEC
|NFSD_MAY_WRITE
|NFSD_MAY_TRUNC
},
539 { NFS3_ACCESS_EXTEND
, NFSD_MAY_EXEC
|NFSD_MAY_WRITE
},
540 { NFS3_ACCESS_DELETE
, NFSD_MAY_REMOVE
},
545 static struct accessmap nfs3_anyaccess
[] = {
546 /* Some clients - Solaris 2.6 at least, make an access call
547 * to the server to check for access for things like /dev/null
548 * (which really, the server doesn't care about). So
549 * We provide simple access checking for them, looking
550 * mainly at mode bits, and we make sure to ignore read-only
553 { NFS3_ACCESS_READ
, NFSD_MAY_READ
},
554 { NFS3_ACCESS_EXECUTE
, NFSD_MAY_EXEC
},
555 { NFS3_ACCESS_MODIFY
, NFSD_MAY_WRITE
|NFSD_MAY_LOCAL_ACCESS
},
556 { NFS3_ACCESS_EXTEND
, NFSD_MAY_WRITE
|NFSD_MAY_LOCAL_ACCESS
},
562 nfsd_access(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, u32
*access
, u32
*supported
)
564 struct accessmap
*map
;
565 struct svc_export
*export
;
566 struct dentry
*dentry
;
567 u32 query
, result
= 0, sresult
= 0;
570 error
= fh_verify(rqstp
, fhp
, 0, NFSD_MAY_NOP
);
574 export
= fhp
->fh_export
;
575 dentry
= fhp
->fh_dentry
;
577 if (d_is_reg(dentry
))
578 map
= nfs3_regaccess
;
579 else if (d_is_dir(dentry
))
580 map
= nfs3_diraccess
;
582 map
= nfs3_anyaccess
;
586 for (; map
->access
; map
++) {
587 if (map
->access
& query
) {
590 sresult
|= map
->access
;
592 err2
= nfsd_permission(rqstp
, export
, dentry
, map
->how
);
595 result
|= map
->access
;
598 /* the following error codes just mean the access was not allowed,
599 * rather than an error occurred */
603 /* simply don't "or" in the access bit. */
613 *supported
= sresult
;
618 #endif /* CONFIG_NFSD_V3 */
620 static int nfsd_open_break_lease(struct inode
*inode
, int access
)
624 if (access
& NFSD_MAY_NOT_BREAK_LEASE
)
626 mode
= (access
& NFSD_MAY_WRITE
) ? O_WRONLY
: O_RDONLY
;
627 return break_lease(inode
, mode
| O_NONBLOCK
);
631 * Open an existing file or directory.
632 * The may_flags argument indicates the type of open (read/write/lock)
633 * and additional flags.
634 * N.B. After this call fhp needs an fh_put
637 nfsd_open(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, umode_t type
,
638 int may_flags
, struct file
**filp
)
643 int flags
= O_RDONLY
|O_LARGEFILE
;
647 validate_process_creds();
650 * If we get here, then the client has already done an "open",
651 * and (hopefully) checked permission - so allow OWNER_OVERRIDE
652 * in case a chmod has now revoked permission.
654 * Arguably we should also allow the owner override for
655 * directories, but we never have and it doesn't seem to have
656 * caused anyone a problem. If we were to change this, note
657 * also that our filldir callbacks would need a variant of
658 * lookup_one_len that doesn't check permissions.
661 may_flags
|= NFSD_MAY_OWNER_OVERRIDE
;
662 err
= fh_verify(rqstp
, fhp
, type
, may_flags
);
666 path
.mnt
= fhp
->fh_export
->ex_path
.mnt
;
667 path
.dentry
= fhp
->fh_dentry
;
668 inode
= d_inode(path
.dentry
);
670 /* Disallow write access to files with the append-only bit set
671 * or any access when mandatory locking enabled
674 if (IS_APPEND(inode
) && (may_flags
& NFSD_MAY_WRITE
))
677 * We must ignore files (but only files) which might have mandatory
678 * locks on them because there is no way to know if the accesser has
681 if (S_ISREG((inode
)->i_mode
) && mandatory_lock(inode
))
687 host_err
= nfsd_open_break_lease(inode
, may_flags
);
688 if (host_err
) /* NOMEM or WOULDBLOCK */
691 if (may_flags
& NFSD_MAY_WRITE
) {
692 if (may_flags
& NFSD_MAY_READ
)
693 flags
= O_RDWR
|O_LARGEFILE
;
695 flags
= O_WRONLY
|O_LARGEFILE
;
698 file
= dentry_open(&path
, flags
, current_cred());
700 host_err
= PTR_ERR(file
);
704 host_err
= ima_file_check(file
, may_flags
, 0);
710 if (may_flags
& NFSD_MAY_64BIT_COOKIE
)
711 file
->f_mode
|= FMODE_64BITHASH
;
713 file
->f_mode
|= FMODE_32BITHASH
;
717 err
= nfserrno(host_err
);
719 validate_process_creds();
724 nfsd_init_raparms(struct file
*file
)
726 struct inode
*inode
= file_inode(file
);
727 dev_t dev
= inode
->i_sb
->s_dev
;
728 ino_t ino
= inode
->i_ino
;
729 struct raparms
*ra
, **rap
, **frap
= NULL
;
732 struct raparm_hbucket
*rab
;
734 hash
= jhash_2words(dev
, ino
, 0xfeedbeef) & RAPARM_HASH_MASK
;
735 rab
= &raparm_hash
[hash
];
737 spin_lock(&rab
->pb_lock
);
738 for (rap
= &rab
->pb_head
; (ra
= *rap
); rap
= &ra
->p_next
) {
739 if (ra
->p_ino
== ino
&& ra
->p_dev
== dev
)
742 if (ra
->p_count
== 0)
745 depth
= nfsdstats
.ra_size
;
747 spin_unlock(&rab
->pb_lock
);
757 if (rap
!= &rab
->pb_head
) {
759 ra
->p_next
= rab
->pb_head
;
763 nfsdstats
.ra_depth
[depth
*10/nfsdstats
.ra_size
]++;
764 spin_unlock(&rab
->pb_lock
);
767 file
->f_ra
= ra
->p_ra
;
771 void nfsd_put_raparams(struct file
*file
, struct raparms
*ra
)
773 struct raparm_hbucket
*rab
= &raparm_hash
[ra
->p_hindex
];
775 spin_lock(&rab
->pb_lock
);
776 ra
->p_ra
= file
->f_ra
;
779 spin_unlock(&rab
->pb_lock
);
783 * Grab and keep cached pages associated with a file in the svc_rqst
784 * so that they can be passed to the network sendmsg/sendpage routines
785 * directly. They will be released after the sending has completed.
788 nfsd_splice_actor(struct pipe_inode_info
*pipe
, struct pipe_buffer
*buf
,
789 struct splice_desc
*sd
)
791 struct svc_rqst
*rqstp
= sd
->u
.data
;
792 struct page
**pp
= rqstp
->rq_next_page
;
793 struct page
*page
= buf
->page
;
798 if (rqstp
->rq_res
.page_len
== 0) {
800 put_page(*rqstp
->rq_next_page
);
801 *(rqstp
->rq_next_page
++) = page
;
802 rqstp
->rq_res
.page_base
= buf
->offset
;
803 rqstp
->rq_res
.page_len
= size
;
804 } else if (page
!= pp
[-1]) {
806 if (*rqstp
->rq_next_page
)
807 put_page(*rqstp
->rq_next_page
);
808 *(rqstp
->rq_next_page
++) = page
;
809 rqstp
->rq_res
.page_len
+= size
;
811 rqstp
->rq_res
.page_len
+= size
;
816 static int nfsd_direct_splice_actor(struct pipe_inode_info
*pipe
,
817 struct splice_desc
*sd
)
819 return __splice_from_pipe(pipe
, sd
, nfsd_splice_actor
);
823 nfsd_finish_read(struct file
*file
, unsigned long *count
, int host_err
)
826 nfsdstats
.io_read
+= host_err
;
828 fsnotify_access(file
);
831 return nfserrno(host_err
);
834 __be32
nfsd_splice_read(struct svc_rqst
*rqstp
,
835 struct file
*file
, loff_t offset
, unsigned long *count
)
837 struct splice_desc sd
= {
845 rqstp
->rq_next_page
= rqstp
->rq_respages
+ 1;
846 host_err
= splice_direct_to_actor(file
, &sd
, nfsd_direct_splice_actor
);
847 return nfsd_finish_read(file
, count
, host_err
);
850 __be32
nfsd_readv(struct file
*file
, loff_t offset
, struct kvec
*vec
, int vlen
,
851 unsigned long *count
)
858 host_err
= vfs_readv(file
, (struct iovec __user
*)vec
, vlen
, &offset
);
860 return nfsd_finish_read(file
, count
, host_err
);
864 nfsd_vfs_read(struct svc_rqst
*rqstp
, struct file
*file
,
865 loff_t offset
, struct kvec
*vec
, int vlen
, unsigned long *count
)
867 if (file
->f_op
->splice_read
&& test_bit(RQ_SPLICE_OK
, &rqstp
->rq_flags
))
868 return nfsd_splice_read(rqstp
, file
, offset
, count
);
870 return nfsd_readv(file
, offset
, vec
, vlen
, count
);
874 * Gathered writes: If another process is currently writing to the file,
875 * there's a high chance this is another nfsd (triggered by a bulk write
876 * from a client's biod). Rather than syncing the file with each write
877 * request, we sleep for 10 msec.
879 * I don't know if this roughly approximates C. Juszak's idea of
880 * gathered writes, but it's a nice and simple solution (IMHO), and it
883 * Note: we do this only in the NFSv2 case, since v3 and higher have a
884 * better tool (separate unstable writes and commits) for solving this
887 static int wait_for_concurrent_writes(struct file
*file
)
889 struct inode
*inode
= file_inode(file
);
890 static ino_t last_ino
;
891 static dev_t last_dev
;
894 if (atomic_read(&inode
->i_writecount
) > 1
895 || (last_ino
== inode
->i_ino
&& last_dev
== inode
->i_sb
->s_dev
)) {
896 dprintk("nfsd: write defer %d\n", task_pid_nr(current
));
898 dprintk("nfsd: write resume %d\n", task_pid_nr(current
));
901 if (inode
->i_state
& I_DIRTY
) {
902 dprintk("nfsd: write sync %d\n", task_pid_nr(current
));
903 err
= vfs_fsync(file
, 0);
905 last_ino
= inode
->i_ino
;
906 last_dev
= inode
->i_sb
->s_dev
;
911 nfsd_vfs_write(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct file
*file
,
912 loff_t offset
, struct kvec
*vec
, int vlen
,
913 unsigned long *cnt
, int *stablep
)
915 struct svc_export
*exp
;
920 int stable
= *stablep
;
923 loff_t end
= LLONG_MAX
;
924 unsigned int pflags
= current
->flags
;
926 if (test_bit(RQ_LOCAL
, &rqstp
->rq_flags
))
928 * We want less throttling in balance_dirty_pages()
929 * and shrink_inactive_list() so that nfs to
930 * localhost doesn't cause nfsd to lock up due to all
931 * the client's dirty pages or its congested queue.
933 current
->flags
|= PF_LESS_THROTTLE
;
935 inode
= file_inode(file
);
936 exp
= fhp
->fh_export
;
938 use_wgather
= (rqstp
->rq_vers
== 2) && EX_WGATHER(exp
);
943 /* Write the data. */
944 oldfs
= get_fs(); set_fs(KERNEL_DS
);
945 host_err
= vfs_writev(file
, (struct iovec __user
*)vec
, vlen
, &pos
);
950 nfsdstats
.io_write
+= host_err
;
951 fsnotify_modify(file
);
955 host_err
= wait_for_concurrent_writes(file
);
958 end
= offset
+ *cnt
- 1;
959 host_err
= vfs_fsync_range(file
, offset
, end
, 0);
964 dprintk("nfsd: write complete host_err=%d\n", host_err
);
968 err
= nfserrno(host_err
);
969 if (test_bit(RQ_LOCAL
, &rqstp
->rq_flags
))
970 tsk_restore_flags(current
, pflags
, PF_LESS_THROTTLE
);
975 * Read data from a file. count must contain the requested read count
976 * on entry. On return, *count contains the number of bytes actually read.
977 * N.B. After this call fhp needs an fh_put
979 __be32
nfsd_read(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
980 loff_t offset
, struct kvec
*vec
, int vlen
, unsigned long *count
)
986 err
= nfsd_open(rqstp
, fhp
, S_IFREG
, NFSD_MAY_READ
, &file
);
990 ra
= nfsd_init_raparms(file
);
991 err
= nfsd_vfs_read(rqstp
, file
, offset
, vec
, vlen
, count
);
993 nfsd_put_raparams(file
, ra
);
1000 * Write data to a file.
1001 * The stable flag requests synchronous writes.
1002 * N.B. After this call fhp needs an fh_put
1005 nfsd_write(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct file
*file
,
1006 loff_t offset
, struct kvec
*vec
, int vlen
, unsigned long *cnt
,
1012 err
= nfsd_permission(rqstp
, fhp
->fh_export
, fhp
->fh_dentry
,
1013 NFSD_MAY_WRITE
|NFSD_MAY_OWNER_OVERRIDE
);
1016 err
= nfsd_vfs_write(rqstp
, fhp
, file
, offset
, vec
, vlen
, cnt
,
1019 err
= nfsd_open(rqstp
, fhp
, S_IFREG
, NFSD_MAY_WRITE
, &file
);
1024 err
= nfsd_vfs_write(rqstp
, fhp
, file
, offset
, vec
, vlen
,
1032 #ifdef CONFIG_NFSD_V3
1034 * Commit all pending writes to stable storage.
1036 * Note: we only guarantee that data that lies within the range specified
1037 * by the 'offset' and 'count' parameters will be synced.
1039 * Unfortunately we cannot lock the file to make sure we return full WCC
1040 * data to the client, as locking happens lower down in the filesystem.
1043 nfsd_commit(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
1044 loff_t offset
, unsigned long count
)
1047 loff_t end
= LLONG_MAX
;
1048 __be32 err
= nfserr_inval
;
1053 end
= offset
+ (loff_t
)count
- 1;
1058 err
= nfsd_open(rqstp
, fhp
, S_IFREG
,
1059 NFSD_MAY_WRITE
|NFSD_MAY_NOT_BREAK_LEASE
, &file
);
1062 if (EX_ISSYNC(fhp
->fh_export
)) {
1063 int err2
= vfs_fsync_range(file
, offset
, end
, 0);
1065 if (err2
!= -EINVAL
)
1066 err
= nfserrno(err2
);
1068 err
= nfserr_notsupp
;
1075 #endif /* CONFIG_NFSD_V3 */
1078 nfsd_create_setattr(struct svc_rqst
*rqstp
, struct svc_fh
*resfhp
,
1082 * Mode has already been set earlier in create:
1084 iap
->ia_valid
&= ~ATTR_MODE
;
1086 * Setting uid/gid works only for root. Irix appears to
1087 * send along the gid on create when it tries to implement
1088 * setgid directories via NFS:
1090 if (!uid_eq(current_fsuid(), GLOBAL_ROOT_UID
))
1091 iap
->ia_valid
&= ~(ATTR_UID
|ATTR_GID
);
1093 return nfsd_setattr(rqstp
, resfhp
, iap
, 0, (time_t)0);
1094 /* Callers expect file metadata to be committed here */
1095 return nfserrno(commit_metadata(resfhp
));
1098 /* HPUX client sometimes creates a file in mode 000, and sets size to 0.
1099 * setting size to 0 may fail for some specific file systems by the permission
1100 * checking which requires WRITE permission but the mode is 000.
1101 * we ignore the resizing(to 0) on the just new created file, since the size is
1102 * 0 after file created.
1104 * call this only after vfs_create() is called.
1107 nfsd_check_ignore_resizing(struct iattr
*iap
)
1109 if ((iap
->ia_valid
& ATTR_SIZE
) && (iap
->ia_size
== 0))
1110 iap
->ia_valid
&= ~ATTR_SIZE
;
1114 * Create a file (regular, directory, device, fifo); UNIX sockets
1115 * not yet implemented.
1116 * If the response fh has been verified, the parent directory should
1117 * already be locked. Note that the parent directory is left locked.
1119 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1122 nfsd_create(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
1123 char *fname
, int flen
, struct iattr
*iap
,
1124 int type
, dev_t rdev
, struct svc_fh
*resfhp
)
1126 struct dentry
*dentry
, *dchild
= NULL
;
1136 if (isdotent(fname
, flen
))
1139 err
= fh_verify(rqstp
, fhp
, S_IFDIR
, NFSD_MAY_CREATE
);
1143 dentry
= fhp
->fh_dentry
;
1144 dirp
= d_inode(dentry
);
1146 err
= nfserr_notdir
;
1147 if (!dirp
->i_op
->lookup
)
1150 * Check whether the response file handle has been verified yet.
1151 * If it has, the parent directory should already be locked.
1153 if (!resfhp
->fh_dentry
) {
1154 host_err
= fh_want_write(fhp
);
1158 /* called from nfsd_proc_mkdir, or possibly nfsd3_proc_create */
1159 fh_lock_nested(fhp
, I_MUTEX_PARENT
);
1160 dchild
= lookup_one_len(fname
, dentry
, flen
);
1161 host_err
= PTR_ERR(dchild
);
1164 err
= fh_compose(resfhp
, fhp
->fh_export
, dchild
, fhp
);
1168 /* called from nfsd_proc_create */
1169 dchild
= dget(resfhp
->fh_dentry
);
1170 if (!fhp
->fh_locked
) {
1171 /* not actually possible */
1173 "nfsd_create: parent %pd2 not locked!\n",
1180 * Make sure the child dentry is still negative ...
1183 if (d_really_is_positive(dchild
)) {
1184 dprintk("nfsd_create: dentry %pd/%pd not negative!\n",
1189 if (!(iap
->ia_valid
& ATTR_MODE
))
1191 iap
->ia_mode
= (iap
->ia_mode
& S_IALLUGO
) | type
;
1194 if (!S_ISREG(type
) && !S_ISDIR(type
) && !special_file(type
)) {
1195 printk(KERN_WARNING
"nfsd: bad file type %o in nfsd_create\n",
1201 * Get the dir op function pointer.
1207 host_err
= vfs_create(dirp
, dchild
, iap
->ia_mode
, true);
1209 nfsd_check_ignore_resizing(iap
);
1212 host_err
= vfs_mkdir(dirp
, dchild
, iap
->ia_mode
);
1218 host_err
= vfs_mknod(dirp
, dchild
, iap
->ia_mode
, rdev
);
1224 err
= nfsd_create_setattr(rqstp
, resfhp
, iap
);
1227 * nfsd_create_setattr already committed the child. Transactional
1228 * filesystems had a chance to commit changes for both parent and
1229 * child * simultaneously making the following commit_metadata a
1232 err2
= nfserrno(commit_metadata(fhp
));
1236 * Update the file handle to get the new inode info.
1239 err
= fh_update(resfhp
);
1241 if (dchild
&& !IS_ERR(dchild
))
1246 err
= nfserrno(host_err
);
1250 #ifdef CONFIG_NFSD_V3
1253 * NFSv3 and NFSv4 version of nfsd_create
1256 do_nfsd_create(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
1257 char *fname
, int flen
, struct iattr
*iap
,
1258 struct svc_fh
*resfhp
, int createmode
, u32
*verifier
,
1259 bool *truncp
, bool *created
)
1261 struct dentry
*dentry
, *dchild
= NULL
;
1265 __u32 v_mtime
=0, v_atime
=0;
1271 if (isdotent(fname
, flen
))
1273 if (!(iap
->ia_valid
& ATTR_MODE
))
1275 err
= fh_verify(rqstp
, fhp
, S_IFDIR
, NFSD_MAY_EXEC
);
1279 dentry
= fhp
->fh_dentry
;
1280 dirp
= d_inode(dentry
);
1282 /* Get all the sanity checks out of the way before
1283 * we lock the parent. */
1284 err
= nfserr_notdir
;
1285 if (!dirp
->i_op
->lookup
)
1288 host_err
= fh_want_write(fhp
);
1292 fh_lock_nested(fhp
, I_MUTEX_PARENT
);
1295 * Compose the response file handle.
1297 dchild
= lookup_one_len(fname
, dentry
, flen
);
1298 host_err
= PTR_ERR(dchild
);
1302 /* If file doesn't exist, check for permissions to create one */
1303 if (d_really_is_negative(dchild
)) {
1304 err
= fh_verify(rqstp
, fhp
, S_IFDIR
, NFSD_MAY_CREATE
);
1309 err
= fh_compose(resfhp
, fhp
->fh_export
, dchild
, fhp
);
1313 if (nfsd_create_is_exclusive(createmode
)) {
1314 /* solaris7 gets confused (bugid 4218508) if these have
1315 * the high bit set, so just clear the high bits. If this is
1316 * ever changed to use different attrs for storing the
1317 * verifier, then do_open_lookup() will also need to be fixed
1320 v_mtime
= verifier
[0]&0x7fffffff;
1321 v_atime
= verifier
[1]&0x7fffffff;
1324 if (d_really_is_positive(dchild
)) {
1327 switch (createmode
) {
1328 case NFS3_CREATE_UNCHECKED
:
1329 if (! d_is_reg(dchild
))
1332 /* in nfsv4, we need to treat this case a little
1333 * differently. we don't want to truncate the
1334 * file now; this would be wrong if the OPEN
1335 * fails for some other reason. furthermore,
1336 * if the size is nonzero, we should ignore it
1337 * according to spec!
1339 *truncp
= (iap
->ia_valid
& ATTR_SIZE
) && !iap
->ia_size
;
1342 iap
->ia_valid
&= ATTR_SIZE
;
1346 case NFS3_CREATE_EXCLUSIVE
:
1347 if ( d_inode(dchild
)->i_mtime
.tv_sec
== v_mtime
1348 && d_inode(dchild
)->i_atime
.tv_sec
== v_atime
1349 && d_inode(dchild
)->i_size
== 0 ) {
1354 case NFS4_CREATE_EXCLUSIVE4_1
:
1355 if ( d_inode(dchild
)->i_mtime
.tv_sec
== v_mtime
1356 && d_inode(dchild
)->i_atime
.tv_sec
== v_atime
1357 && d_inode(dchild
)->i_size
== 0 ) {
1363 case NFS3_CREATE_GUARDED
:
1370 host_err
= vfs_create(dirp
, dchild
, iap
->ia_mode
, true);
1378 nfsd_check_ignore_resizing(iap
);
1380 if (nfsd_create_is_exclusive(createmode
)) {
1381 /* Cram the verifier into atime/mtime */
1382 iap
->ia_valid
= ATTR_MTIME
|ATTR_ATIME
1383 | ATTR_MTIME_SET
|ATTR_ATIME_SET
;
1384 /* XXX someone who knows this better please fix it for nsec */
1385 iap
->ia_mtime
.tv_sec
= v_mtime
;
1386 iap
->ia_atime
.tv_sec
= v_atime
;
1387 iap
->ia_mtime
.tv_nsec
= 0;
1388 iap
->ia_atime
.tv_nsec
= 0;
1392 err
= nfsd_create_setattr(rqstp
, resfhp
, iap
);
1395 * nfsd_create_setattr already committed the child
1396 * (and possibly also the parent).
1399 err
= nfserrno(commit_metadata(fhp
));
1402 * Update the filehandle to get the new inode info.
1405 err
= fh_update(resfhp
);
1409 if (dchild
&& !IS_ERR(dchild
))
1415 err
= nfserrno(host_err
);
1418 #endif /* CONFIG_NFSD_V3 */
1421 * Read a symlink. On entry, *lenp must contain the maximum path length that
1422 * fits into the buffer. On return, it contains the true length.
1423 * N.B. After this call fhp needs an fh_put
1426 nfsd_readlink(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, char *buf
, int *lenp
)
1428 struct inode
*inode
;
1434 err
= fh_verify(rqstp
, fhp
, S_IFLNK
, NFSD_MAY_NOP
);
1438 path
.mnt
= fhp
->fh_export
->ex_path
.mnt
;
1439 path
.dentry
= fhp
->fh_dentry
;
1440 inode
= d_inode(path
.dentry
);
1443 if (!inode
->i_op
->readlink
)
1447 /* N.B. Why does this call need a get_fs()??
1448 * Remove the set_fs and watch the fireworks:-) --okir
1451 oldfs
= get_fs(); set_fs(KERNEL_DS
);
1452 host_err
= inode
->i_op
->readlink(path
.dentry
, (char __user
*)buf
, *lenp
);
1463 err
= nfserrno(host_err
);
1468 * Create a symlink and look up its inode
1469 * N.B. After this call _both_ fhp and resfhp need an fh_put
1472 nfsd_symlink(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
,
1473 char *fname
, int flen
,
1475 struct svc_fh
*resfhp
)
1477 struct dentry
*dentry
, *dnew
;
1482 if (!flen
|| path
[0] == '\0')
1485 if (isdotent(fname
, flen
))
1488 err
= fh_verify(rqstp
, fhp
, S_IFDIR
, NFSD_MAY_CREATE
);
1492 host_err
= fh_want_write(fhp
);
1497 dentry
= fhp
->fh_dentry
;
1498 dnew
= lookup_one_len(fname
, dentry
, flen
);
1499 host_err
= PTR_ERR(dnew
);
1503 host_err
= vfs_symlink(d_inode(dentry
), dnew
, path
);
1504 err
= nfserrno(host_err
);
1506 err
= nfserrno(commit_metadata(fhp
));
1511 cerr
= fh_compose(resfhp
, fhp
->fh_export
, dnew
, fhp
);
1513 if (err
==0) err
= cerr
;
1518 err
= nfserrno(host_err
);
1524 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1527 nfsd_link(struct svc_rqst
*rqstp
, struct svc_fh
*ffhp
,
1528 char *name
, int len
, struct svc_fh
*tfhp
)
1530 struct dentry
*ddir
, *dnew
, *dold
;
1535 err
= fh_verify(rqstp
, ffhp
, S_IFDIR
, NFSD_MAY_CREATE
);
1538 err
= fh_verify(rqstp
, tfhp
, 0, NFSD_MAY_NOP
);
1542 if (d_is_dir(tfhp
->fh_dentry
))
1548 if (isdotent(name
, len
))
1551 host_err
= fh_want_write(tfhp
);
1553 err
= nfserrno(host_err
);
1557 fh_lock_nested(ffhp
, I_MUTEX_PARENT
);
1558 ddir
= ffhp
->fh_dentry
;
1559 dirp
= d_inode(ddir
);
1561 dnew
= lookup_one_len(name
, ddir
, len
);
1562 host_err
= PTR_ERR(dnew
);
1566 dold
= tfhp
->fh_dentry
;
1569 if (d_really_is_negative(dold
))
1571 host_err
= vfs_link(dold
, dirp
, dnew
, NULL
);
1573 err
= nfserrno(commit_metadata(ffhp
));
1575 err
= nfserrno(commit_metadata(tfhp
));
1577 if (host_err
== -EXDEV
&& rqstp
->rq_vers
== 2)
1580 err
= nfserrno(host_err
);
1586 fh_drop_write(tfhp
);
1591 err
= nfserrno(host_err
);
1597 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1600 nfsd_rename(struct svc_rqst
*rqstp
, struct svc_fh
*ffhp
, char *fname
, int flen
,
1601 struct svc_fh
*tfhp
, char *tname
, int tlen
)
1603 struct dentry
*fdentry
, *tdentry
, *odentry
, *ndentry
, *trap
;
1604 struct inode
*fdir
, *tdir
;
1608 err
= fh_verify(rqstp
, ffhp
, S_IFDIR
, NFSD_MAY_REMOVE
);
1611 err
= fh_verify(rqstp
, tfhp
, S_IFDIR
, NFSD_MAY_CREATE
);
1615 fdentry
= ffhp
->fh_dentry
;
1616 fdir
= d_inode(fdentry
);
1618 tdentry
= tfhp
->fh_dentry
;
1619 tdir
= d_inode(tdentry
);
1622 if (!flen
|| isdotent(fname
, flen
) || !tlen
|| isdotent(tname
, tlen
))
1625 host_err
= fh_want_write(ffhp
);
1627 err
= nfserrno(host_err
);
1631 /* cannot use fh_lock as we need deadlock protective ordering
1632 * so do it by hand */
1633 trap
= lock_rename(tdentry
, fdentry
);
1634 ffhp
->fh_locked
= tfhp
->fh_locked
= true;
1638 odentry
= lookup_one_len(fname
, fdentry
, flen
);
1639 host_err
= PTR_ERR(odentry
);
1640 if (IS_ERR(odentry
))
1644 if (d_really_is_negative(odentry
))
1647 if (odentry
== trap
)
1650 ndentry
= lookup_one_len(tname
, tdentry
, tlen
);
1651 host_err
= PTR_ERR(ndentry
);
1652 if (IS_ERR(ndentry
))
1654 host_err
= -ENOTEMPTY
;
1655 if (ndentry
== trap
)
1659 if (ffhp
->fh_export
->ex_path
.mnt
!= tfhp
->fh_export
->ex_path
.mnt
)
1661 if (ffhp
->fh_export
->ex_path
.dentry
!= tfhp
->fh_export
->ex_path
.dentry
)
1664 host_err
= vfs_rename(fdir
, odentry
, tdir
, ndentry
, NULL
, 0);
1666 host_err
= commit_metadata(tfhp
);
1668 host_err
= commit_metadata(ffhp
);
1675 err
= nfserrno(host_err
);
1677 * We cannot rely on fh_unlock on the two filehandles,
1678 * as that would do the wrong thing if the two directories
1679 * were the same, so again we do it by hand.
1681 fill_post_wcc(ffhp
);
1682 fill_post_wcc(tfhp
);
1683 unlock_rename(tdentry
, fdentry
);
1684 ffhp
->fh_locked
= tfhp
->fh_locked
= false;
1685 fh_drop_write(ffhp
);
1692 * Unlink a file or directory
1693 * N.B. After this call fhp needs an fh_put
1696 nfsd_unlink(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, int type
,
1697 char *fname
, int flen
)
1699 struct dentry
*dentry
, *rdentry
;
1705 if (!flen
|| isdotent(fname
, flen
))
1707 err
= fh_verify(rqstp
, fhp
, S_IFDIR
, NFSD_MAY_REMOVE
);
1711 host_err
= fh_want_write(fhp
);
1715 fh_lock_nested(fhp
, I_MUTEX_PARENT
);
1716 dentry
= fhp
->fh_dentry
;
1717 dirp
= d_inode(dentry
);
1719 rdentry
= lookup_one_len(fname
, dentry
, flen
);
1720 host_err
= PTR_ERR(rdentry
);
1721 if (IS_ERR(rdentry
))
1724 if (d_really_is_negative(rdentry
)) {
1731 type
= d_inode(rdentry
)->i_mode
& S_IFMT
;
1733 if (type
!= S_IFDIR
)
1734 host_err
= vfs_unlink(dirp
, rdentry
, NULL
);
1736 host_err
= vfs_rmdir(dirp
, rdentry
);
1738 host_err
= commit_metadata(fhp
);
1742 err
= nfserrno(host_err
);
1748 * We do this buffering because we must not call back into the file
1749 * system's ->lookup() method from the filldir callback. That may well
1750 * deadlock a number of file systems.
1752 * This is based heavily on the implementation of same in XFS.
1754 struct buffered_dirent
{
1758 unsigned int d_type
;
1762 struct readdir_data
{
1763 struct dir_context ctx
;
1769 static int nfsd_buffered_filldir(struct dir_context
*ctx
, const char *name
,
1770 int namlen
, loff_t offset
, u64 ino
,
1771 unsigned int d_type
)
1773 struct readdir_data
*buf
=
1774 container_of(ctx
, struct readdir_data
, ctx
);
1775 struct buffered_dirent
*de
= (void *)(buf
->dirent
+ buf
->used
);
1776 unsigned int reclen
;
1778 reclen
= ALIGN(sizeof(struct buffered_dirent
) + namlen
, sizeof(u64
));
1779 if (buf
->used
+ reclen
> PAGE_SIZE
) {
1784 de
->namlen
= namlen
;
1785 de
->offset
= offset
;
1787 de
->d_type
= d_type
;
1788 memcpy(de
->name
, name
, namlen
);
1789 buf
->used
+= reclen
;
1794 static __be32
nfsd_buffered_readdir(struct file
*file
, nfsd_filldir_t func
,
1795 struct readdir_cd
*cdp
, loff_t
*offsetp
)
1797 struct buffered_dirent
*de
;
1801 struct readdir_data buf
= {
1802 .ctx
.actor
= nfsd_buffered_filldir
,
1803 .dirent
= (void *)__get_free_page(GFP_KERNEL
)
1807 return nfserrno(-ENOMEM
);
1812 struct inode
*dir_inode
= file_inode(file
);
1813 unsigned int reclen
;
1815 cdp
->err
= nfserr_eof
; /* will be cleared on successful read */
1819 host_err
= iterate_dir(file
, &buf
.ctx
);
1832 * Various filldir functions may end up calling back into
1833 * lookup_one_len() and the file system's ->lookup() method.
1834 * These expect i_mutex to be held, as it would within readdir.
1836 host_err
= mutex_lock_killable(&dir_inode
->i_mutex
);
1840 de
= (struct buffered_dirent
*)buf
.dirent
;
1842 offset
= de
->offset
;
1844 if (func(cdp
, de
->name
, de
->namlen
, de
->offset
,
1845 de
->ino
, de
->d_type
))
1848 if (cdp
->err
!= nfs_ok
)
1851 reclen
= ALIGN(sizeof(*de
) + de
->namlen
,
1854 de
= (struct buffered_dirent
*)((char *)de
+ reclen
);
1856 mutex_unlock(&dir_inode
->i_mutex
);
1857 if (size
> 0) /* We bailed out early */
1860 offset
= vfs_llseek(file
, 0, SEEK_CUR
);
1863 free_page((unsigned long)(buf
.dirent
));
1866 return nfserrno(host_err
);
1873 * Read entries from a directory.
1874 * The NFSv3/4 verifier we ignore for now.
1877 nfsd_readdir(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, loff_t
*offsetp
,
1878 struct readdir_cd
*cdp
, nfsd_filldir_t func
)
1882 loff_t offset
= *offsetp
;
1883 int may_flags
= NFSD_MAY_READ
;
1885 /* NFSv2 only supports 32 bit cookies */
1886 if (rqstp
->rq_vers
> 2)
1887 may_flags
|= NFSD_MAY_64BIT_COOKIE
;
1889 err
= nfsd_open(rqstp
, fhp
, S_IFDIR
, may_flags
, &file
);
1893 offset
= vfs_llseek(file
, offset
, SEEK_SET
);
1895 err
= nfserrno((int)offset
);
1899 err
= nfsd_buffered_readdir(file
, func
, cdp
, offsetp
);
1901 if (err
== nfserr_eof
|| err
== nfserr_toosmall
)
1902 err
= nfs_ok
; /* can still be found in ->err */
1910 * Get file system stats
1911 * N.B. After this call fhp needs an fh_put
1914 nfsd_statfs(struct svc_rqst
*rqstp
, struct svc_fh
*fhp
, struct kstatfs
*stat
, int access
)
1918 err
= fh_verify(rqstp
, fhp
, 0, NFSD_MAY_NOP
| access
);
1920 struct path path
= {
1921 .mnt
= fhp
->fh_export
->ex_path
.mnt
,
1922 .dentry
= fhp
->fh_dentry
,
1924 if (vfs_statfs(&path
, stat
))
1930 static int exp_rdonly(struct svc_rqst
*rqstp
, struct svc_export
*exp
)
1932 return nfsexp_flags(rqstp
, exp
) & NFSEXP_READONLY
;
1936 * Check for a user's access permissions to this inode.
1939 nfsd_permission(struct svc_rqst
*rqstp
, struct svc_export
*exp
,
1940 struct dentry
*dentry
, int acc
)
1942 struct inode
*inode
= d_inode(dentry
);
1945 if ((acc
& NFSD_MAY_MASK
) == NFSD_MAY_NOP
)
1948 dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
1950 (acc
& NFSD_MAY_READ
)? " read" : "",
1951 (acc
& NFSD_MAY_WRITE
)? " write" : "",
1952 (acc
& NFSD_MAY_EXEC
)? " exec" : "",
1953 (acc
& NFSD_MAY_SATTR
)? " sattr" : "",
1954 (acc
& NFSD_MAY_TRUNC
)? " trunc" : "",
1955 (acc
& NFSD_MAY_LOCK
)? " lock" : "",
1956 (acc
& NFSD_MAY_OWNER_OVERRIDE
)? " owneroverride" : "",
1958 IS_IMMUTABLE(inode
)? " immut" : "",
1959 IS_APPEND(inode
)? " append" : "",
1960 __mnt_is_readonly(exp
->ex_path
.mnt
)? " ro" : "");
1961 dprintk(" owner %d/%d user %d/%d\n",
1962 inode
->i_uid
, inode
->i_gid
, current_fsuid(), current_fsgid());
1965 /* Normally we reject any write/sattr etc access on a read-only file
1966 * system. But if it is IRIX doing check on write-access for a
1967 * device special file, we ignore rofs.
1969 if (!(acc
& NFSD_MAY_LOCAL_ACCESS
))
1970 if (acc
& (NFSD_MAY_WRITE
| NFSD_MAY_SATTR
| NFSD_MAY_TRUNC
)) {
1971 if (exp_rdonly(rqstp
, exp
) ||
1972 __mnt_is_readonly(exp
->ex_path
.mnt
))
1974 if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode
))
1977 if ((acc
& NFSD_MAY_TRUNC
) && IS_APPEND(inode
))
1980 if (acc
& NFSD_MAY_LOCK
) {
1981 /* If we cannot rely on authentication in NLM requests,
1982 * just allow locks, otherwise require read permission, or
1985 if (exp
->ex_flags
& NFSEXP_NOAUTHNLM
)
1988 acc
= NFSD_MAY_READ
| NFSD_MAY_OWNER_OVERRIDE
;
1991 * The file owner always gets access permission for accesses that
1992 * would normally be checked at open time. This is to make
1993 * file access work even when the client has done a fchmod(fd, 0).
1995 * However, `cp foo bar' should fail nevertheless when bar is
1996 * readonly. A sensible way to do this might be to reject all
1997 * attempts to truncate a read-only file, because a creat() call
1998 * always implies file truncation.
1999 * ... but this isn't really fair. A process may reasonably call
2000 * ftruncate on an open file descriptor on a file with perm 000.
2001 * We must trust the client to do permission checking - using "ACCESS"
2004 if ((acc
& NFSD_MAY_OWNER_OVERRIDE
) &&
2005 uid_eq(inode
->i_uid
, current_fsuid()))
2008 /* This assumes NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
2009 err
= inode_permission(inode
, acc
& (MAY_READ
|MAY_WRITE
|MAY_EXEC
));
2011 /* Allow read access to binaries even when mode 111 */
2012 if (err
== -EACCES
&& S_ISREG(inode
->i_mode
) &&
2013 (acc
== (NFSD_MAY_READ
| NFSD_MAY_OWNER_OVERRIDE
) ||
2014 acc
== (NFSD_MAY_READ
| NFSD_MAY_READ_IF_EXEC
)))
2015 err
= inode_permission(inode
, MAY_EXEC
);
2017 return err
? nfserrno(err
) : 0;
2021 nfsd_racache_shutdown(void)
2023 struct raparms
*raparm
, *last_raparm
;
2026 dprintk("nfsd: freeing readahead buffers.\n");
2028 for (i
= 0; i
< RAPARM_HASH_SIZE
; i
++) {
2029 raparm
= raparm_hash
[i
].pb_head
;
2031 last_raparm
= raparm
;
2032 raparm
= raparm
->p_next
;
2035 raparm_hash
[i
].pb_head
= NULL
;
2039 * Initialize readahead param cache
2042 nfsd_racache_init(int cache_size
)
2047 struct raparms
**raparm
= NULL
;
2050 if (raparm_hash
[0].pb_head
)
2052 nperbucket
= DIV_ROUND_UP(cache_size
, RAPARM_HASH_SIZE
);
2053 nperbucket
= max(2, nperbucket
);
2054 cache_size
= nperbucket
* RAPARM_HASH_SIZE
;
2056 dprintk("nfsd: allocating %d readahead buffers.\n", cache_size
);
2058 for (i
= 0; i
< RAPARM_HASH_SIZE
; i
++) {
2059 spin_lock_init(&raparm_hash
[i
].pb_lock
);
2061 raparm
= &raparm_hash
[i
].pb_head
;
2062 for (j
= 0; j
< nperbucket
; j
++) {
2063 *raparm
= kzalloc(sizeof(struct raparms
), GFP_KERNEL
);
2066 raparm
= &(*raparm
)->p_next
;
2071 nfsdstats
.ra_size
= cache_size
;
2075 dprintk("nfsd: kmalloc failed, freeing readahead buffers\n");
2076 nfsd_racache_shutdown();