nfsd: make fs/nfsd/vfs.h for common includes
[deliverable/linux.git] / fs / nfsd / nfsfh.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/nfsd/nfsfh.c
3 *
4 * NFS server file handle treatment.
5 *
6 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
7 * Portions Copyright (C) 1999 G. Allen Morris III <gam3@acm.org>
8 * Extensive rewrite by Neil Brown <neilb@cse.unsw.edu.au> Southern-Spring 1999
9 * ... and again Southern-Winter 2001 to support export_operations
10 */
11
1da177e4 12#include <linux/slab.h>
1da177e4
LT
13#include <linux/fs.h>
14#include <linux/unistd.h>
15#include <linux/string.h>
16#include <linux/stat.h>
17#include <linux/dcache.h>
a5694255 18#include <linux/exportfs.h>
1da177e4 19#include <linux/mount.h>
1da177e4 20
ad06e4bd 21#include <linux/sunrpc/clnt.h>
1da177e4 22#include <linux/sunrpc/svc.h>
32c1eb0c 23#include <linux/sunrpc/svcauth_gss.h>
1da177e4 24#include <linux/nfsd/nfsd.h>
0a3adade 25#include "vfs.h"
2e8138a2 26#include "auth.h"
1da177e4
LT
27
28#define NFSDDBG_FACILITY NFSDDBG_FH
1da177e4
LT
29
30
1da177e4
LT
31/*
32 * our acceptability function.
33 * if NOSUBTREECHECK, accept anything
34 * if not, require that we can walk up to exp->ex_dentry
35 * doing some checks on the 'x' bits
36 */
37static int nfsd_acceptable(void *expv, struct dentry *dentry)
38{
39 struct svc_export *exp = expv;
40 int rv;
41 struct dentry *tdentry;
42 struct dentry *parent;
43
44 if (exp->ex_flags & NFSEXP_NOSUBTREECHECK)
45 return 1;
46
47 tdentry = dget(dentry);
54775491 48 while (tdentry != exp->ex_path.dentry && !IS_ROOT(tdentry)) {
1da177e4
LT
49 /* make sure parents give x permission to user */
50 int err;
51 parent = dget_parent(tdentry);
f419a2e3 52 err = inode_permission(parent->d_inode, MAY_EXEC);
1da177e4
LT
53 if (err < 0) {
54 dput(parent);
55 break;
56 }
57 dput(tdentry);
58 tdentry = parent;
59 }
54775491 60 if (tdentry != exp->ex_path.dentry)
1da177e4 61 dprintk("nfsd_acceptable failed at %p %s\n", tdentry, tdentry->d_name.name);
54775491 62 rv = (tdentry == exp->ex_path.dentry);
1da177e4
LT
63 dput(tdentry);
64 return rv;
65}
66
67/* Type check. The correct error return for type mismatches does not seem to be
68 * generally agreed upon. SunOS seems to use EISDIR if file isn't S_IFREG; a
69 * comment in the NFSv3 spec says this is incorrect (implementation notes for
70 * the write call).
71 */
83b11340 72static inline __be32
1da177e4
LT
73nfsd_mode_check(struct svc_rqst *rqstp, umode_t mode, int type)
74{
75 /* Type can be negative when creating hardlinks - not to a dir */
76 if (type > 0 && (mode & S_IFMT) != type) {
77 if (rqstp->rq_vers == 4 && (mode & S_IFMT) == S_IFLNK)
78 return nfserr_symlink;
79 else if (type == S_IFDIR)
80 return nfserr_notdir;
81 else if ((mode & S_IFMT) == S_IFDIR)
82 return nfserr_isdir;
83 else
84 return nfserr_inval;
85 }
86 if (type < 0 && (mode & S_IFMT) == -type) {
87 if (rqstp->rq_vers == 4 && (mode & S_IFMT) == S_IFLNK)
88 return nfserr_symlink;
89 else if (type == -S_IFDIR)
90 return nfserr_isdir;
91 else
92 return nfserr_notdir;
93 }
94 return 0;
95}
96
6fa02839
BF
97static __be32 nfsd_setuser_and_check_port(struct svc_rqst *rqstp,
98 struct svc_export *exp)
99{
100 /* Check if the request originated from a secure port. */
101 if (!rqstp->rq_secure && EX_SECURE(exp)) {
5216a8e7 102 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
6fa02839
BF
103 dprintk(KERN_WARNING
104 "nfsd: request from insecure port %s!\n",
105 svc_print_addr(rqstp, buf, sizeof(buf)));
106 return nfserr_perm;
107 }
108
109 /* Set user creds for this exportpoint */
110 return nfserrno(nfsd_setuser(rqstp, exp));
111}
112
03550fac
BF
113/*
114 * Use the given filehandle to look up the corresponding export and
115 * dentry. On success, the results are used to set fh_export and
116 * fh_dentry.
117 */
118static __be32 nfsd_set_fh_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp)
119{
120 struct knfsd_fh *fh = &fhp->fh_handle;
121 struct fid *fid = NULL, sfid;
122 struct svc_export *exp;
123 struct dentry *dentry;
124 int fileid_type;
125 int data_left = fh->fh_size/4;
126 __be32 error;
127
128 error = nfserr_stale;
129 if (rqstp->rq_vers > 2)
130 error = nfserr_badhandle;
131 if (rqstp->rq_vers == 4 && fh->fh_size == 0)
132 return nfserr_nofilehandle;
133
134 if (fh->fh_version == 1) {
135 int len;
136
137 if (--data_left < 0)
138 return error;
139 if (fh->fh_auth_type != 0)
140 return error;
141 len = key_len(fh->fh_fsid_type) / 4;
142 if (len == 0)
143 return error;
144 if (fh->fh_fsid_type == FSID_MAJOR_MINOR) {
145 /* deprecated, convert to type 3 */
146 len = key_len(FSID_ENCODE_DEV)/4;
147 fh->fh_fsid_type = FSID_ENCODE_DEV;
148 fh->fh_fsid[0] = new_encode_dev(MKDEV(ntohl(fh->fh_fsid[0]), ntohl(fh->fh_fsid[1])));
149 fh->fh_fsid[1] = fh->fh_fsid[2];
150 }
151 data_left -= len;
152 if (data_left < 0)
153 return error;
154 exp = rqst_exp_find(rqstp, fh->fh_fsid_type, fh->fh_auth);
155 fid = (struct fid *)(fh->fh_auth + len);
156 } else {
157 __u32 tfh[2];
158 dev_t xdev;
159 ino_t xino;
160
161 if (fh->fh_size != NFS_FHSIZE)
162 return error;
163 /* assume old filehandle format */
164 xdev = old_decode_dev(fh->ofh_xdev);
165 xino = u32_to_ino_t(fh->ofh_xino);
166 mk_fsid(FSID_DEV, tfh, xdev, xino, 0, NULL);
167 exp = rqst_exp_find(rqstp, FSID_DEV, tfh);
168 }
169
170 error = nfserr_stale;
171 if (PTR_ERR(exp) == -ENOENT)
172 return error;
173
174 if (IS_ERR(exp))
175 return nfserrno(PTR_ERR(exp));
176
496d6c32
NB
177 if (exp->ex_flags & NFSEXP_NOSUBTREECHECK) {
178 /* Elevate privileges so that the lack of 'r' or 'x'
179 * permission on some parent directory will
180 * not stop exportfs_decode_fh from being able
181 * to reconnect a directory into the dentry cache.
182 * The same problem can affect "SUBTREECHECK" exports,
183 * but as nfsd_acceptable depends on correct
184 * access control settings being in effect, we cannot
185 * fix that case easily.
186 */
d84f4f99
DH
187 struct cred *new = prepare_creds();
188 if (!new)
189 return nfserrno(-ENOMEM);
190 new->cap_effective =
191 cap_raise_nfsd_set(new->cap_effective,
192 new->cap_permitted);
193 put_cred(override_creds(new));
194 put_cred(new);
496d6c32
NB
195 } else {
196 error = nfsd_setuser_and_check_port(rqstp, exp);
197 if (error)
198 goto out;
199 }
03550fac
BF
200
201 /*
202 * Look up the dentry using the NFS file handle.
203 */
204 error = nfserr_stale;
205 if (rqstp->rq_vers > 2)
206 error = nfserr_badhandle;
207
208 if (fh->fh_version != 1) {
209 sfid.i32.ino = fh->ofh_ino;
210 sfid.i32.gen = fh->ofh_generation;
211 sfid.i32.parent_ino = fh->ofh_dirino;
212 fid = &sfid;
213 data_left = 3;
214 if (fh->ofh_dirino == 0)
215 fileid_type = FILEID_INO32_GEN;
216 else
217 fileid_type = FILEID_INO32_GEN_PARENT;
218 } else
219 fileid_type = fh->fh_fileid_type;
220
221 if (fileid_type == FILEID_ROOT)
222 dentry = dget(exp->ex_path.dentry);
223 else {
224 dentry = exportfs_decode_fh(exp->ex_path.mnt, fid,
225 data_left, fileid_type,
226 nfsd_acceptable, exp);
227 }
228 if (dentry == NULL)
229 goto out;
230 if (IS_ERR(dentry)) {
231 if (PTR_ERR(dentry) != -EINVAL)
232 error = nfserrno(PTR_ERR(dentry));
233 goto out;
234 }
235
496d6c32
NB
236 if (exp->ex_flags & NFSEXP_NOSUBTREECHECK) {
237 error = nfsd_setuser_and_check_port(rqstp, exp);
238 if (error) {
239 dput(dentry);
240 goto out;
241 }
242 }
243
03550fac
BF
244 if (S_ISDIR(dentry->d_inode->i_mode) &&
245 (dentry->d_flags & DCACHE_DISCONNECTED)) {
246 printk("nfsd: find_fh_dentry returned a DISCONNECTED directory: %s/%s\n",
247 dentry->d_parent->d_name.name, dentry->d_name.name);
248 }
249
250 fhp->fh_dentry = dentry;
251 fhp->fh_export = exp;
03550fac
BF
252 return 0;
253out:
254 exp_put(exp);
255 return error;
256}
257
b3d47676
BF
258/**
259 * fh_verify - filehandle lookup and access checking
260 * @rqstp: pointer to current rpc request
261 * @fhp: filehandle to be verified
262 * @type: expected type of object pointed to by filehandle
263 * @access: type of access needed to object
264 *
265 * Look up a dentry from the on-the-wire filehandle, check the client's
266 * access to the export, and set the current task's credentials.
267 *
268 * Regardless of success or failure of fh_verify(), fh_put() should be
269 * called on @fhp when the caller is finished with the filehandle.
270 *
271 * fh_verify() may be called multiple times on a given filehandle, for
272 * example, when processing an NFSv4 compound. The first call will look
273 * up a dentry using the on-the-wire filehandle. Subsequent calls will
274 * skip the lookup and just perform the other checks and possibly change
275 * the current task's credentials.
1da177e4 276 *
b3d47676
BF
277 * @type specifies the type of object expected using one of the S_IF*
278 * constants defined in include/linux/stat.h. The caller may use zero
279 * to indicate that it doesn't care, or a negative integer to indicate
280 * that it expects something not of the given type.
1da177e4 281 *
b3d47676
BF
282 * @access is formed from the NFSD_MAY_* constants defined in
283 * include/linux/nfsd/nfsd.h.
1da177e4 284 */
83b11340 285__be32
1da177e4
LT
286fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access)
287{
03550fac 288 struct svc_export *exp;
1da177e4 289 struct dentry *dentry;
03550fac 290 __be32 error;
1da177e4
LT
291
292 dprintk("nfsd: fh_verify(%s)\n", SVCFH_fmt(fhp));
293
1da177e4 294 if (!fhp->fh_dentry) {
03550fac 295 error = nfsd_set_fh_dentry(rqstp, fhp);
d1bbf14f
N
296 if (error)
297 goto out;
03550fac
BF
298 dentry = fhp->fh_dentry;
299 exp = fhp->fh_export;
1da177e4 300 } else {
6fa02839
BF
301 /*
302 * just rechecking permissions
303 * (e.g. nfsproc_create calls fh_verify, then nfsd_create
304 * does as well)
1da177e4
LT
305 */
306 dprintk("nfsd: fh_verify - just checking\n");
307 dentry = fhp->fh_dentry;
308 exp = fhp->fh_export;
6fa02839
BF
309 /*
310 * Set user creds for this exportpoint; necessary even
d1bbf14f
N
311 * in the "just checking" case because this may be a
312 * filehandle that was created by fh_compose, and that
313 * is about to be used in another nfsv4 compound
6fa02839
BF
314 * operation.
315 */
316 error = nfsd_setuser_and_check_port(rqstp, exp);
d1bbf14f
N
317 if (error)
318 goto out;
1da177e4 319 }
7fc90ec9 320
1da177e4
LT
321 error = nfsd_mode_check(rqstp, dentry->d_inode->i_mode, type);
322 if (error)
323 goto out;
324
04716e66
BF
325 /*
326 * pseudoflavor restrictions are not enforced on NLM,
327 * which clients virtually always use auth_sys for,
328 * even while using RPCSEC_GSS for NFS.
329 */
330 if (access & NFSD_MAY_LOCK)
331 goto skip_pseudoflavor_check;
332 /*
333 * Clients may expect to be able to use auth_sys during mount,
334 * even if they use gss for everything else; see section 2.3.2
335 * of rfc 2623.
336 */
337 if (access & NFSD_MAY_BYPASS_GSS_ON_ROOT
338 && exp->ex_path.dentry == dentry)
339 goto skip_pseudoflavor_check;
340
341 error = check_nfsd_access(exp, rqstp);
342 if (error)
343 goto out;
32c1eb0c 344
04716e66 345skip_pseudoflavor_check:
1da177e4 346 /* Finally, check access permissions. */
0ec757df 347 error = nfsd_permission(rqstp, exp, dentry, access);
1da177e4 348
1da177e4 349 if (error) {
34e9a63b
N
350 dprintk("fh_verify: %s/%s permission failure, "
351 "acc=%x, error=%d\n",
352 dentry->d_parent->d_name.name,
353 dentry->d_name.name,
fc2dd2e5 354 access, ntohl(error));
1da177e4 355 }
1da177e4 356out:
1da177e4
LT
357 if (error == nfserr_stale)
358 nfsdstats.fh_stale++;
359 return error;
360}
361
362
363/*
364 * Compose a file handle for an NFS reply.
365 *
366 * Note that when first composed, the dentry may not yet have
367 * an inode. In this case a call to fh_update should be made
368 * before the fh goes out on the wire ...
369 */
6e91ea2b
CH
370static void _fh_update(struct svc_fh *fhp, struct svc_export *exp,
371 struct dentry *dentry)
1da177e4 372{
54775491 373 if (dentry != exp->ex_path.dentry) {
6e91ea2b
CH
374 struct fid *fid = (struct fid *)
375 (fhp->fh_handle.fh_auth + fhp->fh_handle.fh_size/4 - 1);
376 int maxsize = (fhp->fh_maxsize - fhp->fh_handle.fh_size)/4;
377 int subtreecheck = !(exp->ex_flags & NFSEXP_NOSUBTREECHECK);
1da177e4 378
6e91ea2b
CH
379 fhp->fh_handle.fh_fileid_type =
380 exportfs_encode_fh(dentry, fid, &maxsize, subtreecheck);
381 fhp->fh_handle.fh_size += maxsize * 4;
382 } else {
383 fhp->fh_handle.fh_fileid_type = FILEID_ROOT;
384 }
1da177e4
LT
385}
386
387/*
388 * for composing old style file handles
389 */
390static inline void _fh_update_old(struct dentry *dentry,
391 struct svc_export *exp,
392 struct knfsd_fh *fh)
393{
394 fh->ofh_ino = ino_t_to_u32(dentry->d_inode->i_ino);
395 fh->ofh_generation = dentry->d_inode->i_generation;
396 if (S_ISDIR(dentry->d_inode->i_mode) ||
397 (exp->ex_flags & NFSEXP_NOSUBTREECHECK))
398 fh->ofh_dirino = 0;
399}
400
8e498751
BF
401static bool is_root_export(struct svc_export *exp)
402{
403 return exp->ex_path.dentry == exp->ex_path.dentry->d_sb->s_root;
404}
405
406static struct super_block *exp_sb(struct svc_export *exp)
407{
408 return exp->ex_path.dentry->d_inode->i_sb;
409}
410
411static bool fsid_type_ok_for_exp(u8 fsid_type, struct svc_export *exp)
412{
413 switch (fsid_type) {
414 case FSID_DEV:
415 if (!old_valid_dev(exp_sb(exp)->s_dev))
416 return 0;
417 /* FALL THROUGH */
418 case FSID_MAJOR_MINOR:
419 case FSID_ENCODE_DEV:
420 return exp_sb(exp)->s_type->fs_flags & FS_REQUIRES_DEV;
421 case FSID_NUM:
422 return exp->ex_flags & NFSEXP_FSID;
423 case FSID_UUID8:
424 case FSID_UUID16:
425 if (!is_root_export(exp))
426 return 0;
427 /* fall through */
428 case FSID_UUID4_INUM:
429 case FSID_UUID16_INUM:
430 return exp->ex_uuid != NULL;
431 }
432 return 1;
433}
434
1da177e4 435
bc6c53d5
BF
436static void set_version_and_fsid_type(struct svc_fh *fhp, struct svc_export *exp, struct svc_fh *ref_fh)
437{
b41eeef1 438 u8 version;
bc6c53d5
BF
439 u8 fsid_type;
440retry:
b41eeef1 441 version = 1;
7e405364 442 if (ref_fh && ref_fh->fh_export == exp) {
982aedfd 443 version = ref_fh->fh_handle.fh_version;
b41eeef1
N
444 fsid_type = ref_fh->fh_handle.fh_fsid_type;
445
b41eeef1
N
446 ref_fh = NULL;
447
448 switch (version) {
449 case 0xca:
af6a4e28 450 fsid_type = FSID_DEV;
b41eeef1
N
451 break;
452 case 1:
453 break;
454 default:
455 goto retry;
456 }
457
8e498751
BF
458 /*
459 * As the fsid -> filesystem mapping was guided by
460 * user-space, there is no guarantee that the filesystem
461 * actually supports that fsid type. If it doesn't we
462 * loop around again without ref_fh set.
982aedfd 463 */
8e498751
BF
464 if (!fsid_type_ok_for_exp(fsid_type, exp))
465 goto retry;
30fa8c01
SD
466 } else if (exp->ex_flags & NFSEXP_FSID) {
467 fsid_type = FSID_NUM;
af6a4e28
N
468 } else if (exp->ex_uuid) {
469 if (fhp->fh_maxsize >= 64) {
8e498751 470 if (is_root_export(exp))
af6a4e28
N
471 fsid_type = FSID_UUID16;
472 else
473 fsid_type = FSID_UUID16_INUM;
474 } else {
8e498751 475 if (is_root_export(exp))
af6a4e28
N
476 fsid_type = FSID_UUID8;
477 else
478 fsid_type = FSID_UUID4_INUM;
479 }
bc6c53d5 480 } else if (!old_valid_dev(exp_sb(exp)->s_dev))
1da177e4 481 /* for newer device numbers, we must use a newer fsid format */
af6a4e28 482 fsid_type = FSID_ENCODE_DEV;
982aedfd 483 else
af6a4e28 484 fsid_type = FSID_DEV;
bc6c53d5
BF
485 fhp->fh_handle.fh_version = version;
486 if (version)
487 fhp->fh_handle.fh_fsid_type = fsid_type;
488}
489
490__be32
491fh_compose(struct svc_fh *fhp, struct svc_export *exp, struct dentry *dentry,
492 struct svc_fh *ref_fh)
493{
494 /* ref_fh is a reference file handle.
495 * if it is non-null and for the same filesystem, then we should compose
496 * a filehandle which is of the same version, where possible.
497 * Currently, that means that if ref_fh->fh_handle.fh_version == 0xca
498 * Then create a 32byte filehandle using nfs_fhbase_old
499 *
500 */
501
502 struct inode * inode = dentry->d_inode;
503 struct dentry *parent = dentry->d_parent;
504 __u32 *datap;
505 dev_t ex_dev = exp_sb(exp)->s_dev;
506
507 dprintk("nfsd: fh_compose(exp %02x:%02x/%ld %s/%s, ino=%ld)\n",
508 MAJOR(ex_dev), MINOR(ex_dev),
509 (long) exp->ex_path.dentry->d_inode->i_ino,
510 parent->d_name.name, dentry->d_name.name,
511 (inode ? inode->i_ino : 0));
512
513 /* Choose filehandle version and fsid type based on
514 * the reference filehandle (if it is in the same export)
515 * or the export options.
516 */
517 set_version_and_fsid_type(fhp, exp, ref_fh);
1da177e4
LT
518
519 if (ref_fh == fhp)
520 fh_put(ref_fh);
521
522 if (fhp->fh_locked || fhp->fh_dentry) {
523 printk(KERN_ERR "fh_compose: fh %s/%s not initialized!\n",
982aedfd 524 parent->d_name.name, dentry->d_name.name);
1da177e4
LT
525 }
526 if (fhp->fh_maxsize < NFS_FHSIZE)
527 printk(KERN_ERR "fh_compose: called with maxsize %d! %s/%s\n",
982aedfd
N
528 fhp->fh_maxsize,
529 parent->d_name.name, dentry->d_name.name);
1da177e4
LT
530
531 fhp->fh_dentry = dget(dentry); /* our internal copy */
532 fhp->fh_export = exp;
533 cache_get(&exp->h);
534
bc6c53d5 535 if (fhp->fh_handle.fh_version == 0xca) {
1da177e4
LT
536 /* old style filehandle please */
537 memset(&fhp->fh_handle.fh_base, 0, NFS_FHSIZE);
538 fhp->fh_handle.fh_size = NFS_FHSIZE;
539 fhp->fh_handle.ofh_dcookie = 0xfeebbaca;
540 fhp->fh_handle.ofh_dev = old_encode_dev(ex_dev);
541 fhp->fh_handle.ofh_xdev = fhp->fh_handle.ofh_dev;
982aedfd 542 fhp->fh_handle.ofh_xino =
54775491 543 ino_t_to_u32(exp->ex_path.dentry->d_inode->i_ino);
1da177e4
LT
544 fhp->fh_handle.ofh_dirino = ino_t_to_u32(parent_ino(dentry));
545 if (inode)
546 _fh_update_old(dentry, exp, &fhp->fh_handle);
547 } else {
548 int len;
1da177e4
LT
549 fhp->fh_handle.fh_auth_type = 0;
550 datap = fhp->fh_handle.fh_auth+0;
bc6c53d5 551 mk_fsid(fhp->fh_handle.fh_fsid_type, datap, ex_dev,
54775491 552 exp->ex_path.dentry->d_inode->i_ino,
af6a4e28
N
553 exp->ex_fsid, exp->ex_uuid);
554
bc6c53d5 555 len = key_len(fhp->fh_handle.fh_fsid_type);
1da177e4
LT
556 datap += len/4;
557 fhp->fh_handle.fh_size = 4 + len;
558
6e91ea2b
CH
559 if (inode)
560 _fh_update(fhp, exp, dentry);
1be10a88
BF
561 if (fhp->fh_handle.fh_fileid_type == 255) {
562 fh_put(fhp);
1da177e4 563 return nfserr_opnotsupp;
1be10a88 564 }
1da177e4
LT
565 }
566
1da177e4
LT
567 return 0;
568}
569
570/*
571 * Update file handle information after changing a dentry.
572 * This is only called by nfsd_create, nfsd_create_v3 and nfsd_proc_create
573 */
83b11340 574__be32
1da177e4
LT
575fh_update(struct svc_fh *fhp)
576{
577 struct dentry *dentry;
982aedfd 578
1da177e4
LT
579 if (!fhp->fh_dentry)
580 goto out_bad;
581
582 dentry = fhp->fh_dentry;
583 if (!dentry->d_inode)
584 goto out_negative;
585 if (fhp->fh_handle.fh_version != 1) {
586 _fh_update_old(dentry, fhp->fh_export, &fhp->fh_handle);
587 } else {
6e91ea2b 588 if (fhp->fh_handle.fh_fileid_type != FILEID_ROOT)
4c9608b2 589 goto out;
6e91ea2b
CH
590
591 _fh_update(fhp, fhp->fh_export, dentry);
1da177e4
LT
592 if (fhp->fh_handle.fh_fileid_type == 255)
593 return nfserr_opnotsupp;
594 }
595out:
596 return 0;
597
598out_bad:
599 printk(KERN_ERR "fh_update: fh not verified!\n");
600 goto out;
601out_negative:
602 printk(KERN_ERR "fh_update: %s/%s still negative!\n",
603 dentry->d_parent->d_name.name, dentry->d_name.name);
604 goto out;
1da177e4
LT
605}
606
607/*
608 * Release a file handle.
609 */
610void
611fh_put(struct svc_fh *fhp)
612{
613 struct dentry * dentry = fhp->fh_dentry;
614 struct svc_export * exp = fhp->fh_export;
615 if (dentry) {
616 fh_unlock(fhp);
617 fhp->fh_dentry = NULL;
618 dput(dentry);
619#ifdef CONFIG_NFSD_V3
620 fhp->fh_pre_saved = 0;
621 fhp->fh_post_saved = 0;
622#endif
1da177e4
LT
623 }
624 if (exp) {
baab935f 625 cache_put(&exp->h, &svc_export_cache);
1da177e4
LT
626 fhp->fh_export = NULL;
627 }
628 return;
629}
630
631/*
632 * Shorthand for dprintk()'s
633 */
634char * SVCFH_fmt(struct svc_fh *fhp)
635{
636 struct knfsd_fh *fh = &fhp->fh_handle;
637
638 static char buf[80];
639 sprintf(buf, "%d: %08x %08x %08x %08x %08x %08x",
640 fh->fh_size,
641 fh->fh_base.fh_pad[0],
642 fh->fh_base.fh_pad[1],
643 fh->fh_base.fh_pad[2],
644 fh->fh_base.fh_pad[3],
645 fh->fh_base.fh_pad[4],
646 fh->fh_base.fh_pad[5]);
647 return buf;
648}
af6a4e28
N
649
650enum fsid_source fsid_source(struct svc_fh *fhp)
651{
652 if (fhp->fh_handle.fh_version != 1)
653 return FSIDSOURCE_DEV;
654 switch(fhp->fh_handle.fh_fsid_type) {
655 case FSID_DEV:
656 case FSID_ENCODE_DEV:
657 case FSID_MAJOR_MINOR:
8e498751 658 if (exp_sb(fhp->fh_export)->s_type->fs_flags & FS_REQUIRES_DEV)
b8da0d1c
NB
659 return FSIDSOURCE_DEV;
660 break;
af6a4e28 661 case FSID_NUM:
af6a4e28
N
662 if (fhp->fh_export->ex_flags & NFSEXP_FSID)
663 return FSIDSOURCE_FSID;
b8da0d1c
NB
664 break;
665 default:
666 break;
af6a4e28 667 }
b8da0d1c
NB
668 /* either a UUID type filehandle, or the filehandle doesn't
669 * match the export.
670 */
671 if (fhp->fh_export->ex_flags & NFSEXP_FSID)
672 return FSIDSOURCE_FSID;
673 if (fhp->fh_export->ex_uuid)
674 return FSIDSOURCE_UUID;
675 return FSIDSOURCE_DEV;
af6a4e28 676}
This page took 0.447485 seconds and 5 git commands to generate.