blob: 22cb5be79ad0be2f98d85d6a0d9ab5a08764028e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/fs.h>
14#include <linux/unistd.h>
15#include <linux/string.h>
16#include <linux/stat.h>
17#include <linux/dcache.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070018#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Chuck Leverad06e4b2007-02-12 00:53:32 -080021#include <linux/sunrpc/clnt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/sunrpc/svc.h>
23#include <linux/nfsd/nfsd.h>
24
25#define NFSDDBG_FACILITY NFSDDBG_FH
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27
28static int nfsd_nr_verified;
29static int nfsd_nr_put;
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031/*
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);
48 while (tdentry != exp->ex_dentry && ! IS_ROOT(tdentry)) {
49 /* make sure parents give x permission to user */
50 int err;
51 parent = dget_parent(tdentry);
52 err = permission(parent->d_inode, MAY_EXEC, NULL);
53 if (err < 0) {
54 dput(parent);
55 break;
56 }
57 dput(tdentry);
58 tdentry = parent;
59 }
60 if (tdentry != exp->ex_dentry)
61 dprintk("nfsd_acceptable failed at %p %s\n", tdentry, tdentry->d_name.name);
62 rv = (tdentry == exp->ex_dentry);
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 */
Al Viro83b11342006-10-19 23:28:55 -070072static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -070073nfsd_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
97/*
98 * Perform sanity checks on the dentry in a client's file handle.
99 *
100 * Note that the file handle dentry may need to be freed even after
101 * an error return.
102 *
103 * This is only called at the start of an nfsproc call, so fhp points to
104 * a svc_fh which is all 0 except for the over-the-wire file handle.
105 */
Al Viro83b11342006-10-19 23:28:55 -0700106__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access)
108{
109 struct knfsd_fh *fh = &fhp->fh_handle;
110 struct svc_export *exp = NULL;
111 struct dentry *dentry;
Al Viro83b11342006-10-19 23:28:55 -0700112 __be32 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 dprintk("nfsd: fh_verify(%s)\n", SVCFH_fmt(fhp));
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 if (!fhp->fh_dentry) {
117 __u32 *datap=NULL;
118 __u32 tfh[3]; /* filehandle fragment for oldstyle filehandles */
119 int fileid_type;
120 int data_left = fh->fh_size/4;
121
122 error = nfserr_stale;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 if (rqstp->rq_vers > 2)
124 error = nfserr_badhandle;
125 if (rqstp->rq_vers == 4 && fh->fh_size == 0)
126 return nfserr_nofilehandle;
127
128 if (fh->fh_version == 1) {
129 int len;
130 datap = fh->fh_auth;
131 if (--data_left<0) goto out;
132 switch (fh->fh_auth_type) {
133 case 0: break;
134 default: goto out;
135 }
136 len = key_len(fh->fh_fsid_type) / 4;
137 if (len == 0) goto out;
NeilBrownaf6a4e22007-02-14 00:33:12 -0800138 if (fh->fh_fsid_type == FSID_MAJOR_MINOR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 /* deprecated, convert to type 3 */
NeilBrownaf6a4e22007-02-14 00:33:12 -0800140 len = key_len(FSID_ENCODE_DEV)/4;
141 fh->fh_fsid_type = FSID_ENCODE_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 fh->fh_fsid[0] = new_encode_dev(MKDEV(ntohl(fh->fh_fsid[0]), ntohl(fh->fh_fsid[1])));
143 fh->fh_fsid[1] = fh->fh_fsid[2];
144 }
145 if ((data_left -= len)<0) goto out;
J. Bruce Fields0989a782007-07-17 04:04:44 -0700146 exp = rqst_exp_find(rqstp, fh->fh_fsid_type, datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 datap += len;
148 } else {
149 dev_t xdev;
150 ino_t xino;
151 if (fh->fh_size != NFS_FHSIZE)
152 goto out;
153 /* assume old filehandle format */
154 xdev = old_decode_dev(fh->ofh_xdev);
155 xino = u32_to_ino_t(fh->ofh_xino);
NeilBrownaf6a4e22007-02-14 00:33:12 -0800156 mk_fsid(FSID_DEV, tfh, xdev, xino, 0, NULL);
J. Bruce Fields0989a782007-07-17 04:04:44 -0700157 exp = rqst_exp_find(rqstp, FSID_DEV, tfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
159
J. Bruce Fields2d3bb252007-07-17 04:04:40 -0700160 error = nfserr_stale;
161 if (PTR_ERR(exp) == -ENOENT)
162 goto out;
163
164 if (IS_ERR(exp)) {
J.Bruce Fieldse0bb89e2006-12-13 00:35:25 -0800165 error = nfserrno(PTR_ERR(exp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 goto out;
J.Bruce Fieldse0bb89e2006-12-13 00:35:25 -0800167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 /* Check if the request originated from a secure port. */
170 error = nfserr_perm;
171 if (!rqstp->rq_secure && EX_SECURE(exp)) {
Chuck Leverad06e4b2007-02-12 00:53:32 -0800172 char buf[RPC_MAX_ADDRBUFLEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 printk(KERN_WARNING
Chuck Leverad06e4b2007-02-12 00:53:32 -0800174 "nfsd: request from insecure port %s!\n",
175 svc_print_addr(rqstp, buf, sizeof(buf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 goto out;
177 }
178
NeilBrownd1bbf142006-07-30 03:03:16 -0700179 /* Set user creds for this exportpoint */
180 error = nfserrno(nfsd_setuser(rqstp, exp));
181 if (error)
182 goto out;
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 /*
185 * Look up the dentry using the NFS file handle.
186 */
187 error = nfserr_stale;
188 if (rqstp->rq_vers > 2)
189 error = nfserr_badhandle;
190
191 if (fh->fh_version != 1) {
192 tfh[0] = fh->ofh_ino;
193 tfh[1] = fh->ofh_generation;
194 tfh[2] = fh->ofh_dirino;
195 datap = tfh;
196 data_left = 3;
197 if (fh->ofh_dirino == 0)
198 fileid_type = 1;
199 else
200 fileid_type = 2;
201 } else
202 fileid_type = fh->fh_fileid_type;
NeilBrown982aedf2007-02-14 00:33:11 -0800203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 if (fileid_type == 0)
205 dentry = dget(exp->ex_dentry);
206 else {
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700207 dentry = exportfs_decode_fh(exp->ex_mnt, datap,
208 data_left, fileid_type,
209 nfsd_acceptable, exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
211 if (dentry == NULL)
212 goto out;
213 if (IS_ERR(dentry)) {
214 if (PTR_ERR(dentry) != -EINVAL)
215 error = nfserrno(PTR_ERR(dentry));
216 goto out;
217 }
NeilBrown34e9a632007-01-29 13:19:52 -0800218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (S_ISDIR(dentry->d_inode->i_mode) &&
220 (dentry->d_flags & DCACHE_DISCONNECTED)) {
221 printk("nfsd: find_fh_dentry returned a DISCONNECTED directory: %s/%s\n",
222 dentry->d_parent->d_name.name, dentry->d_name.name);
223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225 fhp->fh_dentry = dentry;
226 fhp->fh_export = exp;
227 nfsd_nr_verified++;
228 } else {
229 /* just rechecking permissions
230 * (e.g. nfsproc_create calls fh_verify, then nfsd_create does as well)
231 */
232 dprintk("nfsd: fh_verify - just checking\n");
233 dentry = fhp->fh_dentry;
234 exp = fhp->fh_export;
NeilBrownd1bbf142006-07-30 03:03:16 -0700235 /* Set user creds for this exportpoint; necessary even
236 * in the "just checking" case because this may be a
237 * filehandle that was created by fh_compose, and that
238 * is about to be used in another nfsv4 compound
239 * operation */
240 error = nfserrno(nfsd_setuser(rqstp, exp));
241 if (error)
242 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
244 cache_get(&exp->h);
245
J. Bruce Fields7fc90ec2006-06-30 01:56:14 -0700246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 error = nfsd_mode_check(rqstp, dentry->d_inode->i_mode, type);
248 if (error)
249 goto out;
250
251 /* Finally, check access permissions. */
252 error = nfsd_permission(exp, dentry, access);
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (error) {
NeilBrown34e9a632007-01-29 13:19:52 -0800255 dprintk("fh_verify: %s/%s permission failure, "
256 "acc=%x, error=%d\n",
257 dentry->d_parent->d_name.name,
258 dentry->d_name.name,
Al Virofc2dd2e2007-02-01 13:52:43 +0000259 access, ntohl(error));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261out:
262 if (exp && !IS_ERR(exp))
263 exp_put(exp);
264 if (error == nfserr_stale)
265 nfsdstats.fh_stale++;
266 return error;
267}
268
269
270/*
271 * Compose a file handle for an NFS reply.
272 *
273 * Note that when first composed, the dentry may not yet have
274 * an inode. In this case a call to fh_update should be made
275 * before the fh goes out on the wire ...
276 */
277static inline int _fh_update(struct dentry *dentry, struct svc_export *exp,
278 __u32 *datap, int *maxsize)
279{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (dentry == exp->ex_dentry) {
281 *maxsize = 0;
282 return 0;
283 }
284
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700285 return exportfs_encode_fh(dentry, datap, maxsize,
286 !(exp->ex_flags & NFSEXP_NOSUBTREECHECK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289/*
290 * for composing old style file handles
291 */
292static inline void _fh_update_old(struct dentry *dentry,
293 struct svc_export *exp,
294 struct knfsd_fh *fh)
295{
296 fh->ofh_ino = ino_t_to_u32(dentry->d_inode->i_ino);
297 fh->ofh_generation = dentry->d_inode->i_generation;
298 if (S_ISDIR(dentry->d_inode->i_mode) ||
299 (exp->ex_flags & NFSEXP_NOSUBTREECHECK))
300 fh->ofh_dirino = 0;
301}
302
Al Viro83b11342006-10-19 23:28:55 -0700303__be32
NeilBrown982aedf2007-02-14 00:33:11 -0800304fh_compose(struct svc_fh *fhp, struct svc_export *exp, struct dentry *dentry,
305 struct svc_fh *ref_fh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
307 /* ref_fh is a reference file handle.
NeilBrown7e405362006-06-30 01:56:12 -0700308 * if it is non-null and for the same filesystem, then we should compose
309 * a filehandle which is of the same version, where possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 * Currently, that means that if ref_fh->fh_handle.fh_version == 0xca
311 * Then create a 32byte filehandle using nfs_fhbase_old
312 *
313 */
314
NeilBrownb41eeef2007-05-09 02:34:57 -0700315 u8 version;
NeilBrown982aedf2007-02-14 00:33:11 -0800316 u8 fsid_type = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 struct inode * inode = dentry->d_inode;
318 struct dentry *parent = dentry->d_parent;
319 __u32 *datap;
320 dev_t ex_dev = exp->ex_dentry->d_inode->i_sb->s_dev;
NeilBrownaf6a4e22007-02-14 00:33:12 -0800321 int root_export = (exp->ex_dentry == exp->ex_dentry->d_sb->s_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 dprintk("nfsd: fh_compose(exp %02x:%02x/%ld %s/%s, ino=%ld)\n",
324 MAJOR(ex_dev), MINOR(ex_dev),
325 (long) exp->ex_dentry->d_inode->i_ino,
326 parent->d_name.name, dentry->d_name.name,
327 (inode ? inode->i_ino : 0));
328
NeilBrown982aedf2007-02-14 00:33:11 -0800329 /* Choose filehandle version and fsid type based on
330 * the reference filehandle (if it is in the same export)
331 * or the export options.
332 */
NeilBrownb41eeef2007-05-09 02:34:57 -0700333 retry:
334 version = 1;
NeilBrown7e405362006-06-30 01:56:12 -0700335 if (ref_fh && ref_fh->fh_export == exp) {
NeilBrown982aedf2007-02-14 00:33:11 -0800336 version = ref_fh->fh_handle.fh_version;
NeilBrownb41eeef2007-05-09 02:34:57 -0700337 fsid_type = ref_fh->fh_handle.fh_fsid_type;
338
339 if (ref_fh == fhp)
340 fh_put(ref_fh);
341 ref_fh = NULL;
342
343 switch (version) {
344 case 0xca:
NeilBrownaf6a4e22007-02-14 00:33:12 -0800345 fsid_type = FSID_DEV;
NeilBrownb41eeef2007-05-09 02:34:57 -0700346 break;
347 case 1:
348 break;
349 default:
350 goto retry;
351 }
352
353 /* Need to check that this type works for this
354 * export point. As the fsid -> filesystem mapping
355 * was guided by user-space, there is no guarantee
356 * that the filesystem actually supports that fsid
357 * type. If it doesn't we loop around again without
358 * ref_fh set.
NeilBrown982aedf2007-02-14 00:33:11 -0800359 */
NeilBrownb41eeef2007-05-09 02:34:57 -0700360 switch(fsid_type) {
361 case FSID_DEV:
362 if (!old_valid_dev(ex_dev))
363 goto retry;
364 /* FALL THROUGH */
365 case FSID_MAJOR_MINOR:
366 case FSID_ENCODE_DEV:
367 if (!(exp->ex_dentry->d_inode->i_sb->s_type->fs_flags
368 & FS_REQUIRES_DEV))
369 goto retry;
370 break;
371 case FSID_NUM:
372 if (! (exp->ex_flags & NFSEXP_FSID))
373 goto retry;
374 break;
375 case FSID_UUID8:
376 case FSID_UUID16:
377 if (!root_export)
378 goto retry;
379 /* fall through */
380 case FSID_UUID4_INUM:
381 case FSID_UUID16_INUM:
382 if (exp->ex_uuid == NULL)
383 goto retry;
384 break;
385 }
NeilBrownaf6a4e22007-02-14 00:33:12 -0800386 } else if (exp->ex_uuid) {
387 if (fhp->fh_maxsize >= 64) {
388 if (root_export)
389 fsid_type = FSID_UUID16;
390 else
391 fsid_type = FSID_UUID16_INUM;
392 } else {
393 if (root_export)
394 fsid_type = FSID_UUID8;
395 else
396 fsid_type = FSID_UUID4_INUM;
397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 } else if (exp->ex_flags & NFSEXP_FSID)
NeilBrownaf6a4e22007-02-14 00:33:12 -0800399 fsid_type = FSID_NUM;
NeilBrown982aedf2007-02-14 00:33:11 -0800400 else if (!old_valid_dev(ex_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 /* for newer device numbers, we must use a newer fsid format */
NeilBrownaf6a4e22007-02-14 00:33:12 -0800402 fsid_type = FSID_ENCODE_DEV;
NeilBrown982aedf2007-02-14 00:33:11 -0800403 else
NeilBrownaf6a4e22007-02-14 00:33:12 -0800404 fsid_type = FSID_DEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 if (ref_fh == fhp)
407 fh_put(ref_fh);
408
409 if (fhp->fh_locked || fhp->fh_dentry) {
410 printk(KERN_ERR "fh_compose: fh %s/%s not initialized!\n",
NeilBrown982aedf2007-02-14 00:33:11 -0800411 parent->d_name.name, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413 if (fhp->fh_maxsize < NFS_FHSIZE)
414 printk(KERN_ERR "fh_compose: called with maxsize %d! %s/%s\n",
NeilBrown982aedf2007-02-14 00:33:11 -0800415 fhp->fh_maxsize,
416 parent->d_name.name, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 fhp->fh_dentry = dget(dentry); /* our internal copy */
419 fhp->fh_export = exp;
420 cache_get(&exp->h);
421
NeilBrown982aedf2007-02-14 00:33:11 -0800422 if (version == 0xca) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 /* old style filehandle please */
424 memset(&fhp->fh_handle.fh_base, 0, NFS_FHSIZE);
425 fhp->fh_handle.fh_size = NFS_FHSIZE;
426 fhp->fh_handle.ofh_dcookie = 0xfeebbaca;
427 fhp->fh_handle.ofh_dev = old_encode_dev(ex_dev);
428 fhp->fh_handle.ofh_xdev = fhp->fh_handle.ofh_dev;
NeilBrown982aedf2007-02-14 00:33:11 -0800429 fhp->fh_handle.ofh_xino =
430 ino_t_to_u32(exp->ex_dentry->d_inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 fhp->fh_handle.ofh_dirino = ino_t_to_u32(parent_ino(dentry));
432 if (inode)
433 _fh_update_old(dentry, exp, &fhp->fh_handle);
434 } else {
435 int len;
436 fhp->fh_handle.fh_version = 1;
437 fhp->fh_handle.fh_auth_type = 0;
438 datap = fhp->fh_handle.fh_auth+0;
NeilBrown982aedf2007-02-14 00:33:11 -0800439 fhp->fh_handle.fh_fsid_type = fsid_type;
NeilBrownaf6a4e22007-02-14 00:33:12 -0800440 mk_fsid(fsid_type, datap, ex_dev,
441 exp->ex_dentry->d_inode->i_ino,
442 exp->ex_fsid, exp->ex_uuid);
443
NeilBrown982aedf2007-02-14 00:33:11 -0800444 len = key_len(fsid_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 datap += len/4;
446 fhp->fh_handle.fh_size = 4 + len;
447
448 if (inode) {
449 int size = (fhp->fh_maxsize-len-4)/4;
450 fhp->fh_handle.fh_fileid_type =
451 _fh_update(dentry, exp, datap, &size);
452 fhp->fh_handle.fh_size += size*4;
453 }
454 if (fhp->fh_handle.fh_fileid_type == 255)
455 return nfserr_opnotsupp;
456 }
457
458 nfsd_nr_verified++;
459 return 0;
460}
461
462/*
463 * Update file handle information after changing a dentry.
464 * This is only called by nfsd_create, nfsd_create_v3 and nfsd_proc_create
465 */
Al Viro83b11342006-10-19 23:28:55 -0700466__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467fh_update(struct svc_fh *fhp)
468{
469 struct dentry *dentry;
470 __u32 *datap;
NeilBrown982aedf2007-02-14 00:33:11 -0800471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (!fhp->fh_dentry)
473 goto out_bad;
474
475 dentry = fhp->fh_dentry;
476 if (!dentry->d_inode)
477 goto out_negative;
478 if (fhp->fh_handle.fh_version != 1) {
479 _fh_update_old(dentry, fhp->fh_export, &fhp->fh_handle);
480 } else {
481 int size;
482 if (fhp->fh_handle.fh_fileid_type != 0)
NeilBrown4c9608b2006-06-30 01:56:11 -0700483 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 datap = fhp->fh_handle.fh_auth+
485 fhp->fh_handle.fh_size/4 -1;
486 size = (fhp->fh_maxsize - fhp->fh_handle.fh_size)/4;
487 fhp->fh_handle.fh_fileid_type =
488 _fh_update(dentry, fhp->fh_export, datap, &size);
489 fhp->fh_handle.fh_size += size*4;
490 if (fhp->fh_handle.fh_fileid_type == 255)
491 return nfserr_opnotsupp;
492 }
493out:
494 return 0;
495
496out_bad:
497 printk(KERN_ERR "fh_update: fh not verified!\n");
498 goto out;
499out_negative:
500 printk(KERN_ERR "fh_update: %s/%s still negative!\n",
501 dentry->d_parent->d_name.name, dentry->d_name.name);
502 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
504
505/*
506 * Release a file handle.
507 */
508void
509fh_put(struct svc_fh *fhp)
510{
511 struct dentry * dentry = fhp->fh_dentry;
512 struct svc_export * exp = fhp->fh_export;
513 if (dentry) {
514 fh_unlock(fhp);
515 fhp->fh_dentry = NULL;
516 dput(dentry);
517#ifdef CONFIG_NFSD_V3
518 fhp->fh_pre_saved = 0;
519 fhp->fh_post_saved = 0;
520#endif
521 nfsd_nr_put++;
522 }
523 if (exp) {
NeilBrownbaab9352006-03-27 01:15:09 -0800524 cache_put(&exp->h, &svc_export_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 fhp->fh_export = NULL;
526 }
527 return;
528}
529
530/*
531 * Shorthand for dprintk()'s
532 */
533char * SVCFH_fmt(struct svc_fh *fhp)
534{
535 struct knfsd_fh *fh = &fhp->fh_handle;
536
537 static char buf[80];
538 sprintf(buf, "%d: %08x %08x %08x %08x %08x %08x",
539 fh->fh_size,
540 fh->fh_base.fh_pad[0],
541 fh->fh_base.fh_pad[1],
542 fh->fh_base.fh_pad[2],
543 fh->fh_base.fh_pad[3],
544 fh->fh_base.fh_pad[4],
545 fh->fh_base.fh_pad[5]);
546 return buf;
547}
NeilBrownaf6a4e22007-02-14 00:33:12 -0800548
549enum fsid_source fsid_source(struct svc_fh *fhp)
550{
551 if (fhp->fh_handle.fh_version != 1)
552 return FSIDSOURCE_DEV;
553 switch(fhp->fh_handle.fh_fsid_type) {
554 case FSID_DEV:
555 case FSID_ENCODE_DEV:
556 case FSID_MAJOR_MINOR:
557 return FSIDSOURCE_DEV;
558 case FSID_NUM:
559 return FSIDSOURCE_FSID;
560 default:
561 if (fhp->fh_export->ex_flags & NFSEXP_FSID)
562 return FSIDSOURCE_FSID;
563 else
564 return FSIDSOURCE_UUID;
565 }
566}