| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *  Copyright (c) 2001 The Regents of the University of Michigan. | 
					
						
							|  |  |  |  *  All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Kendrick Smith <kmsmith@umich.edu> | 
					
						
							|  |  |  |  *  Andy Adamson <andros@umich.edu> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Redistribution and use in source and binary forms, with or without | 
					
						
							|  |  |  |  *  modification, are permitted provided that the following conditions | 
					
						
							|  |  |  |  *  are met: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  1. Redistributions of source code must retain the above copyright | 
					
						
							|  |  |  |  *     notice, this list of conditions and the following disclaimer. | 
					
						
							|  |  |  |  *  2. Redistributions in binary form must reproduce the above copyright | 
					
						
							|  |  |  |  *     notice, this list of conditions and the following disclaimer in the | 
					
						
							|  |  |  |  *     documentation and/or other materials provided with the distribution. | 
					
						
							|  |  |  |  *  3. Neither the name of the University nor the names of its | 
					
						
							|  |  |  |  *     contributors may be used to endorse or promote products derived | 
					
						
							|  |  |  |  *     from this software without specific prior written permission. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED | 
					
						
							|  |  |  |  *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | 
					
						
							|  |  |  |  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
					
						
							|  |  |  |  *  DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE | 
					
						
							|  |  |  |  *  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | 
					
						
							|  |  |  |  *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | 
					
						
							|  |  |  |  *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR | 
					
						
							|  |  |  |  *  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | 
					
						
							|  |  |  |  *  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | 
					
						
							|  |  |  |  *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 
					
						
							|  |  |  |  *  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/sunrpc/clnt.h>
 | 
					
						
							| 
									
										
										
										
											2010-03-03 14:52:55 -05:00
										 |  |  | #include <linux/sunrpc/svc_xprt.h>
 | 
					
						
							| 
									
										
											  
											
												include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files.  percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed.  Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability.  As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
  http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
  only the necessary includes are there.  ie. if only gfp is used,
  gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
  blocks and try to put the new include such that its order conforms
  to its surrounding.  It's put in the include block which contains
  core kernel includes, in the same order that the rest are ordered -
  alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
  doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
  because the file doesn't have fitting include block), it prints out
  an error message indicating which .h file needs to be added to the
  file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
   over 4000 files, deleting around 700 includes and adding ~480 gfp.h
   and ~3000 slab.h inclusions.  The script emitted errors for ~400
   files.
