blob: 951938d6c495c4536b6a988fd628460c4b18494a [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
Christoph Hellwiga5694252007-07-17 04:04:28 -070012#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Andy Adamson32c1eb02007-07-17 04:04:48 -070014#include <linux/sunrpc/svcauth_gss.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020015#include "nfsd.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050016#include "vfs.h"
J. Bruce Fields2e8138a2007-11-15 17:05:43 -050017#include "auth.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#define NFSDDBG_FACILITY NFSDDBG_FH
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022/*
23 * our acceptability function.
24 * if NOSUBTREECHECK, accept anything
25 * if not, require that we can walk up to exp->ex_dentry
26 * doing some checks on the 'x' bits
27 */
28static int nfsd_acceptable(void *expv, struct dentry *dentry)
29{
30 struct svc_export *exp = expv;
31 int rv;
32 struct dentry *tdentry;
33 struct dentry *parent;
34
35 if (exp->ex_flags & NFSEXP_NOSUBTREECHECK)
36 return 1;
37
38 tdentry = dget(dentry);
Jan Blunck54775492008-02-14 19:38:39 -080039 while (tdentry != exp->ex_path.dentry && !IS_ROOT(tdentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 /* make sure parents give x permission to user */
41 int err;
42 parent = dget_parent(tdentry);
Al Virof419a2e2008-07-22 00:07:17 -040043 err = inode_permission(parent->d_inode, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 if (err < 0) {
45 dput(parent);
46 break;
47 }
48 dput(tdentry);
49 tdentry = parent;
50 }
Jan Blunck54775492008-02-14 19:38:39 -080051 if (tdentry != exp->ex_path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 dprintk("nfsd_acceptable failed at %p %s\n", tdentry, tdentry->d_name.name);
Jan Blunck54775492008-02-14 19:38:39 -080053 rv = (tdentry == exp->ex_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 dput(tdentry);
55 return rv;
56}
57
58/* Type check. The correct error return for type mismatches does not seem to be
59 * generally agreed upon. SunOS seems to use EISDIR if file isn't S_IFREG; a
60 * comment in the NFSv3 spec says this is incorrect (implementation notes for
61 * the write call).
62 */
Al Viro83b11342006-10-19 23:28:55 -070063static inline __be32
Linus Torvalds1da177e2005-04-16 15:20:36 -070064nfsd_mode_check(struct svc_rqst *rqstp, umode_t mode, int type)
65{
66 /* Type can be negative when creating hardlinks - not to a dir */
67 if (type > 0 && (mode & S_IFMT) != type) {
68 if (rqstp->rq_vers == 4 && (mode & S_IFMT) == S_IFLNK)
69 return nfserr_symlink;
70 else if (type == S_IFDIR)
71 return nfserr_notdir;
72 else if ((mode & S_IFMT) == S_IFDIR)
73 return nfserr_isdir;
74 else
75 return nfserr_inval;
76 }
77 if (type < 0 && (mode & S_IFMT) == -type) {
78 if (rqstp->rq_vers == 4 && (mode & S_IFMT) == S_IFLNK)
79 return nfserr_symlink;
80 else if (type == -S_IFDIR)
81 return nfserr_isdir;
82 else
83 return nfserr_notdir;
84 }
85 return 0;
86}
87
J. Bruce Fields6fa02832007-11-12 16:05:03 -050088static __be32 nfsd_setuser_and_check_port(struct svc_rqst *rqstp,
89 struct svc_export *exp)
90{
J. Bruce Fields12045a6e2009-12-08 18:15:52 -050091 int flags = nfsexp_flags(rqstp, exp);
92
J. Bruce Fields6fa02832007-11-12 16:05:03 -050093 /* Check if the request originated from a secure port. */
J. Bruce Fields12045a6e2009-12-08 18:15:52 -050094 if (!rqstp->rq_secure && (flags & NFSEXP_INSECURE_PORT)) {
Pavel Emelyanov5216a8e2008-02-21 10:57:45 +030095 RPC_IFDEBUG(char buf[RPC_MAX_ADDRBUFLEN]);
J. Bruce Fields6fa02832007-11-12 16:05:03 -050096 dprintk(KERN_WARNING
97 "nfsd: request from insecure port %s!\n",
98 svc_print_addr(rqstp, buf, sizeof(buf)));
99 return nfserr_perm;
100 }
101
102 /* Set user creds for this exportpoint */
103 return nfserrno(nfsd_setuser(rqstp, exp));
104}
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/*
J. Bruce Fields03550fa2008-03-14 17:51:12 -0400107 * Use the given filehandle to look up the corresponding export and
108 * dentry. On success, the results are used to set fh_export and
109 * fh_dentry.
110 */
111static __be32 nfsd_set_fh_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp)
112{
113 struct knfsd_fh *fh = &fhp->fh_handle;
114 struct fid *fid = NULL, sfid;
115 struct svc_export *exp;
116 struct dentry *dentry;
117 int fileid_type;
118 int data_left = fh->fh_size/4;
119 __be32 error;
120
121 error = nfserr_stale;
122 if (rqstp->rq_vers > 2)
123 error = nfserr_badhandle;
124 if (rqstp->rq_vers == 4 && fh->fh_size == 0)
125 return nfserr_nofilehandle;
126
127 if (fh->fh_version == 1) {
128 int len;
129
130 if (--data_left < 0)
131 return error;
132 if (fh->fh_auth_type != 0)
133 return error;
134 len = key_len(fh->fh_fsid_type) / 4;
135 if (len == 0)
136 return error;
137 if (fh->fh_fsid_type == FSID_MAJOR_MINOR) {
138 /* deprecated, convert to type 3 */
139 len = key_len(FSID_ENCODE_DEV)/4;
140 fh->fh_fsid_type = FSID_ENCODE_DEV;
141 fh->fh_fsid[0] = new_encode_dev(MKDEV(ntohl(fh->fh_fsid[0]), ntohl(fh->fh_fsid[1])));
142 fh->fh_fsid[1] = fh->fh_fsid[2];
143 }
144 data_left -= len;
145 if (data_left < 0)
146 return error;
147 exp = rqst_exp_find(rqstp, fh->fh_fsid_type, fh->fh_auth);
148 fid = (struct fid *)(fh->fh_auth + len);
149 } else {
150 __u32 tfh[2];
151 dev_t xdev;
152 ino_t xino;
153
154 if (fh->fh_size != NFS_FHSIZE)
155 return error;
156 /* assume old filehandle format */
157 xdev = old_decode_dev(fh->ofh_xdev);
158 xino = u32_to_ino_t(fh->ofh_xino);
159 mk_fsid(FSID_DEV, tfh, xdev, xino, 0, NULL);
160 exp = rqst_exp_find(rqstp, FSID_DEV, tfh);
161 }
162
163 error = nfserr_stale;
164 if (PTR_ERR(exp) == -ENOENT)
165 return error;
166
167 if (IS_ERR(exp))
168 return nfserrno(PTR_ERR(exp));
169
Neil Brown496d6c32008-05-08 13:03:09 +1000170 if (exp->ex_flags & NFSEXP_NOSUBTREECHECK) {
171 /* Elevate privileges so that the lack of 'r' or 'x'
172 * permission on some parent directory will
173 * not stop exportfs_decode_fh from being able
174 * to reconnect a directory into the dentry cache.
175 * The same problem can affect "SUBTREECHECK" exports,
176 * but as nfsd_acceptable depends on correct
177 * access control settings being in effect, we cannot
178 * fix that case easily.
179 */
David Howellsd84f4f92008-11-14 10:39:23 +1100180 struct cred *new = prepare_creds();
181 if (!new)
182 return nfserrno(-ENOMEM);
183 new->cap_effective =
184 cap_raise_nfsd_set(new->cap_effective,
185 new->cap_permitted);
186 put_cred(override_creds(new));
187 put_cred(new);
Neil Brown496d6c32008-05-08 13:03:09 +1000188 } else {
189 error = nfsd_setuser_and_check_port(rqstp, exp);
190 if (error)
191 goto out;
192 }
J. Bruce Fields03550fa2008-03-14 17:51:12 -0400193
194 /*
195 * Look up the dentry using the NFS file handle.
196 */
197 error = nfserr_stale;
198 if (rqstp->rq_vers > 2)
199 error = nfserr_badhandle;
200
201 if (fh->fh_version != 1) {
202 sfid.i32.ino = fh->ofh_ino;
203 sfid.i32.gen = fh->ofh_generation;
204 sfid.i32.parent_ino = fh->ofh_dirino;
205 fid = &sfid;
206 data_left = 3;
207 if (fh->ofh_dirino == 0)
208 fileid_type = FILEID_INO32_GEN;
209 else
210 fileid_type = FILEID_INO32_GEN_PARENT;
211 } else
212 fileid_type = fh->fh_fileid_type;
213
214 if (fileid_type == FILEID_ROOT)
215 dentry = dget(exp->ex_path.dentry);
216 else {
217 dentry = exportfs_decode_fh(exp->ex_path.mnt, fid,
218 data_left, fileid_type,
219 nfsd_acceptable, exp);
220 }
221 if (dentry == NULL)
222 goto out;
223 if (IS_ERR(dentry)) {
224 if (PTR_ERR(dentry) != -EINVAL)
225 error = nfserrno(PTR_ERR(dentry));
226 goto out;
227 }
228
229 if (S_ISDIR(dentry->d_inode->i_mode) &&
230 (dentry->d_flags & DCACHE_DISCONNECTED)) {
231 printk("nfsd: find_fh_dentry returned a DISCONNECTED directory: %s/%s\n",
232 dentry->d_parent->d_name.name, dentry->d_name.name);
233 }
234
235 fhp->fh_dentry = dentry;
236 fhp->fh_export = exp;
J. Bruce Fields03550fa2008-03-14 17:51:12 -0400237 return 0;
238out:
239 exp_put(exp);
240 return error;
241}
242
J. Bruce Fieldsb3d476762008-10-20 13:01:59 -0400243/**
244 * fh_verify - filehandle lookup and access checking
245 * @rqstp: pointer to current rpc request
246 * @fhp: filehandle to be verified
247 * @type: expected type of object pointed to by filehandle
248 * @access: type of access needed to object
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 *
J. Bruce Fieldsb3d476762008-10-20 13:01:59 -0400250 * Look up a dentry from the on-the-wire filehandle, check the client's
251 * access to the export, and set the current task's credentials.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 *
J. Bruce Fieldsb3d476762008-10-20 13:01:59 -0400253 * Regardless of success or failure of fh_verify(), fh_put() should be
254 * called on @fhp when the caller is finished with the filehandle.
255 *
256 * fh_verify() may be called multiple times on a given filehandle, for
257 * example, when processing an NFSv4 compound. The first call will look
258 * up a dentry using the on-the-wire filehandle. Subsequent calls will
259 * skip the lookup and just perform the other checks and possibly change
260 * the current task's credentials.
261 *
262 * @type specifies the type of object expected using one of the S_IF*
263 * constants defined in include/linux/stat.h. The caller may use zero
264 * to indicate that it doesn't care, or a negative integer to indicate
265 * that it expects something not of the given type.
266 *
267 * @access is formed from the NFSD_MAY_* constants defined in
268 * include/linux/nfsd/nfsd.h.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 */
Al Viro83b11342006-10-19 23:28:55 -0700270__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271fh_verify(struct svc_rqst *rqstp, struct svc_fh *fhp, int type, int access)
272{
J. Bruce Fields03550fa2008-03-14 17:51:12 -0400273 struct svc_export *exp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 struct dentry *dentry;
J. Bruce Fields03550fa2008-03-14 17:51:12 -0400275 __be32 error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 dprintk("nfsd: fh_verify(%s)\n", SVCFH_fmt(fhp));
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (!fhp->fh_dentry) {
J. Bruce Fields03550fa2008-03-14 17:51:12 -0400280 error = nfsd_set_fh_dentry(rqstp, fhp);
NeilBrownd1bbf142006-07-30 03:03:16 -0700281 if (error)
282 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
J. Bruce Fields864f0f62009-11-25 17:42:05 -0500284 dentry = fhp->fh_dentry;
285 exp = fhp->fh_export;
286 /*
287 * We still have to do all these permission checks, even when
288 * fh_dentry is already set:
289 * - fh_verify may be called multiple times with different
290 * "access" arguments (e.g. nfsd_proc_create calls
291 * fh_verify(...,NFSD_MAY_EXEC) first, then later (in
292 * nfsd_create) calls fh_verify(...,NFSD_MAY_CREATE).
293 * - in the NFSv4 case, the filehandle may have been filled
294 * in by fh_compose, and given a dentry, but further
295 * compound operations performed with that filehandle
296 * still need permissions checks. In the worst case, a
297 * mountpoint crossing may have changed the export
298 * options, and we may now need to use a different uid
299 * (for example, if different id-squashing options are in
300 * effect on the new filesystem).
301 */
302 error = nfsd_setuser_and_check_port(rqstp, exp);
303 if (error)
304 goto out;
J. Bruce Fields7fc90ec2006-06-30 01:56:14 -0700305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 error = nfsd_mode_check(rqstp, dentry->d_inode->i_mode, type);
307 if (error)
308 goto out;
309
J. Bruce Fields04716e62008-08-07 13:00:20 -0400310 /*
311 * pseudoflavor restrictions are not enforced on NLM,
312 * which clients virtually always use auth_sys for,
313 * even while using RPCSEC_GSS for NFS.
314 */
315 if (access & NFSD_MAY_LOCK)
316 goto skip_pseudoflavor_check;
317 /*
318 * Clients may expect to be able to use auth_sys during mount,
319 * even if they use gss for everything else; see section 2.3.2
320 * of rfc 2623.
321 */
322 if (access & NFSD_MAY_BYPASS_GSS_ON_ROOT
323 && exp->ex_path.dentry == dentry)
324 goto skip_pseudoflavor_check;
Andy Adamson32c1eb02007-07-17 04:04:48 -0700325
J. Bruce Fields04716e62008-08-07 13:00:20 -0400326 error = check_nfsd_access(exp, rqstp);
327 if (error)
328 goto out;
329
330skip_pseudoflavor_check:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 /* Finally, check access permissions. */
J. Bruce Fields0ec757d2007-07-17 04:04:48 -0700332 error = nfsd_permission(rqstp, exp, dentry, access);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 if (error) {
NeilBrown34e9a632007-01-29 13:19:52 -0800335 dprintk("fh_verify: %s/%s permission failure, "
336 "acc=%x, error=%d\n",
337 dentry->d_parent->d_name.name,
338 dentry->d_name.name,
Al Virofc2dd2e2007-02-01 13:52:43 +0000339 access, ntohl(error));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (error == nfserr_stale)
343 nfsdstats.fh_stale++;
344 return error;
345}
346
347
348/*
349 * Compose a file handle for an NFS reply.
350 *
351 * Note that when first composed, the dentry may not yet have
352 * an inode. In this case a call to fh_update should be made
353 * before the fh goes out on the wire ...
354 */
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700355static void _fh_update(struct svc_fh *fhp, struct svc_export *exp,
356 struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Jan Blunck54775492008-02-14 19:38:39 -0800358 if (dentry != exp->ex_path.dentry) {
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700359 struct fid *fid = (struct fid *)
360 (fhp->fh_handle.fh_auth + fhp->fh_handle.fh_size/4 - 1);
361 int maxsize = (fhp->fh_maxsize - fhp->fh_handle.fh_size)/4;
362 int subtreecheck = !(exp->ex_flags & NFSEXP_NOSUBTREECHECK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700364 fhp->fh_handle.fh_fileid_type =
365 exportfs_encode_fh(dentry, fid, &maxsize, subtreecheck);
366 fhp->fh_handle.fh_size += maxsize * 4;
367 } else {
368 fhp->fh_handle.fh_fileid_type = FILEID_ROOT;
369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370}
371
372/*
373 * for composing old style file handles
374 */
375static inline void _fh_update_old(struct dentry *dentry,
376 struct svc_export *exp,
377 struct knfsd_fh *fh)
378{
379 fh->ofh_ino = ino_t_to_u32(dentry->d_inode->i_ino);
380 fh->ofh_generation = dentry->d_inode->i_generation;
381 if (S_ISDIR(dentry->d_inode->i_mode) ||
382 (exp->ex_flags & NFSEXP_NOSUBTREECHECK))
383 fh->ofh_dirino = 0;
384}
385
J. Bruce Fields8e498752009-09-02 19:31:32 -0400386static bool is_root_export(struct svc_export *exp)
387{
388 return exp->ex_path.dentry == exp->ex_path.dentry->d_sb->s_root;
389}
390
391static struct super_block *exp_sb(struct svc_export *exp)
392{
393 return exp->ex_path.dentry->d_inode->i_sb;
394}
395
396static bool fsid_type_ok_for_exp(u8 fsid_type, struct svc_export *exp)
397{
398 switch (fsid_type) {
399 case FSID_DEV:
400 if (!old_valid_dev(exp_sb(exp)->s_dev))
401 return 0;
402 /* FALL THROUGH */
403 case FSID_MAJOR_MINOR:
404 case FSID_ENCODE_DEV:
405 return exp_sb(exp)->s_type->fs_flags & FS_REQUIRES_DEV;
406 case FSID_NUM:
407 return exp->ex_flags & NFSEXP_FSID;
408 case FSID_UUID8:
409 case FSID_UUID16:
410 if (!is_root_export(exp))
411 return 0;
412 /* fall through */
413 case FSID_UUID4_INUM:
414 case FSID_UUID16_INUM:
415 return exp->ex_uuid != NULL;
416 }
417 return 1;
418}
419
J. Bruce Fieldsbc6c53d2009-09-02 19:50:40 -0400420
421static void set_version_and_fsid_type(struct svc_fh *fhp, struct svc_export *exp, struct svc_fh *ref_fh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
NeilBrownb41eeef2007-05-09 02:34:57 -0700423 u8 version;
J. Bruce Fieldsbc6c53d2009-09-02 19:50:40 -0400424 u8 fsid_type;
425retry:
NeilBrownb41eeef2007-05-09 02:34:57 -0700426 version = 1;
NeilBrown7e405362006-06-30 01:56:12 -0700427 if (ref_fh && ref_fh->fh_export == exp) {
NeilBrown982aedf2007-02-14 00:33:11 -0800428 version = ref_fh->fh_handle.fh_version;
NeilBrownb41eeef2007-05-09 02:34:57 -0700429 fsid_type = ref_fh->fh_handle.fh_fsid_type;
430
NeilBrownb41eeef2007-05-09 02:34:57 -0700431 ref_fh = NULL;
432
433 switch (version) {
434 case 0xca:
NeilBrownaf6a4e22007-02-14 00:33:12 -0800435 fsid_type = FSID_DEV;
NeilBrownb41eeef2007-05-09 02:34:57 -0700436 break;
437 case 1:
438 break;
439 default:
440 goto retry;
441 }
442
J. Bruce Fields8e498752009-09-02 19:31:32 -0400443 /*
444 * As the fsid -> filesystem mapping was guided by
445 * user-space, there is no guarantee that the filesystem
446 * actually supports that fsid type. If it doesn't we
447 * loop around again without ref_fh set.
NeilBrown982aedf2007-02-14 00:33:11 -0800448 */
J. Bruce Fields8e498752009-09-02 19:31:32 -0400449 if (!fsid_type_ok_for_exp(fsid_type, exp))
450 goto retry;
Steve Dickson30fa8c02009-01-07 16:54:30 -0500451 } else if (exp->ex_flags & NFSEXP_FSID) {
452 fsid_type = FSID_NUM;
NeilBrownaf6a4e22007-02-14 00:33:12 -0800453 } else if (exp->ex_uuid) {
454 if (fhp->fh_maxsize >= 64) {
J. Bruce Fields8e498752009-09-02 19:31:32 -0400455 if (is_root_export(exp))
NeilBrownaf6a4e22007-02-14 00:33:12 -0800456 fsid_type = FSID_UUID16;
457 else
458 fsid_type = FSID_UUID16_INUM;
459 } else {
J. Bruce Fields8e498752009-09-02 19:31:32 -0400460 if (is_root_export(exp))
NeilBrownaf6a4e22007-02-14 00:33:12 -0800461 fsid_type = FSID_UUID8;
462 else
463 fsid_type = FSID_UUID4_INUM;
464 }
J. Bruce Fieldsbc6c53d2009-09-02 19:50:40 -0400465 } else if (!old_valid_dev(exp_sb(exp)->s_dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 /* for newer device numbers, we must use a newer fsid format */
NeilBrownaf6a4e22007-02-14 00:33:12 -0800467 fsid_type = FSID_ENCODE_DEV;
NeilBrown982aedf2007-02-14 00:33:11 -0800468 else
NeilBrownaf6a4e22007-02-14 00:33:12 -0800469 fsid_type = FSID_DEV;
J. Bruce Fieldsbc6c53d2009-09-02 19:50:40 -0400470 fhp->fh_handle.fh_version = version;
471 if (version)
472 fhp->fh_handle.fh_fsid_type = fsid_type;
473}
474
475__be32
476fh_compose(struct svc_fh *fhp, struct svc_export *exp, struct dentry *dentry,
477 struct svc_fh *ref_fh)
478{
479 /* ref_fh is a reference file handle.
480 * if it is non-null and for the same filesystem, then we should compose
481 * a filehandle which is of the same version, where possible.
482 * Currently, that means that if ref_fh->fh_handle.fh_version == 0xca
483 * Then create a 32byte filehandle using nfs_fhbase_old
484 *
485 */
486
487 struct inode * inode = dentry->d_inode;
488 struct dentry *parent = dentry->d_parent;
489 __u32 *datap;
490 dev_t ex_dev = exp_sb(exp)->s_dev;
491
492 dprintk("nfsd: fh_compose(exp %02x:%02x/%ld %s/%s, ino=%ld)\n",
493 MAJOR(ex_dev), MINOR(ex_dev),
494 (long) exp->ex_path.dentry->d_inode->i_ino,
495 parent->d_name.name, dentry->d_name.name,
496 (inode ? inode->i_ino : 0));
497
498 /* Choose filehandle version and fsid type based on
499 * the reference filehandle (if it is in the same export)
500 * or the export options.
501 */
502 set_version_and_fsid_type(fhp, exp, ref_fh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504 if (ref_fh == fhp)
505 fh_put(ref_fh);
506
507 if (fhp->fh_locked || fhp->fh_dentry) {
508 printk(KERN_ERR "fh_compose: fh %s/%s not initialized!\n",
NeilBrown982aedf2007-02-14 00:33:11 -0800509 parent->d_name.name, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
511 if (fhp->fh_maxsize < NFS_FHSIZE)
512 printk(KERN_ERR "fh_compose: called with maxsize %d! %s/%s\n",
NeilBrown982aedf2007-02-14 00:33:11 -0800513 fhp->fh_maxsize,
514 parent->d_name.name, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 fhp->fh_dentry = dget(dentry); /* our internal copy */
517 fhp->fh_export = exp;
518 cache_get(&exp->h);
519
J. Bruce Fieldsbc6c53d2009-09-02 19:50:40 -0400520 if (fhp->fh_handle.fh_version == 0xca) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 /* old style filehandle please */
522 memset(&fhp->fh_handle.fh_base, 0, NFS_FHSIZE);
523 fhp->fh_handle.fh_size = NFS_FHSIZE;
524 fhp->fh_handle.ofh_dcookie = 0xfeebbaca;
525 fhp->fh_handle.ofh_dev = old_encode_dev(ex_dev);
526 fhp->fh_handle.ofh_xdev = fhp->fh_handle.ofh_dev;
NeilBrown982aedf2007-02-14 00:33:11 -0800527 fhp->fh_handle.ofh_xino =
Jan Blunck54775492008-02-14 19:38:39 -0800528 ino_t_to_u32(exp->ex_path.dentry->d_inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 fhp->fh_handle.ofh_dirino = ino_t_to_u32(parent_ino(dentry));
530 if (inode)
531 _fh_update_old(dentry, exp, &fhp->fh_handle);
532 } else {
533 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 fhp->fh_handle.fh_auth_type = 0;
535 datap = fhp->fh_handle.fh_auth+0;
J. Bruce Fieldsbc6c53d2009-09-02 19:50:40 -0400536 mk_fsid(fhp->fh_handle.fh_fsid_type, datap, ex_dev,
Jan Blunck54775492008-02-14 19:38:39 -0800537 exp->ex_path.dentry->d_inode->i_ino,
NeilBrownaf6a4e22007-02-14 00:33:12 -0800538 exp->ex_fsid, exp->ex_uuid);
539
J. Bruce Fieldsbc6c53d2009-09-02 19:50:40 -0400540 len = key_len(fhp->fh_handle.fh_fsid_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 datap += len/4;
542 fhp->fh_handle.fh_size = 4 + len;
543
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700544 if (inode)
545 _fh_update(fhp, exp, dentry);
J. Bruce Fields1be10a82009-09-04 11:59:32 -0400546 if (fhp->fh_handle.fh_fileid_type == 255) {
547 fh_put(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return nfserr_opnotsupp;
J. Bruce Fields1be10a82009-09-04 11:59:32 -0400549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 }
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return 0;
553}
554
555/*
556 * Update file handle information after changing a dentry.
557 * This is only called by nfsd_create, nfsd_create_v3 and nfsd_proc_create
558 */
Al Viro83b11342006-10-19 23:28:55 -0700559__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560fh_update(struct svc_fh *fhp)
561{
562 struct dentry *dentry;
NeilBrown982aedf2007-02-14 00:33:11 -0800563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (!fhp->fh_dentry)
565 goto out_bad;
566
567 dentry = fhp->fh_dentry;
568 if (!dentry->d_inode)
569 goto out_negative;
570 if (fhp->fh_handle.fh_version != 1) {
571 _fh_update_old(dentry, fhp->fh_export, &fhp->fh_handle);
572 } else {
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700573 if (fhp->fh_handle.fh_fileid_type != FILEID_ROOT)
NeilBrown4c9608b2006-06-30 01:56:11 -0700574 goto out;
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700575
576 _fh_update(fhp, fhp->fh_export, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (fhp->fh_handle.fh_fileid_type == 255)
578 return nfserr_opnotsupp;
579 }
580out:
581 return 0;
582
583out_bad:
584 printk(KERN_ERR "fh_update: fh not verified!\n");
585 goto out;
586out_negative:
587 printk(KERN_ERR "fh_update: %s/%s still negative!\n",
588 dentry->d_parent->d_name.name, dentry->d_name.name);
589 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
592/*
593 * Release a file handle.
594 */
595void
596fh_put(struct svc_fh *fhp)
597{
598 struct dentry * dentry = fhp->fh_dentry;
599 struct svc_export * exp = fhp->fh_export;
600 if (dentry) {
601 fh_unlock(fhp);
602 fhp->fh_dentry = NULL;
603 dput(dentry);
604#ifdef CONFIG_NFSD_V3
605 fhp->fh_pre_saved = 0;
606 fhp->fh_post_saved = 0;
607#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609 if (exp) {
NeilBrownbaab9352006-03-27 01:15:09 -0800610 cache_put(&exp->h, &svc_export_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 fhp->fh_export = NULL;
612 }
613 return;
614}
615
616/*
617 * Shorthand for dprintk()'s
618 */
619char * SVCFH_fmt(struct svc_fh *fhp)
620{
621 struct knfsd_fh *fh = &fhp->fh_handle;
622
623 static char buf[80];
624 sprintf(buf, "%d: %08x %08x %08x %08x %08x %08x",
625 fh->fh_size,
626 fh->fh_base.fh_pad[0],
627 fh->fh_base.fh_pad[1],
628 fh->fh_base.fh_pad[2],
629 fh->fh_base.fh_pad[3],
630 fh->fh_base.fh_pad[4],
631 fh->fh_base.fh_pad[5]);
632 return buf;
633}
NeilBrownaf6a4e22007-02-14 00:33:12 -0800634
635enum fsid_source fsid_source(struct svc_fh *fhp)
636{
637 if (fhp->fh_handle.fh_version != 1)
638 return FSIDSOURCE_DEV;
639 switch(fhp->fh_handle.fh_fsid_type) {
640 case FSID_DEV:
641 case FSID_ENCODE_DEV:
642 case FSID_MAJOR_MINOR:
J. Bruce Fields8e498752009-09-02 19:31:32 -0400643 if (exp_sb(fhp->fh_export)->s_type->fs_flags & FS_REQUIRES_DEV)
Neil Brownb8da0d12007-09-05 17:22:13 -0400644 return FSIDSOURCE_DEV;
645 break;
NeilBrownaf6a4e22007-02-14 00:33:12 -0800646 case FSID_NUM:
NeilBrownaf6a4e22007-02-14 00:33:12 -0800647 if (fhp->fh_export->ex_flags & NFSEXP_FSID)
648 return FSIDSOURCE_FSID;
Neil Brownb8da0d12007-09-05 17:22:13 -0400649 break;
650 default:
651 break;
NeilBrownaf6a4e22007-02-14 00:33:12 -0800652 }
Neil Brownb8da0d12007-09-05 17:22:13 -0400653 /* either a UUID type filehandle, or the filehandle doesn't
654 * match the export.
655 */
656 if (fhp->fh_export->ex_flags & NFSEXP_FSID)
657 return FSIDSOURCE_FSID;
658 if (fhp->fh_export->ex_uuid)
659 return FSIDSOURCE_UUID;
660 return FSIDSOURCE_DEV;
NeilBrownaf6a4e22007-02-14 00:33:12 -0800661}