nfs: fix xattr inode op pointers when disabled
[deliverable/linux.git] / fs / nfsd / vfs.c
CommitLineData
1da177e4 1/*
1da177e4
LT
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.
5 *
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.
11 *
12 * Copyright (C) 1995-1999 Olaf Kirch <okir@monad.swb.de>
13 * Zerocpy NFS support (C) 2002 Hirokazu Takahashi <taka@valinux.co.jp>
14 */
15
1da177e4
LT
16#include <linux/fs.h>
17#include <linux/file.h>
d6b29d7c 18#include <linux/splice.h>
1da177e4 19#include <linux/fcntl.h>
1da177e4 20#include <linux/namei.h>
1da177e4 21#include <linux/delay.h>
0eeca283 22#include <linux/fsnotify.h>
1da177e4 23#include <linux/posix_acl_xattr.h>
1da177e4 24#include <linux/xattr.h>
9a74af21
BH
25#include <linux/jhash.h>
26#include <linux/ima.h>
5a0e3ad6 27#include <linux/slab.h>
9a74af21 28#include <asm/uaccess.h>
f501912a
BM
29#include <linux/exportfs.h>
30#include <linux/writeback.h>
18032ca0 31#include <linux/security.h>
9a74af21
BH
32
33#ifdef CONFIG_NFSD_V3
34#include "xdr3.h"
35#endif /* CONFIG_NFSD_V3 */
36
5be196e5 37#ifdef CONFIG_NFSD_V4
2ca72e17
BF
38#include "acl.h"
39#include "idmap.h"
1da177e4
LT
40#endif /* CONFIG_NFSD_V4 */
41
9a74af21
BH
42#include "nfsd.h"
43#include "vfs.h"
1da177e4
LT
44
45#define NFSDDBG_FACILITY NFSDDBG_FILEOP
1da177e4
LT
46
47
1da177e4
LT
48/*
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.
54 */
55struct raparms {
56 struct raparms *p_next;
57 unsigned int p_count;
58 ino_t p_ino;
59 dev_t p_dev;
60 int p_set;
61 struct file_ra_state p_ra;
fce1456a 62 unsigned int p_hindex;
1da177e4
LT
63};
64
fce1456a
GB
65struct raparm_hbucket {
66 struct raparms *pb_head;
67 spinlock_t pb_lock;
68} ____cacheline_aligned_in_smp;
69
fce1456a
GB
70#define RAPARM_HASH_BITS 4
71#define RAPARM_HASH_SIZE (1<<RAPARM_HASH_BITS)
72#define RAPARM_HASH_MASK (RAPARM_HASH_SIZE-1)
73static struct raparm_hbucket raparm_hash[RAPARM_HASH_SIZE];
1da177e4
LT
74
75/*
76 * Called from nfsd_lookup and encode_dirent. Check if we have crossed
77 * a mount point.
e0bb89ef 78 * Returns -EAGAIN or -ETIMEDOUT leaving *dpp and *expp unchanged,
1da177e4
LT
79 * or nfs_ok having possibly changed *dpp and *expp
80 */
81int
82nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp,
83 struct svc_export **expp)
84{
85 struct svc_export *exp = *expp, *exp2 = NULL;
86 struct dentry *dentry = *dpp;
91c9fa8f
AV
87 struct path path = {.mnt = mntget(exp->ex_path.mnt),
88 .dentry = dget(dentry)};
6264d69d 89 int err = 0;
1da177e4 90
7cc90cc3 91 err = follow_down(&path);
cc53ce53
DH
92 if (err < 0)
93 goto out;
1da177e4 94
91c9fa8f 95 exp2 = rqst_exp_get_by_name(rqstp, &path);
1da177e4 96 if (IS_ERR(exp2)) {
3b6cee7b
BF
97 err = PTR_ERR(exp2);
98 /*
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
103 * directory.
104 */
105 if (err == -ENOENT && !(exp->ex_flags & NFSEXP_V4ROOT))
106 err = 0;
91c9fa8f 107 path_put(&path);
1da177e4
LT
108 goto out;
109 }
3c394dda
SD
110 if (nfsd_v4client(rqstp) ||
111 (exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) {
1da177e4 112 /* successfully crossed mount point */
1644ccc8 113 /*
91c9fa8f
AV
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
1644ccc8 118 */
91c9fa8f
AV
119 *dpp = path.dentry;
120 path.dentry = dentry;
1644ccc8 121 *expp = exp2;
91c9fa8f 122 exp2 = exp;
1da177e4 123 }
91c9fa8f
AV
124 path_put(&path);
125 exp_put(exp2);
1da177e4
LT
126out:
127 return err;
128}
129
289ede45
BF
130static void follow_to_parent(struct path *path)
131{
132 struct dentry *dp;
133
134 while (path->dentry == path->mnt->mnt_root && follow_up(path))
135 ;
136 dp = dget_parent(path->dentry);
137 dput(path->dentry);
138 path->dentry = dp;
139}
140
141static int nfsd_lookup_parent(struct svc_rqst *rqstp, struct dentry *dparent, struct svc_export **exp, struct dentry **dentryp)
142{
143 struct svc_export *exp2;
144 struct path path = {.mnt = mntget((*exp)->ex_path.mnt),
145 .dentry = dget(dparent)};
146
147 follow_to_parent(&path);
148
149 exp2 = rqst_exp_parent(rqstp, &path);
150 if (PTR_ERR(exp2) == -ENOENT) {
151 *dentryp = dget(dparent);
152 } else if (IS_ERR(exp2)) {
153 path_put(&path);
154 return PTR_ERR(exp2);
155 } else {
156 *dentryp = dget(path.dentry);
157 exp_put(*exp);
158 *exp = exp2;
159 }
160 path_put(&path);
161 return 0;
162}
163
82ead7fe
BF
164/*
165 * For nfsd purposes, we treat V4ROOT exports as though there was an
166 * export at *every* directory.
167 */
3227fa41 168int nfsd_mountpoint(struct dentry *dentry, struct svc_export *exp)
82ead7fe
BF
169{
170 if (d_mountpoint(dentry))
171 return 1;
11fcee02
TM
172 if (nfsd4_is_junction(dentry))
173 return 1;
82ead7fe
BF
174 if (!(exp->ex_flags & NFSEXP_V4ROOT))
175 return 0;
176 return dentry->d_inode != NULL;
177}
178
6264d69d 179__be32
6c0a654d 180nfsd_lookup_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp,
5a022fc8 181 const char *name, unsigned int len,
6c0a654d 182 struct svc_export **exp_ret, struct dentry **dentry_ret)
1da177e4
LT
183{
184 struct svc_export *exp;
185 struct dentry *dparent;
186 struct dentry *dentry;
6264d69d 187 int host_err;
1da177e4
LT
188
189 dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp), len,name);
190
1da177e4
LT
191 dparent = fhp->fh_dentry;
192 exp = fhp->fh_export;
193 exp_get(exp);
194
1da177e4
LT
195 /* Lookup the name, but don't follow links */
196 if (isdotent(name, len)) {
197 if (len==1)
198 dentry = dget(dparent);
54775491 199 else if (dparent != exp->ex_path.dentry)
1da177e4 200 dentry = dget_parent(dparent);
fed83811 201 else if (!EX_NOHIDE(exp) && !nfsd_v4client(rqstp))
1da177e4
LT
202 dentry = dget(dparent); /* .. == . just like at / */
203 else {
204 /* checking mountpoint crossing is very different when stepping up */
289ede45
BF
205 host_err = nfsd_lookup_parent(rqstp, dparent, &exp, &dentry);
206 if (host_err)
1da177e4 207 goto out_nfserr;
1da177e4
LT
208 }
209 } else {
210 fh_lock(fhp);
211 dentry = lookup_one_len(name, dparent, len);
6264d69d 212 host_err = PTR_ERR(dentry);
1da177e4
LT
213 if (IS_ERR(dentry))
214 goto out_nfserr;
215 /*
216 * check if we have crossed a mount point ...
217 */
82ead7fe 218 if (nfsd_mountpoint(dentry, exp)) {
6264d69d 219 if ((host_err = nfsd_cross_mnt(rqstp, &dentry, &exp))) {
1da177e4
LT
220 dput(dentry);
221 goto out_nfserr;
222 }
223 }
224 }
6c0a654d
BF
225 *dentry_ret = dentry;
226 *exp_ret = exp;
227 return 0;
228
229out_nfserr:
230 exp_put(exp);
231 return nfserrno(host_err);
232}
233
234/*
235 * Look up one component of a pathname.
236 * N.B. After this call _both_ fhp and resfh need an fh_put
237 *
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>
245 */
246__be32
247nfsd_lookup(struct svc_rqst *rqstp, struct svc_fh *fhp, const char *name,
5a022fc8 248 unsigned int len, struct svc_fh *resfh)
6c0a654d
BF
249{
250 struct svc_export *exp;
251 struct dentry *dentry;
252 __be32 err;
253
29a78a3e
BF
254 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
255 if (err)
256 return err;
6c0a654d
BF
257 err = nfsd_lookup_dentry(rqstp, fhp, name, len, &exp, &dentry);
258 if (err)
259 return err;
32c1eb0c
AA
260 err = check_nfsd_access(exp, rqstp);
261 if (err)
262 goto out;
1da177e4
LT
263 /*
264 * Note: we compose the file handle now, but as the
265 * dentry may be negative, it may need to be updated.
266 */
267 err = fh_compose(resfh, exp, dentry, fhp);
268 if (!err && !dentry->d_inode)
269 err = nfserr_noent;
32c1eb0c 270out:
1da177e4 271 dput(dentry);
1da177e4
LT
272 exp_put(exp);
273 return err;
1da177e4
LT
274}
275
4795bb37
BF
276static int nfsd_break_lease(struct inode *inode)
277{
278 if (!S_ISREG(inode->i_mode))
279 return 0;
280 return break_lease(inode, O_WRONLY | O_NONBLOCK);
281}
282
f501912a
BM
283/*
284 * Commit metadata changes to stable storage.
285 */
286static int
287commit_metadata(struct svc_fh *fhp)
288{
289 struct inode *inode = fhp->fh_dentry->d_inode;
290 const struct export_operations *export_ops = inode->i_sb->s_export_op;
f501912a
BM
291
292 if (!EX_ISSYNC(fhp->fh_export))
293 return 0;
294
c3765016
CH
295 if (export_ops->commit_metadata)
296 return export_ops->commit_metadata(inode);
297 return sync_inode_metadata(inode, 1);
f501912a 298}
6c0a654d 299
1da177e4 300/*
818e5a22
CH
301 * Go over the attributes and take care of the small differences between
302 * NFS semantics and what Linux expects.
1da177e4 303 */
818e5a22
CH
304static void
305nfsd_sanitize_attrs(struct inode *inode, struct iattr *iap)
1da177e4 306{
9c85fca5
CH
307 /*
308 * NFSv2 does not differentiate between "set-[ac]time-to-now"
1da177e4
LT
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"
314 *
315 * We only call inode_change_ok as the last test as technically
818e5a22 316 * it is not an interface that we should be using.
1da177e4
LT
317 */
318#define BOTH_TIME_SET (ATTR_ATIME_SET | ATTR_MTIME_SET)
319#define MAX_TOUCH_TIME_ERROR (30*60)
9c85fca5
CH
320 if ((iap->ia_valid & BOTH_TIME_SET) == BOTH_TIME_SET &&
321 iap->ia_mtime.tv_sec == iap->ia_atime.tv_sec) {
322 /*
323 * Looks probable.
324 *
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.
1da177e4 328 */
9c85fca5
CH
329 time_t delta = iap->ia_atime.tv_sec - get_seconds();
330 if (delta < 0)
331 delta = -delta;
332 if (delta < MAX_TOUCH_TIME_ERROR &&
333 inode_change_ok(inode, iap) != 0) {
334 /*
335 * Turn off ATTR_[AM]TIME_SET but leave ATTR_[AM]TIME.
336 * This will cause notify_change to set these times
337 * to "now"
338 */
339 iap->ia_valid &= ~BOTH_TIME_SET;
340 }
1da177e4 341 }
1da177e4 342
ca456252 343 /* sanitize the mode change */
1da177e4
LT
344 if (iap->ia_valid & ATTR_MODE) {
345 iap->ia_mode &= S_IALLUGO;
dee3209d 346 iap->ia_mode |= (inode->i_mode & ~S_IALLUGO);
ca456252
JL
347 }
348
349 /* Revoke setuid/setgid on chown */
0953e620 350 if (!S_ISDIR(inode->i_mode) &&
6fab8779
EB
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)))) {
ca456252
JL
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 */
8a0ce7d9 356 iap->ia_mode &= ~S_ISUID;
ca456252
JL
357 if (iap->ia_mode & S_IXGRP)
358 iap->ia_mode &= ~S_ISGID;
359 } else {
360 /* set ATTR_KILL_* bits and let VFS handle it */
361 iap->ia_valid |= (ATTR_KILL_SUID | ATTR_KILL_SGID);
8a0ce7d9 362 }
1da177e4 363 }
818e5a22
CH
364}
365
366static __be32
367nfsd_get_write_access(struct svc_rqst *rqstp, struct svc_fh *fhp,
368 struct iattr *iap)
369{
370 struct inode *inode = fhp->fh_dentry->d_inode;
371 int host_err;
372
373 if (iap->ia_size < inode->i_size) {
374 __be32 err;
375
376 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
377 NFSD_MAY_TRUNC | NFSD_MAY_OWNER_OVERRIDE);
378 if (err)
379 return err;
380 }
381
382 host_err = get_write_access(inode);
383 if (host_err)
384 goto out_nfserrno;
385
386 host_err = locks_verify_truncate(inode, NULL, iap->ia_size);
387 if (host_err)
388 goto out_put_write_access;
389 return 0;
390
391out_put_write_access:
392 put_write_access(inode);
393out_nfserrno:
394 return nfserrno(host_err);
395}
396
397/*
398 * Set various file attributes. After this call fhp needs an fh_put.
399 */
400__be32
401nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, struct iattr *iap,
402 int check_guard, time_t guardtime)
403{
404 struct dentry *dentry;
405 struct inode *inode;
406 int accmode = NFSD_MAY_SATTR;
407 umode_t ftype = 0;
408 __be32 err;
409 int host_err;
410 int size_change = 0;
411
412 if (iap->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_SIZE))
413 accmode |= NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE;
414 if (iap->ia_valid & ATTR_SIZE)
415 ftype = S_IFREG;
416
417 /* Get inode */
418 err = fh_verify(rqstp, fhp, ftype, accmode);
419 if (err)
420 goto out;
421
422 dentry = fhp->fh_dentry;
423 inode = dentry->d_inode;
424
425 /* Ignore any mode updates on symlinks */
426 if (S_ISLNK(inode->i_mode))
427 iap->ia_valid &= ~ATTR_MODE;
428
429 if (!iap->ia_valid)
430 goto out;
1da177e4 431
818e5a22
CH
432 nfsd_sanitize_attrs(inode, iap);
433
434 /*
435 * The size case is special, it changes the file in addition to the
436 * attributes.
437 */
438 if (iap->ia_valid & ATTR_SIZE) {
439 err = nfsd_get_write_access(rqstp, fhp, iap);
440 if (err)
441 goto out;
442 size_change = 1;
443 }
1da177e4
LT
444
445 iap->ia_valid |= ATTR_CTIME;
446
987da479
CH
447 if (check_guard && guardtime != inode->i_ctime.tv_sec) {
448 err = nfserr_notsync;
449 goto out_put_write_access;
1da177e4 450 }
987da479
CH
451
452 host_err = nfsd_break_lease(inode);
453 if (host_err)
454 goto out_put_write_access_nfserror;
455
456 fh_lock(fhp);
457 host_err = notify_change(dentry, iap, NULL);
458 fh_unlock(fhp);
459
460out_put_write_access_nfserror:
461 err = nfserrno(host_err);
462out_put_write_access:
1da177e4
LT
463 if (size_change)
464 put_write_access(inode);
465 if (!err)
b160fdab 466 commit_metadata(fhp);
1da177e4
LT
467out:
468 return err;
1da177e4
LT
469}
470
5be196e5 471#if defined(CONFIG_NFSD_V4)
9b4146e8
CL
472/*
473 * NFS junction information is stored in an extended attribute.
474 */
475#define NFSD_JUNCTION_XATTR_NAME XATTR_TRUSTED_PREFIX "junction.nfs"
476
477/**
478 * nfsd4_is_junction - Test if an object could be an NFS junction
479 *
480 * @dentry: object to test
481 *
482 * Returns 1 if "dentry" appears to contain NFS junction information.
483 * Otherwise 0 is returned.
484 */
11fcee02
TM
485int nfsd4_is_junction(struct dentry *dentry)
486{
487 struct inode *inode = dentry->d_inode;
488
489 if (inode == NULL)
490 return 0;
491 if (inode->i_mode & S_IXUGO)
492 return 0;
493 if (!(inode->i_mode & S_ISVTX))
494 return 0;
9b4146e8 495 if (vfs_getxattr(dentry, NFSD_JUNCTION_XATTR_NAME, NULL, 0) <= 0)
11fcee02
TM
496 return 0;
497 return 1;
498}
18032ca0
DQ
499#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
500__be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
501 struct xdr_netobj *label)
502{
503 __be32 error;
504 int host_error;
505 struct dentry *dentry;
506
507 error = fh_verify(rqstp, fhp, 0 /* S_IFREG */, NFSD_MAY_SATTR);
508 if (error)
509 return error;
510
511 dentry = fhp->fh_dentry;
512
513 mutex_lock(&dentry->d_inode->i_mutex);
514 host_error = security_inode_setsecctx(dentry, label->data, label->len);
515 mutex_unlock(&dentry->d_inode->i_mutex);
516 return nfserrno(host_error);
517}
518#else
519__be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
520 struct xdr_netobj *label)
521{
522 return nfserr_notsupp;
523}
524#endif
525
6a85d6c7 526#endif /* defined(CONFIG_NFSD_V4) */
1da177e4
LT
527
528#ifdef CONFIG_NFSD_V3
529/*
530 * Check server access rights to a file system object
531 */
532struct accessmap {
533 u32 access;
534 int how;
535};
536static struct accessmap nfs3_regaccess[] = {
8837abca
MS
537 { NFS3_ACCESS_READ, NFSD_MAY_READ },
538 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
539 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_TRUNC },
540 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE },
1da177e4
LT
541
542 { 0, 0 }
543};
544
545static struct accessmap nfs3_diraccess[] = {
8837abca
MS
546 { NFS3_ACCESS_READ, NFSD_MAY_READ },
547 { NFS3_ACCESS_LOOKUP, NFSD_MAY_EXEC },
548 { NFS3_ACCESS_MODIFY, NFSD_MAY_EXEC|NFSD_MAY_WRITE|NFSD_MAY_TRUNC},
549 { NFS3_ACCESS_EXTEND, NFSD_MAY_EXEC|NFSD_MAY_WRITE },
550 { NFS3_ACCESS_DELETE, NFSD_MAY_REMOVE },
1da177e4
LT
551
552 { 0, 0 }
553};
554
555static struct accessmap nfs3_anyaccess[] = {
556 /* Some clients - Solaris 2.6 at least, make an access call
557 * to the server to check for access for things like /dev/null
558 * (which really, the server doesn't care about). So
559 * We provide simple access checking for them, looking
560 * mainly at mode bits, and we make sure to ignore read-only
561 * filesystem checks
562 */
8837abca
MS
563 { NFS3_ACCESS_READ, NFSD_MAY_READ },
564 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
565 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
566 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
1da177e4
LT
567
568 { 0, 0 }
569};
570
6264d69d 571__be32
1da177e4
LT
572nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported)
573{
574 struct accessmap *map;
575 struct svc_export *export;
576 struct dentry *dentry;
577 u32 query, result = 0, sresult = 0;
6264d69d 578 __be32 error;
1da177e4 579
8837abca 580 error = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP);
1da177e4
LT
581 if (error)
582 goto out;
583
584 export = fhp->fh_export;
585 dentry = fhp->fh_dentry;
586
587 if (S_ISREG(dentry->d_inode->i_mode))
588 map = nfs3_regaccess;
589 else if (S_ISDIR(dentry->d_inode->i_mode))
590 map = nfs3_diraccess;
591 else
592 map = nfs3_anyaccess;
593
594
595 query = *access;
596 for (; map->access; map++) {
597 if (map->access & query) {
6264d69d 598 __be32 err2;
1da177e4
LT
599
600 sresult |= map->access;
601
0ec757df 602 err2 = nfsd_permission(rqstp, export, dentry, map->how);
1da177e4
LT
603 switch (err2) {
604 case nfs_ok:
605 result |= map->access;
606 break;
607
608 /* the following error codes just mean the access was not allowed,
609 * rather than an error occurred */
610 case nfserr_rofs:
611 case nfserr_acces:
612 case nfserr_perm:
613 /* simply don't "or" in the access bit. */
614 break;
615 default:
616 error = err2;
617 goto out;
618 }
619 }
620 }
621 *access = result;
622 if (supported)
623 *supported = sresult;
624
625 out:
626 return error;
627}
628#endif /* CONFIG_NFSD_V3 */
629
105f4622
BF
630static int nfsd_open_break_lease(struct inode *inode, int access)
631{
632 unsigned int mode;
1da177e4 633
105f4622
BF
634 if (access & NFSD_MAY_NOT_BREAK_LEASE)
635 return 0;
636 mode = (access & NFSD_MAY_WRITE) ? O_WRONLY : O_RDONLY;
637 return break_lease(inode, mode | O_NONBLOCK);
638}
1da177e4
LT
639
640/*
641 * Open an existing file or directory.
999448a8
BS
642 * The may_flags argument indicates the type of open (read/write/lock)
643 * and additional flags.
1da177e4
LT
644 * N.B. After this call fhp needs an fh_put
645 */
6264d69d 646__be32
175a4eb7 647nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type,
999448a8 648 int may_flags, struct file **filp)
1da177e4 649{
765927b2 650 struct path path;
1da177e4 651 struct inode *inode;
6264d69d
AV
652 int flags = O_RDONLY|O_LARGEFILE;
653 __be32 err;
91885258 654 int host_err = 0;
1da177e4 655
e0e81739
DH
656 validate_process_creds();
657
1da177e4
LT
658 /*
659 * If we get here, then the client has already done an "open",
660 * and (hopefully) checked permission - so allow OWNER_OVERRIDE
661 * in case a chmod has now revoked permission.
d91d0b56
BF
662 *
663 * Arguably we should also allow the owner override for
664 * directories, but we never have and it doesn't seem to have
665 * caused anyone a problem. If we were to change this, note
666 * also that our filldir callbacks would need a variant of
667 * lookup_one_len that doesn't check permissions.
1da177e4 668 */
d91d0b56
BF
669 if (type == S_IFREG)
670 may_flags |= NFSD_MAY_OWNER_OVERRIDE;
671 err = fh_verify(rqstp, fhp, type, may_flags);
1da177e4
LT
672 if (err)
673 goto out;
674
765927b2
AV
675 path.mnt = fhp->fh_export->ex_path.mnt;
676 path.dentry = fhp->fh_dentry;
677 inode = path.dentry->d_inode;
1da177e4
LT
678
679 /* Disallow write access to files with the append-only bit set
680 * or any access when mandatory locking enabled
681 */
682 err = nfserr_perm;
999448a8 683 if (IS_APPEND(inode) && (may_flags & NFSD_MAY_WRITE))
1da177e4 684 goto out;
5e7fc436
BF
685 /*
686 * We must ignore files (but only files) which might have mandatory
687 * locks on them because there is no way to know if the accesser has
688 * the lock.
689 */
690 if (S_ISREG((inode)->i_mode) && mandatory_lock(inode))
1da177e4
LT
691 goto out;
692
693 if (!inode->i_fop)
694 goto out;
695
999448a8 696 host_err = nfsd_open_break_lease(inode, may_flags);
6264d69d 697 if (host_err) /* NOMEM or WOULDBLOCK */
1da177e4
LT
698 goto out_nfserr;
699
999448a8
BS
700 if (may_flags & NFSD_MAY_WRITE) {
701 if (may_flags & NFSD_MAY_READ)
9ecb6a08
BF
702 flags = O_RDWR|O_LARGEFILE;
703 else
704 flags = O_WRONLY|O_LARGEFILE;
1da177e4 705 }
765927b2 706 *filp = dentry_open(&path, flags, current_cred());
e4daf1ff 707 if (IS_ERR(*filp)) {
6264d69d 708 host_err = PTR_ERR(*filp);
e4daf1ff
HJ
709 *filp = NULL;
710 } else {
999448a8
BS
711 host_err = ima_file_check(*filp, may_flags);
712
06effdbb
BS
713 if (may_flags & NFSD_MAY_64BIT_COOKIE)
714 (*filp)->f_mode |= FMODE_64BITHASH;
715 else
716 (*filp)->f_mode |= FMODE_32BITHASH;
717 }
718
1da177e4 719out_nfserr:
6264d69d 720 err = nfserrno(host_err);
1da177e4 721out:
e0e81739 722 validate_process_creds();
1da177e4
LT
723 return err;
724}
725
726/*
727 * Close a file.
728 */
729void
730nfsd_close(struct file *filp)
731{
732 fput(filp);
733}
734
1da177e4
LT
735/*
736 * Obtain the readahead parameters for the file
737 * specified by (dev, ino).
738 */
1da177e4
LT
739
740static inline struct raparms *
741nfsd_get_raparms(dev_t dev, ino_t ino)
742{
743 struct raparms *ra, **rap, **frap = NULL;
744 int depth = 0;
fce1456a
GB
745 unsigned int hash;
746 struct raparm_hbucket *rab;
747
748 hash = jhash_2words(dev, ino, 0xfeedbeef) & RAPARM_HASH_MASK;
749 rab = &raparm_hash[hash];
1da177e4 750
fce1456a
GB
751 spin_lock(&rab->pb_lock);
752 for (rap = &rab->pb_head; (ra = *rap); rap = &ra->p_next) {
1da177e4
LT
753 if (ra->p_ino == ino && ra->p_dev == dev)
754 goto found;
755 depth++;
756 if (ra->p_count == 0)
757 frap = rap;
758 }
3aa6e0aa 759 depth = nfsdstats.ra_size;
1da177e4 760 if (!frap) {
fce1456a 761 spin_unlock(&rab->pb_lock);
1da177e4
LT
762 return NULL;
763 }
764 rap = frap;
765 ra = *frap;
766 ra->p_dev = dev;
767 ra->p_ino = ino;
768 ra->p_set = 0;
fce1456a 769 ra->p_hindex = hash;
1da177e4 770found:
fce1456a 771 if (rap != &rab->pb_head) {
1da177e4 772 *rap = ra->p_next;
fce1456a
GB
773 ra->p_next = rab->pb_head;
774 rab->pb_head = ra;
1da177e4
LT
775 }
776 ra->p_count++;
777 nfsdstats.ra_depth[depth*10/nfsdstats.ra_size]++;
fce1456a 778 spin_unlock(&rab->pb_lock);
1da177e4
LT
779 return ra;
780}
781
782/*
cf8208d0
JA
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.
1da177e4
LT
786 */
787static int
cf8208d0
JA
788nfsd_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
789 struct splice_desc *sd)
1da177e4 790{
cf8208d0 791 struct svc_rqst *rqstp = sd->u.data;
afc59400 792 struct page **pp = rqstp->rq_next_page;
cf8208d0
JA
793 struct page *page = buf->page;
794 size_t size;
cf8208d0
JA
795
796 size = sd->len;
1da177e4
LT
797
798 if (rqstp->rq_res.page_len == 0) {
799 get_page(page);
afc59400
BF
800 put_page(*rqstp->rq_next_page);
801 *(rqstp->rq_next_page++) = page;
cf8208d0 802 rqstp->rq_res.page_base = buf->offset;
1da177e4 803 rqstp->rq_res.page_len = size;
44524359 804 } else if (page != pp[-1]) {
1da177e4 805 get_page(page);
afc59400
BF
806 if (*rqstp->rq_next_page)
807 put_page(*rqstp->rq_next_page);
808 *(rqstp->rq_next_page++) = page;
1da177e4 809 rqstp->rq_res.page_len += size;
44524359 810 } else
1da177e4 811 rqstp->rq_res.page_len += size;
1da177e4 812
1da177e4
LT
813 return size;
814}
815
cf8208d0
JA
816static int nfsd_direct_splice_actor(struct pipe_inode_info *pipe,
817 struct splice_desc *sd)
818{
819 return __splice_from_pipe(pipe, sd, nfsd_splice_actor);
820}
821
6264d69d 822static __be32
1da177e4
LT
823nfsd_vfs_read(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
824 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
825{
1da177e4 826 mm_segment_t oldfs;
6264d69d
AV
827 __be32 err;
828 int host_err;
1da177e4
LT
829
830 err = nfserr_perm;
a8754bee 831
cf8208d0
JA
832 if (file->f_op->splice_read && rqstp->rq_splice_ok) {
833 struct splice_desc sd = {
834 .len = 0,
835 .total_len = *count,
836 .pos = offset,
837 .u.data = rqstp,
838 };
839
afc59400 840 rqstp->rq_next_page = rqstp->rq_respages + 1;
cf8208d0 841 host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor);
1da177e4
LT
842 } else {
843 oldfs = get_fs();
844 set_fs(KERNEL_DS);
6264d69d 845 host_err = vfs_readv(file, (struct iovec __user *)vec, vlen, &offset);
1da177e4
LT
846 set_fs(oldfs);
847 }
848
6264d69d
AV
849 if (host_err >= 0) {
850 nfsdstats.io_read += host_err;
851 *count = host_err;
1da177e4 852 err = 0;
2a12a9d7 853 fsnotify_access(file);
1da177e4 854 } else
6264d69d 855 err = nfserrno(host_err);
1da177e4
LT
856 return err;
857}
858
9f708e40
NB
859static void kill_suid(struct dentry *dentry)
860{
861 struct iattr ia;
b5376771 862 ia.ia_valid = ATTR_KILL_SUID | ATTR_KILL_SGID | ATTR_KILL_PRIV;
9f708e40 863
1b1dcc1b 864 mutex_lock(&dentry->d_inode->i_mutex);
27ac0ffe
BF
865 /*
866 * Note we call this on write, so notify_change will not
867 * encounter any conflicting delegations:
868 */
869 notify_change(dentry, &ia, NULL);
1b1dcc1b 870 mutex_unlock(&dentry->d_inode->i_mutex);
9f708e40
NB
871}
872
d911df7b
BF
873/*
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.
878 *
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
881 * seems to work:-)
882 *
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
885 * problem.
886 */
887static int wait_for_concurrent_writes(struct file *file)
888{
496ad9aa 889 struct inode *inode = file_inode(file);
d911df7b
BF
890 static ino_t last_ino;
891 static dev_t last_dev;
892 int err = 0;
893
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));
897 msleep(10);
898 dprintk("nfsd: write resume %d\n", task_pid_nr(current));
899 }
900
901 if (inode->i_state & I_DIRTY) {
902 dprintk("nfsd: write sync %d\n", task_pid_nr(current));
8018ab05 903 err = vfs_fsync(file, 0);
d911df7b
BF
904 }
905 last_ino = inode->i_ino;
906 last_dev = inode->i_sb->s_dev;
907 return err;
908}
909
6264d69d 910static __be32
1da177e4
LT
911nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
912 loff_t offset, struct kvec *vec, int vlen,
31dec253 913 unsigned long *cnt, int *stablep)
1da177e4
LT
914{
915 struct svc_export *exp;
916 struct dentry *dentry;
917 struct inode *inode;
918 mm_segment_t oldfs;
6264d69d
AV
919 __be32 err = 0;
920 int host_err;
1da177e4 921 int stable = *stablep;
48e03bc5 922 int use_wgather;
e49dbbf3 923 loff_t pos = offset;
1da177e4 924
7eaa36e2 925 dentry = file->f_path.dentry;
1da177e4
LT
926 inode = dentry->d_inode;
927 exp = fhp->fh_export;
928
48e03bc5 929 use_wgather = (rqstp->rq_vers == 2) && EX_WGATHER(exp);
1da177e4 930
1da177e4
LT
931 if (!EX_ISSYNC(exp))
932 stable = 0;
1da177e4
LT
933
934 /* Write the data. */
935 oldfs = get_fs(); set_fs(KERNEL_DS);
e49dbbf3 936 host_err = vfs_writev(file, (struct iovec __user *)vec, vlen, &pos);
1da177e4 937 set_fs(oldfs);
e4636d53
BF
938 if (host_err < 0)
939 goto out_nfserr;
940 *cnt = host_err;
941 nfsdstats.io_write += host_err;
2a12a9d7 942 fsnotify_modify(file);
1da177e4
LT
943
944 /* clear setuid/setgid flag after write */
e4636d53 945 if (inode->i_mode & (S_ISUID | S_ISGID))
9f708e40 946 kill_suid(dentry);
1da177e4 947
face1502
BF
948 if (stable) {
949 if (use_wgather)
950 host_err = wait_for_concurrent_writes(file);
951 else
952 host_err = vfs_fsync_range(file, offset, offset+*cnt, 0);
953 }
1da177e4 954
e4636d53 955out_nfserr:
6264d69d 956 dprintk("nfsd: write complete host_err=%d\n", host_err);
a0d24b29 957 if (host_err >= 0)
1da177e4 958 err = 0;
a0d24b29 959 else
6264d69d 960 err = nfserrno(host_err);
1da177e4
LT
961 return err;
962}
963
964/*
965 * Read data from a file. count must contain the requested read count
966 * on entry. On return, *count contains the number of bytes actually read.
967 * N.B. After this call fhp needs an fh_put
968 */
039a87ca 969__be32 nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
fa0a2126
BF
970 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
971{
972 struct file *file;
973 struct inode *inode;
974 struct raparms *ra;
975 __be32 err;
976
977 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
978 if (err)
979 return err;
980
496ad9aa 981 inode = file_inode(file);
fa0a2126
BF
982
983 /* Get readahead parameters */
984 ra = nfsd_get_raparms(inode->i_sb->s_dev, inode->i_ino);
985
986 if (ra && ra->p_set)
987 file->f_ra = ra->p_ra;
988
989 err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
990
991 /* Write back readahead params */
992 if (ra) {
993 struct raparm_hbucket *rab = &raparm_hash[ra->p_hindex];
994 spin_lock(&rab->pb_lock);
995 ra->p_ra = file->f_ra;
996 ra->p_set = 1;
997 ra->p_count--;
998 spin_unlock(&rab->pb_lock);
999 }
1000
1001 nfsd_close(file);
1002 return err;
1003}
1004
039a87ca 1005/* As above, but use the provided file descriptor. */
6264d69d 1006__be32
039a87ca 1007nfsd_read_file(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
1da177e4
LT
1008 loff_t offset, struct kvec *vec, int vlen,
1009 unsigned long *count)
1010{
6264d69d 1011 __be32 err;
1da177e4
LT
1012
1013 if (file) {
0ec757df 1014 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
8837abca 1015 NFSD_MAY_READ|NFSD_MAY_OWNER_OVERRIDE);
1da177e4
LT
1016 if (err)
1017 goto out;
1018 err = nfsd_vfs_read(rqstp, fhp, file, offset, vec, vlen, count);
039a87ca
BF
1019 } else /* Note file may still be NULL in NFSv4 special stateid case: */
1020 err = nfsd_read(rqstp, fhp, offset, vec, vlen, count);
1da177e4
LT
1021out:
1022 return err;
1023}
1024
1025/*
1026 * Write data to a file.
1027 * The stable flag requests synchronous writes.
1028 * N.B. After this call fhp needs an fh_put
1029 */
6264d69d 1030__be32
1da177e4 1031nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
31dec253 1032 loff_t offset, struct kvec *vec, int vlen, unsigned long *cnt,
1da177e4
LT
1033 int *stablep)
1034{
6264d69d 1035 __be32 err = 0;
1da177e4
LT
1036
1037 if (file) {
0ec757df 1038 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
8837abca 1039 NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE);
1da177e4
LT
1040 if (err)
1041 goto out;
1042 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen, cnt,
1043 stablep);
1044 } else {
8837abca 1045 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_WRITE, &file);
1da177e4
LT
1046 if (err)
1047 goto out;
1048
1049 if (cnt)
1050 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen,
1051 cnt, stablep);
1052 nfsd_close(file);
1053 }
1054out:
1055 return err;
1056}
1057
1058#ifdef CONFIG_NFSD_V3
1059/*
1060 * Commit all pending writes to stable storage.
aa696a6f
TM
1061 *
1062 * Note: we only guarantee that data that lies within the range specified
1063 * by the 'offset' and 'count' parameters will be synced.
1da177e4
LT
1064 *
1065 * Unfortunately we cannot lock the file to make sure we return full WCC
1066 * data to the client, as locking happens lower down in the filesystem.
1067 */
6264d69d 1068__be32
1da177e4
LT
1069nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp,
1070 loff_t offset, unsigned long count)
1071{
1072 struct file *file;
aa696a6f
TM
1073 loff_t end = LLONG_MAX;
1074 __be32 err = nfserr_inval;
1da177e4 1075
aa696a6f
TM
1076 if (offset < 0)
1077 goto out;
1078 if (count != 0) {
1079 end = offset + (loff_t)count - 1;
1080 if (end < offset)
1081 goto out;
1082 }
1da177e4 1083
91885258
JL
1084 err = nfsd_open(rqstp, fhp, S_IFREG,
1085 NFSD_MAY_WRITE|NFSD_MAY_NOT_BREAK_LEASE, &file);
8837abca 1086 if (err)
aa696a6f 1087 goto out;
1da177e4 1088 if (EX_ISSYNC(fhp->fh_export)) {
8018ab05 1089 int err2 = vfs_fsync_range(file, offset, end, 0);
aa696a6f
TM
1090
1091 if (err2 != -EINVAL)
1092 err = nfserrno(err2);
1093 else
1da177e4 1094 err = nfserr_notsupp;
1da177e4
LT
1095 }
1096
1097 nfsd_close(file);
aa696a6f 1098out:
1da177e4
LT
1099 return err;
1100}
1101#endif /* CONFIG_NFSD_V3 */
1102
f2b0dee2 1103static __be32
5c002b3b
BF
1104nfsd_create_setattr(struct svc_rqst *rqstp, struct svc_fh *resfhp,
1105 struct iattr *iap)
1106{
1107 /*
1108 * Mode has already been set earlier in create:
1109 */
1110 iap->ia_valid &= ~ATTR_MODE;
1111 /*
1112 * Setting uid/gid works only for root. Irix appears to
1113 * send along the gid on create when it tries to implement
1114 * setgid directories via NFS:
1115 */
6fab8779 1116 if (!uid_eq(current_fsuid(), GLOBAL_ROOT_UID))
5c002b3b
BF
1117 iap->ia_valid &= ~(ATTR_UID|ATTR_GID);
1118 if (iap->ia_valid)
1119 return nfsd_setattr(rqstp, resfhp, iap, 0, (time_t)0);
1120 return 0;
1121}
1122
4ac35c2f 1123/* HPUX client sometimes creates a file in mode 000, and sets size to 0.
1124 * setting size to 0 may fail for some specific file systems by the permission
1125 * checking which requires WRITE permission but the mode is 000.
1126 * we ignore the resizing(to 0) on the just new created file, since the size is
1127 * 0 after file created.
1128 *
1129 * call this only after vfs_create() is called.
1130 * */
1131static void
1132nfsd_check_ignore_resizing(struct iattr *iap)
1133{
1134 if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0))
1135 iap->ia_valid &= ~ATTR_SIZE;
1136}
1137
1da177e4
LT
1138/*
1139 * Create a file (regular, directory, device, fifo); UNIX sockets
1140 * not yet implemented.
1141 * If the response fh has been verified, the parent directory should
1142 * already be locked. Note that the parent directory is left locked.
1143 *
1144 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1145 */
6264d69d 1146__be32
1da177e4
LT
1147nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1148 char *fname, int flen, struct iattr *iap,
1149 int type, dev_t rdev, struct svc_fh *resfhp)
1150{
1151 struct dentry *dentry, *dchild = NULL;
1152 struct inode *dirp;
6264d69d 1153 __be32 err;
5c002b3b 1154 __be32 err2;
6264d69d 1155 int host_err;
1da177e4
LT
1156
1157 err = nfserr_perm;
1158 if (!flen)
1159 goto out;
1160 err = nfserr_exist;
1161 if (isdotent(fname, flen))
1162 goto out;
1163
8837abca 1164 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1da177e4
LT
1165 if (err)
1166 goto out;
1167
1168 dentry = fhp->fh_dentry;
1169 dirp = dentry->d_inode;
1170
1171 err = nfserr_notdir;
acfa4380 1172 if (!dirp->i_op->lookup)
1da177e4
LT
1173 goto out;
1174 /*
1175 * Check whether the response file handle has been verified yet.
1176 * If it has, the parent directory should already be locked.
1177 */
1178 if (!resfhp->fh_dentry) {
4a55c101
JK
1179 host_err = fh_want_write(fhp);
1180 if (host_err)
1181 goto out_nfserr;
1182
1da177e4 1183 /* called from nfsd_proc_mkdir, or possibly nfsd3_proc_create */
12fd3520 1184 fh_lock_nested(fhp, I_MUTEX_PARENT);
1da177e4 1185 dchild = lookup_one_len(fname, dentry, flen);
6264d69d 1186 host_err = PTR_ERR(dchild);
1da177e4
LT
1187 if (IS_ERR(dchild))
1188 goto out_nfserr;
1189 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1190 if (err)
1191 goto out;
1192 } else {
1193 /* called from nfsd_proc_create */
1194 dchild = dget(resfhp->fh_dentry);
1195 if (!fhp->fh_locked) {
1196 /* not actually possible */
1197 printk(KERN_ERR
a6a9f18f
AV
1198 "nfsd_create: parent %pd2 not locked!\n",
1199 dentry);
d75f2b9f 1200 err = nfserr_io;
1da177e4
LT
1201 goto out;
1202 }
1203 }
1204 /*
1205 * Make sure the child dentry is still negative ...
1206 */
1207 err = nfserr_exist;
1208 if (dchild->d_inode) {
a6a9f18f
AV
1209 dprintk("nfsd_create: dentry %pd/%pd not negative!\n",
1210 dentry, dchild);
1da177e4
LT
1211 goto out;
1212 }
1213
1214 if (!(iap->ia_valid & ATTR_MODE))
1215 iap->ia_mode = 0;
1216 iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
1217
07cad1d2
MS
1218 err = nfserr_inval;
1219 if (!S_ISREG(type) && !S_ISDIR(type) && !special_file(type)) {
1220 printk(KERN_WARNING "nfsd: bad file type %o in nfsd_create\n",
1221 type);
1222 goto out;
1223 }
1224
1da177e4
LT
1225 /*
1226 * Get the dir op function pointer.
1227 */
088406bc 1228 err = 0;
4a55c101 1229 host_err = 0;
1da177e4
LT
1230 switch (type) {
1231 case S_IFREG:
312b63fb 1232 host_err = vfs_create(dirp, dchild, iap->ia_mode, true);
4ac35c2f 1233 if (!host_err)
1234 nfsd_check_ignore_resizing(iap);
1da177e4
LT
1235 break;
1236 case S_IFDIR:
6264d69d 1237 host_err = vfs_mkdir(dirp, dchild, iap->ia_mode);
1da177e4
LT
1238 break;
1239 case S_IFCHR:
1240 case S_IFBLK:
1241 case S_IFIFO:
1242 case S_IFSOCK:
6264d69d 1243 host_err = vfs_mknod(dirp, dchild, iap->ia_mode, rdev);
1da177e4 1244 break;
1da177e4 1245 }
4a55c101 1246 if (host_err < 0)
1da177e4
LT
1247 goto out_nfserr;
1248
f501912a 1249 err = nfsd_create_setattr(rqstp, resfhp, iap);
1da177e4 1250
f501912a
BM
1251 /*
1252 * nfsd_setattr already committed the child. Transactional filesystems
1253 * had a chance to commit changes for both parent and child
1254 * simultaneously making the following commit_metadata a noop.
1255 */
1256 err2 = nfserrno(commit_metadata(fhp));
5c002b3b
BF
1257 if (err2)
1258 err = err2;
1da177e4
LT
1259 /*
1260 * Update the file handle to get the new inode info.
1261 */
1262 if (!err)
1263 err = fh_update(resfhp);
1264out:
1265 if (dchild && !IS_ERR(dchild))
1266 dput(dchild);
1267 return err;
1268
1269out_nfserr:
6264d69d 1270 err = nfserrno(host_err);
1da177e4
LT
1271 goto out;
1272}
1273
1274#ifdef CONFIG_NFSD_V3
ac6721a1
MJ
1275
1276static inline int nfsd_create_is_exclusive(int createmode)
1277{
1278 return createmode == NFS3_CREATE_EXCLUSIVE
1279 || createmode == NFS4_CREATE_EXCLUSIVE4_1;
1280}
1281
1da177e4 1282/*
ac6721a1 1283 * NFSv3 and NFSv4 version of nfsd_create
1da177e4 1284 */
6264d69d 1285__be32
ac6721a1 1286do_nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1da177e4
LT
1287 char *fname, int flen, struct iattr *iap,
1288 struct svc_fh *resfhp, int createmode, u32 *verifier,
856121b2 1289 bool *truncp, bool *created)
1da177e4
LT
1290{
1291 struct dentry *dentry, *dchild = NULL;
1292 struct inode *dirp;
6264d69d
AV
1293 __be32 err;
1294 int host_err;
1da177e4 1295 __u32 v_mtime=0, v_atime=0;
1da177e4
LT
1296
1297 err = nfserr_perm;
1298 if (!flen)
1299 goto out;
1300 err = nfserr_exist;
1301 if (isdotent(fname, flen))
1302 goto out;
1303 if (!(iap->ia_valid & ATTR_MODE))
1304 iap->ia_mode = 0;
1574dff8 1305 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
1da177e4
LT
1306 if (err)
1307 goto out;
1308
1309 dentry = fhp->fh_dentry;
1310 dirp = dentry->d_inode;
1311
1312 /* Get all the sanity checks out of the way before
1313 * we lock the parent. */
1314 err = nfserr_notdir;
acfa4380 1315 if (!dirp->i_op->lookup)
1da177e4 1316 goto out;
4a55c101
JK
1317
1318 host_err = fh_want_write(fhp);
1319 if (host_err)
1320 goto out_nfserr;
1321
12fd3520 1322 fh_lock_nested(fhp, I_MUTEX_PARENT);
1da177e4
LT
1323
1324 /*
1325 * Compose the response file handle.
1326 */
1327 dchild = lookup_one_len(fname, dentry, flen);
6264d69d 1328 host_err = PTR_ERR(dchild);
1da177e4
LT
1329 if (IS_ERR(dchild))
1330 goto out_nfserr;
1331
1574dff8
SP
1332 /* If file doesn't exist, check for permissions to create one */
1333 if (!dchild->d_inode) {
1334 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1335 if (err)
1336 goto out;
1337 }
1338
1da177e4
LT
1339 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1340 if (err)
1341 goto out;
1342
ac6721a1 1343 if (nfsd_create_is_exclusive(createmode)) {
c397852c 1344 /* solaris7 gets confused (bugid 4218508) if these have
749997e5
JL
1345 * the high bit set, so just clear the high bits. If this is
1346 * ever changed to use different attrs for storing the
1347 * verifier, then do_open_lookup() will also need to be fixed
1348 * accordingly.
1da177e4
LT
1349 */
1350 v_mtime = verifier[0]&0x7fffffff;
1351 v_atime = verifier[1]&0x7fffffff;
1da177e4
LT
1352 }
1353
1354 if (dchild->d_inode) {
1355 err = 0;
1356
1357 switch (createmode) {
1358 case NFS3_CREATE_UNCHECKED:
1359 if (! S_ISREG(dchild->d_inode->i_mode))
9dc4e6c4 1360 goto out;
1da177e4
LT
1361 else if (truncp) {
1362 /* in nfsv4, we need to treat this case a little
1363 * differently. we don't want to truncate the
1364 * file now; this would be wrong if the OPEN
1365 * fails for some other reason. furthermore,
1366 * if the size is nonzero, we should ignore it
1367 * according to spec!
1368 */
1369 *truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
1370 }
1371 else {
1372 iap->ia_valid &= ATTR_SIZE;
1373 goto set_attr;
1374 }
1375 break;
1376 case NFS3_CREATE_EXCLUSIVE:
1377 if ( dchild->d_inode->i_mtime.tv_sec == v_mtime
1378 && dchild->d_inode->i_atime.tv_sec == v_atime
7007c90f
NB
1379 && dchild->d_inode->i_size == 0 ) {
1380 if (created)
1381 *created = 1;
1da177e4 1382 break;
7007c90f 1383 }
ac6721a1
MJ
1384 case NFS4_CREATE_EXCLUSIVE4_1:
1385 if ( dchild->d_inode->i_mtime.tv_sec == v_mtime
1386 && dchild->d_inode->i_atime.tv_sec == v_atime
7007c90f
NB
1387 && dchild->d_inode->i_size == 0 ) {
1388 if (created)
1389 *created = 1;
ac6721a1 1390 goto set_attr;
7007c90f 1391 }
1da177e4
LT
1392 /* fallthru */
1393 case NFS3_CREATE_GUARDED:
1394 err = nfserr_exist;
1395 }
bad0dcff 1396 fh_drop_write(fhp);
1da177e4
LT
1397 goto out;
1398 }
1399
312b63fb 1400 host_err = vfs_create(dirp, dchild, iap->ia_mode, true);
463c3197 1401 if (host_err < 0) {
bad0dcff 1402 fh_drop_write(fhp);
1da177e4 1403 goto out_nfserr;
463c3197 1404 }
81ac95c5
BF
1405 if (created)
1406 *created = 1;
1da177e4 1407
4ac35c2f 1408 nfsd_check_ignore_resizing(iap);
1409
ac6721a1 1410 if (nfsd_create_is_exclusive(createmode)) {
c397852c 1411 /* Cram the verifier into atime/mtime */
1da177e4 1412 iap->ia_valid = ATTR_MTIME|ATTR_ATIME
c397852c 1413 | ATTR_MTIME_SET|ATTR_ATIME_SET;
1da177e4
LT
1414 /* XXX someone who knows this better please fix it for nsec */
1415 iap->ia_mtime.tv_sec = v_mtime;
1416 iap->ia_atime.tv_sec = v_atime;
1417 iap->ia_mtime.tv_nsec = 0;
1418 iap->ia_atime.tv_nsec = 0;
1da177e4
LT
1419 }
1420
1da177e4 1421 set_attr:
f501912a
BM
1422 err = nfsd_create_setattr(rqstp, resfhp, iap);
1423
1424 /*
1425 * nfsd_setattr already committed the child (and possibly also the parent).
1426 */
1427 if (!err)
1428 err = nfserrno(commit_metadata(fhp));
f193fbab
YT
1429
1430 /*
1431 * Update the filehandle to get the new inode info.
1432 */
1433 if (!err)
1434 err = fh_update(resfhp);
1da177e4
LT
1435
1436 out:
1437 fh_unlock(fhp);
1438 if (dchild && !IS_ERR(dchild))
1439 dput(dchild);
4a55c101 1440 fh_drop_write(fhp);
1da177e4
LT
1441 return err;
1442
1443 out_nfserr:
6264d69d 1444 err = nfserrno(host_err);
1da177e4
LT
1445 goto out;
1446}
1447#endif /* CONFIG_NFSD_V3 */
1448
1449/*
1450 * Read a symlink. On entry, *lenp must contain the maximum path length that
1451 * fits into the buffer. On return, it contains the true length.
1452 * N.B. After this call fhp needs an fh_put
1453 */
6264d69d 1454__be32
1da177e4
LT
1455nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
1456{
1da177e4
LT
1457 struct inode *inode;
1458 mm_segment_t oldfs;
6264d69d
AV
1459 __be32 err;
1460 int host_err;
68ac1234 1461 struct path path;
1da177e4 1462
8837abca 1463 err = fh_verify(rqstp, fhp, S_IFLNK, NFSD_MAY_NOP);
1da177e4
LT
1464 if (err)
1465 goto out;
1466
68ac1234
AV
1467 path.mnt = fhp->fh_export->ex_path.mnt;
1468 path.dentry = fhp->fh_dentry;
1469 inode = path.dentry->d_inode;
1da177e4
LT
1470
1471 err = nfserr_inval;
acfa4380 1472 if (!inode->i_op->readlink)
1da177e4
LT
1473 goto out;
1474
68ac1234 1475 touch_atime(&path);
1da177e4
LT
1476 /* N.B. Why does this call need a get_fs()??
1477 * Remove the set_fs and watch the fireworks:-) --okir
1478 */
1479
1480 oldfs = get_fs(); set_fs(KERNEL_DS);
fac7a17b 1481 host_err = inode->i_op->readlink(path.dentry, (char __user *)buf, *lenp);
1da177e4
LT
1482 set_fs(oldfs);
1483
6264d69d 1484 if (host_err < 0)
1da177e4 1485 goto out_nfserr;
6264d69d 1486 *lenp = host_err;
1da177e4
LT
1487 err = 0;
1488out:
1489 return err;
1490
1491out_nfserr:
6264d69d 1492 err = nfserrno(host_err);
1da177e4
LT
1493 goto out;
1494}
1495
1496/*
1497 * Create a symlink and look up its inode
1498 * N.B. After this call _both_ fhp and resfhp need an fh_put
1499 */
6264d69d 1500__be32
1da177e4
LT
1501nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
1502 char *fname, int flen,
1503 char *path, int plen,
1504 struct svc_fh *resfhp,
1505 struct iattr *iap)
1506{
1507 struct dentry *dentry, *dnew;
6264d69d
AV
1508 __be32 err, cerr;
1509 int host_err;
1da177e4
LT
1510
1511 err = nfserr_noent;
1512 if (!flen || !plen)
1513 goto out;
1514 err = nfserr_exist;
1515 if (isdotent(fname, flen))
1516 goto out;
1517
8837abca 1518 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1da177e4
LT
1519 if (err)
1520 goto out;
4a55c101
JK
1521
1522 host_err = fh_want_write(fhp);
1523 if (host_err)
1524 goto out_nfserr;
1525
1da177e4
LT
1526 fh_lock(fhp);
1527 dentry = fhp->fh_dentry;
1528 dnew = lookup_one_len(fname, dentry, flen);
6264d69d 1529 host_err = PTR_ERR(dnew);
1da177e4
LT
1530 if (IS_ERR(dnew))
1531 goto out_nfserr;
1532
1da177e4
LT
1533 if (unlikely(path[plen] != 0)) {
1534 char *path_alloced = kmalloc(plen+1, GFP_KERNEL);
1535 if (path_alloced == NULL)
6264d69d 1536 host_err = -ENOMEM;
1da177e4
LT
1537 else {
1538 strncpy(path_alloced, path, plen);
1539 path_alloced[plen] = 0;
db2e747b 1540 host_err = vfs_symlink(dentry->d_inode, dnew, path_alloced);
1da177e4
LT
1541 kfree(path_alloced);
1542 }
1543 } else
db2e747b 1544 host_err = vfs_symlink(dentry->d_inode, dnew, path);
6264d69d 1545 err = nfserrno(host_err);
f501912a
BM
1546 if (!err)
1547 err = nfserrno(commit_metadata(fhp));
1da177e4
LT
1548 fh_unlock(fhp);
1549
bad0dcff 1550 fh_drop_write(fhp);
75c3f29d 1551
1da177e4
LT
1552 cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
1553 dput(dnew);
1554 if (err==0) err = cerr;
1555out:
1556 return err;
1557
1558out_nfserr:
6264d69d 1559 err = nfserrno(host_err);
1da177e4
LT
1560 goto out;
1561}
1562
1563/*
1564 * Create a hardlink
1565 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1566 */
6264d69d 1567__be32
1da177e4
LT
1568nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
1569 char *name, int len, struct svc_fh *tfhp)
1570{
1571 struct dentry *ddir, *dnew, *dold;
55b13354 1572 struct inode *dirp;
6264d69d
AV
1573 __be32 err;
1574 int host_err;
1da177e4 1575
8837abca 1576 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_CREATE);
1da177e4
LT
1577 if (err)
1578 goto out;
7d818a7b 1579 err = fh_verify(rqstp, tfhp, 0, NFSD_MAY_NOP);
1da177e4
LT
1580 if (err)
1581 goto out;
7d818a7b
BF
1582 err = nfserr_isdir;
1583 if (S_ISDIR(tfhp->fh_dentry->d_inode->i_mode))
1584 goto out;
1da177e4
LT
1585 err = nfserr_perm;
1586 if (!len)
1587 goto out;
1588 err = nfserr_exist;
1589 if (isdotent(name, len))
1590 goto out;
1591
4a55c101
JK
1592 host_err = fh_want_write(tfhp);
1593 if (host_err) {
1594 err = nfserrno(host_err);
1595 goto out;
1596 }
1597
12fd3520 1598 fh_lock_nested(ffhp, I_MUTEX_PARENT);
1da177e4
LT
1599 ddir = ffhp->fh_dentry;
1600 dirp = ddir->d_inode;
1601
1602 dnew = lookup_one_len(name, ddir, len);
6264d69d 1603 host_err = PTR_ERR(dnew);
1da177e4
LT
1604 if (IS_ERR(dnew))
1605 goto out_nfserr;
1606
1607 dold = tfhp->fh_dentry;
1da177e4 1608
4795bb37
BF
1609 err = nfserr_noent;
1610 if (!dold->d_inode)
4a55c101 1611 goto out_dput;
4795bb37 1612 host_err = nfsd_break_lease(dold->d_inode);
7d751f6f
CB
1613 if (host_err) {
1614 err = nfserrno(host_err);
4a55c101 1615 goto out_dput;
7d751f6f 1616 }
146a8595 1617 host_err = vfs_link(dold, dirp, dnew, NULL);
6264d69d 1618 if (!host_err) {
f501912a
BM
1619 err = nfserrno(commit_metadata(ffhp));
1620 if (!err)
1621 err = nfserrno(commit_metadata(tfhp));
1da177e4 1622 } else {
6264d69d 1623 if (host_err == -EXDEV && rqstp->rq_vers == 2)
1da177e4
LT
1624 err = nfserr_acces;
1625 else
6264d69d 1626 err = nfserrno(host_err);
1da177e4 1627 }
75c3f29d 1628out_dput:
1da177e4 1629 dput(dnew);
270d56e5
DR
1630out_unlock:
1631 fh_unlock(ffhp);
4a55c101 1632 fh_drop_write(tfhp);
1da177e4
LT
1633out:
1634 return err;
1635
1636out_nfserr:
6264d69d 1637 err = nfserrno(host_err);
270d56e5 1638 goto out_unlock;
1da177e4
LT
1639}
1640
1641/*
1642 * Rename a file
1643 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1644 */
6264d69d 1645__be32
1da177e4
LT
1646nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
1647 struct svc_fh *tfhp, char *tname, int tlen)
1648{
1649 struct dentry *fdentry, *tdentry, *odentry, *ndentry, *trap;
1650 struct inode *fdir, *tdir;
6264d69d
AV
1651 __be32 err;
1652 int host_err;
1da177e4 1653
8837abca 1654 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_REMOVE);
1da177e4
LT
1655 if (err)
1656 goto out;
8837abca 1657 err = fh_verify(rqstp, tfhp, S_IFDIR, NFSD_MAY_CREATE);
1da177e4
LT
1658 if (err)
1659 goto out;
1660
1661 fdentry = ffhp->fh_dentry;
1662 fdir = fdentry->d_inode;
1663
1664 tdentry = tfhp->fh_dentry;
1665 tdir = tdentry->d_inode;
1666
1da177e4
LT
1667 err = nfserr_perm;
1668 if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
1669 goto out;
1670
4a55c101
JK
1671 host_err = fh_want_write(ffhp);
1672 if (host_err) {
1673 err = nfserrno(host_err);
1674 goto out;
1675 }
1676
1da177e4
LT
1677 /* cannot use fh_lock as we need deadlock protective ordering
1678 * so do it by hand */
1679 trap = lock_rename(tdentry, fdentry);
1680 ffhp->fh_locked = tfhp->fh_locked = 1;
1681 fill_pre_wcc(ffhp);
1682 fill_pre_wcc(tfhp);
1683
1684 odentry = lookup_one_len(fname, fdentry, flen);
6264d69d 1685 host_err = PTR_ERR(odentry);
1da177e4
LT
1686 if (IS_ERR(odentry))
1687 goto out_nfserr;
1688
6264d69d 1689 host_err = -ENOENT;
1da177e4
LT
1690 if (!odentry->d_inode)
1691 goto out_dput_old;
6264d69d 1692 host_err = -EINVAL;
1da177e4
LT
1693 if (odentry == trap)
1694 goto out_dput_old;
1695
1696 ndentry = lookup_one_len(tname, tdentry, tlen);
6264d69d 1697 host_err = PTR_ERR(ndentry);
1da177e4
LT
1698 if (IS_ERR(ndentry))
1699 goto out_dput_old;
6264d69d 1700 host_err = -ENOTEMPTY;
1da177e4
LT
1701 if (ndentry == trap)
1702 goto out_dput_new;
1703
9079b1eb
DH
1704 host_err = -EXDEV;
1705 if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt)
1706 goto out_dput_new;
aa387d6c
BF
1707 if (ffhp->fh_export->ex_path.dentry != tfhp->fh_export->ex_path.dentry)
1708 goto out_dput_new;
9079b1eb 1709
4795bb37 1710 host_err = nfsd_break_lease(odentry->d_inode);
83f6b0c1 1711 if (host_err)
4a55c101 1712 goto out_dput_new;
83f6b0c1
BF
1713 if (ndentry->d_inode) {
1714 host_err = nfsd_break_lease(ndentry->d_inode);
1715 if (host_err)
4a55c101 1716 goto out_dput_new;
83f6b0c1 1717 }
8e6d782c 1718 host_err = vfs_rename(fdir, odentry, tdir, ndentry, NULL);
f501912a
BM
1719 if (!host_err) {
1720 host_err = commit_metadata(tfhp);
6264d69d 1721 if (!host_err)
f501912a 1722 host_err = commit_metadata(ffhp);
1da177e4 1723 }
1da177e4
LT
1724 out_dput_new:
1725 dput(ndentry);
1726 out_dput_old:
1727 dput(odentry);
1728 out_nfserr:
6264d69d 1729 err = nfserrno(host_err);
1da177e4
LT
1730
1731 /* we cannot reply on fh_unlock on the two filehandles,
1732 * as that would do the wrong thing if the two directories
1733 * were the same, so again we do it by hand
1734 */
1735 fill_post_wcc(ffhp);
1736 fill_post_wcc(tfhp);
1737 unlock_rename(tdentry, fdentry);
1738 ffhp->fh_locked = tfhp->fh_locked = 0;
4a55c101 1739 fh_drop_write(ffhp);
1da177e4
LT
1740
1741out:
1742 return err;
1743}
1744
1745/*
1746 * Unlink a file or directory
1747 * N.B. After this call fhp needs an fh_put
1748 */
6264d69d 1749__be32
1da177e4
LT
1750nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
1751 char *fname, int flen)
1752{
1753 struct dentry *dentry, *rdentry;
1754 struct inode *dirp;
6264d69d
AV
1755 __be32 err;
1756 int host_err;
1da177e4
LT
1757
1758 err = nfserr_acces;
1759 if (!flen || isdotent(fname, flen))
1760 goto out;
8837abca 1761 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_REMOVE);
1da177e4
LT
1762 if (err)
1763 goto out;
1764
4a55c101
JK
1765 host_err = fh_want_write(fhp);
1766 if (host_err)
1767 goto out_nfserr;
1768
12fd3520 1769 fh_lock_nested(fhp, I_MUTEX_PARENT);
1da177e4
LT
1770 dentry = fhp->fh_dentry;
1771 dirp = dentry->d_inode;
1772
1773 rdentry = lookup_one_len(fname, dentry, flen);
6264d69d 1774 host_err = PTR_ERR(rdentry);
1da177e4
LT
1775 if (IS_ERR(rdentry))
1776 goto out_nfserr;
1777
1778 if (!rdentry->d_inode) {
1779 dput(rdentry);
1780 err = nfserr_noent;
1781 goto out;
1782 }
1783
1784 if (!type)
1785 type = rdentry->d_inode->i_mode & S_IFMT;
1786
4795bb37
BF
1787 host_err = nfsd_break_lease(rdentry->d_inode);
1788 if (host_err)
4a55c101 1789 goto out_put;
9ce137ee 1790 if (type != S_IFDIR)
b21996e3 1791 host_err = vfs_unlink(dirp, rdentry, NULL);
9ce137ee 1792 else
6264d69d 1793 host_err = vfs_rmdir(dirp, rdentry);
f501912a
BM
1794 if (!host_err)
1795 host_err = commit_metadata(fhp);
541ce98c
BF
1796out_put:
1797 dput(rdentry);
1798
1da177e4 1799out_nfserr:
6264d69d 1800 err = nfserrno(host_err);
f193fbab
YT
1801out:
1802 return err;
1da177e4
LT
1803}
1804
14f7dd63
DW
1805/*
1806 * We do this buffering because we must not call back into the file
1807 * system's ->lookup() method from the filldir callback. That may well
1808 * deadlock a number of file systems.
1809 *
1810 * This is based heavily on the implementation of same in XFS.
1811 */
1812struct buffered_dirent {
1813 u64 ino;
1814 loff_t offset;
1815 int namlen;
1816 unsigned int d_type;
1817 char name[];
1818};
1819
1820struct readdir_data {
5c0ba4e0 1821 struct dir_context ctx;
14f7dd63
DW
1822 char *dirent;
1823 size_t used;
53c9c5c0 1824 int full;
14f7dd63
DW
1825};
1826
1827static int nfsd_buffered_filldir(void *__buf, const char *name, int namlen,
1828 loff_t offset, u64 ino, unsigned int d_type)
1829{
1830 struct readdir_data *buf = __buf;
1831 struct buffered_dirent *de = (void *)(buf->dirent + buf->used);
1832 unsigned int reclen;
1833
1834 reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64));
53c9c5c0
AV
1835 if (buf->used + reclen > PAGE_SIZE) {
1836 buf->full = 1;
14f7dd63 1837 return -EINVAL;
53c9c5c0 1838 }
14f7dd63
DW
1839
1840 de->namlen = namlen;
1841 de->offset = offset;
1842 de->ino = ino;
1843 de->d_type = d_type;
1844 memcpy(de->name, name, namlen);
1845 buf->used += reclen;
1846
1847 return 0;
1848}
1849
2f9092e1
DW
1850static __be32 nfsd_buffered_readdir(struct file *file, filldir_t func,
1851 struct readdir_cd *cdp, loff_t *offsetp)
2628b766 1852{
14f7dd63 1853 struct buffered_dirent *de;
2628b766 1854 int host_err;
14f7dd63
DW
1855 int size;
1856 loff_t offset;
ac6614b7
AV
1857 struct readdir_data buf = {
1858 .ctx.actor = nfsd_buffered_filldir,
1859 .dirent = (void *)__get_free_page(GFP_KERNEL)
1860 };
2628b766 1861
14f7dd63 1862 if (!buf.dirent)
2f9092e1 1863 return nfserrno(-ENOMEM);
14f7dd63
DW
1864
1865 offset = *offsetp;
2628b766 1866
14f7dd63 1867 while (1) {
496ad9aa 1868 struct inode *dir_inode = file_inode(file);
14f7dd63
DW
1869 unsigned int reclen;
1870
b726e923 1871 cdp->err = nfserr_eof; /* will be cleared on successful read */
14f7dd63 1872 buf.used = 0;
53c9c5c0 1873 buf.full = 0;
14f7dd63 1874
5c0ba4e0 1875 host_err = iterate_dir(file, &buf.ctx);
53c9c5c0
AV
1876 if (buf.full)
1877 host_err = 0;
1878
1879 if (host_err < 0)
14f7dd63
DW
1880 break;
1881
1882 size = buf.used;
1883
1884 if (!size)
1885 break;
1886
2f9092e1
DW
1887 /*
1888 * Various filldir functions may end up calling back into
1889 * lookup_one_len() and the file system's ->lookup() method.
1890 * These expect i_mutex to be held, as it would within readdir.
1891 */
1892 host_err = mutex_lock_killable(&dir_inode->i_mutex);
1893 if (host_err)
1894 break;
1895
14f7dd63
DW
1896 de = (struct buffered_dirent *)buf.dirent;
1897 while (size > 0) {
1898 offset = de->offset;
1899
1900 if (func(cdp, de->name, de->namlen, de->offset,
1901 de->ino, de->d_type))
2f9092e1 1902 break;
14f7dd63
DW
1903
1904 if (cdp->err != nfs_ok)
2f9092e1 1905 break;
14f7dd63
DW
1906
1907 reclen = ALIGN(sizeof(*de) + de->namlen,
1908 sizeof(u64));
1909 size -= reclen;
1910 de = (struct buffered_dirent *)((char *)de + reclen);
1911 }
2f9092e1
DW
1912 mutex_unlock(&dir_inode->i_mutex);
1913 if (size > 0) /* We bailed out early */
1914 break;
1915
c002a6c7 1916 offset = vfs_llseek(file, 0, SEEK_CUR);
14f7dd63
DW
1917 }
1918
14f7dd63 1919 free_page((unsigned long)(buf.dirent));
2628b766
DW
1920
1921 if (host_err)
1922 return nfserrno(host_err);
14f7dd63
DW
1923
1924 *offsetp = offset;
1925 return cdp->err;
2628b766
DW
1926}
1927
1da177e4
LT
1928/*
1929 * Read entries from a directory.
1930 * The NFSv3/4 verifier we ignore for now.
1931 */
6264d69d 1932__be32
1da177e4 1933nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp,
a0ad13ef 1934 struct readdir_cd *cdp, filldir_t func)
1da177e4 1935{
6264d69d 1936 __be32 err;
1da177e4
LT
1937 struct file *file;
1938 loff_t offset = *offsetp;
06effdbb
BS
1939 int may_flags = NFSD_MAY_READ;
1940
1941 /* NFSv2 only supports 32 bit cookies */
1942 if (rqstp->rq_vers > 2)
1943 may_flags |= NFSD_MAY_64BIT_COOKIE;
1da177e4 1944
06effdbb 1945 err = nfsd_open(rqstp, fhp, S_IFDIR, may_flags, &file);
1da177e4
LT
1946 if (err)
1947 goto out;
1948
b108fe6b 1949 offset = vfs_llseek(file, offset, SEEK_SET);
1da177e4
LT
1950 if (offset < 0) {
1951 err = nfserrno((int)offset);
1952 goto out_close;
1953 }
1954
14f7dd63 1955 err = nfsd_buffered_readdir(file, func, cdp, offsetp);
1da177e4
LT
1956
1957 if (err == nfserr_eof || err == nfserr_toosmall)
1958 err = nfs_ok; /* can still be found in ->err */
1959out_close:
1960 nfsd_close(file);
1961out:
1962 return err;
1963}
1964
1965/*
1966 * Get file system stats
1967 * N.B. After this call fhp needs an fh_put
1968 */
6264d69d 1969__be32
04716e66 1970nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat, int access)
1da177e4 1971{
ebabe9a9
CH
1972 __be32 err;
1973
1974 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP | access);
f6360efb
TI
1975 if (!err) {
1976 struct path path = {
1977 .mnt = fhp->fh_export->ex_path.mnt,
1978 .dentry = fhp->fh_dentry,
1979 };
1980 if (vfs_statfs(&path, stat))
1981 err = nfserr_io;
1982 }
1da177e4
LT
1983 return err;
1984}
1985
c7d51402 1986static int exp_rdonly(struct svc_rqst *rqstp, struct svc_export *exp)
e22841c6 1987{
c7d51402 1988 return nfsexp_flags(rqstp, exp) & NFSEXP_READONLY;
e22841c6
BF
1989}
1990
1da177e4
LT
1991/*
1992 * Check for a user's access permissions to this inode.
1993 */
6264d69d 1994__be32
0ec757df
BF
1995nfsd_permission(struct svc_rqst *rqstp, struct svc_export *exp,
1996 struct dentry *dentry, int acc)
1da177e4
LT
1997{
1998 struct inode *inode = dentry->d_inode;
1999 int err;
2000
aea93397 2001 if ((acc & NFSD_MAY_MASK) == NFSD_MAY_NOP)
1da177e4
LT
2002 return 0;
2003#if 0
2004 dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
2005 acc,
8837abca
MS
2006 (acc & NFSD_MAY_READ)? " read" : "",
2007 (acc & NFSD_MAY_WRITE)? " write" : "",
2008 (acc & NFSD_MAY_EXEC)? " exec" : "",
2009 (acc & NFSD_MAY_SATTR)? " sattr" : "",
2010 (acc & NFSD_MAY_TRUNC)? " trunc" : "",
2011 (acc & NFSD_MAY_LOCK)? " lock" : "",
2012 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "",
1da177e4
LT
2013 inode->i_mode,
2014 IS_IMMUTABLE(inode)? " immut" : "",
2015 IS_APPEND(inode)? " append" : "",
2c463e95 2016 __mnt_is_readonly(exp->ex_path.mnt)? " ro" : "");
1da177e4 2017 dprintk(" owner %d/%d user %d/%d\n",
5cc0a840 2018 inode->i_uid, inode->i_gid, current_fsuid(), current_fsgid());
1da177e4
LT
2019#endif
2020
2021 /* Normally we reject any write/sattr etc access on a read-only file
2022 * system. But if it is IRIX doing check on write-access for a
2023 * device special file, we ignore rofs.
2024 */
8837abca
MS
2025 if (!(acc & NFSD_MAY_LOCAL_ACCESS))
2026 if (acc & (NFSD_MAY_WRITE | NFSD_MAY_SATTR | NFSD_MAY_TRUNC)) {
2c463e95
DH
2027 if (exp_rdonly(rqstp, exp) ||
2028 __mnt_is_readonly(exp->ex_path.mnt))
1da177e4 2029 return nfserr_rofs;
8837abca 2030 if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode))
1da177e4
LT
2031 return nfserr_perm;
2032 }
8837abca 2033 if ((acc & NFSD_MAY_TRUNC) && IS_APPEND(inode))
1da177e4
LT
2034 return nfserr_perm;
2035
8837abca 2036 if (acc & NFSD_MAY_LOCK) {
1da177e4
LT
2037 /* If we cannot rely on authentication in NLM requests,
2038 * just allow locks, otherwise require read permission, or
2039 * ownership
2040 */
2041 if (exp->ex_flags & NFSEXP_NOAUTHNLM)
2042 return 0;
2043 else
8837abca 2044 acc = NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE;
1da177e4
LT
2045 }
2046 /*
2047 * The file owner always gets access permission for accesses that
2048 * would normally be checked at open time. This is to make
2049 * file access work even when the client has done a fchmod(fd, 0).
2050 *
2051 * However, `cp foo bar' should fail nevertheless when bar is
2052 * readonly. A sensible way to do this might be to reject all
2053 * attempts to truncate a read-only file, because a creat() call
2054 * always implies file truncation.
2055 * ... but this isn't really fair. A process may reasonably call
2056 * ftruncate on an open file descriptor on a file with perm 000.
2057 * We must trust the client to do permission checking - using "ACCESS"
2058 * with NFSv3.
2059 */
8837abca 2060 if ((acc & NFSD_MAY_OWNER_OVERRIDE) &&
6fab8779 2061 uid_eq(inode->i_uid, current_fsuid()))
1da177e4
LT
2062 return 0;
2063
8837abca 2064 /* This assumes NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
f419a2e3 2065 err = inode_permission(inode, acc & (MAY_READ|MAY_WRITE|MAY_EXEC));
1da177e4
LT
2066
2067 /* Allow read access to binaries even when mode 111 */
2068 if (err == -EACCES && S_ISREG(inode->i_mode) &&
a043226b
BF
2069 (acc == (NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE) ||
2070 acc == (NFSD_MAY_READ | NFSD_MAY_READ_IF_EXEC)))
f419a2e3 2071 err = inode_permission(inode, MAY_EXEC);
1da177e4
LT
2072
2073 return err? nfserrno(err) : 0;
2074}
2075
2076void
2077nfsd_racache_shutdown(void)
2078{
54a66e54
JL
2079 struct raparms *raparm, *last_raparm;
2080 unsigned int i;
2081
1da177e4 2082 dprintk("nfsd: freeing readahead buffers.\n");
54a66e54
JL
2083
2084 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
2085 raparm = raparm_hash[i].pb_head;
2086 while(raparm) {
2087 last_raparm = raparm;
2088 raparm = raparm->p_next;
2089 kfree(last_raparm);
2090 }
2091 raparm_hash[i].pb_head = NULL;
2092 }
1da177e4
LT
2093}
2094/*
2095 * Initialize readahead param cache
2096 */
2097int
2098nfsd_racache_init(int cache_size)
2099{
2100 int i;
fce1456a
GB
2101 int j = 0;
2102 int nperbucket;
54a66e54 2103 struct raparms **raparm = NULL;
1da177e4 2104
fce1456a 2105
54a66e54 2106 if (raparm_hash[0].pb_head)
1da177e4 2107 return 0;
54a66e54
JL
2108 nperbucket = DIV_ROUND_UP(cache_size, RAPARM_HASH_SIZE);
2109 if (nperbucket < 2)
2110 nperbucket = 2;
2111 cache_size = nperbucket * RAPARM_HASH_SIZE;
4b3bb06b
YB
2112
2113 dprintk("nfsd: allocating %d readahead buffers.\n", cache_size);
54a66e54
JL
2114
2115 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
4b3bb06b 2116 spin_lock_init(&raparm_hash[i].pb_lock);
54a66e54
JL
2117
2118 raparm = &raparm_hash[i].pb_head;
2119 for (j = 0; j < nperbucket; j++) {
2120 *raparm = kzalloc(sizeof(struct raparms), GFP_KERNEL);
2121 if (!*raparm)
2122 goto out_nomem;
2123 raparm = &(*raparm)->p_next;
2124 }
2125 *raparm = NULL;
4b3bb06b
YB
2126 }
2127
1da177e4
LT
2128 nfsdstats.ra_size = cache_size;
2129 return 0;
54a66e54
JL
2130
2131out_nomem:
2132 dprintk("nfsd: kmalloc failed, freeing readahead buffers\n");
2133 nfsd_racache_shutdown();
2134 return -ENOMEM;
1da177e4 2135}
This page took 1.428404 seconds and 5 git commands to generate.