xref: /illumos-gate/usr/src/uts/common/rpc/rpcmod.c (revision 4d633836)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5a26eed27Sgt  * Common Development and Distribution License (the "License").
6a26eed27Sgt  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
217c478bd9Sstevel@tonic-gate /*
22c242f9a0Schunli zhang - Sun Microsystems - Irvine United States  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
242695d4f4SMarcel Telka  */
252695d4f4SMarcel Telka /*
26b97d6ca7SMilan Jurik  * Copyright 2012 Milan Jurik. All rights reserved.
274a3b0527SAndy Fiddaman  * Copyright 2012 Marcel Telka <marcel@telka.sk>
282695d4f4SMarcel Telka  * Copyright 2013 Nexenta Systems, Inc.  All rights reserved.
294a3b0527SAndy Fiddaman  * Copyright 2018 OmniOS Community Edition (OmniOSce) Association.
307c478bd9Sstevel@tonic-gate  */
317c478bd9Sstevel@tonic-gate /* Copyright (c) 1990 Mentat Inc. */
327c478bd9Sstevel@tonic-gate 
337c478bd9Sstevel@tonic-gate /*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T	*/
344a3b0527SAndy Fiddaman /*	All Rights Reserved	*/
357c478bd9Sstevel@tonic-gate 
367c478bd9Sstevel@tonic-gate /*
377c478bd9Sstevel@tonic-gate  * Kernel RPC filtering module
387c478bd9Sstevel@tonic-gate  */
397c478bd9Sstevel@tonic-gate 
407c478bd9Sstevel@tonic-gate #include <sys/param.h>
417c478bd9Sstevel@tonic-gate #include <sys/types.h>
427c478bd9Sstevel@tonic-gate #include <sys/stream.h>
437c478bd9Sstevel@tonic-gate #include <sys/stropts.h>
44de8c4a14SErik Nordmark #include <sys/strsubr.h>
457c478bd9Sstevel@tonic-gate #include <sys/tihdr.h>
467c478bd9Sstevel@tonic-gate #include <sys/timod.h>
477c478bd9Sstevel@tonic-gate #include <sys/tiuser.h>
487c478bd9Sstevel@tonic-gate #include <sys/debug.h>
497c478bd9Sstevel@tonic-gate #include <sys/signal.h>
507c478bd9Sstevel@tonic-gate #include <sys/pcb.h>
517c478bd9Sstevel@tonic-gate #include <sys/user.h>
527c478bd9Sstevel@tonic-gate #include <sys/errno.h>
537c478bd9Sstevel@tonic-gate #include <sys/cred.h>
547c478bd9Sstevel@tonic-gate #include <sys/policy.h>
557c478bd9Sstevel@tonic-gate #include <sys/inline.h>
567c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h>
577c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
587c478bd9Sstevel@tonic-gate #include <sys/file.h>
597c478bd9Sstevel@tonic-gate #include <sys/sysmacros.h>
607c478bd9Sstevel@tonic-gate #include <sys/systm.h>
617c478bd9Sstevel@tonic-gate #include <sys/t_lock.h>
627c478bd9Sstevel@tonic-gate #include <sys/ddi.h>
637c478bd9Sstevel@tonic-gate #include <sys/vtrace.h>
647c478bd9Sstevel@tonic-gate #include <sys/callb.h>
65153adbb6Smeem #include <sys/strsun.h>
667c478bd9Sstevel@tonic-gate 
677c478bd9Sstevel@tonic-gate #include <sys/strlog.h>
687c478bd9Sstevel@tonic-gate #include <rpc/rpc_com.h>
697c478bd9Sstevel@tonic-gate #include <inet/common.h>
707c478bd9Sstevel@tonic-gate #include <rpc/types.h>
717c478bd9Sstevel@tonic-gate #include <sys/time.h>
727c478bd9Sstevel@tonic-gate #include <rpc/xdr.h>
737c478bd9Sstevel@tonic-gate #include <rpc/auth.h>
747c478bd9Sstevel@tonic-gate #include <rpc/clnt.h>
757c478bd9Sstevel@tonic-gate #include <rpc/rpc_msg.h>
767c478bd9Sstevel@tonic-gate #include <rpc/clnt.h>
777c478bd9Sstevel@tonic-gate #include <rpc/svc.h>
787c478bd9Sstevel@tonic-gate #include <rpc/rpcsys.h>
797c478bd9Sstevel@tonic-gate #include <rpc/rpc_rdma.h>
807c478bd9Sstevel@tonic-gate 
817c478bd9Sstevel@tonic-gate /*
827c478bd9Sstevel@tonic-gate  * This is the loadable module wrapper.
837c478bd9Sstevel@tonic-gate  */
847c478bd9Sstevel@tonic-gate #include <sys/conf.h>
857c478bd9Sstevel@tonic-gate #include <sys/modctl.h>
867c478bd9Sstevel@tonic-gate #include <sys/syscall.h>
877c478bd9Sstevel@tonic-gate 
887c478bd9Sstevel@tonic-gate extern struct streamtab rpcinfo;
897c478bd9Sstevel@tonic-gate 
907c478bd9Sstevel@tonic-gate static struct fmodsw fsw = {
917c478bd9Sstevel@tonic-gate 	"rpcmod",
927c478bd9Sstevel@tonic-gate 	&rpcinfo,
937c478bd9Sstevel@tonic-gate 	D_NEW|D_MP,
947c478bd9Sstevel@tonic-gate };
957c478bd9Sstevel@tonic-gate 
967c478bd9Sstevel@tonic-gate /*
977c478bd9Sstevel@tonic-gate  * Module linkage information for the kernel.
987c478bd9Sstevel@tonic-gate  */
997c478bd9Sstevel@tonic-gate 
1007c478bd9Sstevel@tonic-gate static struct modlstrmod modlstrmod = {
1017c478bd9Sstevel@tonic-gate 	&mod_strmodops, "rpc interface str mod", &fsw
1027c478bd9Sstevel@tonic-gate };
1037c478bd9Sstevel@tonic-gate 
1047c478bd9Sstevel@tonic-gate /*
1057c478bd9Sstevel@tonic-gate  * For the RPC system call.
1067c478bd9Sstevel@tonic-gate  */
1077c478bd9Sstevel@tonic-gate static struct sysent rpcsysent = {
1087c478bd9Sstevel@tonic-gate 	2,
1097c478bd9Sstevel@tonic-gate 	SE_32RVAL1 | SE_ARGC | SE_NOUNLOAD,
1107c478bd9Sstevel@tonic-gate 	rpcsys
1117c478bd9Sstevel@tonic-gate };
1127c478bd9Sstevel@tonic-gate 
1137c478bd9Sstevel@tonic-gate static struct modlsys modlsys = {
1147c478bd9Sstevel@tonic-gate 	&mod_syscallops,
1157c478bd9Sstevel@tonic-gate 	"RPC syscall",
1167c478bd9Sstevel@tonic-gate 	&rpcsysent
1177c478bd9Sstevel@tonic-gate };
1187c478bd9Sstevel@tonic-gate 
1197c478bd9Sstevel@tonic-gate #ifdef _SYSCALL32_IMPL
1207c478bd9Sstevel@tonic-gate static struct modlsys modlsys32 = {
1217c478bd9Sstevel@tonic-gate 	&mod_syscallops32,
1227c478bd9Sstevel@tonic-gate 	"32-bit RPC syscall",
1237c478bd9Sstevel@tonic-gate 	&rpcsysent
1247c478bd9Sstevel@tonic-gate };
1257c478bd9Sstevel@tonic-gate #endif /* _SYSCALL32_IMPL */
1267c478bd9Sstevel@tonic-gate 
1277c478bd9Sstevel@tonic-gate static struct modlinkage modlinkage = {
1287c478bd9Sstevel@tonic-gate 	MODREV_1,
1297c478bd9Sstevel@tonic-gate 	{
1307c478bd9Sstevel@tonic-gate 		&modlsys,
1317c478bd9Sstevel@tonic-gate #ifdef _SYSCALL32_IMPL
1327c478bd9Sstevel@tonic-gate 		&modlsys32,
1337c478bd9Sstevel@tonic-gate #endif
1347c478bd9Sstevel@tonic-gate 		&modlstrmod,
1357c478bd9Sstevel@tonic-gate 		NULL
1367c478bd9Sstevel@tonic-gate 	}
1377c478bd9Sstevel@tonic-gate };
1387c478bd9Sstevel@tonic-gate 
1397c478bd9Sstevel@tonic-gate int
_init(void)1407c478bd9Sstevel@tonic-gate _init(void)
1417c478bd9Sstevel@tonic-gate {
1427c478bd9Sstevel@tonic-gate 	int error = 0;
1437c478bd9Sstevel@tonic-gate 	callb_id_t cid;
1447c478bd9Sstevel@tonic-gate 	int status;
1457c478bd9Sstevel@tonic-gate 
1467c478bd9Sstevel@tonic-gate 	svc_init();
1477c478bd9Sstevel@tonic-gate 	clnt_init();
1487c478bd9Sstevel@tonic-gate 	cid = callb_add(connmgr_cpr_reset, 0, CB_CL_CPR_RPC, "rpc");
1497c478bd9Sstevel@tonic-gate 
1507c478bd9Sstevel@tonic-gate 	if (error = mod_install(&modlinkage)) {
1517c478bd9Sstevel@tonic-gate 		/*
1527c478bd9Sstevel@tonic-gate 		 * Could not install module, cleanup previous
1537c478bd9Sstevel@tonic-gate 		 * initialization work.
1547c478bd9Sstevel@tonic-gate 		 */
1557c478bd9Sstevel@tonic-gate 		clnt_fini();
1567c478bd9Sstevel@tonic-gate 		if (cid != NULL)
1577c478bd9Sstevel@tonic-gate 			(void) callb_delete(cid);
1587c478bd9Sstevel@tonic-gate 
1597c478bd9Sstevel@tonic-gate 		return (error);
1607c478bd9Sstevel@tonic-gate 	}
1617c478bd9Sstevel@tonic-gate 
1627c478bd9Sstevel@tonic-gate 	/*
1637c478bd9Sstevel@tonic-gate 	 * Load up the RDMA plugins and initialize the stats. Even if the
1647c478bd9Sstevel@tonic-gate 	 * plugins loadup fails, but rpcmod was successfully installed the
1657c478bd9Sstevel@tonic-gate 	 * counters still get initialized.
1667c478bd9Sstevel@tonic-gate 	 */
1677c478bd9Sstevel@tonic-gate 	rw_init(&rdma_lock, NULL, RW_DEFAULT, NULL);
1687c478bd9Sstevel@tonic-gate 	mutex_init(&rdma_modload_lock, NULL, MUTEX_DEFAULT, NULL);
16951f34d4bSRajkumar Sivaprakasam 
17051f34d4bSRajkumar Sivaprakasam 	cv_init(&rdma_wait.svc_cv, NULL, CV_DEFAULT, NULL);
17151f34d4bSRajkumar Sivaprakasam 	mutex_init(&rdma_wait.svc_lock, NULL, MUTEX_DEFAULT, NULL);
17251f34d4bSRajkumar Sivaprakasam 
1737c478bd9Sstevel@tonic-gate 	mt_kstat_init();
1747c478bd9Sstevel@tonic-gate 
1757c478bd9Sstevel@tonic-gate 	/*
1767c478bd9Sstevel@tonic-gate 	 * Get our identification into ldi.  This is used for loading
1777c478bd9Sstevel@tonic-gate 	 * other modules, e.g. rpcib.
1787c478bd9Sstevel@tonic-gate 	 */
1797c478bd9Sstevel@tonic-gate 	status = ldi_ident_from_mod(&modlinkage, &rpcmod_li);
1807c478bd9Sstevel@tonic-gate 	if (status != 0) {
1817c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN, "ldi_ident_from_mod fails with %d", status);
1827c478bd9Sstevel@tonic-gate 		rpcmod_li = NULL;
1837c478bd9Sstevel@tonic-gate 	}
1847c478bd9Sstevel@tonic-gate 
1857c478bd9Sstevel@tonic-gate 	return (error);
1867c478bd9Sstevel@tonic-gate }
1877c478bd9Sstevel@tonic-gate 
1887c478bd9Sstevel@tonic-gate /*
1897c478bd9Sstevel@tonic-gate  * The unload entry point fails, because we advertise entry points into
1907c478bd9Sstevel@tonic-gate  * rpcmod from the rest of kRPC: rpcmod_release().
1917c478bd9Sstevel@tonic-gate  */
1927c478bd9Sstevel@tonic-gate int
_fini(void)1937c478bd9Sstevel@tonic-gate _fini(void)
1947c478bd9Sstevel@tonic-gate {
1957c478bd9Sstevel@tonic-gate 	return (EBUSY);
1967c478bd9Sstevel@tonic-gate }
1977c478bd9Sstevel@tonic-gate 
1987c478bd9Sstevel@tonic-gate int
_info(struct modinfo * modinfop)1997c478bd9Sstevel@tonic-gate _info(struct modinfo *modinfop)
2007c478bd9Sstevel@tonic-gate {
2017c478bd9Sstevel@tonic-gate 	return (mod_info(&modlinkage, modinfop));
2027c478bd9Sstevel@tonic-gate }
2037c478bd9Sstevel@tonic-gate 
2047c478bd9Sstevel@tonic-gate extern int nulldev();
2057c478bd9Sstevel@tonic-gate 
2067c478bd9Sstevel@tonic-gate #define	RPCMOD_ID	2049
2077c478bd9Sstevel@tonic-gate 
208b97d6ca7SMilan Jurik int rmm_open(queue_t *, dev_t *, int, int, cred_t *);
209b97d6ca7SMilan Jurik int rmm_close(queue_t *, int, cred_t *);
2107c478bd9Sstevel@tonic-gate 
2117c478bd9Sstevel@tonic-gate /*
2127c478bd9Sstevel@tonic-gate  * To save instructions, since STREAMS ignores the return value
2137c478bd9Sstevel@tonic-gate  * from these functions, they are defined as void here. Kind of icky, but...
2147c478bd9Sstevel@tonic-gate  */
215*4d633836SToomas Soome int rmm_rput(queue_t *, mblk_t *);
216*4d633836SToomas Soome int rmm_wput(queue_t *, mblk_t *);
217*4d633836SToomas Soome int rmm_rsrv(queue_t *);
218*4d633836SToomas Soome int rmm_wsrv(queue_t *);
2197c478bd9Sstevel@tonic-gate 
220b97d6ca7SMilan Jurik int rpcmodopen(queue_t *, dev_t *, int, int, cred_t *);
221b97d6ca7SMilan Jurik int rpcmodclose(queue_t *, int, cred_t *);
222b97d6ca7SMilan Jurik void rpcmodrput(queue_t *, mblk_t *);
223b97d6ca7SMilan Jurik void rpcmodwput(queue_t *, mblk_t *);
224b97d6ca7SMilan Jurik void rpcmodrsrv();
225b97d6ca7SMilan Jurik void rpcmodwsrv(queue_t *);
2267c478bd9Sstevel@tonic-gate 
2277c478bd9Sstevel@tonic-gate static	void	rpcmodwput_other(queue_t *, mblk_t *);
2287c478bd9Sstevel@tonic-gate static	int	mir_close(queue_t *q);
2297c478bd9Sstevel@tonic-gate static	int	mir_open(queue_t *q, dev_t *devp, int flag, int sflag,
2307c478bd9Sstevel@tonic-gate 		    cred_t *credp);
2317c478bd9Sstevel@tonic-gate static	void	mir_rput(queue_t *q, mblk_t *mp);
2327c478bd9Sstevel@tonic-gate static	void	mir_rsrv(queue_t *q);
2337c478bd9Sstevel@tonic-gate static	void	mir_wput(queue_t *q, mblk_t *mp);
2347c478bd9Sstevel@tonic-gate static	void	mir_wsrv(queue_t *q);
2357c478bd9Sstevel@tonic-gate 
2367c478bd9Sstevel@tonic-gate static struct module_info rpcmod_info =
2377c478bd9Sstevel@tonic-gate 	{RPCMOD_ID, "rpcmod", 0, INFPSZ, 256*1024, 1024};
2387c478bd9Sstevel@tonic-gate 
2397c478bd9Sstevel@tonic-gate static struct qinit rpcmodrinit = {
240*4d633836SToomas Soome 	rmm_rput,
241*4d633836SToomas Soome 	rmm_rsrv,
2427c478bd9Sstevel@tonic-gate 	rmm_open,
2437c478bd9Sstevel@tonic-gate 	rmm_close,
2447c478bd9Sstevel@tonic-gate 	nulldev,
2457c478bd9Sstevel@tonic-gate 	&rpcmod_info,
2467c478bd9Sstevel@tonic-gate 	NULL
2477c478bd9Sstevel@tonic-gate };
2487c478bd9Sstevel@tonic-gate 
2497c478bd9Sstevel@tonic-gate /*
2507c478bd9Sstevel@tonic-gate  * The write put procedure is simply putnext to conserve stack space.
2517c478bd9Sstevel@tonic-gate  * The write service procedure is not used to queue data, but instead to
2527c478bd9Sstevel@tonic-gate  * synchronize with flow control.
2537c478bd9Sstevel@tonic-gate  */
2547c478bd9Sstevel@tonic-gate static struct qinit rpcmodwinit = {
255*4d633836SToomas Soome 	rmm_wput,
256*4d633836SToomas Soome 	rmm_wsrv,
2577c478bd9Sstevel@tonic-gate 	rmm_open,
2587c478bd9Sstevel@tonic-gate 	rmm_close,
2597c478bd9Sstevel@tonic-gate 	nulldev,
2607c478bd9Sstevel@tonic-gate 	&rpcmod_info,
2617c478bd9Sstevel@tonic-gate 	NULL
2627c478bd9Sstevel@tonic-gate };
2637c478bd9Sstevel@tonic-gate struct streamtab rpcinfo = { &rpcmodrinit, &rpcmodwinit, NULL, NULL };
2647c478bd9Sstevel@tonic-gate 
2657c478bd9Sstevel@tonic-gate struct xprt_style_ops {
2667c478bd9Sstevel@tonic-gate 	int (*xo_open)();
2677c478bd9Sstevel@tonic-gate 	int (*xo_close)();
2687c478bd9Sstevel@tonic-gate 	void (*xo_wput)();
2697c478bd9Sstevel@tonic-gate 	void (*xo_wsrv)();
2707c478bd9Sstevel@tonic-gate 	void (*xo_rput)();
2717c478bd9Sstevel@tonic-gate 	void (*xo_rsrv)();
2727c478bd9Sstevel@tonic-gate };
2737c478bd9Sstevel@tonic-gate 
2742695d4f4SMarcel Telka /*
2752695d4f4SMarcel Telka  * Read side has no service procedure.
2762695d4f4SMarcel Telka  */
2777c478bd9Sstevel@tonic-gate static struct xprt_style_ops xprt_clts_ops = {
2787c478bd9Sstevel@tonic-gate 	rpcmodopen,
2797c478bd9Sstevel@tonic-gate 	rpcmodclose,
2807c478bd9Sstevel@tonic-gate 	rpcmodwput,
2817c478bd9Sstevel@tonic-gate 	rpcmodwsrv,
2827c478bd9Sstevel@tonic-gate 	rpcmodrput,
2837c478bd9Sstevel@tonic-gate 	NULL
2847c478bd9Sstevel@tonic-gate };
2857c478bd9Sstevel@tonic-gate 
2867c478bd9Sstevel@tonic-gate static struct xprt_style_ops xprt_cots_ops = {
2877c478bd9Sstevel@tonic-gate 	mir_open,
2887c478bd9Sstevel@tonic-gate 	mir_close,
2897c478bd9Sstevel@tonic-gate 	mir_wput,
2907c478bd9Sstevel@tonic-gate 	mir_wsrv,
2917c478bd9Sstevel@tonic-gate 	mir_rput,
2927c478bd9Sstevel@tonic-gate 	mir_rsrv
2937c478bd9Sstevel@tonic-gate };
2947c478bd9Sstevel@tonic-gate 
2957c478bd9Sstevel@tonic-gate /*
2967c478bd9Sstevel@tonic-gate  * Per rpcmod "slot" data structure. q->q_ptr points to one of these.
2977c478bd9Sstevel@tonic-gate  */
2987c478bd9Sstevel@tonic-gate struct rpcm {
2992695d4f4SMarcel Telka 	void		*rm_krpc_cell;	/* Reserved for use by kRPC */
3007c478bd9Sstevel@tonic-gate 	struct		xprt_style_ops	*rm_ops;
3017c478bd9Sstevel@tonic-gate 	int		rm_type;	/* Client or server side stream */
3027c478bd9Sstevel@tonic-gate #define	RM_CLOSING	0x1		/* somebody is trying to close slot */
3037c478bd9Sstevel@tonic-gate 	uint_t		rm_state;	/* state of the slot. see above */
3047c478bd9Sstevel@tonic-gate 	uint_t		rm_ref;		/* cnt of external references to slot */
3057c478bd9Sstevel@tonic-gate 	kmutex_t	rm_lock;	/* mutex protecting above fields */
3067c478bd9Sstevel@tonic-gate 	kcondvar_t	rm_cwait;	/* condition for closing */
3077c478bd9Sstevel@tonic-gate 	zoneid_t	rm_zoneid;	/* zone which pushed rpcmod */
3087c478bd9Sstevel@tonic-gate };
3097c478bd9Sstevel@tonic-gate 
3107c478bd9Sstevel@tonic-gate struct temp_slot {
3117c478bd9Sstevel@tonic-gate 	void *cell;
3127c478bd9Sstevel@tonic-gate 	struct xprt_style_ops *ops;
3137c478bd9Sstevel@tonic-gate 	int type;
3147c478bd9Sstevel@tonic-gate 	mblk_t *info_ack;
3157c478bd9Sstevel@tonic-gate 	kmutex_t lock;
3167c478bd9Sstevel@tonic-gate 	kcondvar_t wait;
3177c478bd9Sstevel@tonic-gate };
3187c478bd9Sstevel@tonic-gate 
319fcfe7086Sgeorges typedef struct mir_s {
3202695d4f4SMarcel Telka 	void	*mir_krpc_cell;	/* Reserved for kRPC use. This field */
321fcfe7086Sgeorges 					/* must be first in the structure. */
322fcfe7086Sgeorges 	struct xprt_style_ops	*rm_ops;
323fcfe7086Sgeorges 	int	mir_type;		/* Client or server side stream */
324fcfe7086Sgeorges 
325fcfe7086Sgeorges 	mblk_t	*mir_head_mp;		/* RPC msg in progress */
326fcfe7086Sgeorges 		/*
327fcfe7086Sgeorges 		 * mir_head_mp points the first mblk being collected in
328fcfe7086Sgeorges 		 * the current RPC message.  Record headers are removed
329fcfe7086Sgeorges 		 * before data is linked into mir_head_mp.
330fcfe7086Sgeorges 		 */
331fcfe7086Sgeorges 	mblk_t	*mir_tail_mp;		/* Last mblk in mir_head_mp */
332fcfe7086Sgeorges 		/*
333fcfe7086Sgeorges 		 * mir_tail_mp points to the last mblk in the message
334fcfe7086Sgeorges 		 * chain starting at mir_head_mp.  It is only valid
335fcfe7086Sgeorges 		 * if mir_head_mp is non-NULL and is used to add new
336fcfe7086Sgeorges 		 * data blocks to the end of chain quickly.
337fcfe7086Sgeorges 		 */
338fcfe7086Sgeorges 
339fcfe7086Sgeorges 	int32_t	mir_frag_len;		/* Bytes seen in the current frag */
340fcfe7086Sgeorges 		/*
341fcfe7086Sgeorges 		 * mir_frag_len starts at -4 for beginning of each fragment.
342fcfe7086Sgeorges 		 * When this length is negative, it indicates the number of
343fcfe7086Sgeorges 		 * bytes that rpcmod needs to complete the record marker
344fcfe7086Sgeorges 		 * header.  When it is positive or zero, it holds the number
345fcfe7086Sgeorges 		 * of bytes that have arrived for the current fragment and
346fcfe7086Sgeorges 		 * are held in mir_header_mp.
347fcfe7086Sgeorges 		 */
348fcfe7086Sgeorges 
349fcfe7086Sgeorges 	int32_t	mir_frag_header;
350fcfe7086Sgeorges 		/*
351fcfe7086Sgeorges 		 * Fragment header as collected for the current fragment.
352fcfe7086Sgeorges 		 * It holds the last-fragment indicator and the number
353fcfe7086Sgeorges 		 * of bytes in the fragment.
354fcfe7086Sgeorges 		 */
355fcfe7086Sgeorges 
356fcfe7086Sgeorges 	unsigned int
357fcfe7086Sgeorges 		mir_ordrel_pending : 1,	/* Sent T_ORDREL_REQ */
358fcfe7086Sgeorges 		mir_hold_inbound : 1,	/* Hold inbound messages on server */
359fcfe7086Sgeorges 					/* side until outbound flow control */
360fcfe7086Sgeorges 					/* is relieved. */
361fcfe7086Sgeorges 		mir_closing : 1,	/* The stream is being closed */
362fcfe7086Sgeorges 		mir_inrservice : 1,	/* data queued or rd srv proc running */
363fcfe7086Sgeorges 		mir_inwservice : 1,	/* data queued or wr srv proc running */
364fcfe7086Sgeorges 		mir_inwflushdata : 1,	/* flush M_DATAs when srv runs */
365fcfe7086Sgeorges 		/*
366fcfe7086Sgeorges 		 * On client streams, mir_clntreq is 0 or 1; it is set
367fcfe7086Sgeorges 		 * to 1 whenever a new request is sent out (mir_wput)
368fcfe7086Sgeorges 		 * and cleared when the timer fires (mir_timer).  If
369fcfe7086Sgeorges 		 * the timer fires with this value equal to 0, then the
3702695d4f4SMarcel Telka 		 * stream is considered idle and kRPC is notified.
371fcfe7086Sgeorges 		 */
372fcfe7086Sgeorges 		mir_clntreq : 1,
373fcfe7086Sgeorges 		/*
374fcfe7086Sgeorges 		 * On server streams, stop accepting messages
375fcfe7086Sgeorges 		 */
376fcfe7086Sgeorges 		mir_svc_no_more_msgs : 1,
377fcfe7086Sgeorges 		mir_listen_stream : 1,	/* listen end point */
378fcfe7086Sgeorges 		mir_unused : 1,	/* no longer used */
379fcfe7086Sgeorges 		mir_timer_call : 1,
380fcfe7086Sgeorges 		mir_junk_fill_thru_bit_31 : 21;
381fcfe7086Sgeorges 
382fcfe7086Sgeorges 	int	mir_setup_complete;	/* server has initialized everything */
383fcfe7086Sgeorges 	timeout_id_t mir_timer_id;	/* Timer for idle checks */
384fcfe7086Sgeorges 	clock_t	mir_idle_timeout;	/* Allowed idle time before shutdown */
385fcfe7086Sgeorges 		/*
386fcfe7086Sgeorges 		 * This value is copied from clnt_idle_timeout or
387fcfe7086Sgeorges 		 * svc_idle_timeout during the appropriate ioctl.
388fcfe7086Sgeorges 		 * Kept in milliseconds
389fcfe7086Sgeorges 		 */
390fcfe7086Sgeorges 	clock_t	mir_use_timestamp;	/* updated on client with each use */
391fcfe7086Sgeorges 		/*
392fcfe7086Sgeorges 		 * This value is set to lbolt
393fcfe7086Sgeorges 		 * every time a client stream sends or receives data.
394fcfe7086Sgeorges 		 * Even if the timer message arrives, we don't shutdown
395fcfe7086Sgeorges 		 * client unless:
396fcfe7086Sgeorges 		 *    lbolt >= MSEC_TO_TICK(mir_idle_timeout)+mir_use_timestamp.
397fcfe7086Sgeorges 		 * This value is kept in HZ.
398fcfe7086Sgeorges 		 */
399fcfe7086Sgeorges 
400fcfe7086Sgeorges 	uint_t	*mir_max_msg_sizep;	/* Reference to sanity check size */
401fcfe7086Sgeorges 		/*
402fcfe7086Sgeorges 		 * This pointer is set to &clnt_max_msg_size or
403fcfe7086Sgeorges 		 * &svc_max_msg_size during the appropriate ioctl.
404fcfe7086Sgeorges 		 */
405fcfe7086Sgeorges 	zoneid_t mir_zoneid;	/* zone which pushed rpcmod */
406fcfe7086Sgeorges 	/* Server-side fields. */
407fcfe7086Sgeorges 	int	mir_ref_cnt;		/* Reference count: server side only */
408fcfe7086Sgeorges 					/* counts the number of references */
409fcfe7086Sgeorges 					/* that a kernel RPC server thread */
410fcfe7086Sgeorges 					/* (see svc_run()) has on this rpcmod */
411fcfe7086Sgeorges 					/* slot. Effectively, it is the */
4122695d4f4SMarcel Telka 					/* number of unprocessed messages */
413fcfe7086Sgeorges 					/* that have been passed up to the */
4142695d4f4SMarcel Telka 					/* kRPC layer */
415fcfe7086Sgeorges 
416fcfe7086Sgeorges 	mblk_t	*mir_svc_pend_mp;	/* Pending T_ORDREL_IND or */
417fcfe7086Sgeorges 					/* T_DISCON_IND */
418fcfe7086Sgeorges 
419fcfe7086Sgeorges 	/*
420fcfe7086Sgeorges 	 * these fields are for both client and server, but for debugging,
421fcfe7086Sgeorges 	 * it is easier to have these last in the structure.
422fcfe7086Sgeorges 	 */
423fcfe7086Sgeorges 	kmutex_t	mir_mutex;	/* Mutex and condvar for close */
424fcfe7086Sgeorges 	kcondvar_t	mir_condvar;	/* synchronization. */
425fcfe7086Sgeorges 	kcondvar_t	mir_timer_cv;	/* Timer routine sync. */
426fcfe7086Sgeorges } mir_t;
427fcfe7086Sgeorges 
4287c478bd9Sstevel@tonic-gate void tmp_rput(queue_t *q, mblk_t *mp);
4297c478bd9Sstevel@tonic-gate 
4307c478bd9Sstevel@tonic-gate struct xprt_style_ops tmpops = {
4317c478bd9Sstevel@tonic-gate 	NULL,
4327c478bd9Sstevel@tonic-gate 	NULL,
4337c478bd9Sstevel@tonic-gate 	putnext,
4347c478bd9Sstevel@tonic-gate 	NULL,
4357c478bd9Sstevel@tonic-gate 	tmp_rput,
4367c478bd9Sstevel@tonic-gate 	NULL
4377c478bd9Sstevel@tonic-gate };
4387c478bd9Sstevel@tonic-gate 
4397c478bd9Sstevel@tonic-gate void
tmp_rput(queue_t * q,mblk_t * mp)4407c478bd9Sstevel@tonic-gate tmp_rput(queue_t *q, mblk_t *mp)
4417c478bd9Sstevel@tonic-gate {
4427c478bd9Sstevel@tonic-gate 	struct temp_slot *t = (struct temp_slot *)(q->q_ptr);
4437c478bd9Sstevel@tonic-gate 	struct T_info_ack *pptr;
4447c478bd9Sstevel@tonic-gate 
4457c478bd9Sstevel@tonic-gate 	switch (mp->b_datap->db_type) {
4467c478bd9Sstevel@tonic-gate 	case M_PCPROTO:
4477c478bd9Sstevel@tonic-gate 		pptr = (struct T_info_ack *)mp->b_rptr;
4487c478bd9Sstevel@tonic-gate 		switch (pptr->PRIM_type) {
4497c478bd9Sstevel@tonic-gate 		case T_INFO_ACK:
4507c478bd9Sstevel@tonic-gate 			mutex_enter(&t->lock);
4517c478bd9Sstevel@tonic-gate 			t->info_ack = mp;
4527c478bd9Sstevel@tonic-gate 			cv_signal(&t->wait);
4537c478bd9Sstevel@tonic-gate 			mutex_exit(&t->lock);
4547c478bd9Sstevel@tonic-gate 			return;
4557c478bd9Sstevel@tonic-gate 		default:
4567c478bd9Sstevel@tonic-gate 			break;
4577c478bd9Sstevel@tonic-gate 		}
4587c478bd9Sstevel@tonic-gate 	default:
4597c478bd9Sstevel@tonic-gate 		break;
4607c478bd9Sstevel@tonic-gate 	}
4617c478bd9Sstevel@tonic-gate 
4627c478bd9Sstevel@tonic-gate 	/*
4637c478bd9Sstevel@tonic-gate 	 * Not an info-ack, so free it. This is ok because we should
4647c478bd9Sstevel@tonic-gate 	 * not be receiving data until the open finishes: rpcmod
4657c478bd9Sstevel@tonic-gate 	 * is pushed well before the end-point is bound to an address.
4667c478bd9Sstevel@tonic-gate 	 */
4677c478bd9Sstevel@tonic-gate 	freemsg(mp);
4687c478bd9Sstevel@tonic-gate }
4697c478bd9Sstevel@tonic-gate 
4707c478bd9Sstevel@tonic-gate int
rmm_open(queue_t * q,dev_t * devp,int flag,int sflag,cred_t * crp)4717c478bd9Sstevel@tonic-gate rmm_open(queue_t *q, dev_t *devp, int flag, int sflag, cred_t *crp)
4727c478bd9Sstevel@tonic-gate {
4737c478bd9Sstevel@tonic-gate 	mblk_t *bp;
4747c478bd9Sstevel@tonic-gate 	struct temp_slot ts, *t;
4757c478bd9Sstevel@tonic-gate 	struct T_info_ack *pptr;
4767c478bd9Sstevel@tonic-gate 	int error = 0;
4777c478bd9Sstevel@tonic-gate 
4787c478bd9Sstevel@tonic-gate 	ASSERT(q != NULL);
4797c478bd9Sstevel@tonic-gate 	/*
4807c478bd9Sstevel@tonic-gate 	 * Check for re-opens.
4817c478bd9Sstevel@tonic-gate 	 */
4827c478bd9Sstevel@tonic-gate 	if (q->q_ptr) {
4837c478bd9Sstevel@tonic-gate 		TRACE_1(TR_FAC_KRPC, TR_RPCMODOPEN_END,
4847c478bd9Sstevel@tonic-gate 		    "rpcmodopen_end:(%s)", "q->qptr");
4857c478bd9Sstevel@tonic-gate 		return (0);
4867c478bd9Sstevel@tonic-gate 	}
4877c478bd9Sstevel@tonic-gate 
4887c478bd9Sstevel@tonic-gate 	t = &ts;
4897c478bd9Sstevel@tonic-gate 	bzero(t, sizeof (*t));
4907c478bd9Sstevel@tonic-gate 	q->q_ptr = (void *)t;
491fcfe7086Sgeorges 	WR(q)->q_ptr = (void *)t;
4927c478bd9Sstevel@tonic-gate 
4937c478bd9Sstevel@tonic-gate 	/*
4947c478bd9Sstevel@tonic-gate 	 * Allocate the required messages upfront.
4957c478bd9Sstevel@tonic-gate 	 */
496de8c4a14SErik Nordmark 	if ((bp = allocb_cred(sizeof (struct T_info_req) +
497de8c4a14SErik Nordmark 	    sizeof (struct T_info_ack), crp, curproc->p_pid)) == NULL) {
4987c478bd9Sstevel@tonic-gate 		return (ENOBUFS);
4997c478bd9Sstevel@tonic-gate 	}
5007c478bd9Sstevel@tonic-gate 
5017c478bd9Sstevel@tonic-gate 	mutex_init(&t->lock, NULL, MUTEX_DEFAULT, NULL);
5027c478bd9Sstevel@tonic-gate 	cv_init(&t->wait, NULL, CV_DEFAULT, NULL);
5037c478bd9Sstevel@tonic-gate 
5047c478bd9Sstevel@tonic-gate 	t->ops = &tmpops;
5057c478bd9Sstevel@tonic-gate 
5067c478bd9Sstevel@tonic-gate 	qprocson(q);
5077c478bd9Sstevel@tonic-gate 	bp->b_datap->db_type = M_PCPROTO;
5087c478bd9Sstevel@tonic-gate 	*(int32_t *)bp->b_wptr = (int32_t)T_INFO_REQ;
5097c478bd9Sstevel@tonic-gate 	bp->b_wptr += sizeof (struct T_info_req);
5107c478bd9Sstevel@tonic-gate 	putnext(WR(q), bp);
5117c478bd9Sstevel@tonic-gate 
5127c478bd9Sstevel@tonic-gate 	mutex_enter(&t->lock);
513fcfe7086Sgeorges 	while (t->info_ack == NULL) {
5147c478bd9Sstevel@tonic-gate 		if (cv_wait_sig(&t->wait, &t->lock) == 0) {
5157c478bd9Sstevel@tonic-gate 			error = EINTR;
5167c478bd9Sstevel@tonic-gate 			break;
5177c478bd9Sstevel@tonic-gate 		}
5187c478bd9Sstevel@tonic-gate 	}
5197c478bd9Sstevel@tonic-gate 	mutex_exit(&t->lock);
520fcfe7086Sgeorges 
5217c478bd9Sstevel@tonic-gate 	if (error)
5227c478bd9Sstevel@tonic-gate 		goto out;
5237c478bd9Sstevel@tonic-gate 
5247c478bd9Sstevel@tonic-gate 	pptr = (struct T_info_ack *)t->info_ack->b_rptr;
5257c478bd9Sstevel@tonic-gate 
5267c478bd9Sstevel@tonic-gate 	if (pptr->SERV_type == T_CLTS) {
527fcfe7086Sgeorges 		if ((error = rpcmodopen(q, devp, flag, sflag, crp)) == 0)
528fcfe7086Sgeorges 			((struct rpcm *)q->q_ptr)->rm_ops = &xprt_clts_ops;
5297c478bd9Sstevel@tonic-gate 	} else {
530fcfe7086Sgeorges 		if ((error = mir_open(q, devp, flag, sflag, crp)) == 0)
531fcfe7086Sgeorges 			((mir_t *)q->q_ptr)->rm_ops = &xprt_cots_ops;
5327c478bd9Sstevel@tonic-gate 	}
5337c478bd9Sstevel@tonic-gate 
5347c478bd9Sstevel@tonic-gate out:
535fcfe7086Sgeorges 	if (error)
5367c478bd9Sstevel@tonic-gate 		qprocsoff(q);
5377c478bd9Sstevel@tonic-gate 
538fcfe7086Sgeorges 	freemsg(t->info_ack);
539fcfe7086Sgeorges 	mutex_destroy(&t->lock);
540fcfe7086Sgeorges 	cv_destroy(&t->wait);
541fcfe7086Sgeorges 
5427c478bd9Sstevel@tonic-gate 	return (error);
5437c478bd9Sstevel@tonic-gate }
5447c478bd9Sstevel@tonic-gate 
545*4d633836SToomas Soome int
rmm_rput(queue_t * q,mblk_t * mp)5467c478bd9Sstevel@tonic-gate rmm_rput(queue_t *q, mblk_t  *mp)
5477c478bd9Sstevel@tonic-gate {
5487c478bd9Sstevel@tonic-gate 	(*((struct temp_slot *)q->q_ptr)->ops->xo_rput)(q, mp);
549*4d633836SToomas Soome 	return (0);
5507c478bd9Sstevel@tonic-gate }
5517c478bd9Sstevel@tonic-gate 
552*4d633836SToomas Soome int
rmm_rsrv(queue_t * q)5537c478bd9Sstevel@tonic-gate rmm_rsrv(queue_t *q)
5547c478bd9Sstevel@tonic-gate {
5557c478bd9Sstevel@tonic-gate 	(*((struct temp_slot *)q->q_ptr)->ops->xo_rsrv)(q);
556*4d633836SToomas Soome 	return (0);
5577c478bd9Sstevel@tonic-gate }
5587c478bd9Sstevel@tonic-gate 
559*4d633836SToomas Soome int
rmm_wput(queue_t * q,mblk_t * mp)5607c478bd9Sstevel@tonic-gate rmm_wput(queue_t *q, mblk_t *mp)
5617c478bd9Sstevel@tonic-gate {
5627c478bd9Sstevel@tonic-gate 	(*((struct temp_slot *)q->q_ptr)->ops->xo_wput)(q, mp);
563*4d633836SToomas Soome 	return (0);
5647c478bd9Sstevel@tonic-gate }
5657c478bd9Sstevel@tonic-gate 
566*4d633836SToomas Soome int
rmm_wsrv(queue_t * q)5677c478bd9Sstevel@tonic-gate rmm_wsrv(queue_t *q)
5687c478bd9Sstevel@tonic-gate {
5697c478bd9Sstevel@tonic-gate 	(*((struct temp_slot *)q->q_ptr)->ops->xo_wsrv)(q);
570*4d633836SToomas Soome 	return (0);
5717c478bd9Sstevel@tonic-gate }
5727c478bd9Sstevel@tonic-gate 
5737c478bd9Sstevel@tonic-gate int
rmm_close(queue_t * q,int flag,cred_t * crp)5747c478bd9Sstevel@tonic-gate rmm_close(queue_t *q, int flag, cred_t *crp)
5757c478bd9Sstevel@tonic-gate {
5767c478bd9Sstevel@tonic-gate 	return ((*((struct temp_slot *)q->q_ptr)->ops->xo_close)(q, flag, crp));
5777c478bd9Sstevel@tonic-gate }
5787c478bd9Sstevel@tonic-gate 
5797c478bd9Sstevel@tonic-gate /*
5807c478bd9Sstevel@tonic-gate  * rpcmodopen -	open routine gets called when the module gets pushed
5817c478bd9Sstevel@tonic-gate  *		onto the stream.
5827c478bd9Sstevel@tonic-gate  */
5837c478bd9Sstevel@tonic-gate /*ARGSUSED*/
5847c478bd9Sstevel@tonic-gate int
rpcmodopen(queue_t * q,dev_t * devp,int flag,int sflag,cred_t * crp)5857c478bd9Sstevel@tonic-gate rpcmodopen(queue_t *q, dev_t *devp, int flag, int sflag, cred_t *crp)
5867c478bd9Sstevel@tonic-gate {
5877c478bd9Sstevel@tonic-gate 	struct rpcm *rmp;
5887c478bd9Sstevel@tonic-gate 
5897c478bd9Sstevel@tonic-gate 	TRACE_0(TR_FAC_KRPC, TR_RPCMODOPEN_START, "rpcmodopen_start:");
5907c478bd9Sstevel@tonic-gate 
5917c478bd9Sstevel@tonic-gate 	/*
5927c478bd9Sstevel@tonic-gate 	 * Only sufficiently privileged users can use this module, and it
5937c478bd9Sstevel@tonic-gate 	 * is assumed that they will use this module properly, and NOT send
5947c478bd9Sstevel@tonic-gate 	 * bulk data from downstream.
5957c478bd9Sstevel@tonic-gate 	 */
5967c478bd9Sstevel@tonic-gate 	if (secpolicy_rpcmod_open(crp) != 0)
5977c478bd9Sstevel@tonic-gate 		return (EPERM);
5987c478bd9Sstevel@tonic-gate 
5997c478bd9Sstevel@tonic-gate 	/*
6007c478bd9Sstevel@tonic-gate 	 * Allocate slot data structure.
6017c478bd9Sstevel@tonic-gate 	 */
6027c478bd9Sstevel@tonic-gate 	rmp = kmem_zalloc(sizeof (*rmp), KM_SLEEP);
6037c478bd9Sstevel@tonic-gate 
6047c478bd9Sstevel@tonic-gate 	mutex_init(&rmp->rm_lock, NULL, MUTEX_DEFAULT, NULL);
6057c478bd9Sstevel@tonic-gate 	cv_init(&rmp->rm_cwait, NULL, CV_DEFAULT, NULL);
606108322fbScarlsonj 	rmp->rm_zoneid = rpc_zoneid();
6077c478bd9Sstevel@tonic-gate 	/*
6087c478bd9Sstevel@tonic-gate 	 * slot type will be set by kRPC client and server ioctl's
6097c478bd9Sstevel@tonic-gate 	 */
6107c478bd9Sstevel@tonic-gate 	rmp->rm_type = 0;
6117c478bd9Sstevel@tonic-gate 
6127c478bd9Sstevel@tonic-gate 	q->q_ptr = (void *)rmp;
6137c478bd9Sstevel@tonic-gate 	WR(q)->q_ptr = (void *)rmp;
6147c478bd9Sstevel@tonic-gate 
6157c478bd9Sstevel@tonic-gate 	TRACE_1(TR_FAC_KRPC, TR_RPCMODOPEN_END, "rpcmodopen_end:(%s)", "end");
6167c478bd9Sstevel@tonic-gate 	return (0);
6177c478bd9Sstevel@tonic-gate }
6187c478bd9Sstevel@tonic-gate 
6197c478bd9Sstevel@tonic-gate /*
6207c478bd9Sstevel@tonic-gate  * rpcmodclose - This routine gets called when the module gets popped
6217c478bd9Sstevel@tonic-gate  * off of the stream.
6227c478bd9Sstevel@tonic-gate  */
6237c478bd9Sstevel@tonic-gate /*ARGSUSED*/
6247c478bd9Sstevel@tonic-gate int
rpcmodclose(queue_t * q,int flag,cred_t * crp)6257c478bd9Sstevel@tonic-gate rpcmodclose(queue_t *q, int flag, cred_t *crp)
6267c478bd9Sstevel@tonic-gate {
6277c478bd9Sstevel@tonic-gate 	struct rpcm *rmp;
6287c478bd9Sstevel@tonic-gate 
6297c478bd9Sstevel@tonic-gate 	ASSERT(q != NULL);
6307c478bd9Sstevel@tonic-gate 	rmp = (struct rpcm *)q->q_ptr;
6317c478bd9Sstevel@tonic-gate 
6327c478bd9Sstevel@tonic-gate 	/*
6337c478bd9Sstevel@tonic-gate 	 * Mark our state as closing.
6347c478bd9Sstevel@tonic-gate 	 */
6357c478bd9Sstevel@tonic-gate 	mutex_enter(&rmp->rm_lock);
6367c478bd9Sstevel@tonic-gate 	rmp->rm_state |= RM_CLOSING;
6377c478bd9Sstevel@tonic-gate 
6387c478bd9Sstevel@tonic-gate 	/*
6397c478bd9Sstevel@tonic-gate 	 * Check and see if there are any messages on the queue.  If so, send
6407c478bd9Sstevel@tonic-gate 	 * the messages, regardless whether the downstream module is ready to
6417c478bd9Sstevel@tonic-gate 	 * accept data.
6427c478bd9Sstevel@tonic-gate 	 */
6437c478bd9Sstevel@tonic-gate 	if (rmp->rm_type == RPC_SERVER) {
6447c478bd9Sstevel@tonic-gate 		flushq(q, FLUSHDATA);
6457c478bd9Sstevel@tonic-gate 
6467c478bd9Sstevel@tonic-gate 		qenable(WR(q));
6477c478bd9Sstevel@tonic-gate 
6487c478bd9Sstevel@tonic-gate 		if (rmp->rm_ref) {
6497c478bd9Sstevel@tonic-gate 			mutex_exit(&rmp->rm_lock);
6507c478bd9Sstevel@tonic-gate 			/*
6517c478bd9Sstevel@tonic-gate 			 * call into SVC to clean the queue
6527c478bd9Sstevel@tonic-gate 			 */
6537c478bd9Sstevel@tonic-gate 			svc_queueclean(q);
6547c478bd9Sstevel@tonic-gate 			mutex_enter(&rmp->rm_lock);
6557c478bd9Sstevel@tonic-gate 
6567c478bd9Sstevel@tonic-gate 			/*
6577c478bd9Sstevel@tonic-gate 			 * Block while there are kRPC threads with a reference
6587c478bd9Sstevel@tonic-gate 			 * to this message.
6597c478bd9Sstevel@tonic-gate 			 */
6607c478bd9Sstevel@tonic-gate 			while (rmp->rm_ref)
6617c478bd9Sstevel@tonic-gate 				cv_wait(&rmp->rm_cwait, &rmp->rm_lock);
6627c478bd9Sstevel@tonic-gate 		}
6637c478bd9Sstevel@tonic-gate 
6647c478bd9Sstevel@tonic-gate 		mutex_exit(&rmp->rm_lock);
6657c478bd9Sstevel@tonic-gate 
6667c478bd9Sstevel@tonic-gate 		/*
6677c478bd9Sstevel@tonic-gate 		 * It is now safe to remove this queue from the stream. No kRPC
6687c478bd9Sstevel@tonic-gate 		 * threads have a reference to the stream, and none ever will,
6697c478bd9Sstevel@tonic-gate 		 * because RM_CLOSING is set.
6707c478bd9Sstevel@tonic-gate 		 */
6717c478bd9Sstevel@tonic-gate 		qprocsoff(q);
6727c478bd9Sstevel@tonic-gate 
6737c478bd9Sstevel@tonic-gate 		/* Notify kRPC that this stream is going away. */
6747c478bd9Sstevel@tonic-gate 		svc_queueclose(q);
6757c478bd9Sstevel@tonic-gate 	} else {
6767c478bd9Sstevel@tonic-gate 		mutex_exit(&rmp->rm_lock);
6777c478bd9Sstevel@tonic-gate 		qprocsoff(q);
6787c478bd9Sstevel@tonic-gate 	}
6797c478bd9Sstevel@tonic-gate 
6807c478bd9Sstevel@tonic-gate 	q->q_ptr = NULL;
6817c478bd9Sstevel@tonic-gate 	WR(q)->q_ptr = NULL;
6827c478bd9Sstevel@tonic-gate 	mutex_destroy(&rmp->rm_lock);
6837c478bd9Sstevel@tonic-gate 	cv_destroy(&rmp->rm_cwait);
6847c478bd9Sstevel@tonic-gate 	kmem_free(rmp, sizeof (*rmp));
6857c478bd9Sstevel@tonic-gate 	return (0);
6867c478bd9Sstevel@tonic-gate }
6877c478bd9Sstevel@tonic-gate 
6887c478bd9Sstevel@tonic-gate /*
6897c478bd9Sstevel@tonic-gate  * rpcmodrput -	Module read put procedure.  This is called from
6907c478bd9Sstevel@tonic-gate  *		the module, driver, or stream head downstream.
6917c478bd9Sstevel@tonic-gate  */
6927c478bd9Sstevel@tonic-gate void
rpcmodrput(queue_t * q,mblk_t * mp)6937c478bd9Sstevel@tonic-gate rpcmodrput(queue_t *q, mblk_t *mp)
6947c478bd9Sstevel@tonic-gate {
6957c478bd9Sstevel@tonic-gate 	struct rpcm *rmp;
6967c478bd9Sstevel@tonic-gate 	union T_primitives *pptr;
6977c478bd9Sstevel@tonic-gate 	int hdrsz;
6987c478bd9Sstevel@tonic-gate 
6997c478bd9Sstevel@tonic-gate 	TRACE_0(TR_FAC_KRPC, TR_RPCMODRPUT_START, "rpcmodrput_start:");
7007c478bd9Sstevel@tonic-gate 
7017c478bd9Sstevel@tonic-gate 	ASSERT(q != NULL);
7027c478bd9Sstevel@tonic-gate 	rmp = (struct rpcm *)q->q_ptr;
7037c478bd9Sstevel@tonic-gate 
7047c478bd9Sstevel@tonic-gate 	if (rmp->rm_type == 0) {
7057c478bd9Sstevel@tonic-gate 		freemsg(mp);
7067c478bd9Sstevel@tonic-gate 		return;
7077c478bd9Sstevel@tonic-gate 	}
7087c478bd9Sstevel@tonic-gate 
7097c478bd9Sstevel@tonic-gate 	switch (mp->b_datap->db_type) {
7107c478bd9Sstevel@tonic-gate 	default:
7117c478bd9Sstevel@tonic-gate 		putnext(q, mp);
7127c478bd9Sstevel@tonic-gate 		break;
7137c478bd9Sstevel@tonic-gate 
7147c478bd9Sstevel@tonic-gate 	case M_PROTO:
7157c478bd9Sstevel@tonic-gate 	case M_PCPROTO:
7167c478bd9Sstevel@tonic-gate 		ASSERT((mp->b_wptr - mp->b_rptr) >= sizeof (int32_t));
7177c478bd9Sstevel@tonic-gate 		pptr = (union T_primitives *)mp->b_rptr;
7187c478bd9Sstevel@tonic-gate 
7197c478bd9Sstevel@tonic-gate 		/*
7202695d4f4SMarcel Telka 		 * Forward this message to kRPC if it is data.
7217c478bd9Sstevel@tonic-gate 		 */
7227c478bd9Sstevel@tonic-gate 		if (pptr->type == T_UNITDATA_IND) {
7232695d4f4SMarcel Telka 			/*
7242695d4f4SMarcel Telka 			 * Check if the module is being popped.
7252695d4f4SMarcel Telka 			 */
72607e75131Sgt 			mutex_enter(&rmp->rm_lock);
72707e75131Sgt 			if (rmp->rm_state & RM_CLOSING) {
72807e75131Sgt 				mutex_exit(&rmp->rm_lock);
72907e75131Sgt 				putnext(q, mp);
73007e75131Sgt 				break;
73107e75131Sgt 			}
7327c478bd9Sstevel@tonic-gate 
73307e75131Sgt 			switch (rmp->rm_type) {
73407e75131Sgt 			case RPC_CLIENT:
73507e75131Sgt 				mutex_exit(&rmp->rm_lock);
73607e75131Sgt 				hdrsz = mp->b_wptr - mp->b_rptr;
7377c478bd9Sstevel@tonic-gate 
73807e75131Sgt 				/*
73907e75131Sgt 				 * Make sure the header is sane.
74007e75131Sgt 				 */
74107e75131Sgt 				if (hdrsz < TUNITDATAINDSZ ||
74207e75131Sgt 				    hdrsz < (pptr->unitdata_ind.OPT_length +
74307e75131Sgt 				    pptr->unitdata_ind.OPT_offset) ||
74407e75131Sgt 				    hdrsz < (pptr->unitdata_ind.SRC_length +
74507e75131Sgt 				    pptr->unitdata_ind.SRC_offset)) {
7467c478bd9Sstevel@tonic-gate 					freemsg(mp);
7477c478bd9Sstevel@tonic-gate 					return;
74807e75131Sgt 				}
7497c478bd9Sstevel@tonic-gate 
7507c478bd9Sstevel@tonic-gate 				/*
75107e75131Sgt 				 * Call clnt_clts_dispatch_notify, so that it
75207e75131Sgt 				 * can pass the message to the proper caller.
75307e75131Sgt 				 * Don't discard the header just yet since the
75407e75131Sgt 				 * client may need the sender's address.
7557c478bd9Sstevel@tonic-gate 				 */
75607e75131Sgt 				clnt_clts_dispatch_notify(mp, hdrsz,
75707e75131Sgt 				    rmp->rm_zoneid);
75807e75131Sgt 				return;
75907e75131Sgt 			case RPC_SERVER:
7607c478bd9Sstevel@tonic-gate 				/*
76107e75131Sgt 				 * rm_krpc_cell is exclusively used by the kRPC
7622695d4f4SMarcel Telka 				 * CLTS server. Try to submit the message to
7632695d4f4SMarcel Telka 				 * kRPC. Since this is an unreliable channel, we
7642695d4f4SMarcel Telka 				 * can just free the message in case the kRPC
7652695d4f4SMarcel Telka 				 * does not accept new messages.
7667c478bd9Sstevel@tonic-gate 				 */
7672695d4f4SMarcel Telka 				if (rmp->rm_krpc_cell &&
7682695d4f4SMarcel Telka 				    svc_queuereq(q, mp, TRUE)) {
76907e75131Sgt 					/*
77007e75131Sgt 					 * Raise the reference count on this
77107e75131Sgt 					 * module to prevent it from being
7722695d4f4SMarcel Telka 					 * popped before kRPC generates the
77307e75131Sgt 					 * reply.
77407e75131Sgt 					 */
7757c478bd9Sstevel@tonic-gate 					rmp->rm_ref++;
7767c478bd9Sstevel@tonic-gate 					mutex_exit(&rmp->rm_lock);
77707e75131Sgt 				} else {
77807e75131Sgt 					mutex_exit(&rmp->rm_lock);
77907e75131Sgt 					freemsg(mp);
78007e75131Sgt 				}
78107e75131Sgt 				return;
78207e75131Sgt 			default:
7837c478bd9Sstevel@tonic-gate 				mutex_exit(&rmp->rm_lock);
7847c478bd9Sstevel@tonic-gate 				freemsg(mp);
78507e75131Sgt 				return;
78607e75131Sgt 			} /* end switch(rmp->rm_type) */
78707e75131Sgt 		} else if (pptr->type == T_UDERROR_IND) {
78807e75131Sgt 			mutex_enter(&rmp->rm_lock);
78907e75131Sgt 			hdrsz = mp->b_wptr - mp->b_rptr;
79007e75131Sgt 
79107e75131Sgt 			/*
79207e75131Sgt 			 * Make sure the header is sane
79307e75131Sgt 			 */
79407e75131Sgt 			if (hdrsz < TUDERRORINDSZ ||
79507e75131Sgt 			    hdrsz < (pptr->uderror_ind.OPT_length +
79607e75131Sgt 			    pptr->uderror_ind.OPT_offset) ||
79707e75131Sgt 			    hdrsz < (pptr->uderror_ind.DEST_length +
79807e75131Sgt 			    pptr->uderror_ind.DEST_offset)) {
79907e75131Sgt 				mutex_exit(&rmp->rm_lock);
80007e75131Sgt 				freemsg(mp);
80107e75131Sgt 				return;
8027c478bd9Sstevel@tonic-gate 			}
80307e75131Sgt 
80407e75131Sgt 			/*
80507e75131Sgt 			 * In the case where a unit data error has been
80607e75131Sgt 			 * received, all we need to do is clear the message from
80707e75131Sgt 			 * the queue.
80807e75131Sgt 			 */
8097c478bd9Sstevel@tonic-gate 			mutex_exit(&rmp->rm_lock);
8107c478bd9Sstevel@tonic-gate 			freemsg(mp);
81107e75131Sgt 			RPCLOG(32, "rpcmodrput: unitdata error received at "
81207e75131Sgt 			    "%ld\n", gethrestime_sec());
8137c478bd9Sstevel@tonic-gate 			return;
8147c478bd9Sstevel@tonic-gate 		} /* end else if (pptr->type == T_UDERROR_IND) */
8157c478bd9Sstevel@tonic-gate 
8167c478bd9Sstevel@tonic-gate 		putnext(q, mp);
8177c478bd9Sstevel@tonic-gate 		break;
8187c478bd9Sstevel@tonic-gate 	} /* end switch (mp->b_datap->db_type) */
8197c478bd9Sstevel@tonic-gate 
8207c478bd9Sstevel@tonic-gate 	TRACE_0(TR_FAC_KRPC, TR_RPCMODRPUT_END,
82107e75131Sgt 	    "rpcmodrput_end:");
8227c478bd9Sstevel@tonic-gate 	/*
8237c478bd9Sstevel@tonic-gate 	 * Return codes are not looked at by the STREAMS framework.
8247c478bd9Sstevel@tonic-gate 	 */
8257c478bd9Sstevel@tonic-gate }
8267c478bd9Sstevel@tonic-gate 
8277c478bd9Sstevel@tonic-gate /*
8287c478bd9Sstevel@tonic-gate  * write put procedure
8297c478bd9Sstevel@tonic-gate  */
8307c478bd9Sstevel@tonic-gate void
rpcmodwput(queue_t * q,mblk_t * mp)8317c478bd9Sstevel@tonic-gate rpcmodwput(queue_t *q, mblk_t *mp)
8327c478bd9Sstevel@tonic-gate {
8337c478bd9Sstevel@tonic-gate 	struct rpcm	*rmp;
8347c478bd9Sstevel@tonic-gate 
8357c478bd9Sstevel@tonic-gate 	ASSERT(q != NULL);
8367c478bd9Sstevel@tonic-gate 
8377c478bd9Sstevel@tonic-gate 	switch (mp->b_datap->db_type) {
83807e75131Sgt 		case M_PROTO:
83907e75131Sgt 		case M_PCPROTO:
84007e75131Sgt 			break;
84107e75131Sgt 		default:
84207e75131Sgt 			rpcmodwput_other(q, mp);
84307e75131Sgt 			return;
8447c478bd9Sstevel@tonic-gate 	}
8457c478bd9Sstevel@tonic-gate 
8467c478bd9Sstevel@tonic-gate 	/*
8477c478bd9Sstevel@tonic-gate 	 * Check to see if we can send the message downstream.
8487c478bd9Sstevel@tonic-gate 	 */
8497c478bd9Sstevel@tonic-gate 	if (canputnext(q)) {
8507c478bd9Sstevel@tonic-gate 		putnext(q, mp);
8517c478bd9Sstevel@tonic-gate 		return;
8527c478bd9Sstevel@tonic-gate 	}
8537c478bd9Sstevel@tonic-gate 
8547c478bd9Sstevel@tonic-gate 	rmp = (struct rpcm *)q->q_ptr;
8557c478bd9Sstevel@tonic-gate 	ASSERT(rmp != NULL);
8567c478bd9Sstevel@tonic-gate 
8577c478bd9Sstevel@tonic-gate 	/*
8587c478bd9Sstevel@tonic-gate 	 * The first canputnext failed.  Try again except this time with the
8597c478bd9Sstevel@tonic-gate 	 * lock held, so that we can check the state of the stream to see if
8607c478bd9Sstevel@tonic-gate 	 * it is closing.  If either of these conditions evaluate to true
8617c478bd9Sstevel@tonic-gate 	 * then send the meesage.
8627c478bd9Sstevel@tonic-gate 	 */
8637c478bd9Sstevel@tonic-gate 	mutex_enter(&rmp->rm_lock);
8647c478bd9Sstevel@tonic-gate 	if (canputnext(q) || (rmp->rm_state & RM_CLOSING)) {
8657c478bd9Sstevel@tonic-gate 		mutex_exit(&rmp->rm_lock);
8667c478bd9Sstevel@tonic-gate 		putnext(q, mp);
8677c478bd9Sstevel@tonic-gate 	} else {
8687c478bd9Sstevel@tonic-gate 		/*
8697c478bd9Sstevel@tonic-gate 		 * canputnext failed again and the stream is not closing.
8707c478bd9Sstevel@tonic-gate 		 * Place the message on the queue and let the service
8717c478bd9Sstevel@tonic-gate 		 * procedure handle the message.
8727c478bd9Sstevel@tonic-gate 		 */
8737c478bd9Sstevel@tonic-gate 		mutex_exit(&rmp->rm_lock);
8747c478bd9Sstevel@tonic-gate 		(void) putq(q, mp);
8757c478bd9Sstevel@tonic-gate 	}
8767c478bd9Sstevel@tonic-gate }
8777c478bd9Sstevel@tonic-gate 
8787c478bd9Sstevel@tonic-gate static void
rpcmodwput_other(queue_t * q,mblk_t * mp)8797c478bd9Sstevel@tonic-gate rpcmodwput_other(queue_t *q, mblk_t *mp)
8807c478bd9Sstevel@tonic-gate {
8817c478bd9Sstevel@tonic-gate 	struct rpcm	*rmp;
8827c478bd9Sstevel@tonic-gate 	struct iocblk	*iocp;
8837c478bd9Sstevel@tonic-gate 
8847c478bd9Sstevel@tonic-gate 	rmp = (struct rpcm *)q->q_ptr;
8857c478bd9Sstevel@tonic-gate 	ASSERT(rmp != NULL);
8867c478bd9Sstevel@tonic-gate 
8877c478bd9Sstevel@tonic-gate 	switch (mp->b_datap->db_type) {
8887c478bd9Sstevel@tonic-gate 		case M_IOCTL:
8897c478bd9Sstevel@tonic-gate 			iocp = (struct iocblk *)mp->b_rptr;
8907c478bd9Sstevel@tonic-gate 			ASSERT(iocp != NULL);
8917c478bd9Sstevel@tonic-gate 			switch (iocp->ioc_cmd) {
89207e75131Sgt 				case RPC_CLIENT:
89307e75131Sgt 				case RPC_SERVER:
89407e75131Sgt 					mutex_enter(&rmp->rm_lock);
89507e75131Sgt 					rmp->rm_type = iocp->ioc_cmd;
89607e75131Sgt 					mutex_exit(&rmp->rm_lock);
89707e75131Sgt 					mp->b_datap->db_type = M_IOCACK;
89807e75131Sgt 					qreply(q, mp);
89907e75131Sgt 					return;
90007e75131Sgt 				default:
9017c478bd9Sstevel@tonic-gate 				/*
9027c478bd9Sstevel@tonic-gate 				 * pass the ioctl downstream and hope someone
9037c478bd9Sstevel@tonic-gate 				 * down there knows how to handle it.
9047c478bd9Sstevel@tonic-gate 				 */
90507e75131Sgt 					putnext(q, mp);
90607e75131Sgt 					return;
9077c478bd9Sstevel@tonic-gate 			}
9087c478bd9Sstevel@tonic-gate 		default:
9097c478bd9Sstevel@tonic-gate 			break;
9107c478bd9Sstevel@tonic-gate 	}
9117c478bd9Sstevel@tonic-gate 	/*
9127c478bd9Sstevel@tonic-gate 	 * This is something we definitely do not know how to handle, just
9137c478bd9Sstevel@tonic-gate 	 * pass the message downstream
9147c478bd9Sstevel@tonic-gate 	 */
9157c478bd9Sstevel@tonic-gate 	putnext(q, mp);
9167c478bd9Sstevel@tonic-gate }
9177c478bd9Sstevel@tonic-gate 
9187c478bd9Sstevel@tonic-gate /*
9197c478bd9Sstevel@tonic-gate  * Module write service procedure. This is called by downstream modules
9207c478bd9Sstevel@tonic-gate  * for back enabling during flow control.
9217c478bd9Sstevel@tonic-gate  */
9227c478bd9Sstevel@tonic-gate void
rpcmodwsrv(queue_t * q)9237c478bd9Sstevel@tonic-gate rpcmodwsrv(queue_t *q)
9247c478bd9Sstevel@tonic-gate {
9257c478bd9Sstevel@tonic-gate 	struct rpcm	*rmp;
9267c478bd9Sstevel@tonic-gate 	mblk_t		*mp = NULL;
9277c478bd9Sstevel@tonic-gate 
9287c478bd9Sstevel@tonic-gate 	rmp = (struct rpcm *)q->q_ptr;
9297c478bd9Sstevel@tonic-gate 	ASSERT(rmp != NULL);
9307c478bd9Sstevel@tonic-gate 
9317c478bd9Sstevel@tonic-gate 	/*
9327c478bd9Sstevel@tonic-gate 	 * Get messages that may be queued and send them down stream
9337c478bd9Sstevel@tonic-gate 	 */
9347c478bd9Sstevel@tonic-gate 	while ((mp = getq(q)) != NULL) {
9357c478bd9Sstevel@tonic-gate 		/*
9367c478bd9Sstevel@tonic-gate 		 * Optimize the service procedure for the server-side, by
9377c478bd9Sstevel@tonic-gate 		 * avoiding a call to canputnext().
9387c478bd9Sstevel@tonic-gate 		 */
9397c478bd9Sstevel@tonic-gate 		if (rmp->rm_type == RPC_SERVER || canputnext(q)) {
9407c478bd9Sstevel@tonic-gate 			putnext(q, mp);
9417c478bd9Sstevel@tonic-gate 			continue;
9427c478bd9Sstevel@tonic-gate 		}
9437c478bd9Sstevel@tonic-gate 		(void) putbq(q, mp);
9447c478bd9Sstevel@tonic-gate 		return;
9457c478bd9Sstevel@tonic-gate 	}
9467c478bd9Sstevel@tonic-gate }
9477c478bd9Sstevel@tonic-gate 
9484a3b0527SAndy Fiddaman void
rpcmod_hold(queue_t * q)9494a3b0527SAndy Fiddaman rpcmod_hold(queue_t *q)
9504a3b0527SAndy Fiddaman {
9514a3b0527SAndy Fiddaman 	struct rpcm *rmp = (struct rpcm *)q->q_ptr;
9524a3b0527SAndy Fiddaman 
9534a3b0527SAndy Fiddaman 	mutex_enter(&rmp->rm_lock);
9544a3b0527SAndy Fiddaman 	rmp->rm_ref++;
9554a3b0527SAndy Fiddaman 	mutex_exit(&rmp->rm_lock);
9564a3b0527SAndy Fiddaman }
9574a3b0527SAndy Fiddaman 
9584a3b0527SAndy Fiddaman void
rpcmod_release(queue_t * q,mblk_t * bp,bool_t enable __unused)9594dfd3a95SToomas Soome rpcmod_release(queue_t *q, mblk_t *bp, bool_t enable __unused)
9607c478bd9Sstevel@tonic-gate {
9617c478bd9Sstevel@tonic-gate 	struct rpcm *rmp;
9627c478bd9Sstevel@tonic-gate 
9637c478bd9Sstevel@tonic-gate 	/*
9647c478bd9Sstevel@tonic-gate 	 * For now, just free the message.
9657c478bd9Sstevel@tonic-gate 	 */
9667c478bd9Sstevel@tonic-gate 	if (bp)
9677c478bd9Sstevel@tonic-gate 		freemsg(bp);
9687c478bd9Sstevel@tonic-gate 	rmp = (struct rpcm *)q->q_ptr;
9697c478bd9Sstevel@tonic-gate 
9707c478bd9Sstevel@tonic-gate 	mutex_enter(&rmp->rm_lock);
9717c478bd9Sstevel@tonic-gate 	rmp->rm_ref--;
9727c478bd9Sstevel@tonic-gate 
9737c478bd9Sstevel@tonic-gate 	if (rmp->rm_ref == 0 && (rmp->rm_state & RM_CLOSING)) {
9747c478bd9Sstevel@tonic-gate 		cv_broadcast(&rmp->rm_cwait);
9757c478bd9Sstevel@tonic-gate 	}
9767c478bd9Sstevel@tonic-gate 
9777c478bd9Sstevel@tonic-gate 	mutex_exit(&rmp->rm_lock);
9787c478bd9Sstevel@tonic-gate }
9797c478bd9Sstevel@tonic-gate 
9807c478bd9Sstevel@tonic-gate /*
9817c478bd9Sstevel@tonic-gate  * This part of rpcmod is pushed on a connection-oriented transport for use
9827c478bd9Sstevel@tonic-gate  * by RPC.  It serves to bypass the Stream head, implements
9837c478bd9Sstevel@tonic-gate  * the record marking protocol, and dispatches incoming RPC messages.
9847c478bd9Sstevel@tonic-gate  */
9857c478bd9Sstevel@tonic-gate 
9867c478bd9Sstevel@tonic-gate /* Default idle timer values */
9877c478bd9Sstevel@tonic-gate #define	MIR_CLNT_IDLE_TIMEOUT	(5 * (60 * 1000L))	/* 5 minutes */
9887c478bd9Sstevel@tonic-gate #define	MIR_SVC_IDLE_TIMEOUT	(6 * (60 * 1000L))	/* 6 minutes */
9897c478bd9Sstevel@tonic-gate #define	MIR_SVC_ORDREL_TIMEOUT	(10 * (60 * 1000L))	/* 10 minutes */
9907c478bd9Sstevel@tonic-gate #define	MIR_LASTFRAG	0x80000000	/* Record marker */
9917c478bd9Sstevel@tonic-gate 
9927c478bd9Sstevel@tonic-gate #define	MIR_SVC_QUIESCED(mir)	\
9937c478bd9Sstevel@tonic-gate 	(mir->mir_ref_cnt == 0 && mir->mir_inrservice == 0)
9947c478bd9Sstevel@tonic-gate 
9957c478bd9Sstevel@tonic-gate #define	MIR_CLEAR_INRSRV(mir_ptr)	{	\
9967c478bd9Sstevel@tonic-gate 	(mir_ptr)->mir_inrservice = 0;	\
9977c478bd9Sstevel@tonic-gate 	if ((mir_ptr)->mir_type == RPC_SERVER &&	\
9987c478bd9Sstevel@tonic-gate 		(mir_ptr)->mir_closing)	\
9997c478bd9Sstevel@tonic-gate 		cv_signal(&(mir_ptr)->mir_condvar);	\
10007c478bd9Sstevel@tonic-gate }
10017c478bd9Sstevel@tonic-gate 
10027c478bd9Sstevel@tonic-gate /*
10037c478bd9Sstevel@tonic-gate  * Don't block service procedure (and mir_close) if
10047c478bd9Sstevel@tonic-gate  * we are in the process of closing.
10057c478bd9Sstevel@tonic-gate  */
10067c478bd9Sstevel@tonic-gate #define	MIR_WCANPUTNEXT(mir_ptr, write_q)	\
10077c478bd9Sstevel@tonic-gate 	(canputnext(write_q) || ((mir_ptr)->mir_svc_no_more_msgs == 1))
10087c478bd9Sstevel@tonic-gate 
10097c478bd9Sstevel@tonic-gate static int	mir_clnt_dup_request(queue_t *q, mblk_t *mp);
10107c478bd9Sstevel@tonic-gate static void	mir_rput_proto(queue_t *q, mblk_t *mp);
10117c478bd9Sstevel@tonic-gate static int	mir_svc_policy_notify(queue_t *q, int event);
10127c478bd9Sstevel@tonic-gate static void	mir_svc_start(queue_t *wq);
10137c478bd9Sstevel@tonic-gate static void	mir_svc_idle_start(queue_t *, mir_t *);
10147c478bd9Sstevel@tonic-gate static void	mir_svc_idle_stop(queue_t *, mir_t *);
10157c478bd9Sstevel@tonic-gate static void	mir_svc_start_close(queue_t *, mir_t *);
10167c478bd9Sstevel@tonic-gate static void	mir_clnt_idle_do_stop(queue_t *);
10177c478bd9Sstevel@tonic-gate static void	mir_clnt_idle_stop(queue_t *, mir_t *);
10187c478bd9Sstevel@tonic-gate static void	mir_clnt_idle_start(queue_t *, mir_t *);
10197c478bd9Sstevel@tonic-gate static void	mir_wput(queue_t *q, mblk_t *mp);
10207c478bd9Sstevel@tonic-gate static void	mir_wput_other(queue_t *q, mblk_t *mp);
10217c478bd9Sstevel@tonic-gate static void	mir_wsrv(queue_t *q);
10227c478bd9Sstevel@tonic-gate static	void	mir_disconnect(queue_t *, mir_t *ir);
10233b3b7026SMarcel Telka static	int	mir_check_len(queue_t *, mblk_t *);
10247c478bd9Sstevel@tonic-gate static	void	mir_timer(void *);
10257c478bd9Sstevel@tonic-gate 
10267c478bd9Sstevel@tonic-gate extern void	(*mir_start)(queue_t *);
10277c478bd9Sstevel@tonic-gate extern void	(*clnt_stop_idle)(queue_t *);
10287c478bd9Sstevel@tonic-gate 
10297c478bd9Sstevel@tonic-gate clock_t	clnt_idle_timeout = MIR_CLNT_IDLE_TIMEOUT;
10307c478bd9Sstevel@tonic-gate clock_t	svc_idle_timeout = MIR_SVC_IDLE_TIMEOUT;
10317c478bd9Sstevel@tonic-gate 
10327c478bd9Sstevel@tonic-gate /*
10337c478bd9Sstevel@tonic-gate  * Timeout for subsequent notifications of idle connection.  This is
10347c478bd9Sstevel@tonic-gate  * typically used to clean up after a wedged orderly release.
10357c478bd9Sstevel@tonic-gate  */
10367c478bd9Sstevel@tonic-gate clock_t	svc_ordrel_timeout = MIR_SVC_ORDREL_TIMEOUT; /* milliseconds */
10377c478bd9Sstevel@tonic-gate 
10387c478bd9Sstevel@tonic-gate extern	uint_t	*clnt_max_msg_sizep;
10397c478bd9Sstevel@tonic-gate extern	uint_t	*svc_max_msg_sizep;
10407c478bd9Sstevel@tonic-gate uint_t	clnt_max_msg_size = RPC_MAXDATASIZE;
10417c478bd9Sstevel@tonic-gate uint_t	svc_max_msg_size = RPC_MAXDATASIZE;
10427c478bd9Sstevel@tonic-gate uint_t	mir_krpc_cell_null;
10437c478bd9Sstevel@tonic-gate 
10447c478bd9Sstevel@tonic-gate static void
mir_timer_stop(mir_t * mir)10457c478bd9Sstevel@tonic-gate mir_timer_stop(mir_t *mir)
10467c478bd9Sstevel@tonic-gate {
10477c478bd9Sstevel@tonic-gate 	timeout_id_t tid;
10487c478bd9Sstevel@tonic-gate 
10497c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&mir->mir_mutex));
10507c478bd9Sstevel@tonic-gate 
10517c478bd9Sstevel@tonic-gate 	/*
10527c478bd9Sstevel@tonic-gate 	 * Since the mir_mutex lock needs to be released to call
10537c478bd9Sstevel@tonic-gate 	 * untimeout(), we need to make sure that no other thread
10547c478bd9Sstevel@tonic-gate 	 * can start/stop the timer (changing mir_timer_id) during
10557c478bd9Sstevel@tonic-gate 	 * that time.  The mir_timer_call bit and the mir_timer_cv
10567c478bd9Sstevel@tonic-gate 	 * condition variable are used to synchronize this.  Setting
10577c478bd9Sstevel@tonic-gate 	 * mir_timer_call also tells mir_timer() (refer to the comments
10587c478bd9Sstevel@tonic-gate 	 * in mir_timer()) that it does not need to do anything.
10597c478bd9Sstevel@tonic-gate 	 */
10607c478bd9Sstevel@tonic-gate 	while (mir->mir_timer_call)
10617c478bd9Sstevel@tonic-gate 		cv_wait(&mir->mir_timer_cv, &mir->mir_mutex);
10627c478bd9Sstevel@tonic-gate 	mir->mir_timer_call = B_TRUE;
10637c478bd9Sstevel@tonic-gate 
10647c478bd9Sstevel@tonic-gate 	if ((tid = mir->mir_timer_id) != 0) {
10657c478bd9Sstevel@tonic-gate 		mir->mir_timer_id = 0;
10667c478bd9Sstevel@tonic-gate 		mutex_exit(&mir->mir_mutex);
10677c478bd9Sstevel@tonic-gate 		(void) untimeout(tid);
10687c478bd9Sstevel@tonic-gate 		mutex_enter(&mir->mir_mutex);
10697c478bd9Sstevel@tonic-gate 	}
10707c478bd9Sstevel@tonic-gate 	mir->mir_timer_call = B_FALSE;
10717c478bd9Sstevel@tonic-gate 	cv_broadcast(&mir->mir_timer_cv);
10727c478bd9Sstevel@tonic-gate }
10737c478bd9Sstevel@tonic-gate 
10747c478bd9Sstevel@tonic-gate static void
mir_timer_start(queue_t * q,mir_t * mir,clock_t intrvl)10757c478bd9Sstevel@tonic-gate mir_timer_start(queue_t *q, mir_t *mir, clock_t intrvl)
10767c478bd9Sstevel@tonic-gate {
10777c478bd9Sstevel@tonic-gate 	timeout_id_t tid;
10787c478bd9Sstevel@tonic-gate 
10797c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&mir->mir_mutex));
10807c478bd9Sstevel@tonic-gate 
10817c478bd9Sstevel@tonic-gate 	while (mir->mir_timer_call)
10827c478bd9Sstevel@tonic-gate 		cv_wait(&mir->mir_timer_cv, &mir->mir_mutex);
10837c478bd9Sstevel@tonic-gate 	mir->mir_timer_call = B_TRUE;
10847c478bd9Sstevel@tonic-gate 
10857c478bd9Sstevel@tonic-gate 	if ((tid = mir->mir_timer_id) != 0) {
10867c478bd9Sstevel@tonic-gate 		mutex_exit(&mir->mir_mutex);
10877c478bd9Sstevel@tonic-gate 		(void) untimeout(tid);
10887c478bd9Sstevel@tonic-gate 		mutex_enter(&mir->mir_mutex);
10897c478bd9Sstevel@tonic-gate 	}
10907c478bd9Sstevel@tonic-gate 	/* Only start the timer when it is not closing. */
10917c478bd9Sstevel@tonic-gate 	if (!mir->mir_closing) {
10927c478bd9Sstevel@tonic-gate 		mir->mir_timer_id = timeout(mir_timer, q,
10937c478bd9Sstevel@tonic-gate 		    MSEC_TO_TICK(intrvl));
10947c478bd9Sstevel@tonic-gate 	}
10957c478bd9Sstevel@tonic-gate 	mir->mir_timer_call = B_FALSE;
10967c478bd9Sstevel@tonic-gate 	cv_broadcast(&mir->mir_timer_cv);
10977c478bd9Sstevel@tonic-gate }
10987c478bd9Sstevel@tonic-gate 
10997c478bd9Sstevel@tonic-gate static int
mir_clnt_dup_request(queue_t * q,mblk_t * mp)11007c478bd9Sstevel@tonic-gate mir_clnt_dup_request(queue_t *q, mblk_t *mp)
11017c478bd9Sstevel@tonic-gate {
11027c478bd9Sstevel@tonic-gate 	mblk_t  *mp1;
11037c478bd9Sstevel@tonic-gate 	uint32_t  new_xid;
11047c478bd9Sstevel@tonic-gate 	uint32_t  old_xid;
11057c478bd9Sstevel@tonic-gate 
11067c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&((mir_t *)q->q_ptr)->mir_mutex));
11077c478bd9Sstevel@tonic-gate 	new_xid = BE32_TO_U32(&mp->b_rptr[4]);
11087c478bd9Sstevel@tonic-gate 	/*
11097c478bd9Sstevel@tonic-gate 	 * This loop is a bit tacky -- it walks the STREAMS list of
11107c478bd9Sstevel@tonic-gate 	 * flow-controlled messages.
11117c478bd9Sstevel@tonic-gate 	 */
11127c478bd9Sstevel@tonic-gate 	if ((mp1 = q->q_first) != NULL) {
11137c478bd9Sstevel@tonic-gate 		do {
11147c478bd9Sstevel@tonic-gate 			old_xid = BE32_TO_U32(&mp1->b_rptr[4]);
11157c478bd9Sstevel@tonic-gate 			if (new_xid == old_xid)
11167c478bd9Sstevel@tonic-gate 				return (1);
11177c478bd9Sstevel@tonic-gate 		} while ((mp1 = mp1->b_next) != NULL);
11187c478bd9Sstevel@tonic-gate 	}
11197c478bd9Sstevel@tonic-gate 	return (0);
11207c478bd9Sstevel@tonic-gate }
11217c478bd9Sstevel@tonic-gate 
11227c478bd9Sstevel@tonic-gate static int
mir_close(queue_t * q)11237c478bd9Sstevel@tonic-gate mir_close(queue_t *q)
11247c478bd9Sstevel@tonic-gate {
112575320802Smeem 	mir_t	*mir = q->q_ptr;
11267c478bd9Sstevel@tonic-gate 	mblk_t	*mp;
11277c478bd9Sstevel@tonic-gate 	bool_t queue_cleaned = FALSE;
11287c478bd9Sstevel@tonic-gate 
11297c478bd9Sstevel@tonic-gate 	RPCLOG(32, "rpcmod: mir_close of q 0x%p\n", (void *)q);
11307c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_NOT_HELD(&mir->mir_mutex));
11317c478bd9Sstevel@tonic-gate 	mutex_enter(&mir->mir_mutex);
11327c478bd9Sstevel@tonic-gate 	if ((mp = mir->mir_head_mp) != NULL) {
113375320802Smeem 		mir->mir_head_mp = NULL;
113475320802Smeem 		mir->mir_tail_mp = NULL;
11357c478bd9Sstevel@tonic-gate 		freemsg(mp);
11367c478bd9Sstevel@tonic-gate 	}
11377c478bd9Sstevel@tonic-gate 	/*
11387c478bd9Sstevel@tonic-gate 	 * Set mir_closing so we get notified when MIR_SVC_QUIESCED()
11397c478bd9Sstevel@tonic-gate 	 * is TRUE.  And mir_timer_start() won't start the timer again.
11407c478bd9Sstevel@tonic-gate 	 */
11417c478bd9Sstevel@tonic-gate 	mir->mir_closing = B_TRUE;
11427c478bd9Sstevel@tonic-gate 	mir_timer_stop(mir);
11437c478bd9Sstevel@tonic-gate 
11447c478bd9Sstevel@tonic-gate 	if (mir->mir_type == RPC_SERVER) {
11457c478bd9Sstevel@tonic-gate 		flushq(q, FLUSHDATA);	/* Ditch anything waiting on read q */
11467c478bd9Sstevel@tonic-gate 
11477c478bd9Sstevel@tonic-gate 		/*
11487c478bd9Sstevel@tonic-gate 		 * This will prevent more requests from arriving and
11497c478bd9Sstevel@tonic-gate 		 * will force rpcmod to ignore flow control.
11507c478bd9Sstevel@tonic-gate 		 */
11517c478bd9Sstevel@tonic-gate 		mir_svc_start_close(WR(q), mir);
11527c478bd9Sstevel@tonic-gate 
11537c478bd9Sstevel@tonic-gate 		while ((!MIR_SVC_QUIESCED(mir)) || mir->mir_inwservice == 1) {
11547c478bd9Sstevel@tonic-gate 
11557c478bd9Sstevel@tonic-gate 			if (mir->mir_ref_cnt && !mir->mir_inrservice &&
115607e75131Sgt 			    (queue_cleaned == FALSE)) {
11577c478bd9Sstevel@tonic-gate 				/*
11587c478bd9Sstevel@tonic-gate 				 * call into SVC to clean the queue
11597c478bd9Sstevel@tonic-gate 				 */
11607c478bd9Sstevel@tonic-gate 				mutex_exit(&mir->mir_mutex);
11617c478bd9Sstevel@tonic-gate 				svc_queueclean(q);
11627c478bd9Sstevel@tonic-gate 				queue_cleaned = TRUE;
11637c478bd9Sstevel@tonic-gate 				mutex_enter(&mir->mir_mutex);
11647c478bd9Sstevel@tonic-gate 				continue;
11657c478bd9Sstevel@tonic-gate 			}
11667c478bd9Sstevel@tonic-gate 
11677c478bd9Sstevel@tonic-gate 			/*
11687c478bd9Sstevel@tonic-gate 			 * Bugid 1253810 - Force the write service
11697c478bd9Sstevel@tonic-gate 			 * procedure to send its messages, regardless
11707c478bd9Sstevel@tonic-gate 			 * whether the downstream  module is ready
11717c478bd9Sstevel@tonic-gate 			 * to accept data.
11727c478bd9Sstevel@tonic-gate 			 */
11737c478bd9Sstevel@tonic-gate 			if (mir->mir_inwservice == 1)
11747c478bd9Sstevel@tonic-gate 				qenable(WR(q));
11757c478bd9Sstevel@tonic-gate 
11767c478bd9Sstevel@tonic-gate 			cv_wait(&mir->mir_condvar, &mir->mir_mutex);
11777c478bd9Sstevel@tonic-gate 		}
11787c478bd9Sstevel@tonic-gate 
11797c478bd9Sstevel@tonic-gate 		mutex_exit(&mir->mir_mutex);
11807c478bd9Sstevel@tonic-gate 		qprocsoff(q);
11817c478bd9Sstevel@tonic-gate 
11822695d4f4SMarcel Telka 		/* Notify kRPC that this stream is going away. */
11837c478bd9Sstevel@tonic-gate 		svc_queueclose(q);
11847c478bd9Sstevel@tonic-gate 	} else {
11857c478bd9Sstevel@tonic-gate 		mutex_exit(&mir->mir_mutex);
11867c478bd9Sstevel@tonic-gate 		qprocsoff(q);
11877c478bd9Sstevel@tonic-gate 	}
11887c478bd9Sstevel@tonic-gate 
11897c478bd9Sstevel@tonic-gate 	mutex_destroy(&mir->mir_mutex);
11907c478bd9Sstevel@tonic-gate 	cv_destroy(&mir->mir_condvar);
11917c478bd9Sstevel@tonic-gate 	cv_destroy(&mir->mir_timer_cv);
11927c478bd9Sstevel@tonic-gate 	kmem_free(mir, sizeof (mir_t));
11937c478bd9Sstevel@tonic-gate 	return (0);
11947c478bd9Sstevel@tonic-gate }
11957c478bd9Sstevel@tonic-gate 
11967c478bd9Sstevel@tonic-gate /*
11977c478bd9Sstevel@tonic-gate  * This is server side only (RPC_SERVER).
11987c478bd9Sstevel@tonic-gate  *
11997c478bd9Sstevel@tonic-gate  * Exit idle mode.
12007c478bd9Sstevel@tonic-gate  */
12017c478bd9Sstevel@tonic-gate static void
mir_svc_idle_stop(queue_t * q,mir_t * mir)12027c478bd9Sstevel@tonic-gate mir_svc_idle_stop(queue_t *q, mir_t *mir)
12037c478bd9Sstevel@tonic-gate {
12047c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&mir->mir_mutex));
12057c478bd9Sstevel@tonic-gate 	ASSERT((q->q_flag & QREADR) == 0);
12067c478bd9Sstevel@tonic-gate 	ASSERT(mir->mir_type == RPC_SERVER);
12077c478bd9Sstevel@tonic-gate 	RPCLOG(16, "rpcmod: mir_svc_idle_stop of q 0x%p\n", (void *)q);
12087c478bd9Sstevel@tonic-gate 
12097c478bd9Sstevel@tonic-gate 	mir_timer_stop(mir);
12107c478bd9Sstevel@tonic-gate }
12117c478bd9Sstevel@tonic-gate 
12127c478bd9Sstevel@tonic-gate /*
12137c478bd9Sstevel@tonic-gate  * This is server side only (RPC_SERVER).
12147c478bd9Sstevel@tonic-gate  *
12157c478bd9Sstevel@tonic-gate  * Start idle processing, which will include setting idle timer if the
12167c478bd9Sstevel@tonic-gate  * stream is not being closed.
12177c478bd9Sstevel@tonic-gate  */
12187c478bd9Sstevel@tonic-gate static void
mir_svc_idle_start(queue_t * q,mir_t * mir)12197c478bd9Sstevel@tonic-gate mir_svc_idle_start(queue_t *q, mir_t *mir)
12207c478bd9Sstevel@tonic-gate {
12217c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&mir->mir_mutex));
12227c478bd9Sstevel@tonic-gate 	ASSERT((q->q_flag & QREADR) == 0);
12237c478bd9Sstevel@tonic-gate 	ASSERT(mir->mir_type == RPC_SERVER);
12247c478bd9Sstevel@tonic-gate 	RPCLOG(16, "rpcmod: mir_svc_idle_start q 0x%p\n", (void *)q);
12257c478bd9Sstevel@tonic-gate 
12267c478bd9Sstevel@tonic-gate 	/*
12277c478bd9Sstevel@tonic-gate 	 * Don't re-start idle timer if we are closing queues.
12287c478bd9Sstevel@tonic-gate 	 */
12297c478bd9Sstevel@tonic-gate 	if (mir->mir_closing) {
12307c478bd9Sstevel@tonic-gate 		RPCLOG(16, "mir_svc_idle_start - closing: 0x%p\n",
123107e75131Sgt 		    (void *)q);
12327c478bd9Sstevel@tonic-gate 
12337c478bd9Sstevel@tonic-gate 		/*
12347c478bd9Sstevel@tonic-gate 		 * We will call mir_svc_idle_start() whenever MIR_SVC_QUIESCED()
12357c478bd9Sstevel@tonic-gate 		 * is true.  When it is true, and we are in the process of
12367c478bd9Sstevel@tonic-gate 		 * closing the stream, signal any thread waiting in
12377c478bd9Sstevel@tonic-gate 		 * mir_close().
12387c478bd9Sstevel@tonic-gate 		 */
12397c478bd9Sstevel@tonic-gate 		if (mir->mir_inwservice == 0)
12407c478bd9Sstevel@tonic-gate 			cv_signal(&mir->mir_condvar);
12417c478bd9Sstevel@tonic-gate 
12427c478bd9Sstevel@tonic-gate 	} else {
12437c478bd9Sstevel@tonic-gate 		RPCLOG(16, "mir_svc_idle_start - reset %s timer\n",
124407e75131Sgt 		    mir->mir_ordrel_pending ? "ordrel" : "normal");
12457c478bd9Sstevel@tonic-gate 		/*
12467c478bd9Sstevel@tonic-gate 		 * Normal condition, start the idle timer.  If an orderly
12477c478bd9Sstevel@tonic-gate 		 * release has been sent, set the timeout to wait for the
12487c478bd9Sstevel@tonic-gate 		 * client to close its side of the connection.  Otherwise,
12497c478bd9Sstevel@tonic-gate 		 * use the normal idle timeout.
12507c478bd9Sstevel@tonic-gate 		 */
12517c478bd9Sstevel@tonic-gate 		mir_timer_start(q, mir, mir->mir_ordrel_pending ?
12527c478bd9Sstevel@tonic-gate 		    svc_ordrel_timeout : mir->mir_idle_timeout);
12537c478bd9Sstevel@tonic-gate 	}
12547c478bd9Sstevel@tonic-gate }
12557c478bd9Sstevel@tonic-gate 
12567c478bd9Sstevel@tonic-gate /* ARGSUSED */
12577c478bd9Sstevel@tonic-gate static int
mir_open(queue_t * q,dev_t * devp,int flag,int sflag,cred_t * credp)12587c478bd9Sstevel@tonic-gate mir_open(queue_t *q, dev_t *devp, int flag, int sflag, cred_t *credp)
12597c478bd9Sstevel@tonic-gate {
12607c478bd9Sstevel@tonic-gate 	mir_t	*mir;
12617c478bd9Sstevel@tonic-gate 
12627c478bd9Sstevel@tonic-gate 	RPCLOG(32, "rpcmod: mir_open of q 0x%p\n", (void *)q);
12632695d4f4SMarcel Telka 	/* Set variables used directly by kRPC. */
12647c478bd9Sstevel@tonic-gate 	if (!mir_start)
12657c478bd9Sstevel@tonic-gate 		mir_start = mir_svc_start;
12667c478bd9Sstevel@tonic-gate 	if (!clnt_stop_idle)
12677c478bd9Sstevel@tonic-gate 		clnt_stop_idle = mir_clnt_idle_do_stop;
12687c478bd9Sstevel@tonic-gate 	if (!clnt_max_msg_sizep)
12697c478bd9Sstevel@tonic-gate 		clnt_max_msg_sizep = &clnt_max_msg_size;
12707c478bd9Sstevel@tonic-gate 	if (!svc_max_msg_sizep)
12717c478bd9Sstevel@tonic-gate 		svc_max_msg_sizep = &svc_max_msg_size;
12727c478bd9Sstevel@tonic-gate 
12737c478bd9Sstevel@tonic-gate 	/* Allocate a zero'ed out mir structure for this stream. */
12747c478bd9Sstevel@tonic-gate 	mir = kmem_zalloc(sizeof (mir_t), KM_SLEEP);
12757c478bd9Sstevel@tonic-gate 
12767c478bd9Sstevel@tonic-gate 	/*
12777c478bd9Sstevel@tonic-gate 	 * We set hold inbound here so that incoming messages will
12787c478bd9Sstevel@tonic-gate 	 * be held on the read-side queue until the stream is completely
12797c478bd9Sstevel@tonic-gate 	 * initialized with a RPC_CLIENT or RPC_SERVER ioctl.  During
12807c478bd9Sstevel@tonic-gate 	 * the ioctl processing, the flag is cleared and any messages that
12812695d4f4SMarcel Telka 	 * arrived between the open and the ioctl are delivered to kRPC.
12827c478bd9Sstevel@tonic-gate 	 *
12837c478bd9Sstevel@tonic-gate 	 * Early data should never arrive on a client stream since
12847c478bd9Sstevel@tonic-gate 	 * servers only respond to our requests and we do not send any.
12857c478bd9Sstevel@tonic-gate 	 * until after the stream is initialized.  Early data is
12867c478bd9Sstevel@tonic-gate 	 * very common on a server stream where the client will start
12877c478bd9Sstevel@tonic-gate 	 * sending data as soon as the connection is made (and this
12887c478bd9Sstevel@tonic-gate 	 * is especially true with TCP where the protocol accepts the
12892695d4f4SMarcel Telka 	 * connection before nfsd or kRPC is notified about it).
12907c478bd9Sstevel@tonic-gate 	 */
12917c478bd9Sstevel@tonic-gate 
12927c478bd9Sstevel@tonic-gate 	mir->mir_hold_inbound = 1;
12937c478bd9Sstevel@tonic-gate 
12947c478bd9Sstevel@tonic-gate 	/*
12957c478bd9Sstevel@tonic-gate 	 * Start the record marker looking for a 4-byte header.  When
12967c478bd9Sstevel@tonic-gate 	 * this length is negative, it indicates that rpcmod is looking
12977c478bd9Sstevel@tonic-gate 	 * for bytes to consume for the record marker header.  When it
12987c478bd9Sstevel@tonic-gate 	 * is positive, it holds the number of bytes that have arrived
12997c478bd9Sstevel@tonic-gate 	 * for the current fragment and are being held in mir_header_mp.
13007c478bd9Sstevel@tonic-gate 	 */
13017c478bd9Sstevel@tonic-gate 
13027c478bd9Sstevel@tonic-gate 	mir->mir_frag_len = -(int32_t)sizeof (uint32_t);
13037c478bd9Sstevel@tonic-gate 
1304108322fbScarlsonj 	mir->mir_zoneid = rpc_zoneid();
13057c478bd9Sstevel@tonic-gate 	mutex_init(&mir->mir_mutex, NULL, MUTEX_DEFAULT, NULL);
13067c478bd9Sstevel@tonic-gate 	cv_init(&mir->mir_condvar, NULL, CV_DRIVER, NULL);
13077c478bd9Sstevel@tonic-gate 	cv_init(&mir->mir_timer_cv, NULL, CV_DRIVER, NULL);
13087c478bd9Sstevel@tonic-gate 
13097c478bd9Sstevel@tonic-gate 	q->q_ptr = (char *)mir;
13107c478bd9Sstevel@tonic-gate 	WR(q)->q_ptr = (char *)mir;
13117c478bd9Sstevel@tonic-gate 
13127c478bd9Sstevel@tonic-gate 	/*
13137c478bd9Sstevel@tonic-gate 	 * We noenable the read-side queue because we don't want it
13147c478bd9Sstevel@tonic-gate 	 * automatically enabled by putq.  We enable it explicitly
13157c478bd9Sstevel@tonic-gate 	 * in mir_wsrv when appropriate. (See additional comments on
13167c478bd9Sstevel@tonic-gate 	 * flow control at the beginning of mir_rsrv.)
13177c478bd9Sstevel@tonic-gate 	 */
13187c478bd9Sstevel@tonic-gate 	noenable(q);
13197c478bd9Sstevel@tonic-gate 
13207c478bd9Sstevel@tonic-gate 	qprocson(q);
13217c478bd9Sstevel@tonic-gate 	return (0);
13227c478bd9Sstevel@tonic-gate }
13237c478bd9Sstevel@tonic-gate 
13247c478bd9Sstevel@tonic-gate /*
13257c478bd9Sstevel@tonic-gate  * Read-side put routine for both the client and server side.  Does the
13267c478bd9Sstevel@tonic-gate  * record marking for incoming RPC messages, and when complete, dispatches
13277c478bd9Sstevel@tonic-gate  * the message to either the client or server.
13287c478bd9Sstevel@tonic-gate  */
13297c478bd9Sstevel@tonic-gate static void
mir_rput(queue_t * q,mblk_t * mp)1330153adbb6Smeem mir_rput(queue_t *q, mblk_t *mp)
13317c478bd9Sstevel@tonic-gate {
13327c478bd9Sstevel@tonic-gate 	int	excess;
1333153adbb6Smeem 	int32_t	frag_len, frag_header;
1334153adbb6Smeem 	mblk_t	*cont_mp, *head_mp, *tail_mp, *mp1;
1335153adbb6Smeem 	mir_t	*mir = q->q_ptr;
1336153adbb6Smeem 	boolean_t stop_timer = B_FALSE;
13377c478bd9Sstevel@tonic-gate 
13387c478bd9Sstevel@tonic-gate 	ASSERT(mir != NULL);
13397c478bd9Sstevel@tonic-gate 
13407c478bd9Sstevel@tonic-gate 	/*
13417c478bd9Sstevel@tonic-gate 	 * If the stream has not been set up as a RPC_CLIENT or RPC_SERVER
13427c478bd9Sstevel@tonic-gate 	 * with the corresponding ioctl, then don't accept
13437c478bd9Sstevel@tonic-gate 	 * any inbound data.  This should never happen for streams
13442695d4f4SMarcel Telka 	 * created by nfsd or client-side kRPC because they are careful
13457c478bd9Sstevel@tonic-gate 	 * to set the mode of the stream before doing anything else.
13467c478bd9Sstevel@tonic-gate 	 */
13477c478bd9Sstevel@tonic-gate 	if (mir->mir_type == 0) {
13487c478bd9Sstevel@tonic-gate 		freemsg(mp);
13497c478bd9Sstevel@tonic-gate 		return;
13507c478bd9Sstevel@tonic-gate 	}
13517c478bd9Sstevel@tonic-gate 
13527c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_NOT_HELD(&mir->mir_mutex));
13537c478bd9Sstevel@tonic-gate 
13547c478bd9Sstevel@tonic-gate 	switch (mp->b_datap->db_type) {
13557c478bd9Sstevel@tonic-gate 	case M_DATA:
13567c478bd9Sstevel@tonic-gate 		break;
13577c478bd9Sstevel@tonic-gate 	case M_PROTO:
13587c478bd9Sstevel@tonic-gate 	case M_PCPROTO:
1359153adbb6Smeem 		if (MBLKL(mp) < sizeof (t_scalar_t)) {
13607c478bd9Sstevel@tonic-gate 			RPCLOG(1, "mir_rput: runt TPI message (%d bytes)\n",
1361153adbb6Smeem 			    (int)MBLKL(mp));
13627c478bd9Sstevel@tonic-gate 			freemsg(mp);
13637c478bd9Sstevel@tonic-gate 			return;
13647c478bd9Sstevel@tonic-gate 		}
1365153adbb6Smeem 		if (((union T_primitives *)mp->b_rptr)->type != T_DATA_IND) {
13667c478bd9Sstevel@tonic-gate 			mir_rput_proto(q, mp);
13677c478bd9Sstevel@tonic-gate 			return;
13687c478bd9Sstevel@tonic-gate 		}
13697c478bd9Sstevel@tonic-gate 
13707c478bd9Sstevel@tonic-gate 		/* Throw away the T_DATA_IND block and continue with data. */
13717c478bd9Sstevel@tonic-gate 		mp1 = mp;
13727c478bd9Sstevel@tonic-gate 		mp = mp->b_cont;
13737c478bd9Sstevel@tonic-gate 		freeb(mp1);
13747c478bd9Sstevel@tonic-gate 		break;
13757c478bd9Sstevel@tonic-gate 	case M_SETOPTS:
13767c478bd9Sstevel@tonic-gate 		/*
13777c478bd9Sstevel@tonic-gate 		 * If a module on the stream is trying set the Stream head's
13787c478bd9Sstevel@tonic-gate 		 * high water mark, then set our hiwater to the requested
13797c478bd9Sstevel@tonic-gate 		 * value.  We are the "stream head" for all inbound
13802695d4f4SMarcel Telka 		 * data messages since messages are passed directly to kRPC.
13817c478bd9Sstevel@tonic-gate 		 */
1382153adbb6Smeem 		if (MBLKL(mp) >= sizeof (struct stroptions)) {
13837c478bd9Sstevel@tonic-gate 			struct stroptions	*stropts;
13847c478bd9Sstevel@tonic-gate 
13857c478bd9Sstevel@tonic-gate 			stropts = (struct stroptions *)mp->b_rptr;
13867c478bd9Sstevel@tonic-gate 			if ((stropts->so_flags & SO_HIWAT) &&
138707e75131Sgt 			    !(stropts->so_flags & SO_BAND)) {
13887c478bd9Sstevel@tonic-gate 				(void) strqset(q, QHIWAT, 0, stropts->so_hiwat);
13897c478bd9Sstevel@tonic-gate 			}
13907c478bd9Sstevel@tonic-gate 		}
13917c478bd9Sstevel@tonic-gate 		putnext(q, mp);
13927c478bd9Sstevel@tonic-gate 		return;
13937c478bd9Sstevel@tonic-gate 	case M_FLUSH:
1394153adbb6Smeem 		RPCLOG(32, "mir_rput: ignoring M_FLUSH %x ", *mp->b_rptr);
1395153adbb6Smeem 		RPCLOG(32, "on q 0x%p\n", (void *)q);
13967c478bd9Sstevel@tonic-gate 		putnext(q, mp);
13977c478bd9Sstevel@tonic-gate 		return;
13987c478bd9Sstevel@tonic-gate 	default:
13997c478bd9Sstevel@tonic-gate 		putnext(q, mp);
14007c478bd9Sstevel@tonic-gate 		return;
14017c478bd9Sstevel@tonic-gate 	}
14027c478bd9Sstevel@tonic-gate 
14037c478bd9Sstevel@tonic-gate 	mutex_enter(&mir->mir_mutex);
14047c478bd9Sstevel@tonic-gate 
14057c478bd9Sstevel@tonic-gate 	/*
14067c478bd9Sstevel@tonic-gate 	 * If this connection is closing, don't accept any new messages.
14077c478bd9Sstevel@tonic-gate 	 */
14087c478bd9Sstevel@tonic-gate 	if (mir->mir_svc_no_more_msgs) {
14097c478bd9Sstevel@tonic-gate 		ASSERT(mir->mir_type == RPC_SERVER);
14107c478bd9Sstevel@tonic-gate 		mutex_exit(&mir->mir_mutex);
14117c478bd9Sstevel@tonic-gate 		freemsg(mp);
14127c478bd9Sstevel@tonic-gate 		return;
14137c478bd9Sstevel@tonic-gate 	}
14147c478bd9Sstevel@tonic-gate 
14157c478bd9Sstevel@tonic-gate 	/* Get local copies for quicker access. */
14167c478bd9Sstevel@tonic-gate 	frag_len = mir->mir_frag_len;
14177c478bd9Sstevel@tonic-gate 	frag_header = mir->mir_frag_header;
14187c478bd9Sstevel@tonic-gate 	head_mp = mir->mir_head_mp;
14197c478bd9Sstevel@tonic-gate 	tail_mp = mir->mir_tail_mp;
14207c478bd9Sstevel@tonic-gate 
14217c478bd9Sstevel@tonic-gate 	/* Loop, processing each message block in the mp chain separately. */
14227c478bd9Sstevel@tonic-gate 	do {
14237c478bd9Sstevel@tonic-gate 		cont_mp = mp->b_cont;
1424153adbb6Smeem 		mp->b_cont = NULL;
14257c478bd9Sstevel@tonic-gate 
1426456fcba7Smeem 		/*
1427456fcba7Smeem 		 * Drop zero-length mblks to prevent unbounded kernel memory
1428456fcba7Smeem 		 * consumption.
1429456fcba7Smeem 		 */
1430456fcba7Smeem 		if (MBLKL(mp) == 0) {
1431456fcba7Smeem 			freeb(mp);
1432456fcba7Smeem 			continue;
1433456fcba7Smeem 		}
1434456fcba7Smeem 
14357c478bd9Sstevel@tonic-gate 		/*
1436153adbb6Smeem 		 * If frag_len is negative, we're still in the process of
1437153adbb6Smeem 		 * building frag_header -- try to complete it with this mblk.
14387c478bd9Sstevel@tonic-gate 		 */
1439153adbb6Smeem 		while (frag_len < 0 && mp->b_rptr < mp->b_wptr) {
1440153adbb6Smeem 			frag_len++;
1441153adbb6Smeem 			frag_header <<= 8;
1442153adbb6Smeem 			frag_header += *mp->b_rptr++;
14437c478bd9Sstevel@tonic-gate 		}
14447c478bd9Sstevel@tonic-gate 
1445456fcba7Smeem 		if (MBLKL(mp) == 0 && frag_len < 0) {
14467c478bd9Sstevel@tonic-gate 			/*
1447456fcba7Smeem 			 * We consumed this mblk while trying to complete the
1448456fcba7Smeem 			 * fragment header.  Free it and move on.
14497c478bd9Sstevel@tonic-gate 			 */
1450153adbb6Smeem 			freeb(mp);
1451153adbb6Smeem 			continue;
14527c478bd9Sstevel@tonic-gate 		}
14537c478bd9Sstevel@tonic-gate 
1454153adbb6Smeem 		ASSERT(frag_len >= 0);
1455153adbb6Smeem 
14567c478bd9Sstevel@tonic-gate 		/*
1457153adbb6Smeem 		 * Now frag_header has the number of bytes in this fragment
1458153adbb6Smeem 		 * and we're just waiting to collect them all.  Chain our
1459153adbb6Smeem 		 * latest mblk onto the list and see if we now have enough
1460153adbb6Smeem 		 * bytes to complete the fragment.
14617c478bd9Sstevel@tonic-gate 		 */
1462153adbb6Smeem 		if (head_mp == NULL) {
1463153adbb6Smeem 			ASSERT(tail_mp == NULL);
1464153adbb6Smeem 			head_mp = tail_mp = mp;
1465153adbb6Smeem 		} else {
14667c478bd9Sstevel@tonic-gate 			tail_mp->b_cont = mp;
1467153adbb6Smeem 			tail_mp = mp;
14687c478bd9Sstevel@tonic-gate 		}
14697c478bd9Sstevel@tonic-gate 
1470153adbb6Smeem 		frag_len += MBLKL(mp);
14717c478bd9Sstevel@tonic-gate 		excess = frag_len - (frag_header & ~MIR_LASTFRAG);
1472153adbb6Smeem 		if (excess < 0) {
14737c478bd9Sstevel@tonic-gate 			/*
1474153adbb6Smeem 			 * We still haven't received enough data to complete
1475153adbb6Smeem 			 * the fragment, so continue on to the next mblk.
14767c478bd9Sstevel@tonic-gate 			 */
1477153adbb6Smeem 			continue;
14787c478bd9Sstevel@tonic-gate 		}
14797c478bd9Sstevel@tonic-gate 
14807c478bd9Sstevel@tonic-gate 		/*
1481153adbb6Smeem 		 * We've got a complete fragment.  If there are excess bytes,
1482153adbb6Smeem 		 * then they're part of the next fragment's header (of either
1483153adbb6Smeem 		 * this RPC message or the next RPC message).  Split that part
1484153adbb6Smeem 		 * into its own mblk so that we can safely freeb() it when
1485153adbb6Smeem 		 * building frag_header above.
14867c478bd9Sstevel@tonic-gate 		 */
14877c478bd9Sstevel@tonic-gate 		if (excess > 0) {
1488153adbb6Smeem 			if ((mp1 = dupb(mp)) == NULL &&
1489153adbb6Smeem 			    (mp1 = copyb(mp)) == NULL) {
14907c478bd9Sstevel@tonic-gate 				freemsg(head_mp);
1491153adbb6Smeem 				freemsg(cont_mp);
1492153adbb6Smeem 				RPCLOG0(1, "mir_rput: dupb/copyb failed\n");
14937c478bd9Sstevel@tonic-gate 				mir->mir_frag_header = 0;
1494153adbb6Smeem 				mir->mir_frag_len = -(int32_t)sizeof (uint32_t);
14957c478bd9Sstevel@tonic-gate 				mir->mir_head_mp = NULL;
14967c478bd9Sstevel@tonic-gate 				mir->mir_tail_mp = NULL;
1497153adbb6Smeem 				mir_disconnect(q, mir);	/* drops mir_mutex */
14987c478bd9Sstevel@tonic-gate 				return;
14997c478bd9Sstevel@tonic-gate 			}
15007c478bd9Sstevel@tonic-gate 
15017c478bd9Sstevel@tonic-gate 			/*
1502153adbb6Smeem 			 * Relink the message chain so that the next mblk is
1503153adbb6Smeem 			 * the next fragment header, followed by the rest of
1504153adbb6Smeem 			 * the message chain.
15057c478bd9Sstevel@tonic-gate 			 */
15067c478bd9Sstevel@tonic-gate 			mp1->b_cont = cont_mp;
15077c478bd9Sstevel@tonic-gate 			cont_mp = mp1;
1508153adbb6Smeem 
15097c478bd9Sstevel@tonic-gate 			/*
1510153adbb6Smeem 			 * Data in the new mblk begins at the next fragment,
1511153adbb6Smeem 			 * and data in the old mblk ends at the next fragment.
15127c478bd9Sstevel@tonic-gate 			 */
1513153adbb6Smeem 			mp1->b_rptr = mp1->b_wptr - excess;
1514153adbb6Smeem 			mp->b_wptr -= excess;
15157c478bd9Sstevel@tonic-gate 		}
15167c478bd9Sstevel@tonic-gate 
1517153adbb6Smeem 		/*
1518153adbb6Smeem 		 * Reset frag_len and frag_header for the next fragment.
1519153adbb6Smeem 		 */
1520153adbb6Smeem 		frag_len = -(int32_t)sizeof (uint32_t);
1521153adbb6Smeem 		if (!(frag_header & MIR_LASTFRAG)) {
1522153adbb6Smeem 			/*
1523153adbb6Smeem 			 * The current fragment is complete, but more
1524153adbb6Smeem 			 * fragments need to be processed before we can
1525153adbb6Smeem 			 * pass along the RPC message headed at head_mp.
1526153adbb6Smeem 			 */
1527153adbb6Smeem 			frag_header = 0;
1528153adbb6Smeem 			continue;
1529153adbb6Smeem 		}
1530153adbb6Smeem 		frag_header = 0;
15317c478bd9Sstevel@tonic-gate 
1532153adbb6Smeem 		/*
1533153adbb6Smeem 		 * We've got a complete RPC message; pass it to the
1534153adbb6Smeem 		 * appropriate consumer.
1535153adbb6Smeem 		 */
15367c478bd9Sstevel@tonic-gate 		switch (mir->mir_type) {
15377c478bd9Sstevel@tonic-gate 		case RPC_CLIENT:
15387c478bd9Sstevel@tonic-gate 			if (clnt_dispatch_notify(head_mp, mir->mir_zoneid)) {
15397c478bd9Sstevel@tonic-gate 				/*
15407c478bd9Sstevel@tonic-gate 				 * Mark this stream as active.  This marker
15417c478bd9Sstevel@tonic-gate 				 * is used in mir_timer().
15427c478bd9Sstevel@tonic-gate 				 */
15437c478bd9Sstevel@tonic-gate 				mir->mir_clntreq = 1;
1544d3d50737SRafael Vanoni 				mir->mir_use_timestamp = ddi_get_lbolt();
1545153adbb6Smeem 			} else {
15467c478bd9Sstevel@tonic-gate 				freemsg(head_mp);
1547153adbb6Smeem 			}
15487c478bd9Sstevel@tonic-gate 			break;
15497c478bd9Sstevel@tonic-gate 
15507c478bd9Sstevel@tonic-gate 		case RPC_SERVER:
15517c478bd9Sstevel@tonic-gate 			/*
15527c478bd9Sstevel@tonic-gate 			 * Check for flow control before passing the
15532695d4f4SMarcel Telka 			 * message to kRPC.
15547c478bd9Sstevel@tonic-gate 			 */
15557c478bd9Sstevel@tonic-gate 			if (!mir->mir_hold_inbound) {
155607e75131Sgt 				if (mir->mir_krpc_cell) {
15572695d4f4SMarcel Telka 
15583b3b7026SMarcel Telka 					if (mir_check_len(q, head_mp))
15597c478bd9Sstevel@tonic-gate 						return;
15602695d4f4SMarcel Telka 
15612695d4f4SMarcel Telka 					if (q->q_first == NULL &&
15622695d4f4SMarcel Telka 					    svc_queuereq(q, head_mp, TRUE)) {
15632695d4f4SMarcel Telka 						/*
15642695d4f4SMarcel Telka 						 * If the reference count is 0
15652695d4f4SMarcel Telka 						 * (not including this
15662695d4f4SMarcel Telka 						 * request), then the stream is
15672695d4f4SMarcel Telka 						 * transitioning from idle to
15682695d4f4SMarcel Telka 						 * non-idle.  In this case, we
15692695d4f4SMarcel Telka 						 * cancel the idle timer.
15702695d4f4SMarcel Telka 						 */
15712695d4f4SMarcel Telka 						if (mir->mir_ref_cnt++ == 0)
15722695d4f4SMarcel Telka 							stop_timer = B_TRUE;
15732695d4f4SMarcel Telka 					} else {
15742695d4f4SMarcel Telka 						(void) putq(q, head_mp);
15752695d4f4SMarcel Telka 						mir->mir_inrservice = B_TRUE;
15762695d4f4SMarcel Telka 					}
157707e75131Sgt 				} else {
157807e75131Sgt 					/*
157907e75131Sgt 					 * Count # of times this happens. Should
158007e75131Sgt 					 * be never, but experience shows
158107e75131Sgt 					 * otherwise.
158207e75131Sgt 					 */
158307e75131Sgt 					mir_krpc_cell_null++;
158407e75131Sgt 					freemsg(head_mp);
158507e75131Sgt 				}
15867c478bd9Sstevel@tonic-gate 			} else {
15877c478bd9Sstevel@tonic-gate 				/*
15887c478bd9Sstevel@tonic-gate 				 * If the outbound side of the stream is
15897c478bd9Sstevel@tonic-gate 				 * flow controlled, then hold this message
15907c478bd9Sstevel@tonic-gate 				 * until client catches up. mir_hold_inbound
15917c478bd9Sstevel@tonic-gate 				 * is set in mir_wput and cleared in mir_wsrv.
15927c478bd9Sstevel@tonic-gate 				 */
1593153adbb6Smeem 				(void) putq(q, head_mp);
15947c478bd9Sstevel@tonic-gate 				mir->mir_inrservice = B_TRUE;
15957c478bd9Sstevel@tonic-gate 			}
15967c478bd9Sstevel@tonic-gate 			break;
15977c478bd9Sstevel@tonic-gate 		default:
15987c478bd9Sstevel@tonic-gate 			RPCLOG(1, "mir_rput: unknown mir_type %d\n",
159907e75131Sgt 			    mir->mir_type);
16007c478bd9Sstevel@tonic-gate 			freemsg(head_mp);
16017c478bd9Sstevel@tonic-gate 			break;
16027c478bd9Sstevel@tonic-gate 		}
16037c478bd9Sstevel@tonic-gate 
16047c478bd9Sstevel@tonic-gate 		/*
1605153adbb6Smeem 		 * Reset the chain since we're starting on a new RPC message.
16067c478bd9Sstevel@tonic-gate 		 */
1607153adbb6Smeem 		head_mp = tail_mp = NULL;
16087c478bd9Sstevel@tonic-gate 	} while ((mp = cont_mp) != NULL);
16097c478bd9Sstevel@tonic-gate 
16107c478bd9Sstevel@tonic-gate 	/*
1611153adbb6Smeem 	 * Sanity check the message length; if it's too large mir_check_len()
1612153adbb6Smeem 	 * will shutdown the connection, drop mir_mutex, and return non-zero.
16137c478bd9Sstevel@tonic-gate 	 */
16147c478bd9Sstevel@tonic-gate 	if (head_mp != NULL && mir->mir_setup_complete &&
16153b3b7026SMarcel Telka 	    mir_check_len(q, head_mp))
16167c478bd9Sstevel@tonic-gate 		return;
16177c478bd9Sstevel@tonic-gate 
16187c478bd9Sstevel@tonic-gate 	/* Save our local copies back in the mir structure. */
16197c478bd9Sstevel@tonic-gate 	mir->mir_frag_header = frag_header;
16207c478bd9Sstevel@tonic-gate 	mir->mir_frag_len = frag_len;
16217c478bd9Sstevel@tonic-gate 	mir->mir_head_mp = head_mp;
16227c478bd9Sstevel@tonic-gate 	mir->mir_tail_mp = tail_mp;
16237c478bd9Sstevel@tonic-gate 
16247c478bd9Sstevel@tonic-gate 	/*
16257c478bd9Sstevel@tonic-gate 	 * The timer is stopped after the whole message chain is processed.
16267c478bd9Sstevel@tonic-gate 	 * The reason is that stopping the timer releases the mir_mutex
16277c478bd9Sstevel@tonic-gate 	 * lock temporarily.  This means that the request can be serviced
16287c478bd9Sstevel@tonic-gate 	 * while we are still processing the message chain.  This is not
16297c478bd9Sstevel@tonic-gate 	 * good.  So we stop the timer here instead.
16307c478bd9Sstevel@tonic-gate 	 *
16317c478bd9Sstevel@tonic-gate 	 * Note that if the timer fires before we stop it, it will not
16327c478bd9Sstevel@tonic-gate 	 * do any harm as MIR_SVC_QUIESCED() is false and mir_timer()
1633153adbb6Smeem 	 * will just return.
16347c478bd9Sstevel@tonic-gate 	 */
16357c478bd9Sstevel@tonic-gate 	if (stop_timer) {
1636153adbb6Smeem 		RPCLOG(16, "mir_rput: stopping idle timer on 0x%p because "
1637153adbb6Smeem 		    "ref cnt going to non zero\n", (void *)WR(q));
16387c478bd9Sstevel@tonic-gate 		mir_svc_idle_stop(WR(q), mir);
16397c478bd9Sstevel@tonic-gate 	}
16407c478bd9Sstevel@tonic-gate 	mutex_exit(&mir->mir_mutex);
16417c478bd9Sstevel@tonic-gate }
16427c478bd9Sstevel@tonic-gate 
16437c478bd9Sstevel@tonic-gate static void
mir_rput_proto(queue_t * q,mblk_t * mp)16447c478bd9Sstevel@tonic-gate mir_rput_proto(queue_t *q, mblk_t *mp)
16457c478bd9Sstevel@tonic-gate {
16467c478bd9Sstevel@tonic-gate 	mir_t	*mir = (mir_t *)q->q_ptr;
16477c478bd9Sstevel@tonic-gate 	uint32_t	type;
16487c478bd9Sstevel@tonic-gate 	uint32_t reason = 0;
16497c478bd9Sstevel@tonic-gate 
16507c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_NOT_HELD(&mir->mir_mutex));
16517c478bd9Sstevel@tonic-gate 
16527c478bd9Sstevel@tonic-gate 	type = ((union T_primitives *)mp->b_rptr)->type;
16537c478bd9Sstevel@tonic-gate 	switch (mir->mir_type) {
16547c478bd9Sstevel@tonic-gate 	case RPC_CLIENT:
16557c478bd9Sstevel@tonic-gate 		switch (type) {
16567c478bd9Sstevel@tonic-gate 		case T_DISCON_IND:
165707e75131Sgt 			reason = ((struct T_discon_ind *)
165807e75131Sgt 			    (mp->b_rptr))->DISCON_reason;
1659153adbb6Smeem 			/*FALLTHROUGH*/
16607c478bd9Sstevel@tonic-gate 		case T_ORDREL_IND:
16617c478bd9Sstevel@tonic-gate 			mutex_enter(&mir->mir_mutex);
16627c478bd9Sstevel@tonic-gate 			if (mir->mir_head_mp) {
16637c478bd9Sstevel@tonic-gate 				freemsg(mir->mir_head_mp);
16647c478bd9Sstevel@tonic-gate 				mir->mir_head_mp = (mblk_t *)0;
16657c478bd9Sstevel@tonic-gate 				mir->mir_tail_mp = (mblk_t *)0;
16667c478bd9Sstevel@tonic-gate 			}
16677c478bd9Sstevel@tonic-gate 			/*
16687c478bd9Sstevel@tonic-gate 			 * We are disconnecting, but not necessarily
16697c478bd9Sstevel@tonic-gate 			 * closing. By not closing, we will fail to
16707c478bd9Sstevel@tonic-gate 			 * pick up a possibly changed global timeout value,
16717c478bd9Sstevel@tonic-gate 			 * unless we store it now.
16727c478bd9Sstevel@tonic-gate 			 */
16737c478bd9Sstevel@tonic-gate 			mir->mir_idle_timeout = clnt_idle_timeout;
16747c478bd9Sstevel@tonic-gate 			mir_clnt_idle_stop(WR(q), mir);
16757c478bd9Sstevel@tonic-gate 
16767c478bd9Sstevel@tonic-gate 			/*
16777c478bd9Sstevel@tonic-gate 			 * Even though we are unconnected, we still
16787c478bd9Sstevel@tonic-gate 			 * leave the idle timer going on the client. The
16797c478bd9Sstevel@tonic-gate 			 * reason for is that if we've disconnected due
16807c478bd9Sstevel@tonic-gate 			 * to a server-side disconnect, reset, or connection
16817c478bd9Sstevel@tonic-gate 			 * timeout, there is a possibility the client may
16827c478bd9Sstevel@tonic-gate 			 * retry the RPC request. This retry needs to done on
16837c478bd9Sstevel@tonic-gate 			 * the same bound address for the server to interpret
16847c478bd9Sstevel@tonic-gate 			 * it as such. However, we don't want
16857c478bd9Sstevel@tonic-gate 			 * to wait forever for that possibility. If the
16867c478bd9Sstevel@tonic-gate 			 * end-point stays unconnected for mir_idle_timeout
16877c478bd9Sstevel@tonic-gate 			 * units of time, then that is a signal to the
16887c478bd9Sstevel@tonic-gate 			 * connection manager to give up waiting for the
16897c478bd9Sstevel@tonic-gate 			 * application (eg. NFS) to send a retry.
16907c478bd9Sstevel@tonic-gate 			 */
16917c478bd9Sstevel@tonic-gate 			mir_clnt_idle_start(WR(q), mir);
16927c478bd9Sstevel@tonic-gate 			mutex_exit(&mir->mir_mutex);
16937c478bd9Sstevel@tonic-gate 			clnt_dispatch_notifyall(WR(q), type, reason);
16947c478bd9Sstevel@tonic-gate 			freemsg(mp);
16957c478bd9Sstevel@tonic-gate 			return;
16967c478bd9Sstevel@tonic-gate 		case T_ERROR_ACK:
16977c478bd9Sstevel@tonic-gate 		{
16987c478bd9Sstevel@tonic-gate 			struct T_error_ack	*terror;
16997c478bd9Sstevel@tonic-gate 
17007c478bd9Sstevel@tonic-gate 			terror = (struct T_error_ack *)mp->b_rptr;
17017c478bd9Sstevel@tonic-gate 			RPCLOG(1, "mir_rput_proto T_ERROR_ACK for queue 0x%p",
170207e75131Sgt 			    (void *)q);
17037c478bd9Sstevel@tonic-gate 			RPCLOG(1, " ERROR_prim: %s,",
170407e75131Sgt 			    rpc_tpiprim2name(terror->ERROR_prim));
17057c478bd9Sstevel@tonic-gate 			RPCLOG(1, " TLI_error: %s,",
170607e75131Sgt 			    rpc_tpierr2name(terror->TLI_error));
17077c478bd9Sstevel@tonic-gate 			RPCLOG(1, " UNIX_error: %d\n", terror->UNIX_error);
17087c478bd9Sstevel@tonic-gate 			if (terror->ERROR_prim == T_DISCON_REQ)  {
17097c478bd9Sstevel@tonic-gate 				clnt_dispatch_notifyall(WR(q), type, reason);
17107c478bd9Sstevel@tonic-gate 				freemsg(mp);
17117c478bd9Sstevel@tonic-gate 				return;
17127c478bd9Sstevel@tonic-gate 			} else {
17137c478bd9Sstevel@tonic-gate 				if (clnt_dispatch_notifyconn(WR(q), mp))
17147c478bd9Sstevel@tonic-gate 					return;
17157c478bd9Sstevel@tonic-gate 			}
17167c478bd9Sstevel@tonic-gate 			break;
17177c478bd9Sstevel@tonic-gate 		}
17187c478bd9Sstevel@tonic-gate 		case T_OK_ACK:
17197c478bd9Sstevel@tonic-gate 		{
17207c478bd9Sstevel@tonic-gate 			struct T_ok_ack	*tok = (struct T_ok_ack *)mp->b_rptr;
17217c478bd9Sstevel@tonic-gate 
17227c478bd9Sstevel@tonic-gate 			if (tok->CORRECT_prim == T_DISCON_REQ) {
17237c478bd9Sstevel@tonic-gate 				clnt_dispatch_notifyall(WR(q), type, reason);
17247c478bd9Sstevel@tonic-gate 				freemsg(mp);
17257c478bd9Sstevel@tonic-gate 				return;
17267c478bd9Sstevel@tonic-gate 			} else {
17277c478bd9Sstevel@tonic-gate 				if (clnt_dispatch_notifyconn(WR(q), mp))
17287c478bd9Sstevel@tonic-gate 					return;
17297c478bd9Sstevel@tonic-gate 			}
17307c478bd9Sstevel@tonic-gate 			break;
17317c478bd9Sstevel@tonic-gate 		}
17327c478bd9Sstevel@tonic-gate 		case T_CONN_CON:
17337c478bd9Sstevel@tonic-gate 		case T_INFO_ACK:
17347c478bd9Sstevel@tonic-gate 		case T_OPTMGMT_ACK:
17357c478bd9Sstevel@tonic-gate 			if (clnt_dispatch_notifyconn(WR(q), mp))
17367c478bd9Sstevel@tonic-gate 				return;
17377c478bd9Sstevel@tonic-gate 			break;
17387c478bd9Sstevel@tonic-gate 		case T_BIND_ACK:
17397c478bd9Sstevel@tonic-gate 			break;
17407c478bd9Sstevel@tonic-gate 		default:
17417c478bd9Sstevel@tonic-gate 			RPCLOG(1, "mir_rput: unexpected message %d "
17422695d4f4SMarcel Telka 			    "for kRPC client\n",
17437c478bd9Sstevel@tonic-gate 			    ((union T_primitives *)mp->b_rptr)->type);
17447c478bd9Sstevel@tonic-gate 			break;
17457c478bd9Sstevel@tonic-gate 		}
17467c478bd9Sstevel@tonic-gate 		break;
17477c478bd9Sstevel@tonic-gate 
17487c478bd9Sstevel@tonic-gate 	case RPC_SERVER:
17497c478bd9Sstevel@tonic-gate 		switch (type) {
17507c478bd9Sstevel@tonic-gate 		case T_BIND_ACK:
17517c478bd9Sstevel@tonic-gate 		{
17527c478bd9Sstevel@tonic-gate 			struct T_bind_ack	*tbind;
17537c478bd9Sstevel@tonic-gate 
17547c478bd9Sstevel@tonic-gate 			/*
17557c478bd9Sstevel@tonic-gate 			 * If this is a listening stream, then shut
17567c478bd9Sstevel@tonic-gate 			 * off the idle timer.
17577c478bd9Sstevel@tonic-gate 			 */
17587c478bd9Sstevel@tonic-gate 			tbind = (struct T_bind_ack *)mp->b_rptr;
17597c478bd9Sstevel@tonic-gate 			if (tbind->CONIND_number > 0) {
17607c478bd9Sstevel@tonic-gate 				mutex_enter(&mir->mir_mutex);
17617c478bd9Sstevel@tonic-gate 				mir_svc_idle_stop(WR(q), mir);
17627c478bd9Sstevel@tonic-gate 
17637c478bd9Sstevel@tonic-gate 				/*
17647c478bd9Sstevel@tonic-gate 				 * mark this as a listen endpoint
17657c478bd9Sstevel@tonic-gate 				 * for special handling.
17667c478bd9Sstevel@tonic-gate 				 */
17677c478bd9Sstevel@tonic-gate 
17687c478bd9Sstevel@tonic-gate 				mir->mir_listen_stream = 1;
17697c478bd9Sstevel@tonic-gate 				mutex_exit(&mir->mir_mutex);
17707c478bd9Sstevel@tonic-gate 			}
17717c478bd9Sstevel@tonic-gate 			break;
17727c478bd9Sstevel@tonic-gate 		}
17737c478bd9Sstevel@tonic-gate 		case T_DISCON_IND:
17747c478bd9Sstevel@tonic-gate 		case T_ORDREL_IND:
17757c478bd9Sstevel@tonic-gate 			RPCLOG(16, "mir_rput_proto: got %s indication\n",
177607e75131Sgt 			    type == T_DISCON_IND ? "disconnect"
177707e75131Sgt 			    : "orderly release");
17787c478bd9Sstevel@tonic-gate 
17797c478bd9Sstevel@tonic-gate 			/*
17807c478bd9Sstevel@tonic-gate 			 * For listen endpoint just pass
17817c478bd9Sstevel@tonic-gate 			 * on the message.
17827c478bd9Sstevel@tonic-gate 			 */
17837c478bd9Sstevel@tonic-gate 
17847c478bd9Sstevel@tonic-gate 			if (mir->mir_listen_stream)
17857c478bd9Sstevel@tonic-gate 				break;
17867c478bd9Sstevel@tonic-gate 
17877c478bd9Sstevel@tonic-gate 			mutex_enter(&mir->mir_mutex);
17887c478bd9Sstevel@tonic-gate 
17897c478bd9Sstevel@tonic-gate 			/*
17907c478bd9Sstevel@tonic-gate 			 * If client wants to break off connection, record
17917c478bd9Sstevel@tonic-gate 			 * that fact.
17927c478bd9Sstevel@tonic-gate 			 */
17937c478bd9Sstevel@tonic-gate 			mir_svc_start_close(WR(q), mir);
17947c478bd9Sstevel@tonic-gate 
17957c478bd9Sstevel@tonic-gate 			/*
17967c478bd9Sstevel@tonic-gate 			 * If we are idle, then send the orderly release
17977c478bd9Sstevel@tonic-gate 			 * or disconnect indication to nfsd.
17987c478bd9Sstevel@tonic-gate 			 */
17997c478bd9Sstevel@tonic-gate 			if (MIR_SVC_QUIESCED(mir)) {
18007c478bd9Sstevel@tonic-gate 				mutex_exit(&mir->mir_mutex);
18017c478bd9Sstevel@tonic-gate 				break;
18027c478bd9Sstevel@tonic-gate 			}
18037c478bd9Sstevel@tonic-gate 
18047c478bd9Sstevel@tonic-gate 			RPCLOG(16, "mir_rput_proto: not idle, so "
180507e75131Sgt 			    "disconnect/ord rel indication not passed "
180607e75131Sgt 			    "upstream on 0x%p\n", (void *)q);
18077c478bd9Sstevel@tonic-gate 
18087c478bd9Sstevel@tonic-gate 			/*
18097c478bd9Sstevel@tonic-gate 			 * Hold the indication until we get idle
18107c478bd9Sstevel@tonic-gate 			 * If there already is an indication stored,
18117c478bd9Sstevel@tonic-gate 			 * replace it if the new one is a disconnect. The
18127c478bd9Sstevel@tonic-gate 			 * reasoning is that disconnection takes less time
18137c478bd9Sstevel@tonic-gate 			 * to process, and once a client decides to
18147c478bd9Sstevel@tonic-gate 			 * disconnect, we should do that.
18157c478bd9Sstevel@tonic-gate 			 */
18167c478bd9Sstevel@tonic-gate 			if (mir->mir_svc_pend_mp) {
18177c478bd9Sstevel@tonic-gate 				if (type == T_DISCON_IND) {
18187c478bd9Sstevel@tonic-gate 					RPCLOG(16, "mir_rput_proto: replacing"
18197c478bd9Sstevel@tonic-gate 					    " held disconnect/ord rel"
18207c478bd9Sstevel@tonic-gate 					    " indication with disconnect on"
18217c478bd9Sstevel@tonic-gate 					    " 0x%p\n", (void *)q);
18227c478bd9Sstevel@tonic-gate 
18237c478bd9Sstevel@tonic-gate 					freemsg(mir->mir_svc_pend_mp);
18247c478bd9Sstevel@tonic-gate 					mir->mir_svc_pend_mp = mp;
18257c478bd9Sstevel@tonic-gate 				} else {
18267c478bd9Sstevel@tonic-gate 					RPCLOG(16, "mir_rput_proto: already "
18277c478bd9Sstevel@tonic-gate 					    "held a disconnect/ord rel "
18287c478bd9Sstevel@tonic-gate 					    "indication. freeing ord rel "
18297c478bd9Sstevel@tonic-gate 					    "ind on 0x%p\n", (void *)q);
18307c478bd9Sstevel@tonic-gate 					freemsg(mp);
18317c478bd9Sstevel@tonic-gate 				}
18327c478bd9Sstevel@tonic-gate 			} else
18337c478bd9Sstevel@tonic-gate 				mir->mir_svc_pend_mp = mp;
18347c478bd9Sstevel@tonic-gate 
18357c478bd9Sstevel@tonic-gate 			mutex_exit(&mir->mir_mutex);
18367c478bd9Sstevel@tonic-gate 			return;
18377c478bd9Sstevel@tonic-gate 
18387c478bd9Sstevel@tonic-gate 		default:
18397c478bd9Sstevel@tonic-gate 			/* nfsd handles server-side non-data messages. */
18407c478bd9Sstevel@tonic-gate 			break;
18417c478bd9Sstevel@tonic-gate 		}
18427c478bd9Sstevel@tonic-gate 		break;
18437c478bd9Sstevel@tonic-gate 
18447c478bd9Sstevel@tonic-gate 	default:
18457c478bd9Sstevel@tonic-gate 		break;
18467c478bd9Sstevel@tonic-gate 	}
18477c478bd9Sstevel@tonic-gate 
18487c478bd9Sstevel@tonic-gate 	putnext(q, mp);
18497c478bd9Sstevel@tonic-gate }
18507c478bd9Sstevel@tonic-gate 
18517c478bd9Sstevel@tonic-gate /*
18527c478bd9Sstevel@tonic-gate  * The server-side read queues are used to hold inbound messages while
18537c478bd9Sstevel@tonic-gate  * outbound flow control is exerted.  When outbound flow control is
18547c478bd9Sstevel@tonic-gate  * relieved, mir_wsrv qenables the read-side queue.  Read-side queues
18557c478bd9Sstevel@tonic-gate  * are not enabled by STREAMS and are explicitly noenable'ed in mir_open.
18567c478bd9Sstevel@tonic-gate  */
18577c478bd9Sstevel@tonic-gate static void
mir_rsrv(queue_t * q)18587c478bd9Sstevel@tonic-gate mir_rsrv(queue_t *q)
18597c478bd9Sstevel@tonic-gate {
18607c478bd9Sstevel@tonic-gate 	mir_t	*mir;
18617c478bd9Sstevel@tonic-gate 	mblk_t	*mp;
18627c478bd9Sstevel@tonic-gate 	boolean_t stop_timer = B_FALSE;
18637c478bd9Sstevel@tonic-gate 
18647c478bd9Sstevel@tonic-gate 	mir = (mir_t *)q->q_ptr;
18657c478bd9Sstevel@tonic-gate 	mutex_enter(&mir->mir_mutex);
18667c478bd9Sstevel@tonic-gate 
18677c478bd9Sstevel@tonic-gate 	mp = NULL;
18687c478bd9Sstevel@tonic-gate 	switch (mir->mir_type) {
18697c478bd9Sstevel@tonic-gate 	case RPC_SERVER:
18707c478bd9Sstevel@tonic-gate 		if (mir->mir_ref_cnt == 0)
18717c478bd9Sstevel@tonic-gate 			mir->mir_hold_inbound = 0;
18722695d4f4SMarcel Telka 		if (mir->mir_hold_inbound)
18732695d4f4SMarcel Telka 			break;
18747c478bd9Sstevel@tonic-gate 
18757c478bd9Sstevel@tonic-gate 		while (mp = getq(q)) {
187607e75131Sgt 			if (mir->mir_krpc_cell &&
187707e75131Sgt 			    (mir->mir_svc_no_more_msgs == 0)) {
18782695d4f4SMarcel Telka 
18793b3b7026SMarcel Telka 				if (mir_check_len(q, mp))
188007e75131Sgt 					return;
18812695d4f4SMarcel Telka 
18822695d4f4SMarcel Telka 				if (svc_queuereq(q, mp, TRUE)) {
18832695d4f4SMarcel Telka 					/*
18842695d4f4SMarcel Telka 					 * If we were idle, turn off idle timer
18852695d4f4SMarcel Telka 					 * since we aren't idle any more.
18862695d4f4SMarcel Telka 					 */
18872695d4f4SMarcel Telka 					if (mir->mir_ref_cnt++ == 0)
18882695d4f4SMarcel Telka 						stop_timer = B_TRUE;
18892695d4f4SMarcel Telka 				} else {
18902695d4f4SMarcel Telka 					(void) putbq(q, mp);
18912695d4f4SMarcel Telka 					break;
18922695d4f4SMarcel Telka 				}
18937c478bd9Sstevel@tonic-gate 			} else {
18947c478bd9Sstevel@tonic-gate 				/*
18957c478bd9Sstevel@tonic-gate 				 * Count # of times this happens. Should be
18967c478bd9Sstevel@tonic-gate 				 * never, but experience shows otherwise.
18977c478bd9Sstevel@tonic-gate 				 */
189807e75131Sgt 				if (mir->mir_krpc_cell == NULL)
189907e75131Sgt 					mir_krpc_cell_null++;
19007c478bd9Sstevel@tonic-gate 				freemsg(mp);
19017c478bd9Sstevel@tonic-gate 			}
19027c478bd9Sstevel@tonic-gate 		}
19037c478bd9Sstevel@tonic-gate 		break;
19047c478bd9Sstevel@tonic-gate 	case RPC_CLIENT:
19057c478bd9Sstevel@tonic-gate 		break;
19067c478bd9Sstevel@tonic-gate 	default:
19077c478bd9Sstevel@tonic-gate 		RPCLOG(1, "mir_rsrv: unexpected mir_type %d\n", mir->mir_type);
19087c478bd9Sstevel@tonic-gate 
19097c478bd9Sstevel@tonic-gate 		if (q->q_first == NULL)
19107c478bd9Sstevel@tonic-gate 			MIR_CLEAR_INRSRV(mir);
19117c478bd9Sstevel@tonic-gate 
19127c478bd9Sstevel@tonic-gate 		mutex_exit(&mir->mir_mutex);
19137c478bd9Sstevel@tonic-gate 
19147c478bd9Sstevel@tonic-gate 		return;
19157c478bd9Sstevel@tonic-gate 	}
19167c478bd9Sstevel@tonic-gate 
19177c478bd9Sstevel@tonic-gate 	/*
19187c478bd9Sstevel@tonic-gate 	 * The timer is stopped after all the messages are processed.
19197c478bd9Sstevel@tonic-gate 	 * The reason is that stopping the timer releases the mir_mutex
19207c478bd9Sstevel@tonic-gate 	 * lock temporarily.  This means that the request can be serviced
19217c478bd9Sstevel@tonic-gate 	 * while we are still processing the message queue.  This is not
19227c478bd9Sstevel@tonic-gate 	 * good.  So we stop the timer here instead.
19237c478bd9Sstevel@tonic-gate 	 */
19247c478bd9Sstevel@tonic-gate 	if (stop_timer)  {
19257c478bd9Sstevel@tonic-gate 		RPCLOG(16, "mir_rsrv stopping idle timer on 0x%p because ref "
19267c478bd9Sstevel@tonic-gate 		    "cnt going to non zero\n", (void *)WR(q));
19277c478bd9Sstevel@tonic-gate 		mir_svc_idle_stop(WR(q), mir);
19287c478bd9Sstevel@tonic-gate 	}
19297c478bd9Sstevel@tonic-gate 
19307c478bd9Sstevel@tonic-gate 	if (q->q_first == NULL) {
19312695d4f4SMarcel Telka 		mblk_t	*cmp = NULL;
19327c478bd9Sstevel@tonic-gate 
19337c478bd9Sstevel@tonic-gate 		MIR_CLEAR_INRSRV(mir);
19347c478bd9Sstevel@tonic-gate 
19357c478bd9Sstevel@tonic-gate 		if (mir->mir_type == RPC_SERVER && MIR_SVC_QUIESCED(mir)) {
19367c478bd9Sstevel@tonic-gate 			cmp = mir->mir_svc_pend_mp;
19377c478bd9Sstevel@tonic-gate 			mir->mir_svc_pend_mp = NULL;
19387c478bd9Sstevel@tonic-gate 		}
19397c478bd9Sstevel@tonic-gate 
19407c478bd9Sstevel@tonic-gate 		mutex_exit(&mir->mir_mutex);
19417c478bd9Sstevel@tonic-gate 
19427c478bd9Sstevel@tonic-gate 		if (cmp != NULL) {
19437c478bd9Sstevel@tonic-gate 			RPCLOG(16, "mir_rsrv: line %d: sending a held "
194407e75131Sgt 			    "disconnect/ord rel indication upstream\n",
194507e75131Sgt 			    __LINE__);
19467c478bd9Sstevel@tonic-gate 			putnext(q, cmp);
19477c478bd9Sstevel@tonic-gate 		}
19487c478bd9Sstevel@tonic-gate 
19497c478bd9Sstevel@tonic-gate 		return;
19507c478bd9Sstevel@tonic-gate 	}
19517c478bd9Sstevel@tonic-gate 	mutex_exit(&mir->mir_mutex);
19527c478bd9Sstevel@tonic-gate }
19537c478bd9Sstevel@tonic-gate 
19547c478bd9Sstevel@tonic-gate static int mir_svc_policy_fails;
19557c478bd9Sstevel@tonic-gate 
19567c478bd9Sstevel@tonic-gate /*
19577c478bd9Sstevel@tonic-gate  * Called to send an event code to nfsd/lockd so that it initiates
19587c478bd9Sstevel@tonic-gate  * connection close.
19597c478bd9Sstevel@tonic-gate  */
19607c478bd9Sstevel@tonic-gate static int
mir_svc_policy_notify(queue_t * q,int event)19617c478bd9Sstevel@tonic-gate mir_svc_policy_notify(queue_t *q, int event)
19627c478bd9Sstevel@tonic-gate {
19637c478bd9Sstevel@tonic-gate 	mblk_t	*mp;
19647c478bd9Sstevel@tonic-gate #ifdef DEBUG
19657c478bd9Sstevel@tonic-gate 	mir_t *mir = (mir_t *)q->q_ptr;
19667c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_NOT_HELD(&mir->mir_mutex));
19677c478bd9Sstevel@tonic-gate #endif
19687c478bd9Sstevel@tonic-gate 	ASSERT(q->q_flag & QREADR);
19697c478bd9Sstevel@tonic-gate 
19707c478bd9Sstevel@tonic-gate 	/*
19717c478bd9Sstevel@tonic-gate 	 * Create an M_DATA message with the event code and pass it to the
19727c478bd9Sstevel@tonic-gate 	 * Stream head (nfsd or whoever created the stream will consume it).
19737c478bd9Sstevel@tonic-gate 	 */
19747c478bd9Sstevel@tonic-gate 	mp = allocb(sizeof (int), BPRI_HI);
19757c478bd9Sstevel@tonic-gate 
19767c478bd9Sstevel@tonic-gate 	if (!mp) {
19777c478bd9Sstevel@tonic-gate 
19787c478bd9Sstevel@tonic-gate 		mir_svc_policy_fails++;
19797c478bd9Sstevel@tonic-gate 		RPCLOG(16, "mir_svc_policy_notify: could not allocate event "
198007e75131Sgt 		    "%d\n", event);
19817c478bd9Sstevel@tonic-gate 		return (ENOMEM);
19827c478bd9Sstevel@tonic-gate 	}
19837c478bd9Sstevel@tonic-gate 
19847c478bd9Sstevel@tonic-gate 	U32_TO_BE32(event, mp->b_rptr);
19857c478bd9Sstevel@tonic-gate 	mp->b_wptr = mp->b_rptr + sizeof (int);
19867c478bd9Sstevel@tonic-gate 	putnext(q, mp);
19877c478bd9Sstevel@tonic-gate 	return (0);
19887c478bd9Sstevel@tonic-gate }
19897c478bd9Sstevel@tonic-gate 
19907c478bd9Sstevel@tonic-gate /*
19917c478bd9Sstevel@tonic-gate  * Server side: start the close phase. We want to get this rpcmod slot in an
19927c478bd9Sstevel@tonic-gate  * idle state before mir_close() is called.
19937c478bd9Sstevel@tonic-gate  */
19947c478bd9Sstevel@tonic-gate static void
mir_svc_start_close(queue_t * wq,mir_t * mir)19957c478bd9Sstevel@tonic-gate mir_svc_start_close(queue_t *wq, mir_t *mir)
19967c478bd9Sstevel@tonic-gate {
19977c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&mir->mir_mutex));
19987c478bd9Sstevel@tonic-gate 	ASSERT((wq->q_flag & QREADR) == 0);
19997c478bd9Sstevel@tonic-gate 	ASSERT(mir->mir_type == RPC_SERVER);
20007c478bd9Sstevel@tonic-gate 
20017c478bd9Sstevel@tonic-gate 	/*
20027c478bd9Sstevel@tonic-gate 	 * Do not accept any more messages.
20037c478bd9Sstevel@tonic-gate 	 */
20047c478bd9Sstevel@tonic-gate 	mir->mir_svc_no_more_msgs = 1;
20057c478bd9Sstevel@tonic-gate 
20067c478bd9Sstevel@tonic-gate 	/*
20072695d4f4SMarcel Telka 	 * Next two statements will make the read service procedure
20082695d4f4SMarcel Telka 	 * free everything stuck in the streams read queue.
20097c478bd9Sstevel@tonic-gate 	 * It's not necessary because enabling the write queue will
20107c478bd9Sstevel@tonic-gate 	 * have the same effect, but why not speed the process along?
20117c478bd9Sstevel@tonic-gate 	 */
20127c478bd9Sstevel@tonic-gate 	mir->mir_hold_inbound = 0;
20137c478bd9Sstevel@tonic-gate 	qenable(RD(wq));
20147c478bd9Sstevel@tonic-gate 
20157c478bd9Sstevel@tonic-gate 	/*
20167c478bd9Sstevel@tonic-gate 	 * Meanwhile force the write service procedure to send the
20177c478bd9Sstevel@tonic-gate 	 * responses downstream, regardless of flow control.
20187c478bd9Sstevel@tonic-gate 	 */
20197c478bd9Sstevel@tonic-gate 	qenable(wq);
20207c478bd9Sstevel@tonic-gate }
20217c478bd9Sstevel@tonic-gate 
20224a3b0527SAndy Fiddaman void
mir_svc_hold(queue_t * wq)20234a3b0527SAndy Fiddaman mir_svc_hold(queue_t *wq)
20244a3b0527SAndy Fiddaman {
20254a3b0527SAndy Fiddaman 	mir_t *mir = (mir_t *)wq->q_ptr;
20264a3b0527SAndy Fiddaman 
20274a3b0527SAndy Fiddaman 	mutex_enter(&mir->mir_mutex);
20284a3b0527SAndy Fiddaman 	mir->mir_ref_cnt++;
20294a3b0527SAndy Fiddaman 	mutex_exit(&mir->mir_mutex);
20304a3b0527SAndy Fiddaman }
20314a3b0527SAndy Fiddaman 
20327c478bd9Sstevel@tonic-gate /*
20332695d4f4SMarcel Telka  * This routine is called directly by kRPC after a request is completed,
20347c478bd9Sstevel@tonic-gate  * whether a reply was sent or the request was dropped.
20357c478bd9Sstevel@tonic-gate  */
20364a3b0527SAndy Fiddaman void
mir_svc_release(queue_t * wq,mblk_t * mp,bool_t enable)20372695d4f4SMarcel Telka mir_svc_release(queue_t *wq, mblk_t *mp, bool_t enable)
20387c478bd9Sstevel@tonic-gate {
20397c478bd9Sstevel@tonic-gate 	mir_t   *mir = (mir_t *)wq->q_ptr;
20407c478bd9Sstevel@tonic-gate 	mblk_t	*cmp = NULL;
20417c478bd9Sstevel@tonic-gate 
20427c478bd9Sstevel@tonic-gate 	ASSERT((wq->q_flag & QREADR) == 0);
20437c478bd9Sstevel@tonic-gate 	if (mp)
20447c478bd9Sstevel@tonic-gate 		freemsg(mp);
20457c478bd9Sstevel@tonic-gate 
20462695d4f4SMarcel Telka 	if (enable)
20472695d4f4SMarcel Telka 		qenable(RD(wq));
20482695d4f4SMarcel Telka 
20497c478bd9Sstevel@tonic-gate 	mutex_enter(&mir->mir_mutex);
20507c478bd9Sstevel@tonic-gate 
20517c478bd9Sstevel@tonic-gate 	/*
20527c478bd9Sstevel@tonic-gate 	 * Start idle processing if this is the last reference.
20537c478bd9Sstevel@tonic-gate 	 */
205493132ae0Smaheshvs 	if ((mir->mir_ref_cnt == 1) && (mir->mir_inrservice == 0)) {
2055471fb14eSMarcel Telka 		cmp = mir->mir_svc_pend_mp;
2056471fb14eSMarcel Telka 		mir->mir_svc_pend_mp = NULL;
2057471fb14eSMarcel Telka 	}
2058471fb14eSMarcel Telka 
2059471fb14eSMarcel Telka 	if (cmp) {
2060471fb14eSMarcel Telka 		RPCLOG(16, "mir_svc_release: sending a held "
2061471fb14eSMarcel Telka 		    "disconnect/ord rel indication upstream on queue 0x%p\n",
2062471fb14eSMarcel Telka 		    (void *)RD(wq));
2063471fb14eSMarcel Telka 
2064471fb14eSMarcel Telka 		mutex_exit(&mir->mir_mutex);
2065471fb14eSMarcel Telka 
2066471fb14eSMarcel Telka 		putnext(RD(wq), cmp);
2067471fb14eSMarcel Telka 
2068471fb14eSMarcel Telka 		mutex_enter(&mir->mir_mutex);
2069471fb14eSMarcel Telka 	}
2070471fb14eSMarcel Telka 
2071471fb14eSMarcel Telka 	/*
2072471fb14eSMarcel Telka 	 * Start idle processing if this is the last reference.
2073471fb14eSMarcel Telka 	 */
2074471fb14eSMarcel Telka 	if (mir->mir_ref_cnt == 1 && mir->mir_inrservice == 0) {
20757c478bd9Sstevel@tonic-gate 
20767c478bd9Sstevel@tonic-gate 		RPCLOG(16, "mir_svc_release starting idle timer on 0x%p "
20777c478bd9Sstevel@tonic-gate 		    "because ref cnt is zero\n", (void *) wq);
20787c478bd9Sstevel@tonic-gate 
20797c478bd9Sstevel@tonic-gate 		mir_svc_idle_start(wq, mir);
20807c478bd9Sstevel@tonic-gate 	}
20817c478bd9Sstevel@tonic-gate 
208293132ae0Smaheshvs 	mir->mir_ref_cnt--;
208393132ae0Smaheshvs 	ASSERT(mir->mir_ref_cnt >= 0);
208493132ae0Smaheshvs 
208593132ae0Smaheshvs 	/*
208693132ae0Smaheshvs 	 * Wake up the thread waiting to close.
208793132ae0Smaheshvs 	 */
208893132ae0Smaheshvs 
208993132ae0Smaheshvs 	if ((mir->mir_ref_cnt == 0) && mir->mir_closing)
209093132ae0Smaheshvs 		cv_signal(&mir->mir_condvar);
209193132ae0Smaheshvs 
20927c478bd9Sstevel@tonic-gate 	mutex_exit(&mir->mir_mutex);
20937c478bd9Sstevel@tonic-gate }
20947c478bd9Sstevel@tonic-gate 
20957c478bd9Sstevel@tonic-gate /*
20962695d4f4SMarcel Telka  * This routine is called by server-side kRPC when it is ready to
20977c478bd9Sstevel@tonic-gate  * handle inbound messages on the stream.
20987c478bd9Sstevel@tonic-gate  */
20997c478bd9Sstevel@tonic-gate static void
mir_svc_start(queue_t * wq)21007c478bd9Sstevel@tonic-gate mir_svc_start(queue_t *wq)
21017c478bd9Sstevel@tonic-gate {
21027c478bd9Sstevel@tonic-gate 	mir_t   *mir = (mir_t *)wq->q_ptr;
21037c478bd9Sstevel@tonic-gate 
2104a26eed27Sgt 	/*
2105a26eed27Sgt 	 * no longer need to take the mir_mutex because the
2106a26eed27Sgt 	 * mir_setup_complete field has been moved out of
2107a26eed27Sgt 	 * the binary field protected by the mir_mutex.
2108a26eed27Sgt 	 */
2109a26eed27Sgt 
21107c478bd9Sstevel@tonic-gate 	mir->mir_setup_complete = 1;
21117c478bd9Sstevel@tonic-gate 	qenable(RD(wq));
21127c478bd9Sstevel@tonic-gate }
21137c478bd9Sstevel@tonic-gate 
21147c478bd9Sstevel@tonic-gate /*
21157c478bd9Sstevel@tonic-gate  * client side wrapper for stopping timer with normal idle timeout.
21167c478bd9Sstevel@tonic-gate  */
21177c478bd9Sstevel@tonic-gate static void
mir_clnt_idle_stop(queue_t * wq,mir_t * mir)21187c478bd9Sstevel@tonic-gate mir_clnt_idle_stop(queue_t *wq, mir_t *mir)
21197c478bd9Sstevel@tonic-gate {
21207c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&mir->mir_mutex));
21217c478bd9Sstevel@tonic-gate 	ASSERT((wq->q_flag & QREADR) == 0);
21227c478bd9Sstevel@tonic-gate 	ASSERT(mir->mir_type == RPC_CLIENT);
21237c478bd9Sstevel@tonic-gate 
21247c478bd9Sstevel@tonic-gate 	mir_timer_stop(mir);
21257c478bd9Sstevel@tonic-gate }
21267c478bd9Sstevel@tonic-gate 
21277c478bd9Sstevel@tonic-gate /*
21287c478bd9Sstevel@tonic-gate  * client side wrapper for stopping timer with normal idle timeout.
21297c478bd9Sstevel@tonic-gate  */
21307c478bd9Sstevel@tonic-gate static void
mir_clnt_idle_start(queue_t * wq,mir_t * mir)21317c478bd9Sstevel@tonic-gate mir_clnt_idle_start(queue_t *wq, mir_t *mir)
21327c478bd9Sstevel@tonic-gate {
21337c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&mir->mir_mutex));
21347c478bd9Sstevel@tonic-gate 	ASSERT((wq->q_flag & QREADR) == 0);
21357c478bd9Sstevel@tonic-gate 	ASSERT(mir->mir_type == RPC_CLIENT);
21367c478bd9Sstevel@tonic-gate 
21377c478bd9Sstevel@tonic-gate 	mir_timer_start(wq, mir, mir->mir_idle_timeout);
21387c478bd9Sstevel@tonic-gate }
21397c478bd9Sstevel@tonic-gate 
21407c478bd9Sstevel@tonic-gate /*
21417c478bd9Sstevel@tonic-gate  * client side only. Forces rpcmod to stop sending T_ORDREL_REQs on
21427c478bd9Sstevel@tonic-gate  * end-points that aren't connected.
21437c478bd9Sstevel@tonic-gate  */
21447c478bd9Sstevel@tonic-gate static void
mir_clnt_idle_do_stop(queue_t * wq)21457c478bd9Sstevel@tonic-gate mir_clnt_idle_do_stop(queue_t *wq)
21467c478bd9Sstevel@tonic-gate {
21477c478bd9Sstevel@tonic-gate 	mir_t   *mir = (mir_t *)wq->q_ptr;
21487c478bd9Sstevel@tonic-gate 
21497c478bd9Sstevel@tonic-gate 	RPCLOG(1, "mir_clnt_idle_do_stop: wq 0x%p\n", (void *)wq);
21507c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_NOT_HELD(&mir->mir_mutex));
21517c478bd9Sstevel@tonic-gate 	mutex_enter(&mir->mir_mutex);
21527c478bd9Sstevel@tonic-gate 	mir_clnt_idle_stop(wq, mir);
21537c478bd9Sstevel@tonic-gate 	mutex_exit(&mir->mir_mutex);
21547c478bd9Sstevel@tonic-gate }
21557c478bd9Sstevel@tonic-gate 
21567c478bd9Sstevel@tonic-gate /*
21577c478bd9Sstevel@tonic-gate  * Timer handler.  It handles idle timeout and memory shortage problem.
21587c478bd9Sstevel@tonic-gate  */
21597c478bd9Sstevel@tonic-gate static void
mir_timer(void * arg)21607c478bd9Sstevel@tonic-gate mir_timer(void *arg)
21617c478bd9Sstevel@tonic-gate {
21627c478bd9Sstevel@tonic-gate 	queue_t *wq = (queue_t *)arg;
21637c478bd9Sstevel@tonic-gate 	mir_t *mir = (mir_t *)wq->q_ptr;
21647c478bd9Sstevel@tonic-gate 	boolean_t notify;
2165d3d50737SRafael Vanoni 	clock_t now;
21667c478bd9Sstevel@tonic-gate 
21677c478bd9Sstevel@tonic-gate 	mutex_enter(&mir->mir_mutex);
21687c478bd9Sstevel@tonic-gate 
21697c478bd9Sstevel@tonic-gate 	/*
21707c478bd9Sstevel@tonic-gate 	 * mir_timer_call is set only when either mir_timer_[start|stop]
21717c478bd9Sstevel@tonic-gate 	 * is progressing.  And mir_timer() can only be run while they
21727c478bd9Sstevel@tonic-gate 	 * are progressing if the timer is being stopped.  So just
21737c478bd9Sstevel@tonic-gate 	 * return.
21747c478bd9Sstevel@tonic-gate 	 */
21757c478bd9Sstevel@tonic-gate 	if (mir->mir_timer_call) {
21767c478bd9Sstevel@tonic-gate 		mutex_exit(&mir->mir_mutex);
21777c478bd9Sstevel@tonic-gate 		return;
21787c478bd9Sstevel@tonic-gate 	}
21797c478bd9Sstevel@tonic-gate 	mir->mir_timer_id = 0;
21807c478bd9Sstevel@tonic-gate 
21817c478bd9Sstevel@tonic-gate 	switch (mir->mir_type) {
21827c478bd9Sstevel@tonic-gate 	case RPC_CLIENT:
21837c478bd9Sstevel@tonic-gate 
21847c478bd9Sstevel@tonic-gate 		/*
21857c478bd9Sstevel@tonic-gate 		 * For clients, the timer fires at clnt_idle_timeout
21867c478bd9Sstevel@tonic-gate 		 * intervals.  If the activity marker (mir_clntreq) is
21877c478bd9Sstevel@tonic-gate 		 * zero, then the stream has been idle since the last
21882695d4f4SMarcel Telka 		 * timer event and we notify kRPC.  If mir_clntreq is
21897c478bd9Sstevel@tonic-gate 		 * non-zero, then the stream is active and we just
21907c478bd9Sstevel@tonic-gate 		 * restart the timer for another interval.  mir_clntreq
21917c478bd9Sstevel@tonic-gate 		 * is set to 1 in mir_wput for every request passed
21927c478bd9Sstevel@tonic-gate 		 * downstream.
21937c478bd9Sstevel@tonic-gate 		 *
21947c478bd9Sstevel@tonic-gate 		 * If this was a memory shortage timer reset the idle
21957c478bd9Sstevel@tonic-gate 		 * timeout regardless; the mir_clntreq will not be a
21967c478bd9Sstevel@tonic-gate 		 * valid indicator.
21977c478bd9Sstevel@tonic-gate 		 *
21987c478bd9Sstevel@tonic-gate 		 * The timer is initially started in mir_wput during
21997c478bd9Sstevel@tonic-gate 		 * RPC_CLIENT ioctl processing.
22007c478bd9Sstevel@tonic-gate 		 *
22017c478bd9Sstevel@tonic-gate 		 * The timer interval can be changed for individual
22027c478bd9Sstevel@tonic-gate 		 * streams with the ND variable "mir_idle_timeout".
22037c478bd9Sstevel@tonic-gate 		 */
2204d3d50737SRafael Vanoni 		now = ddi_get_lbolt();
22057c478bd9Sstevel@tonic-gate 		if (mir->mir_clntreq > 0 && mir->mir_use_timestamp +
2206d3d50737SRafael Vanoni 		    MSEC_TO_TICK(mir->mir_idle_timeout) - now >= 0) {
22077c478bd9Sstevel@tonic-gate 			clock_t tout;
22087c478bd9Sstevel@tonic-gate 
22097c478bd9Sstevel@tonic-gate 			tout = mir->mir_idle_timeout -
2210d3d50737SRafael Vanoni 			    TICK_TO_MSEC(now - mir->mir_use_timestamp);
22117c478bd9Sstevel@tonic-gate 			if (tout < 0)
22127c478bd9Sstevel@tonic-gate 				tout = 1000;
22137c478bd9Sstevel@tonic-gate #if 0
221407e75131Sgt 			printf("mir_timer[%d < %d + %d]: reset client timer "
2215d3d50737SRafael Vanoni 			    "to %d (ms)\n", TICK_TO_MSEC(now),
221607e75131Sgt 			    TICK_TO_MSEC(mir->mir_use_timestamp),
221707e75131Sgt 			    mir->mir_idle_timeout, tout);
22187c478bd9Sstevel@tonic-gate #endif
22197c478bd9Sstevel@tonic-gate 			mir->mir_clntreq = 0;
22207c478bd9Sstevel@tonic-gate 			mir_timer_start(wq, mir, tout);
22217c478bd9Sstevel@tonic-gate 			mutex_exit(&mir->mir_mutex);
22227c478bd9Sstevel@tonic-gate 			return;
22237c478bd9Sstevel@tonic-gate 		}
22247c478bd9Sstevel@tonic-gate #if 0
2225d3d50737SRafael Vanoni printf("mir_timer[%d]: doing client timeout\n", now / hz);
22267c478bd9Sstevel@tonic-gate #endif
22277c478bd9Sstevel@tonic-gate 		/*
22287c478bd9Sstevel@tonic-gate 		 * We are disconnecting, but not necessarily
22297c478bd9Sstevel@tonic-gate 		 * closing. By not closing, we will fail to
22307c478bd9Sstevel@tonic-gate 		 * pick up a possibly changed global timeout value,
22317c478bd9Sstevel@tonic-gate 		 * unless we store it now.
22327c478bd9Sstevel@tonic-gate 		 */
22337c478bd9Sstevel@tonic-gate 		mir->mir_idle_timeout = clnt_idle_timeout;
22347c478bd9Sstevel@tonic-gate 		mir_clnt_idle_start(wq, mir);
22357c478bd9Sstevel@tonic-gate 
22367c478bd9Sstevel@tonic-gate 		mutex_exit(&mir->mir_mutex);
22377c478bd9Sstevel@tonic-gate 		/*
22387c478bd9Sstevel@tonic-gate 		 * We pass T_ORDREL_REQ as an integer value
22392695d4f4SMarcel Telka 		 * to kRPC as the indication that the stream
22407c478bd9Sstevel@tonic-gate 		 * is idle.  This is not a T_ORDREL_REQ message,
22417c478bd9Sstevel@tonic-gate 		 * it is just a convenient value since we call
22422695d4f4SMarcel Telka 		 * the same kRPC routine for T_ORDREL_INDs and
22437c478bd9Sstevel@tonic-gate 		 * T_DISCON_INDs.
22447c478bd9Sstevel@tonic-gate 		 */
22457c478bd9Sstevel@tonic-gate 		clnt_dispatch_notifyall(wq, T_ORDREL_REQ, 0);
22467c478bd9Sstevel@tonic-gate 		return;
22477c478bd9Sstevel@tonic-gate 
22487c478bd9Sstevel@tonic-gate 	case RPC_SERVER:
22497c478bd9Sstevel@tonic-gate 
22507c478bd9Sstevel@tonic-gate 		/*
22517c478bd9Sstevel@tonic-gate 		 * For servers, the timer is only running when the stream
22527c478bd9Sstevel@tonic-gate 		 * is really idle or memory is short.  The timer is started
22537c478bd9Sstevel@tonic-gate 		 * by mir_wput when mir_type is set to RPC_SERVER and
22547c478bd9Sstevel@tonic-gate 		 * by mir_svc_idle_start whenever the stream goes idle
22557c478bd9Sstevel@tonic-gate 		 * (mir_ref_cnt == 0).  The timer is cancelled in
22562695d4f4SMarcel Telka 		 * mir_rput whenever a new inbound request is passed to kRPC
22577c478bd9Sstevel@tonic-gate 		 * and the stream was previously idle.
22587c478bd9Sstevel@tonic-gate 		 *
22597c478bd9Sstevel@tonic-gate 		 * The timer interval can be changed for individual
22607c478bd9Sstevel@tonic-gate 		 * streams with the ND variable "mir_idle_timeout".
22617c478bd9Sstevel@tonic-gate 		 *
22627c478bd9Sstevel@tonic-gate 		 * If the stream is not idle do nothing.
22637c478bd9Sstevel@tonic-gate 		 */
22647c478bd9Sstevel@tonic-gate 		if (!MIR_SVC_QUIESCED(mir)) {
22657c478bd9Sstevel@tonic-gate 			mutex_exit(&mir->mir_mutex);
22667c478bd9Sstevel@tonic-gate 			return;
22677c478bd9Sstevel@tonic-gate 		}
22687c478bd9Sstevel@tonic-gate 
22697c478bd9Sstevel@tonic-gate 		notify = !mir->mir_inrservice;
22707c478bd9Sstevel@tonic-gate 		mutex_exit(&mir->mir_mutex);
22717c478bd9Sstevel@tonic-gate 
22727c478bd9Sstevel@tonic-gate 		/*
22737c478bd9Sstevel@tonic-gate 		 * If there is no packet queued up in read queue, the stream
22747c478bd9Sstevel@tonic-gate 		 * is really idle so notify nfsd to close it.
22757c478bd9Sstevel@tonic-gate 		 */
22767c478bd9Sstevel@tonic-gate 		if (notify) {
22777c478bd9Sstevel@tonic-gate 			RPCLOG(16, "mir_timer: telling stream head listener "
22787c478bd9Sstevel@tonic-gate 			    "to close stream (0x%p)\n", (void *) RD(wq));
22797c478bd9Sstevel@tonic-gate 			(void) mir_svc_policy_notify(RD(wq), 1);
22807c478bd9Sstevel@tonic-gate 		}
22817c478bd9Sstevel@tonic-gate 		return;
22827c478bd9Sstevel@tonic-gate 	default:
22837c478bd9Sstevel@tonic-gate 		RPCLOG(1, "mir_timer: unexpected mir_type %d\n",
228407e75131Sgt 		    mir->mir_type);
22857c478bd9Sstevel@tonic-gate 		mutex_exit(&mir->mir_mutex);
22867c478bd9Sstevel@tonic-gate 		return;
22877c478bd9Sstevel@tonic-gate 	}
22887c478bd9Sstevel@tonic-gate }
22897c478bd9Sstevel@tonic-gate 
22907c478bd9Sstevel@tonic-gate /*
22917c478bd9Sstevel@tonic-gate  * Called by the RPC package to send either a call or a return, or a
22927c478bd9Sstevel@tonic-gate  * transport connection request.  Adds the record marking header.
22937c478bd9Sstevel@tonic-gate  */
22947c478bd9Sstevel@tonic-gate static void
mir_wput(queue_t * q,mblk_t * mp)22957c478bd9Sstevel@tonic-gate mir_wput(queue_t *q, mblk_t *mp)
22967c478bd9Sstevel@tonic-gate {
22977c478bd9Sstevel@tonic-gate 	uint_t	frag_header;
22987c478bd9Sstevel@tonic-gate 	mir_t	*mir = (mir_t *)q->q_ptr;
22997c478bd9Sstevel@tonic-gate 	uchar_t	*rptr = mp->b_rptr;
23007c478bd9Sstevel@tonic-gate 
23017c478bd9Sstevel@tonic-gate 	if (!mir) {
23027c478bd9Sstevel@tonic-gate 		freemsg(mp);
23037c478bd9Sstevel@tonic-gate 		return;
23047c478bd9Sstevel@tonic-gate 	}
23057c478bd9Sstevel@tonic-gate 
23067c478bd9Sstevel@tonic-gate 	if (mp->b_datap->db_type != M_DATA) {
23077c478bd9Sstevel@tonic-gate 		mir_wput_other(q, mp);
23087c478bd9Sstevel@tonic-gate 		return;
23097c478bd9Sstevel@tonic-gate 	}
23107c478bd9Sstevel@tonic-gate 
23117c478bd9Sstevel@tonic-gate 	if (mir->mir_ordrel_pending == 1) {
23127c478bd9Sstevel@tonic-gate 		freemsg(mp);
23137c478bd9Sstevel@tonic-gate 		RPCLOG(16, "mir_wput wq 0x%p: got data after T_ORDREL_REQ\n",
231407e75131Sgt 		    (void *)q);
23157c478bd9Sstevel@tonic-gate 		return;
23167c478bd9Sstevel@tonic-gate 	}
23177c478bd9Sstevel@tonic-gate 
23187c478bd9Sstevel@tonic-gate 	frag_header = (uint_t)DLEN(mp);
23197c478bd9Sstevel@tonic-gate 	frag_header |= MIR_LASTFRAG;
23207c478bd9Sstevel@tonic-gate 
23217c478bd9Sstevel@tonic-gate 	/* Stick in the 4 byte record marking header. */
23227c478bd9Sstevel@tonic-gate 	if ((rptr - mp->b_datap->db_base) < sizeof (uint32_t) ||
23237c478bd9Sstevel@tonic-gate 	    !IS_P2ALIGNED(mp->b_rptr, sizeof (uint32_t))) {
23247c478bd9Sstevel@tonic-gate 		/*
23257c478bd9Sstevel@tonic-gate 		 * Since we know that M_DATA messages are created exclusively
23262695d4f4SMarcel Telka 		 * by kRPC, we expect that kRPC will leave room for our header
23277c478bd9Sstevel@tonic-gate 		 * and 4 byte align which is normal for XDR.
23282695d4f4SMarcel Telka 		 * If kRPC (or someone else) does not cooperate, then we
23297c478bd9Sstevel@tonic-gate 		 * just throw away the message.
23307c478bd9Sstevel@tonic-gate 		 */
23312695d4f4SMarcel Telka 		RPCLOG(1, "mir_wput: kRPC did not leave space for record "
23327c478bd9Sstevel@tonic-gate 		    "fragment header (%d bytes left)\n",
23337c478bd9Sstevel@tonic-gate 		    (int)(rptr - mp->b_datap->db_base));
23347c478bd9Sstevel@tonic-gate 		freemsg(mp);
23357c478bd9Sstevel@tonic-gate 		return;
23367c478bd9Sstevel@tonic-gate 	}
23377c478bd9Sstevel@tonic-gate 	rptr -= sizeof (uint32_t);
23387c478bd9Sstevel@tonic-gate 	*(uint32_t *)rptr = htonl(frag_header);
23397c478bd9Sstevel@tonic-gate 	mp->b_rptr = rptr;
23407c478bd9Sstevel@tonic-gate 
23417c478bd9Sstevel@tonic-gate 	mutex_enter(&mir->mir_mutex);
23427c478bd9Sstevel@tonic-gate 	if (mir->mir_type == RPC_CLIENT) {
23437c478bd9Sstevel@tonic-gate 		/*
23447c478bd9Sstevel@tonic-gate 		 * For the client, set mir_clntreq to indicate that the
23457c478bd9Sstevel@tonic-gate 		 * connection is active.
23467c478bd9Sstevel@tonic-gate 		 */
23477c478bd9Sstevel@tonic-gate 		mir->mir_clntreq = 1;
2348d3d50737SRafael Vanoni 		mir->mir_use_timestamp = ddi_get_lbolt();
23497c478bd9Sstevel@tonic-gate 	}
23507c478bd9Sstevel@tonic-gate 
23517c478bd9Sstevel@tonic-gate 	/*
23527c478bd9Sstevel@tonic-gate 	 * If we haven't already queued some data and the downstream module
23537c478bd9Sstevel@tonic-gate 	 * can accept more data, send it on, otherwise we queue the message
23547c478bd9Sstevel@tonic-gate 	 * and take other actions depending on mir_type.
23557c478bd9Sstevel@tonic-gate 	 */
23567c478bd9Sstevel@tonic-gate 	if (!mir->mir_inwservice && MIR_WCANPUTNEXT(mir, q)) {
23577c478bd9Sstevel@tonic-gate 		mutex_exit(&mir->mir_mutex);
23587c478bd9Sstevel@tonic-gate 
23597c478bd9Sstevel@tonic-gate 		/*
23607c478bd9Sstevel@tonic-gate 		 * Now we pass the RPC message downstream.
23617c478bd9Sstevel@tonic-gate 		 */
23627c478bd9Sstevel@tonic-gate 		putnext(q, mp);
23637c478bd9Sstevel@tonic-gate 		return;
23647c478bd9Sstevel@tonic-gate 	}
23657c478bd9Sstevel@tonic-gate 
23667c478bd9Sstevel@tonic-gate 	switch (mir->mir_type) {
23677c478bd9Sstevel@tonic-gate 	case RPC_CLIENT:
23687c478bd9Sstevel@tonic-gate 		/*
23697c478bd9Sstevel@tonic-gate 		 * Check for a previous duplicate request on the
23707c478bd9Sstevel@tonic-gate 		 * queue.  If there is one, then we throw away
23717c478bd9Sstevel@tonic-gate 		 * the current message and let the previous one
23727c478bd9Sstevel@tonic-gate 		 * go through.  If we can't find a duplicate, then
23737c478bd9Sstevel@tonic-gate 		 * send this one.  This tap dance is an effort
23747c478bd9Sstevel@tonic-gate 		 * to reduce traffic and processing requirements
23757c478bd9Sstevel@tonic-gate 		 * under load conditions.
23767c478bd9Sstevel@tonic-gate 		 */
23777c478bd9Sstevel@tonic-gate 		if (mir_clnt_dup_request(q, mp)) {
23787c478bd9Sstevel@tonic-gate 			mutex_exit(&mir->mir_mutex);
23797c478bd9Sstevel@tonic-gate 			freemsg(mp);
23807c478bd9Sstevel@tonic-gate 			return;
23817c478bd9Sstevel@tonic-gate 		}
23827c478bd9Sstevel@tonic-gate 		break;
23837c478bd9Sstevel@tonic-gate 	case RPC_SERVER:
23847c478bd9Sstevel@tonic-gate 		/*
23857c478bd9Sstevel@tonic-gate 		 * Set mir_hold_inbound so that new inbound RPC
23867c478bd9Sstevel@tonic-gate 		 * messages will be held until the client catches
23877c478bd9Sstevel@tonic-gate 		 * up on the earlier replies.  This flag is cleared
23887c478bd9Sstevel@tonic-gate 		 * in mir_wsrv after flow control is relieved;
23897c478bd9Sstevel@tonic-gate 		 * the read-side queue is also enabled at that time.
23907c478bd9Sstevel@tonic-gate 		 */
23917c478bd9Sstevel@tonic-gate 		mir->mir_hold_inbound = 1;
23927c478bd9Sstevel@tonic-gate 		break;
23937c478bd9Sstevel@tonic-gate 	default:
23947c478bd9Sstevel@tonic-gate 		RPCLOG(1, "mir_wput: unexpected mir_type %d\n", mir->mir_type);
23957c478bd9Sstevel@tonic-gate 		break;
23967c478bd9Sstevel@tonic-gate 	}
23977c478bd9Sstevel@tonic-gate 	mir->mir_inwservice = 1;
23987c478bd9Sstevel@tonic-gate 	(void) putq(q, mp);
23997c478bd9Sstevel@tonic-gate 	mutex_exit(&mir->mir_mutex);
24007c478bd9Sstevel@tonic-gate }
24017c478bd9Sstevel@tonic-gate 
24027c478bd9Sstevel@tonic-gate static void
mir_wput_other(queue_t * q,mblk_t * mp)24037c478bd9Sstevel@tonic-gate mir_wput_other(queue_t *q, mblk_t *mp)
24047c478bd9Sstevel@tonic-gate {
24057c478bd9Sstevel@tonic-gate 	mir_t	*mir = (mir_t *)q->q_ptr;
24067c478bd9Sstevel@tonic-gate 	struct iocblk	*iocp;
24077c478bd9Sstevel@tonic-gate 	uchar_t	*rptr = mp->b_rptr;
24087c478bd9Sstevel@tonic-gate 	bool_t	flush_in_svc = FALSE;
24097c478bd9Sstevel@tonic-gate 
24107c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_NOT_HELD(&mir->mir_mutex));
24117c478bd9Sstevel@tonic-gate 	switch (mp->b_datap->db_type) {
24127c478bd9Sstevel@tonic-gate 	case M_IOCTL:
24137c478bd9Sstevel@tonic-gate 		iocp = (struct iocblk *)rptr;
24147c478bd9Sstevel@tonic-gate 		switch (iocp->ioc_cmd) {
24157c478bd9Sstevel@tonic-gate 		case RPC_CLIENT:
24167c478bd9Sstevel@tonic-gate 			mutex_enter(&mir->mir_mutex);
24177c478bd9Sstevel@tonic-gate 			if (mir->mir_type != 0 &&
24187c478bd9Sstevel@tonic-gate 			    mir->mir_type != iocp->ioc_cmd) {
24197c478bd9Sstevel@tonic-gate ioc_eperm:
24207c478bd9Sstevel@tonic-gate 				mutex_exit(&mir->mir_mutex);
24217c478bd9Sstevel@tonic-gate 				iocp->ioc_error = EPERM;
24227c478bd9Sstevel@tonic-gate 				iocp->ioc_count = 0;
24237c478bd9Sstevel@tonic-gate 				mp->b_datap->db_type = M_IOCACK;
24247c478bd9Sstevel@tonic-gate 				qreply(q, mp);
24257c478bd9Sstevel@tonic-gate 				return;
24267c478bd9Sstevel@tonic-gate 			}
24277c478bd9Sstevel@tonic-gate 
24287c478bd9Sstevel@tonic-gate 			mir->mir_type = iocp->ioc_cmd;
24297c478bd9Sstevel@tonic-gate 
24307c478bd9Sstevel@tonic-gate 			/*
24317c478bd9Sstevel@tonic-gate 			 * Clear mir_hold_inbound which was set to 1 by
24327c478bd9Sstevel@tonic-gate 			 * mir_open.  This flag is not used on client
24337c478bd9Sstevel@tonic-gate 			 * streams.
24347c478bd9Sstevel@tonic-gate 			 */
24357c478bd9Sstevel@tonic-gate 			mir->mir_hold_inbound = 0;
24367c478bd9Sstevel@tonic-gate 			mir->mir_max_msg_sizep = &clnt_max_msg_size;
24377c478bd9Sstevel@tonic-gate 
24387c478bd9Sstevel@tonic-gate 			/*
24397c478bd9Sstevel@tonic-gate 			 * Start the idle timer.  See mir_timer() for more
24407c478bd9Sstevel@tonic-gate 			 * information on how client timers work.
24417c478bd9Sstevel@tonic-gate 			 */
24427c478bd9Sstevel@tonic-gate 			mir->mir_idle_timeout = clnt_idle_timeout;
24437c478bd9Sstevel@tonic-gate 			mir_clnt_idle_start(q, mir);
24447c478bd9Sstevel@tonic-gate 			mutex_exit(&mir->mir_mutex);
24457c478bd9Sstevel@tonic-gate 
24467c478bd9Sstevel@tonic-gate 			mp->b_datap->db_type = M_IOCACK;
24477c478bd9Sstevel@tonic-gate 			qreply(q, mp);
24487c478bd9Sstevel@tonic-gate 			return;
24497c478bd9Sstevel@tonic-gate 		case RPC_SERVER:
24507c478bd9Sstevel@tonic-gate 			mutex_enter(&mir->mir_mutex);
24517c478bd9Sstevel@tonic-gate 			if (mir->mir_type != 0 &&
24527c478bd9Sstevel@tonic-gate 			    mir->mir_type != iocp->ioc_cmd)
24537c478bd9Sstevel@tonic-gate 				goto ioc_eperm;
24547c478bd9Sstevel@tonic-gate 
24557c478bd9Sstevel@tonic-gate 			/*
24567c478bd9Sstevel@tonic-gate 			 * We don't clear mir_hold_inbound here because
24577c478bd9Sstevel@tonic-gate 			 * mir_hold_inbound is used in the flow control
24587c478bd9Sstevel@tonic-gate 			 * model. If we cleared it here, then we'd commit
24597c478bd9Sstevel@tonic-gate 			 * a small violation to the model where the transport
24607c478bd9Sstevel@tonic-gate 			 * might immediately block downstream flow.
24617c478bd9Sstevel@tonic-gate 			 */
24627c478bd9Sstevel@tonic-gate 
24637c478bd9Sstevel@tonic-gate 			mir->mir_type = iocp->ioc_cmd;
24647c478bd9Sstevel@tonic-gate 			mir->mir_max_msg_sizep = &svc_max_msg_size;
24657c478bd9Sstevel@tonic-gate 
24667c478bd9Sstevel@tonic-gate 			/*
24677c478bd9Sstevel@tonic-gate 			 * Start the idle timer.  See mir_timer() for more
24687c478bd9Sstevel@tonic-gate 			 * information on how server timers work.
24697c478bd9Sstevel@tonic-gate 			 *
24707c478bd9Sstevel@tonic-gate 			 * Note that it is important to start the idle timer
24717c478bd9Sstevel@tonic-gate 			 * here so that connections time out even if we
24727c478bd9Sstevel@tonic-gate 			 * never receive any data on them.
24737c478bd9Sstevel@tonic-gate 			 */
24747c478bd9Sstevel@tonic-gate 			mir->mir_idle_timeout = svc_idle_timeout;
24757c478bd9Sstevel@tonic-gate 			RPCLOG(16, "mir_wput_other starting idle timer on 0x%p "
24767c478bd9Sstevel@tonic-gate 			    "because we got RPC_SERVER ioctl\n", (void *)q);
24777c478bd9Sstevel@tonic-gate 			mir_svc_idle_start(q, mir);
24787c478bd9Sstevel@tonic-gate 			mutex_exit(&mir->mir_mutex);
24797c478bd9Sstevel@tonic-gate 
24807c478bd9Sstevel@tonic-gate 			mp->b_datap->db_type = M_IOCACK;
24817c478bd9Sstevel@tonic-gate 			qreply(q, mp);
24827c478bd9Sstevel@tonic-gate 			return;
24837c478bd9Sstevel@tonic-gate 		default:
24847c478bd9Sstevel@tonic-gate 			break;
24857c478bd9Sstevel@tonic-gate 		}
24867c478bd9Sstevel@tonic-gate 		break;
24877c478bd9Sstevel@tonic-gate 
24887c478bd9Sstevel@tonic-gate 	case M_PROTO:
24897c478bd9Sstevel@tonic-gate 		if (mir->mir_type == RPC_CLIENT) {
24907c478bd9Sstevel@tonic-gate 			/*
24917c478bd9Sstevel@tonic-gate 			 * We are likely being called from the context of a
24927c478bd9Sstevel@tonic-gate 			 * service procedure. So we need to enqueue. However
24937c478bd9Sstevel@tonic-gate 			 * enqueing may put our message behind data messages.
24947c478bd9Sstevel@tonic-gate 			 * So flush the data first.
24957c478bd9Sstevel@tonic-gate 			 */
24967c478bd9Sstevel@tonic-gate 			flush_in_svc = TRUE;
24977c478bd9Sstevel@tonic-gate 		}
24987c478bd9Sstevel@tonic-gate 		if ((mp->b_wptr - rptr) < sizeof (uint32_t) ||
249907e75131Sgt 		    !IS_P2ALIGNED(rptr, sizeof (uint32_t)))
25007c478bd9Sstevel@tonic-gate 			break;
25017c478bd9Sstevel@tonic-gate 
25027c478bd9Sstevel@tonic-gate 		switch (((union T_primitives *)rptr)->type) {
25037c478bd9Sstevel@tonic-gate 		case T_DATA_REQ:
25047c478bd9Sstevel@tonic-gate 			/* Don't pass T_DATA_REQ messages downstream. */
25057c478bd9Sstevel@tonic-gate 			freemsg(mp);
25067c478bd9Sstevel@tonic-gate 			return;
25077c478bd9Sstevel@tonic-gate 		case T_ORDREL_REQ:
25087c478bd9Sstevel@tonic-gate 			RPCLOG(8, "mir_wput_other wq 0x%p: got T_ORDREL_REQ\n",
25097c478bd9Sstevel@tonic-gate 			    (void *)q);
25107c478bd9Sstevel@tonic-gate 			mutex_enter(&mir->mir_mutex);
25117c478bd9Sstevel@tonic-gate 			if (mir->mir_type != RPC_SERVER) {
25127c478bd9Sstevel@tonic-gate 				/*
25137c478bd9Sstevel@tonic-gate 				 * We are likely being called from
25147c478bd9Sstevel@tonic-gate 				 * clnt_dispatch_notifyall(). Sending
25157c478bd9Sstevel@tonic-gate 				 * a T_ORDREL_REQ will result in
25167c478bd9Sstevel@tonic-gate 				 * a some kind of _IND message being sent,
25177c478bd9Sstevel@tonic-gate 				 * will be another call to
25187c478bd9Sstevel@tonic-gate 				 * clnt_dispatch_notifyall(). To keep the stack
25197c478bd9Sstevel@tonic-gate 				 * lean, queue this message.
25207c478bd9Sstevel@tonic-gate 				 */
25217c478bd9Sstevel@tonic-gate 				mir->mir_inwservice = 1;
25227c478bd9Sstevel@tonic-gate 				(void) putq(q, mp);
25237c478bd9Sstevel@tonic-gate 				mutex_exit(&mir->mir_mutex);
25247c478bd9Sstevel@tonic-gate 				return;
25257c478bd9Sstevel@tonic-gate 			}
25267c478bd9Sstevel@tonic-gate 
25277c478bd9Sstevel@tonic-gate 			/*
25287c478bd9Sstevel@tonic-gate 			 * Mark the structure such that we don't accept any
25297c478bd9Sstevel@tonic-gate 			 * more requests from client. We could defer this
25307c478bd9Sstevel@tonic-gate 			 * until we actually send the orderly release
25317c478bd9Sstevel@tonic-gate 			 * request downstream, but all that does is delay
25327c478bd9Sstevel@tonic-gate 			 * the closing of this stream.
25337c478bd9Sstevel@tonic-gate 			 */
25347c478bd9Sstevel@tonic-gate 			RPCLOG(16, "mir_wput_other wq 0x%p: got T_ORDREL_REQ "
25357c478bd9Sstevel@tonic-gate 			    " so calling mir_svc_start_close\n", (void *)q);
25367c478bd9Sstevel@tonic-gate 
25377c478bd9Sstevel@tonic-gate 			mir_svc_start_close(q, mir);
25387c478bd9Sstevel@tonic-gate 
25397c478bd9Sstevel@tonic-gate 			/*
25407c478bd9Sstevel@tonic-gate 			 * If we have sent down a T_ORDREL_REQ, don't send
25417c478bd9Sstevel@tonic-gate 			 * any more.
25427c478bd9Sstevel@tonic-gate 			 */
25437c478bd9Sstevel@tonic-gate 			if (mir->mir_ordrel_pending) {
25447c478bd9Sstevel@tonic-gate 				freemsg(mp);
25457c478bd9Sstevel@tonic-gate 				mutex_exit(&mir->mir_mutex);
25467c478bd9Sstevel@tonic-gate 				return;
25477c478bd9Sstevel@tonic-gate 			}
25487c478bd9Sstevel@tonic-gate 
25497c478bd9Sstevel@tonic-gate 			/*
25507c478bd9Sstevel@tonic-gate 			 * If the stream is not idle, then we hold the
25517c478bd9Sstevel@tonic-gate 			 * orderly release until it becomes idle.  This
25522695d4f4SMarcel Telka 			 * ensures that kRPC will be able to reply to
25537c478bd9Sstevel@tonic-gate 			 * all requests that we have passed to it.
25547c478bd9Sstevel@tonic-gate 			 *
25557c478bd9Sstevel@tonic-gate 			 * We also queue the request if there is data already
25567c478bd9Sstevel@tonic-gate 			 * queued, because we cannot allow the T_ORDREL_REQ
25577c478bd9Sstevel@tonic-gate 			 * to go before data. When we had a separate reply
25587c478bd9Sstevel@tonic-gate 			 * count, this was not a problem, because the
25597c478bd9Sstevel@tonic-gate 			 * reply count was reconciled when mir_wsrv()
25607c478bd9Sstevel@tonic-gate 			 * completed.
25617c478bd9Sstevel@tonic-gate 			 */
25627c478bd9Sstevel@tonic-gate 			if (!MIR_SVC_QUIESCED(mir) ||
25637c478bd9Sstevel@tonic-gate 			    mir->mir_inwservice == 1) {
25647c478bd9Sstevel@tonic-gate 				mir->mir_inwservice = 1;
25657c478bd9Sstevel@tonic-gate 				(void) putq(q, mp);
25667c478bd9Sstevel@tonic-gate 
25677c478bd9Sstevel@tonic-gate 				RPCLOG(16, "mir_wput_other: queuing "
25687c478bd9Sstevel@tonic-gate 				    "T_ORDREL_REQ on 0x%p\n", (void *)q);
25697c478bd9Sstevel@tonic-gate 
25707c478bd9Sstevel@tonic-gate 				mutex_exit(&mir->mir_mutex);
25717c478bd9Sstevel@tonic-gate 				return;
25727c478bd9Sstevel@tonic-gate 			}
25737c478bd9Sstevel@tonic-gate 
25747c478bd9Sstevel@tonic-gate 			/*
25757c478bd9Sstevel@tonic-gate 			 * Mark the structure so that we know we sent
25767c478bd9Sstevel@tonic-gate 			 * an orderly release request, and reset the idle timer.
25777c478bd9Sstevel@tonic-gate 			 */
25787c478bd9Sstevel@tonic-gate 			mir->mir_ordrel_pending = 1;
25797c478bd9Sstevel@tonic-gate 
25807c478bd9Sstevel@tonic-gate 			RPCLOG(16, "mir_wput_other: calling mir_svc_idle_start"
25817c478bd9Sstevel@tonic-gate 			    " on 0x%p because we got T_ORDREL_REQ\n",
25827c478bd9Sstevel@tonic-gate 			    (void *)q);
25837c478bd9Sstevel@tonic-gate 
25847c478bd9Sstevel@tonic-gate 			mir_svc_idle_start(q, mir);
25857c478bd9Sstevel@tonic-gate 			mutex_exit(&mir->mir_mutex);
25867c478bd9Sstevel@tonic-gate 
25877c478bd9Sstevel@tonic-gate 			/*
25887c478bd9Sstevel@tonic-gate 			 * When we break, we will putnext the T_ORDREL_REQ.
25897c478bd9Sstevel@tonic-gate 			 */
25907c478bd9Sstevel@tonic-gate 			break;
25917c478bd9Sstevel@tonic-gate 
25927c478bd9Sstevel@tonic-gate 		case T_CONN_REQ:
25937c478bd9Sstevel@tonic-gate 			mutex_enter(&mir->mir_mutex);
25947c478bd9Sstevel@tonic-gate 			if (mir->mir_head_mp != NULL) {
25957c478bd9Sstevel@tonic-gate 				freemsg(mir->mir_head_mp);
25967c478bd9Sstevel@tonic-gate 				mir->mir_head_mp = NULL;
25977c478bd9Sstevel@tonic-gate 				mir->mir_tail_mp = NULL;
25987c478bd9Sstevel@tonic-gate 			}
25997c478bd9Sstevel@tonic-gate 			mir->mir_frag_len = -(int32_t)sizeof (uint32_t);
26007c478bd9Sstevel@tonic-gate 			/*
26017c478bd9Sstevel@tonic-gate 			 * Restart timer in case mir_clnt_idle_do_stop() was
26027c478bd9Sstevel@tonic-gate 			 * called.
26037c478bd9Sstevel@tonic-gate 			 */
26047c478bd9Sstevel@tonic-gate 			mir->mir_idle_timeout = clnt_idle_timeout;
26057c478bd9Sstevel@tonic-gate 			mir_clnt_idle_stop(q, mir);
26067c478bd9Sstevel@tonic-gate 			mir_clnt_idle_start(q, mir);
26077c478bd9Sstevel@tonic-gate 			mutex_exit(&mir->mir_mutex);
26087c478bd9Sstevel@tonic-gate 			break;
26097c478bd9Sstevel@tonic-gate 
26107c478bd9Sstevel@tonic-gate 		default:
26117c478bd9Sstevel@tonic-gate 			/*
26127c478bd9Sstevel@tonic-gate 			 * T_DISCON_REQ is one of the interesting default
26137c478bd9Sstevel@tonic-gate 			 * cases here. Ideally, an M_FLUSH is done before
26147c478bd9Sstevel@tonic-gate 			 * T_DISCON_REQ is done. However, that is somewhat
26157c478bd9Sstevel@tonic-gate 			 * cumbersome for clnt_cots.c to do. So we queue
26167c478bd9Sstevel@tonic-gate 			 * T_DISCON_REQ, and let the service procedure
26177c478bd9Sstevel@tonic-gate 			 * flush all M_DATA.
26187c478bd9Sstevel@tonic-gate 			 */
26197c478bd9Sstevel@tonic-gate 			break;
26207c478bd9Sstevel@tonic-gate 		}
26214dfd3a95SToomas Soome 		/* FALLTHROUGH */
26227c478bd9Sstevel@tonic-gate 	default:
26237c478bd9Sstevel@tonic-gate 		if (mp->b_datap->db_type >= QPCTL) {
26247c478bd9Sstevel@tonic-gate 			if (mp->b_datap->db_type == M_FLUSH) {
26257c478bd9Sstevel@tonic-gate 				if (mir->mir_type == RPC_CLIENT &&
26267c478bd9Sstevel@tonic-gate 				    *mp->b_rptr & FLUSHW) {
26277c478bd9Sstevel@tonic-gate 					RPCLOG(32, "mir_wput_other: flushing "
26287c478bd9Sstevel@tonic-gate 					    "wq 0x%p\n", (void *)q);
26297c478bd9Sstevel@tonic-gate 					if (*mp->b_rptr & FLUSHBAND) {
26307c478bd9Sstevel@tonic-gate 						flushband(q, *(mp->b_rptr + 1),
263107e75131Sgt 						    FLUSHDATA);
26327c478bd9Sstevel@tonic-gate 					} else {
26337c478bd9Sstevel@tonic-gate 						flushq(q, FLUSHDATA);
26347c478bd9Sstevel@tonic-gate 					}
26357c478bd9Sstevel@tonic-gate 				} else {
26367c478bd9Sstevel@tonic-gate 					RPCLOG(32, "mir_wput_other: ignoring "
26377c478bd9Sstevel@tonic-gate 					    "M_FLUSH on wq 0x%p\n", (void *)q);
26387c478bd9Sstevel@tonic-gate 				}
26397c478bd9Sstevel@tonic-gate 			}
26407c478bd9Sstevel@tonic-gate 			break;
26417c478bd9Sstevel@tonic-gate 		}
26427c478bd9Sstevel@tonic-gate 
26437c478bd9Sstevel@tonic-gate 		mutex_enter(&mir->mir_mutex);
26447c478bd9Sstevel@tonic-gate 		if (mir->mir_inwservice == 0 && MIR_WCANPUTNEXT(mir, q)) {
26457c478bd9Sstevel@tonic-gate 			mutex_exit(&mir->mir_mutex);
26467c478bd9Sstevel@tonic-gate 			break;
26477c478bd9Sstevel@tonic-gate 		}
26487c478bd9Sstevel@tonic-gate 		mir->mir_inwservice = 1;
26497c478bd9Sstevel@tonic-gate 		mir->mir_inwflushdata = flush_in_svc;
26507c478bd9Sstevel@tonic-gate 		(void) putq(q, mp);
26517c478bd9Sstevel@tonic-gate 		mutex_exit(&mir->mir_mutex);
26527c478bd9Sstevel@tonic-gate 		qenable(q);
26537c478bd9Sstevel@tonic-gate 
26547c478bd9Sstevel@tonic-gate 		return;
26557c478bd9Sstevel@tonic-gate 	}
26567c478bd9Sstevel@tonic-gate 	putnext(q, mp);
26577c478bd9Sstevel@tonic-gate }
26587c478bd9Sstevel@tonic-gate 
26597c478bd9Sstevel@tonic-gate static void
mir_wsrv(queue_t * q)26607c478bd9Sstevel@tonic-gate mir_wsrv(queue_t *q)
26617c478bd9Sstevel@tonic-gate {
26627c478bd9Sstevel@tonic-gate 	mblk_t	*mp;
26637c478bd9Sstevel@tonic-gate 	mir_t	*mir;
26647c478bd9Sstevel@tonic-gate 	bool_t flushdata;
26657c478bd9Sstevel@tonic-gate 
26667c478bd9Sstevel@tonic-gate 	mir = (mir_t *)q->q_ptr;
26677c478bd9Sstevel@tonic-gate 	mutex_enter(&mir->mir_mutex);
26687c478bd9Sstevel@tonic-gate 
26697c478bd9Sstevel@tonic-gate 	flushdata = mir->mir_inwflushdata;
26707c478bd9Sstevel@tonic-gate 	mir->mir_inwflushdata = 0;
26717c478bd9Sstevel@tonic-gate 
26727c478bd9Sstevel@tonic-gate 	while (mp = getq(q)) {
26737c478bd9Sstevel@tonic-gate 		if (mp->b_datap->db_type == M_DATA) {
26747c478bd9Sstevel@tonic-gate 			/*
26757c478bd9Sstevel@tonic-gate 			 * Do not send any more data if we have sent
26767c478bd9Sstevel@tonic-gate 			 * a T_ORDREL_REQ.
26777c478bd9Sstevel@tonic-gate 			 */
26787c478bd9Sstevel@tonic-gate 			if (flushdata || mir->mir_ordrel_pending == 1) {
26797c478bd9Sstevel@tonic-gate 				freemsg(mp);
26807c478bd9Sstevel@tonic-gate 				continue;
26817c478bd9Sstevel@tonic-gate 			}
26827c478bd9Sstevel@tonic-gate 
26837c478bd9Sstevel@tonic-gate 			/*
26847c478bd9Sstevel@tonic-gate 			 * Make sure that the stream can really handle more
26857c478bd9Sstevel@tonic-gate 			 * data.
26867c478bd9Sstevel@tonic-gate 			 */
26877c478bd9Sstevel@tonic-gate 			if (!MIR_WCANPUTNEXT(mir, q)) {
26887c478bd9Sstevel@tonic-gate 				(void) putbq(q, mp);
26897c478bd9Sstevel@tonic-gate 				mutex_exit(&mir->mir_mutex);
26907c478bd9Sstevel@tonic-gate 				return;
26917c478bd9Sstevel@tonic-gate 			}
26927c478bd9Sstevel@tonic-gate 
26937c478bd9Sstevel@tonic-gate 			/*
26947c478bd9Sstevel@tonic-gate 			 * Now we pass the RPC message downstream.
26957c478bd9Sstevel@tonic-gate 			 */
26967c478bd9Sstevel@tonic-gate 			mutex_exit(&mir->mir_mutex);
26977c478bd9Sstevel@tonic-gate 			putnext(q, mp);
26987c478bd9Sstevel@tonic-gate 			mutex_enter(&mir->mir_mutex);
26997c478bd9Sstevel@tonic-gate 			continue;
27007c478bd9Sstevel@tonic-gate 		}
27017c478bd9Sstevel@tonic-gate 
27027c478bd9Sstevel@tonic-gate 		/*
27037c478bd9Sstevel@tonic-gate 		 * This is not an RPC message, pass it downstream
27047c478bd9Sstevel@tonic-gate 		 * (ignoring flow control) if the server side is not sending a
27057c478bd9Sstevel@tonic-gate 		 * T_ORDREL_REQ downstream.
27067c478bd9Sstevel@tonic-gate 		 */
27077c478bd9Sstevel@tonic-gate 		if (mir->mir_type != RPC_SERVER ||
270807e75131Sgt 		    ((union T_primitives *)mp->b_rptr)->type !=
270907e75131Sgt 		    T_ORDREL_REQ) {
27107c478bd9Sstevel@tonic-gate 			mutex_exit(&mir->mir_mutex);
27117c478bd9Sstevel@tonic-gate 			putnext(q, mp);
27127c478bd9Sstevel@tonic-gate 			mutex_enter(&mir->mir_mutex);
27137c478bd9Sstevel@tonic-gate 			continue;
27147c478bd9Sstevel@tonic-gate 		}
27157c478bd9Sstevel@tonic-gate 
27167c478bd9Sstevel@tonic-gate 		if (mir->mir_ordrel_pending == 1) {
27177c478bd9Sstevel@tonic-gate 			/*
27187c478bd9Sstevel@tonic-gate 			 * Don't send two T_ORDRELs
27197c478bd9Sstevel@tonic-gate 			 */
27207c478bd9Sstevel@tonic-gate 			freemsg(mp);
27217c478bd9Sstevel@tonic-gate 			continue;
27227c478bd9Sstevel@tonic-gate 		}
27237c478bd9Sstevel@tonic-gate 
27247c478bd9Sstevel@tonic-gate 		/*
27257c478bd9Sstevel@tonic-gate 		 * Mark the structure so that we know we sent an orderly
27267c478bd9Sstevel@tonic-gate 		 * release request.  We will check to see slot is idle at the
27277c478bd9Sstevel@tonic-gate 		 * end of this routine, and if so, reset the idle timer to
27287c478bd9Sstevel@tonic-gate 		 * handle orderly release timeouts.
27297c478bd9Sstevel@tonic-gate 		 */
27307c478bd9Sstevel@tonic-gate 		mir->mir_ordrel_pending = 1;
27317c478bd9Sstevel@tonic-gate 		RPCLOG(16, "mir_wsrv: sending ordrel req on q 0x%p\n",
273207e75131Sgt 		    (void *)q);
27337c478bd9Sstevel@tonic-gate 		/*
27347c478bd9Sstevel@tonic-gate 		 * Send the orderly release downstream. If there are other
27357c478bd9Sstevel@tonic-gate 		 * pending replies we won't be able to send them.  However,
27367c478bd9Sstevel@tonic-gate 		 * the only reason we should send the orderly release is if
27377c478bd9Sstevel@tonic-gate 		 * we were idle, or if an unusual event occurred.
27387c478bd9Sstevel@tonic-gate 		 */
27397c478bd9Sstevel@tonic-gate 		mutex_exit(&mir->mir_mutex);
27407c478bd9Sstevel@tonic-gate 		putnext(q, mp);
27417c478bd9Sstevel@tonic-gate 		mutex_enter(&mir->mir_mutex);
27427c478bd9Sstevel@tonic-gate 	}
27437c478bd9Sstevel@tonic-gate 
27447c478bd9Sstevel@tonic-gate 	if (q->q_first == NULL)
27457c478bd9Sstevel@tonic-gate 		/*
27467c478bd9Sstevel@tonic-gate 		 * If we call mir_svc_idle_start() below, then
27477c478bd9Sstevel@tonic-gate 		 * clearing mir_inwservice here will also result in
27487c478bd9Sstevel@tonic-gate 		 * any thread waiting in mir_close() to be signaled.
27497c478bd9Sstevel@tonic-gate 		 */
27507c478bd9Sstevel@tonic-gate 		mir->mir_inwservice = 0;
27517c478bd9Sstevel@tonic-gate 
27527c478bd9Sstevel@tonic-gate 	if (mir->mir_type != RPC_SERVER) {
27537c478bd9Sstevel@tonic-gate 		mutex_exit(&mir->mir_mutex);
27547c478bd9Sstevel@tonic-gate 		return;
27557c478bd9Sstevel@tonic-gate 	}
27567c478bd9Sstevel@tonic-gate 
27577c478bd9Sstevel@tonic-gate 	/*
27587c478bd9Sstevel@tonic-gate 	 * If idle we call mir_svc_idle_start to start the timer (or wakeup
27597c478bd9Sstevel@tonic-gate 	 * a close). Also make sure not to start the idle timer on the
27607c478bd9Sstevel@tonic-gate 	 * listener stream. This can cause nfsd to send an orderly release
27617c478bd9Sstevel@tonic-gate 	 * command on the listener stream.
27627c478bd9Sstevel@tonic-gate 	 */
27637c478bd9Sstevel@tonic-gate 	if (MIR_SVC_QUIESCED(mir) && !(mir->mir_listen_stream)) {
27647c478bd9Sstevel@tonic-gate 		RPCLOG(16, "mir_wsrv: calling mir_svc_idle_start on 0x%p "
27657c478bd9Sstevel@tonic-gate 		    "because mir slot is idle\n", (void *)q);
27667c478bd9Sstevel@tonic-gate 		mir_svc_idle_start(q, mir);
27677c478bd9Sstevel@tonic-gate 	}
27687c478bd9Sstevel@tonic-gate 
27697c478bd9Sstevel@tonic-gate 	/*
27707c478bd9Sstevel@tonic-gate 	 * If outbound flow control has been relieved, then allow new
27717c478bd9Sstevel@tonic-gate 	 * inbound requests to be processed.
27727c478bd9Sstevel@tonic-gate 	 */
27737c478bd9Sstevel@tonic-gate 	if (mir->mir_hold_inbound) {
27747c478bd9Sstevel@tonic-gate 		mir->mir_hold_inbound = 0;
27757c478bd9Sstevel@tonic-gate 		qenable(RD(q));
27767c478bd9Sstevel@tonic-gate 	}
27777c478bd9Sstevel@tonic-gate 	mutex_exit(&mir->mir_mutex);
27787c478bd9Sstevel@tonic-gate }
27797c478bd9Sstevel@tonic-gate 
27807c478bd9Sstevel@tonic-gate static void
mir_disconnect(queue_t * q,mir_t * mir)27817c478bd9Sstevel@tonic-gate mir_disconnect(queue_t *q, mir_t *mir)
27827c478bd9Sstevel@tonic-gate {
27837c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&mir->mir_mutex));
27847c478bd9Sstevel@tonic-gate 
27857c478bd9Sstevel@tonic-gate 	switch (mir->mir_type) {
27867c478bd9Sstevel@tonic-gate 	case RPC_CLIENT:
27877c478bd9Sstevel@tonic-gate 		/*
27887c478bd9Sstevel@tonic-gate 		 * We are disconnecting, but not necessarily
27897c478bd9Sstevel@tonic-gate 		 * closing. By not closing, we will fail to
27907c478bd9Sstevel@tonic-gate 		 * pick up a possibly changed global timeout value,
27917c478bd9Sstevel@tonic-gate 		 * unless we store it now.
27927c478bd9Sstevel@tonic-gate 		 */
27937c478bd9Sstevel@tonic-gate 		mir->mir_idle_timeout = clnt_idle_timeout;
27947c478bd9Sstevel@tonic-gate 		mir_clnt_idle_start(WR(q), mir);
27957c478bd9Sstevel@tonic-gate 		mutex_exit(&mir->mir_mutex);
27967c478bd9Sstevel@tonic-gate 
27977c478bd9Sstevel@tonic-gate 		/*
27982695d4f4SMarcel Telka 		 * T_DISCON_REQ is passed to kRPC as an integer value
27997c478bd9Sstevel@tonic-gate 		 * (this is not a TPI message).  It is used as a
28007c478bd9Sstevel@tonic-gate 		 * convenient value to indicate a sanity check
28012695d4f4SMarcel Telka 		 * failure -- the same kRPC routine is also called
28027c478bd9Sstevel@tonic-gate 		 * for T_DISCON_INDs and T_ORDREL_INDs.
28037c478bd9Sstevel@tonic-gate 		 */
28047c478bd9Sstevel@tonic-gate 		clnt_dispatch_notifyall(WR(q), T_DISCON_REQ, 0);
28057c478bd9Sstevel@tonic-gate 		break;
28067c478bd9Sstevel@tonic-gate 
28077c478bd9Sstevel@tonic-gate 	case RPC_SERVER:
28087c478bd9Sstevel@tonic-gate 		mir->mir_svc_no_more_msgs = 1;
28097c478bd9Sstevel@tonic-gate 		mir_svc_idle_stop(WR(q), mir);
28107c478bd9Sstevel@tonic-gate 		mutex_exit(&mir->mir_mutex);
28117c478bd9Sstevel@tonic-gate 		RPCLOG(16, "mir_disconnect: telling "
281207e75131Sgt 		    "stream head listener to disconnect stream "
281307e75131Sgt 		    "(0x%p)\n", (void *) q);
28147c478bd9Sstevel@tonic-gate 		(void) mir_svc_policy_notify(q, 2);
28157c478bd9Sstevel@tonic-gate 		break;
28167c478bd9Sstevel@tonic-gate 
28177c478bd9Sstevel@tonic-gate 	default:
28187c478bd9Sstevel@tonic-gate 		mutex_exit(&mir->mir_mutex);
28197c478bd9Sstevel@tonic-gate 		break;
28207c478bd9Sstevel@tonic-gate 	}
28217c478bd9Sstevel@tonic-gate }
28227c478bd9Sstevel@tonic-gate 
28237c478bd9Sstevel@tonic-gate /*
2824153adbb6Smeem  * Sanity check the message length, and if it's too large, shutdown the
2825153adbb6Smeem  * connection.  Returns 1 if the connection is shutdown; 0 otherwise.
28267c478bd9Sstevel@tonic-gate  */
28277c478bd9Sstevel@tonic-gate static int
mir_check_len(queue_t * q,mblk_t * head_mp)28283b3b7026SMarcel Telka mir_check_len(queue_t *q, mblk_t *head_mp)
28297c478bd9Sstevel@tonic-gate {
2830153adbb6Smeem 	mir_t *mir = q->q_ptr;
2831153adbb6Smeem 	uint_t maxsize = 0;
28323b3b7026SMarcel Telka 	size_t msg_len = msgdsize(head_mp);
28337c478bd9Sstevel@tonic-gate 
2834153adbb6Smeem 	if (mir->mir_max_msg_sizep != NULL)
2835153adbb6Smeem 		maxsize = *mir->mir_max_msg_sizep;
28367c478bd9Sstevel@tonic-gate 
28373b3b7026SMarcel Telka 	if (maxsize == 0 || msg_len <= maxsize)
28387c478bd9Sstevel@tonic-gate 		return (0);
28397c478bd9Sstevel@tonic-gate 
28407c478bd9Sstevel@tonic-gate 	freemsg(head_mp);
2841153adbb6Smeem 	mir->mir_head_mp = NULL;
2842153adbb6Smeem 	mir->mir_tail_mp = NULL;
2843153adbb6Smeem 	mir->mir_frag_header = 0;
2844153adbb6Smeem 	mir->mir_frag_len = -(int32_t)sizeof (uint32_t);
28457c478bd9Sstevel@tonic-gate 	if (mir->mir_type != RPC_SERVER || mir->mir_setup_complete) {
28467c478bd9Sstevel@tonic-gate 		cmn_err(CE_NOTE,
28473b3b7026SMarcel Telka 		    "kRPC: record fragment from %s of size(%lu) exceeds "
284807e75131Sgt 		    "maximum (%u). Disconnecting",
284907e75131Sgt 		    (mir->mir_type == RPC_CLIENT) ? "server" :
285007e75131Sgt 		    (mir->mir_type == RPC_SERVER) ? "client" :
28513b3b7026SMarcel Telka 		    "test tool", msg_len, maxsize);
28527c478bd9Sstevel@tonic-gate 	}
28537c478bd9Sstevel@tonic-gate 
28547c478bd9Sstevel@tonic-gate 	mir_disconnect(q, mir);
28557c478bd9Sstevel@tonic-gate 	return (1);
28567c478bd9Sstevel@tonic-gate }
2857