2. Each error was manually checked.  Some didn't need the inclusion,
   some needed manual addition while adding it to implementation .h or
   embedding .c file was more appropriate for others.  This step added
   inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
   from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
   e.g. lib/decompress_*.c used malloc/free() wrappers around slab
   APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
   editing them as sprinkling gfp.h and slab.h inclusions around .h
   files could easily lead to inclusion dependency hell.  Most gfp.h
   inclusion directives were ignored as stuff from gfp.h was usually
   wildly available and often used in preprocessor macros.  Each
   slab.h inclusion directive was examined and added manually as
   necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
   were fixed.  CONFIG_GCOV_KERNEL was turned off for all tests (as my
   distributed build env didn't work with gcov compiles) and a few
   more options had to be turned off depending on archs to make things
   build (like ipr on powerpc/64 which failed due to missing writeq).
   * x86 and x86_64 UP and SMP allmodconfig and a custom test config.
   * powerpc and powerpc64 SMP allmodconfig
   * sparc and sparc64 SMP allmodconfig
   * ia64 SMP allmodconfig
   * s390 SMP allmodconfig
   * alpha SMP allmodconfig
   * um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
   a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
											
										 
											2010-03-24 17:04:11 +09:00
										 |  |  | #include <linux/slab.h>
 | 
					
						
							| 
									
										
										
										
											2009-12-03 20:30:56 +02:00
										 |  |  | #include "nfsd.h"
 | 
					
						
							|  |  |  | #include "state.h"
 | 
					
						
							| 
									
										
										
										
											2012-11-27 14:11:44 +03:00
										 |  |  | #include "netns.h"
 | 
					
						
							| 
									
										
										
										
											2013-04-09 11:34:36 -04:00
										 |  |  | #include "xdr4cb.h"
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define NFSDDBG_FACILITY                NFSDDBG_PROC
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-19 19:12:58 -07:00
										 |  |  | static void nfsd4_mark_cb_fault(struct nfs4_client *, int reason); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #define NFSPROC4_CB_NULL 0
 | 
					
						
							|  |  |  | #define NFSPROC4_CB_COMPOUND 1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Index of predefined Linux callback client operations */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum { | 
					
						
							| 
									
										
										
										
											2009-09-10 12:25:46 +03:00
										 |  |  | 	NFSPROC4_CLNT_CB_NULL = 0, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	NFSPROC4_CLNT_CB_RECALL, | 
					
						
							| 
									
										
										
										
											2009-09-10 12:25:59 +03:00
										 |  |  | 	NFSPROC4_CLNT_CB_SEQUENCE, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct nfs4_cb_compound_hdr { | 
					
						
							| 
									
										
										
										
											2009-09-10 12:25:59 +03:00
										 |  |  | 	/* args */ | 
					
						
							|  |  |  | 	u32		ident;	/* minorversion 0 only */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	u32		nops; | 
					
						
							| 
									
										
										
										
											2009-06-16 04:20:50 +03:00
										 |  |  | 	__be32		*nops_p; | 
					
						
							| 
									
										
										
										
											2009-06-16 04:20:53 +03:00
										 |  |  | 	u32		minorversion; | 
					
						
							| 
									
										
										
										
											2009-09-10 12:25:59 +03:00
										 |  |  | 	/* res */ | 
					
						
							|  |  |  | 	int		status; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:32 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Handle decode buffer overflows out-of-line. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void print_overflow_msg(const char *func, const struct xdr_stream *xdr) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:32 +00:00
										 |  |  | 	dprintk("NFS: %s prematurely hit the end of our receive buffer. " | 
					
						
							|  |  |  | 		"Remaining buffer length is %tu words.\n", | 
					
						
							|  |  |  | 		func, xdr->end - xdr->p); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  | static __be32 *xdr_encode_empty_array(__be32 *p) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	*p++ = xdr_zero; | 
					
						
							|  |  |  | 	return p; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Encode/decode NFSv4 CB basic data types | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Basic NFSv4 callback data types are defined in section 15 of RFC | 
					
						
							|  |  |  |  * 3530: "Network File System (NFS) version 4 Protocol" and section | 
					
						
							|  |  |  |  * 20 of RFC 5661: "Network File System (NFS) Version 4 Minor Version | 
					
						
							|  |  |  |  * 1 Protocol" | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  *	nfs_cb_opnum4 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	enum nfs_cb_opnum4 { | 
					
						
							|  |  |  |  *		OP_CB_GETATTR		= 3, | 
					
						
							|  |  |  |  *		  ... | 
					
						
							|  |  |  |  *	}; | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | enum nfs_cb_opnum4 { | 
					
						
							|  |  |  | 	OP_CB_GETATTR			= 3, | 
					
						
							|  |  |  | 	OP_CB_RECALL			= 4, | 
					
						
							|  |  |  | 	OP_CB_LAYOUTRECALL		= 5, | 
					
						
							|  |  |  | 	OP_CB_NOTIFY			= 6, | 
					
						
							|  |  |  | 	OP_CB_PUSH_DELEG		= 7, | 
					
						
							|  |  |  | 	OP_CB_RECALL_ANY		= 8, | 
					
						
							|  |  |  | 	OP_CB_RECALLABLE_OBJ_AVAIL	= 9, | 
					
						
							|  |  |  | 	OP_CB_RECALL_SLOT		= 10, | 
					
						
							|  |  |  | 	OP_CB_SEQUENCE			= 11, | 
					
						
							|  |  |  | 	OP_CB_WANTS_CANCELLED		= 12, | 
					
						
							|  |  |  | 	OP_CB_NOTIFY_LOCK		= 13, | 
					
						
							|  |  |  | 	OP_CB_NOTIFY_DEVICEID		= 14, | 
					
						
							|  |  |  | 	OP_CB_ILLEGAL			= 10044 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void encode_nfs_cb_opnum4(struct xdr_stream *xdr, enum nfs_cb_opnum4 op) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__be32 *p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	p = xdr_reserve_space(xdr, 4); | 
					
						
							|  |  |  | 	*p = cpu_to_be32(op); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * nfs_fh4 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	typedef opaque nfs_fh4<NFS4_FHSIZE>; | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void encode_nfs_fh4(struct xdr_stream *xdr, const struct knfsd_fh *fh) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 length = fh->fh_size; | 
					
						
							|  |  |  | 	__be32 *p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BUG_ON(length > NFS4_FHSIZE); | 
					
						
							|  |  |  | 	p = xdr_reserve_space(xdr, 4 + length); | 
					
						
							|  |  |  | 	xdr_encode_opaque(p, &fh->fh_base, length); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  |  * stateid4 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	struct stateid4 { | 
					
						
							|  |  |  |  *		uint32_t	seqid; | 
					
						
							|  |  |  |  *		opaque		other[12]; | 
					
						
							|  |  |  |  *	}; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  | static void encode_stateid4(struct xdr_stream *xdr, const stateid_t *sid) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__be32 *p; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  | 	p = xdr_reserve_space(xdr, NFS4_STATEID_SIZE); | 
					
						
							|  |  |  | 	*p++ = cpu_to_be32(sid->si_generation); | 
					
						
							|  |  |  | 	xdr_encode_opaque_fixed(p, &sid->si_opaque, NFS4_STATEID_OTHER_SIZE); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * sessionid4 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	typedef opaque sessionid4[NFS4_SESSIONID_SIZE]; | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void encode_sessionid4(struct xdr_stream *xdr, | 
					
						
							|  |  |  | 			      const struct nfsd4_session *session) | 
					
						
							| 
									
										
										
										
											2010-05-25 09:50:23 +03:00
										 |  |  | { | 
					
						
							|  |  |  | 	__be32 *p; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  | 	p = xdr_reserve_space(xdr, NFS4_MAX_SESSIONID_LEN); | 
					
						
							|  |  |  | 	xdr_encode_opaque_fixed(p, session->se_sessionid.data, | 
					
						
							|  |  |  | 					NFS4_MAX_SESSIONID_LEN); | 
					
						
							| 
									
										
										
										
											2010-05-25 09:50:23 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:32 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * nfsstat4 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static const struct { | 
					
						
							|  |  |  | 	int stat; | 
					
						
							|  |  |  | 	int errno; | 
					
						
							|  |  |  | } nfs_cb_errtbl[] = { | 
					
						
							|  |  |  | 	{ NFS4_OK,		0		}, | 
					
						
							|  |  |  | 	{ NFS4ERR_PERM,		-EPERM		}, | 
					
						
							|  |  |  | 	{ NFS4ERR_NOENT,	-ENOENT		}, | 
					
						
							|  |  |  | 	{ NFS4ERR_IO,		-EIO		}, | 
					
						
							|  |  |  | 	{ NFS4ERR_NXIO,		-ENXIO		}, | 
					
						
							|  |  |  | 	{ NFS4ERR_ACCESS,	-EACCES		}, | 
					
						
							|  |  |  | 	{ NFS4ERR_EXIST,	-EEXIST		}, | 
					
						
							|  |  |  | 	{ NFS4ERR_XDEV,		-EXDEV		}, | 
					
						
							|  |  |  | 	{ NFS4ERR_NOTDIR,	-ENOTDIR	}, | 
					
						
							|  |  |  | 	{ NFS4ERR_ISDIR,	-EISDIR		}, | 
					
						
							|  |  |  | 	{ NFS4ERR_INVAL,	-EINVAL		}, | 
					
						
							|  |  |  | 	{ NFS4ERR_FBIG,		-EFBIG		}, | 
					
						
							|  |  |  | 	{ NFS4ERR_NOSPC,	-ENOSPC		}, | 
					
						
							|  |  |  | 	{ NFS4ERR_ROFS,		-EROFS		}, | 
					
						
							|  |  |  | 	{ NFS4ERR_MLINK,	-EMLINK		}, | 
					
						
							|  |  |  | 	{ NFS4ERR_NAMETOOLONG,	-ENAMETOOLONG	}, | 
					
						
							|  |  |  | 	{ NFS4ERR_NOTEMPTY,	-ENOTEMPTY	}, | 
					
						
							|  |  |  | 	{ NFS4ERR_DQUOT,	-EDQUOT		}, | 
					
						
							|  |  |  | 	{ NFS4ERR_STALE,	-ESTALE		}, | 
					
						
							|  |  |  | 	{ NFS4ERR_BADHANDLE,	-EBADHANDLE	}, | 
					
						
							|  |  |  | 	{ NFS4ERR_BAD_COOKIE,	-EBADCOOKIE	}, | 
					
						
							|  |  |  | 	{ NFS4ERR_NOTSUPP,	-ENOTSUPP	}, | 
					
						
							|  |  |  | 	{ NFS4ERR_TOOSMALL,	-ETOOSMALL	}, | 
					
						
							|  |  |  | 	{ NFS4ERR_SERVERFAULT,	-ESERVERFAULT	}, | 
					
						
							|  |  |  | 	{ NFS4ERR_BADTYPE,	-EBADTYPE	}, | 
					
						
							|  |  |  | 	{ NFS4ERR_LOCKED,	-EAGAIN		}, | 
					
						
							|  |  |  | 	{ NFS4ERR_RESOURCE,	-EREMOTEIO	}, | 
					
						
							|  |  |  | 	{ NFS4ERR_SYMLINK,	-ELOOP		}, | 
					
						
							|  |  |  | 	{ NFS4ERR_OP_ILLEGAL,	-EOPNOTSUPP	}, | 
					
						
							|  |  |  | 	{ NFS4ERR_DEADLOCK,	-EDEADLK	}, | 
					
						
							|  |  |  | 	{ -1,			-EIO		} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * If we cannot translate the error, the recovery routines should | 
					
						
							|  |  |  |  * handle it. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Note: remaining NFSv4 error codes have values > 10000, so should | 
					
						
							|  |  |  |  * not conflict with native Linux error codes. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int nfs_cb_stat_to_errno(int status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; nfs_cb_errtbl[i].stat != -1; i++) { | 
					
						
							|  |  |  | 		if (nfs_cb_errtbl[i].stat == status) | 
					
						
							|  |  |  | 			return nfs_cb_errtbl[i].errno; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dprintk("NFSD: Unrecognized NFS CB status value: %u\n", status); | 
					
						
							|  |  |  | 	return -status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int decode_cb_op_status(struct xdr_stream *xdr, enum nfs_opnum4 expected, | 
					
						
							|  |  |  | 			       enum nfsstat4 *status) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__be32 *p; | 
					
						
							|  |  |  | 	u32 op; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	p = xdr_inline_decode(xdr, 4 + 4); | 
					
						
							|  |  |  | 	if (unlikely(p == NULL)) | 
					
						
							|  |  |  | 		goto out_overflow; | 
					
						
							|  |  |  | 	op = be32_to_cpup(p++); | 
					
						
							|  |  |  | 	if (unlikely(op != expected)) | 
					
						
							|  |  |  | 		goto out_unexpected; | 
					
						
							|  |  |  | 	*status = be32_to_cpup(p); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | out_overflow: | 
					
						
							|  |  |  | 	print_overflow_msg(__func__, xdr); | 
					
						
							|  |  |  | 	return -EIO; | 
					
						
							|  |  |  | out_unexpected: | 
					
						
							|  |  |  | 	dprintk("NFSD: Callback server returned operation %d but " | 
					
						
							|  |  |  | 		"we issued a request for %d\n", op, expected); | 
					
						
							|  |  |  | 	return -EIO; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * CB_COMPOUND4args | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	struct CB_COMPOUND4args { | 
					
						
							|  |  |  |  *		utf8str_cs	tag; | 
					
						
							|  |  |  |  *		uint32_t	minorversion; | 
					
						
							|  |  |  |  *		uint32_t	callback_ident; | 
					
						
							|  |  |  |  *		nfs_cb_argop4	argarray<>; | 
					
						
							|  |  |  |  *	}; | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | static void encode_cb_compound4args(struct xdr_stream *xdr, | 
					
						
							|  |  |  | 				    struct nfs4_cb_compound_hdr *hdr) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-10-19 23:29:01 -07:00
										 |  |  | 	__be32 * p; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  | 	p = xdr_reserve_space(xdr, 4 + 4 + 4 + 4); | 
					
						
							|  |  |  | 	p = xdr_encode_empty_array(p);		/* empty tag */ | 
					
						
							|  |  |  | 	*p++ = cpu_to_be32(hdr->minorversion); | 
					
						
							|  |  |  | 	*p++ = cpu_to_be32(hdr->ident); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-16 04:20:50 +03:00
										 |  |  | 	hdr->nops_p = p; | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  | 	*p = cpu_to_be32(hdr->nops);		/* argarray element count */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Update argarray element count | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-06-16 04:20:50 +03:00
										 |  |  | static void encode_cb_nops(struct nfs4_cb_compound_hdr *hdr) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  | 	BUG_ON(hdr->nops > NFS4_MAX_BACK_CHANNEL_OPS); | 
					
						
							|  |  |  | 	*hdr->nops_p = cpu_to_be32(hdr->nops); | 
					
						
							| 
									
										
										
										
											2009-06-16 04:20:50 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:32 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * CB_COMPOUND4res | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	struct CB_COMPOUND4res { | 
					
						
							|  |  |  |  *		nfsstat4	status; | 
					
						
							|  |  |  |  *		utf8str_cs	tag; | 
					
						
							|  |  |  |  *		nfs_cb_resop4	resarray<>; | 
					
						
							|  |  |  |  *	}; | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int decode_cb_compound4res(struct xdr_stream *xdr, | 
					
						
							|  |  |  | 				  struct nfs4_cb_compound_hdr *hdr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 length; | 
					
						
							|  |  |  | 	__be32 *p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	p = xdr_inline_decode(xdr, 4 + 4); | 
					
						
							|  |  |  | 	if (unlikely(p == NULL)) | 
					
						
							|  |  |  | 		goto out_overflow; | 
					
						
							|  |  |  | 	hdr->status = be32_to_cpup(p++); | 
					
						
							|  |  |  | 	/* Ignore the tag */ | 
					
						
							|  |  |  | 	length = be32_to_cpup(p++); | 
					
						
							|  |  |  | 	p = xdr_inline_decode(xdr, length + 4); | 
					
						
							|  |  |  | 	if (unlikely(p == NULL)) | 
					
						
							|  |  |  | 		goto out_overflow; | 
					
						
							|  |  |  | 	hdr->nops = be32_to_cpup(p); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | out_overflow: | 
					
						
							|  |  |  | 	print_overflow_msg(__func__, xdr); | 
					
						
							|  |  |  | 	return -EIO; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * CB_RECALL4args | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	struct CB_RECALL4args { | 
					
						
							|  |  |  |  *		stateid4	stateid; | 
					
						
							|  |  |  |  *		bool		truncate; | 
					
						
							|  |  |  |  *		nfs_fh4		fh; | 
					
						
							|  |  |  |  *	}; | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void encode_cb_recall4args(struct xdr_stream *xdr, | 
					
						
							|  |  |  | 				  const struct nfs4_delegation *dp, | 
					
						
							|  |  |  | 				  struct nfs4_cb_compound_hdr *hdr) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-10-19 23:29:01 -07:00
										 |  |  | 	__be32 *p; | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	encode_nfs_cb_opnum4(xdr, OP_CB_RECALL); | 
					
						
							| 
									
										
										
										
											2011-09-08 12:07:44 -04:00
										 |  |  | 	encode_stateid4(xdr, &dp->dl_stid.sc_stateid); | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	p = xdr_reserve_space(xdr, 4); | 
					
						
							|  |  |  | 	*p++ = xdr_zero;			/* truncate */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	encode_nfs_fh4(xdr, &dp->dl_fh); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-16 04:20:50 +03:00
										 |  |  | 	hdr->nops++; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * CB_SEQUENCE4args | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	struct CB_SEQUENCE4args { | 
					
						
							|  |  |  |  *		sessionid4		csa_sessionid; | 
					
						
							|  |  |  |  *		sequenceid4		csa_sequenceid; | 
					
						
							|  |  |  |  *		slotid4			csa_slotid; | 
					
						
							|  |  |  |  *		slotid4			csa_highest_slotid; | 
					
						
							|  |  |  |  *		bool			csa_cachethis; | 
					
						
							|  |  |  |  *		referring_call_list4	csa_referring_call_lists<>; | 
					
						
							|  |  |  |  *	}; | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void encode_cb_sequence4args(struct xdr_stream *xdr, | 
					
						
							|  |  |  | 				    const struct nfsd4_callback *cb, | 
					
						
							|  |  |  | 				    struct nfs4_cb_compound_hdr *hdr) | 
					
						
							| 
									
										
										
										
											2009-09-10 12:26:51 +03:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  | 	struct nfsd4_session *session = cb->cb_clp->cl_cb_session; | 
					
						
							| 
									
										
										
										
											2009-09-10 12:26:51 +03:00
										 |  |  | 	__be32 *p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (hdr->minorversion == 0) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  | 	encode_nfs_cb_opnum4(xdr, OP_CB_SEQUENCE); | 
					
						
							|  |  |  | 	encode_sessionid4(xdr, session); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	p = xdr_reserve_space(xdr, 4 + 4 + 4 + 4 + 4); | 
					
						
							|  |  |  | 	*p++ = cpu_to_be32(session->se_cb_seq_nr);	/* csa_sequenceid */ | 
					
						
							|  |  |  | 	*p++ = xdr_zero;			/* csa_slotid */ | 
					
						
							|  |  |  | 	*p++ = xdr_zero;			/* csa_highest_slotid */ | 
					
						
							|  |  |  | 	*p++ = xdr_zero;			/* csa_cachethis */ | 
					
						
							|  |  |  | 	xdr_encode_empty_array(p);		/* csa_referring_call_lists */ | 
					
						
							| 
									
										
										
										
											2009-09-10 12:26:51 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	hdr->nops++; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:32 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * CB_SEQUENCE4resok | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	struct CB_SEQUENCE4resok { | 
					
						
							|  |  |  |  *		sessionid4	csr_sessionid; | 
					
						
							|  |  |  |  *		sequenceid4	csr_sequenceid; | 
					
						
							|  |  |  |  *		slotid4		csr_slotid; | 
					
						
							|  |  |  |  *		slotid4		csr_highest_slotid; | 
					
						
							|  |  |  |  *		slotid4		csr_target_highest_slotid; | 
					
						
							|  |  |  |  *	}; | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	union CB_SEQUENCE4res switch (nfsstat4 csr_status) { | 
					
						
							|  |  |  |  *	case NFS4_OK: | 
					
						
							|  |  |  |  *		CB_SEQUENCE4resok	csr_resok4; | 
					
						
							|  |  |  |  *	default: | 
					
						
							|  |  |  |  *		void; | 
					
						
							|  |  |  |  *	}; | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Our current back channel implmentation supports a single backchannel | 
					
						
							|  |  |  |  * with a single slot. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int decode_cb_sequence4resok(struct xdr_stream *xdr, | 
					
						
							|  |  |  | 				    struct nfsd4_callback *cb) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct nfsd4_session *session = cb->cb_clp->cl_cb_session; | 
					
						
							|  |  |  | 	struct nfs4_sessionid id; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 	__be32 *p; | 
					
						
							|  |  |  | 	u32 dummy; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = -ESERVERFAULT; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * If the server returns different values for sessionID, slotID or | 
					
						
							|  |  |  | 	 * sequence number, the server is looney tunes. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2011-02-22 14:43:22 -08:00
										 |  |  | 	p = xdr_inline_decode(xdr, NFS4_MAX_SESSIONID_LEN + 4 + 4 + 4 + 4); | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:32 +00:00
										 |  |  | 	if (unlikely(p == NULL)) | 
					
						
							|  |  |  | 		goto out_overflow; | 
					
						
							|  |  |  | 	memcpy(id.data, p, NFS4_MAX_SESSIONID_LEN); | 
					
						
							|  |  |  | 	if (memcmp(id.data, session->se_sessionid.data, | 
					
						
							|  |  |  | 					NFS4_MAX_SESSIONID_LEN) != 0) { | 
					
						
							|  |  |  | 		dprintk("NFS: %s Invalid session id\n", __func__); | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	p += XDR_QUADLEN(NFS4_MAX_SESSIONID_LEN); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dummy = be32_to_cpup(p++); | 
					
						
							|  |  |  | 	if (dummy != session->se_cb_seq_nr) { | 
					
						
							|  |  |  | 		dprintk("NFS: %s Invalid sequence number\n", __func__); | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dummy = be32_to_cpup(p++); | 
					
						
							|  |  |  | 	if (dummy != 0) { | 
					
						
							|  |  |  | 		dprintk("NFS: %s Invalid slotid\n", __func__); | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * FIXME: process highest slotid and target highest slotid | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	status = 0; | 
					
						
							|  |  |  | out: | 
					
						
							| 
									
										
										
										
											2011-10-19 19:12:58 -07:00
										 |  |  | 	if (status) | 
					
						
							|  |  |  | 		nfsd4_mark_cb_fault(cb->cb_clp, status); | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:32 +00:00
										 |  |  | 	return status; | 
					
						
							|  |  |  | out_overflow: | 
					
						
							|  |  |  | 	print_overflow_msg(__func__, xdr); | 
					
						
							|  |  |  | 	return -EIO; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int decode_cb_sequence4res(struct xdr_stream *xdr, | 
					
						
							|  |  |  | 				  struct nfsd4_callback *cb) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	enum nfsstat4 nfserr; | 
					
						
							|  |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (cb->cb_minorversion == 0) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	status = decode_cb_op_status(xdr, OP_CB_SEQUENCE, &nfserr); | 
					
						
							|  |  |  | 	if (unlikely(status)) | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 	if (unlikely(nfserr != NFS4_OK)) | 
					
						
							|  |  |  | 		goto out_default; | 
					
						
							|  |  |  | 	status = decode_cb_sequence4resok(xdr, cb); | 
					
						
							|  |  |  | out: | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | out_default: | 
					
						
							| 
									
										
										
										
											2011-01-13 11:25:31 +02:00
										 |  |  | 	return nfs_cb_stat_to_errno(nfserr); | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:32 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * NFSv4.0 and NFSv4.1 XDR encode functions | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * NFSv4.0 callback argument types are defined in section 15 of RFC | 
					
						
							|  |  |  |  * 3530: "Network File System (NFS) version 4 Protocol" and section 20 | 
					
						
							|  |  |  |  * of RFC 5661:  "Network File System (NFS) Version 4 Minor Version 1 | 
					
						
							|  |  |  |  * Protocol". | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * NB: Without this zero space reservation, callbacks over krb5p fail | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-12-14 14:59:18 +00:00
										 |  |  | static void nfs4_xdr_enc_cb_null(struct rpc_rqst *req, struct xdr_stream *xdr, | 
					
						
							|  |  |  | 				 void *__unused) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  | 	xdr_reserve_space(xdr, 0); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * 20.2. Operation 4: CB_RECALL - Recall a Delegation | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-12-14 14:59:18 +00:00
										 |  |  | static void nfs4_xdr_enc_cb_recall(struct rpc_rqst *req, struct xdr_stream *xdr, | 
					
						
							|  |  |  | 				   const struct nfsd4_callback *cb) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:22 +00:00
										 |  |  | 	const struct nfs4_delegation *args = cb->cb_op; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	struct nfs4_cb_compound_hdr hdr = { | 
					
						
							| 
									
										
										
										
											2010-06-04 20:04:45 -04:00
										 |  |  | 		.ident = cb->cb_clp->cl_cb_ident, | 
					
						
							| 
									
										
										
										
											2010-05-31 18:21:37 -04:00
										 |  |  | 		.minorversion = cb->cb_minorversion, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:59:18 +00:00
										 |  |  | 	encode_cb_compound4args(xdr, &hdr); | 
					
						
							|  |  |  | 	encode_cb_sequence4args(xdr, cb, &hdr); | 
					
						
							|  |  |  | 	encode_cb_recall4args(xdr, args, &hdr); | 
					
						
							| 
									
										
										
										
											2009-06-16 04:20:50 +03:00
										 |  |  | 	encode_cb_nops(&hdr); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-10 12:26:51 +03:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:32 +00:00
										 |  |  |  * NFSv4.0 and NFSv4.1 XDR decode functions | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * NFSv4.0 callback result types are defined in section 15 of RFC | 
					
						
							|  |  |  |  * 3530: "Network File System (NFS) version 4 Protocol" and section 20 | 
					
						
							|  |  |  |  * of RFC 5661:  "Network File System (NFS) Version 4 Minor Version 1 | 
					
						
							|  |  |  |  * Protocol". | 
					
						
							| 
									
										
										
										
											2009-09-10 12:26:51 +03:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:59:29 +00:00
										 |  |  | static int nfs4_xdr_dec_cb_null(struct rpc_rqst *req, struct xdr_stream *xdr, | 
					
						
							|  |  |  | 				void *__unused) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:32 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * 20.2. Operation 4: CB_RECALL - Recall a Delegation | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-12-14 14:59:29 +00:00
										 |  |  | static int nfs4_xdr_dec_cb_recall(struct rpc_rqst *rqstp, | 
					
						
							|  |  |  | 				  struct xdr_stream *xdr, | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:32 +00:00
										 |  |  | 				  struct nfsd4_callback *cb) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct nfs4_cb_compound_hdr hdr; | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:32 +00:00
										 |  |  | 	enum nfsstat4 nfserr; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int status; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:59:29 +00:00
										 |  |  | 	status = decode_cb_compound4res(xdr, &hdr); | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:32 +00:00
										 |  |  | 	if (unlikely(status)) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		goto out; | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:32 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (cb != NULL) { | 
					
						
							| 
									
										
										
										
											2010-12-14 14:59:29 +00:00
										 |  |  | 		status = decode_cb_sequence4res(xdr, cb); | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:32 +00:00
										 |  |  | 		if (unlikely(status)) | 
					
						
							| 
									
										
										
										
											2009-09-10 12:27:04 +03:00
										 |  |  | 			goto out; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:59:29 +00:00
										 |  |  | 	status = decode_cb_op_status(xdr, OP_CB_RECALL, &nfserr); | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:32 +00:00
										 |  |  | 	if (unlikely(status)) | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 	if (unlikely(nfserr != NFS4_OK)) | 
					
						
							| 
									
										
										
										
											2011-01-13 11:25:31 +02:00
										 |  |  | 		status = nfs_cb_stat_to_errno(nfserr); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | out: | 
					
						
							|  |  |  | 	return status; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * RPC procedure tables | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:42 +00:00
										 |  |  | #define PROC(proc, call, argtype, restype)				\
 | 
					
						
							|  |  |  | [NFSPROC4_CLNT_##proc] = {						\ | 
					
						
							|  |  |  | 	.p_proc    = NFSPROC4_CB_##call,				\ | 
					
						
							| 
									
										
										
										
											2010-12-14 14:59:18 +00:00
										 |  |  | 	.p_encode  = (kxdreproc_t)nfs4_xdr_enc_##argtype,		\ | 
					
						
							| 
									
										
										
										
											2010-12-14 14:59:29 +00:00
										 |  |  | 	.p_decode  = (kxdrdproc_t)nfs4_xdr_dec_##restype,		\ | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:42 +00:00
										 |  |  | 	.p_arglen  = NFS4_enc_##argtype##_sz,				\ | 
					
						
							|  |  |  | 	.p_replen  = NFS4_dec_##restype##_sz,				\ | 
					
						
							|  |  |  | 	.p_statidx = NFSPROC4_CB_##call,				\ | 
					
						
							|  |  |  | 	.p_name    = #proc,						\ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:42 +00:00
										 |  |  | static struct rpc_procinfo nfs4_cb_procedures[] = { | 
					
						
							|  |  |  | 	PROC(CB_NULL,	NULL,		cb_null,	cb_null), | 
					
						
							|  |  |  | 	PROC(CB_RECALL,	COMPOUND,	cb_recall,	cb_recall), | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:42 +00:00
										 |  |  | static struct rpc_version nfs_cb_version4 = { | 
					
						
							| 
									
										
										
										
											2010-05-14 17:57:35 -04:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Note on the callback rpc program version number: despite language in rfc | 
					
						
							|  |  |  |  * 5661 section 18.36.3 requiring servers to use 4 in this field, the | 
					
						
							|  |  |  |  * official xdr descriptions for both 4.0 and 4.1 specify version 1, and | 
					
						
							|  |  |  |  * in practice that appears to be what implementations use.  The section | 
					
						
							|  |  |  |  * 18.36.3 language is expected to be fixed in an erratum. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:42 +00:00
										 |  |  | 	.number			= 1, | 
					
						
							|  |  |  | 	.nrprocs		= ARRAY_SIZE(nfs4_cb_procedures), | 
					
						
							|  |  |  | 	.procs			= nfs4_cb_procedures | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-20 13:53:56 -05:00
										 |  |  | static const struct rpc_version *nfs_cb_version[] = { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	&nfs_cb_version4, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-20 13:53:56 -05:00
										 |  |  | static const struct rpc_program cb_program; | 
					
						
							| 
									
										
										
										
											2008-03-28 16:04:56 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | static struct rpc_stat cb_stats = { | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:42 +00:00
										 |  |  | 	.program		= &cb_program | 
					
						
							| 
									
										
										
										
											2008-03-28 16:04:56 -04:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define NFS4_CALLBACK 0x40000000
 | 
					
						
							| 
									
										
										
										
											2012-01-20 13:53:56 -05:00
										 |  |  | static const struct rpc_program cb_program = { | 
					
						
							| 
									
										
										
										
											2010-12-14 14:57:42 +00:00
										 |  |  | 	.name			= "nfs4_cb", | 
					
						
							|  |  |  | 	.number			= NFS4_CALLBACK, | 
					
						
							|  |  |  | 	.nrvers			= ARRAY_SIZE(nfs_cb_version), | 
					
						
							|  |  |  | 	.version		= nfs_cb_version, | 
					
						
							|  |  |  | 	.stats			= &cb_stats, | 
					
						
							| 
									
										
										
										
											2012-01-11 19:18:01 +04:00
										 |  |  | 	.pipe_dir_name		= "nfsd4_cb", | 
					
						
							| 
									
										
										
										
											2008-03-28 16:04:56 -04:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-27 14:11:44 +03:00
										 |  |  | static int max_cb_time(struct net *net) | 
					
						
							| 
									
										
										
										
											2009-03-05 17:18:10 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-11-27 14:11:44 +03:00
										 |  |  | 	struct nfsd_net *nn = net_generic(net, nfsd_net_id); | 
					
						
							|  |  |  | 	return max(nn->nfsd4_lease/10, (time_t)1) * HZ; | 
					
						
							| 
									
										
										
										
											2009-03-05 17:18:10 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-01 16:31:02 -04:00
										 |  |  | static struct rpc_cred *callback_cred; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int set_callback_cred(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (callback_cred) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	callback_cred = rpc_lookup_machine_cred("nfs"); | 
					
						
							|  |  |  | 	if (!callback_cred) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-13 15:41:27 -05:00
										 |  |  | static struct rpc_cred *get_backchannel_cred(struct nfs4_client *clp, struct rpc_clnt *client, struct nfsd4_session *ses) | 
					
						
							| 
									
										
										
										
											2012-11-01 16:31:02 -04:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (clp->cl_minorversion == 0) { | 
					
						
							|  |  |  | 		return get_rpccred(callback_cred); | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		struct rpc_auth *auth = client->cl_auth; | 
					
						
							|  |  |  | 		struct auth_cred acred = {}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		acred.uid = ses->se_cb_sec.uid; | 
					
						
							|  |  |  | 		acred.gid = ses->se_cb_sec.gid; | 
					
						
							|  |  |  | 		return auth->au_ops->lookup_cred(client->cl_auth, &acred, 0); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2007-07-27 18:06:50 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-15 17:25:45 -04:00
										 |  |  | static int setup_callback_client(struct nfs4_client *clp, struct nfs4_cb_conn *conn, struct nfsd4_session *ses) | 
					
						
							| 
									
										
										
										
											2007-07-27 18:06:50 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-08-22 20:06:21 -04:00
										 |  |  | 	struct rpc_timeout	timeparms = { | 
					
						
							| 
									
										
										
										
											2012-11-27 14:11:44 +03:00
										 |  |  | 		.to_initval	= max_cb_time(clp->net), | 
					
						
							| 
									
										
										
										
											2009-03-05 17:18:10 -05:00
										 |  |  | 		.to_retries	= 0, | 
					
						
							| 
									
										
										
										
											2006-08-22 20:06:21 -04:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 	struct rpc_create_args args = { | 
					
						
							| 
									
										
										
										
											2012-11-14 18:21:10 +03:00
										 |  |  | 		.net		= clp->net, | 
					
						
							| 
									
										
										
										
											2010-05-31 19:09:40 -04:00
										 |  |  | 		.address	= (struct sockaddr *) &conn->cb_addr, | 
					
						
							|  |  |  | 		.addrsize	= conn->cb_addrlen, | 
					
						
							| 
									
										
										
										
											2010-12-15 14:09:01 +09:00
										 |  |  | 		.saddress	= (struct sockaddr *) &conn->cb_saddr, | 
					
						
							| 
									
										
										
										
											2006-08-22 20:06:21 -04:00
										 |  |  | 		.timeout	= &timeparms, | 
					
						
							| 
									
										
										
										
											2008-03-28 16:04:56 -04:00
										 |  |  | 		.program	= &cb_program, | 
					
						
							| 
									
										
										
										
											2010-05-14 17:57:35 -04:00
										 |  |  | 		.version	= 0, | 
					
						
							| 
									
										
										
										
											2008-06-09 16:51:31 -04:00
										 |  |  | 		.flags		= (RPC_CLNT_CREATE_NOPING | RPC_CLNT_CREATE_QUIET), | 
					
						
							| 
									
										
										
										
											2006-08-22 20:06:21 -04:00
										 |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2007-10-25 19:00:26 -04:00
										 |  |  | 	struct rpc_clnt *client; | 
					
						
							| 
									
										
										
										
											2012-11-01 16:31:02 -04:00
										 |  |  | 	struct rpc_cred *cred; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-19 23:00:12 -04:00
										 |  |  | 	if (clp->cl_minorversion == 0) { | 
					
						
							| 
									
										
										
										
											2012-05-14 19:55:22 -04:00
										 |  |  | 		if (!clp->cl_cred.cr_principal && | 
					
						
							| 
									
										
										
										
											2012-08-16 17:01:21 -04:00
										 |  |  | 				(clp->cl_cred.cr_flavor >= RPC_AUTH_GSS_KRB5)) | 
					
						
							| 
									
										
										
										
											2010-10-19 23:00:12 -04:00
										 |  |  | 			return -EINVAL; | 
					
						
							| 
									
										
										
										
											2012-05-14 19:55:22 -04:00
										 |  |  | 		args.client_name = clp->cl_cred.cr_principal; | 
					
						
							| 
									
										
										
										
											2010-10-19 23:00:12 -04:00
										 |  |  | 		args.prognumber	= conn->cb_prog, | 
					
						
							|  |  |  | 		args.protocol = XPRT_TRANSPORT_TCP; | 
					
						
							| 
									
										
										
										
											2012-08-16 17:01:21 -04:00
										 |  |  | 		args.authflavor = clp->cl_cred.cr_flavor; | 
					
						
							| 
									
										
										
										
											2010-10-19 23:00:12 -04:00
										 |  |  | 		clp->cl_cb_ident = conn->cb_ident; | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2010-06-15 17:25:45 -04:00
										 |  |  | 		if (!conn->cb_xprt) | 
					
						
							|  |  |  | 			return -EINVAL; | 
					
						
							|  |  |  | 		clp->cl_cb_conn.cb_xprt = conn->cb_xprt; | 
					
						
							|  |  |  | 		clp->cl_cb_session = ses; | 
					
						
							| 
									
										
										
										
											2010-05-31 19:09:40 -04:00
										 |  |  | 		args.bc_xprt = conn->cb_xprt; | 
					
						
							| 
									
										
										
										
											2010-10-19 17:31:50 -04:00
										 |  |  | 		args.prognumber = clp->cl_cb_session->se_cb_prog; | 
					
						
							| 
									
										
										
										
											2009-09-10 12:27:21 +03:00
										 |  |  | 		args.protocol = XPRT_TRANSPORT_BC_TCP; | 
					
						
							| 
									
										
										
										
											2012-11-05 16:01:48 -05:00
										 |  |  | 		args.authflavor = ses->se_cb_sec.flavor; | 
					
						
							| 
									
										
										
										
											2009-09-10 12:27:21 +03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-08-22 20:06:21 -04:00
										 |  |  | 	/* Create RPC client */ | 
					
						
							| 
									
										
										
										
											2007-10-25 19:00:26 -04:00
										 |  |  | 	client = rpc_create(&args); | 
					
						
							| 
									
										
										
										
											2009-02-23 10:45:27 -08:00
										 |  |  | 	if (IS_ERR(client)) { | 
					
						
							| 
									
										
										
										
											2009-02-22 16:43:45 -08:00
										 |  |  | 		dprintk("NFSD: couldn't create callback client: %ld\n", | 
					
						
							|  |  |  | 			PTR_ERR(client)); | 
					
						
							| 
									
										
										
										
											2009-02-23 10:45:27 -08:00
										 |  |  | 		return PTR_ERR(client); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-11-01 16:31:02 -04:00
										 |  |  | 	cred = get_backchannel_cred(clp, client, ses); | 
					
						
							|  |  |  | 	if (IS_ERR(cred)) { | 
					
						
							|  |  |  | 		rpc_shutdown_client(client); | 
					
						
							|  |  |  | 		return PTR_ERR(cred); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-06-04 20:04:45 -04:00
										 |  |  | 	clp->cl_cb_client = client; | 
					
						
							| 
									
										
										
										
											2012-11-01 16:31:02 -04:00
										 |  |  | 	clp->cl_cb_cred = cred; | 
					
						
							| 
									
										
										
										
											2009-02-23 10:45:27 -08:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2009-02-22 16:43:45 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-23 19:35:22 -08:00
										 |  |  | static void warn_no_callback_path(struct nfs4_client *clp, int reason) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	dprintk("NFSD: warning: no callback path to client %.*s: error %d\n", | 
					
						
							|  |  |  | 		(int)clp->cl_name.len, clp->cl_name.data, reason); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-30 18:51:44 -04:00
										 |  |  | static void nfsd4_mark_cb_down(struct nfs4_client *clp, int reason) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	clp->cl_cb_state = NFSD4_CB_DOWN; | 
					
						
							|  |  |  | 	warn_no_callback_path(clp, reason); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-19 19:12:58 -07:00
										 |  |  | static void nfsd4_mark_cb_fault(struct nfs4_client *clp, int reason) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	clp->cl_cb_state = NFSD4_CB_FAULT; | 
					
						
							|  |  |  | 	warn_no_callback_path(clp, reason); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-05 15:01:11 -05:00
										 |  |  | static void nfsd4_cb_probe_done(struct rpc_task *task, void *calldata) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-26 17:52:14 -04:00
										 |  |  | 	struct nfs4_client *clp = container_of(calldata, struct nfs4_client, cl_cb_null); | 
					
						
							| 
									
										
										
										
											2009-03-05 15:01:11 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (task->tk_status) | 
					
						
							| 
									
										
										
										
											2010-04-30 18:51:44 -04:00
										 |  |  | 		nfsd4_mark_cb_down(clp, task->tk_status); | 
					
						
							| 
									
										
										
										
											2009-03-05 15:01:11 -05:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2010-04-30 18:51:44 -04:00
										 |  |  | 		clp->cl_cb_state = NFSD4_CB_UP; | 
					
						
							| 
									
										
										
										
											2009-03-05 15:01:11 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct rpc_call_ops nfsd4_cb_probe_ops = { | 
					
						
							| 
									
										
										
										
											2010-05-26 17:52:14 -04:00
										 |  |  | 	/* XXX: release method to ensure we set the cb channel down if
 | 
					
						
							|  |  |  | 	 * necessary on early failure? */ | 
					
						
							| 
									
										
										
										
											2009-03-05 15:01:11 -05:00
										 |  |  | 	.rpc_call_done = nfsd4_cb_probe_done, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-26 17:52:14 -04:00
										 |  |  | static struct workqueue_struct *callback_wq; | 
					
						
							| 
									
										
										
										
											2009-09-15 18:07:35 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-10 17:37:44 -05:00
										 |  |  | static void run_nfsd4_cb(struct nfsd4_callback *cb) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	queue_work(callback_wq, &cb->cb_work); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-19 17:56:52 -04:00
										 |  |  | static void do_probe_callback(struct nfs4_client *clp) | 
					
						
							| 
									
										
										
										
											2009-02-22 16:43:45 -08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-26 17:52:14 -04:00
										 |  |  | 	struct nfsd4_callback *cb = &clp->cl_cb_null; | 
					
						
							| 
									
										
										
										
											2009-02-22 16:43:45 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-31 18:21:37 -04:00
										 |  |  | 	cb->cb_op = NULL; | 
					
						
							|  |  |  | 	cb->cb_clp = clp; | 
					
						
							| 
									
										
										
										
											2010-05-26 17:52:14 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	cb->cb_msg.rpc_proc = &nfs4_cb_procedures[NFSPROC4_CLNT_CB_NULL]; | 
					
						
							|  |  |  | 	cb->cb_msg.rpc_argp = NULL; | 
					
						
							|  |  |  | 	cb->cb_msg.rpc_resp = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	cb->cb_ops = &nfsd4_cb_probe_ops; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-10 17:37:44 -05:00
										 |  |  | 	run_nfsd4_cb(cb); | 
					
						
							| 
									
										
										
										
											2007-10-25 19:00:26 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2010-10-19 17:56:52 -04:00
										 |  |  |  * Poke the callback thread to process any updates to the callback | 
					
						
							|  |  |  |  * parameters, and send a null probe. | 
					
						
							| 
									
										
										
										
											2007-10-25 19:00:26 -04:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-10-19 17:56:52 -04:00
										 |  |  | void nfsd4_probe_callback(struct nfs4_client *clp) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-04-30 18:51:44 -04:00
										 |  |  | 	clp->cl_cb_state = NFSD4_CB_UNKNOWN; | 
					
						
							| 
									
										
										
										
											2012-03-21 09:52:02 -04:00
										 |  |  | 	set_bit(NFSD4_CLIENT_CB_UPDATE, &clp->cl_flags); | 
					
						
							| 
									
										
										
										
											2010-10-19 17:56:52 -04:00
										 |  |  | 	do_probe_callback(clp); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-09 15:52:19 -05:00
										 |  |  | void nfsd4_probe_callback_sync(struct nfs4_client *clp) | 
					
						
							| 
									
										
										
										
											2007-10-25 19:00:26 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-12-09 15:52:19 -05:00
										 |  |  | 	nfsd4_probe_callback(clp); | 
					
						
							|  |  |  | 	flush_workqueue(callback_wq); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2007-10-25 19:00:26 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-19 17:56:52 -04:00
										 |  |  | void nfsd4_change_callback(struct nfs4_client *clp, struct nfs4_cb_conn *conn) | 
					
						
							| 
									
										
										
										
											2007-10-25 19:00:26 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-04-30 18:51:44 -04:00
										 |  |  | 	clp->cl_cb_state = NFSD4_CB_UNKNOWN; | 
					
						
							| 
									
										
										
										
											2010-06-04 20:04:45 -04:00
										 |  |  | 	spin_lock(&clp->cl_lock); | 
					
						
							|  |  |  | 	memcpy(&clp->cl_cb_conn, conn, sizeof(struct nfs4_cb_conn)); | 
					
						
							|  |  |  | 	spin_unlock(&clp->cl_lock); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-10 12:26:38 +03:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * There's currently a single callback channel slot. | 
					
						
							|  |  |  |  * If the slot is available, then mark it busy.  Otherwise, set the | 
					
						
							|  |  |  |  * thread for sleeping on the callback RPC wait queue. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-01-10 16:37:51 -05:00
										 |  |  | static bool nfsd41_cb_get_slot(struct nfs4_client *clp, struct rpc_task *task) | 
					
						
							| 
									
										
										
										
											2009-09-10 12:26:38 +03:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (test_and_set_bit(0, &clp->cl_cb_slot_busy) != 0) { | 
					
						
							|  |  |  | 		rpc_sleep_on(&clp->cl_cb_waitq, task, NULL); | 
					
						
							|  |  |  | 		dprintk("%s slot is busy\n", __func__); | 
					
						
							| 
									
										
										
										
											2011-01-10 16:37:51 -05:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2009-09-10 12:26:38 +03:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-01-10 16:37:51 -05:00
										 |  |  | 	return true; | 
					
						
							| 
									
										
										
										
											2009-09-10 12:26:38 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * TODO: cb_sequence should support referring call lists, cachethis, multiple | 
					
						
							|  |  |  |  * slots, and mark callback channel down on communication errors. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void nfsd4_cb_prepare(struct rpc_task *task, void *calldata) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-16 16:47:08 -04:00
										 |  |  | 	struct nfsd4_callback *cb = calldata; | 
					
						
							| 
									
										
										
										
											2013-03-21 10:59:29 -04:00
										 |  |  | 	struct nfs4_client *clp = cb->cb_clp; | 
					
						
							| 
									
										
										
										
											2010-10-19 19:36:51 -04:00
										 |  |  | 	u32 minorversion = clp->cl_minorversion; | 
					
						
							| 
									
										
										
										
											2009-09-10 12:26:38 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-31 18:21:37 -04:00
										 |  |  | 	cb->cb_minorversion = minorversion; | 
					
						
							| 
									
										
										
										
											2009-09-10 12:26:38 +03:00
										 |  |  | 	if (minorversion) { | 
					
						
							| 
									
										
										
										
											2011-01-10 16:37:51 -05:00
										 |  |  | 		if (!nfsd41_cb_get_slot(clp, task)) | 
					
						
							| 
									
										
										
										
											2009-09-10 12:26:38 +03:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-01-10 16:44:41 -05:00
										 |  |  | 	spin_lock(&clp->cl_lock); | 
					
						
							| 
									
										
										
										
											2011-01-14 14:25:48 -05:00
										 |  |  | 	if (list_empty(&cb->cb_per_client)) { | 
					
						
							|  |  |  | 		/* This is the first call, not a restart */ | 
					
						
							|  |  |  | 		cb->cb_done = false; | 
					
						
							|  |  |  | 		list_add(&cb->cb_per_client, &clp->cl_callbacks); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-01-10 16:44:41 -05:00
										 |  |  | 	spin_unlock(&clp->cl_lock); | 
					
						
							| 
									
										
										
										
											2009-09-10 12:26:38 +03:00
										 |  |  | 	rpc_call_start(task); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-10 12:27:04 +03:00
										 |  |  | static void nfsd4_cb_done(struct rpc_task *task, void *calldata) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-16 16:47:08 -04:00
										 |  |  | 	struct nfsd4_callback *cb = calldata; | 
					
						
							| 
									
										
										
										
											2013-03-21 10:59:29 -04:00
										 |  |  | 	struct nfs4_client *clp = cb->cb_clp; | 
					
						
							| 
									
										
										
										
											2009-09-10 12:27:04 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dprintk("%s: minorversion=%d\n", __func__, | 
					
						
							| 
									
										
										
										
											2010-10-19 19:36:51 -04:00
										 |  |  | 		clp->cl_minorversion); | 
					
						
							| 
									
										
										
										
											2009-09-10 12:27:04 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-19 19:36:51 -04:00
										 |  |  | 	if (clp->cl_minorversion) { | 
					
						
							| 
									
										
										
										
											2009-09-10 12:27:04 +03:00
										 |  |  | 		/* No need for lock, access serialized in nfsd4_cb_prepare */ | 
					
						
							| 
									
										
										
										
											2010-06-14 19:01:57 -04:00
										 |  |  | 		++clp->cl_cb_session->se_cb_seq_nr; | 
					
						
							| 
									
										
										
										
											2009-09-10 12:27:04 +03:00
										 |  |  | 		clear_bit(0, &clp->cl_cb_slot_busy); | 
					
						
							|  |  |  | 		rpc_wake_up_next(&clp->cl_cb_waitq); | 
					
						
							|  |  |  | 		dprintk("%s: freed slot, new seqid=%d\n", __func__, | 
					
						
							| 
									
										
										
										
											2010-06-14 19:01:57 -04:00
										 |  |  | 			clp->cl_cb_session->se_cb_seq_nr); | 
					
						
							| 
									
										
										
										
											2009-09-10 12:27:04 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* We're done looking into the sequence information */ | 
					
						
							|  |  |  | 		task->tk_msg.rpc_resp = NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-07 23:39:01 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-01 22:36:55 -04:00
										 |  |  | static void nfsd4_cb_recall_done(struct rpc_task *task, void *calldata) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-16 16:47:08 -04:00
										 |  |  | 	struct nfsd4_callback *cb = calldata; | 
					
						
							|  |  |  | 	struct nfs4_delegation *dp = container_of(cb, struct nfs4_delegation, dl_recall); | 
					
						
							| 
									
										
										
										
											2013-03-21 10:59:29 -04:00
										 |  |  | 	struct nfs4_client *clp = cb->cb_clp; | 
					
						
							| 
									
										
										
										
											2010-03-07 23:39:01 -05:00
										 |  |  | 	struct rpc_clnt *current_rpc_client = clp->cl_cb_client; | 
					
						
							| 
									
										
										
										
											2009-05-01 22:36:55 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-10 12:27:04 +03:00
										 |  |  | 	nfsd4_cb_done(task, calldata); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-14 14:25:48 -05:00
										 |  |  | 	if (current_rpc_client != task->tk_client) { | 
					
						
							|  |  |  | 		/* We're shutting down or changing cl_cb_client; leave
 | 
					
						
							|  |  |  | 		 * it to nfsd4_process_cb_update to restart the call if | 
					
						
							|  |  |  | 		 * necessary. */ | 
					
						
							| 
									
										
										
										
											2010-03-07 23:39:01 -05:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-10 16:44:41 -05:00
										 |  |  | 	if (cb->cb_done) | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2009-05-01 22:36:55 -04:00
										 |  |  | 	switch (task->tk_status) { | 
					
						
							| 
									
										
										
										
											2010-05-30 11:53:12 -04:00
										 |  |  | 	case 0: | 
					
						
							| 
									
										
										
										
											2011-01-10 16:44:41 -05:00
										 |  |  | 		cb->cb_done = true; | 
					
						
							| 
									
										
										
										
											2010-05-30 11:53:12 -04:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	case -EBADHANDLE: | 
					
						
							|  |  |  | 	case -NFS4ERR_BAD_STATEID: | 
					
						
							|  |  |  | 		/* Race: client probably got cb_recall
 | 
					
						
							|  |  |  | 		 * before open reply granting delegation */ | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2009-05-01 22:36:55 -04:00
										 |  |  | 		/* Network partition? */ | 
					
						
							| 
									
										
										
										
											2010-04-30 18:51:44 -04:00
										 |  |  | 		nfsd4_mark_cb_down(clp, task->tk_status); | 
					
						
							| 
									
										
										
										
											2009-05-01 22:36:55 -04:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if (dp->dl_retries--) { | 
					
						
							|  |  |  | 		rpc_delay(task, 2*HZ); | 
					
						
							|  |  |  | 		task->tk_status = 0; | 
					
						
							| 
									
										
										
										
											2010-06-29 14:33:55 +03:00
										 |  |  | 		rpc_restart_call_prepare(task); | 
					
						
							| 
									
										
										
										
											2009-09-10 12:27:04 +03:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2009-05-01 22:36:55 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-01-10 16:44:41 -05:00
										 |  |  | 	nfsd4_mark_cb_down(clp, task->tk_status); | 
					
						
							|  |  |  | 	cb->cb_done = true; | 
					
						
							| 
									
										
										
										
											2009-05-01 22:36:55 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void nfsd4_cb_recall_release(void *calldata) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-16 16:47:08 -04:00
										 |  |  | 	struct nfsd4_callback *cb = calldata; | 
					
						
							| 
									
										
										
										
											2011-01-10 16:44:41 -05:00
										 |  |  | 	struct nfs4_client *clp = cb->cb_clp; | 
					
						
							| 
									
										
										
										
											2010-05-16 16:47:08 -04:00
										 |  |  | 	struct nfs4_delegation *dp = container_of(cb, struct nfs4_delegation, dl_recall); | 
					
						
							| 
									
										
										
										
											2009-05-01 22:36:55 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-10 16:44:41 -05:00
										 |  |  | 	if (cb->cb_done) { | 
					
						
							|  |  |  | 		spin_lock(&clp->cl_lock); | 
					
						
							|  |  |  | 		list_del(&cb->cb_per_client); | 
					
						
							|  |  |  | 		spin_unlock(&clp->cl_lock); | 
					
						
							|  |  |  | 		nfs4_put_delegation(dp); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-05-01 22:36:55 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct rpc_call_ops nfsd4_cb_recall_ops = { | 
					
						
							| 
									
										
										
										
											2009-09-10 12:26:38 +03:00
										 |  |  | 	.rpc_call_prepare = nfsd4_cb_prepare, | 
					
						
							| 
									
										
										
										
											2009-05-01 22:36:55 -04:00
										 |  |  | 	.rpc_call_done = nfsd4_cb_recall_done, | 
					
						
							|  |  |  | 	.rpc_release = nfsd4_cb_recall_release, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-03 14:52:55 -05:00
										 |  |  | int nfsd4_create_callback_queue(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	callback_wq = create_singlethread_workqueue("nfsd4_callbacks"); | 
					
						
							|  |  |  | 	if (!callback_wq) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void nfsd4_destroy_callback_queue(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	destroy_workqueue(callback_wq); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-12 00:14:06 +03:00
										 |  |  | /* must be called under the state lock */ | 
					
						
							| 
									
										
										
										
											2010-06-04 20:04:45 -04:00
										 |  |  | void nfsd4_shutdown_callback(struct nfs4_client *clp) | 
					
						
							| 
									
										
										
										
											2010-03-03 14:52:55 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-03-21 09:52:02 -04:00
										 |  |  | 	set_bit(NFSD4_CLIENT_CB_KILL, &clp->cl_flags); | 
					
						
							| 
									
										
										
										
											2010-03-03 14:52:55 -05:00
										 |  |  | 	/*
 | 
					
						
							| 
									
										
										
										
											2010-06-04 20:04:45 -04:00
										 |  |  | 	 * Note this won't actually result in a null callback; | 
					
						
							|  |  |  | 	 * instead, nfsd4_do_callback_rpc() will detect the killed | 
					
						
							|  |  |  | 	 * client, destroy the rpc client, and stop: | 
					
						
							| 
									
										
										
										
											2010-03-03 14:52:55 -05:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2010-06-04 20:04:45 -04:00
										 |  |  | 	do_probe_callback(clp); | 
					
						
							| 
									
										
										
										
											2010-03-03 14:52:55 -05:00
										 |  |  | 	flush_workqueue(callback_wq); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-16 15:25:54 +02:00
										 |  |  | static void nfsd4_release_cb(struct nfsd4_callback *cb) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-16 16:47:08 -04:00
										 |  |  | 	if (cb->cb_ops->rpc_release) | 
					
						
							|  |  |  | 		cb->cb_ops->rpc_release(cb); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-15 17:25:45 -04:00
										 |  |  | /* requires cl_lock: */ | 
					
						
							|  |  |  | static struct nfsd4_conn * __nfsd4_find_backchannel(struct nfs4_client *clp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct nfsd4_session *s; | 
					
						
							|  |  |  | 	struct nfsd4_conn *c; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	list_for_each_entry(s, &clp->cl_sessions, se_perclnt) { | 
					
						
							|  |  |  | 		list_for_each_entry(c, &s->se_conns, cn_persession) { | 
					
						
							|  |  |  | 			if (c->cn_flags & NFS4_CDFC4_BACK) | 
					
						
							|  |  |  | 				return c; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-16 15:25:54 +02:00
										 |  |  | static void nfsd4_process_cb_update(struct nfsd4_callback *cb) | 
					
						
							| 
									
										
										
										
											2010-06-04 20:04:45 -04:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct nfs4_cb_conn conn; | 
					
						
							|  |  |  | 	struct nfs4_client *clp = cb->cb_clp; | 
					
						
							| 
									
										
										
										
											2010-06-15 17:25:45 -04:00
										 |  |  | 	struct nfsd4_session *ses = NULL; | 
					
						
							|  |  |  | 	struct nfsd4_conn *c; | 
					
						
							| 
									
										
										
										
											2010-06-04 20:04:45 -04:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * This is either an update, or the client dying; in either case, | 
					
						
							|  |  |  | 	 * kill the old client: | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	if (clp->cl_cb_client) { | 
					
						
							|  |  |  | 		rpc_shutdown_client(clp->cl_cb_client); | 
					
						
							|  |  |  | 		clp->cl_cb_client = NULL; | 
					
						
							| 
									
										
										
										
											2012-11-01 16:31:02 -04:00
										 |  |  | 		put_rpccred(clp->cl_cb_cred); | 
					
						
							|  |  |  | 		clp->cl_cb_cred = NULL; | 
					
						
							| 
									
										
										
										
											2010-06-04 20:04:45 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-06-15 17:25:45 -04:00
										 |  |  | 	if (clp->cl_cb_conn.cb_xprt) { | 
					
						
							|  |  |  | 		svc_xprt_put(clp->cl_cb_conn.cb_xprt); | 
					
						
							|  |  |  | 		clp->cl_cb_conn.cb_xprt = NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-21 09:52:02 -04:00
										 |  |  | 	if (test_bit(NFSD4_CLIENT_CB_KILL, &clp->cl_flags)) | 
					
						
							| 
									
										
										
										
											2010-06-04 20:04:45 -04:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	spin_lock(&clp->cl_lock); | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Only serialized callback code is allowed to clear these | 
					
						
							|  |  |  | 	 * flags; main nfsd code can only set them: | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2012-03-21 09:52:02 -04:00
										 |  |  | 	BUG_ON(!(clp->cl_flags & NFSD4_CLIENT_CB_FLAG_MASK)); | 
					
						
							|  |  |  | 	clear_bit(NFSD4_CLIENT_CB_UPDATE, &clp->cl_flags); | 
					
						
							| 
									
										
										
										
											2010-06-04 20:04:45 -04:00
										 |  |  | 	memcpy(&conn, &cb->cb_clp->cl_cb_conn, sizeof(struct nfs4_cb_conn)); | 
					
						
							| 
									
										
										
										
											2010-06-15 17:25:45 -04:00
										 |  |  | 	c = __nfsd4_find_backchannel(clp); | 
					
						
							|  |  |  | 	if (c) { | 
					
						
							|  |  |  | 		svc_xprt_get(c->cn_xprt); | 
					
						
							|  |  |  | 		conn.cb_xprt = c->cn_xprt; | 
					
						
							|  |  |  | 		ses = c->cn_session; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-06-04 20:04:45 -04:00
										 |  |  | 	spin_unlock(&clp->cl_lock); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-06-15 17:25:45 -04:00
										 |  |  | 	err = setup_callback_client(clp, &conn, ses); | 
					
						
							| 
									
										
										
										
											2011-01-10 16:44:41 -05:00
										 |  |  | 	if (err) { | 
					
						
							| 
									
										
										
										
											2012-03-09 17:02:28 -05:00
										 |  |  | 		nfsd4_mark_cb_down(clp, err); | 
					
						
							| 
									
										
										
										
											2011-01-10 16:44:41 -05:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* Yay, the callback channel's back! Restart any callbacks: */ | 
					
						
							|  |  |  | 	list_for_each_entry(cb, &clp->cl_callbacks, cb_per_client) | 
					
						
							|  |  |  | 		run_nfsd4_cb(cb); | 
					
						
							| 
									
										
										
										
											2010-06-04 20:04:45 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 15:10:26 -05:00
										 |  |  | static void nfsd4_do_callback_rpc(struct work_struct *w) | 
					
						
							| 
									
										
										
										
											2010-05-16 16:47:08 -04:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct nfsd4_callback *cb = container_of(w, struct nfsd4_callback, cb_work); | 
					
						
							| 
									
										
										
										
											2010-05-31 18:21:37 -04:00
										 |  |  | 	struct nfs4_client *clp = cb->cb_clp; | 
					
						
							| 
									
										
										
										
											2010-06-04 20:04:45 -04:00
										 |  |  | 	struct rpc_clnt *clnt; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-21 09:52:02 -04:00
										 |  |  | 	if (clp->cl_flags & NFSD4_CLIENT_CB_FLAG_MASK) | 
					
						
							| 
									
										
										
										
											2010-06-04 20:04:45 -04:00
										 |  |  | 		nfsd4_process_cb_update(cb); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	clnt = clp->cl_cb_client; | 
					
						
							|  |  |  | 	if (!clnt) { | 
					
						
							|  |  |  | 		/* Callback channel broken, or client killed; give up: */ | 
					
						
							| 
									
										
										
										
											2010-05-16 16:47:08 -04:00
										 |  |  | 		nfsd4_release_cb(cb); | 
					
						
							| 
									
										
										
										
											2010-06-04 20:04:45 -04:00
										 |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2010-05-31 19:06:39 -04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-11-01 16:31:02 -04:00
										 |  |  | 	cb->cb_msg.rpc_cred = clp->cl_cb_cred; | 
					
						
							| 
									
										
										
										
											2010-05-26 17:52:14 -04:00
										 |  |  | 	rpc_call_async(clnt, &cb->cb_msg, RPC_TASK_SOFT | RPC_TASK_SOFTCONN, | 
					
						
							|  |  |  | 			cb->cb_ops, cb); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2010-03-03 14:52:55 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-05 15:10:26 -05:00
										 |  |  | void nfsd4_init_callback(struct nfsd4_callback *cb) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	INIT_WORK(&cb->cb_work, nfsd4_do_callback_rpc); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-16 16:47:08 -04:00
										 |  |  | void nfsd4_cb_recall(struct nfs4_delegation *dp) | 
					
						
							| 
									
										
										
										
											2010-03-03 14:52:55 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2010-05-16 16:47:08 -04:00
										 |  |  | 	struct nfsd4_callback *cb = &dp->dl_recall; | 
					
						
							| 
									
										
										
										
											2011-09-23 17:20:02 -04:00
										 |  |  | 	struct nfs4_client *clp = dp->dl_stid.sc_client; | 
					
						
							| 
									
										
										
										
											2010-03-03 14:52:55 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-16 16:47:08 -04:00
										 |  |  | 	dp->dl_retries = 1; | 
					
						
							| 
									
										
										
										
											2010-05-31 18:21:37 -04:00
										 |  |  | 	cb->cb_op = dp; | 
					
						
							| 
									
										
										
										
											2011-01-10 16:44:41 -05:00
										 |  |  | 	cb->cb_clp = clp; | 
					
						
							| 
									
										
										
										
											2010-05-16 16:47:08 -04:00
										 |  |  | 	cb->cb_msg.rpc_proc = &nfs4_cb_procedures[NFSPROC4_CLNT_CB_RECALL]; | 
					
						
							| 
									
										
										
										
											2010-05-31 18:21:37 -04:00
										 |  |  | 	cb->cb_msg.rpc_argp = cb; | 
					
						
							|  |  |  | 	cb->cb_msg.rpc_resp = cb; | 
					
						
							| 
									
										
										
										
											2010-05-16 16:47:08 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	cb->cb_ops = &nfsd4_cb_recall_ops; | 
					
						
							| 
									
										
										
										
											2010-03-03 14:52:55 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-13 17:08:19 -05:00
										 |  |  | 	INIT_LIST_HEAD(&cb->cb_per_client); | 
					
						
							| 
									
										
										
										
											2011-01-10 16:44:41 -05:00
										 |  |  | 	cb->cb_done = true; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-10 17:37:44 -05:00
										 |  |  | 	run_nfsd4_cb(&dp->dl_recall); | 
					
						
							| 
									
										
										
										
											2010-03-03 14:52:55 -05:00
										 |  |  | } |