xref: /freebsd/sys/netinet/sctp_timer.c (revision df6e0cc37df2db4af3f21c2257e78280d4f0649a)
1f8829a4aSRandall Stewart /*-
2b1006367SRandall Stewart  * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
3f8829a4aSRandall Stewart  *
4f8829a4aSRandall Stewart  * Redistribution and use in source and binary forms, with or without
5f8829a4aSRandall Stewart  * modification, are permitted provided that the following conditions are met:
6f8829a4aSRandall Stewart  *
7f8829a4aSRandall Stewart  * a) Redistributions of source code must retain the above copyright notice,
8f8829a4aSRandall Stewart  *   this list of conditions and the following disclaimer.
9f8829a4aSRandall Stewart  *
10f8829a4aSRandall Stewart  * b) Redistributions in binary form must reproduce the above copyright
11f8829a4aSRandall Stewart  *    notice, this list of conditions and the following disclaimer in
12f8829a4aSRandall Stewart  *   the documentation and/or other materials provided with the distribution.
13f8829a4aSRandall Stewart  *
14f8829a4aSRandall Stewart  * c) Neither the name of Cisco Systems, Inc. nor the names of its
15f8829a4aSRandall Stewart  *    contributors may be used to endorse or promote products derived
16f8829a4aSRandall Stewart  *    from this software without specific prior written permission.
17f8829a4aSRandall Stewart  *
18f8829a4aSRandall Stewart  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19f8829a4aSRandall Stewart  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
20f8829a4aSRandall Stewart  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21f8829a4aSRandall Stewart  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22f8829a4aSRandall Stewart  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23f8829a4aSRandall Stewart  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24f8829a4aSRandall Stewart  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25f8829a4aSRandall Stewart  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26f8829a4aSRandall Stewart  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27f8829a4aSRandall Stewart  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
28f8829a4aSRandall Stewart  * THE POSSIBILITY OF SUCH DAMAGE.
29f8829a4aSRandall Stewart  */
30f8829a4aSRandall Stewart 
31f8829a4aSRandall Stewart /* $KAME: sctp_timer.c,v 1.29 2005/03/06 16:04:18 itojun Exp $	 */
32f8829a4aSRandall Stewart 
33f8829a4aSRandall Stewart #include <sys/cdefs.h>
34f8829a4aSRandall Stewart __FBSDID("$FreeBSD$");
35f8829a4aSRandall Stewart 
36f8829a4aSRandall Stewart #define _IP_VHL
3793164cf9SRandall Stewart #include <netinet/sctp_os.h>
38f8829a4aSRandall Stewart #include <netinet/sctp_pcb.h>
39f8829a4aSRandall Stewart #ifdef INET6
40f8829a4aSRandall Stewart #endif
41f8829a4aSRandall Stewart #include <netinet/sctp_var.h>
4242551e99SRandall Stewart #include <netinet/sctp_sysctl.h>
43f8829a4aSRandall Stewart #include <netinet/sctp_timer.h>
44f8829a4aSRandall Stewart #include <netinet/sctputil.h>
45f8829a4aSRandall Stewart #include <netinet/sctp_output.h>
46f8829a4aSRandall Stewart #include <netinet/sctp_header.h>
47f8829a4aSRandall Stewart #include <netinet/sctp_indata.h>
48f8829a4aSRandall Stewart #include <netinet/sctp_asconf.h>
49f8829a4aSRandall Stewart #include <netinet/sctp_input.h>
50f8829a4aSRandall Stewart #include <netinet/sctp.h>
51f8829a4aSRandall Stewart #include <netinet/sctp_uio.h>
52f8829a4aSRandall Stewart 
53f8829a4aSRandall Stewart 
54f8829a4aSRandall Stewart 
55f8829a4aSRandall Stewart void
56f8829a4aSRandall Stewart sctp_early_fr_timer(struct sctp_inpcb *inp,
57f8829a4aSRandall Stewart     struct sctp_tcb *stcb,
58f8829a4aSRandall Stewart     struct sctp_nets *net)
59f8829a4aSRandall Stewart {
60f8829a4aSRandall Stewart 	struct sctp_tmit_chunk *chk, *tp2;
61f8829a4aSRandall Stewart 	struct timeval now, min_wait, tv;
62f8829a4aSRandall Stewart 	unsigned int cur_rtt, cnt = 0, cnt_resend = 0;
63f8829a4aSRandall Stewart 
64f8829a4aSRandall Stewart 	/* an early FR is occuring. */
656e55db54SRandall Stewart 	(void)SCTP_GETTIME_TIMEVAL(&now);
66f8829a4aSRandall Stewart 	/* get cur rto in micro-seconds */
67f8829a4aSRandall Stewart 	if (net->lastsa == 0) {
68f8829a4aSRandall Stewart 		/* Hmm no rtt estimate yet? */
69f8829a4aSRandall Stewart 		cur_rtt = stcb->asoc.initial_rto >> 2;
70f8829a4aSRandall Stewart 	} else {
71f8829a4aSRandall Stewart 
72f8829a4aSRandall Stewart 		cur_rtt = ((net->lastsa >> 2) + net->lastsv) >> 1;
73f8829a4aSRandall Stewart 	}
74b3f1ea41SRandall Stewart 	if (cur_rtt < SCTP_BASE_SYSCTL(sctp_early_fr_msec)) {
75b3f1ea41SRandall Stewart 		cur_rtt = SCTP_BASE_SYSCTL(sctp_early_fr_msec);
76f8829a4aSRandall Stewart 	}
77f8829a4aSRandall Stewart 	cur_rtt *= 1000;
78f8829a4aSRandall Stewart 	tv.tv_sec = cur_rtt / 1000000;
79f8829a4aSRandall Stewart 	tv.tv_usec = cur_rtt % 1000000;
80f8829a4aSRandall Stewart 	min_wait = now;
81f8829a4aSRandall Stewart 	timevalsub(&min_wait, &tv);
82f8829a4aSRandall Stewart 	if (min_wait.tv_sec < 0 || min_wait.tv_usec < 0) {
83f8829a4aSRandall Stewart 		/*
84f8829a4aSRandall Stewart 		 * if we hit here, we don't have enough seconds on the clock
85f8829a4aSRandall Stewart 		 * to account for the RTO. We just let the lower seconds be
86f8829a4aSRandall Stewart 		 * the bounds and don't worry about it. This may mean we
87f8829a4aSRandall Stewart 		 * will mark a lot more than we should.
88f8829a4aSRandall Stewart 		 */
89f8829a4aSRandall Stewart 		min_wait.tv_sec = min_wait.tv_usec = 0;
90f8829a4aSRandall Stewart 	}
91f8829a4aSRandall Stewart 	chk = TAILQ_LAST(&stcb->asoc.sent_queue, sctpchunk_listhead);
92f8829a4aSRandall Stewart 	for (; chk != NULL; chk = tp2) {
93f8829a4aSRandall Stewart 		tp2 = TAILQ_PREV(chk, sctpchunk_listhead, sctp_next);
94f8829a4aSRandall Stewart 		if (chk->whoTo != net) {
95f8829a4aSRandall Stewart 			continue;
96f8829a4aSRandall Stewart 		}
97f8829a4aSRandall Stewart 		if (chk->sent == SCTP_DATAGRAM_RESEND)
98f8829a4aSRandall Stewart 			cnt_resend++;
99f8829a4aSRandall Stewart 		else if ((chk->sent > SCTP_DATAGRAM_UNSENT) &&
100f8829a4aSRandall Stewart 		    (chk->sent < SCTP_DATAGRAM_RESEND)) {
101f8829a4aSRandall Stewart 			/* pending, may need retran */
102f8829a4aSRandall Stewart 			if (chk->sent_rcv_time.tv_sec > min_wait.tv_sec) {
103f8829a4aSRandall Stewart 				/*
104f8829a4aSRandall Stewart 				 * we have reached a chunk that was sent
105f8829a4aSRandall Stewart 				 * some seconds past our min.. forget it we
106f8829a4aSRandall Stewart 				 * will find no more to send.
107f8829a4aSRandall Stewart 				 */
108f8829a4aSRandall Stewart 				continue;
109f8829a4aSRandall Stewart 			} else if (chk->sent_rcv_time.tv_sec == min_wait.tv_sec) {
110f8829a4aSRandall Stewart 				/*
111f8829a4aSRandall Stewart 				 * we must look at the micro seconds to
112f8829a4aSRandall Stewart 				 * know.
113f8829a4aSRandall Stewart 				 */
114f8829a4aSRandall Stewart 				if (chk->sent_rcv_time.tv_usec >= min_wait.tv_usec) {
115f8829a4aSRandall Stewart 					/*
116f8829a4aSRandall Stewart 					 * ok it was sent after our boundary
117f8829a4aSRandall Stewart 					 * time.
118f8829a4aSRandall Stewart 					 */
119f8829a4aSRandall Stewart 					continue;
120f8829a4aSRandall Stewart 				}
121f8829a4aSRandall Stewart 			}
122b3f1ea41SRandall Stewart 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_EARLYFR_LOGGING_ENABLE) {
123f8829a4aSRandall Stewart 				sctp_log_fr(chk->rec.data.TSN_seq, chk->snd_count,
124f8829a4aSRandall Stewart 				    4, SCTP_FR_MARKED_EARLY);
12580fefe0aSRandall Stewart 			}
126f8829a4aSRandall Stewart 			SCTP_STAT_INCR(sctps_earlyfrmrkretrans);
127f8829a4aSRandall Stewart 			chk->sent = SCTP_DATAGRAM_RESEND;
128f8829a4aSRandall Stewart 			sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt);
129f8829a4aSRandall Stewart 			/* double book size since we are doing an early FR */
130f8829a4aSRandall Stewart 			chk->book_size_scale++;
131f8829a4aSRandall Stewart 			cnt += chk->send_size;
132f8829a4aSRandall Stewart 			if ((cnt + net->flight_size) > net->cwnd) {
133f8829a4aSRandall Stewart 				/* Mark all we could possibly resend */
134f8829a4aSRandall Stewart 				break;
135f8829a4aSRandall Stewart 			}
136f8829a4aSRandall Stewart 		}
137f8829a4aSRandall Stewart 	}
138f8829a4aSRandall Stewart 	if (cnt) {
139f8829a4aSRandall Stewart 		/*
140b54d3a6cSRandall Stewart 		 * JRS - Use the congestion control given in the congestion
141b54d3a6cSRandall Stewart 		 * control module
142f8829a4aSRandall Stewart 		 */
143b54d3a6cSRandall Stewart 		stcb->asoc.cc_functions.sctp_cwnd_update_after_fr_timer(inp, stcb, net);
144f8829a4aSRandall Stewart 	} else if (cnt_resend) {
145ceaad40aSRandall Stewart 		sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_EARLY_FR_TMR, SCTP_SO_NOT_LOCKED);
146f8829a4aSRandall Stewart 	}
147f8829a4aSRandall Stewart 	/* Restart it? */
148f8829a4aSRandall Stewart 	if (net->flight_size < net->cwnd) {
149f8829a4aSRandall Stewart 		SCTP_STAT_INCR(sctps_earlyfrstrtmr);
150f8829a4aSRandall Stewart 		sctp_timer_start(SCTP_TIMER_TYPE_EARLYFR, stcb->sctp_ep, stcb, net);
151f8829a4aSRandall Stewart 	}
152f8829a4aSRandall Stewart }
153f8829a4aSRandall Stewart 
154f8829a4aSRandall Stewart void
155f8829a4aSRandall Stewart sctp_audit_retranmission_queue(struct sctp_association *asoc)
156f8829a4aSRandall Stewart {
157f8829a4aSRandall Stewart 	struct sctp_tmit_chunk *chk;
158f8829a4aSRandall Stewart 
159ad81507eSRandall Stewart 	SCTPDBG(SCTP_DEBUG_TIMER4, "Audit invoked on send queue cnt:%d onqueue:%d\n",
160f8829a4aSRandall Stewart 	    asoc->sent_queue_retran_cnt,
161f8829a4aSRandall Stewart 	    asoc->sent_queue_cnt);
162f8829a4aSRandall Stewart 	asoc->sent_queue_retran_cnt = 0;
163f8829a4aSRandall Stewart 	asoc->sent_queue_cnt = 0;
164f8829a4aSRandall Stewart 	TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) {
165f8829a4aSRandall Stewart 		if (chk->sent == SCTP_DATAGRAM_RESEND) {
166f8829a4aSRandall Stewart 			sctp_ucount_incr(asoc->sent_queue_retran_cnt);
167f8829a4aSRandall Stewart 		}
168f8829a4aSRandall Stewart 		asoc->sent_queue_cnt++;
169f8829a4aSRandall Stewart 	}
170f8829a4aSRandall Stewart 	TAILQ_FOREACH(chk, &asoc->control_send_queue, sctp_next) {
171f8829a4aSRandall Stewart 		if (chk->sent == SCTP_DATAGRAM_RESEND) {
172f8829a4aSRandall Stewart 			sctp_ucount_incr(asoc->sent_queue_retran_cnt);
173f8829a4aSRandall Stewart 		}
174f8829a4aSRandall Stewart 	}
175c54a18d2SRandall Stewart 	TAILQ_FOREACH(chk, &asoc->asconf_send_queue, sctp_next) {
176c54a18d2SRandall Stewart 		if (chk->sent == SCTP_DATAGRAM_RESEND) {
177c54a18d2SRandall Stewart 			sctp_ucount_incr(asoc->sent_queue_retran_cnt);
178c54a18d2SRandall Stewart 		}
179c54a18d2SRandall Stewart 	}
180ad81507eSRandall Stewart 	SCTPDBG(SCTP_DEBUG_TIMER4, "Audit completes retran:%d onqueue:%d\n",
181f8829a4aSRandall Stewart 	    asoc->sent_queue_retran_cnt,
182f8829a4aSRandall Stewart 	    asoc->sent_queue_cnt);
183f8829a4aSRandall Stewart }
184f8829a4aSRandall Stewart 
185f8829a4aSRandall Stewart int
186f8829a4aSRandall Stewart sctp_threshold_management(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
187f8829a4aSRandall Stewart     struct sctp_nets *net, uint16_t threshold)
188f8829a4aSRandall Stewart {
189f8829a4aSRandall Stewart 	if (net) {
190f8829a4aSRandall Stewart 		net->error_count++;
191ad81507eSRandall Stewart 		SCTPDBG(SCTP_DEBUG_TIMER4, "Error count for %p now %d thresh:%d\n",
192f8829a4aSRandall Stewart 		    net, net->error_count,
193f8829a4aSRandall Stewart 		    net->failure_threshold);
194f8829a4aSRandall Stewart 		if (net->error_count > net->failure_threshold) {
195f8829a4aSRandall Stewart 			/* We had a threshold failure */
196f8829a4aSRandall Stewart 			if (net->dest_state & SCTP_ADDR_REACHABLE) {
197f8829a4aSRandall Stewart 				net->dest_state &= ~SCTP_ADDR_REACHABLE;
198f8829a4aSRandall Stewart 				net->dest_state |= SCTP_ADDR_NOT_REACHABLE;
19942551e99SRandall Stewart 				net->dest_state &= ~SCTP_ADDR_REQ_PRIMARY;
200f8829a4aSRandall Stewart 				if (net == stcb->asoc.primary_destination) {
201f8829a4aSRandall Stewart 					net->dest_state |= SCTP_ADDR_WAS_PRIMARY;
202f8829a4aSRandall Stewart 				}
203b54d3a6cSRandall Stewart 				/*
204b54d3a6cSRandall Stewart 				 * JRS 5/14/07 - If a destination is
205b54d3a6cSRandall Stewart 				 * unreachable, the PF bit is turned off.
206b54d3a6cSRandall Stewart 				 * This allows an unambiguous use of the PF
207b54d3a6cSRandall Stewart 				 * bit for destinations that are reachable
208b54d3a6cSRandall Stewart 				 * but potentially failed. If the
209b54d3a6cSRandall Stewart 				 * destination is set to the unreachable
210b54d3a6cSRandall Stewart 				 * state, also set the destination to the PF
211b54d3a6cSRandall Stewart 				 * state.
212b54d3a6cSRandall Stewart 				 */
213b54d3a6cSRandall Stewart 				/*
214b54d3a6cSRandall Stewart 				 * Add debug message here if destination is
215b54d3a6cSRandall Stewart 				 * not in PF state.
216b54d3a6cSRandall Stewart 				 */
217b54d3a6cSRandall Stewart 				/* Stop any running T3 timers here? */
218b3f1ea41SRandall Stewart 				if (SCTP_BASE_SYSCTL(sctp_cmt_on_off) && SCTP_BASE_SYSCTL(sctp_cmt_pf)) {
219b54d3a6cSRandall Stewart 					net->dest_state &= ~SCTP_ADDR_PF;
220b54d3a6cSRandall Stewart 					SCTPDBG(SCTP_DEBUG_TIMER4, "Destination %p moved from PF to unreachable.\n",
221b54d3a6cSRandall Stewart 					    net);
222b54d3a6cSRandall Stewart 				}
223f8829a4aSRandall Stewart 				sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN,
224f8829a4aSRandall Stewart 				    stcb,
225f8829a4aSRandall Stewart 				    SCTP_FAILED_THRESHOLD,
226ceaad40aSRandall Stewart 				    (void *)net, SCTP_SO_NOT_LOCKED);
227f8829a4aSRandall Stewart 			}
228f8829a4aSRandall Stewart 		}
229f8829a4aSRandall Stewart 		/*********HOLD THIS COMMENT FOR PATCH OF ALTERNATE
230f8829a4aSRandall Stewart 		 *********ROUTING CODE
231f8829a4aSRandall Stewart 		 */
232f8829a4aSRandall Stewart 		/*********HOLD THIS COMMENT FOR END OF PATCH OF ALTERNATE
233f8829a4aSRandall Stewart 		 *********ROUTING CODE
234f8829a4aSRandall Stewart 		 */
235f8829a4aSRandall Stewart 	}
236f8829a4aSRandall Stewart 	if (stcb == NULL)
237f8829a4aSRandall Stewart 		return (0);
238f8829a4aSRandall Stewart 
239f8829a4aSRandall Stewart 	if (net) {
240f8829a4aSRandall Stewart 		if ((net->dest_state & SCTP_ADDR_UNCONFIRMED) == 0) {
241b3f1ea41SRandall Stewart 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) {
242c4739e2fSRandall Stewart 				sctp_misc_ints(SCTP_THRESHOLD_INCR,
243c4739e2fSRandall Stewart 				    stcb->asoc.overall_error_count,
244c4739e2fSRandall Stewart 				    (stcb->asoc.overall_error_count + 1),
245c4739e2fSRandall Stewart 				    SCTP_FROM_SCTP_TIMER,
246c4739e2fSRandall Stewart 				    __LINE__);
247c4739e2fSRandall Stewart 			}
248f8829a4aSRandall Stewart 			stcb->asoc.overall_error_count++;
249f8829a4aSRandall Stewart 		}
250f8829a4aSRandall Stewart 	} else {
251b3f1ea41SRandall Stewart 		if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) {
252c4739e2fSRandall Stewart 			sctp_misc_ints(SCTP_THRESHOLD_INCR,
253c4739e2fSRandall Stewart 			    stcb->asoc.overall_error_count,
254c4739e2fSRandall Stewart 			    (stcb->asoc.overall_error_count + 1),
255c4739e2fSRandall Stewart 			    SCTP_FROM_SCTP_TIMER,
256c4739e2fSRandall Stewart 			    __LINE__);
257c4739e2fSRandall Stewart 		}
258f8829a4aSRandall Stewart 		stcb->asoc.overall_error_count++;
259f8829a4aSRandall Stewart 	}
260ad81507eSRandall Stewart 	SCTPDBG(SCTP_DEBUG_TIMER4, "Overall error count for %p now %d thresh:%u state:%x\n",
261ad81507eSRandall Stewart 	    &stcb->asoc, stcb->asoc.overall_error_count,
262f8829a4aSRandall Stewart 	    (uint32_t) threshold,
263f8829a4aSRandall Stewart 	    ((net == NULL) ? (uint32_t) 0 : (uint32_t) net->dest_state));
264f8829a4aSRandall Stewart 	/*
265f8829a4aSRandall Stewart 	 * We specifically do not do >= to give the assoc one more change
266f8829a4aSRandall Stewart 	 * before we fail it.
267f8829a4aSRandall Stewart 	 */
268f8829a4aSRandall Stewart 	if (stcb->asoc.overall_error_count > threshold) {
269f8829a4aSRandall Stewart 		/* Abort notification sends a ULP notify */
270f8829a4aSRandall Stewart 		struct mbuf *oper;
271f8829a4aSRandall Stewart 
272f8829a4aSRandall Stewart 		oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + sizeof(uint32_t)),
273f8829a4aSRandall Stewart 		    0, M_DONTWAIT, 1, MT_DATA);
274f8829a4aSRandall Stewart 		if (oper) {
275f8829a4aSRandall Stewart 			struct sctp_paramhdr *ph;
276f8829a4aSRandall Stewart 			uint32_t *ippp;
277f8829a4aSRandall Stewart 
278139bc87fSRandall Stewart 			SCTP_BUF_LEN(oper) = sizeof(struct sctp_paramhdr) +
279f8829a4aSRandall Stewart 			    sizeof(uint32_t);
280f8829a4aSRandall Stewart 			ph = mtod(oper, struct sctp_paramhdr *);
281f8829a4aSRandall Stewart 			ph->param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
282139bc87fSRandall Stewart 			ph->param_length = htons(SCTP_BUF_LEN(oper));
283f8829a4aSRandall Stewart 			ippp = (uint32_t *) (ph + 1);
284a5d547adSRandall Stewart 			*ippp = htonl(SCTP_FROM_SCTP_TIMER + SCTP_LOC_1);
285f8829a4aSRandall Stewart 		}
286a5d547adSRandall Stewart 		inp->last_abort_code = SCTP_FROM_SCTP_TIMER + SCTP_LOC_1;
287ceaad40aSRandall Stewart 		sctp_abort_an_association(inp, stcb, SCTP_FAILED_THRESHOLD, oper, SCTP_SO_NOT_LOCKED);
288f8829a4aSRandall Stewart 		return (1);
289f8829a4aSRandall Stewart 	}
290f8829a4aSRandall Stewart 	return (0);
291f8829a4aSRandall Stewart }
292f8829a4aSRandall Stewart 
293f8829a4aSRandall Stewart struct sctp_nets *
294f8829a4aSRandall Stewart sctp_find_alternate_net(struct sctp_tcb *stcb,
295f8829a4aSRandall Stewart     struct sctp_nets *net,
296b54d3a6cSRandall Stewart     int mode)
297f8829a4aSRandall Stewart {
298f8829a4aSRandall Stewart 	/* Find and return an alternate network if possible */
299b54d3a6cSRandall Stewart 	struct sctp_nets *alt, *mnet, *min_errors_net = NULL, *max_cwnd_net = NULL;
300f8829a4aSRandall Stewart 	int once;
301b54d3a6cSRandall Stewart 
302b54d3a6cSRandall Stewart 	/* JRS 5/14/07 - Initialize min_errors to an impossible value. */
303b54d3a6cSRandall Stewart 	int min_errors = -1;
304b54d3a6cSRandall Stewart 	uint32_t max_cwnd = 0;
305f8829a4aSRandall Stewart 
306f8829a4aSRandall Stewart 	if (stcb->asoc.numnets == 1) {
307f8829a4aSRandall Stewart 		/* No others but net */
308f8829a4aSRandall Stewart 		return (TAILQ_FIRST(&stcb->asoc.nets));
309f8829a4aSRandall Stewart 	}
310b54d3a6cSRandall Stewart 	/*
311b54d3a6cSRandall Stewart 	 * JRS 5/14/07 - If mode is set to 2, use the CMT PF find alternate
312b54d3a6cSRandall Stewart 	 * net algorithm. This algorithm chooses the active destination (not
313b54d3a6cSRandall Stewart 	 * in PF state) with the largest cwnd value. If all destinations are
314b54d3a6cSRandall Stewart 	 * in PF state, unreachable, or unconfirmed, choose the desination
315b54d3a6cSRandall Stewart 	 * that is in PF state with the lowest error count. In case of a
316b54d3a6cSRandall Stewart 	 * tie, choose the destination that was most recently active.
317b54d3a6cSRandall Stewart 	 */
318b54d3a6cSRandall Stewart 	if (mode == 2) {
319b54d3a6cSRandall Stewart 		TAILQ_FOREACH(mnet, &stcb->asoc.nets, sctp_next) {
320b54d3a6cSRandall Stewart 			/*
321b54d3a6cSRandall Stewart 			 * JRS 5/14/07 - If the destination is unreachable
322b54d3a6cSRandall Stewart 			 * or unconfirmed, skip it.
323b54d3a6cSRandall Stewart 			 */
324b54d3a6cSRandall Stewart 			if (((mnet->dest_state & SCTP_ADDR_REACHABLE) != SCTP_ADDR_REACHABLE) ||
325b54d3a6cSRandall Stewart 			    (mnet->dest_state & SCTP_ADDR_UNCONFIRMED)) {
326b54d3a6cSRandall Stewart 				continue;
327b54d3a6cSRandall Stewart 			}
328b54d3a6cSRandall Stewart 			/*
329b54d3a6cSRandall Stewart 			 * JRS 5/14/07 -  If the destination is reachable
330b54d3a6cSRandall Stewart 			 * but in PF state, compare the error count of the
331b54d3a6cSRandall Stewart 			 * destination to the minimum error count seen thus
332b54d3a6cSRandall Stewart 			 * far. Store the destination with the lower error
333b54d3a6cSRandall Stewart 			 * count.  If the error counts are equal, store the
334b54d3a6cSRandall Stewart 			 * destination that was most recently active.
335b54d3a6cSRandall Stewart 			 */
336b54d3a6cSRandall Stewart 			if (mnet->dest_state & SCTP_ADDR_PF) {
337b54d3a6cSRandall Stewart 				/*
338b54d3a6cSRandall Stewart 				 * JRS 5/14/07 - If the destination under
339b54d3a6cSRandall Stewart 				 * consideration is the current destination,
340b54d3a6cSRandall Stewart 				 * work as if the error count is one higher.
341b54d3a6cSRandall Stewart 				 * The actual error count will not be
342b54d3a6cSRandall Stewart 				 * incremented until later in the t3
343b54d3a6cSRandall Stewart 				 * handler.
344b54d3a6cSRandall Stewart 				 */
345b54d3a6cSRandall Stewart 				if (mnet == net) {
346b54d3a6cSRandall Stewart 					if (min_errors == -1) {
347b54d3a6cSRandall Stewart 						min_errors = mnet->error_count + 1;
348b54d3a6cSRandall Stewart 						min_errors_net = mnet;
349b54d3a6cSRandall Stewart 					} else if (mnet->error_count + 1 < min_errors) {
350b54d3a6cSRandall Stewart 						min_errors = mnet->error_count + 1;
351b54d3a6cSRandall Stewart 						min_errors_net = mnet;
352b54d3a6cSRandall Stewart 					} else if (mnet->error_count + 1 == min_errors
353b54d3a6cSRandall Stewart 					    && mnet->last_active > min_errors_net->last_active) {
354b54d3a6cSRandall Stewart 						min_errors_net = mnet;
355b54d3a6cSRandall Stewart 						min_errors = mnet->error_count + 1;
356b54d3a6cSRandall Stewart 					}
357b54d3a6cSRandall Stewart 					continue;
358b54d3a6cSRandall Stewart 				} else {
359b54d3a6cSRandall Stewart 					if (min_errors == -1) {
360b54d3a6cSRandall Stewart 						min_errors = mnet->error_count;
361b54d3a6cSRandall Stewart 						min_errors_net = mnet;
362b54d3a6cSRandall Stewart 					} else if (mnet->error_count < min_errors) {
363b54d3a6cSRandall Stewart 						min_errors = mnet->error_count;
364b54d3a6cSRandall Stewart 						min_errors_net = mnet;
365b54d3a6cSRandall Stewart 					} else if (mnet->error_count == min_errors
366b54d3a6cSRandall Stewart 					    && mnet->last_active > min_errors_net->last_active) {
367b54d3a6cSRandall Stewart 						min_errors_net = mnet;
368b54d3a6cSRandall Stewart 						min_errors = mnet->error_count;
369b54d3a6cSRandall Stewart 					}
370b54d3a6cSRandall Stewart 					continue;
371b54d3a6cSRandall Stewart 				}
372b54d3a6cSRandall Stewart 			}
373b54d3a6cSRandall Stewart 			/*
374b54d3a6cSRandall Stewart 			 * JRS 5/14/07 - If the destination is reachable and
375b54d3a6cSRandall Stewart 			 * not in PF state, compare the cwnd of the
376b54d3a6cSRandall Stewart 			 * destination to the highest cwnd seen thus far.
377b54d3a6cSRandall Stewart 			 * Store the destination with the higher cwnd value.
378b54d3a6cSRandall Stewart 			 * If the cwnd values are equal, randomly choose one
379b54d3a6cSRandall Stewart 			 * of the two destinations.
380b54d3a6cSRandall Stewart 			 */
381b54d3a6cSRandall Stewart 			if (max_cwnd < mnet->cwnd) {
382b54d3a6cSRandall Stewart 				max_cwnd_net = mnet;
383b54d3a6cSRandall Stewart 				max_cwnd = mnet->cwnd;
384b54d3a6cSRandall Stewart 			} else if (max_cwnd == mnet->cwnd) {
385b54d3a6cSRandall Stewart 				uint32_t rndval;
386b54d3a6cSRandall Stewart 				uint8_t this_random;
387b54d3a6cSRandall Stewart 
388b54d3a6cSRandall Stewart 				if (stcb->asoc.hb_random_idx > 3) {
389b54d3a6cSRandall Stewart 					rndval = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
390b54d3a6cSRandall Stewart 					memcpy(stcb->asoc.hb_random_values, &rndval, sizeof(stcb->asoc.hb_random_values));
391b54d3a6cSRandall Stewart 					this_random = stcb->asoc.hb_random_values[0];
392b54d3a6cSRandall Stewart 					stcb->asoc.hb_random_idx++;
393b54d3a6cSRandall Stewart 					stcb->asoc.hb_ect_randombit = 0;
394b54d3a6cSRandall Stewart 				} else {
395b54d3a6cSRandall Stewart 					this_random = stcb->asoc.hb_random_values[stcb->asoc.hb_random_idx];
396b54d3a6cSRandall Stewart 					stcb->asoc.hb_random_idx++;
397b54d3a6cSRandall Stewart 					stcb->asoc.hb_ect_randombit = 0;
398b54d3a6cSRandall Stewart 				}
399b54d3a6cSRandall Stewart 				if (this_random % 2 == 1) {
400b54d3a6cSRandall Stewart 					max_cwnd_net = mnet;
401fc14de76SRandall Stewart 					max_cwnd = mnet->cwnd;	/* Useless? */
402b54d3a6cSRandall Stewart 				}
403b54d3a6cSRandall Stewart 			}
404b54d3a6cSRandall Stewart 		}
405b54d3a6cSRandall Stewart 		/*
406b54d3a6cSRandall Stewart 		 * JRS 5/14/07 - After all destination have been considered
407b54d3a6cSRandall Stewart 		 * as alternates, check to see if there was some active
408b54d3a6cSRandall Stewart 		 * destination (not in PF state).  If not, check to see if
409b54d3a6cSRandall Stewart 		 * there was some PF destination with the minimum number of
410b54d3a6cSRandall Stewart 		 * errors.  If not, return the original destination.  If
411b54d3a6cSRandall Stewart 		 * there is a min_errors_net, remove the PF flag from that
412b54d3a6cSRandall Stewart 		 * destination, set the cwnd to one or two MTUs, and return
413b54d3a6cSRandall Stewart 		 * the destination as an alt. If there was some active
414b54d3a6cSRandall Stewart 		 * destination with a highest cwnd, return the destination
415b54d3a6cSRandall Stewart 		 * as an alt.
416b54d3a6cSRandall Stewart 		 */
417b54d3a6cSRandall Stewart 		if (max_cwnd_net == NULL) {
418b54d3a6cSRandall Stewart 			if (min_errors_net == NULL) {
419b54d3a6cSRandall Stewart 				return (net);
420b54d3a6cSRandall Stewart 			}
421b54d3a6cSRandall Stewart 			min_errors_net->dest_state &= ~SCTP_ADDR_PF;
422b3f1ea41SRandall Stewart 			min_errors_net->cwnd = min_errors_net->mtu * SCTP_BASE_SYSCTL(sctp_cmt_pf);
423b54d3a6cSRandall Stewart 			if (SCTP_OS_TIMER_PENDING(&min_errors_net->rxt_timer.timer)) {
424b54d3a6cSRandall Stewart 				sctp_timer_stop(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep,
425b54d3a6cSRandall Stewart 				    stcb, min_errors_net,
426b54d3a6cSRandall Stewart 				    SCTP_FROM_SCTP_TIMER + SCTP_LOC_2);
427b54d3a6cSRandall Stewart 			}
428b54d3a6cSRandall Stewart 			SCTPDBG(SCTP_DEBUG_TIMER4, "Destination %p moved from PF to active with %d errors.\n",
429b54d3a6cSRandall Stewart 			    min_errors_net, min_errors_net->error_count);
430b54d3a6cSRandall Stewart 			return (min_errors_net);
431b54d3a6cSRandall Stewart 		} else {
432b54d3a6cSRandall Stewart 			return (max_cwnd_net);
433b54d3a6cSRandall Stewart 		}
434b54d3a6cSRandall Stewart 	}
435b54d3a6cSRandall Stewart 	/*
436b54d3a6cSRandall Stewart 	 * JRS 5/14/07 - If mode is set to 1, use the CMT policy for
437b54d3a6cSRandall Stewart 	 * choosing an alternate net.
438b54d3a6cSRandall Stewart 	 */
439b54d3a6cSRandall Stewart 	else if (mode == 1) {
440f8829a4aSRandall Stewart 		TAILQ_FOREACH(mnet, &stcb->asoc.nets, sctp_next) {
441f8829a4aSRandall Stewart 			if (((mnet->dest_state & SCTP_ADDR_REACHABLE) != SCTP_ADDR_REACHABLE) ||
442f8829a4aSRandall Stewart 			    (mnet->dest_state & SCTP_ADDR_UNCONFIRMED)
443f8829a4aSRandall Stewart 			    ) {
444f8829a4aSRandall Stewart 				/*
445f8829a4aSRandall Stewart 				 * will skip ones that are not-reachable or
446f8829a4aSRandall Stewart 				 * unconfirmed
447f8829a4aSRandall Stewart 				 */
448f8829a4aSRandall Stewart 				continue;
449f8829a4aSRandall Stewart 			}
450b54d3a6cSRandall Stewart 			if (max_cwnd < mnet->cwnd) {
451b54d3a6cSRandall Stewart 				max_cwnd_net = mnet;
452b54d3a6cSRandall Stewart 				max_cwnd = mnet->cwnd;
453b54d3a6cSRandall Stewart 			} else if (max_cwnd == mnet->cwnd) {
454f8829a4aSRandall Stewart 				uint32_t rndval;
455f8829a4aSRandall Stewart 				uint8_t this_random;
456f8829a4aSRandall Stewart 
457f8829a4aSRandall Stewart 				if (stcb->asoc.hb_random_idx > 3) {
458f8829a4aSRandall Stewart 					rndval = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep);
459f8829a4aSRandall Stewart 					memcpy(stcb->asoc.hb_random_values, &rndval,
460f8829a4aSRandall Stewart 					    sizeof(stcb->asoc.hb_random_values));
461f8829a4aSRandall Stewart 					this_random = stcb->asoc.hb_random_values[0];
462f8829a4aSRandall Stewart 					stcb->asoc.hb_random_idx = 0;
463f8829a4aSRandall Stewart 					stcb->asoc.hb_ect_randombit = 0;
464f8829a4aSRandall Stewart 				} else {
465f8829a4aSRandall Stewart 					this_random = stcb->asoc.hb_random_values[stcb->asoc.hb_random_idx];
466f8829a4aSRandall Stewart 					stcb->asoc.hb_random_idx++;
467f8829a4aSRandall Stewart 					stcb->asoc.hb_ect_randombit = 0;
468f8829a4aSRandall Stewart 				}
469f8829a4aSRandall Stewart 				if (this_random % 2) {
470b54d3a6cSRandall Stewart 					max_cwnd_net = mnet;
471b54d3a6cSRandall Stewart 					max_cwnd = mnet->cwnd;
472f8829a4aSRandall Stewart 				}
473f8829a4aSRandall Stewart 			}
474f8829a4aSRandall Stewart 		}
475b54d3a6cSRandall Stewart 		if (max_cwnd_net) {
476b54d3a6cSRandall Stewart 			return (max_cwnd_net);
477f8829a4aSRandall Stewart 		}
478f8829a4aSRandall Stewart 	}
479f8829a4aSRandall Stewart 	mnet = net;
480f8829a4aSRandall Stewart 	once = 0;
481f8829a4aSRandall Stewart 
482f8829a4aSRandall Stewart 	if (mnet == NULL) {
483f8829a4aSRandall Stewart 		mnet = TAILQ_FIRST(&stcb->asoc.nets);
484f8829a4aSRandall Stewart 	}
485f8829a4aSRandall Stewart 	do {
486f8829a4aSRandall Stewart 		alt = TAILQ_NEXT(mnet, sctp_next);
487f8829a4aSRandall Stewart 		if (alt == NULL) {
488f8829a4aSRandall Stewart 			once++;
489f8829a4aSRandall Stewart 			if (once > 1) {
490f8829a4aSRandall Stewart 				break;
491f8829a4aSRandall Stewart 			}
492f8829a4aSRandall Stewart 			alt = TAILQ_FIRST(&stcb->asoc.nets);
493f8829a4aSRandall Stewart 		}
494f8829a4aSRandall Stewart 		if (alt->ro.ro_rt == NULL) {
49542551e99SRandall Stewart 			if (alt->ro._s_addr) {
49642551e99SRandall Stewart 				sctp_free_ifa(alt->ro._s_addr);
49742551e99SRandall Stewart 				alt->ro._s_addr = NULL;
49842551e99SRandall Stewart 			}
499f8829a4aSRandall Stewart 			alt->src_addr_selected = 0;
500f8829a4aSRandall Stewart 		}
501f8829a4aSRandall Stewart 		if (
502f8829a4aSRandall Stewart 		    ((alt->dest_state & SCTP_ADDR_REACHABLE) == SCTP_ADDR_REACHABLE) &&
503f8829a4aSRandall Stewart 		    (alt->ro.ro_rt != NULL) &&
5043c503c28SRandall Stewart 		/* sa_ignore NO_NULL_CHK */
505f8829a4aSRandall Stewart 		    (!(alt->dest_state & SCTP_ADDR_UNCONFIRMED))
506f8829a4aSRandall Stewart 		    ) {
507f8829a4aSRandall Stewart 			/* Found a reachable address */
508f8829a4aSRandall Stewart 			break;
509f8829a4aSRandall Stewart 		}
510f8829a4aSRandall Stewart 		mnet = alt;
511f8829a4aSRandall Stewart 	} while (alt != NULL);
512f8829a4aSRandall Stewart 
513f8829a4aSRandall Stewart 	if (alt == NULL) {
514f8829a4aSRandall Stewart 		/* Case where NO insv network exists (dormant state) */
515f8829a4aSRandall Stewart 		/* we rotate destinations */
516f8829a4aSRandall Stewart 		once = 0;
517f8829a4aSRandall Stewart 		mnet = net;
518f8829a4aSRandall Stewart 		do {
519f8829a4aSRandall Stewart 			alt = TAILQ_NEXT(mnet, sctp_next);
520f8829a4aSRandall Stewart 			if (alt == NULL) {
521f8829a4aSRandall Stewart 				once++;
522f8829a4aSRandall Stewart 				if (once > 1) {
523f8829a4aSRandall Stewart 					break;
524f8829a4aSRandall Stewart 				}
525f8829a4aSRandall Stewart 				alt = TAILQ_FIRST(&stcb->asoc.nets);
526f8829a4aSRandall Stewart 			}
5273c503c28SRandall Stewart 			/* sa_ignore NO_NULL_CHK */
528f8829a4aSRandall Stewart 			if ((!(alt->dest_state & SCTP_ADDR_UNCONFIRMED)) &&
529f8829a4aSRandall Stewart 			    (alt != net)) {
530f8829a4aSRandall Stewart 				/* Found an alternate address */
531f8829a4aSRandall Stewart 				break;
532f8829a4aSRandall Stewart 			}
533f8829a4aSRandall Stewart 			mnet = alt;
534f8829a4aSRandall Stewart 		} while (alt != NULL);
535f8829a4aSRandall Stewart 	}
536f8829a4aSRandall Stewart 	if (alt == NULL) {
537f8829a4aSRandall Stewart 		return (net);
538f8829a4aSRandall Stewart 	}
539f8829a4aSRandall Stewart 	return (alt);
540f8829a4aSRandall Stewart }
541f8829a4aSRandall Stewart 
542b54d3a6cSRandall Stewart 
543b54d3a6cSRandall Stewart 
544f8829a4aSRandall Stewart static void
545f8829a4aSRandall Stewart sctp_backoff_on_timeout(struct sctp_tcb *stcb,
546f8829a4aSRandall Stewart     struct sctp_nets *net,
547f8829a4aSRandall Stewart     int win_probe,
548f8829a4aSRandall Stewart     int num_marked)
549f8829a4aSRandall Stewart {
5509a972525SRandall Stewart 	if (net->RTO == 0) {
5519a972525SRandall Stewart 		net->RTO = stcb->asoc.minrto;
5529a972525SRandall Stewart 	}
553f8829a4aSRandall Stewart 	net->RTO <<= 1;
554f8829a4aSRandall Stewart 	if (net->RTO > stcb->asoc.maxrto) {
555f8829a4aSRandall Stewart 		net->RTO = stcb->asoc.maxrto;
556f8829a4aSRandall Stewart 	}
557f8829a4aSRandall Stewart 	if ((win_probe == 0) && num_marked) {
558f8829a4aSRandall Stewart 		/* We don't apply penalty to window probe scenarios */
559b54d3a6cSRandall Stewart 		/* JRS - Use the congestion control given in the CC module */
560b54d3a6cSRandall Stewart 		stcb->asoc.cc_functions.sctp_cwnd_update_after_timeout(stcb, net);
561f8829a4aSRandall Stewart 	}
562f8829a4aSRandall Stewart }
563f8829a4aSRandall Stewart 
564df6e0cc3SRandall Stewart static void
565df6e0cc3SRandall Stewart sctp_recover_sent_list(struct sctp_tcb *stcb)
566df6e0cc3SRandall Stewart {
567df6e0cc3SRandall Stewart 	struct sctp_tmit_chunk *chk, *tp2;
568df6e0cc3SRandall Stewart 	struct sctp_association *asoc;
569df6e0cc3SRandall Stewart 
570df6e0cc3SRandall Stewart 	asoc = &stcb->asoc;
571df6e0cc3SRandall Stewart 	chk = TAILQ_FIRST(&stcb->asoc.sent_queue);
572df6e0cc3SRandall Stewart 	for (; chk != NULL; chk = tp2) {
573df6e0cc3SRandall Stewart 		tp2 = TAILQ_NEXT(chk, sctp_next);
574df6e0cc3SRandall Stewart 		if ((compare_with_wrap(stcb->asoc.last_acked_seq,
575df6e0cc3SRandall Stewart 		    chk->rec.data.TSN_seq,
576df6e0cc3SRandall Stewart 		    MAX_TSN)) ||
577df6e0cc3SRandall Stewart 		    (stcb->asoc.last_acked_seq == chk->rec.data.TSN_seq)) {
578df6e0cc3SRandall Stewart 
579df6e0cc3SRandall Stewart 			SCTP_PRINTF("Found chk:%p tsn:%x <= last_acked_seq:%x\n",
580df6e0cc3SRandall Stewart 			    chk, chk->rec.data.TSN_seq, stcb->asoc.last_acked_seq);
581df6e0cc3SRandall Stewart 			TAILQ_REMOVE(&asoc->sent_queue, chk, sctp_next);
582df6e0cc3SRandall Stewart 			if (chk->pr_sctp_on) {
583df6e0cc3SRandall Stewart 				if (asoc->pr_sctp_cnt != 0)
584df6e0cc3SRandall Stewart 					asoc->pr_sctp_cnt--;
585df6e0cc3SRandall Stewart 			}
586df6e0cc3SRandall Stewart 			if (chk->data) {
587df6e0cc3SRandall Stewart 				/* sa_ignore NO_NULL_CHK */
588df6e0cc3SRandall Stewart 				sctp_free_bufspace(stcb, asoc, chk, 1);
589df6e0cc3SRandall Stewart 				sctp_m_freem(chk->data);
590df6e0cc3SRandall Stewart 				if (PR_SCTP_BUF_ENABLED(chk->flags)) {
591df6e0cc3SRandall Stewart 					asoc->sent_queue_cnt_removeable--;
592df6e0cc3SRandall Stewart 				}
593df6e0cc3SRandall Stewart 			}
594df6e0cc3SRandall Stewart 			chk->data = NULL;
595df6e0cc3SRandall Stewart 			asoc->sent_queue_cnt--;
596df6e0cc3SRandall Stewart 			sctp_free_a_chunk(stcb, chk);
597df6e0cc3SRandall Stewart 		}
598df6e0cc3SRandall Stewart 	}
599df6e0cc3SRandall Stewart 	SCTP_PRINTF("after recover order is as follows\n");
600df6e0cc3SRandall Stewart 	chk = TAILQ_FIRST(&stcb->asoc.sent_queue);
601df6e0cc3SRandall Stewart 	for (; chk != NULL; chk = tp2) {
602df6e0cc3SRandall Stewart 		tp2 = TAILQ_NEXT(chk, sctp_next);
603df6e0cc3SRandall Stewart 		SCTP_PRINTF("chk:%p TSN:%x\n", chk, chk->rec.data.TSN_seq);
604df6e0cc3SRandall Stewart 	}
605df6e0cc3SRandall Stewart }
606df6e0cc3SRandall Stewart 
607f8829a4aSRandall Stewart static int
608f8829a4aSRandall Stewart sctp_mark_all_for_resend(struct sctp_tcb *stcb,
609f8829a4aSRandall Stewart     struct sctp_nets *net,
610f8829a4aSRandall Stewart     struct sctp_nets *alt,
611f8829a4aSRandall Stewart     int window_probe,
612f8829a4aSRandall Stewart     int *num_marked)
613f8829a4aSRandall Stewart {
614f8829a4aSRandall Stewart 
615f8829a4aSRandall Stewart 	/*
616f8829a4aSRandall Stewart 	 * Mark all chunks (well not all) that were sent to *net for
617f8829a4aSRandall Stewart 	 * retransmission. Move them to alt for there destination as well...
618f8829a4aSRandall Stewart 	 * We only mark chunks that have been outstanding long enough to
619f8829a4aSRandall Stewart 	 * have received feed-back.
620f8829a4aSRandall Stewart 	 */
621f8829a4aSRandall Stewart 	struct sctp_tmit_chunk *chk, *tp2, *could_be_sent = NULL;
622f8829a4aSRandall Stewart 	struct sctp_nets *lnets;
623f8829a4aSRandall Stewart 	struct timeval now, min_wait, tv;
624f8829a4aSRandall Stewart 	int cur_rtt;
625c105859eSRandall Stewart 	int audit_tf, num_mk, fir;
626f8829a4aSRandall Stewart 	unsigned int cnt_mk;
627c105859eSRandall Stewart 	uint32_t orig_flight, orig_tf;
628f8829a4aSRandall Stewart 	uint32_t tsnlast, tsnfirst;
629df6e0cc3SRandall Stewart 	int recovery_cnt = 0;
630f8829a4aSRandall Stewart 
631b54d3a6cSRandall Stewart 
632f8829a4aSRandall Stewart 	/* none in flight now */
633f8829a4aSRandall Stewart 	audit_tf = 0;
634f8829a4aSRandall Stewart 	fir = 0;
635f8829a4aSRandall Stewart 	/*
636f8829a4aSRandall Stewart 	 * figure out how long a data chunk must be pending before we can
637f8829a4aSRandall Stewart 	 * mark it ..
638f8829a4aSRandall Stewart 	 */
6396e55db54SRandall Stewart 	(void)SCTP_GETTIME_TIMEVAL(&now);
640f8829a4aSRandall Stewart 	/* get cur rto in micro-seconds */
641f8829a4aSRandall Stewart 	cur_rtt = (((net->lastsa >> 2) + net->lastsv) >> 1);
642f8829a4aSRandall Stewart 	cur_rtt *= 1000;
643b3f1ea41SRandall Stewart 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & (SCTP_EARLYFR_LOGGING_ENABLE | SCTP_FR_LOGGING_ENABLE)) {
644f8829a4aSRandall Stewart 		sctp_log_fr(cur_rtt,
645f8829a4aSRandall Stewart 		    stcb->asoc.peers_rwnd,
646f8829a4aSRandall Stewart 		    window_probe,
647f8829a4aSRandall Stewart 		    SCTP_FR_T3_MARK_TIME);
648f8829a4aSRandall Stewart 		sctp_log_fr(net->flight_size,
649139bc87fSRandall Stewart 		    SCTP_OS_TIMER_PENDING(&net->fr_timer.timer),
650139bc87fSRandall Stewart 		    SCTP_OS_TIMER_ACTIVE(&net->fr_timer.timer),
651f8829a4aSRandall Stewart 		    SCTP_FR_CWND_REPORT);
652f8829a4aSRandall Stewart 		sctp_log_fr(net->flight_size, net->cwnd, stcb->asoc.total_flight, SCTP_FR_CWND_REPORT);
65380fefe0aSRandall Stewart 	}
654f8829a4aSRandall Stewart 	tv.tv_sec = cur_rtt / 1000000;
655f8829a4aSRandall Stewart 	tv.tv_usec = cur_rtt % 1000000;
656f8829a4aSRandall Stewart 	min_wait = now;
657f8829a4aSRandall Stewart 	timevalsub(&min_wait, &tv);
658f8829a4aSRandall Stewart 	if (min_wait.tv_sec < 0 || min_wait.tv_usec < 0) {
659f8829a4aSRandall Stewart 		/*
660f8829a4aSRandall Stewart 		 * if we hit here, we don't have enough seconds on the clock
661f8829a4aSRandall Stewart 		 * to account for the RTO. We just let the lower seconds be
662f8829a4aSRandall Stewart 		 * the bounds and don't worry about it. This may mean we
663f8829a4aSRandall Stewart 		 * will mark a lot more than we should.
664f8829a4aSRandall Stewart 		 */
665f8829a4aSRandall Stewart 		min_wait.tv_sec = min_wait.tv_usec = 0;
666f8829a4aSRandall Stewart 	}
667b3f1ea41SRandall Stewart 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & (SCTP_EARLYFR_LOGGING_ENABLE | SCTP_FR_LOGGING_ENABLE)) {
668f8829a4aSRandall Stewart 		sctp_log_fr(cur_rtt, now.tv_sec, now.tv_usec, SCTP_FR_T3_MARK_TIME);
669f8829a4aSRandall Stewart 		sctp_log_fr(0, min_wait.tv_sec, min_wait.tv_usec, SCTP_FR_T3_MARK_TIME);
67080fefe0aSRandall Stewart 	}
671f8829a4aSRandall Stewart 	/*
672f8829a4aSRandall Stewart 	 * Our rwnd will be incorrect here since we are not adding back the
673f8829a4aSRandall Stewart 	 * cnt * mbuf but we will fix that down below.
674f8829a4aSRandall Stewart 	 */
675f8829a4aSRandall Stewart 	orig_flight = net->flight_size;
676c105859eSRandall Stewart 	orig_tf = stcb->asoc.total_flight;
677c105859eSRandall Stewart 
678f8829a4aSRandall Stewart 	net->fast_retran_ip = 0;
679f8829a4aSRandall Stewart 	/* Now on to each chunk */
680f8829a4aSRandall Stewart 	num_mk = cnt_mk = 0;
681f8829a4aSRandall Stewart 	tsnfirst = tsnlast = 0;
682df6e0cc3SRandall Stewart start_again:
683f8829a4aSRandall Stewart 	chk = TAILQ_FIRST(&stcb->asoc.sent_queue);
684f8829a4aSRandall Stewart 	for (; chk != NULL; chk = tp2) {
685f8829a4aSRandall Stewart 		tp2 = TAILQ_NEXT(chk, sctp_next);
686f8829a4aSRandall Stewart 		if ((compare_with_wrap(stcb->asoc.last_acked_seq,
687f8829a4aSRandall Stewart 		    chk->rec.data.TSN_seq,
688f8829a4aSRandall Stewart 		    MAX_TSN)) ||
689f8829a4aSRandall Stewart 		    (stcb->asoc.last_acked_seq == chk->rec.data.TSN_seq)) {
690f8829a4aSRandall Stewart 			/* Strange case our list got out of order? */
691df6e0cc3SRandall Stewart 			SCTP_PRINTF("Our list is out of order? last_acked:%x chk:%x",
692df6e0cc3SRandall Stewart 			    (unsigned int)stcb->asoc.last_acked_seq, (unsigned int)chk->rec.data.TSN_seq);
693df6e0cc3SRandall Stewart 			recovery_cnt++;
694df6e0cc3SRandall Stewart #ifdef INVARIANTS
695df6e0cc3SRandall Stewart 			panic("last acked >= chk on sent-Q");
696df6e0cc3SRandall Stewart #else
697df6e0cc3SRandall Stewart 			SCTP_PRINTF("Recover attempts a restart cnt:%d\n", recovery_cnt);
698df6e0cc3SRandall Stewart 			sctp_recover_sent_list(stcb);
699df6e0cc3SRandall Stewart 			if (recovery_cnt < 10) {
700df6e0cc3SRandall Stewart 				goto start_again;
701df6e0cc3SRandall Stewart 			} else {
702df6e0cc3SRandall Stewart 				SCTP_PRINTF("Recovery fails %d times??\n", recovery_cnt);
703df6e0cc3SRandall Stewart 			}
704df6e0cc3SRandall Stewart #endif
705f8829a4aSRandall Stewart 		}
706f8829a4aSRandall Stewart 		if ((chk->whoTo == net) && (chk->sent < SCTP_DATAGRAM_ACKED)) {
707f8829a4aSRandall Stewart 			/*
708f8829a4aSRandall Stewart 			 * found one to mark: If it is less than
709f8829a4aSRandall Stewart 			 * DATAGRAM_ACKED it MUST not be a skipped or marked
710f8829a4aSRandall Stewart 			 * TSN but instead one that is either already set
711f8829a4aSRandall Stewart 			 * for retransmission OR one that needs
712f8829a4aSRandall Stewart 			 * retransmission.
713f8829a4aSRandall Stewart 			 */
714f8829a4aSRandall Stewart 
715f8829a4aSRandall Stewart 			/* validate its been outstanding long enough */
716b3f1ea41SRandall Stewart 			if (SCTP_BASE_SYSCTL(sctp_logging_level) & (SCTP_EARLYFR_LOGGING_ENABLE | SCTP_FR_LOGGING_ENABLE)) {
717f8829a4aSRandall Stewart 				sctp_log_fr(chk->rec.data.TSN_seq,
718f8829a4aSRandall Stewart 				    chk->sent_rcv_time.tv_sec,
719f8829a4aSRandall Stewart 				    chk->sent_rcv_time.tv_usec,
720f8829a4aSRandall Stewart 				    SCTP_FR_T3_MARK_TIME);
72180fefe0aSRandall Stewart 			}
722f8829a4aSRandall Stewart 			if ((chk->sent_rcv_time.tv_sec > min_wait.tv_sec) && (window_probe == 0)) {
723f8829a4aSRandall Stewart 				/*
724f8829a4aSRandall Stewart 				 * we have reached a chunk that was sent
725f8829a4aSRandall Stewart 				 * some seconds past our min.. forget it we
726f8829a4aSRandall Stewart 				 * will find no more to send.
727f8829a4aSRandall Stewart 				 */
728b3f1ea41SRandall Stewart 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & (SCTP_EARLYFR_LOGGING_ENABLE | SCTP_FR_LOGGING_ENABLE)) {
729f8829a4aSRandall Stewart 					sctp_log_fr(0,
730f8829a4aSRandall Stewart 					    chk->sent_rcv_time.tv_sec,
731f8829a4aSRandall Stewart 					    chk->sent_rcv_time.tv_usec,
732f8829a4aSRandall Stewart 					    SCTP_FR_T3_STOPPED);
73380fefe0aSRandall Stewart 				}
734f8829a4aSRandall Stewart 				continue;
735f8829a4aSRandall Stewart 			} else if ((chk->sent_rcv_time.tv_sec == min_wait.tv_sec) &&
736f8829a4aSRandall Stewart 			    (window_probe == 0)) {
737f8829a4aSRandall Stewart 				/*
738f8829a4aSRandall Stewart 				 * we must look at the micro seconds to
739f8829a4aSRandall Stewart 				 * know.
740f8829a4aSRandall Stewart 				 */
741f8829a4aSRandall Stewart 				if (chk->sent_rcv_time.tv_usec >= min_wait.tv_usec) {
742f8829a4aSRandall Stewart 					/*
743f8829a4aSRandall Stewart 					 * ok it was sent after our boundary
744f8829a4aSRandall Stewart 					 * time.
745f8829a4aSRandall Stewart 					 */
746b3f1ea41SRandall Stewart 					if (SCTP_BASE_SYSCTL(sctp_logging_level) & (SCTP_EARLYFR_LOGGING_ENABLE | SCTP_FR_LOGGING_ENABLE)) {
747f8829a4aSRandall Stewart 						sctp_log_fr(0,
748f8829a4aSRandall Stewart 						    chk->sent_rcv_time.tv_sec,
749f8829a4aSRandall Stewart 						    chk->sent_rcv_time.tv_usec,
750f8829a4aSRandall Stewart 						    SCTP_FR_T3_STOPPED);
75180fefe0aSRandall Stewart 					}
752f8829a4aSRandall Stewart 					continue;
753f8829a4aSRandall Stewart 				}
754f8829a4aSRandall Stewart 			}
755f8829a4aSRandall Stewart 			if (PR_SCTP_TTL_ENABLED(chk->flags)) {
756f8829a4aSRandall Stewart 				/* Is it expired? */
757f8829a4aSRandall Stewart 				if ((now.tv_sec > chk->rec.data.timetodrop.tv_sec) ||
758f8829a4aSRandall Stewart 				    ((chk->rec.data.timetodrop.tv_sec == now.tv_sec) &&
759f8829a4aSRandall Stewart 				    (now.tv_usec > chk->rec.data.timetodrop.tv_usec))) {
760f8829a4aSRandall Stewart 					/* Yes so drop it */
761f8829a4aSRandall Stewart 					if (chk->data) {
762ad81507eSRandall Stewart 						(void)sctp_release_pr_sctp_chunk(stcb,
763f8829a4aSRandall Stewart 						    chk,
764f8829a4aSRandall Stewart 						    (SCTP_RESPONSE_TO_USER_REQ | SCTP_NOTIFY_DATAGRAM_SENT),
765ceaad40aSRandall Stewart 						    &stcb->asoc.sent_queue, SCTP_SO_NOT_LOCKED);
766f8829a4aSRandall Stewart 					}
767f8829a4aSRandall Stewart 				}
768f8829a4aSRandall Stewart 				continue;
769f8829a4aSRandall Stewart 			}
770f8829a4aSRandall Stewart 			if (PR_SCTP_RTX_ENABLED(chk->flags)) {
771f8829a4aSRandall Stewart 				/* Has it been retransmitted tv_sec times? */
772f8829a4aSRandall Stewart 				if (chk->snd_count > chk->rec.data.timetodrop.tv_sec) {
773f8829a4aSRandall Stewart 					if (chk->data) {
774ad81507eSRandall Stewart 						(void)sctp_release_pr_sctp_chunk(stcb,
775f8829a4aSRandall Stewart 						    chk,
776f8829a4aSRandall Stewart 						    (SCTP_RESPONSE_TO_USER_REQ | SCTP_NOTIFY_DATAGRAM_SENT),
777ceaad40aSRandall Stewart 						    &stcb->asoc.sent_queue, SCTP_SO_NOT_LOCKED);
778f8829a4aSRandall Stewart 					}
779f8829a4aSRandall Stewart 				}
780f8829a4aSRandall Stewart 				continue;
781f8829a4aSRandall Stewart 			}
782c105859eSRandall Stewart 			if (chk->sent < SCTP_DATAGRAM_RESEND) {
783f8829a4aSRandall Stewart 				sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt);
784f8829a4aSRandall Stewart 				num_mk++;
785f8829a4aSRandall Stewart 				if (fir == 0) {
786f8829a4aSRandall Stewart 					fir = 1;
787f8829a4aSRandall Stewart 					tsnfirst = chk->rec.data.TSN_seq;
788f8829a4aSRandall Stewart 				}
789f8829a4aSRandall Stewart 				tsnlast = chk->rec.data.TSN_seq;
790b3f1ea41SRandall Stewart 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & (SCTP_EARLYFR_LOGGING_ENABLE | SCTP_FR_LOGGING_ENABLE)) {
791f8829a4aSRandall Stewart 					sctp_log_fr(chk->rec.data.TSN_seq, chk->snd_count,
792f8829a4aSRandall Stewart 					    0, SCTP_FR_T3_MARKED);
79380fefe0aSRandall Stewart 				}
79442551e99SRandall Stewart 				if (chk->rec.data.chunk_was_revoked) {
79542551e99SRandall Stewart 					/* deflate the cwnd */
79642551e99SRandall Stewart 					chk->whoTo->cwnd -= chk->book_size;
79742551e99SRandall Stewart 					chk->rec.data.chunk_was_revoked = 0;
79842551e99SRandall Stewart 				}
799f42a358aSRandall Stewart 				net->marked_retrans++;
800f42a358aSRandall Stewart 				stcb->asoc.marked_retrans++;
801b3f1ea41SRandall Stewart 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
802c105859eSRandall Stewart 					sctp_misc_ints(SCTP_FLIGHT_LOG_DOWN_RSND_TO,
803a5d547adSRandall Stewart 					    chk->whoTo->flight_size,
804a5d547adSRandall Stewart 					    chk->book_size,
805c105859eSRandall Stewart 					    (uintptr_t) chk->whoTo,
806a5d547adSRandall Stewart 					    chk->rec.data.TSN_seq);
80780fefe0aSRandall Stewart 				}
808c105859eSRandall Stewart 				sctp_flight_size_decrease(chk);
809c105859eSRandall Stewart 				sctp_total_flight_decrease(stcb, chk);
810f8829a4aSRandall Stewart 				stcb->asoc.peers_rwnd += chk->send_size;
811b3f1ea41SRandall Stewart 				stcb->asoc.peers_rwnd += SCTP_BASE_SYSCTL(sctp_peer_chunk_oh);
812c105859eSRandall Stewart 			}
813c105859eSRandall Stewart 			chk->sent = SCTP_DATAGRAM_RESEND;
814c105859eSRandall Stewart 			SCTP_STAT_INCR(sctps_markedretrans);
815f8829a4aSRandall Stewart 
816f8829a4aSRandall Stewart 			/* reset the TSN for striking and other FR stuff */
817f8829a4aSRandall Stewart 			chk->rec.data.doing_fast_retransmit = 0;
818f8829a4aSRandall Stewart 			/* Clear any time so NO RTT is being done */
819f8829a4aSRandall Stewart 			chk->do_rtt = 0;
820f8829a4aSRandall Stewart 			if (alt != net) {
821f8829a4aSRandall Stewart 				sctp_free_remote_addr(chk->whoTo);
822f8829a4aSRandall Stewart 				chk->no_fr_allowed = 1;
823f8829a4aSRandall Stewart 				chk->whoTo = alt;
824f8829a4aSRandall Stewart 				atomic_add_int(&alt->ref_count, 1);
825f8829a4aSRandall Stewart 			} else {
826f8829a4aSRandall Stewart 				chk->no_fr_allowed = 0;
827f8829a4aSRandall Stewart 				if (TAILQ_EMPTY(&stcb->asoc.send_queue)) {
828f8829a4aSRandall Stewart 					chk->rec.data.fast_retran_tsn = stcb->asoc.sending_seq;
829f8829a4aSRandall Stewart 				} else {
830f8829a4aSRandall Stewart 					chk->rec.data.fast_retran_tsn = (TAILQ_FIRST(&stcb->asoc.send_queue))->rec.data.TSN_seq;
831f8829a4aSRandall Stewart 				}
832f8829a4aSRandall Stewart 			}
833ad21a364SRandall Stewart 			/*
834ad21a364SRandall Stewart 			 * CMT: Do not allow FRs on retransmitted TSNs.
835ad21a364SRandall Stewart 			 */
836b3f1ea41SRandall Stewart 			if (SCTP_BASE_SYSCTL(sctp_cmt_on_off) == 1) {
837f8829a4aSRandall Stewart 				chk->no_fr_allowed = 1;
838f8829a4aSRandall Stewart 			}
839f8829a4aSRandall Stewart 		} else if (chk->sent == SCTP_DATAGRAM_ACKED) {
840f8829a4aSRandall Stewart 			/* remember highest acked one */
841f8829a4aSRandall Stewart 			could_be_sent = chk;
842f8829a4aSRandall Stewart 		}
843f8829a4aSRandall Stewart 		if (chk->sent == SCTP_DATAGRAM_RESEND) {
844f8829a4aSRandall Stewart 			cnt_mk++;
845f8829a4aSRandall Stewart 		}
846f8829a4aSRandall Stewart 	}
847c105859eSRandall Stewart 	if ((orig_flight - net->flight_size) != (orig_tf - stcb->asoc.total_flight)) {
848c105859eSRandall Stewart 		/* we did not subtract the same things? */
849c105859eSRandall Stewart 		audit_tf = 1;
850c105859eSRandall Stewart 	}
851b3f1ea41SRandall Stewart 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & (SCTP_EARLYFR_LOGGING_ENABLE | SCTP_FR_LOGGING_ENABLE)) {
852f8829a4aSRandall Stewart 		sctp_log_fr(tsnfirst, tsnlast, num_mk, SCTP_FR_T3_TIMEOUT);
85380fefe0aSRandall Stewart 	}
854f8829a4aSRandall Stewart #ifdef SCTP_DEBUG
855f8829a4aSRandall Stewart 	if (num_mk) {
856ad81507eSRandall Stewart 		SCTPDBG(SCTP_DEBUG_TIMER1, "LAST TSN marked was %x\n",
857ad81507eSRandall Stewart 		    tsnlast);
858ad81507eSRandall Stewart 		SCTPDBG(SCTP_DEBUG_TIMER1, "Num marked for retransmission was %d peer-rwd:%ld\n",
859f8829a4aSRandall Stewart 		    num_mk, (u_long)stcb->asoc.peers_rwnd);
860ad81507eSRandall Stewart 		SCTPDBG(SCTP_DEBUG_TIMER1, "LAST TSN marked was %x\n",
861ad81507eSRandall Stewart 		    tsnlast);
862ad81507eSRandall Stewart 		SCTPDBG(SCTP_DEBUG_TIMER1, "Num marked for retransmission was %d peer-rwd:%d\n",
863f8829a4aSRandall Stewart 		    num_mk,
864ad81507eSRandall Stewart 		    (int)stcb->asoc.peers_rwnd);
865f8829a4aSRandall Stewart 	}
866f8829a4aSRandall Stewart #endif
867f8829a4aSRandall Stewart 	*num_marked = num_mk;
868f8829a4aSRandall Stewart 	if ((stcb->asoc.sent_queue_retran_cnt == 0) && (could_be_sent)) {
869f8829a4aSRandall Stewart 		/* fix it so we retransmit the highest acked anyway */
870f8829a4aSRandall Stewart 		sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt);
871f8829a4aSRandall Stewart 		cnt_mk++;
872f8829a4aSRandall Stewart 		could_be_sent->sent = SCTP_DATAGRAM_RESEND;
873f8829a4aSRandall Stewart 	}
874f8829a4aSRandall Stewart 	if (stcb->asoc.sent_queue_retran_cnt != cnt_mk) {
875a5d547adSRandall Stewart #ifdef INVARIANTS
87618e198d3SRandall Stewart 		SCTP_PRINTF("Local Audit says there are %d for retran asoc cnt:%d we marked:%d this time\n",
87718e198d3SRandall Stewart 		    cnt_mk, stcb->asoc.sent_queue_retran_cnt, num_mk);
878f8829a4aSRandall Stewart #endif
879f8829a4aSRandall Stewart #ifndef SCTP_AUDITING_ENABLED
880f8829a4aSRandall Stewart 		stcb->asoc.sent_queue_retran_cnt = cnt_mk;
881f8829a4aSRandall Stewart #endif
882f8829a4aSRandall Stewart 	}
883f8829a4aSRandall Stewart 	/* Now check for a ECN Echo that may be stranded */
884f8829a4aSRandall Stewart 	TAILQ_FOREACH(chk, &stcb->asoc.control_send_queue, sctp_next) {
885f8829a4aSRandall Stewart 		if ((chk->whoTo == net) &&
886f8829a4aSRandall Stewart 		    (chk->rec.chunk_id.id == SCTP_ECN_ECHO)) {
887f8829a4aSRandall Stewart 			sctp_free_remote_addr(chk->whoTo);
888f8829a4aSRandall Stewart 			chk->whoTo = alt;
889f8829a4aSRandall Stewart 			if (chk->sent != SCTP_DATAGRAM_RESEND) {
890f8829a4aSRandall Stewart 				chk->sent = SCTP_DATAGRAM_RESEND;
891f8829a4aSRandall Stewart 				sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt);
892f8829a4aSRandall Stewart 			}
893f8829a4aSRandall Stewart 			atomic_add_int(&alt->ref_count, 1);
894f8829a4aSRandall Stewart 		}
895f8829a4aSRandall Stewart 	}
896f8829a4aSRandall Stewart 	if (audit_tf) {
897ad81507eSRandall Stewart 		SCTPDBG(SCTP_DEBUG_TIMER4,
898ad81507eSRandall Stewart 		    "Audit total flight due to negative value net:%p\n",
899f8829a4aSRandall Stewart 		    net);
900f8829a4aSRandall Stewart 		stcb->asoc.total_flight = 0;
901f8829a4aSRandall Stewart 		stcb->asoc.total_flight_count = 0;
902f8829a4aSRandall Stewart 		/* Clear all networks flight size */
903f8829a4aSRandall Stewart 		TAILQ_FOREACH(lnets, &stcb->asoc.nets, sctp_next) {
904f8829a4aSRandall Stewart 			lnets->flight_size = 0;
905ad81507eSRandall Stewart 			SCTPDBG(SCTP_DEBUG_TIMER4,
906ad81507eSRandall Stewart 			    "Net:%p c-f cwnd:%d ssthresh:%d\n",
907f8829a4aSRandall Stewart 			    lnets, lnets->cwnd, lnets->ssthresh);
908f8829a4aSRandall Stewart 		}
909f8829a4aSRandall Stewart 		TAILQ_FOREACH(chk, &stcb->asoc.sent_queue, sctp_next) {
910f8829a4aSRandall Stewart 			if (chk->sent < SCTP_DATAGRAM_RESEND) {
911b3f1ea41SRandall Stewart 				if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) {
912a5d547adSRandall Stewart 					sctp_misc_ints(SCTP_FLIGHT_LOG_UP,
913a5d547adSRandall Stewart 					    chk->whoTo->flight_size,
914a5d547adSRandall Stewart 					    chk->book_size,
915c105859eSRandall Stewart 					    (uintptr_t) chk->whoTo,
916a5d547adSRandall Stewart 					    chk->rec.data.TSN_seq);
91780fefe0aSRandall Stewart 				}
918c105859eSRandall Stewart 				sctp_flight_size_increase(chk);
919c105859eSRandall Stewart 				sctp_total_flight_increase(stcb, chk);
920f8829a4aSRandall Stewart 			}
921f8829a4aSRandall Stewart 		}
922f8829a4aSRandall Stewart 	}
923f8829a4aSRandall Stewart 	/*
924f8829a4aSRandall Stewart 	 * Setup the ecn nonce re-sync point. We do this since
925f8829a4aSRandall Stewart 	 * retranmissions are NOT setup for ECN. This means that do to
926f8829a4aSRandall Stewart 	 * Karn's rule, we don't know the total of the peers ecn bits.
927f8829a4aSRandall Stewart 	 */
928f8829a4aSRandall Stewart 	chk = TAILQ_FIRST(&stcb->asoc.send_queue);
929f8829a4aSRandall Stewart 	if (chk == NULL) {
930f8829a4aSRandall Stewart 		stcb->asoc.nonce_resync_tsn = stcb->asoc.sending_seq;
931f8829a4aSRandall Stewart 	} else {
932f8829a4aSRandall Stewart 		stcb->asoc.nonce_resync_tsn = chk->rec.data.TSN_seq;
933f8829a4aSRandall Stewart 	}
934f8829a4aSRandall Stewart 	stcb->asoc.nonce_wait_for_ecne = 0;
935f8829a4aSRandall Stewart 	stcb->asoc.nonce_sum_check = 0;
936f8829a4aSRandall Stewart 	/* We return 1 if we only have a window probe outstanding */
937f8829a4aSRandall Stewart 	return (0);
938f8829a4aSRandall Stewart }
939f8829a4aSRandall Stewart 
940f8829a4aSRandall Stewart static void
941f8829a4aSRandall Stewart sctp_move_all_chunks_to_alt(struct sctp_tcb *stcb,
942f8829a4aSRandall Stewart     struct sctp_nets *net,
943f8829a4aSRandall Stewart     struct sctp_nets *alt)
944f8829a4aSRandall Stewart {
945f8829a4aSRandall Stewart 	struct sctp_association *asoc;
946f8829a4aSRandall Stewart 	struct sctp_stream_out *outs;
947f8829a4aSRandall Stewart 	struct sctp_tmit_chunk *chk;
948f8829a4aSRandall Stewart 	struct sctp_stream_queue_pending *sp;
949f8829a4aSRandall Stewart 
950f8829a4aSRandall Stewart 	if (net == alt)
951f8829a4aSRandall Stewart 		/* nothing to do */
952f8829a4aSRandall Stewart 		return;
953f8829a4aSRandall Stewart 
954f8829a4aSRandall Stewart 	asoc = &stcb->asoc;
955f8829a4aSRandall Stewart 
956f8829a4aSRandall Stewart 	/*
957f8829a4aSRandall Stewart 	 * now through all the streams checking for chunks sent to our bad
958f8829a4aSRandall Stewart 	 * network.
959f8829a4aSRandall Stewart 	 */
960f8829a4aSRandall Stewart 	TAILQ_FOREACH(outs, &asoc->out_wheel, next_spoke) {
961f8829a4aSRandall Stewart 		/* now clean up any chunks here */
962f8829a4aSRandall Stewart 		TAILQ_FOREACH(sp, &outs->outqueue, next) {
963f8829a4aSRandall Stewart 			if (sp->net == net) {
964f8829a4aSRandall Stewart 				sctp_free_remote_addr(sp->net);
965f8829a4aSRandall Stewart 				sp->net = alt;
966f8829a4aSRandall Stewart 				atomic_add_int(&alt->ref_count, 1);
967f8829a4aSRandall Stewart 			}
968f8829a4aSRandall Stewart 		}
969f8829a4aSRandall Stewart 	}
970f8829a4aSRandall Stewart 	/* Now check the pending queue */
971f8829a4aSRandall Stewart 	TAILQ_FOREACH(chk, &asoc->send_queue, sctp_next) {
972f8829a4aSRandall Stewart 		if (chk->whoTo == net) {
973f8829a4aSRandall Stewart 			sctp_free_remote_addr(chk->whoTo);
974f8829a4aSRandall Stewart 			chk->whoTo = alt;
975f8829a4aSRandall Stewart 			atomic_add_int(&alt->ref_count, 1);
976f8829a4aSRandall Stewart 		}
977f8829a4aSRandall Stewart 	}
978f8829a4aSRandall Stewart 
979f8829a4aSRandall Stewart }
980f8829a4aSRandall Stewart 
981f8829a4aSRandall Stewart int
982f8829a4aSRandall Stewart sctp_t3rxt_timer(struct sctp_inpcb *inp,
983f8829a4aSRandall Stewart     struct sctp_tcb *stcb,
984f8829a4aSRandall Stewart     struct sctp_nets *net)
985f8829a4aSRandall Stewart {
986f8829a4aSRandall Stewart 	struct sctp_nets *alt;
987f8829a4aSRandall Stewart 	int win_probe, num_mk;
988f8829a4aSRandall Stewart 
989b3f1ea41SRandall Stewart 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FR_LOGGING_ENABLE) {
990562a89b5SRandall Stewart 		sctp_log_fr(0, 0, 0, SCTP_FR_T3_TIMEOUT);
99180fefe0aSRandall Stewart 	}
992b3f1ea41SRandall Stewart 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) {
993f8829a4aSRandall Stewart 		struct sctp_nets *lnet;
994f8829a4aSRandall Stewart 
995f8829a4aSRandall Stewart 		TAILQ_FOREACH(lnet, &stcb->asoc.nets, sctp_next) {
996f8829a4aSRandall Stewart 			if (net == lnet) {
997f8829a4aSRandall Stewart 				sctp_log_cwnd(stcb, lnet, 1, SCTP_CWND_LOG_FROM_T3);
998f8829a4aSRandall Stewart 			} else {
999f8829a4aSRandall Stewart 				sctp_log_cwnd(stcb, lnet, 0, SCTP_CWND_LOG_FROM_T3);
1000f8829a4aSRandall Stewart 			}
1001f8829a4aSRandall Stewart 		}
1002f8829a4aSRandall Stewart 	}
1003f8829a4aSRandall Stewart 	/* Find an alternate and mark those for retransmission */
1004f8829a4aSRandall Stewart 	if ((stcb->asoc.peers_rwnd == 0) &&
1005f8829a4aSRandall Stewart 	    (stcb->asoc.total_flight < net->mtu)) {
1006f8829a4aSRandall Stewart 		SCTP_STAT_INCR(sctps_timowindowprobe);
1007f8829a4aSRandall Stewart 		win_probe = 1;
1008f8829a4aSRandall Stewart 	} else {
1009f8829a4aSRandall Stewart 		win_probe = 0;
1010f8829a4aSRandall Stewart 	}
1011c105859eSRandall Stewart 
1012b54d3a6cSRandall Stewart 	/*
1013b54d3a6cSRandall Stewart 	 * JRS 5/14/07 - If CMT PF is on and the destination if not already
1014b54d3a6cSRandall Stewart 	 * in PF state, set the destination to PF state and store the
1015b54d3a6cSRandall Stewart 	 * current time as the time that the destination was last active. In
1016b54d3a6cSRandall Stewart 	 * addition, find an alternate destination with PF-based
1017b54d3a6cSRandall Stewart 	 * find_alt_net().
1018b54d3a6cSRandall Stewart 	 */
1019b3f1ea41SRandall Stewart 	if (SCTP_BASE_SYSCTL(sctp_cmt_on_off) && SCTP_BASE_SYSCTL(sctp_cmt_pf)) {
1020b54d3a6cSRandall Stewart 		if ((net->dest_state & SCTP_ADDR_PF) != SCTP_ADDR_PF) {
1021b54d3a6cSRandall Stewart 			net->dest_state |= SCTP_ADDR_PF;
102218e198d3SRandall Stewart 			net->last_active = sctp_get_tick_count();
1023b54d3a6cSRandall Stewart 			SCTPDBG(SCTP_DEBUG_TIMER4, "Destination %p moved from active to PF.\n",
1024b54d3a6cSRandall Stewart 			    net);
1025b54d3a6cSRandall Stewart 		}
1026b54d3a6cSRandall Stewart 		alt = sctp_find_alternate_net(stcb, net, 2);
1027b3f1ea41SRandall Stewart 	} else if (SCTP_BASE_SYSCTL(sctp_cmt_on_off)) {
1028c105859eSRandall Stewart 		/*
1029c105859eSRandall Stewart 		 * CMT: Using RTX_SSTHRESH policy for CMT. If CMT is being
1030c105859eSRandall Stewart 		 * used, then pick dest with largest ssthresh for any
1031c105859eSRandall Stewart 		 * retransmission.
1032c105859eSRandall Stewart 		 */
1033c105859eSRandall Stewart 		alt = net;
1034c105859eSRandall Stewart 		alt = sctp_find_alternate_net(stcb, alt, 1);
1035c105859eSRandall Stewart 		/*
1036c105859eSRandall Stewart 		 * CUCv2: If a different dest is picked for the
1037c105859eSRandall Stewart 		 * retransmission, then new (rtx-)pseudo_cumack needs to be
1038c105859eSRandall Stewart 		 * tracked for orig dest. Let CUCv2 track new (rtx-)
1039c105859eSRandall Stewart 		 * pseudo-cumack always.
1040c105859eSRandall Stewart 		 */
1041c105859eSRandall Stewart 		net->find_pseudo_cumack = 1;
1042c105859eSRandall Stewart 		net->find_rtx_pseudo_cumack = 1;
1043c105859eSRandall Stewart 	} else {		/* CMT is OFF */
1044f8829a4aSRandall Stewart 		alt = sctp_find_alternate_net(stcb, net, 0);
1045c105859eSRandall Stewart 	}
1046c105859eSRandall Stewart 
1047ad81507eSRandall Stewart 	(void)sctp_mark_all_for_resend(stcb, net, alt, win_probe, &num_mk);
1048f8829a4aSRandall Stewart 	/* FR Loss recovery just ended with the T3. */
1049f8829a4aSRandall Stewart 	stcb->asoc.fast_retran_loss_recovery = 0;
1050f8829a4aSRandall Stewart 
1051f8829a4aSRandall Stewart 	/* CMT FR loss recovery ended with the T3 */
1052f8829a4aSRandall Stewart 	net->fast_retran_loss_recovery = 0;
1053f8829a4aSRandall Stewart 
1054f8829a4aSRandall Stewart 	/*
1055f8829a4aSRandall Stewart 	 * setup the sat loss recovery that prevents satellite cwnd advance.
1056f8829a4aSRandall Stewart 	 */
1057f8829a4aSRandall Stewart 	stcb->asoc.sat_t3_loss_recovery = 1;
1058f8829a4aSRandall Stewart 	stcb->asoc.sat_t3_recovery_tsn = stcb->asoc.sending_seq;
1059f8829a4aSRandall Stewart 
1060f8829a4aSRandall Stewart 	/* Backoff the timer and cwnd */
1061f8829a4aSRandall Stewart 	sctp_backoff_on_timeout(stcb, net, win_probe, num_mk);
1062f8829a4aSRandall Stewart 	if (win_probe == 0) {
1063f8829a4aSRandall Stewart 		/* We don't do normal threshold management on window probes */
1064f8829a4aSRandall Stewart 		if (sctp_threshold_management(inp, stcb, net,
1065f8829a4aSRandall Stewart 		    stcb->asoc.max_send_times)) {
1066f8829a4aSRandall Stewart 			/* Association was destroyed */
1067f8829a4aSRandall Stewart 			return (1);
1068f8829a4aSRandall Stewart 		} else {
1069f8829a4aSRandall Stewart 			if (net != stcb->asoc.primary_destination) {
1070f8829a4aSRandall Stewart 				/* send a immediate HB if our RTO is stale */
1071f8829a4aSRandall Stewart 				struct timeval now;
1072f8829a4aSRandall Stewart 				unsigned int ms_goneby;
1073f8829a4aSRandall Stewart 
10746e55db54SRandall Stewart 				(void)SCTP_GETTIME_TIMEVAL(&now);
1075f8829a4aSRandall Stewart 				if (net->last_sent_time.tv_sec) {
1076f8829a4aSRandall Stewart 					ms_goneby = (now.tv_sec - net->last_sent_time.tv_sec) * 1000;
1077f8829a4aSRandall Stewart 				} else {
1078f8829a4aSRandall Stewart 					ms_goneby = 0;
1079f8829a4aSRandall Stewart 				}
1080f8829a4aSRandall Stewart 				if ((ms_goneby > net->RTO) || (net->RTO == 0)) {
1081f8829a4aSRandall Stewart 					/*
1082f8829a4aSRandall Stewart 					 * no recent feed back in an RTO or
1083f8829a4aSRandall Stewart 					 * more, request a RTT update
1084f8829a4aSRandall Stewart 					 */
1085b54d3a6cSRandall Stewart 					if (sctp_send_hb(stcb, 1, net) < 0)
1086b54d3a6cSRandall Stewart 						return 1;
1087f8829a4aSRandall Stewart 				}
1088f8829a4aSRandall Stewart 			}
1089f8829a4aSRandall Stewart 		}
1090f8829a4aSRandall Stewart 	} else {
1091f8829a4aSRandall Stewart 		/*
1092f8829a4aSRandall Stewart 		 * For a window probe we don't penalize the net's but only
1093f8829a4aSRandall Stewart 		 * the association. This may fail it if SACKs are not coming
1094f8829a4aSRandall Stewart 		 * back. If sack's are coming with rwnd locked at 0, we will
1095f8829a4aSRandall Stewart 		 * continue to hold things waiting for rwnd to raise
1096f8829a4aSRandall Stewart 		 */
1097f8829a4aSRandall Stewart 		if (sctp_threshold_management(inp, stcb, NULL,
1098f8829a4aSRandall Stewart 		    stcb->asoc.max_send_times)) {
1099f8829a4aSRandall Stewart 			/* Association was destroyed */
1100f8829a4aSRandall Stewart 			return (1);
1101f8829a4aSRandall Stewart 		}
1102f8829a4aSRandall Stewart 	}
1103f8829a4aSRandall Stewart 	if (net->dest_state & SCTP_ADDR_NOT_REACHABLE) {
1104f8829a4aSRandall Stewart 		/* Move all pending over too */
1105f8829a4aSRandall Stewart 		sctp_move_all_chunks_to_alt(stcb, net, alt);
110617205eccSRandall Stewart 
110717205eccSRandall Stewart 		/*
110817205eccSRandall Stewart 		 * Get the address that failed, to force a new src address
110917205eccSRandall Stewart 		 * selecton and a route allocation.
111017205eccSRandall Stewart 		 */
111117205eccSRandall Stewart 		if (net->ro._s_addr) {
111217205eccSRandall Stewart 			sctp_free_ifa(net->ro._s_addr);
111317205eccSRandall Stewart 			net->ro._s_addr = NULL;
111417205eccSRandall Stewart 		}
111517205eccSRandall Stewart 		net->src_addr_selected = 0;
111617205eccSRandall Stewart 
111717205eccSRandall Stewart 		/* Force a route allocation too */
111817205eccSRandall Stewart 		if (net->ro.ro_rt) {
111917205eccSRandall Stewart 			RTFREE(net->ro.ro_rt);
112017205eccSRandall Stewart 			net->ro.ro_rt = NULL;
112117205eccSRandall Stewart 		}
1122f8829a4aSRandall Stewart 		/* Was it our primary? */
1123f8829a4aSRandall Stewart 		if ((stcb->asoc.primary_destination == net) && (alt != net)) {
1124f8829a4aSRandall Stewart 			/*
1125f8829a4aSRandall Stewart 			 * Yes, note it as such and find an alternate note:
1126f8829a4aSRandall Stewart 			 * this means HB code must use this to resent the
1127f8829a4aSRandall Stewart 			 * primary if it goes active AND if someone does a
1128f8829a4aSRandall Stewart 			 * change-primary then this flag must be cleared
1129f8829a4aSRandall Stewart 			 * from any net structures.
1130f8829a4aSRandall Stewart 			 */
1131f8829a4aSRandall Stewart 			if (sctp_set_primary_addr(stcb,
1132f8829a4aSRandall Stewart 			    (struct sockaddr *)NULL,
1133f8829a4aSRandall Stewart 			    alt) == 0) {
1134f8829a4aSRandall Stewart 				net->dest_state |= SCTP_ADDR_WAS_PRIMARY;
1135f8829a4aSRandall Stewart 			}
1136f8829a4aSRandall Stewart 		}
1137b3f1ea41SRandall Stewart 	} else if (SCTP_BASE_SYSCTL(sctp_cmt_on_off) && SCTP_BASE_SYSCTL(sctp_cmt_pf) && (net->dest_state & SCTP_ADDR_PF) == SCTP_ADDR_PF) {
1138b54d3a6cSRandall Stewart 		/*
1139b54d3a6cSRandall Stewart 		 * JRS 5/14/07 - If the destination hasn't failed completely
1140b54d3a6cSRandall Stewart 		 * but is in PF state, a PF-heartbeat needs to be sent
1141b54d3a6cSRandall Stewart 		 * manually.
1142b54d3a6cSRandall Stewart 		 */
1143b54d3a6cSRandall Stewart 		if (sctp_send_hb(stcb, 1, net) < 0)
1144b54d3a6cSRandall Stewart 			return 1;
1145f8829a4aSRandall Stewart 	}
1146f8829a4aSRandall Stewart 	/*
1147f8829a4aSRandall Stewart 	 * Special case for cookie-echo'ed case, we don't do output but must
1148f8829a4aSRandall Stewart 	 * await the COOKIE-ACK before retransmission
1149f8829a4aSRandall Stewart 	 */
1150f8829a4aSRandall Stewart 	if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_COOKIE_ECHOED) {
1151f8829a4aSRandall Stewart 		/*
1152f8829a4aSRandall Stewart 		 * Here we just reset the timer and start again since we
1153f8829a4aSRandall Stewart 		 * have not established the asoc
1154f8829a4aSRandall Stewart 		 */
1155f8829a4aSRandall Stewart 		sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net);
1156f8829a4aSRandall Stewart 		return (0);
1157f8829a4aSRandall Stewart 	}
1158f8829a4aSRandall Stewart 	if (stcb->asoc.peer_supports_prsctp) {
1159f8829a4aSRandall Stewart 		struct sctp_tmit_chunk *lchk;
1160f8829a4aSRandall Stewart 
1161f8829a4aSRandall Stewart 		lchk = sctp_try_advance_peer_ack_point(stcb, &stcb->asoc);
1162f8829a4aSRandall Stewart 		/* C3. See if we need to send a Fwd-TSN */
1163f8829a4aSRandall Stewart 		if (compare_with_wrap(stcb->asoc.advanced_peer_ack_point,
1164f8829a4aSRandall Stewart 		    stcb->asoc.last_acked_seq, MAX_TSN)) {
1165f8829a4aSRandall Stewart 			/*
1166f8829a4aSRandall Stewart 			 * ISSUE with ECN, see FWD-TSN processing for notes
1167f8829a4aSRandall Stewart 			 * on issues that will occur when the ECN NONCE
1168f8829a4aSRandall Stewart 			 * stuff is put into SCTP for cross checking.
1169f8829a4aSRandall Stewart 			 */
1170f8829a4aSRandall Stewart 			send_forward_tsn(stcb, &stcb->asoc);
1171f8829a4aSRandall Stewart 			if (lchk) {
1172f8829a4aSRandall Stewart 				/* Assure a timer is up */
1173f8829a4aSRandall Stewart 				sctp_timer_start(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep, stcb, lchk->whoTo);
1174f8829a4aSRandall Stewart 			}
1175f8829a4aSRandall Stewart 		}
1176f8829a4aSRandall Stewart 	}
1177b3f1ea41SRandall Stewart 	if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_MONITOR_ENABLE) {
1178f8829a4aSRandall Stewart 		sctp_log_cwnd(stcb, net, net->cwnd, SCTP_CWND_LOG_FROM_RTX);
117980fefe0aSRandall Stewart 	}
1180f8829a4aSRandall Stewart 	return (0);
1181f8829a4aSRandall Stewart }
1182f8829a4aSRandall Stewart 
1183f8829a4aSRandall Stewart int
1184f8829a4aSRandall Stewart sctp_t1init_timer(struct sctp_inpcb *inp,
1185f8829a4aSRandall Stewart     struct sctp_tcb *stcb,
1186f8829a4aSRandall Stewart     struct sctp_nets *net)
1187f8829a4aSRandall Stewart {
1188f8829a4aSRandall Stewart 	/* bump the thresholds */
1189f8829a4aSRandall Stewart 	if (stcb->asoc.delayed_connection) {
1190f8829a4aSRandall Stewart 		/*
1191f8829a4aSRandall Stewart 		 * special hook for delayed connection. The library did NOT
1192f8829a4aSRandall Stewart 		 * complete the rest of its sends.
1193f8829a4aSRandall Stewart 		 */
1194f8829a4aSRandall Stewart 		stcb->asoc.delayed_connection = 0;
1195ceaad40aSRandall Stewart 		sctp_send_initiate(inp, stcb, SCTP_SO_NOT_LOCKED);
1196f8829a4aSRandall Stewart 		return (0);
1197f8829a4aSRandall Stewart 	}
1198f8829a4aSRandall Stewart 	if (SCTP_GET_STATE((&stcb->asoc)) != SCTP_STATE_COOKIE_WAIT) {
1199f8829a4aSRandall Stewart 		return (0);
1200f8829a4aSRandall Stewart 	}
1201f8829a4aSRandall Stewart 	if (sctp_threshold_management(inp, stcb, net,
1202f8829a4aSRandall Stewart 	    stcb->asoc.max_init_times)) {
1203f8829a4aSRandall Stewart 		/* Association was destroyed */
1204f8829a4aSRandall Stewart 		return (1);
1205f8829a4aSRandall Stewart 	}
1206f8829a4aSRandall Stewart 	stcb->asoc.dropped_special_cnt = 0;
1207f8829a4aSRandall Stewart 	sctp_backoff_on_timeout(stcb, stcb->asoc.primary_destination, 1, 0);
1208f8829a4aSRandall Stewart 	if (stcb->asoc.initial_init_rto_max < net->RTO) {
1209f8829a4aSRandall Stewart 		net->RTO = stcb->asoc.initial_init_rto_max;
1210f8829a4aSRandall Stewart 	}
1211f8829a4aSRandall Stewart 	if (stcb->asoc.numnets > 1) {
1212f8829a4aSRandall Stewart 		/* If we have more than one addr use it */
1213f8829a4aSRandall Stewart 		struct sctp_nets *alt;
1214f8829a4aSRandall Stewart 
1215f8829a4aSRandall Stewart 		alt = sctp_find_alternate_net(stcb, stcb->asoc.primary_destination, 0);
1216f8829a4aSRandall Stewart 		if ((alt != NULL) && (alt != stcb->asoc.primary_destination)) {
1217f8829a4aSRandall Stewart 			sctp_move_all_chunks_to_alt(stcb, stcb->asoc.primary_destination, alt);
1218f8829a4aSRandall Stewart 			stcb->asoc.primary_destination = alt;
1219f8829a4aSRandall Stewart 		}
1220f8829a4aSRandall Stewart 	}
1221f8829a4aSRandall Stewart 	/* Send out a new init */
1222ceaad40aSRandall Stewart 	sctp_send_initiate(inp, stcb, SCTP_SO_NOT_LOCKED);
1223f8829a4aSRandall Stewart 	return (0);
1224f8829a4aSRandall Stewart }
1225f8829a4aSRandall Stewart 
1226f8829a4aSRandall Stewart /*
1227f8829a4aSRandall Stewart  * For cookie and asconf we actually need to find and mark for resend, then
1228f8829a4aSRandall Stewart  * increment the resend counter (after all the threshold management stuff of
1229f8829a4aSRandall Stewart  * course).
1230f8829a4aSRandall Stewart  */
1231f8829a4aSRandall Stewart int
1232f8829a4aSRandall Stewart sctp_cookie_timer(struct sctp_inpcb *inp,
1233f8829a4aSRandall Stewart     struct sctp_tcb *stcb,
1234f8829a4aSRandall Stewart     struct sctp_nets *net)
1235f8829a4aSRandall Stewart {
1236f8829a4aSRandall Stewart 	struct sctp_nets *alt;
1237f8829a4aSRandall Stewart 	struct sctp_tmit_chunk *cookie;
1238f8829a4aSRandall Stewart 
1239f8829a4aSRandall Stewart 	/* first before all else we must find the cookie */
1240f8829a4aSRandall Stewart 	TAILQ_FOREACH(cookie, &stcb->asoc.control_send_queue, sctp_next) {
1241f8829a4aSRandall Stewart 		if (cookie->rec.chunk_id.id == SCTP_COOKIE_ECHO) {
1242f8829a4aSRandall Stewart 			break;
1243f8829a4aSRandall Stewart 		}
1244f8829a4aSRandall Stewart 	}
1245f8829a4aSRandall Stewart 	if (cookie == NULL) {
1246f8829a4aSRandall Stewart 		if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_COOKIE_ECHOED) {
1247f8829a4aSRandall Stewart 			/* FOOBAR! */
1248f8829a4aSRandall Stewart 			struct mbuf *oper;
1249f8829a4aSRandall Stewart 
1250f8829a4aSRandall Stewart 			oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + sizeof(uint32_t)),
1251f8829a4aSRandall Stewart 			    0, M_DONTWAIT, 1, MT_DATA);
1252f8829a4aSRandall Stewart 			if (oper) {
1253f8829a4aSRandall Stewart 				struct sctp_paramhdr *ph;
1254f8829a4aSRandall Stewart 				uint32_t *ippp;
1255f8829a4aSRandall Stewart 
1256139bc87fSRandall Stewart 				SCTP_BUF_LEN(oper) = sizeof(struct sctp_paramhdr) +
1257f8829a4aSRandall Stewart 				    sizeof(uint32_t);
1258f8829a4aSRandall Stewart 				ph = mtod(oper, struct sctp_paramhdr *);
1259f8829a4aSRandall Stewart 				ph->param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION);
1260139bc87fSRandall Stewart 				ph->param_length = htons(SCTP_BUF_LEN(oper));
1261f8829a4aSRandall Stewart 				ippp = (uint32_t *) (ph + 1);
1262b54d3a6cSRandall Stewart 				*ippp = htonl(SCTP_FROM_SCTP_TIMER + SCTP_LOC_3);
1263f8829a4aSRandall Stewart 			}
1264b54d3a6cSRandall Stewart 			inp->last_abort_code = SCTP_FROM_SCTP_TIMER + SCTP_LOC_4;
1265f8829a4aSRandall Stewart 			sctp_abort_an_association(inp, stcb, SCTP_INTERNAL_ERROR,
1266ceaad40aSRandall Stewart 			    oper, SCTP_SO_NOT_LOCKED);
1267f8829a4aSRandall Stewart 		} else {
1268a5d547adSRandall Stewart #ifdef INVARIANTS
1269f8829a4aSRandall Stewart 			panic("Cookie timer expires in wrong state?");
1270f8829a4aSRandall Stewart #else
1271ad81507eSRandall Stewart 			SCTP_PRINTF("Strange in state %d not cookie-echoed yet c-e timer expires?\n", SCTP_GET_STATE(&stcb->asoc));
1272f8829a4aSRandall Stewart 			return (0);
1273f8829a4aSRandall Stewart #endif
1274f8829a4aSRandall Stewart 		}
1275f8829a4aSRandall Stewart 		return (0);
1276f8829a4aSRandall Stewart 	}
1277f8829a4aSRandall Stewart 	/* Ok we found the cookie, threshold management next */
1278f8829a4aSRandall Stewart 	if (sctp_threshold_management(inp, stcb, cookie->whoTo,
1279f8829a4aSRandall Stewart 	    stcb->asoc.max_init_times)) {
1280f8829a4aSRandall Stewart 		/* Assoc is over */
1281f8829a4aSRandall Stewart 		return (1);
1282f8829a4aSRandall Stewart 	}
1283f8829a4aSRandall Stewart 	/*
1284f8829a4aSRandall Stewart 	 * cleared theshold management now lets backoff the address & select
1285f8829a4aSRandall Stewart 	 * an alternate
1286f8829a4aSRandall Stewart 	 */
1287f8829a4aSRandall Stewart 	stcb->asoc.dropped_special_cnt = 0;
1288f8829a4aSRandall Stewart 	sctp_backoff_on_timeout(stcb, cookie->whoTo, 1, 0);
1289f8829a4aSRandall Stewart 	alt = sctp_find_alternate_net(stcb, cookie->whoTo, 0);
1290f8829a4aSRandall Stewart 	if (alt != cookie->whoTo) {
1291f8829a4aSRandall Stewart 		sctp_free_remote_addr(cookie->whoTo);
1292f8829a4aSRandall Stewart 		cookie->whoTo = alt;
1293f8829a4aSRandall Stewart 		atomic_add_int(&alt->ref_count, 1);
1294f8829a4aSRandall Stewart 	}
1295f8829a4aSRandall Stewart 	/* Now mark the retran info */
1296f8829a4aSRandall Stewart 	if (cookie->sent != SCTP_DATAGRAM_RESEND) {
1297f8829a4aSRandall Stewart 		sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt);
1298f8829a4aSRandall Stewart 	}
1299f8829a4aSRandall Stewart 	cookie->sent = SCTP_DATAGRAM_RESEND;
1300f8829a4aSRandall Stewart 	/*
1301f8829a4aSRandall Stewart 	 * Now call the output routine to kick out the cookie again, Note we
1302f8829a4aSRandall Stewart 	 * don't mark any chunks for retran so that FR will need to kick in
1303f8829a4aSRandall Stewart 	 * to move these (or a send timer).
1304f8829a4aSRandall Stewart 	 */
1305f8829a4aSRandall Stewart 	return (0);
1306f8829a4aSRandall Stewart }
1307f8829a4aSRandall Stewart 
1308f8829a4aSRandall Stewart int
1309f8829a4aSRandall Stewart sctp_strreset_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
1310f8829a4aSRandall Stewart     struct sctp_nets *net)
1311f8829a4aSRandall Stewart {
1312f8829a4aSRandall Stewart 	struct sctp_nets *alt;
1313f8829a4aSRandall Stewart 	struct sctp_tmit_chunk *strrst = NULL, *chk = NULL;
1314f8829a4aSRandall Stewart 
1315f8829a4aSRandall Stewart 	if (stcb->asoc.stream_reset_outstanding == 0) {
1316f8829a4aSRandall Stewart 		return (0);
1317f8829a4aSRandall Stewart 	}
1318f8829a4aSRandall Stewart 	/* find the existing STRRESET, we use the seq number we sent out on */
1319ad81507eSRandall Stewart 	(void)sctp_find_stream_reset(stcb, stcb->asoc.str_reset_seq_out, &strrst);
1320f8829a4aSRandall Stewart 	if (strrst == NULL) {
1321f8829a4aSRandall Stewart 		return (0);
1322f8829a4aSRandall Stewart 	}
1323f8829a4aSRandall Stewart 	/* do threshold management */
1324f8829a4aSRandall Stewart 	if (sctp_threshold_management(inp, stcb, strrst->whoTo,
1325f8829a4aSRandall Stewart 	    stcb->asoc.max_send_times)) {
1326f8829a4aSRandall Stewart 		/* Assoc is over */
1327f8829a4aSRandall Stewart 		return (1);
1328f8829a4aSRandall Stewart 	}
1329f8829a4aSRandall Stewart 	/*
1330f8829a4aSRandall Stewart 	 * cleared theshold management now lets backoff the address & select
1331f8829a4aSRandall Stewart 	 * an alternate
1332f8829a4aSRandall Stewart 	 */
1333f8829a4aSRandall Stewart 	sctp_backoff_on_timeout(stcb, strrst->whoTo, 1, 0);
1334f8829a4aSRandall Stewart 	alt = sctp_find_alternate_net(stcb, strrst->whoTo, 0);
1335f8829a4aSRandall Stewart 	sctp_free_remote_addr(strrst->whoTo);
1336f8829a4aSRandall Stewart 	strrst->whoTo = alt;
1337f8829a4aSRandall Stewart 	atomic_add_int(&alt->ref_count, 1);
1338f8829a4aSRandall Stewart 
1339f8829a4aSRandall Stewart 	/* See if a ECN Echo is also stranded */
1340f8829a4aSRandall Stewart 	TAILQ_FOREACH(chk, &stcb->asoc.control_send_queue, sctp_next) {
1341f8829a4aSRandall Stewart 		if ((chk->whoTo == net) &&
1342f8829a4aSRandall Stewart 		    (chk->rec.chunk_id.id == SCTP_ECN_ECHO)) {
1343f8829a4aSRandall Stewart 			sctp_free_remote_addr(chk->whoTo);
1344f8829a4aSRandall Stewart 			if (chk->sent != SCTP_DATAGRAM_RESEND) {
1345f8829a4aSRandall Stewart 				chk->sent = SCTP_DATAGRAM_RESEND;
1346f8829a4aSRandall Stewart 				sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt);
1347f8829a4aSRandall Stewart 			}
1348f8829a4aSRandall Stewart 			chk->whoTo = alt;
1349f8829a4aSRandall Stewart 			atomic_add_int(&alt->ref_count, 1);
1350f8829a4aSRandall Stewart 		}
1351f8829a4aSRandall Stewart 	}
1352f8829a4aSRandall Stewart 	if (net->dest_state & SCTP_ADDR_NOT_REACHABLE) {
1353f8829a4aSRandall Stewart 		/*
1354f8829a4aSRandall Stewart 		 * If the address went un-reachable, we need to move to
1355f8829a4aSRandall Stewart 		 * alternates for ALL chk's in queue
1356f8829a4aSRandall Stewart 		 */
1357f8829a4aSRandall Stewart 		sctp_move_all_chunks_to_alt(stcb, net, alt);
1358f8829a4aSRandall Stewart 	}
1359f8829a4aSRandall Stewart 	/* mark the retran info */
1360f8829a4aSRandall Stewart 	if (strrst->sent != SCTP_DATAGRAM_RESEND)
1361f8829a4aSRandall Stewart 		sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt);
1362f8829a4aSRandall Stewart 	strrst->sent = SCTP_DATAGRAM_RESEND;
1363f8829a4aSRandall Stewart 
1364f8829a4aSRandall Stewart 	/* restart the timer */
1365f8829a4aSRandall Stewart 	sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, inp, stcb, strrst->whoTo);
1366f8829a4aSRandall Stewart 	return (0);
1367f8829a4aSRandall Stewart }
1368f8829a4aSRandall Stewart 
1369f8829a4aSRandall Stewart int
1370f8829a4aSRandall Stewart sctp_asconf_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
1371f8829a4aSRandall Stewart     struct sctp_nets *net)
1372f8829a4aSRandall Stewart {
1373f8829a4aSRandall Stewart 	struct sctp_nets *alt;
1374c54a18d2SRandall Stewart 	struct sctp_tmit_chunk *asconf, *chk, *nchk;
1375f8829a4aSRandall Stewart 
13761b649582SRandall Stewart 	/* is this a first send, or a retransmission? */
1377c54a18d2SRandall Stewart 	if (TAILQ_EMPTY(&stcb->asoc.asconf_send_queue)) {
1378f8829a4aSRandall Stewart 		/* compose a new ASCONF chunk and send it */
13793232788eSRandall Stewart 		sctp_send_asconf(stcb, net, SCTP_ADDR_NOT_LOCKED);
1380f8829a4aSRandall Stewart 	} else {
13811b649582SRandall Stewart 		/*
13821b649582SRandall Stewart 		 * Retransmission of the existing ASCONF is needed
13831b649582SRandall Stewart 		 */
1384f8829a4aSRandall Stewart 
1385f8829a4aSRandall Stewart 		/* find the existing ASCONF */
1386c54a18d2SRandall Stewart 		asconf = TAILQ_FIRST(&stcb->asoc.asconf_send_queue);
1387f8829a4aSRandall Stewart 		if (asconf == NULL) {
1388f8829a4aSRandall Stewart 			return (0);
1389f8829a4aSRandall Stewart 		}
1390f8829a4aSRandall Stewart 		/* do threshold management */
1391f8829a4aSRandall Stewart 		if (sctp_threshold_management(inp, stcb, asconf->whoTo,
1392f8829a4aSRandall Stewart 		    stcb->asoc.max_send_times)) {
1393f8829a4aSRandall Stewart 			/* Assoc is over */
1394f8829a4aSRandall Stewart 			return (1);
1395f8829a4aSRandall Stewart 		}
1396f8829a4aSRandall Stewart 		if (asconf->snd_count > stcb->asoc.max_send_times) {
1397f8829a4aSRandall Stewart 			/*
13981b649582SRandall Stewart 			 * Something is rotten: our peer is not responding
13991b649582SRandall Stewart 			 * to ASCONFs but apparently is to other chunks.
14001b649582SRandall Stewart 			 * i.e. it is not properly handling the chunk type
14011b649582SRandall Stewart 			 * upper bits. Mark this peer as ASCONF incapable
14021b649582SRandall Stewart 			 * and cleanup.
1403f8829a4aSRandall Stewart 			 */
1404ad81507eSRandall Stewart 			SCTPDBG(SCTP_DEBUG_TIMER1, "asconf_timer: Peer has not responded to our repeated ASCONFs\n");
1405f8829a4aSRandall Stewart 			sctp_asconf_cleanup(stcb, net);
1406f8829a4aSRandall Stewart 			return (0);
1407f8829a4aSRandall Stewart 		}
1408f8829a4aSRandall Stewart 		/*
14091b649582SRandall Stewart 		 * cleared threshold management, so now backoff the net and
14101b649582SRandall Stewart 		 * select an alternate
1411f8829a4aSRandall Stewart 		 */
1412f8829a4aSRandall Stewart 		sctp_backoff_on_timeout(stcb, asconf->whoTo, 1, 0);
1413f8829a4aSRandall Stewart 		alt = sctp_find_alternate_net(stcb, asconf->whoTo, 0);
1414c54a18d2SRandall Stewart 		if (asconf->whoTo != alt) {
1415f8829a4aSRandall Stewart 			sctp_free_remote_addr(asconf->whoTo);
1416f8829a4aSRandall Stewart 			asconf->whoTo = alt;
1417f8829a4aSRandall Stewart 			atomic_add_int(&alt->ref_count, 1);
1418c54a18d2SRandall Stewart 		}
14191b649582SRandall Stewart 		/* See if an ECN Echo is also stranded */
1420f8829a4aSRandall Stewart 		TAILQ_FOREACH(chk, &stcb->asoc.control_send_queue, sctp_next) {
1421f8829a4aSRandall Stewart 			if ((chk->whoTo == net) &&
1422f8829a4aSRandall Stewart 			    (chk->rec.chunk_id.id == SCTP_ECN_ECHO)) {
1423f8829a4aSRandall Stewart 				sctp_free_remote_addr(chk->whoTo);
1424f8829a4aSRandall Stewart 				chk->whoTo = alt;
1425f8829a4aSRandall Stewart 				if (chk->sent != SCTP_DATAGRAM_RESEND) {
1426f8829a4aSRandall Stewart 					chk->sent = SCTP_DATAGRAM_RESEND;
1427f8829a4aSRandall Stewart 					sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt);
1428f8829a4aSRandall Stewart 				}
1429f8829a4aSRandall Stewart 				atomic_add_int(&alt->ref_count, 1);
1430f8829a4aSRandall Stewart 			}
1431f8829a4aSRandall Stewart 		}
1432c54a18d2SRandall Stewart 		for (chk = asconf; chk; chk = nchk) {
1433c54a18d2SRandall Stewart 			nchk = TAILQ_NEXT(chk, sctp_next);
1434c54a18d2SRandall Stewart 			if (chk->whoTo != alt) {
1435c54a18d2SRandall Stewart 				sctp_free_remote_addr(chk->whoTo);
1436c54a18d2SRandall Stewart 				chk->whoTo = alt;
1437c54a18d2SRandall Stewart 				atomic_add_int(&alt->ref_count, 1);
1438c54a18d2SRandall Stewart 			}
1439c54a18d2SRandall Stewart 			if (asconf->sent != SCTP_DATAGRAM_RESEND && chk->sent != SCTP_DATAGRAM_UNSENT)
1440c54a18d2SRandall Stewart 				sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt);
1441c54a18d2SRandall Stewart 			chk->sent = SCTP_DATAGRAM_RESEND;
1442c54a18d2SRandall Stewart 		}
1443f8829a4aSRandall Stewart 		if (net->dest_state & SCTP_ADDR_NOT_REACHABLE) {
1444f8829a4aSRandall Stewart 			/*
1445f8829a4aSRandall Stewart 			 * If the address went un-reachable, we need to move
14461b649582SRandall Stewart 			 * to the alternate for ALL chunks in queue
1447f8829a4aSRandall Stewart 			 */
1448f8829a4aSRandall Stewart 			sctp_move_all_chunks_to_alt(stcb, net, alt);
1449c54a18d2SRandall Stewart 			net = alt;
1450f8829a4aSRandall Stewart 		}
1451f8829a4aSRandall Stewart 		/* mark the retran info */
1452f8829a4aSRandall Stewart 		if (asconf->sent != SCTP_DATAGRAM_RESEND)
1453f8829a4aSRandall Stewart 			sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt);
1454f8829a4aSRandall Stewart 		asconf->sent = SCTP_DATAGRAM_RESEND;
1455c54a18d2SRandall Stewart 
1456c54a18d2SRandall Stewart 		/* send another ASCONF if any and we can do */
1457c54a18d2SRandall Stewart 		sctp_send_asconf(stcb, alt, SCTP_ADDR_NOT_LOCKED);
1458f8829a4aSRandall Stewart 	}
1459f8829a4aSRandall Stewart 	return (0);
1460f8829a4aSRandall Stewart }
1461f8829a4aSRandall Stewart 
1462851b7298SRandall Stewart /* Mobility adaptation */
146304ee05e8SRandall Stewart void
1464851b7298SRandall Stewart sctp_delete_prim_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
1465851b7298SRandall Stewart     struct sctp_nets *net)
1466851b7298SRandall Stewart {
1467851b7298SRandall Stewart 	if (stcb->asoc.deleted_primary == NULL) {
1468851b7298SRandall Stewart 		SCTPDBG(SCTP_DEBUG_ASCONF1, "delete_prim_timer: deleted_primary is not stored...\n");
1469851b7298SRandall Stewart 		sctp_mobility_feature_off(inp, SCTP_MOBILITY_PRIM_DELETED);
147004ee05e8SRandall Stewart 		return;
1471851b7298SRandall Stewart 	}
1472851b7298SRandall Stewart 	SCTPDBG(SCTP_DEBUG_ASCONF1, "delete_prim_timer: finished to keep deleted primary ");
1473851b7298SRandall Stewart 	SCTPDBG_ADDR(SCTP_DEBUG_ASCONF1, &stcb->asoc.deleted_primary->ro._l_addr.sa);
1474851b7298SRandall Stewart 	sctp_free_remote_addr(stcb->asoc.deleted_primary);
1475851b7298SRandall Stewart 	stcb->asoc.deleted_primary = NULL;
1476851b7298SRandall Stewart 	sctp_mobility_feature_off(inp, SCTP_MOBILITY_PRIM_DELETED);
147704ee05e8SRandall Stewart 	return;
1478851b7298SRandall Stewart }
1479851b7298SRandall Stewart 
1480f8829a4aSRandall Stewart /*
1481f8829a4aSRandall Stewart  * For the shutdown and shutdown-ack, we do not keep one around on the
1482f8829a4aSRandall Stewart  * control queue. This means we must generate a new one and call the general
1483f8829a4aSRandall Stewart  * chunk output routine, AFTER having done threshold management.
1484f8829a4aSRandall Stewart  */
1485f8829a4aSRandall Stewart int
1486f8829a4aSRandall Stewart sctp_shutdown_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
1487f8829a4aSRandall Stewart     struct sctp_nets *net)
1488f8829a4aSRandall Stewart {
1489f8829a4aSRandall Stewart 	struct sctp_nets *alt;
1490f8829a4aSRandall Stewart 
1491f8829a4aSRandall Stewart 	/* first threshold managment */
1492f8829a4aSRandall Stewart 	if (sctp_threshold_management(inp, stcb, net, stcb->asoc.max_send_times)) {
1493f8829a4aSRandall Stewart 		/* Assoc is over */
1494f8829a4aSRandall Stewart 		return (1);
1495f8829a4aSRandall Stewart 	}
1496f8829a4aSRandall Stewart 	/* second select an alternative */
1497f8829a4aSRandall Stewart 	alt = sctp_find_alternate_net(stcb, net, 0);
1498f8829a4aSRandall Stewart 
1499f8829a4aSRandall Stewart 	/* third generate a shutdown into the queue for out net */
1500f8829a4aSRandall Stewart 	if (alt) {
1501f8829a4aSRandall Stewart 		sctp_send_shutdown(stcb, alt);
1502f8829a4aSRandall Stewart 	} else {
1503f8829a4aSRandall Stewart 		/*
1504f8829a4aSRandall Stewart 		 * if alt is NULL, there is no dest to send to??
1505f8829a4aSRandall Stewart 		 */
1506f8829a4aSRandall Stewart 		return (0);
1507f8829a4aSRandall Stewart 	}
1508f8829a4aSRandall Stewart 	/* fourth restart timer */
1509f8829a4aSRandall Stewart 	sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, inp, stcb, alt);
1510f8829a4aSRandall Stewart 	return (0);
1511f8829a4aSRandall Stewart }
1512f8829a4aSRandall Stewart 
1513f8829a4aSRandall Stewart int
1514f8829a4aSRandall Stewart sctp_shutdownack_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
1515f8829a4aSRandall Stewart     struct sctp_nets *net)
1516f8829a4aSRandall Stewart {
1517f8829a4aSRandall Stewart 	struct sctp_nets *alt;
1518f8829a4aSRandall Stewart 
1519f8829a4aSRandall Stewart 	/* first threshold managment */
1520f8829a4aSRandall Stewart 	if (sctp_threshold_management(inp, stcb, net, stcb->asoc.max_send_times)) {
1521f8829a4aSRandall Stewart 		/* Assoc is over */
1522f8829a4aSRandall Stewart 		return (1);
1523f8829a4aSRandall Stewart 	}
1524f8829a4aSRandall Stewart 	/* second select an alternative */
1525f8829a4aSRandall Stewart 	alt = sctp_find_alternate_net(stcb, net, 0);
1526f8829a4aSRandall Stewart 
1527f8829a4aSRandall Stewart 	/* third generate a shutdown into the queue for out net */
1528f8829a4aSRandall Stewart 	sctp_send_shutdown_ack(stcb, alt);
1529f8829a4aSRandall Stewart 
1530f8829a4aSRandall Stewart 	/* fourth restart timer */
1531f8829a4aSRandall Stewart 	sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNACK, inp, stcb, alt);
1532f8829a4aSRandall Stewart 	return (0);
1533f8829a4aSRandall Stewart }
1534f8829a4aSRandall Stewart 
1535f8829a4aSRandall Stewart static void
1536f8829a4aSRandall Stewart sctp_audit_stream_queues_for_size(struct sctp_inpcb *inp,
1537f8829a4aSRandall Stewart     struct sctp_tcb *stcb)
1538f8829a4aSRandall Stewart {
1539f8829a4aSRandall Stewart 	struct sctp_stream_out *outs;
1540f8829a4aSRandall Stewart 	struct sctp_stream_queue_pending *sp;
1541f8829a4aSRandall Stewart 	unsigned int chks_in_queue = 0;
1542f8829a4aSRandall Stewart 	int being_filled = 0;
1543f8829a4aSRandall Stewart 
1544f8829a4aSRandall Stewart 	/*
1545f8829a4aSRandall Stewart 	 * This function is ONLY called when the send/sent queues are empty.
1546f8829a4aSRandall Stewart 	 */
1547f8829a4aSRandall Stewart 	if ((stcb == NULL) || (inp == NULL))
1548f8829a4aSRandall Stewart 		return;
1549f8829a4aSRandall Stewart 
1550f8829a4aSRandall Stewart 	if (stcb->asoc.sent_queue_retran_cnt) {
1551ad81507eSRandall Stewart 		SCTP_PRINTF("Hmm, sent_queue_retran_cnt is non-zero %d\n",
1552f8829a4aSRandall Stewart 		    stcb->asoc.sent_queue_retran_cnt);
1553f8829a4aSRandall Stewart 		stcb->asoc.sent_queue_retran_cnt = 0;
1554f8829a4aSRandall Stewart 	}
1555f8829a4aSRandall Stewart 	SCTP_TCB_SEND_LOCK(stcb);
1556f8829a4aSRandall Stewart 	if (TAILQ_EMPTY(&stcb->asoc.out_wheel)) {
1557f8829a4aSRandall Stewart 		int i, cnt = 0;
1558f8829a4aSRandall Stewart 
1559f8829a4aSRandall Stewart 		/* Check to see if a spoke fell off the wheel */
1560f8829a4aSRandall Stewart 		for (i = 0; i < stcb->asoc.streamoutcnt; i++) {
1561f8829a4aSRandall Stewart 			if (!TAILQ_EMPTY(&stcb->asoc.strmout[i].outqueue)) {
1562f8829a4aSRandall Stewart 				sctp_insert_on_wheel(stcb, &stcb->asoc, &stcb->asoc.strmout[i], 1);
1563f8829a4aSRandall Stewart 				cnt++;
1564f8829a4aSRandall Stewart 			}
1565f8829a4aSRandall Stewart 		}
1566f8829a4aSRandall Stewart 		if (cnt) {
1567f8829a4aSRandall Stewart 			/* yep, we lost a spoke or two */
1568ad81507eSRandall Stewart 			SCTP_PRINTF("Found an additional %d streams NOT on outwheel, corrected\n", cnt);
1569f8829a4aSRandall Stewart 		} else {
1570f8829a4aSRandall Stewart 			/* no spokes lost, */
1571f8829a4aSRandall Stewart 			stcb->asoc.total_output_queue_size = 0;
1572f8829a4aSRandall Stewart 		}
1573f8829a4aSRandall Stewart 		SCTP_TCB_SEND_UNLOCK(stcb);
1574f8829a4aSRandall Stewart 		return;
1575f8829a4aSRandall Stewart 	}
1576f8829a4aSRandall Stewart 	SCTP_TCB_SEND_UNLOCK(stcb);
1577f8829a4aSRandall Stewart 	/* Check to see if some data queued, if so report it */
1578f8829a4aSRandall Stewart 	TAILQ_FOREACH(outs, &stcb->asoc.out_wheel, next_spoke) {
1579f8829a4aSRandall Stewart 		if (!TAILQ_EMPTY(&outs->outqueue)) {
1580f8829a4aSRandall Stewart 			TAILQ_FOREACH(sp, &outs->outqueue, next) {
1581f8829a4aSRandall Stewart 				if (sp->msg_is_complete)
1582f8829a4aSRandall Stewart 					being_filled++;
1583f8829a4aSRandall Stewart 				chks_in_queue++;
1584f8829a4aSRandall Stewart 			}
1585f8829a4aSRandall Stewart 		}
1586f8829a4aSRandall Stewart 	}
1587f8829a4aSRandall Stewart 	if (chks_in_queue != stcb->asoc.stream_queue_cnt) {
1588ad81507eSRandall Stewart 		SCTP_PRINTF("Hmm, stream queue cnt at %d I counted %d in stream out wheel\n",
1589f8829a4aSRandall Stewart 		    stcb->asoc.stream_queue_cnt, chks_in_queue);
1590f8829a4aSRandall Stewart 	}
1591f8829a4aSRandall Stewart 	if (chks_in_queue) {
1592f8829a4aSRandall Stewart 		/* call the output queue function */
1593ceaad40aSRandall Stewart 		sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_T3, SCTP_SO_NOT_LOCKED);
1594f8829a4aSRandall Stewart 		if ((TAILQ_EMPTY(&stcb->asoc.send_queue)) &&
1595f8829a4aSRandall Stewart 		    (TAILQ_EMPTY(&stcb->asoc.sent_queue))) {
1596f8829a4aSRandall Stewart 			/*
1597f8829a4aSRandall Stewart 			 * Probably should go in and make it go back through
1598f8829a4aSRandall Stewart 			 * and add fragments allowed
1599f8829a4aSRandall Stewart 			 */
1600f8829a4aSRandall Stewart 			if (being_filled == 0) {
1601ad81507eSRandall Stewart 				SCTP_PRINTF("Still nothing moved %d chunks are stuck\n",
1602f8829a4aSRandall Stewart 				    chks_in_queue);
1603f8829a4aSRandall Stewart 			}
1604f8829a4aSRandall Stewart 		}
1605f8829a4aSRandall Stewart 	} else {
1606ad81507eSRandall Stewart 		SCTP_PRINTF("Found no chunks on any queue tot:%lu\n",
1607f8829a4aSRandall Stewart 		    (u_long)stcb->asoc.total_output_queue_size);
1608f8829a4aSRandall Stewart 		stcb->asoc.total_output_queue_size = 0;
1609f8829a4aSRandall Stewart 	}
1610f8829a4aSRandall Stewart }
1611f8829a4aSRandall Stewart 
1612f8829a4aSRandall Stewart int
1613f8829a4aSRandall Stewart sctp_heartbeat_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb,
1614f8829a4aSRandall Stewart     struct sctp_nets *net, int cnt_of_unconf)
1615f8829a4aSRandall Stewart {
1616b54d3a6cSRandall Stewart 	int ret;
1617b54d3a6cSRandall Stewart 
1618f8829a4aSRandall Stewart 	if (net) {
1619f8829a4aSRandall Stewart 		if (net->hb_responded == 0) {
162042551e99SRandall Stewart 			if (net->ro._s_addr) {
162142551e99SRandall Stewart 				/*
162242551e99SRandall Stewart 				 * Invalidate the src address if we did not
162342551e99SRandall Stewart 				 * get a response last time.
162442551e99SRandall Stewart 				 */
162542551e99SRandall Stewart 				sctp_free_ifa(net->ro._s_addr);
162642551e99SRandall Stewart 				net->ro._s_addr = NULL;
162742551e99SRandall Stewart 				net->src_addr_selected = 0;
162842551e99SRandall Stewart 			}
1629f8829a4aSRandall Stewart 			sctp_backoff_on_timeout(stcb, net, 1, 0);
1630f8829a4aSRandall Stewart 		}
1631f8829a4aSRandall Stewart 		/* Zero PBA, if it needs it */
1632f8829a4aSRandall Stewart 		if (net->partial_bytes_acked) {
1633f8829a4aSRandall Stewart 			net->partial_bytes_acked = 0;
1634f8829a4aSRandall Stewart 		}
1635f8829a4aSRandall Stewart 	}
1636f8829a4aSRandall Stewart 	if ((stcb->asoc.total_output_queue_size > 0) &&
1637f8829a4aSRandall Stewart 	    (TAILQ_EMPTY(&stcb->asoc.send_queue)) &&
1638f8829a4aSRandall Stewart 	    (TAILQ_EMPTY(&stcb->asoc.sent_queue))) {
1639f8829a4aSRandall Stewart 		sctp_audit_stream_queues_for_size(inp, stcb);
1640f8829a4aSRandall Stewart 	}
1641f8829a4aSRandall Stewart 	/* Send a new HB, this will do threshold managment, pick a new dest */
1642f8829a4aSRandall Stewart 	if (cnt_of_unconf == 0) {
1643f8829a4aSRandall Stewart 		if (sctp_send_hb(stcb, 0, NULL) < 0) {
1644f8829a4aSRandall Stewart 			return (1);
1645f8829a4aSRandall Stewart 		}
1646f8829a4aSRandall Stewart 	} else {
1647f8829a4aSRandall Stewart 		/*
1648f8829a4aSRandall Stewart 		 * this will send out extra hb's up to maxburst if there are
1649f8829a4aSRandall Stewart 		 * any unconfirmed addresses.
1650f8829a4aSRandall Stewart 		 */
1651d61a0ae0SRandall Stewart 		uint32_t cnt_sent = 0;
1652f8829a4aSRandall Stewart 
1653f8829a4aSRandall Stewart 		TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) {
1654f8829a4aSRandall Stewart 			if ((net->dest_state & SCTP_ADDR_UNCONFIRMED) &&
1655f8829a4aSRandall Stewart 			    (net->dest_state & SCTP_ADDR_REACHABLE)) {
1656f8829a4aSRandall Stewart 				cnt_sent++;
165742551e99SRandall Stewart 				if (net->hb_responded == 0) {
165842551e99SRandall Stewart 					/* Did we respond last time? */
165942551e99SRandall Stewart 					if (net->ro._s_addr) {
166042551e99SRandall Stewart 						sctp_free_ifa(net->ro._s_addr);
166142551e99SRandall Stewart 						net->ro._s_addr = NULL;
166242551e99SRandall Stewart 						net->src_addr_selected = 0;
166342551e99SRandall Stewart 					}
166442551e99SRandall Stewart 				}
1665b54d3a6cSRandall Stewart 				ret = sctp_send_hb(stcb, 1, net);
1666b54d3a6cSRandall Stewart 				if (ret < 0)
1667b54d3a6cSRandall Stewart 					return 1;
1668b54d3a6cSRandall Stewart 				else if (ret == 0) {
1669f8829a4aSRandall Stewart 					break;
1670f8829a4aSRandall Stewart 				}
1671b3f1ea41SRandall Stewart 				if (cnt_sent >= SCTP_BASE_SYSCTL(sctp_hb_maxburst))
1672f8829a4aSRandall Stewart 					break;
1673f8829a4aSRandall Stewart 			}
1674f8829a4aSRandall Stewart 		}
1675f8829a4aSRandall Stewart 	}
1676f8829a4aSRandall Stewart 	return (0);
1677f8829a4aSRandall Stewart }
1678f8829a4aSRandall Stewart 
1679f8829a4aSRandall Stewart int
1680f8829a4aSRandall Stewart sctp_is_hb_timer_running(struct sctp_tcb *stcb)
1681f8829a4aSRandall Stewart {
1682139bc87fSRandall Stewart 	if (SCTP_OS_TIMER_PENDING(&stcb->asoc.hb_timer.timer)) {
1683f8829a4aSRandall Stewart 		/* its running */
1684f8829a4aSRandall Stewart 		return (1);
1685f8829a4aSRandall Stewart 	} else {
1686f8829a4aSRandall Stewart 		/* nope */
1687f8829a4aSRandall Stewart 		return (0);
1688f8829a4aSRandall Stewart 	}
1689f8829a4aSRandall Stewart }
1690f8829a4aSRandall Stewart 
1691f8829a4aSRandall Stewart int
1692f8829a4aSRandall Stewart sctp_is_sack_timer_running(struct sctp_tcb *stcb)
1693f8829a4aSRandall Stewart {
1694139bc87fSRandall Stewart 	if (SCTP_OS_TIMER_PENDING(&stcb->asoc.dack_timer.timer)) {
1695f8829a4aSRandall Stewart 		/* its running */
1696f8829a4aSRandall Stewart 		return (1);
1697f8829a4aSRandall Stewart 	} else {
1698f8829a4aSRandall Stewart 		/* nope */
1699f8829a4aSRandall Stewart 		return (0);
1700f8829a4aSRandall Stewart 	}
1701f8829a4aSRandall Stewart }
1702f8829a4aSRandall Stewart 
1703f8829a4aSRandall Stewart #define SCTP_NUMBER_OF_MTU_SIZES 18
1704f8829a4aSRandall Stewart static uint32_t mtu_sizes[] = {
1705f8829a4aSRandall Stewart 	68,
1706f8829a4aSRandall Stewart 	296,
1707f8829a4aSRandall Stewart 	508,
1708f8829a4aSRandall Stewart 	512,
1709f8829a4aSRandall Stewart 	544,
1710f8829a4aSRandall Stewart 	576,
1711f8829a4aSRandall Stewart 	1006,
1712f8829a4aSRandall Stewart 	1492,
1713f8829a4aSRandall Stewart 	1500,
1714f8829a4aSRandall Stewart 	1536,
1715f8829a4aSRandall Stewart 	2002,
1716f8829a4aSRandall Stewart 	2048,
1717f8829a4aSRandall Stewart 	4352,
1718f8829a4aSRandall Stewart 	4464,
1719f8829a4aSRandall Stewart 	8166,
1720f8829a4aSRandall Stewart 	17914,
1721f8829a4aSRandall Stewart 	32000,
1722f8829a4aSRandall Stewart 	65535
1723f8829a4aSRandall Stewart };
1724f8829a4aSRandall Stewart 
1725f8829a4aSRandall Stewart 
1726f8829a4aSRandall Stewart static uint32_t
1727f8829a4aSRandall Stewart sctp_getnext_mtu(struct sctp_inpcb *inp, uint32_t cur_mtu)
1728f8829a4aSRandall Stewart {
1729f8829a4aSRandall Stewart 	/* select another MTU that is just bigger than this one */
1730f8829a4aSRandall Stewart 	int i;
1731f8829a4aSRandall Stewart 
1732f8829a4aSRandall Stewart 	for (i = 0; i < SCTP_NUMBER_OF_MTU_SIZES; i++) {
1733f8829a4aSRandall Stewart 		if (cur_mtu < mtu_sizes[i]) {
1734f8829a4aSRandall Stewart 			/* no max_mtu is bigger than this one */
1735f8829a4aSRandall Stewart 			return (mtu_sizes[i]);
1736f8829a4aSRandall Stewart 		}
1737f8829a4aSRandall Stewart 	}
1738f8829a4aSRandall Stewart 	/* here return the highest allowable */
1739f8829a4aSRandall Stewart 	return (cur_mtu);
1740f8829a4aSRandall Stewart }
1741f8829a4aSRandall Stewart 
1742f8829a4aSRandall Stewart 
1743f8829a4aSRandall Stewart void
1744f8829a4aSRandall Stewart sctp_pathmtu_timer(struct sctp_inpcb *inp,
1745f8829a4aSRandall Stewart     struct sctp_tcb *stcb,
1746f8829a4aSRandall Stewart     struct sctp_nets *net)
1747f8829a4aSRandall Stewart {
1748c54a18d2SRandall Stewart 	uint32_t next_mtu, mtu;
1749f8829a4aSRandall Stewart 
1750f8829a4aSRandall Stewart 	next_mtu = sctp_getnext_mtu(inp, net->mtu);
175117205eccSRandall Stewart 
1752c54a18d2SRandall Stewart 	if ((next_mtu > net->mtu) && (net->port == 0)) {
175317205eccSRandall Stewart 		if ((net->src_addr_selected == 0) ||
175417205eccSRandall Stewart 		    (net->ro._s_addr == NULL) ||
175517205eccSRandall Stewart 		    (net->ro._s_addr->localifa_flags & SCTP_BEING_DELETED)) {
1756ad81507eSRandall Stewart 			if ((net->ro._s_addr != NULL) && (net->ro._s_addr->localifa_flags & SCTP_BEING_DELETED)) {
175717205eccSRandall Stewart 				sctp_free_ifa(net->ro._s_addr);
175817205eccSRandall Stewart 				net->ro._s_addr = NULL;
175917205eccSRandall Stewart 				net->src_addr_selected = 0;
1760ad81507eSRandall Stewart 			} else if (net->ro._s_addr == NULL) {
1761c54a18d2SRandall Stewart #if defined(INET6) && defined(SCTP_EMBEDDED_V6_SCOPE)
1762c54a18d2SRandall Stewart 				if (net->ro._l_addr.sa.sa_family == AF_INET6) {
1763c54a18d2SRandall Stewart 					struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)&net->ro._l_addr;
1764c54a18d2SRandall Stewart 
1765c54a18d2SRandall Stewart 					/* KAME hack: embed scopeid */
1766fc14de76SRandall Stewart 					(void)sa6_embedscope(sin6, MODULE_GLOBAL(MOD_INET6, ip6_use_defzone));
1767c54a18d2SRandall Stewart 				}
1768c54a18d2SRandall Stewart #endif
1769c54a18d2SRandall Stewart 
177017205eccSRandall Stewart 				net->ro._s_addr = sctp_source_address_selection(inp,
177117205eccSRandall Stewart 				    stcb,
177217205eccSRandall Stewart 				    (sctp_route_t *) & net->ro,
177317205eccSRandall Stewart 				    net, 0, stcb->asoc.vrf_id);
1774c54a18d2SRandall Stewart #if defined(INET6) && defined(SCTP_EMBEDDED_V6_SCOPE)
1775c54a18d2SRandall Stewart 				if (net->ro._l_addr.sa.sa_family == AF_INET6) {
1776c54a18d2SRandall Stewart 					struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)&net->ro._l_addr;
1777c54a18d2SRandall Stewart 
1778c54a18d2SRandall Stewart 					(void)sa6_recoverscope(sin6);
1779c54a18d2SRandall Stewart 				}
1780c54a18d2SRandall Stewart #endif				/* INET6 */
1781ad81507eSRandall Stewart 			}
178217205eccSRandall Stewart 			if (net->ro._s_addr)
178317205eccSRandall Stewart 				net->src_addr_selected = 1;
178417205eccSRandall Stewart 		}
178517205eccSRandall Stewart 		if (net->ro._s_addr) {
178617205eccSRandall Stewart 			mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._s_addr.sa, net->ro.ro_rt);
178717205eccSRandall Stewart 			if (mtu > next_mtu) {
1788f8829a4aSRandall Stewart 				net->mtu = next_mtu;
1789f8829a4aSRandall Stewart 			}
1790f8829a4aSRandall Stewart 		}
1791f8829a4aSRandall Stewart 	}
1792f8829a4aSRandall Stewart 	/* restart the timer */
1793f8829a4aSRandall Stewart 	sctp_timer_start(SCTP_TIMER_TYPE_PATHMTURAISE, inp, stcb, net);
1794f8829a4aSRandall Stewart }
1795f8829a4aSRandall Stewart 
1796f8829a4aSRandall Stewart void
1797f8829a4aSRandall Stewart sctp_autoclose_timer(struct sctp_inpcb *inp,
1798f8829a4aSRandall Stewart     struct sctp_tcb *stcb,
1799f8829a4aSRandall Stewart     struct sctp_nets *net)
1800f8829a4aSRandall Stewart {
1801f8829a4aSRandall Stewart 	struct timeval tn, *tim_touse;
1802f8829a4aSRandall Stewart 	struct sctp_association *asoc;
1803f8829a4aSRandall Stewart 	int ticks_gone_by;
1804f8829a4aSRandall Stewart 
18056e55db54SRandall Stewart 	(void)SCTP_GETTIME_TIMEVAL(&tn);
1806f8829a4aSRandall Stewart 	if (stcb->asoc.sctp_autoclose_ticks &&
1807f8829a4aSRandall Stewart 	    sctp_is_feature_on(inp, SCTP_PCB_FLAGS_AUTOCLOSE)) {
1808f8829a4aSRandall Stewart 		/* Auto close is on */
1809f8829a4aSRandall Stewart 		asoc = &stcb->asoc;
1810f8829a4aSRandall Stewart 		/* pick the time to use */
1811f8829a4aSRandall Stewart 		if (asoc->time_last_rcvd.tv_sec >
1812f8829a4aSRandall Stewart 		    asoc->time_last_sent.tv_sec) {
1813f8829a4aSRandall Stewart 			tim_touse = &asoc->time_last_rcvd;
1814f8829a4aSRandall Stewart 		} else {
1815f8829a4aSRandall Stewart 			tim_touse = &asoc->time_last_sent;
1816f8829a4aSRandall Stewart 		}
1817f8829a4aSRandall Stewart 		/* Now has long enough transpired to autoclose? */
1818f8829a4aSRandall Stewart 		ticks_gone_by = SEC_TO_TICKS(tn.tv_sec - tim_touse->tv_sec);
1819f8829a4aSRandall Stewart 		if ((ticks_gone_by > 0) &&
1820f8829a4aSRandall Stewart 		    (ticks_gone_by >= (int)asoc->sctp_autoclose_ticks)) {
1821f8829a4aSRandall Stewart 			/*
1822f8829a4aSRandall Stewart 			 * autoclose time has hit, call the output routine,
1823f8829a4aSRandall Stewart 			 * which should do nothing just to be SURE we don't
1824f8829a4aSRandall Stewart 			 * have hanging data. We can then safely check the
1825f8829a4aSRandall Stewart 			 * queues and know that we are clear to send
1826f8829a4aSRandall Stewart 			 * shutdown
1827f8829a4aSRandall Stewart 			 */
1828ceaad40aSRandall Stewart 			sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_AUTOCLOSE_TMR, SCTP_SO_NOT_LOCKED);
1829f8829a4aSRandall Stewart 			/* Are we clean? */
1830f8829a4aSRandall Stewart 			if (TAILQ_EMPTY(&asoc->send_queue) &&
1831f8829a4aSRandall Stewart 			    TAILQ_EMPTY(&asoc->sent_queue)) {
1832f8829a4aSRandall Stewart 				/*
1833f8829a4aSRandall Stewart 				 * there is nothing queued to send, so I'm
1834f8829a4aSRandall Stewart 				 * done...
1835f8829a4aSRandall Stewart 				 */
1836f42a358aSRandall Stewart 				if (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) {
1837f8829a4aSRandall Stewart 					/* only send SHUTDOWN 1st time thru */
1838f8829a4aSRandall Stewart 					sctp_send_shutdown(stcb, stcb->asoc.primary_destination);
1839f42a358aSRandall Stewart 					if ((SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) ||
1840f42a358aSRandall Stewart 					    (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED)) {
1841f8829a4aSRandall Stewart 						SCTP_STAT_DECR_GAUGE32(sctps_currestab);
1842f42a358aSRandall Stewart 					}
1843c4739e2fSRandall Stewart 					SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT);
1844b201f536SRandall Stewart 					SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING);
1845f8829a4aSRandall Stewart 					sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN,
1846f8829a4aSRandall Stewart 					    stcb->sctp_ep, stcb,
1847f8829a4aSRandall Stewart 					    asoc->primary_destination);
1848f8829a4aSRandall Stewart 					sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD,
1849f8829a4aSRandall Stewart 					    stcb->sctp_ep, stcb,
1850f8829a4aSRandall Stewart 					    asoc->primary_destination);
1851f8829a4aSRandall Stewart 				}
1852f8829a4aSRandall Stewart 			}
1853f8829a4aSRandall Stewart 		} else {
1854f8829a4aSRandall Stewart 			/*
1855f8829a4aSRandall Stewart 			 * No auto close at this time, reset t-o to check
1856f8829a4aSRandall Stewart 			 * later
1857f8829a4aSRandall Stewart 			 */
1858f8829a4aSRandall Stewart 			int tmp;
1859f8829a4aSRandall Stewart 
1860f8829a4aSRandall Stewart 			/* fool the timer startup to use the time left */
1861f8829a4aSRandall Stewart 			tmp = asoc->sctp_autoclose_ticks;
1862f8829a4aSRandall Stewart 			asoc->sctp_autoclose_ticks -= ticks_gone_by;
1863f8829a4aSRandall Stewart 			sctp_timer_start(SCTP_TIMER_TYPE_AUTOCLOSE, inp, stcb,
1864f8829a4aSRandall Stewart 			    net);
1865f8829a4aSRandall Stewart 			/* restore the real tick value */
1866f8829a4aSRandall Stewart 			asoc->sctp_autoclose_ticks = tmp;
1867f8829a4aSRandall Stewart 		}
1868f8829a4aSRandall Stewart 	}
1869f8829a4aSRandall Stewart }
1870f8829a4aSRandall Stewart 
1871f8829a4aSRandall Stewart void
1872f8829a4aSRandall Stewart sctp_iterator_timer(struct sctp_iterator *it)
1873f8829a4aSRandall Stewart {
1874f8829a4aSRandall Stewart 	int iteration_count = 0;
187542551e99SRandall Stewart 	int inp_skip = 0;
1876f8829a4aSRandall Stewart 
1877f8829a4aSRandall Stewart 	/*
1878f8829a4aSRandall Stewart 	 * only one iterator can run at a time. This is the only way we can
1879f8829a4aSRandall Stewart 	 * cleanly pull ep's from underneath all the running interators when
1880f8829a4aSRandall Stewart 	 * a ep is freed.
1881f8829a4aSRandall Stewart 	 */
1882f8829a4aSRandall Stewart 	SCTP_ITERATOR_LOCK();
1883f8829a4aSRandall Stewart 	if (it->inp == NULL) {
1884f8829a4aSRandall Stewart 		/* iterator is complete */
1885f8829a4aSRandall Stewart done_with_iterator:
1886f8829a4aSRandall Stewart 		SCTP_ITERATOR_UNLOCK();
1887f8829a4aSRandall Stewart 		SCTP_INP_INFO_WLOCK();
1888b3f1ea41SRandall Stewart 		TAILQ_REMOVE(&SCTP_BASE_INFO(iteratorhead), it, sctp_nxt_itr);
1889f8829a4aSRandall Stewart 		/* stopping the callout is not needed, in theory */
1890f8829a4aSRandall Stewart 		SCTP_INP_INFO_WUNLOCK();
18916e55db54SRandall Stewart 		(void)SCTP_OS_TIMER_STOP(&it->tmr.timer);
1892f8829a4aSRandall Stewart 		if (it->function_atend != NULL) {
1893f8829a4aSRandall Stewart 			(*it->function_atend) (it->pointer, it->val);
1894f8829a4aSRandall Stewart 		}
1895207304d4SRandall Stewart 		SCTP_FREE(it, SCTP_M_ITER);
1896f8829a4aSRandall Stewart 		return;
1897f8829a4aSRandall Stewart 	}
1898f8829a4aSRandall Stewart select_a_new_ep:
1899f8829a4aSRandall Stewart 	SCTP_INP_WLOCK(it->inp);
1900f8829a4aSRandall Stewart 	while (((it->pcb_flags) &&
1901f8829a4aSRandall Stewart 	    ((it->inp->sctp_flags & it->pcb_flags) != it->pcb_flags)) ||
1902f8829a4aSRandall Stewart 	    ((it->pcb_features) &&
1903f8829a4aSRandall Stewart 	    ((it->inp->sctp_features & it->pcb_features) != it->pcb_features))) {
1904f8829a4aSRandall Stewart 		/* endpoint flags or features don't match, so keep looking */
1905f8829a4aSRandall Stewart 		if (it->iterator_flags & SCTP_ITERATOR_DO_SINGLE_INP) {
1906f8829a4aSRandall Stewart 			SCTP_INP_WUNLOCK(it->inp);
1907f8829a4aSRandall Stewart 			goto done_with_iterator;
1908f8829a4aSRandall Stewart 		}
1909f8829a4aSRandall Stewart 		SCTP_INP_WUNLOCK(it->inp);
1910f8829a4aSRandall Stewart 		it->inp = LIST_NEXT(it->inp, sctp_list);
1911f8829a4aSRandall Stewart 		if (it->inp == NULL) {
1912f8829a4aSRandall Stewart 			goto done_with_iterator;
1913f8829a4aSRandall Stewart 		}
1914f8829a4aSRandall Stewart 		SCTP_INP_WLOCK(it->inp);
1915f8829a4aSRandall Stewart 	}
1916f8829a4aSRandall Stewart 	if ((it->inp->inp_starting_point_for_iterator != NULL) &&
1917f8829a4aSRandall Stewart 	    (it->inp->inp_starting_point_for_iterator != it)) {
1918ad81507eSRandall Stewart 		SCTP_PRINTF("Iterator collision, waiting for one at %p\n",
1919e349e6b8SRuslan Ermilov 		    it->inp);
1920f8829a4aSRandall Stewart 		SCTP_INP_WUNLOCK(it->inp);
1921f8829a4aSRandall Stewart 		goto start_timer_return;
1922f8829a4aSRandall Stewart 	}
1923f8829a4aSRandall Stewart 	/* mark the current iterator on the endpoint */
1924f8829a4aSRandall Stewart 	it->inp->inp_starting_point_for_iterator = it;
1925f8829a4aSRandall Stewart 	SCTP_INP_WUNLOCK(it->inp);
1926f8829a4aSRandall Stewart 	SCTP_INP_RLOCK(it->inp);
1927f8829a4aSRandall Stewart 	/* now go through each assoc which is in the desired state */
192842551e99SRandall Stewart 	if (it->done_current_ep == 0) {
192942551e99SRandall Stewart 		if (it->function_inp != NULL)
193042551e99SRandall Stewart 			inp_skip = (*it->function_inp) (it->inp, it->pointer, it->val);
193142551e99SRandall Stewart 		it->done_current_ep = 1;
193242551e99SRandall Stewart 	}
1933f8829a4aSRandall Stewart 	if (it->stcb == NULL) {
1934f8829a4aSRandall Stewart 		/* run the per instance function */
1935f8829a4aSRandall Stewart 		it->stcb = LIST_FIRST(&it->inp->sctp_asoc_list);
1936f8829a4aSRandall Stewart 	}
1937f8829a4aSRandall Stewart 	SCTP_INP_RUNLOCK(it->inp);
193842551e99SRandall Stewart 	if ((inp_skip) || it->stcb == NULL) {
193942551e99SRandall Stewart 		if (it->function_inp_end != NULL) {
194042551e99SRandall Stewart 			inp_skip = (*it->function_inp_end) (it->inp,
194142551e99SRandall Stewart 			    it->pointer,
194242551e99SRandall Stewart 			    it->val);
194342551e99SRandall Stewart 		}
194442551e99SRandall Stewart 		goto no_stcb;
194542551e99SRandall Stewart 	}
1946f8829a4aSRandall Stewart 	if ((it->stcb) &&
1947f8829a4aSRandall Stewart 	    (it->stcb->asoc.stcb_starting_point_for_iterator == it)) {
1948f8829a4aSRandall Stewart 		it->stcb->asoc.stcb_starting_point_for_iterator = NULL;
1949f8829a4aSRandall Stewart 	}
1950f8829a4aSRandall Stewart 	while (it->stcb) {
1951f8829a4aSRandall Stewart 		SCTP_TCB_LOCK(it->stcb);
1952f8829a4aSRandall Stewart 		if (it->asoc_state && ((it->stcb->asoc.state & it->asoc_state) != it->asoc_state)) {
1953f8829a4aSRandall Stewart 			/* not in the right state... keep looking */
1954f8829a4aSRandall Stewart 			SCTP_TCB_UNLOCK(it->stcb);
1955f8829a4aSRandall Stewart 			goto next_assoc;
1956f8829a4aSRandall Stewart 		}
1957f8829a4aSRandall Stewart 		/* mark the current iterator on the assoc */
1958f8829a4aSRandall Stewart 		it->stcb->asoc.stcb_starting_point_for_iterator = it;
1959f8829a4aSRandall Stewart 		/* see if we have limited out the iterator loop */
1960f8829a4aSRandall Stewart 		iteration_count++;
1961f8829a4aSRandall Stewart 		if (iteration_count > SCTP_ITERATOR_MAX_AT_ONCE) {
1962f8829a4aSRandall Stewart 	start_timer_return:
1963f8829a4aSRandall Stewart 			/* set a timer to continue this later */
1964ea1fbec5SRandall Stewart 			if (it->stcb)
1965f8829a4aSRandall Stewart 				SCTP_TCB_UNLOCK(it->stcb);
1966f8829a4aSRandall Stewart 			sctp_timer_start(SCTP_TIMER_TYPE_ITERATOR,
1967f8829a4aSRandall Stewart 			    (struct sctp_inpcb *)it, NULL, NULL);
1968f8829a4aSRandall Stewart 			SCTP_ITERATOR_UNLOCK();
1969f8829a4aSRandall Stewart 			return;
1970f8829a4aSRandall Stewart 		}
1971f8829a4aSRandall Stewart 		/* run function on this one */
1972f8829a4aSRandall Stewart 		(*it->function_assoc) (it->inp, it->stcb, it->pointer, it->val);
1973f8829a4aSRandall Stewart 
1974f8829a4aSRandall Stewart 		/*
1975f8829a4aSRandall Stewart 		 * we lie here, it really needs to have its own type but
1976f8829a4aSRandall Stewart 		 * first I must verify that this won't effect things :-0
1977f8829a4aSRandall Stewart 		 */
1978f8829a4aSRandall Stewart 		if (it->no_chunk_output == 0)
1979ceaad40aSRandall Stewart 			sctp_chunk_output(it->inp, it->stcb, SCTP_OUTPUT_FROM_T3, SCTP_SO_NOT_LOCKED);
1980f8829a4aSRandall Stewart 
1981f8829a4aSRandall Stewart 		SCTP_TCB_UNLOCK(it->stcb);
1982f8829a4aSRandall Stewart next_assoc:
1983f8829a4aSRandall Stewart 		it->stcb = LIST_NEXT(it->stcb, sctp_tcblist);
198442551e99SRandall Stewart 		if (it->stcb == NULL) {
198542551e99SRandall Stewart 			if (it->function_inp_end != NULL) {
198642551e99SRandall Stewart 				inp_skip = (*it->function_inp_end) (it->inp,
198742551e99SRandall Stewart 				    it->pointer,
198842551e99SRandall Stewart 				    it->val);
1989f8829a4aSRandall Stewart 			}
199042551e99SRandall Stewart 		}
199142551e99SRandall Stewart 	}
199242551e99SRandall Stewart no_stcb:
1993f8829a4aSRandall Stewart 	/* done with all assocs on this endpoint, move on to next endpoint */
199442551e99SRandall Stewart 	it->done_current_ep = 0;
1995f8829a4aSRandall Stewart 	SCTP_INP_WLOCK(it->inp);
1996f8829a4aSRandall Stewart 	it->inp->inp_starting_point_for_iterator = NULL;
1997f8829a4aSRandall Stewart 	SCTP_INP_WUNLOCK(it->inp);
1998f8829a4aSRandall Stewart 	if (it->iterator_flags & SCTP_ITERATOR_DO_SINGLE_INP) {
1999f8829a4aSRandall Stewart 		it->inp = NULL;
2000f8829a4aSRandall Stewart 	} else {
2001f8829a4aSRandall Stewart 		SCTP_INP_INFO_RLOCK();
2002f8829a4aSRandall Stewart 		it->inp = LIST_NEXT(it->inp, sctp_list);
2003f8829a4aSRandall Stewart 		SCTP_INP_INFO_RUNLOCK();
2004f8829a4aSRandall Stewart 	}
2005f8829a4aSRandall Stewart 	if (it->inp == NULL) {
2006f8829a4aSRandall Stewart 		goto done_with_iterator;
2007f8829a4aSRandall Stewart 	}
2008f8829a4aSRandall Stewart 	goto select_a_new_ep;
2009f8829a4aSRandall Stewart }
2010