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
545916cd2Sjpk  * Common Development and Distribution License (the "License").
645916cd2Sjpk  * 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  */
2177c67f2fSkcpoon 
227c478bd9Sstevel@tonic-gate /*
23*fb9c4d48SGeorge Shepherd  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate 
287c478bd9Sstevel@tonic-gate #include <sys/types.h>
297c478bd9Sstevel@tonic-gate #include <sys/systm.h>
307c478bd9Sstevel@tonic-gate #include <sys/stream.h>
317c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h>
327c478bd9Sstevel@tonic-gate #include <sys/strsubr.h>
337c478bd9Sstevel@tonic-gate #include <sys/strsun.h>
347c478bd9Sstevel@tonic-gate 
357c478bd9Sstevel@tonic-gate #include <netinet/in.h>
367c478bd9Sstevel@tonic-gate #include <netinet/ip6.h>
377c478bd9Sstevel@tonic-gate 
387c478bd9Sstevel@tonic-gate #include <inet/common.h>
397c478bd9Sstevel@tonic-gate #include <inet/ip.h>
407c478bd9Sstevel@tonic-gate #include <inet/mib2.h>
417c478bd9Sstevel@tonic-gate #include <inet/ipclassifier.h>
427c478bd9Sstevel@tonic-gate #include "sctp_impl.h"
437c478bd9Sstevel@tonic-gate #include "sctp_asconf.h"
447c478bd9Sstevel@tonic-gate 
457c478bd9Sstevel@tonic-gate /* Timer block states. */
467c478bd9Sstevel@tonic-gate typedef enum {
477c478bd9Sstevel@tonic-gate 	SCTP_TB_RUNNING = 1,
487c478bd9Sstevel@tonic-gate 	SCTP_TB_IDLE,
497c478bd9Sstevel@tonic-gate /* Could not stop/free before mblk got queued */
507c478bd9Sstevel@tonic-gate 	SCTP_TB_RESCHED,	/* sctp_tb_time_left contains tick count */
517c478bd9Sstevel@tonic-gate 	SCTP_TB_CANCELLED,
527c478bd9Sstevel@tonic-gate 	SCTP_TB_TO_BE_FREED
537c478bd9Sstevel@tonic-gate } timer_block_state;
547c478bd9Sstevel@tonic-gate 
557c478bd9Sstevel@tonic-gate typedef struct sctp_tb_s {
567c478bd9Sstevel@tonic-gate 	timer_block_state	sctp_tb_state;
577c478bd9Sstevel@tonic-gate 	timeout_id_t		sctp_tb_tid;
587c478bd9Sstevel@tonic-gate 	mblk_t			*sctp_tb_mp;
597c478bd9Sstevel@tonic-gate 	clock_t			sctp_tb_time_left;
607c478bd9Sstevel@tonic-gate } sctp_tb_t;
617c478bd9Sstevel@tonic-gate 
627c478bd9Sstevel@tonic-gate static void sctp_timer_fire(sctp_tb_t *);
637c478bd9Sstevel@tonic-gate 
647c478bd9Sstevel@tonic-gate /*
657c478bd9Sstevel@tonic-gate  *		sctp_timer mechanism.
667c478bd9Sstevel@tonic-gate  *
677c478bd9Sstevel@tonic-gate  * Each timer is represented by a timer mblk. When the
687c478bd9Sstevel@tonic-gate  * timer fires, and the sctp_t is busy, the timer mblk will be put on
697c478bd9Sstevel@tonic-gate  * the associated sctp_t timer queue so that it can be executed when
707c478bd9Sstevel@tonic-gate  * the thread holding the lock on the sctp_t is done with its job.
717c478bd9Sstevel@tonic-gate  *
727c478bd9Sstevel@tonic-gate  * Note that there is no lock to protect the timer mblk state.  The reason
737c478bd9Sstevel@tonic-gate  * is that the timer state can only be changed by a thread holding the
747c478bd9Sstevel@tonic-gate  * lock on the sctp_t.
757c478bd9Sstevel@tonic-gate  *
767c478bd9Sstevel@tonic-gate  * The interface consists of 4 entry points:
777c478bd9Sstevel@tonic-gate  *	sctp_timer_alloc	- create a timer mblk
787c478bd9Sstevel@tonic-gate  *	sctp_timer_free		- free a timer mblk
797c478bd9Sstevel@tonic-gate  *	sctp_timer		- start, restart, stop the timer
807c478bd9Sstevel@tonic-gate  *	sctp_timer_valid	- called by sctp_process_recvq to verify that
817c478bd9Sstevel@tonic-gate  *				  the timer did indeed fire.
827c478bd9Sstevel@tonic-gate  */
837c478bd9Sstevel@tonic-gate 
847c478bd9Sstevel@tonic-gate 
857c478bd9Sstevel@tonic-gate /*
867c478bd9Sstevel@tonic-gate  * Start, restart, stop the timer.
877c478bd9Sstevel@tonic-gate  * If "tim" is -1 the timer is stopped.
887c478bd9Sstevel@tonic-gate  * Otherwise, the timer is stopped if it is already running, and
897c478bd9Sstevel@tonic-gate  * set to fire tim clock ticks from now.
907c478bd9Sstevel@tonic-gate  */
917c478bd9Sstevel@tonic-gate void
927c478bd9Sstevel@tonic-gate sctp_timer(sctp_t *sctp, mblk_t *mp, clock_t tim)
937c478bd9Sstevel@tonic-gate {
947c478bd9Sstevel@tonic-gate 	sctp_tb_t *sctp_tb;
957c478bd9Sstevel@tonic-gate 	int state;
967c478bd9Sstevel@tonic-gate 
977c478bd9Sstevel@tonic-gate 	ASSERT(sctp != NULL && mp != NULL);
987c478bd9Sstevel@tonic-gate 	ASSERT((mp->b_rptr - mp->b_datap->db_base) == sizeof (sctp_tb_t));
997c478bd9Sstevel@tonic-gate 	ASSERT(mp->b_datap->db_type == M_PCSIG);
1007c478bd9Sstevel@tonic-gate 
1017c478bd9Sstevel@tonic-gate 	sctp_tb = (sctp_tb_t *)mp->b_datap->db_base;
1027c478bd9Sstevel@tonic-gate 	if (tim >= 0) {
1037c478bd9Sstevel@tonic-gate 		state = sctp_tb->sctp_tb_state;
1047c478bd9Sstevel@tonic-gate 		sctp_tb->sctp_tb_time_left = tim;
1057c478bd9Sstevel@tonic-gate 		if (state == SCTP_TB_RUNNING) {
1067c478bd9Sstevel@tonic-gate 			if (untimeout(sctp_tb->sctp_tb_tid) < 0) {
1077c478bd9Sstevel@tonic-gate 				sctp_tb->sctp_tb_state = SCTP_TB_RESCHED;
1087c478bd9Sstevel@tonic-gate 				/* sctp_timer_valid will start timer */
1097c478bd9Sstevel@tonic-gate 				return;
1107c478bd9Sstevel@tonic-gate 			}
1117c478bd9Sstevel@tonic-gate 		} else if (state != SCTP_TB_IDLE) {
1127c478bd9Sstevel@tonic-gate 			ASSERT(state != SCTP_TB_TO_BE_FREED);
1137c478bd9Sstevel@tonic-gate 			if (state == SCTP_TB_CANCELLED) {
1147c478bd9Sstevel@tonic-gate 				sctp_tb->sctp_tb_state = SCTP_TB_RESCHED;
1157c478bd9Sstevel@tonic-gate 				/* sctp_timer_valid will start timer */
1167c478bd9Sstevel@tonic-gate 				return;
1177c478bd9Sstevel@tonic-gate 			}
1187c478bd9Sstevel@tonic-gate 			if (state == SCTP_TB_RESCHED) {
1197c478bd9Sstevel@tonic-gate 				/* sctp_timer_valid will start timer */
1207c478bd9Sstevel@tonic-gate 				return;
1217c478bd9Sstevel@tonic-gate 			}
1227c478bd9Sstevel@tonic-gate 		} else {
1237c478bd9Sstevel@tonic-gate 			SCTP_REFHOLD(sctp);
1247c478bd9Sstevel@tonic-gate 		}
1257c478bd9Sstevel@tonic-gate 		sctp_tb->sctp_tb_state = SCTP_TB_RUNNING;
1267c478bd9Sstevel@tonic-gate 		sctp_tb->sctp_tb_tid =
1277c478bd9Sstevel@tonic-gate 		    timeout((pfv_t)sctp_timer_fire, sctp_tb, tim);
1287c478bd9Sstevel@tonic-gate 		return;
1297c478bd9Sstevel@tonic-gate 	}
1307c478bd9Sstevel@tonic-gate 	switch (tim) {
1317c478bd9Sstevel@tonic-gate 	case -1:
1327c478bd9Sstevel@tonic-gate 		sctp_timer_stop(mp);
1337c478bd9Sstevel@tonic-gate 		break;
1347c478bd9Sstevel@tonic-gate 	default:
1357c478bd9Sstevel@tonic-gate 		ASSERT(0);
1367c478bd9Sstevel@tonic-gate 		break;
1377c478bd9Sstevel@tonic-gate 	}
1387c478bd9Sstevel@tonic-gate }
1397c478bd9Sstevel@tonic-gate 
1407c478bd9Sstevel@tonic-gate /*
1417c478bd9Sstevel@tonic-gate  * sctp_timer_alloc is called by sctp_init to allocate and initialize a
1427c478bd9Sstevel@tonic-gate  * sctp timer.
1437c478bd9Sstevel@tonic-gate  *
1447c478bd9Sstevel@tonic-gate  * Allocate an M_PCSIG timer message. The space between db_base and
1457c478bd9Sstevel@tonic-gate  * b_rptr is used by the sctp_timer mechanism, and after b_rptr there is
1467c478bd9Sstevel@tonic-gate  * space for sctpt_t.
1477c478bd9Sstevel@tonic-gate  */
1487c478bd9Sstevel@tonic-gate mblk_t *
149121e5416Skcpoon sctp_timer_alloc(sctp_t *sctp, pfv_t func, int sleep)
1507c478bd9Sstevel@tonic-gate {
1517c478bd9Sstevel@tonic-gate 	mblk_t *mp;
1527c478bd9Sstevel@tonic-gate 	sctp_tb_t *sctp_tb;
1537c478bd9Sstevel@tonic-gate 	sctpt_t	*sctpt;
154f4b3ec61Sdh 	sctp_stack_t	*sctps = sctp->sctp_sctps;
1557c478bd9Sstevel@tonic-gate 
156121e5416Skcpoon 	if (sleep == KM_SLEEP) {
157121e5416Skcpoon 		mp = allocb_wait(sizeof (sctp_t) + sizeof (sctp_tb_t), BPRI_HI,
158121e5416Skcpoon 		    STR_NOSIG, NULL);
159121e5416Skcpoon 	} else {
160121e5416Skcpoon 		mp = allocb(sizeof (sctp_t) + sizeof (sctp_tb_t), BPRI_HI);
161121e5416Skcpoon 	}
162121e5416Skcpoon 	if (mp != NULL) {
1637c478bd9Sstevel@tonic-gate 		mp->b_datap->db_type = M_PCSIG;
1647c478bd9Sstevel@tonic-gate 		sctp_tb = (sctp_tb_t *)mp->b_datap->db_base;
1657c478bd9Sstevel@tonic-gate 		mp->b_rptr = (uchar_t *)&sctp_tb[1];
1667c478bd9Sstevel@tonic-gate 		mp->b_wptr = mp->b_rptr + sizeof (sctpt_t);
1677c478bd9Sstevel@tonic-gate 		sctp_tb->sctp_tb_state = SCTP_TB_IDLE;
1687c478bd9Sstevel@tonic-gate 		sctp_tb->sctp_tb_mp = mp;
1697c478bd9Sstevel@tonic-gate 
1707c478bd9Sstevel@tonic-gate 		sctpt = (sctpt_t *)mp->b_rptr;
1717c478bd9Sstevel@tonic-gate 		sctpt->sctpt_sctp = sctp;
1727c478bd9Sstevel@tonic-gate 		sctpt->sctpt_faddr = NULL;	/* set when starting timer */
1737c478bd9Sstevel@tonic-gate 		sctpt->sctpt_pfv = func;
1747c478bd9Sstevel@tonic-gate 		return (mp);
1757c478bd9Sstevel@tonic-gate 	}
176f4b3ec61Sdh 	SCTP_KSTAT(sctps, sctp_add_timer);
1777c478bd9Sstevel@tonic-gate 	return (NULL);
1787c478bd9Sstevel@tonic-gate }
1797c478bd9Sstevel@tonic-gate 
1807c478bd9Sstevel@tonic-gate /*
1817c478bd9Sstevel@tonic-gate  * timeout() callback function.
1827c478bd9Sstevel@tonic-gate  * Put the message on the process control block's queue.
1837c478bd9Sstevel@tonic-gate  * If the timer is stopped or freed after
1847c478bd9Sstevel@tonic-gate  * it has fired then sctp_timer() and sctp_timer_valid() will clean
1857c478bd9Sstevel@tonic-gate  * things up.
1867c478bd9Sstevel@tonic-gate  */
1877c478bd9Sstevel@tonic-gate static void
1887c478bd9Sstevel@tonic-gate sctp_timer_fire(sctp_tb_t *sctp_tb)
1897c478bd9Sstevel@tonic-gate {
1907c478bd9Sstevel@tonic-gate 	mblk_t *mp;
1917c478bd9Sstevel@tonic-gate 	sctp_t *sctp;
1927c478bd9Sstevel@tonic-gate 	sctpt_t *sctpt;
1937c478bd9Sstevel@tonic-gate 
1947c478bd9Sstevel@tonic-gate 	mp = sctp_tb->sctp_tb_mp;
1957c478bd9Sstevel@tonic-gate 	ASSERT(sctp_tb == (sctp_tb_t *)mp->b_datap->db_base);
1967c478bd9Sstevel@tonic-gate 	ASSERT(mp->b_datap->db_type == M_PCSIG);
1977c478bd9Sstevel@tonic-gate 
1987c478bd9Sstevel@tonic-gate 	sctpt = (sctpt_t *)mp->b_rptr;
1997c478bd9Sstevel@tonic-gate 	sctp = sctpt->sctpt_sctp;
2007c478bd9Sstevel@tonic-gate 	ASSERT(sctp != NULL);
2017c478bd9Sstevel@tonic-gate 
2027c478bd9Sstevel@tonic-gate 	mutex_enter(&sctp->sctp_lock);
2037c478bd9Sstevel@tonic-gate 	if (sctp->sctp_running) {
2047c478bd9Sstevel@tonic-gate 		/*
2057c478bd9Sstevel@tonic-gate 		 * Put the timer mblk to the special sctp_timer_mp list.
2067c478bd9Sstevel@tonic-gate 		 * This timer will be handled when the thread using this
2077c478bd9Sstevel@tonic-gate 		 * SCTP is done with its job.
2087c478bd9Sstevel@tonic-gate 		 */
2097c478bd9Sstevel@tonic-gate 		if (sctp->sctp_timer_mp == NULL) {
2107c478bd9Sstevel@tonic-gate 			SCTP_REFHOLD(sctp);
2117c478bd9Sstevel@tonic-gate 			sctp->sctp_timer_mp = mp;
2127c478bd9Sstevel@tonic-gate 		} else {
2137c478bd9Sstevel@tonic-gate 			linkb(sctp->sctp_timer_mp, mp);
2147c478bd9Sstevel@tonic-gate 		}
2157c478bd9Sstevel@tonic-gate 		mp->b_cont = NULL;
2167c478bd9Sstevel@tonic-gate 		mutex_exit(&sctp->sctp_lock);
2177c478bd9Sstevel@tonic-gate 	} else {
2187c478bd9Sstevel@tonic-gate 		sctp->sctp_running = B_TRUE;
2197c478bd9Sstevel@tonic-gate 		mutex_exit(&sctp->sctp_lock);
2207c478bd9Sstevel@tonic-gate 
2217c478bd9Sstevel@tonic-gate 		sctp_timer_call(sctp, mp);
2227c478bd9Sstevel@tonic-gate 		WAKE_SCTP(sctp);
2237c478bd9Sstevel@tonic-gate 		sctp_process_sendq(sctp);
2247c478bd9Sstevel@tonic-gate 	}
2257c478bd9Sstevel@tonic-gate 	SCTP_REFRELE(sctp);
2267c478bd9Sstevel@tonic-gate }
2277c478bd9Sstevel@tonic-gate 
2287c478bd9Sstevel@tonic-gate /*
2297c478bd9Sstevel@tonic-gate  * Logically free a timer mblk (that might have a pending timeout().)
2307c478bd9Sstevel@tonic-gate  * If the timer has fired and the mblk has been put on the queue then
2317c478bd9Sstevel@tonic-gate  * sctp_timer_valid will free the mblk.
2327c478bd9Sstevel@tonic-gate  */
2337c478bd9Sstevel@tonic-gate void
2347c478bd9Sstevel@tonic-gate sctp_timer_free(mblk_t *mp)
2357c478bd9Sstevel@tonic-gate {
2367c478bd9Sstevel@tonic-gate 	sctp_tb_t *sctp_tb;
2377c478bd9Sstevel@tonic-gate 	int state;
2387c478bd9Sstevel@tonic-gate 	sctpt_t *sctpt;
2397c478bd9Sstevel@tonic-gate 
2407c478bd9Sstevel@tonic-gate 	ASSERT(mp != NULL);
2417c478bd9Sstevel@tonic-gate 	ASSERT((mp->b_rptr - mp->b_datap->db_base) == sizeof (sctp_tb_t));
2427c478bd9Sstevel@tonic-gate 	ASSERT(mp->b_datap->db_type == M_PCSIG);
2437c478bd9Sstevel@tonic-gate 
2447c478bd9Sstevel@tonic-gate 	sctp_tb = (sctp_tb_t *)mp->b_datap->db_base;
2457c478bd9Sstevel@tonic-gate 	state = sctp_tb->sctp_tb_state;
2467c478bd9Sstevel@tonic-gate 
24745916cd2Sjpk 	dprint(5, ("sctp_timer_free %p state %d\n", (void *)mp, state));
2487c478bd9Sstevel@tonic-gate 
2497c478bd9Sstevel@tonic-gate 	if (state == SCTP_TB_RUNNING) {
2507c478bd9Sstevel@tonic-gate 		if (untimeout(sctp_tb->sctp_tb_tid) < 0) {
2517c478bd9Sstevel@tonic-gate 			sctp_tb->sctp_tb_state = SCTP_TB_TO_BE_FREED;
2527c478bd9Sstevel@tonic-gate 			/* sctp_timer_valid will free the mblk */
2537c478bd9Sstevel@tonic-gate 			return;
2547c478bd9Sstevel@tonic-gate 		}
2557c478bd9Sstevel@tonic-gate 		sctpt = (sctpt_t *)mp->b_rptr;
2567c478bd9Sstevel@tonic-gate 		SCTP_REFRELE(sctpt->sctpt_sctp);
2577c478bd9Sstevel@tonic-gate 	} else if (state != SCTP_TB_IDLE) {
2587c478bd9Sstevel@tonic-gate 		ASSERT(state != SCTP_TB_TO_BE_FREED);
2597c478bd9Sstevel@tonic-gate 		sctp_tb->sctp_tb_state = SCTP_TB_TO_BE_FREED;
2607c478bd9Sstevel@tonic-gate 		/* sctp_timer_valid will free the mblk */
2617c478bd9Sstevel@tonic-gate 		return;
2627c478bd9Sstevel@tonic-gate 	}
2637c478bd9Sstevel@tonic-gate 	freeb(mp);
2647c478bd9Sstevel@tonic-gate }
2657c478bd9Sstevel@tonic-gate 
2667c478bd9Sstevel@tonic-gate /*
2677c478bd9Sstevel@tonic-gate  * Called from sctp_timer(,,-1)
2687c478bd9Sstevel@tonic-gate  */
2697c478bd9Sstevel@tonic-gate void
2707c478bd9Sstevel@tonic-gate sctp_timer_stop(mblk_t *mp)
2717c478bd9Sstevel@tonic-gate {
2727c478bd9Sstevel@tonic-gate 	sctp_tb_t *sctp_tb;
2737c478bd9Sstevel@tonic-gate 	int state;
2747c478bd9Sstevel@tonic-gate 	sctpt_t *sctpt;
2757c478bd9Sstevel@tonic-gate 
2767c478bd9Sstevel@tonic-gate 	ASSERT(mp != NULL);
2777c478bd9Sstevel@tonic-gate 	ASSERT(mp->b_datap->db_type == M_PCSIG);
2787c478bd9Sstevel@tonic-gate 
2797c478bd9Sstevel@tonic-gate 	sctp_tb = (sctp_tb_t *)mp->b_datap->db_base;
2807c478bd9Sstevel@tonic-gate 	state = sctp_tb->sctp_tb_state;
2817c478bd9Sstevel@tonic-gate 
28245916cd2Sjpk 	dprint(5, ("sctp_timer_stop %p %d\n", (void *)mp, state));
2837c478bd9Sstevel@tonic-gate 
2847c478bd9Sstevel@tonic-gate 	if (state == SCTP_TB_RUNNING) {
2857c478bd9Sstevel@tonic-gate 		if (untimeout(sctp_tb->sctp_tb_tid) < 0) {
2867c478bd9Sstevel@tonic-gate 			sctp_tb->sctp_tb_state = SCTP_TB_CANCELLED;
2877c478bd9Sstevel@tonic-gate 		} else {
2887c478bd9Sstevel@tonic-gate 			sctp_tb->sctp_tb_state = SCTP_TB_IDLE;
2897c478bd9Sstevel@tonic-gate 			sctpt = (sctpt_t *)mp->b_rptr;
2907c478bd9Sstevel@tonic-gate 			SCTP_REFRELE(sctpt->sctpt_sctp);
2917c478bd9Sstevel@tonic-gate 		}
2927c478bd9Sstevel@tonic-gate 	} else if (state == SCTP_TB_RESCHED) {
2937c478bd9Sstevel@tonic-gate 		sctp_tb->sctp_tb_state = SCTP_TB_CANCELLED;
2947c478bd9Sstevel@tonic-gate 	}
2957c478bd9Sstevel@tonic-gate }
2967c478bd9Sstevel@tonic-gate 
2977c478bd9Sstevel@tonic-gate /*
2987c478bd9Sstevel@tonic-gate  * The user of the sctp_timer mechanism is required to call
2997c478bd9Sstevel@tonic-gate  * sctp_timer_valid() for each M_PCSIG message processed in the
3007c478bd9Sstevel@tonic-gate  * service procedures.
3017c478bd9Sstevel@tonic-gate  * sctp_timer_valid will return "true" if the timer actually did fire.
3027c478bd9Sstevel@tonic-gate  */
3037c478bd9Sstevel@tonic-gate 
3047c478bd9Sstevel@tonic-gate static boolean_t
3057c478bd9Sstevel@tonic-gate sctp_timer_valid(mblk_t *mp)
3067c478bd9Sstevel@tonic-gate {
3077c478bd9Sstevel@tonic-gate 	sctp_tb_t *sctp_tb;
3087c478bd9Sstevel@tonic-gate 	int state;
3097c478bd9Sstevel@tonic-gate 	sctpt_t *sctpt;
3107c478bd9Sstevel@tonic-gate 
3117c478bd9Sstevel@tonic-gate 	ASSERT(mp != NULL);
3127c478bd9Sstevel@tonic-gate 	ASSERT(mp->b_datap->db_type == M_PCSIG);
3137c478bd9Sstevel@tonic-gate 
3147c478bd9Sstevel@tonic-gate 	sctp_tb = (sctp_tb_t *)DB_BASE(mp);
3157c478bd9Sstevel@tonic-gate 	sctpt = (sctpt_t *)mp->b_rptr;
3167c478bd9Sstevel@tonic-gate 	state = sctp_tb->sctp_tb_state;
3177c478bd9Sstevel@tonic-gate 	if (state != SCTP_TB_RUNNING) {
3187c478bd9Sstevel@tonic-gate 		ASSERT(state != SCTP_TB_IDLE);
3197c478bd9Sstevel@tonic-gate 		if (state == SCTP_TB_TO_BE_FREED) {
3207c478bd9Sstevel@tonic-gate 			/*
3217c478bd9Sstevel@tonic-gate 			 * sctp_timer_free was called after the message
3227c478bd9Sstevel@tonic-gate 			 * was putq'ed.
3237c478bd9Sstevel@tonic-gate 			 */
3247c478bd9Sstevel@tonic-gate 			freeb(mp);
3257c478bd9Sstevel@tonic-gate 			return (B_FALSE);
3267c478bd9Sstevel@tonic-gate 		}
3277c478bd9Sstevel@tonic-gate 		if (state == SCTP_TB_CANCELLED) {
3287c478bd9Sstevel@tonic-gate 			/* The timer was stopped after the mblk was putq'ed */
3297c478bd9Sstevel@tonic-gate 			sctp_tb->sctp_tb_state = SCTP_TB_IDLE;
3307c478bd9Sstevel@tonic-gate 			return (B_FALSE);
3317c478bd9Sstevel@tonic-gate 		}
3327c478bd9Sstevel@tonic-gate 		if (state == SCTP_TB_RESCHED) {
3337c478bd9Sstevel@tonic-gate 			/*
3347c478bd9Sstevel@tonic-gate 			 * The timer was stopped and then restarted after
3357c478bd9Sstevel@tonic-gate 			 * the mblk was putq'ed.
3367c478bd9Sstevel@tonic-gate 			 * sctp_tb_time_left contains the number of ticks that
3377c478bd9Sstevel@tonic-gate 			 * the timer was restarted with.
3387c478bd9Sstevel@tonic-gate 			 * The sctp will not be disapper between the time
3397c478bd9Sstevel@tonic-gate 			 * the sctpt_t is marked SCTP_TB_RESCHED and when
3407c478bd9Sstevel@tonic-gate 			 * we get here as sctp_add_recvq() does a refhold.
3417c478bd9Sstevel@tonic-gate 			 */
3427c478bd9Sstevel@tonic-gate 			sctp_tb->sctp_tb_state = SCTP_TB_RUNNING;
3437c478bd9Sstevel@tonic-gate 			sctp_tb->sctp_tb_tid = timeout((pfv_t)sctp_timer_fire,
3447c478bd9Sstevel@tonic-gate 			    sctp_tb, sctp_tb->sctp_tb_time_left);
3457c478bd9Sstevel@tonic-gate 			SCTP_REFHOLD(sctpt->sctpt_sctp);
3467c478bd9Sstevel@tonic-gate 			return (B_FALSE);
3477c478bd9Sstevel@tonic-gate 		}
3487c478bd9Sstevel@tonic-gate 	}
3497c478bd9Sstevel@tonic-gate 	sctp_tb->sctp_tb_state = SCTP_TB_IDLE;
3507c478bd9Sstevel@tonic-gate 	return (B_TRUE);
3517c478bd9Sstevel@tonic-gate }
3527c478bd9Sstevel@tonic-gate 
3537c478bd9Sstevel@tonic-gate /*
3547c478bd9Sstevel@tonic-gate  * The SCTP timer call. Calls sctp_timer_valid() to verify whether
3557c478bd9Sstevel@tonic-gate  * timer was cancelled or not.
3567c478bd9Sstevel@tonic-gate  */
3577c478bd9Sstevel@tonic-gate void
3587c478bd9Sstevel@tonic-gate sctp_timer_call(sctp_t *sctp, mblk_t *mp)
3597c478bd9Sstevel@tonic-gate {
3607c478bd9Sstevel@tonic-gate 	sctpt_t *sctpt = (sctpt_t *)mp->b_rptr;
3617c478bd9Sstevel@tonic-gate 
3627c478bd9Sstevel@tonic-gate 	if (sctp_timer_valid(mp)) {
3637c478bd9Sstevel@tonic-gate 		(*sctpt->sctpt_pfv)(sctp, sctpt->sctpt_faddr);
3647c478bd9Sstevel@tonic-gate 	}
3657c478bd9Sstevel@tonic-gate }
3667c478bd9Sstevel@tonic-gate 
3677c478bd9Sstevel@tonic-gate /*
3687c478bd9Sstevel@tonic-gate  * Delayed ack
3697c478bd9Sstevel@tonic-gate  */
3707c478bd9Sstevel@tonic-gate void
3717c478bd9Sstevel@tonic-gate sctp_ack_timer(sctp_t *sctp)
3727c478bd9Sstevel@tonic-gate {
373f4b3ec61Sdh 	sctp_stack_t	*sctps = sctp->sctp_sctps;
374f4b3ec61Sdh 
3757c478bd9Sstevel@tonic-gate 	sctp->sctp_ack_timer_running = 0;
376f4b3ec61Sdh 	sctp->sctp_sack_toggle = sctps->sctps_deferred_acks_max;
377f4b3ec61Sdh 	BUMP_MIB(&sctps->sctps_mib, sctpOutAckDelayed);
3787f093707Skcpoon 	(void) sctp_sack(sctp, NULL);
3797c478bd9Sstevel@tonic-gate }
3807c478bd9Sstevel@tonic-gate 
3817c478bd9Sstevel@tonic-gate /*
3827c478bd9Sstevel@tonic-gate  * Peer address heartbeat timer handler
3837c478bd9Sstevel@tonic-gate  */
3847c478bd9Sstevel@tonic-gate void
3857c478bd9Sstevel@tonic-gate sctp_heartbeat_timer(sctp_t *sctp)
3867c478bd9Sstevel@tonic-gate {
3877c478bd9Sstevel@tonic-gate 	sctp_faddr_t	*fp;
3887c478bd9Sstevel@tonic-gate 	int64_t		now;
3897c478bd9Sstevel@tonic-gate 	int64_t		earliest_expiry;
3907c478bd9Sstevel@tonic-gate 	int		cnt;
391f4b3ec61Sdh 	sctp_stack_t	*sctps = sctp->sctp_sctps;
3927c478bd9Sstevel@tonic-gate 
3937c478bd9Sstevel@tonic-gate 	if (sctp->sctp_strikes >= sctp->sctp_pa_max_rxt) {
3947c478bd9Sstevel@tonic-gate 		/*
3957c478bd9Sstevel@tonic-gate 		 * If there is a peer address with no strikes,
3967c478bd9Sstevel@tonic-gate 		 * don't give up yet. If enough other peer
3977c478bd9Sstevel@tonic-gate 		 * address are down, we could otherwise fail
3987c478bd9Sstevel@tonic-gate 		 * the association prematurely.  This is a
3997c478bd9Sstevel@tonic-gate 		 * byproduct of our aggressive probe approach
4007c478bd9Sstevel@tonic-gate 		 * when a heartbeat fails to connect. We may
4017c478bd9Sstevel@tonic-gate 		 * wish to revisit this...
4027c478bd9Sstevel@tonic-gate 		 */
4037c478bd9Sstevel@tonic-gate 		if (!sctp_is_a_faddr_clean(sctp)) {
4047c478bd9Sstevel@tonic-gate 			/* time to give up */
405f4b3ec61Sdh 			BUMP_MIB(&sctps->sctps_mib, sctpAborted);
406f4b3ec61Sdh 			BUMP_MIB(&sctps->sctps_mib, sctpTimHeartBeatDrop);
4077c478bd9Sstevel@tonic-gate 			sctp_assoc_event(sctp, SCTP_COMM_LOST, 0, NULL);
4087c478bd9Sstevel@tonic-gate 			sctp_clean_death(sctp, sctp->sctp_client_errno ?
4097c478bd9Sstevel@tonic-gate 			    sctp->sctp_client_errno : ETIMEDOUT);
4107c478bd9Sstevel@tonic-gate 			return;
4117c478bd9Sstevel@tonic-gate 		}
4127c478bd9Sstevel@tonic-gate 	}
4137c478bd9Sstevel@tonic-gate 
4147c478bd9Sstevel@tonic-gate 	/* Only send heartbeats in the established state */
4157c478bd9Sstevel@tonic-gate 	if (sctp->sctp_state != SCTPS_ESTABLISHED) {
4167c478bd9Sstevel@tonic-gate 		dprint(5, ("sctp_heartbeat_timer: not in ESTABLISHED\n"));
4177c478bd9Sstevel@tonic-gate 		return;
4187c478bd9Sstevel@tonic-gate 	}
4197c478bd9Sstevel@tonic-gate 
4207c478bd9Sstevel@tonic-gate 	now = lbolt64;
4217c478bd9Sstevel@tonic-gate 	earliest_expiry = 0;
422f4b3ec61Sdh 	cnt = sctps->sctps_maxburst;
4237c478bd9Sstevel@tonic-gate 
4247c478bd9Sstevel@tonic-gate 	/*
4257c478bd9Sstevel@tonic-gate 	 * Walk through all faddrs.  Since the timer should run infrequently
4267c478bd9Sstevel@tonic-gate 	 * and the number of peer addresses should not be big, this should
4277c478bd9Sstevel@tonic-gate 	 * be OK.
4287c478bd9Sstevel@tonic-gate 	 */
4297c478bd9Sstevel@tonic-gate 	for (fp = sctp->sctp_faddrs; fp != NULL; fp = fp->next) {
4307c478bd9Sstevel@tonic-gate 		/*
431c31292eeSkcpoon 		 * If the peer is unreachable because there is no available
432c31292eeSkcpoon 		 * source address, call sctp_get_ire() to see if it is
433c31292eeSkcpoon 		 * reachable now.  If it is OK, the state will become
434c31292eeSkcpoon 		 * unconfirmed.  And the following code to handle unconfirmed
435c31292eeSkcpoon 		 * address will be executed.  If it is still not OK,
436c31292eeSkcpoon 		 * re-schedule.  If heartbeat is enabled, only try this
437c31292eeSkcpoon 		 * up to the normal heartbeat max times.  But if heartbeat
438c31292eeSkcpoon 		 * is disable, this retry may go on forever.
4397c478bd9Sstevel@tonic-gate 		 */
440c31292eeSkcpoon 		if (fp->state == SCTP_FADDRS_UNREACH) {
441c31292eeSkcpoon 			sctp_get_ire(sctp, fp);
442c31292eeSkcpoon 			if (fp->state == SCTP_FADDRS_UNREACH) {
443c31292eeSkcpoon 				if (fp->hb_enabled &&
444c31292eeSkcpoon 				    ++fp->strikes > fp->max_retr &&
445c31292eeSkcpoon 				    sctp_faddr_dead(sctp, fp,
446c31292eeSkcpoon 				    SCTP_FADDRS_DOWN) == -1) {
447c31292eeSkcpoon 					/* Assoc is dead */
448c31292eeSkcpoon 					return;
449c31292eeSkcpoon 				}
450c31292eeSkcpoon 				fp->hb_expiry = now + SET_HB_INTVL(fp);
451c31292eeSkcpoon 				goto set_expiry;
452c31292eeSkcpoon 			} else {
453c31292eeSkcpoon 				/* Send a heartbeat immediately. */
454c31292eeSkcpoon 				fp->hb_expiry = now;
455c31292eeSkcpoon 			}
456c31292eeSkcpoon 		}
457c31292eeSkcpoon 		/*
458c31292eeSkcpoon 		 * Don't send heartbeat to this address if it is not
459c31292eeSkcpoon 		 * hb_enabled and the address has been confirmed.
460c31292eeSkcpoon 		 */
461c31292eeSkcpoon 		if (!fp->hb_enabled && fp->state != SCTP_FADDRS_UNCONFIRMED) {
4627c478bd9Sstevel@tonic-gate 			continue;
4637c478bd9Sstevel@tonic-gate 		}
4647c478bd9Sstevel@tonic-gate 
4657c478bd9Sstevel@tonic-gate 		/*
4667c478bd9Sstevel@tonic-gate 		 * The heartbeat timer is expired.  If the address is dead,
4677c478bd9Sstevel@tonic-gate 		 * we still send heartbeat to it in case it becomes alive
468c31292eeSkcpoon 		 * again.  But we will only send once in a while, calculated
469c31292eeSkcpoon 		 * by SET_HB_INTVL().
4707c478bd9Sstevel@tonic-gate 		 *
4717c478bd9Sstevel@tonic-gate 		 * If the address is alive and there is a hearbeat pending,
4727c478bd9Sstevel@tonic-gate 		 * resend the heartbeat and start exponential backoff on the
4737c478bd9Sstevel@tonic-gate 		 * heartbeat timeout value.  If there is no heartbeat pending,
4747c478bd9Sstevel@tonic-gate 		 * just send out one.
4757c478bd9Sstevel@tonic-gate 		 */
4767c478bd9Sstevel@tonic-gate 		if (now >= fp->hb_expiry) {
4777c478bd9Sstevel@tonic-gate 			if (fp->hb_pending) {
4787c478bd9Sstevel@tonic-gate 				/*
4797c478bd9Sstevel@tonic-gate 				 * If an address is not confirmed, no need
4807c478bd9Sstevel@tonic-gate 				 * to bump the overall counter as it doesn't
4817c478bd9Sstevel@tonic-gate 				 * matter as we will not use it to send data
4827c478bd9Sstevel@tonic-gate 				 * and it should not affect the association.
4837c478bd9Sstevel@tonic-gate 				 */
4847c478bd9Sstevel@tonic-gate 				switch (fp->state) {
4857c478bd9Sstevel@tonic-gate 				case SCTP_FADDRS_ALIVE:
4867c478bd9Sstevel@tonic-gate 					sctp->sctp_strikes++;
4877c478bd9Sstevel@tonic-gate 					/* FALLTHRU */
4887c478bd9Sstevel@tonic-gate 				case SCTP_FADDRS_UNCONFIRMED:
4897c478bd9Sstevel@tonic-gate 					/*
4907c478bd9Sstevel@tonic-gate 					 * Retransmission implies that RTO
4917c478bd9Sstevel@tonic-gate 					 * is probably not correct.
4927c478bd9Sstevel@tonic-gate 					 */
4937c478bd9Sstevel@tonic-gate 					fp->rtt_updates = 0;
4947c478bd9Sstevel@tonic-gate 					fp->strikes++;
4957c478bd9Sstevel@tonic-gate 					if (fp->strikes > fp->max_retr) {
4967c478bd9Sstevel@tonic-gate 						if (sctp_faddr_dead(sctp, fp,
4977c478bd9Sstevel@tonic-gate 						    SCTP_FADDRS_DOWN) == -1) {
4987c478bd9Sstevel@tonic-gate 							/* Assoc is dead */
4997c478bd9Sstevel@tonic-gate 							return;
5007c478bd9Sstevel@tonic-gate 						}
5017c478bd9Sstevel@tonic-gate 						/*
5027c478bd9Sstevel@tonic-gate 						 * Addr is down; keep initial
5037c478bd9Sstevel@tonic-gate 						 * RTO
5047c478bd9Sstevel@tonic-gate 						 */
5057c478bd9Sstevel@tonic-gate 						fp->rto =
5067c478bd9Sstevel@tonic-gate 						    sctp->sctp_rto_initial;
5077c478bd9Sstevel@tonic-gate 						goto dead_addr;
5087c478bd9Sstevel@tonic-gate 					} else {
5097c478bd9Sstevel@tonic-gate 						SCTP_CALC_RXT(fp,
5107c478bd9Sstevel@tonic-gate 						    sctp->sctp_rto_max);
5117c478bd9Sstevel@tonic-gate 						fp->hb_expiry = now + fp->rto;
5127c478bd9Sstevel@tonic-gate 					}
5137c478bd9Sstevel@tonic-gate 					break;
5147c478bd9Sstevel@tonic-gate 				case SCTP_FADDRS_DOWN:
5157c478bd9Sstevel@tonic-gate dead_addr:
5167c478bd9Sstevel@tonic-gate 					fp->hb_expiry = now + SET_HB_INTVL(fp);
5177c478bd9Sstevel@tonic-gate 					break;
5187c478bd9Sstevel@tonic-gate 				default:
5197c478bd9Sstevel@tonic-gate 					continue;
5207c478bd9Sstevel@tonic-gate 				}
5217c478bd9Sstevel@tonic-gate 			} else {
522c31292eeSkcpoon 				/*
523c31292eeSkcpoon 				 * If there is unack'ed data, no need to
524c31292eeSkcpoon 				 * send a heart beat.
525c31292eeSkcpoon 				 */
526c31292eeSkcpoon 				if (fp->suna > 0) {
527c31292eeSkcpoon 					fp->hb_expiry = now + SET_HB_INTVL(fp);
528c31292eeSkcpoon 					goto set_expiry;
529c31292eeSkcpoon 				} else {
530c31292eeSkcpoon 					fp->hb_expiry = now + fp->rto;
531c31292eeSkcpoon 				}
5327c478bd9Sstevel@tonic-gate 			}
5337c478bd9Sstevel@tonic-gate 			/*
5347c478bd9Sstevel@tonic-gate 			 * Note that the total number of heartbeat we can send
5357c478bd9Sstevel@tonic-gate 			 * out simultaneously is limited by sctp_maxburst.  If
5367c478bd9Sstevel@tonic-gate 			 * the limit is exceeded, we need to wait for the next
5377c478bd9Sstevel@tonic-gate 			 * timeout to send them.  This should only happen if
5387c478bd9Sstevel@tonic-gate 			 * there is unconfirmed address.  Note that hb_pending
5397c478bd9Sstevel@tonic-gate 			 * is set in sctp_send_heartbeat().  So if a heartbeat
5407c478bd9Sstevel@tonic-gate 			 * is not sent, it will not affect the state of the
5417c478bd9Sstevel@tonic-gate 			 * peer address.
5427c478bd9Sstevel@tonic-gate 			 */
5437c478bd9Sstevel@tonic-gate 			if (fp->state != SCTP_FADDRS_UNCONFIRMED || cnt-- > 0)
5447c478bd9Sstevel@tonic-gate 				sctp_send_heartbeat(sctp, fp);
5457c478bd9Sstevel@tonic-gate 		}
546c31292eeSkcpoon set_expiry:
5477c478bd9Sstevel@tonic-gate 		if (fp->hb_expiry < earliest_expiry || earliest_expiry == 0)
5487c478bd9Sstevel@tonic-gate 			earliest_expiry = fp->hb_expiry;
5497c478bd9Sstevel@tonic-gate 	}
5507c478bd9Sstevel@tonic-gate 	if (sctp->sctp_autoclose != 0) {
5517c478bd9Sstevel@tonic-gate 		int64_t expire;
5527c478bd9Sstevel@tonic-gate 
5537c478bd9Sstevel@tonic-gate 		expire = sctp->sctp_active + sctp->sctp_autoclose;
5547c478bd9Sstevel@tonic-gate 
5557c478bd9Sstevel@tonic-gate 		if (expire <= now) {
5567c478bd9Sstevel@tonic-gate 			dprint(3, ("sctp_heartbeat_timer: autoclosing\n"));
5577c478bd9Sstevel@tonic-gate 			sctp_send_shutdown(sctp, 0);
5587c478bd9Sstevel@tonic-gate 			return;
5597c478bd9Sstevel@tonic-gate 		}
5607c478bd9Sstevel@tonic-gate 		if (expire < earliest_expiry || earliest_expiry == 0)
5617c478bd9Sstevel@tonic-gate 			earliest_expiry = expire;
5627c478bd9Sstevel@tonic-gate 	}
5637c478bd9Sstevel@tonic-gate 
5647c478bd9Sstevel@tonic-gate 	earliest_expiry -= now;
5657c478bd9Sstevel@tonic-gate 	if (earliest_expiry < 0)
5667c478bd9Sstevel@tonic-gate 		earliest_expiry = 1;
5677c478bd9Sstevel@tonic-gate 	sctp_timer(sctp, sctp->sctp_heartbeat_mp, earliest_expiry);
5687c478bd9Sstevel@tonic-gate }
5697c478bd9Sstevel@tonic-gate 
5707c478bd9Sstevel@tonic-gate void
5717c478bd9Sstevel@tonic-gate sctp_rexmit_timer(sctp_t *sctp, sctp_faddr_t *fp)
5727c478bd9Sstevel@tonic-gate {
5737c478bd9Sstevel@tonic-gate 	mblk_t 		*mp;
5747c478bd9Sstevel@tonic-gate 	uint32_t	rto_max = sctp->sctp_rto_max;
575f4b3ec61Sdh 	sctp_stack_t	*sctps = sctp->sctp_sctps;
5767c478bd9Sstevel@tonic-gate 
5777c478bd9Sstevel@tonic-gate 	ASSERT(fp != NULL);
5787c478bd9Sstevel@tonic-gate 
5797c478bd9Sstevel@tonic-gate 	dprint(3, ("sctp_timer: faddr=%x:%x:%x:%x\n",
5807c478bd9Sstevel@tonic-gate 	    SCTP_PRINTADDR(fp->faddr)));
5817c478bd9Sstevel@tonic-gate 
5827c478bd9Sstevel@tonic-gate 	fp->timer_running = 0;
5837c478bd9Sstevel@tonic-gate 
5847c478bd9Sstevel@tonic-gate 	/* Check is we've reached the max for retries */
5857c478bd9Sstevel@tonic-gate 	if (sctp->sctp_state < SCTPS_ESTABLISHED) {
5867c478bd9Sstevel@tonic-gate 		if (fp->strikes >= sctp->sctp_max_init_rxt) {
5877c478bd9Sstevel@tonic-gate 			/* time to give up */
588f4b3ec61Sdh 			BUMP_MIB(&sctps->sctps_mib, sctpAborted);
589f4b3ec61Sdh 			BUMP_MIB(&sctps->sctps_mib, sctpTimRetransDrop);
5907c478bd9Sstevel@tonic-gate 			sctp_assoc_event(sctp, SCTP_CANT_STR_ASSOC, 0, NULL);
5917c478bd9Sstevel@tonic-gate 			sctp_clean_death(sctp, sctp->sctp_client_errno ?
5927c478bd9Sstevel@tonic-gate 			    sctp->sctp_client_errno : ETIMEDOUT);
5937c478bd9Sstevel@tonic-gate 			return;
5947c478bd9Sstevel@tonic-gate 		}
5957c478bd9Sstevel@tonic-gate 	} else if (sctp->sctp_state >= SCTPS_ESTABLISHED) {
5967c478bd9Sstevel@tonic-gate 		if (sctp->sctp_strikes >= sctp->sctp_pa_max_rxt) {
5977c478bd9Sstevel@tonic-gate 			/* time to give up */
598f4b3ec61Sdh 			BUMP_MIB(&sctps->sctps_mib, sctpAborted);
599f4b3ec61Sdh 			BUMP_MIB(&sctps->sctps_mib, sctpTimRetransDrop);
6007c478bd9Sstevel@tonic-gate 			sctp_assoc_event(sctp, SCTP_COMM_LOST, 0, NULL);
6017c478bd9Sstevel@tonic-gate 			sctp_clean_death(sctp, sctp->sctp_client_errno ?
6027c478bd9Sstevel@tonic-gate 			    sctp->sctp_client_errno : ETIMEDOUT);
6037c478bd9Sstevel@tonic-gate 			return;
6047c478bd9Sstevel@tonic-gate 		}
6057c478bd9Sstevel@tonic-gate 	}
6067c478bd9Sstevel@tonic-gate 
6077c478bd9Sstevel@tonic-gate 	if (fp->strikes >= fp->max_retr) {
6087c478bd9Sstevel@tonic-gate 		if (sctp_faddr_dead(sctp, fp, SCTP_FADDRS_DOWN) == -1) {
6097c478bd9Sstevel@tonic-gate 			return;
6107c478bd9Sstevel@tonic-gate 		}
6117c478bd9Sstevel@tonic-gate 	}
6127c478bd9Sstevel@tonic-gate 
6137c478bd9Sstevel@tonic-gate 	switch (sctp->sctp_state) {
614c31292eeSkcpoon 	case SCTPS_SHUTDOWN_RECEIVED:
615c31292eeSkcpoon 		(void) sctp_shutdown_received(sctp, NULL, B_FALSE, B_TRUE,
616c31292eeSkcpoon 		    NULL);
6177c478bd9Sstevel@tonic-gate 
6187c478bd9Sstevel@tonic-gate 		/* FALLTHRU */
619c31292eeSkcpoon 	case SCTPS_ESTABLISHED:
6207c478bd9Sstevel@tonic-gate 	case SCTPS_SHUTDOWN_PENDING:
6217c478bd9Sstevel@tonic-gate 		if (sctp->sctp_xmit_head == NULL &&
6227c478bd9Sstevel@tonic-gate 		    sctp->sctp_xmit_unsent == NULL) {
6237c478bd9Sstevel@tonic-gate 			/* Nothing to retransmit */
6247c478bd9Sstevel@tonic-gate 			if (sctp->sctp_state == SCTPS_SHUTDOWN_PENDING) {
6257c478bd9Sstevel@tonic-gate 				sctp_send_shutdown(sctp, 1);
6267c478bd9Sstevel@tonic-gate 			}
6277c478bd9Sstevel@tonic-gate 			return;
6287c478bd9Sstevel@tonic-gate 		}
6297c478bd9Sstevel@tonic-gate 
630f4b3ec61Sdh 		BUMP_MIB(&sctps->sctps_mib, sctpTimRetrans);
6317c478bd9Sstevel@tonic-gate 
6327c478bd9Sstevel@tonic-gate 		sctp_rexmit(sctp, fp);
6337c478bd9Sstevel@tonic-gate 		/*
6347c478bd9Sstevel@tonic-gate 		 * sctp_rexmit() will increase the strikes and restart the
6357c478bd9Sstevel@tonic-gate 		 * timer, so return here.
6367c478bd9Sstevel@tonic-gate 		 */
6377c478bd9Sstevel@tonic-gate 		return;
6387c478bd9Sstevel@tonic-gate 	case SCTPS_COOKIE_WAIT:
6397c478bd9Sstevel@tonic-gate 		BUMP_LOCAL(sctp->sctp_T1expire);
6407c478bd9Sstevel@tonic-gate rxmit_init:
6417c478bd9Sstevel@tonic-gate 		/* retransmit init */
642f551bb10Svi 		/*
643f551bb10Svi 		 * We don't take the conn hash lock here since the source
644f551bb10Svi 		 * address list won't be modified (it would have been done
645f551bb10Svi 		 * the first time around).
646f551bb10Svi 		 */
6477c478bd9Sstevel@tonic-gate 		mp = sctp_init_mp(sctp);
6487c478bd9Sstevel@tonic-gate 		if (mp != NULL) {
649f4b3ec61Sdh 			BUMP_MIB(&sctps->sctps_mib, sctpTimRetrans);
6507c478bd9Sstevel@tonic-gate 			sctp_add_sendq(sctp, mp);
6517c478bd9Sstevel@tonic-gate 		}
6527c478bd9Sstevel@tonic-gate 		rto_max = sctp->sctp_init_rto_max;
6537c478bd9Sstevel@tonic-gate 		break;
6547c478bd9Sstevel@tonic-gate 	case SCTPS_COOKIE_ECHOED: {
6557c478bd9Sstevel@tonic-gate 		ipha_t *iph;
6567c478bd9Sstevel@tonic-gate 
6577c478bd9Sstevel@tonic-gate 		BUMP_LOCAL(sctp->sctp_T1expire);
6587c478bd9Sstevel@tonic-gate 		if (sctp->sctp_cookie_mp == NULL) {
6597c478bd9Sstevel@tonic-gate 			sctp->sctp_state = SCTPS_COOKIE_WAIT;
6607c478bd9Sstevel@tonic-gate 			goto rxmit_init;
6617c478bd9Sstevel@tonic-gate 		}
6627c478bd9Sstevel@tonic-gate 		mp = dupmsg(sctp->sctp_cookie_mp);
6637c478bd9Sstevel@tonic-gate 		if (mp == NULL)
6647c478bd9Sstevel@tonic-gate 			break;
6657c478bd9Sstevel@tonic-gate 		iph = (ipha_t *)mp->b_rptr;
6667c478bd9Sstevel@tonic-gate 		/* Reset the IP ident. */
6677c478bd9Sstevel@tonic-gate 		if (IPH_HDR_VERSION(iph) == IPV4_VERSION)
6687c478bd9Sstevel@tonic-gate 			iph->ipha_ident = 0;
6697c478bd9Sstevel@tonic-gate 		sctp_add_sendq(sctp, mp);
670f4b3ec61Sdh 		BUMP_MIB(&sctps->sctps_mib, sctpTimRetrans);
6717c478bd9Sstevel@tonic-gate 		rto_max = sctp->sctp_init_rto_max;
6727c478bd9Sstevel@tonic-gate 		break;
6737c478bd9Sstevel@tonic-gate 	}
6747c478bd9Sstevel@tonic-gate 	case SCTPS_SHUTDOWN_SENT:
6757c478bd9Sstevel@tonic-gate 		BUMP_LOCAL(sctp->sctp_T2expire);
6767c478bd9Sstevel@tonic-gate 		sctp_send_shutdown(sctp, 1);
677f4b3ec61Sdh 		BUMP_MIB(&sctps->sctps_mib, sctpTimRetrans);
6787c478bd9Sstevel@tonic-gate 		break;
6797c478bd9Sstevel@tonic-gate 	case SCTPS_SHUTDOWN_ACK_SENT:
6807c478bd9Sstevel@tonic-gate 		/* We shouldn't have any more outstanding data */
6817c478bd9Sstevel@tonic-gate 		ASSERT(sctp->sctp_xmit_head == NULL);
6827c478bd9Sstevel@tonic-gate 		ASSERT(sctp->sctp_xmit_unsent == NULL);
6837c478bd9Sstevel@tonic-gate 
6847c478bd9Sstevel@tonic-gate 		BUMP_LOCAL(sctp->sctp_T2expire);
68577c67f2fSkcpoon 		(void) sctp_shutdown_received(sctp, NULL, B_FALSE, B_TRUE,
68677c67f2fSkcpoon 		    NULL);
687f4b3ec61Sdh 		BUMP_MIB(&sctps->sctps_mib, sctpTimRetrans);
6887c478bd9Sstevel@tonic-gate 		break;
6897c478bd9Sstevel@tonic-gate 	default:
6907c478bd9Sstevel@tonic-gate 		ASSERT(0);
6917c478bd9Sstevel@tonic-gate 		break;
6927c478bd9Sstevel@tonic-gate 	}
6937c478bd9Sstevel@tonic-gate 
6947c478bd9Sstevel@tonic-gate 	fp->strikes++;
6957c478bd9Sstevel@tonic-gate 	sctp->sctp_strikes++;
6967c478bd9Sstevel@tonic-gate 	SCTP_CALC_RXT(fp, rto_max);
6977c478bd9Sstevel@tonic-gate 
6987c478bd9Sstevel@tonic-gate 	SCTP_FADDR_TIMER_RESTART(sctp, fp, fp->rto);
6997c478bd9Sstevel@tonic-gate }
7007c478bd9Sstevel@tonic-gate 
7017c478bd9Sstevel@tonic-gate /*
7027c478bd9Sstevel@tonic-gate  * RTO calculation. timesent and now are both in ms.
7037c478bd9Sstevel@tonic-gate  */
7047c478bd9Sstevel@tonic-gate void
7057c478bd9Sstevel@tonic-gate sctp_update_rtt(sctp_t *sctp, sctp_faddr_t *fp, clock_t delta)
7067c478bd9Sstevel@tonic-gate {
7077c478bd9Sstevel@tonic-gate 	int rtt;
7087c478bd9Sstevel@tonic-gate 
7097c478bd9Sstevel@tonic-gate 	/* Calculate the RTT in ms */
7107c478bd9Sstevel@tonic-gate 	rtt = (int)delta;
7117c478bd9Sstevel@tonic-gate 	rtt = rtt > 0 ? rtt : 1;
7127c478bd9Sstevel@tonic-gate 
71345916cd2Sjpk 	dprint(5, ("sctp_update_rtt: fp = %p, rtt = %d\n", (void *)fp, rtt));
7147c478bd9Sstevel@tonic-gate 
7157c478bd9Sstevel@tonic-gate 	/* Is this the first RTT measurement? */
7167c478bd9Sstevel@tonic-gate 	if (fp->srtt == -1) {
7177c478bd9Sstevel@tonic-gate 		fp->srtt = rtt;
7187c478bd9Sstevel@tonic-gate 		fp->rttvar = rtt / 2;
7197c478bd9Sstevel@tonic-gate 		fp->rto = 3 * rtt; /* == rtt + 4 * rttvar ( == rtt / 2) */
7207c478bd9Sstevel@tonic-gate 	} else {
7217c478bd9Sstevel@tonic-gate 		int abs;
7227c478bd9Sstevel@tonic-gate 		/*
7237c478bd9Sstevel@tonic-gate 		 * Versions of the RTO equations that use fixed-point math.
7247c478bd9Sstevel@tonic-gate 		 * alpha and beta are NOT tunable in this implementation,
7257c478bd9Sstevel@tonic-gate 		 * and so are hard-coded in. alpha = 1/8, beta = 1/4.
7267c478bd9Sstevel@tonic-gate 		 */
7277c478bd9Sstevel@tonic-gate 		abs = fp->srtt - rtt;
7287c478bd9Sstevel@tonic-gate 		abs = abs >= 0 ? abs : -abs;
7297c478bd9Sstevel@tonic-gate 		fp->rttvar = (3 * fp->rttvar + abs) >> 2;
7307c478bd9Sstevel@tonic-gate 		fp->rttvar = fp->rttvar != 0 ? fp->rttvar : 1;
7317c478bd9Sstevel@tonic-gate 
7327c478bd9Sstevel@tonic-gate 		fp->srtt = (7 * fp->srtt + rtt) >> 3;
7337c478bd9Sstevel@tonic-gate 		fp->rto = fp->srtt + 4 * fp->rttvar;
7347c478bd9Sstevel@tonic-gate 	}
7357c478bd9Sstevel@tonic-gate 
7367c478bd9Sstevel@tonic-gate 	dprint(5, ("sctp_update_rtt: srtt = %d, rttvar = %d, rto = %d\n",
7377c478bd9Sstevel@tonic-gate 	    fp->srtt, fp->rttvar, fp->rto));
7387c478bd9Sstevel@tonic-gate 
7397c478bd9Sstevel@tonic-gate 	/* Bound the RTO by configured min and max values */
7407c478bd9Sstevel@tonic-gate 	if (fp->rto < sctp->sctp_rto_min) {
7417c478bd9Sstevel@tonic-gate 		fp->rto = sctp->sctp_rto_min;
7427c478bd9Sstevel@tonic-gate 	}
7437c478bd9Sstevel@tonic-gate 	if (fp->rto > sctp->sctp_rto_max) {
7447c478bd9Sstevel@tonic-gate 		fp->rto = sctp->sctp_rto_max;
7457c478bd9Sstevel@tonic-gate 	}
7467c478bd9Sstevel@tonic-gate 
7477c478bd9Sstevel@tonic-gate 	fp->rtt_updates++;
7487c478bd9Sstevel@tonic-gate }
7497c478bd9Sstevel@tonic-gate 
7507c478bd9Sstevel@tonic-gate void
7517c478bd9Sstevel@tonic-gate sctp_free_faddr_timers(sctp_t *sctp)
7527c478bd9Sstevel@tonic-gate {
7537c478bd9Sstevel@tonic-gate 	sctp_faddr_t *fp;
7547c478bd9Sstevel@tonic-gate 
7557c478bd9Sstevel@tonic-gate 	for (fp = sctp->sctp_faddrs; fp != NULL; fp = fp->next) {
7567c478bd9Sstevel@tonic-gate 		if (fp->timer_mp != NULL) {
7577c478bd9Sstevel@tonic-gate 			sctp_timer_free(fp->timer_mp);
7587c478bd9Sstevel@tonic-gate 			fp->timer_mp = NULL;
7597c478bd9Sstevel@tonic-gate 			fp->timer_running = 0;
7607c478bd9Sstevel@tonic-gate 		}
7617c478bd9Sstevel@tonic-gate 		if (fp->rc_timer_mp != NULL) {
7627c478bd9Sstevel@tonic-gate 			sctp_timer_free(fp->rc_timer_mp);
7637c478bd9Sstevel@tonic-gate 			fp->rc_timer_mp = NULL;
7647c478bd9Sstevel@tonic-gate 			fp->rc_timer_running = 0;
7657c478bd9Sstevel@tonic-gate 		}
7667c478bd9Sstevel@tonic-gate 	}
7677c478bd9Sstevel@tonic-gate }
7687c478bd9Sstevel@tonic-gate 
7697c478bd9Sstevel@tonic-gate void
7707c478bd9Sstevel@tonic-gate sctp_stop_faddr_timers(sctp_t *sctp)
7717c478bd9Sstevel@tonic-gate {
7727c478bd9Sstevel@tonic-gate 	sctp_faddr_t *fp;
7737c478bd9Sstevel@tonic-gate 
7747c478bd9Sstevel@tonic-gate 	for (fp = sctp->sctp_faddrs; fp != NULL; fp = fp->next) {
7757c478bd9Sstevel@tonic-gate 		SCTP_FADDR_TIMER_STOP(fp);
7767c478bd9Sstevel@tonic-gate 		SCTP_FADDR_RC_TIMER_STOP(fp);
7777c478bd9Sstevel@tonic-gate 	}
7787c478bd9Sstevel@tonic-gate }
7797c478bd9Sstevel@tonic-gate 
7807c478bd9Sstevel@tonic-gate void
7817c478bd9Sstevel@tonic-gate sctp_process_timer(sctp_t *sctp)
7827c478bd9Sstevel@tonic-gate {
7837c478bd9Sstevel@tonic-gate 	mblk_t *mp;
7847c478bd9Sstevel@tonic-gate 
7857c478bd9Sstevel@tonic-gate 	ASSERT(sctp->sctp_running);
7867c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&sctp->sctp_lock));
7877c478bd9Sstevel@tonic-gate 	while ((mp = sctp->sctp_timer_mp) != NULL) {
7887c478bd9Sstevel@tonic-gate 		ASSERT(DB_TYPE(mp) == M_PCSIG);
7897c478bd9Sstevel@tonic-gate 		/*
7907c478bd9Sstevel@tonic-gate 		 * Since the timer mblk can be freed in sctp_timer_call(),
7917c478bd9Sstevel@tonic-gate 		 * we need to grab the b_cont before that.
7927c478bd9Sstevel@tonic-gate 		 */
7937c478bd9Sstevel@tonic-gate 		sctp->sctp_timer_mp = mp->b_cont;
7947c478bd9Sstevel@tonic-gate 		mp->b_cont = NULL;
795*fb9c4d48SGeorge Shepherd 		/*
796*fb9c4d48SGeorge Shepherd 		 * We have a reference on the sctp, the lock must be
797*fb9c4d48SGeorge Shepherd 		 * dropped to avoid deadlocks with functions potentially
798*fb9c4d48SGeorge Shepherd 		 * called in this context which in turn call untimeout().
799*fb9c4d48SGeorge Shepherd 		 */
800*fb9c4d48SGeorge Shepherd 		mutex_exit(&sctp->sctp_lock);
8017c478bd9Sstevel@tonic-gate 		sctp_timer_call(sctp, mp);
802*fb9c4d48SGeorge Shepherd 		mutex_enter(&sctp->sctp_lock);
8037c478bd9Sstevel@tonic-gate 	}
8047c478bd9Sstevel@tonic-gate 	SCTP_REFRELE(sctp);
8057c478bd9Sstevel@tonic-gate }
806