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