1f8829a4aSRandall Stewart /*- 2b1006367SRandall Stewart * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved. 35d40cf5dSRandall Stewart * Copyright (c) 2008-2011, by Randall Stewart. All rights reserved. 45d40cf5dSRandall Stewart * Copyright (c) 2008-2011, by Michael Tuexen. All rights reserved. 5f8829a4aSRandall Stewart * 6f8829a4aSRandall Stewart * Redistribution and use in source and binary forms, with or without 7f8829a4aSRandall Stewart * modification, are permitted provided that the following conditions are met: 8f8829a4aSRandall Stewart * 9f8829a4aSRandall Stewart * a) Redistributions of source code must retain the above copyright notice, 10f8829a4aSRandall Stewart * this list of conditions and the following disclaimer. 11f8829a4aSRandall Stewart * 12f8829a4aSRandall Stewart * b) Redistributions in binary form must reproduce the above copyright 13f8829a4aSRandall Stewart * notice, this list of conditions and the following disclaimer in 14f8829a4aSRandall Stewart * the documentation and/or other materials provided with the distribution. 15f8829a4aSRandall Stewart * 16f8829a4aSRandall Stewart * c) Neither the name of Cisco Systems, Inc. nor the names of its 17f8829a4aSRandall Stewart * contributors may be used to endorse or promote products derived 18f8829a4aSRandall Stewart * from this software without specific prior written permission. 19f8829a4aSRandall Stewart * 20f8829a4aSRandall Stewart * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 21f8829a4aSRandall Stewart * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 22f8829a4aSRandall Stewart * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23f8829a4aSRandall Stewart * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 24f8829a4aSRandall Stewart * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25f8829a4aSRandall Stewart * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26f8829a4aSRandall Stewart * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27f8829a4aSRandall Stewart * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28f8829a4aSRandall Stewart * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29f8829a4aSRandall Stewart * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 30f8829a4aSRandall Stewart * THE POSSIBILITY OF SUCH DAMAGE. 31f8829a4aSRandall Stewart */ 32f8829a4aSRandall Stewart 33f8829a4aSRandall Stewart /* $KAME: sctp_timer.c,v 1.29 2005/03/06 16:04:18 itojun Exp $ */ 34f8829a4aSRandall Stewart 35f8829a4aSRandall Stewart #include <sys/cdefs.h> 36f8829a4aSRandall Stewart __FBSDID("$FreeBSD$"); 37f8829a4aSRandall Stewart 38f8829a4aSRandall Stewart #define _IP_VHL 3993164cf9SRandall Stewart #include <netinet/sctp_os.h> 40f8829a4aSRandall Stewart #include <netinet/sctp_pcb.h> 41f8829a4aSRandall Stewart #ifdef INET6 42f8829a4aSRandall Stewart #endif 43f8829a4aSRandall Stewart #include <netinet/sctp_var.h> 4442551e99SRandall Stewart #include <netinet/sctp_sysctl.h> 45f8829a4aSRandall Stewart #include <netinet/sctp_timer.h> 46f8829a4aSRandall Stewart #include <netinet/sctputil.h> 47f8829a4aSRandall Stewart #include <netinet/sctp_output.h> 48f8829a4aSRandall Stewart #include <netinet/sctp_header.h> 49f8829a4aSRandall Stewart #include <netinet/sctp_indata.h> 50f8829a4aSRandall Stewart #include <netinet/sctp_asconf.h> 51f8829a4aSRandall Stewart #include <netinet/sctp_input.h> 52f8829a4aSRandall Stewart #include <netinet/sctp.h> 53f8829a4aSRandall Stewart #include <netinet/sctp_uio.h> 54830d754dSRandall Stewart #include <netinet/udp.h> 55f8829a4aSRandall Stewart 56f8829a4aSRandall Stewart 57f8829a4aSRandall Stewart void 58f8829a4aSRandall Stewart sctp_early_fr_timer(struct sctp_inpcb *inp, 59f8829a4aSRandall Stewart struct sctp_tcb *stcb, 60f8829a4aSRandall Stewart struct sctp_nets *net) 61f8829a4aSRandall Stewart { 624a9ef3f8SMichael Tuexen struct sctp_tmit_chunk *chk, *pchk; 63f8829a4aSRandall Stewart struct timeval now, min_wait, tv; 64*0191fb6dSMichael Tuexen unsigned int cur_rto, cnt = 0, cnt_resend = 0; 65f8829a4aSRandall Stewart 66f8829a4aSRandall Stewart /* an early FR is occuring. */ 676e55db54SRandall Stewart (void)SCTP_GETTIME_TIMEVAL(&now); 68f8829a4aSRandall Stewart /* get cur rto in micro-seconds */ 69f8829a4aSRandall Stewart if (net->lastsa == 0) { 70f8829a4aSRandall Stewart /* Hmm no rtt estimate yet? */ 71*0191fb6dSMichael Tuexen cur_rto = stcb->asoc.initial_rto >> 2; 72f8829a4aSRandall Stewart } else { 73f8829a4aSRandall Stewart 74*0191fb6dSMichael Tuexen cur_rto = (net->lastsa >> SCTP_RTT_SHIFT) + net->lastsv; 75f8829a4aSRandall Stewart } 76*0191fb6dSMichael Tuexen if (cur_rto < SCTP_BASE_SYSCTL(sctp_early_fr_msec)) { 77*0191fb6dSMichael Tuexen cur_rto = SCTP_BASE_SYSCTL(sctp_early_fr_msec); 78f8829a4aSRandall Stewart } 79*0191fb6dSMichael Tuexen cur_rto *= 1000; 80*0191fb6dSMichael Tuexen tv.tv_sec = cur_rto / 1000000; 81*0191fb6dSMichael Tuexen tv.tv_usec = cur_rto % 1000000; 82f8829a4aSRandall Stewart min_wait = now; 83f8829a4aSRandall Stewart timevalsub(&min_wait, &tv); 84f8829a4aSRandall Stewart if (min_wait.tv_sec < 0 || min_wait.tv_usec < 0) { 85f8829a4aSRandall Stewart /* 86f8829a4aSRandall Stewart * if we hit here, we don't have enough seconds on the clock 87f8829a4aSRandall Stewart * to account for the RTO. We just let the lower seconds be 88f8829a4aSRandall Stewart * the bounds and don't worry about it. This may mean we 89f8829a4aSRandall Stewart * will mark a lot more than we should. 90f8829a4aSRandall Stewart */ 91f8829a4aSRandall Stewart min_wait.tv_sec = min_wait.tv_usec = 0; 92f8829a4aSRandall Stewart } 934a9ef3f8SMichael Tuexen TAILQ_FOREACH_REVERSE_SAFE(chk, &stcb->asoc.sent_queue, sctpchunk_listhead, sctp_next, pchk) { 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? */ 2187c99d56fSMichael Tuexen if ((stcb->asoc.sctp_cmt_on_off > 0) && 21920083c2eSMichael Tuexen (stcb->asoc.sctp_cmt_pf > 0)) { 220b54d3a6cSRandall Stewart net->dest_state &= ~SCTP_ADDR_PF; 221b54d3a6cSRandall Stewart SCTPDBG(SCTP_DEBUG_TIMER4, "Destination %p moved from PF to unreachable.\n", 222b54d3a6cSRandall Stewart net); 223b54d3a6cSRandall Stewart } 224f8829a4aSRandall Stewart sctp_ulp_notify(SCTP_NOTIFY_INTERFACE_DOWN, 225f8829a4aSRandall Stewart stcb, 226f8829a4aSRandall Stewart SCTP_FAILED_THRESHOLD, 227ceaad40aSRandall Stewart (void *)net, SCTP_SO_NOT_LOCKED); 228f8829a4aSRandall Stewart } 229f8829a4aSRandall Stewart } 230f8829a4aSRandall Stewart /*********HOLD THIS COMMENT FOR PATCH OF ALTERNATE 231f8829a4aSRandall Stewart *********ROUTING CODE 232f8829a4aSRandall Stewart */ 233f8829a4aSRandall Stewart /*********HOLD THIS COMMENT FOR END OF PATCH OF ALTERNATE 234f8829a4aSRandall Stewart *********ROUTING CODE 235f8829a4aSRandall Stewart */ 236f8829a4aSRandall Stewart } 237f8829a4aSRandall Stewart if (stcb == NULL) 238f8829a4aSRandall Stewart return (0); 239f8829a4aSRandall Stewart 240f8829a4aSRandall Stewart if (net) { 241f8829a4aSRandall Stewart if ((net->dest_state & SCTP_ADDR_UNCONFIRMED) == 0) { 242b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 243c4739e2fSRandall Stewart sctp_misc_ints(SCTP_THRESHOLD_INCR, 244c4739e2fSRandall Stewart stcb->asoc.overall_error_count, 245c4739e2fSRandall Stewart (stcb->asoc.overall_error_count + 1), 246c4739e2fSRandall Stewart SCTP_FROM_SCTP_TIMER, 247c4739e2fSRandall Stewart __LINE__); 248c4739e2fSRandall Stewart } 249f8829a4aSRandall Stewart stcb->asoc.overall_error_count++; 250f8829a4aSRandall Stewart } 251f8829a4aSRandall Stewart } else { 252b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_THRESHOLD_LOGGING) { 253c4739e2fSRandall Stewart sctp_misc_ints(SCTP_THRESHOLD_INCR, 254c4739e2fSRandall Stewart stcb->asoc.overall_error_count, 255c4739e2fSRandall Stewart (stcb->asoc.overall_error_count + 1), 256c4739e2fSRandall Stewart SCTP_FROM_SCTP_TIMER, 257c4739e2fSRandall Stewart __LINE__); 258c4739e2fSRandall Stewart } 259f8829a4aSRandall Stewart stcb->asoc.overall_error_count++; 260f8829a4aSRandall Stewart } 261ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_TIMER4, "Overall error count for %p now %d thresh:%u state:%x\n", 262ad81507eSRandall Stewart &stcb->asoc, stcb->asoc.overall_error_count, 263f8829a4aSRandall Stewart (uint32_t) threshold, 264f8829a4aSRandall Stewart ((net == NULL) ? (uint32_t) 0 : (uint32_t) net->dest_state)); 265f8829a4aSRandall Stewart /* 266f8829a4aSRandall Stewart * We specifically do not do >= to give the assoc one more change 267f8829a4aSRandall Stewart * before we fail it. 268f8829a4aSRandall Stewart */ 269f8829a4aSRandall Stewart if (stcb->asoc.overall_error_count > threshold) { 270f8829a4aSRandall Stewart /* Abort notification sends a ULP notify */ 271f8829a4aSRandall Stewart struct mbuf *oper; 272f8829a4aSRandall Stewart 273f8829a4aSRandall Stewart oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + sizeof(uint32_t)), 274f8829a4aSRandall Stewart 0, M_DONTWAIT, 1, MT_DATA); 275f8829a4aSRandall Stewart if (oper) { 276f8829a4aSRandall Stewart struct sctp_paramhdr *ph; 277f8829a4aSRandall Stewart uint32_t *ippp; 278f8829a4aSRandall Stewart 279139bc87fSRandall Stewart SCTP_BUF_LEN(oper) = sizeof(struct sctp_paramhdr) + 280f8829a4aSRandall Stewart sizeof(uint32_t); 281f8829a4aSRandall Stewart ph = mtod(oper, struct sctp_paramhdr *); 282f8829a4aSRandall Stewart ph->param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION); 283139bc87fSRandall Stewart ph->param_length = htons(SCTP_BUF_LEN(oper)); 284f8829a4aSRandall Stewart ippp = (uint32_t *) (ph + 1); 285a5d547adSRandall Stewart *ippp = htonl(SCTP_FROM_SCTP_TIMER + SCTP_LOC_1); 286f8829a4aSRandall Stewart } 287a5d547adSRandall Stewart inp->last_abort_code = SCTP_FROM_SCTP_TIMER + SCTP_LOC_1; 288ceaad40aSRandall Stewart sctp_abort_an_association(inp, stcb, SCTP_FAILED_THRESHOLD, oper, SCTP_SO_NOT_LOCKED); 289f8829a4aSRandall Stewart return (1); 290f8829a4aSRandall Stewart } 291f8829a4aSRandall Stewart return (0); 292f8829a4aSRandall Stewart } 293f8829a4aSRandall Stewart 294b61c3588SMichael Tuexen /* 295b61c3588SMichael Tuexen * sctp_find_alternate_net() returns a non-NULL pointer as long 296b61c3588SMichael Tuexen * the argument net is non-NULL. 297b61c3588SMichael Tuexen */ 298f8829a4aSRandall Stewart struct sctp_nets * 299f8829a4aSRandall Stewart sctp_find_alternate_net(struct sctp_tcb *stcb, 300f8829a4aSRandall Stewart struct sctp_nets *net, 301b54d3a6cSRandall Stewart int mode) 302f8829a4aSRandall Stewart { 303f8829a4aSRandall Stewart /* Find and return an alternate network if possible */ 304b54d3a6cSRandall Stewart struct sctp_nets *alt, *mnet, *min_errors_net = NULL, *max_cwnd_net = NULL; 305f8829a4aSRandall Stewart int once; 306b54d3a6cSRandall Stewart 307b54d3a6cSRandall Stewart /* JRS 5/14/07 - Initialize min_errors to an impossible value. */ 308b54d3a6cSRandall Stewart int min_errors = -1; 309b54d3a6cSRandall Stewart uint32_t max_cwnd = 0; 310f8829a4aSRandall Stewart 311f8829a4aSRandall Stewart if (stcb->asoc.numnets == 1) { 312f8829a4aSRandall Stewart /* No others but net */ 313f8829a4aSRandall Stewart return (TAILQ_FIRST(&stcb->asoc.nets)); 314f8829a4aSRandall Stewart } 315b54d3a6cSRandall Stewart /* 316b54d3a6cSRandall Stewart * JRS 5/14/07 - If mode is set to 2, use the CMT PF find alternate 317b54d3a6cSRandall Stewart * net algorithm. This algorithm chooses the active destination (not 318b54d3a6cSRandall Stewart * in PF state) with the largest cwnd value. If all destinations are 319b54d3a6cSRandall Stewart * in PF state, unreachable, or unconfirmed, choose the desination 320b54d3a6cSRandall Stewart * that is in PF state with the lowest error count. In case of a 321b54d3a6cSRandall Stewart * tie, choose the destination that was most recently active. 322b54d3a6cSRandall Stewart */ 323b54d3a6cSRandall Stewart if (mode == 2) { 324b54d3a6cSRandall Stewart TAILQ_FOREACH(mnet, &stcb->asoc.nets, sctp_next) { 325b54d3a6cSRandall Stewart /* 326b54d3a6cSRandall Stewart * JRS 5/14/07 - If the destination is unreachable 327b54d3a6cSRandall Stewart * or unconfirmed, skip it. 328b54d3a6cSRandall Stewart */ 329b54d3a6cSRandall Stewart if (((mnet->dest_state & SCTP_ADDR_REACHABLE) != SCTP_ADDR_REACHABLE) || 330b54d3a6cSRandall Stewart (mnet->dest_state & SCTP_ADDR_UNCONFIRMED)) { 331b54d3a6cSRandall Stewart continue; 332b54d3a6cSRandall Stewart } 333b54d3a6cSRandall Stewart /* 334b54d3a6cSRandall Stewart * JRS 5/14/07 - If the destination is reachable 335b54d3a6cSRandall Stewart * but in PF state, compare the error count of the 336b54d3a6cSRandall Stewart * destination to the minimum error count seen thus 337b54d3a6cSRandall Stewart * far. Store the destination with the lower error 338b54d3a6cSRandall Stewart * count. If the error counts are equal, store the 339b54d3a6cSRandall Stewart * destination that was most recently active. 340b54d3a6cSRandall Stewart */ 341b54d3a6cSRandall Stewart if (mnet->dest_state & SCTP_ADDR_PF) { 342b54d3a6cSRandall Stewart /* 343b54d3a6cSRandall Stewart * JRS 5/14/07 - If the destination under 344b54d3a6cSRandall Stewart * consideration is the current destination, 345b54d3a6cSRandall Stewart * work as if the error count is one higher. 346b54d3a6cSRandall Stewart * The actual error count will not be 347b54d3a6cSRandall Stewart * incremented until later in the t3 348b54d3a6cSRandall Stewart * handler. 349b54d3a6cSRandall Stewart */ 350b54d3a6cSRandall Stewart if (mnet == net) { 351b54d3a6cSRandall Stewart if (min_errors == -1) { 352b54d3a6cSRandall Stewart min_errors = mnet->error_count + 1; 353b54d3a6cSRandall Stewart min_errors_net = mnet; 354b54d3a6cSRandall Stewart } else if (mnet->error_count + 1 < min_errors) { 355b54d3a6cSRandall Stewart min_errors = mnet->error_count + 1; 356b54d3a6cSRandall Stewart min_errors_net = mnet; 357b54d3a6cSRandall Stewart } else if (mnet->error_count + 1 == min_errors 358b54d3a6cSRandall Stewart && mnet->last_active > min_errors_net->last_active) { 359b54d3a6cSRandall Stewart min_errors_net = mnet; 360b54d3a6cSRandall Stewart min_errors = mnet->error_count + 1; 361b54d3a6cSRandall Stewart } 362b54d3a6cSRandall Stewart continue; 363b54d3a6cSRandall Stewart } else { 364b54d3a6cSRandall Stewart if (min_errors == -1) { 365b54d3a6cSRandall Stewart min_errors = mnet->error_count; 366b54d3a6cSRandall Stewart min_errors_net = mnet; 367b54d3a6cSRandall Stewart } else if (mnet->error_count < min_errors) { 368b54d3a6cSRandall Stewart min_errors = mnet->error_count; 369b54d3a6cSRandall Stewart min_errors_net = mnet; 370b54d3a6cSRandall Stewart } else if (mnet->error_count == min_errors 371b54d3a6cSRandall Stewart && mnet->last_active > min_errors_net->last_active) { 372b54d3a6cSRandall Stewart min_errors_net = mnet; 373b54d3a6cSRandall Stewart min_errors = mnet->error_count; 374b54d3a6cSRandall Stewart } 375b54d3a6cSRandall Stewart continue; 376b54d3a6cSRandall Stewart } 377b54d3a6cSRandall Stewart } 378b54d3a6cSRandall Stewart /* 379b54d3a6cSRandall Stewart * JRS 5/14/07 - If the destination is reachable and 380b54d3a6cSRandall Stewart * not in PF state, compare the cwnd of the 381b54d3a6cSRandall Stewart * destination to the highest cwnd seen thus far. 382b54d3a6cSRandall Stewart * Store the destination with the higher cwnd value. 383b54d3a6cSRandall Stewart * If the cwnd values are equal, randomly choose one 384b54d3a6cSRandall Stewart * of the two destinations. 385b54d3a6cSRandall Stewart */ 386b54d3a6cSRandall Stewart if (max_cwnd < mnet->cwnd) { 387b54d3a6cSRandall Stewart max_cwnd_net = mnet; 388b54d3a6cSRandall Stewart max_cwnd = mnet->cwnd; 389b54d3a6cSRandall Stewart } else if (max_cwnd == mnet->cwnd) { 390b54d3a6cSRandall Stewart uint32_t rndval; 391b54d3a6cSRandall Stewart uint8_t this_random; 392b54d3a6cSRandall Stewart 393b54d3a6cSRandall Stewart if (stcb->asoc.hb_random_idx > 3) { 394b54d3a6cSRandall Stewart rndval = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep); 395b54d3a6cSRandall Stewart memcpy(stcb->asoc.hb_random_values, &rndval, sizeof(stcb->asoc.hb_random_values)); 396b54d3a6cSRandall Stewart this_random = stcb->asoc.hb_random_values[0]; 397b54d3a6cSRandall Stewart stcb->asoc.hb_random_idx++; 398b54d3a6cSRandall Stewart stcb->asoc.hb_ect_randombit = 0; 399b54d3a6cSRandall Stewart } else { 400b54d3a6cSRandall Stewart this_random = stcb->asoc.hb_random_values[stcb->asoc.hb_random_idx]; 401b54d3a6cSRandall Stewart stcb->asoc.hb_random_idx++; 402b54d3a6cSRandall Stewart stcb->asoc.hb_ect_randombit = 0; 403b54d3a6cSRandall Stewart } 404b54d3a6cSRandall Stewart if (this_random % 2 == 1) { 405b54d3a6cSRandall Stewart max_cwnd_net = mnet; 406fc14de76SRandall Stewart max_cwnd = mnet->cwnd; /* Useless? */ 407b54d3a6cSRandall Stewart } 408b54d3a6cSRandall Stewart } 409b54d3a6cSRandall Stewart } 410b54d3a6cSRandall Stewart /* 411b54d3a6cSRandall Stewart * JRS 5/14/07 - After all destination have been considered 412b54d3a6cSRandall Stewart * as alternates, check to see if there was some active 413b54d3a6cSRandall Stewart * destination (not in PF state). If not, check to see if 414b54d3a6cSRandall Stewart * there was some PF destination with the minimum number of 415b54d3a6cSRandall Stewart * errors. If not, return the original destination. If 416b54d3a6cSRandall Stewart * there is a min_errors_net, remove the PF flag from that 417b54d3a6cSRandall Stewart * destination, set the cwnd to one or two MTUs, and return 418b54d3a6cSRandall Stewart * the destination as an alt. If there was some active 419b54d3a6cSRandall Stewart * destination with a highest cwnd, return the destination 420b54d3a6cSRandall Stewart * as an alt. 421b54d3a6cSRandall Stewart */ 422b54d3a6cSRandall Stewart if (max_cwnd_net == NULL) { 423b54d3a6cSRandall Stewart if (min_errors_net == NULL) { 424b54d3a6cSRandall Stewart return (net); 425b54d3a6cSRandall Stewart } 426b54d3a6cSRandall Stewart min_errors_net->dest_state &= ~SCTP_ADDR_PF; 42720083c2eSMichael Tuexen min_errors_net->cwnd = min_errors_net->mtu * stcb->asoc.sctp_cmt_pf; 428b54d3a6cSRandall Stewart if (SCTP_OS_TIMER_PENDING(&min_errors_net->rxt_timer.timer)) { 429b54d3a6cSRandall Stewart sctp_timer_stop(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep, 430b54d3a6cSRandall Stewart stcb, min_errors_net, 431b54d3a6cSRandall Stewart SCTP_FROM_SCTP_TIMER + SCTP_LOC_2); 432b54d3a6cSRandall Stewart } 433b54d3a6cSRandall Stewart SCTPDBG(SCTP_DEBUG_TIMER4, "Destination %p moved from PF to active with %d errors.\n", 434b54d3a6cSRandall Stewart min_errors_net, min_errors_net->error_count); 435b54d3a6cSRandall Stewart return (min_errors_net); 436b54d3a6cSRandall Stewart } else { 437b54d3a6cSRandall Stewart return (max_cwnd_net); 438b54d3a6cSRandall Stewart } 439b54d3a6cSRandall Stewart } 440b54d3a6cSRandall Stewart /* 441b54d3a6cSRandall Stewart * JRS 5/14/07 - If mode is set to 1, use the CMT policy for 442b54d3a6cSRandall Stewart * choosing an alternate net. 443b54d3a6cSRandall Stewart */ 444b54d3a6cSRandall Stewart else if (mode == 1) { 445f8829a4aSRandall Stewart TAILQ_FOREACH(mnet, &stcb->asoc.nets, sctp_next) { 446f8829a4aSRandall Stewart if (((mnet->dest_state & SCTP_ADDR_REACHABLE) != SCTP_ADDR_REACHABLE) || 447b61c3588SMichael Tuexen (mnet->dest_state & SCTP_ADDR_UNCONFIRMED)) { 448f8829a4aSRandall Stewart /* 449f8829a4aSRandall Stewart * will skip ones that are not-reachable or 450f8829a4aSRandall Stewart * unconfirmed 451f8829a4aSRandall Stewart */ 452f8829a4aSRandall Stewart continue; 453f8829a4aSRandall Stewart } 454b54d3a6cSRandall Stewart if (max_cwnd < mnet->cwnd) { 455b54d3a6cSRandall Stewart max_cwnd_net = mnet; 456b54d3a6cSRandall Stewart max_cwnd = mnet->cwnd; 457b54d3a6cSRandall Stewart } else if (max_cwnd == mnet->cwnd) { 458f8829a4aSRandall Stewart uint32_t rndval; 459f8829a4aSRandall Stewart uint8_t this_random; 460f8829a4aSRandall Stewart 461f8829a4aSRandall Stewart if (stcb->asoc.hb_random_idx > 3) { 462f8829a4aSRandall Stewart rndval = sctp_select_initial_TSN(&stcb->sctp_ep->sctp_ep); 463f8829a4aSRandall Stewart memcpy(stcb->asoc.hb_random_values, &rndval, 464f8829a4aSRandall Stewart sizeof(stcb->asoc.hb_random_values)); 465f8829a4aSRandall Stewart this_random = stcb->asoc.hb_random_values[0]; 466f8829a4aSRandall Stewart stcb->asoc.hb_random_idx = 0; 467f8829a4aSRandall Stewart stcb->asoc.hb_ect_randombit = 0; 468f8829a4aSRandall Stewart } else { 469f8829a4aSRandall Stewart this_random = stcb->asoc.hb_random_values[stcb->asoc.hb_random_idx]; 470f8829a4aSRandall Stewart stcb->asoc.hb_random_idx++; 471f8829a4aSRandall Stewart stcb->asoc.hb_ect_randombit = 0; 472f8829a4aSRandall Stewart } 473f8829a4aSRandall Stewart if (this_random % 2) { 474b54d3a6cSRandall Stewart max_cwnd_net = mnet; 475b54d3a6cSRandall Stewart max_cwnd = mnet->cwnd; 476f8829a4aSRandall Stewart } 477f8829a4aSRandall Stewart } 478f8829a4aSRandall Stewart } 479b54d3a6cSRandall Stewart if (max_cwnd_net) { 480b54d3a6cSRandall Stewart return (max_cwnd_net); 481f8829a4aSRandall Stewart } 482f8829a4aSRandall Stewart } 483f8829a4aSRandall Stewart mnet = net; 484f8829a4aSRandall Stewart once = 0; 485f8829a4aSRandall Stewart 486f8829a4aSRandall Stewart if (mnet == NULL) { 487f8829a4aSRandall Stewart mnet = TAILQ_FIRST(&stcb->asoc.nets); 48852129fcdSRandall Stewart if (mnet == NULL) { 48952129fcdSRandall Stewart return (NULL); 49052129fcdSRandall Stewart } 491f8829a4aSRandall Stewart } 492f8829a4aSRandall Stewart do { 493f8829a4aSRandall Stewart alt = TAILQ_NEXT(mnet, sctp_next); 494f8829a4aSRandall Stewart if (alt == NULL) { 495f8829a4aSRandall Stewart once++; 496f8829a4aSRandall Stewart if (once > 1) { 497f8829a4aSRandall Stewart break; 498f8829a4aSRandall Stewart } 499f8829a4aSRandall Stewart alt = TAILQ_FIRST(&stcb->asoc.nets); 50052129fcdSRandall Stewart if (alt == NULL) { 50152129fcdSRandall Stewart return (NULL); 50252129fcdSRandall Stewart } 503f8829a4aSRandall Stewart } 504f8829a4aSRandall Stewart if (alt->ro.ro_rt == NULL) { 50542551e99SRandall Stewart if (alt->ro._s_addr) { 50642551e99SRandall Stewart sctp_free_ifa(alt->ro._s_addr); 50742551e99SRandall Stewart alt->ro._s_addr = NULL; 50842551e99SRandall Stewart } 509f8829a4aSRandall Stewart alt->src_addr_selected = 0; 510f8829a4aSRandall Stewart } 5113c503c28SRandall Stewart /* sa_ignore NO_NULL_CHK */ 512b61c3588SMichael Tuexen if (((alt->dest_state & SCTP_ADDR_REACHABLE) == SCTP_ADDR_REACHABLE) && 513b61c3588SMichael Tuexen (alt->ro.ro_rt != NULL) && 514b61c3588SMichael Tuexen (!(alt->dest_state & SCTP_ADDR_UNCONFIRMED))) { 515f8829a4aSRandall Stewart /* Found a reachable address */ 516f8829a4aSRandall Stewart break; 517f8829a4aSRandall Stewart } 518f8829a4aSRandall Stewart mnet = alt; 519f8829a4aSRandall Stewart } while (alt != NULL); 520f8829a4aSRandall Stewart 521f8829a4aSRandall Stewart if (alt == NULL) { 522f8829a4aSRandall Stewart /* Case where NO insv network exists (dormant state) */ 523f8829a4aSRandall Stewart /* we rotate destinations */ 524f8829a4aSRandall Stewart once = 0; 525f8829a4aSRandall Stewart mnet = net; 526f8829a4aSRandall Stewart do { 52752129fcdSRandall Stewart if (mnet == NULL) { 52852129fcdSRandall Stewart return (TAILQ_FIRST(&stcb->asoc.nets)); 52952129fcdSRandall Stewart } 530f8829a4aSRandall Stewart alt = TAILQ_NEXT(mnet, sctp_next); 531f8829a4aSRandall Stewart if (alt == NULL) { 532f8829a4aSRandall Stewart once++; 533f8829a4aSRandall Stewart if (once > 1) { 534f8829a4aSRandall Stewart break; 535f8829a4aSRandall Stewart } 536f8829a4aSRandall Stewart alt = TAILQ_FIRST(&stcb->asoc.nets); 537f8829a4aSRandall Stewart } 5383c503c28SRandall Stewart /* sa_ignore NO_NULL_CHK */ 539f8829a4aSRandall Stewart if ((!(alt->dest_state & SCTP_ADDR_UNCONFIRMED)) && 540f8829a4aSRandall Stewart (alt != net)) { 541f8829a4aSRandall Stewart /* Found an alternate address */ 542f8829a4aSRandall Stewart break; 543f8829a4aSRandall Stewart } 544f8829a4aSRandall Stewart mnet = alt; 545f8829a4aSRandall Stewart } while (alt != NULL); 546f8829a4aSRandall Stewart } 547f8829a4aSRandall Stewart if (alt == NULL) { 548f8829a4aSRandall Stewart return (net); 549f8829a4aSRandall Stewart } 550f8829a4aSRandall Stewart return (alt); 551f8829a4aSRandall Stewart } 552f8829a4aSRandall Stewart 553f8829a4aSRandall Stewart static void 554f8829a4aSRandall Stewart sctp_backoff_on_timeout(struct sctp_tcb *stcb, 555f8829a4aSRandall Stewart struct sctp_nets *net, 556f8829a4aSRandall Stewart int win_probe, 55744fbe462SRandall Stewart int num_marked, int num_abandoned) 558f8829a4aSRandall Stewart { 5599a972525SRandall Stewart if (net->RTO == 0) { 5609a972525SRandall Stewart net->RTO = stcb->asoc.minrto; 5619a972525SRandall Stewart } 562f8829a4aSRandall Stewart net->RTO <<= 1; 563f8829a4aSRandall Stewart if (net->RTO > stcb->asoc.maxrto) { 564f8829a4aSRandall Stewart net->RTO = stcb->asoc.maxrto; 565f8829a4aSRandall Stewart } 56644fbe462SRandall Stewart if ((win_probe == 0) && (num_marked || num_abandoned)) { 567f8829a4aSRandall Stewart /* We don't apply penalty to window probe scenarios */ 568b54d3a6cSRandall Stewart /* JRS - Use the congestion control given in the CC module */ 569b54d3a6cSRandall Stewart stcb->asoc.cc_functions.sctp_cwnd_update_after_timeout(stcb, net); 570f8829a4aSRandall Stewart } 571f8829a4aSRandall Stewart } 572f8829a4aSRandall Stewart 57383416c88SRandall Stewart #ifndef INVARIANTS 57483416c88SRandall Stewart static void 575df6e0cc3SRandall Stewart sctp_recover_sent_list(struct sctp_tcb *stcb) 576df6e0cc3SRandall Stewart { 5774a9ef3f8SMichael Tuexen struct sctp_tmit_chunk *chk, *nchk; 578df6e0cc3SRandall Stewart struct sctp_association *asoc; 579df6e0cc3SRandall Stewart 580df6e0cc3SRandall Stewart asoc = &stcb->asoc; 5814a9ef3f8SMichael Tuexen TAILQ_FOREACH_SAFE(chk, &asoc->sent_queue, sctp_next, nchk) { 58220b07a4dSMichael Tuexen if (SCTP_TSN_GE(asoc->last_acked_seq, chk->rec.data.TSN_seq)) { 583df6e0cc3SRandall Stewart SCTP_PRINTF("Found chk:%p tsn:%x <= last_acked_seq:%x\n", 5844a9ef3f8SMichael Tuexen chk, chk->rec.data.TSN_seq, asoc->last_acked_seq); 585df6e0cc3SRandall Stewart TAILQ_REMOVE(&asoc->sent_queue, chk, sctp_next); 586df6e0cc3SRandall Stewart if (chk->pr_sctp_on) { 587df6e0cc3SRandall Stewart if (asoc->pr_sctp_cnt != 0) 588df6e0cc3SRandall Stewart asoc->pr_sctp_cnt--; 589df6e0cc3SRandall Stewart } 590df6e0cc3SRandall Stewart if (chk->data) { 591df6e0cc3SRandall Stewart /* sa_ignore NO_NULL_CHK */ 592df6e0cc3SRandall Stewart sctp_free_bufspace(stcb, asoc, chk, 1); 593df6e0cc3SRandall Stewart sctp_m_freem(chk->data); 5944a9ef3f8SMichael Tuexen chk->data = NULL; 595810ec536SMichael Tuexen if (asoc->peer_supports_prsctp && PR_SCTP_BUF_ENABLED(chk->flags)) { 596df6e0cc3SRandall Stewart asoc->sent_queue_cnt_removeable--; 597df6e0cc3SRandall Stewart } 598df6e0cc3SRandall Stewart } 599df6e0cc3SRandall Stewart asoc->sent_queue_cnt--; 600df6e0cc3SRandall Stewart sctp_free_a_chunk(stcb, chk); 601df6e0cc3SRandall Stewart } 602df6e0cc3SRandall Stewart } 603df6e0cc3SRandall Stewart SCTP_PRINTF("after recover order is as follows\n"); 6044a9ef3f8SMichael Tuexen TAILQ_FOREACH(chk, &asoc->sent_queue, sctp_next) { 605df6e0cc3SRandall Stewart SCTP_PRINTF("chk:%p TSN:%x\n", chk, chk->rec.data.TSN_seq); 606df6e0cc3SRandall Stewart } 607df6e0cc3SRandall Stewart } 608df6e0cc3SRandall Stewart 60983416c88SRandall Stewart #endif 61083416c88SRandall Stewart 611f8829a4aSRandall Stewart static int 612f8829a4aSRandall Stewart sctp_mark_all_for_resend(struct sctp_tcb *stcb, 613f8829a4aSRandall Stewart struct sctp_nets *net, 614f8829a4aSRandall Stewart struct sctp_nets *alt, 615f8829a4aSRandall Stewart int window_probe, 61644fbe462SRandall Stewart int *num_marked, 61744fbe462SRandall Stewart int *num_abandoned) 618f8829a4aSRandall Stewart { 619f8829a4aSRandall Stewart 620f8829a4aSRandall Stewart /* 621f8829a4aSRandall Stewart * Mark all chunks (well not all) that were sent to *net for 622f8829a4aSRandall Stewart * retransmission. Move them to alt for there destination as well... 623f8829a4aSRandall Stewart * We only mark chunks that have been outstanding long enough to 624f8829a4aSRandall Stewart * have received feed-back. 625f8829a4aSRandall Stewart */ 6264a9ef3f8SMichael Tuexen struct sctp_tmit_chunk *chk, *nchk; 627f8829a4aSRandall Stewart struct sctp_nets *lnets; 628f8829a4aSRandall Stewart struct timeval now, min_wait, tv; 629*0191fb6dSMichael Tuexen int cur_rto; 63044fbe462SRandall Stewart int cnt_abandoned; 631c105859eSRandall Stewart int audit_tf, num_mk, fir; 632f8829a4aSRandall Stewart unsigned int cnt_mk; 633c105859eSRandall Stewart uint32_t orig_flight, orig_tf; 634f8829a4aSRandall Stewart uint32_t tsnlast, tsnfirst; 635df6e0cc3SRandall Stewart int recovery_cnt = 0; 636f8829a4aSRandall Stewart 637b54d3a6cSRandall Stewart 638f8829a4aSRandall Stewart /* none in flight now */ 639f8829a4aSRandall Stewart audit_tf = 0; 640f8829a4aSRandall Stewart fir = 0; 641f8829a4aSRandall Stewart /* 642f8829a4aSRandall Stewart * figure out how long a data chunk must be pending before we can 643f8829a4aSRandall Stewart * mark it .. 644f8829a4aSRandall Stewart */ 6456e55db54SRandall Stewart (void)SCTP_GETTIME_TIMEVAL(&now); 646f8829a4aSRandall Stewart /* get cur rto in micro-seconds */ 647*0191fb6dSMichael Tuexen cur_rto = (net->lastsa >> SCTP_RTT_SHIFT) + net->lastsv; 648*0191fb6dSMichael Tuexen cur_rto *= 1000; 649b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & (SCTP_EARLYFR_LOGGING_ENABLE | SCTP_FR_LOGGING_ENABLE)) { 650*0191fb6dSMichael Tuexen sctp_log_fr(cur_rto, 651f8829a4aSRandall Stewart stcb->asoc.peers_rwnd, 652f8829a4aSRandall Stewart window_probe, 653f8829a4aSRandall Stewart SCTP_FR_T3_MARK_TIME); 654f8829a4aSRandall Stewart sctp_log_fr(net->flight_size, 655139bc87fSRandall Stewart SCTP_OS_TIMER_PENDING(&net->fr_timer.timer), 656139bc87fSRandall Stewart SCTP_OS_TIMER_ACTIVE(&net->fr_timer.timer), 657f8829a4aSRandall Stewart SCTP_FR_CWND_REPORT); 658f8829a4aSRandall Stewart sctp_log_fr(net->flight_size, net->cwnd, stcb->asoc.total_flight, SCTP_FR_CWND_REPORT); 65980fefe0aSRandall Stewart } 660*0191fb6dSMichael Tuexen tv.tv_sec = cur_rto / 1000000; 661*0191fb6dSMichael Tuexen tv.tv_usec = cur_rto % 1000000; 662f8829a4aSRandall Stewart min_wait = now; 663f8829a4aSRandall Stewart timevalsub(&min_wait, &tv); 664f8829a4aSRandall Stewart if (min_wait.tv_sec < 0 || min_wait.tv_usec < 0) { 665f8829a4aSRandall Stewart /* 666f8829a4aSRandall Stewart * if we hit here, we don't have enough seconds on the clock 667f8829a4aSRandall Stewart * to account for the RTO. We just let the lower seconds be 668f8829a4aSRandall Stewart * the bounds and don't worry about it. This may mean we 669f8829a4aSRandall Stewart * will mark a lot more than we should. 670f8829a4aSRandall Stewart */ 671f8829a4aSRandall Stewart min_wait.tv_sec = min_wait.tv_usec = 0; 672f8829a4aSRandall Stewart } 673b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & (SCTP_EARLYFR_LOGGING_ENABLE | SCTP_FR_LOGGING_ENABLE)) { 674*0191fb6dSMichael Tuexen sctp_log_fr(cur_rto, now.tv_sec, now.tv_usec, SCTP_FR_T3_MARK_TIME); 675f8829a4aSRandall Stewart sctp_log_fr(0, min_wait.tv_sec, min_wait.tv_usec, SCTP_FR_T3_MARK_TIME); 67680fefe0aSRandall Stewart } 677f8829a4aSRandall Stewart /* 678f8829a4aSRandall Stewart * Our rwnd will be incorrect here since we are not adding back the 679f8829a4aSRandall Stewart * cnt * mbuf but we will fix that down below. 680f8829a4aSRandall Stewart */ 681f8829a4aSRandall Stewart orig_flight = net->flight_size; 682c105859eSRandall Stewart orig_tf = stcb->asoc.total_flight; 683c105859eSRandall Stewart 684f8829a4aSRandall Stewart net->fast_retran_ip = 0; 685f8829a4aSRandall Stewart /* Now on to each chunk */ 68644fbe462SRandall Stewart cnt_abandoned = 0; 687f8829a4aSRandall Stewart num_mk = cnt_mk = 0; 688f8829a4aSRandall Stewart tsnfirst = tsnlast = 0; 68983416c88SRandall Stewart #ifndef INVARIANTS 690df6e0cc3SRandall Stewart start_again: 69183416c88SRandall Stewart #endif 6924a9ef3f8SMichael Tuexen TAILQ_FOREACH_SAFE(chk, &stcb->asoc.sent_queue, sctp_next, nchk) { 69320b07a4dSMichael Tuexen if (SCTP_TSN_GE(stcb->asoc.last_acked_seq, chk->rec.data.TSN_seq)) { 694f8829a4aSRandall Stewart /* Strange case our list got out of order? */ 695df6e0cc3SRandall Stewart SCTP_PRINTF("Our list is out of order? last_acked:%x chk:%x", 696df6e0cc3SRandall Stewart (unsigned int)stcb->asoc.last_acked_seq, (unsigned int)chk->rec.data.TSN_seq); 697df6e0cc3SRandall Stewart recovery_cnt++; 698df6e0cc3SRandall Stewart #ifdef INVARIANTS 699df6e0cc3SRandall Stewart panic("last acked >= chk on sent-Q"); 700df6e0cc3SRandall Stewart #else 701df6e0cc3SRandall Stewart SCTP_PRINTF("Recover attempts a restart cnt:%d\n", recovery_cnt); 702df6e0cc3SRandall Stewart sctp_recover_sent_list(stcb); 703df6e0cc3SRandall Stewart if (recovery_cnt < 10) { 704df6e0cc3SRandall Stewart goto start_again; 705df6e0cc3SRandall Stewart } else { 706df6e0cc3SRandall Stewart SCTP_PRINTF("Recovery fails %d times??\n", recovery_cnt); 707df6e0cc3SRandall Stewart } 708df6e0cc3SRandall Stewart #endif 709f8829a4aSRandall Stewart } 710f8829a4aSRandall Stewart if ((chk->whoTo == net) && (chk->sent < SCTP_DATAGRAM_ACKED)) { 711f8829a4aSRandall Stewart /* 712f8829a4aSRandall Stewart * found one to mark: If it is less than 713f8829a4aSRandall Stewart * DATAGRAM_ACKED it MUST not be a skipped or marked 714f8829a4aSRandall Stewart * TSN but instead one that is either already set 715f8829a4aSRandall Stewart * for retransmission OR one that needs 716f8829a4aSRandall Stewart * retransmission. 717f8829a4aSRandall Stewart */ 718f8829a4aSRandall Stewart 719f8829a4aSRandall Stewart /* validate its been outstanding long enough */ 720b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & (SCTP_EARLYFR_LOGGING_ENABLE | SCTP_FR_LOGGING_ENABLE)) { 721f8829a4aSRandall Stewart sctp_log_fr(chk->rec.data.TSN_seq, 722f8829a4aSRandall Stewart chk->sent_rcv_time.tv_sec, 723f8829a4aSRandall Stewart chk->sent_rcv_time.tv_usec, 724f8829a4aSRandall Stewart SCTP_FR_T3_MARK_TIME); 72580fefe0aSRandall Stewart } 726f8829a4aSRandall Stewart if ((chk->sent_rcv_time.tv_sec > min_wait.tv_sec) && (window_probe == 0)) { 727f8829a4aSRandall Stewart /* 728f8829a4aSRandall Stewart * we have reached a chunk that was sent 729f8829a4aSRandall Stewart * some seconds past our min.. forget it we 730f8829a4aSRandall Stewart * will find no more to send. 731f8829a4aSRandall Stewart */ 732b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & (SCTP_EARLYFR_LOGGING_ENABLE | SCTP_FR_LOGGING_ENABLE)) { 733f8829a4aSRandall Stewart sctp_log_fr(0, 734f8829a4aSRandall Stewart chk->sent_rcv_time.tv_sec, 735f8829a4aSRandall Stewart chk->sent_rcv_time.tv_usec, 736f8829a4aSRandall Stewart SCTP_FR_T3_STOPPED); 73780fefe0aSRandall Stewart } 738f8829a4aSRandall Stewart continue; 739f8829a4aSRandall Stewart } else if ((chk->sent_rcv_time.tv_sec == min_wait.tv_sec) && 740f8829a4aSRandall Stewart (window_probe == 0)) { 741f8829a4aSRandall Stewart /* 742f8829a4aSRandall Stewart * we must look at the micro seconds to 743f8829a4aSRandall Stewart * know. 744f8829a4aSRandall Stewart */ 745f8829a4aSRandall Stewart if (chk->sent_rcv_time.tv_usec >= min_wait.tv_usec) { 746f8829a4aSRandall Stewart /* 747f8829a4aSRandall Stewart * ok it was sent after our boundary 748f8829a4aSRandall Stewart * time. 749f8829a4aSRandall Stewart */ 750b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & (SCTP_EARLYFR_LOGGING_ENABLE | SCTP_FR_LOGGING_ENABLE)) { 751f8829a4aSRandall Stewart sctp_log_fr(0, 752f8829a4aSRandall Stewart chk->sent_rcv_time.tv_sec, 753f8829a4aSRandall Stewart chk->sent_rcv_time.tv_usec, 754f8829a4aSRandall Stewart SCTP_FR_T3_STOPPED); 75580fefe0aSRandall Stewart } 756f8829a4aSRandall Stewart continue; 757f8829a4aSRandall Stewart } 758f8829a4aSRandall Stewart } 759810ec536SMichael Tuexen if (stcb->asoc.peer_supports_prsctp && PR_SCTP_TTL_ENABLED(chk->flags)) { 760f8829a4aSRandall Stewart /* Is it expired? */ 76199ddc825SMichael Tuexen if (timevalcmp(&now, &chk->rec.data.timetodrop, >)) { 762f8829a4aSRandall Stewart /* Yes so drop it */ 763f8829a4aSRandall Stewart if (chk->data) { 764ad81507eSRandall Stewart (void)sctp_release_pr_sctp_chunk(stcb, 765f8829a4aSRandall Stewart chk, 766f8829a4aSRandall Stewart (SCTP_RESPONSE_TO_USER_REQ | SCTP_NOTIFY_DATAGRAM_SENT), 7670c0982b8SRandall Stewart SCTP_SO_NOT_LOCKED); 76844fbe462SRandall Stewart cnt_abandoned++; 769f8829a4aSRandall Stewart } 770f8829a4aSRandall Stewart continue; 771f8829a4aSRandall Stewart } 772830d754dSRandall Stewart } 773810ec536SMichael Tuexen if (stcb->asoc.peer_supports_prsctp && PR_SCTP_RTX_ENABLED(chk->flags)) { 774f8829a4aSRandall Stewart /* Has it been retransmitted tv_sec times? */ 775f8829a4aSRandall Stewart if (chk->snd_count > chk->rec.data.timetodrop.tv_sec) { 776f8829a4aSRandall Stewart if (chk->data) { 777ad81507eSRandall Stewart (void)sctp_release_pr_sctp_chunk(stcb, 778f8829a4aSRandall Stewart chk, 779f8829a4aSRandall Stewart (SCTP_RESPONSE_TO_USER_REQ | SCTP_NOTIFY_DATAGRAM_SENT), 7800c0982b8SRandall Stewart SCTP_SO_NOT_LOCKED); 78144fbe462SRandall Stewart cnt_abandoned++; 782f8829a4aSRandall Stewart } 783f8829a4aSRandall Stewart continue; 784f8829a4aSRandall Stewart } 785830d754dSRandall Stewart } 786c105859eSRandall Stewart if (chk->sent < SCTP_DATAGRAM_RESEND) { 787f8829a4aSRandall Stewart sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt); 788f8829a4aSRandall Stewart num_mk++; 789f8829a4aSRandall Stewart if (fir == 0) { 790f8829a4aSRandall Stewart fir = 1; 791f8829a4aSRandall Stewart tsnfirst = chk->rec.data.TSN_seq; 792f8829a4aSRandall Stewart } 793f8829a4aSRandall Stewart tsnlast = chk->rec.data.TSN_seq; 794b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & (SCTP_EARLYFR_LOGGING_ENABLE | SCTP_FR_LOGGING_ENABLE)) { 795f8829a4aSRandall Stewart sctp_log_fr(chk->rec.data.TSN_seq, chk->snd_count, 796f8829a4aSRandall Stewart 0, SCTP_FR_T3_MARKED); 79780fefe0aSRandall Stewart } 79842551e99SRandall Stewart if (chk->rec.data.chunk_was_revoked) { 79942551e99SRandall Stewart /* deflate the cwnd */ 80042551e99SRandall Stewart chk->whoTo->cwnd -= chk->book_size; 80142551e99SRandall Stewart chk->rec.data.chunk_was_revoked = 0; 80242551e99SRandall Stewart } 803f42a358aSRandall Stewart net->marked_retrans++; 804f42a358aSRandall Stewart stcb->asoc.marked_retrans++; 805b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) { 806c105859eSRandall Stewart sctp_misc_ints(SCTP_FLIGHT_LOG_DOWN_RSND_TO, 807a5d547adSRandall Stewart chk->whoTo->flight_size, 808a5d547adSRandall Stewart chk->book_size, 809c105859eSRandall Stewart (uintptr_t) chk->whoTo, 810a5d547adSRandall Stewart chk->rec.data.TSN_seq); 81180fefe0aSRandall Stewart } 812c105859eSRandall Stewart sctp_flight_size_decrease(chk); 813c105859eSRandall Stewart sctp_total_flight_decrease(stcb, chk); 814f8829a4aSRandall Stewart stcb->asoc.peers_rwnd += chk->send_size; 815b3f1ea41SRandall Stewart stcb->asoc.peers_rwnd += SCTP_BASE_SYSCTL(sctp_peer_chunk_oh); 816c105859eSRandall Stewart } 817c105859eSRandall Stewart chk->sent = SCTP_DATAGRAM_RESEND; 818c105859eSRandall Stewart SCTP_STAT_INCR(sctps_markedretrans); 819f8829a4aSRandall Stewart 820f8829a4aSRandall Stewart /* reset the TSN for striking and other FR stuff */ 821f8829a4aSRandall Stewart chk->rec.data.doing_fast_retransmit = 0; 822f8829a4aSRandall Stewart /* Clear any time so NO RTT is being done */ 823f8829a4aSRandall Stewart chk->do_rtt = 0; 824f8829a4aSRandall Stewart if (alt != net) { 825f8829a4aSRandall Stewart sctp_free_remote_addr(chk->whoTo); 826f8829a4aSRandall Stewart chk->no_fr_allowed = 1; 827f8829a4aSRandall Stewart chk->whoTo = alt; 828f8829a4aSRandall Stewart atomic_add_int(&alt->ref_count, 1); 829f8829a4aSRandall Stewart } else { 830f8829a4aSRandall Stewart chk->no_fr_allowed = 0; 831f8829a4aSRandall Stewart if (TAILQ_EMPTY(&stcb->asoc.send_queue)) { 832f8829a4aSRandall Stewart chk->rec.data.fast_retran_tsn = stcb->asoc.sending_seq; 833f8829a4aSRandall Stewart } else { 834f8829a4aSRandall Stewart chk->rec.data.fast_retran_tsn = (TAILQ_FIRST(&stcb->asoc.send_queue))->rec.data.TSN_seq; 835f8829a4aSRandall Stewart } 836f8829a4aSRandall Stewart } 837ad21a364SRandall Stewart /* 838ad21a364SRandall Stewart * CMT: Do not allow FRs on retransmitted TSNs. 839ad21a364SRandall Stewart */ 8407c99d56fSMichael Tuexen if (stcb->asoc.sctp_cmt_on_off > 0) { 841f8829a4aSRandall Stewart chk->no_fr_allowed = 1; 842f8829a4aSRandall Stewart } 84344fbe462SRandall Stewart #ifdef THIS_SHOULD_NOT_BE_DONE 844f8829a4aSRandall Stewart } else if (chk->sent == SCTP_DATAGRAM_ACKED) { 845f8829a4aSRandall Stewart /* remember highest acked one */ 846f8829a4aSRandall Stewart could_be_sent = chk; 84744fbe462SRandall Stewart #endif 848f8829a4aSRandall Stewart } 849f8829a4aSRandall Stewart if (chk->sent == SCTP_DATAGRAM_RESEND) { 850f8829a4aSRandall Stewart cnt_mk++; 851f8829a4aSRandall Stewart } 852f8829a4aSRandall Stewart } 853c105859eSRandall Stewart if ((orig_flight - net->flight_size) != (orig_tf - stcb->asoc.total_flight)) { 854c105859eSRandall Stewart /* we did not subtract the same things? */ 855c105859eSRandall Stewart audit_tf = 1; 856c105859eSRandall Stewart } 857b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & (SCTP_EARLYFR_LOGGING_ENABLE | SCTP_FR_LOGGING_ENABLE)) { 858f8829a4aSRandall Stewart sctp_log_fr(tsnfirst, tsnlast, num_mk, SCTP_FR_T3_TIMEOUT); 85980fefe0aSRandall Stewart } 860f8829a4aSRandall Stewart #ifdef SCTP_DEBUG 861f8829a4aSRandall Stewart if (num_mk) { 862ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_TIMER1, "LAST TSN marked was %x\n", 863ad81507eSRandall Stewart tsnlast); 864ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_TIMER1, "Num marked for retransmission was %d peer-rwd:%ld\n", 865f8829a4aSRandall Stewart num_mk, (u_long)stcb->asoc.peers_rwnd); 866ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_TIMER1, "LAST TSN marked was %x\n", 867ad81507eSRandall Stewart tsnlast); 868ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_TIMER1, "Num marked for retransmission was %d peer-rwd:%d\n", 869f8829a4aSRandall Stewart num_mk, 870ad81507eSRandall Stewart (int)stcb->asoc.peers_rwnd); 871f8829a4aSRandall Stewart } 872f8829a4aSRandall Stewart #endif 873f8829a4aSRandall Stewart *num_marked = num_mk; 87444fbe462SRandall Stewart *num_abandoned = cnt_abandoned; 8756c065bbeSRandall Stewart /* 8766c065bbeSRandall Stewart * Now check for a ECN Echo that may be stranded And include the 8776c065bbeSRandall Stewart * cnt_mk'd to have all resends in the control queue. 8786c065bbeSRandall Stewart */ 8796c065bbeSRandall Stewart TAILQ_FOREACH(chk, &stcb->asoc.control_send_queue, sctp_next) { 8806c065bbeSRandall Stewart if (chk->sent == SCTP_DATAGRAM_RESEND) { 8816c065bbeSRandall Stewart cnt_mk++; 8826c065bbeSRandall Stewart } 8836c065bbeSRandall Stewart if ((chk->whoTo == net) && 8846c065bbeSRandall Stewart (chk->rec.chunk_id.id == SCTP_ECN_ECHO)) { 8856c065bbeSRandall Stewart sctp_free_remote_addr(chk->whoTo); 8866c065bbeSRandall Stewart chk->whoTo = alt; 8876c065bbeSRandall Stewart if (chk->sent != SCTP_DATAGRAM_RESEND) { 8886c065bbeSRandall Stewart chk->sent = SCTP_DATAGRAM_RESEND; 8896c065bbeSRandall Stewart sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt); 8906c065bbeSRandall Stewart cnt_mk++; 8916c065bbeSRandall Stewart } 8926c065bbeSRandall Stewart atomic_add_int(&alt->ref_count, 1); 8936c065bbeSRandall Stewart } 8946c065bbeSRandall Stewart } 89544fbe462SRandall Stewart #ifdef THIS_SHOULD_NOT_BE_DONE 896f8829a4aSRandall Stewart if ((stcb->asoc.sent_queue_retran_cnt == 0) && (could_be_sent)) { 897f8829a4aSRandall Stewart /* fix it so we retransmit the highest acked anyway */ 898f8829a4aSRandall Stewart sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt); 899f8829a4aSRandall Stewart cnt_mk++; 900f8829a4aSRandall Stewart could_be_sent->sent = SCTP_DATAGRAM_RESEND; 901f8829a4aSRandall Stewart } 90244fbe462SRandall Stewart #endif 903f8829a4aSRandall Stewart if (stcb->asoc.sent_queue_retran_cnt != cnt_mk) { 904a5d547adSRandall Stewart #ifdef INVARIANTS 90518e198d3SRandall Stewart SCTP_PRINTF("Local Audit says there are %d for retran asoc cnt:%d we marked:%d this time\n", 90618e198d3SRandall Stewart cnt_mk, stcb->asoc.sent_queue_retran_cnt, num_mk); 907f8829a4aSRandall Stewart #endif 908f8829a4aSRandall Stewart #ifndef SCTP_AUDITING_ENABLED 909f8829a4aSRandall Stewart stcb->asoc.sent_queue_retran_cnt = cnt_mk; 910f8829a4aSRandall Stewart #endif 911f8829a4aSRandall Stewart } 912f8829a4aSRandall Stewart if (audit_tf) { 913ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_TIMER4, 914ad81507eSRandall Stewart "Audit total flight due to negative value net:%p\n", 915f8829a4aSRandall Stewart net); 916f8829a4aSRandall Stewart stcb->asoc.total_flight = 0; 917f8829a4aSRandall Stewart stcb->asoc.total_flight_count = 0; 918f8829a4aSRandall Stewart /* Clear all networks flight size */ 919f8829a4aSRandall Stewart TAILQ_FOREACH(lnets, &stcb->asoc.nets, sctp_next) { 920f8829a4aSRandall Stewart lnets->flight_size = 0; 921ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_TIMER4, 922ad81507eSRandall Stewart "Net:%p c-f cwnd:%d ssthresh:%d\n", 923f8829a4aSRandall Stewart lnets, lnets->cwnd, lnets->ssthresh); 924f8829a4aSRandall Stewart } 925f8829a4aSRandall Stewart TAILQ_FOREACH(chk, &stcb->asoc.sent_queue, sctp_next) { 926f8829a4aSRandall Stewart if (chk->sent < SCTP_DATAGRAM_RESEND) { 927b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FLIGHT_LOGGING_ENABLE) { 928a5d547adSRandall Stewart sctp_misc_ints(SCTP_FLIGHT_LOG_UP, 929a5d547adSRandall Stewart chk->whoTo->flight_size, 930a5d547adSRandall Stewart chk->book_size, 931c105859eSRandall Stewart (uintptr_t) chk->whoTo, 932a5d547adSRandall Stewart chk->rec.data.TSN_seq); 93380fefe0aSRandall Stewart } 934c105859eSRandall Stewart sctp_flight_size_increase(chk); 935c105859eSRandall Stewart sctp_total_flight_increase(stcb, chk); 936f8829a4aSRandall Stewart } 937f8829a4aSRandall Stewart } 938f8829a4aSRandall Stewart } 939f8829a4aSRandall Stewart /* We return 1 if we only have a window probe outstanding */ 940f8829a4aSRandall Stewart return (0); 941f8829a4aSRandall Stewart } 942f8829a4aSRandall Stewart 943f8829a4aSRandall Stewart 944f8829a4aSRandall Stewart int 945f8829a4aSRandall Stewart sctp_t3rxt_timer(struct sctp_inpcb *inp, 946f8829a4aSRandall Stewart struct sctp_tcb *stcb, 947f8829a4aSRandall Stewart struct sctp_nets *net) 948f8829a4aSRandall Stewart { 949f8829a4aSRandall Stewart struct sctp_nets *alt; 95044fbe462SRandall Stewart int win_probe, num_mk, num_abandoned; 951f8829a4aSRandall Stewart 952b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_FR_LOGGING_ENABLE) { 953562a89b5SRandall Stewart sctp_log_fr(0, 0, 0, SCTP_FR_T3_TIMEOUT); 95480fefe0aSRandall Stewart } 955b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_LOGGING_ENABLE) { 956f8829a4aSRandall Stewart struct sctp_nets *lnet; 957f8829a4aSRandall Stewart 958f8829a4aSRandall Stewart TAILQ_FOREACH(lnet, &stcb->asoc.nets, sctp_next) { 959f8829a4aSRandall Stewart if (net == lnet) { 960f8829a4aSRandall Stewart sctp_log_cwnd(stcb, lnet, 1, SCTP_CWND_LOG_FROM_T3); 961f8829a4aSRandall Stewart } else { 962f8829a4aSRandall Stewart sctp_log_cwnd(stcb, lnet, 0, SCTP_CWND_LOG_FROM_T3); 963f8829a4aSRandall Stewart } 964f8829a4aSRandall Stewart } 965f8829a4aSRandall Stewart } 966f8829a4aSRandall Stewart /* Find an alternate and mark those for retransmission */ 967f8829a4aSRandall Stewart if ((stcb->asoc.peers_rwnd == 0) && 968f8829a4aSRandall Stewart (stcb->asoc.total_flight < net->mtu)) { 969f8829a4aSRandall Stewart SCTP_STAT_INCR(sctps_timowindowprobe); 970f8829a4aSRandall Stewart win_probe = 1; 971f8829a4aSRandall Stewart } else { 972f8829a4aSRandall Stewart win_probe = 0; 973f8829a4aSRandall Stewart } 974c105859eSRandall Stewart 975b54d3a6cSRandall Stewart /* 976b54d3a6cSRandall Stewart * JRS 5/14/07 - If CMT PF is on and the destination if not already 977b54d3a6cSRandall Stewart * in PF state, set the destination to PF state and store the 978b54d3a6cSRandall Stewart * current time as the time that the destination was last active. In 979b54d3a6cSRandall Stewart * addition, find an alternate destination with PF-based 980b54d3a6cSRandall Stewart * find_alt_net(). 981b54d3a6cSRandall Stewart */ 9827c99d56fSMichael Tuexen if ((stcb->asoc.sctp_cmt_on_off > 0) && 98320083c2eSMichael Tuexen (stcb->asoc.sctp_cmt_pf > 0)) { 984b54d3a6cSRandall Stewart if ((net->dest_state & SCTP_ADDR_PF) != SCTP_ADDR_PF) { 985b54d3a6cSRandall Stewart net->dest_state |= SCTP_ADDR_PF; 98618e198d3SRandall Stewart net->last_active = sctp_get_tick_count(); 987b54d3a6cSRandall Stewart SCTPDBG(SCTP_DEBUG_TIMER4, "Destination %p moved from active to PF.\n", 988b54d3a6cSRandall Stewart net); 989b54d3a6cSRandall Stewart } 990b54d3a6cSRandall Stewart alt = sctp_find_alternate_net(stcb, net, 2); 9917c99d56fSMichael Tuexen } else if (stcb->asoc.sctp_cmt_on_off > 0) { 992c105859eSRandall Stewart /* 993c105859eSRandall Stewart * CMT: Using RTX_SSTHRESH policy for CMT. If CMT is being 994c105859eSRandall Stewart * used, then pick dest with largest ssthresh for any 995c105859eSRandall Stewart * retransmission. 996c105859eSRandall Stewart */ 997b61c3588SMichael Tuexen alt = sctp_find_alternate_net(stcb, net, 1); 998c105859eSRandall Stewart /* 999c105859eSRandall Stewart * CUCv2: If a different dest is picked for the 1000c105859eSRandall Stewart * retransmission, then new (rtx-)pseudo_cumack needs to be 1001c105859eSRandall Stewart * tracked for orig dest. Let CUCv2 track new (rtx-) 1002c105859eSRandall Stewart * pseudo-cumack always. 1003c105859eSRandall Stewart */ 1004c105859eSRandall Stewart net->find_pseudo_cumack = 1; 1005c105859eSRandall Stewart net->find_rtx_pseudo_cumack = 1; 1006c105859eSRandall Stewart } else { /* CMT is OFF */ 1007f8829a4aSRandall Stewart alt = sctp_find_alternate_net(stcb, net, 0); 1008c105859eSRandall Stewart } 100944fbe462SRandall Stewart num_mk = 0; 101044fbe462SRandall Stewart num_abandoned = 0; 101144fbe462SRandall Stewart (void)sctp_mark_all_for_resend(stcb, net, alt, win_probe, 101244fbe462SRandall Stewart &num_mk, &num_abandoned); 1013f8829a4aSRandall Stewart /* FR Loss recovery just ended with the T3. */ 1014f8829a4aSRandall Stewart stcb->asoc.fast_retran_loss_recovery = 0; 1015f8829a4aSRandall Stewart 1016f8829a4aSRandall Stewart /* CMT FR loss recovery ended with the T3 */ 1017f8829a4aSRandall Stewart net->fast_retran_loss_recovery = 0; 1018f8829a4aSRandall Stewart 1019f8829a4aSRandall Stewart /* 1020f8829a4aSRandall Stewart * setup the sat loss recovery that prevents satellite cwnd advance. 1021f8829a4aSRandall Stewart */ 1022f8829a4aSRandall Stewart stcb->asoc.sat_t3_loss_recovery = 1; 1023f8829a4aSRandall Stewart stcb->asoc.sat_t3_recovery_tsn = stcb->asoc.sending_seq; 1024f8829a4aSRandall Stewart 1025f8829a4aSRandall Stewart /* Backoff the timer and cwnd */ 102644fbe462SRandall Stewart sctp_backoff_on_timeout(stcb, net, win_probe, num_mk, num_abandoned); 1027f8829a4aSRandall Stewart if (win_probe == 0) { 1028f8829a4aSRandall Stewart /* We don't do normal threshold management on window probes */ 1029f8829a4aSRandall Stewart if (sctp_threshold_management(inp, stcb, net, 1030f8829a4aSRandall Stewart stcb->asoc.max_send_times)) { 1031f8829a4aSRandall Stewart /* Association was destroyed */ 1032f8829a4aSRandall Stewart return (1); 1033f8829a4aSRandall Stewart } else { 1034f8829a4aSRandall Stewart if (net != stcb->asoc.primary_destination) { 1035f8829a4aSRandall Stewart /* send a immediate HB if our RTO is stale */ 1036f8829a4aSRandall Stewart struct timeval now; 1037f8829a4aSRandall Stewart unsigned int ms_goneby; 1038f8829a4aSRandall Stewart 10396e55db54SRandall Stewart (void)SCTP_GETTIME_TIMEVAL(&now); 1040f8829a4aSRandall Stewart if (net->last_sent_time.tv_sec) { 1041f8829a4aSRandall Stewart ms_goneby = (now.tv_sec - net->last_sent_time.tv_sec) * 1000; 1042f8829a4aSRandall Stewart } else { 1043f8829a4aSRandall Stewart ms_goneby = 0; 1044f8829a4aSRandall Stewart } 1045f8829a4aSRandall Stewart if ((ms_goneby > net->RTO) || (net->RTO == 0)) { 1046f8829a4aSRandall Stewart /* 1047f8829a4aSRandall Stewart * no recent feed back in an RTO or 1048f8829a4aSRandall Stewart * more, request a RTT update 1049f8829a4aSRandall Stewart */ 1050b54d3a6cSRandall Stewart if (sctp_send_hb(stcb, 1, net) < 0) 1051830d754dSRandall Stewart /* 1052830d754dSRandall Stewart * Less than 0 means we lost 1053830d754dSRandall Stewart * the assoc 1054830d754dSRandall Stewart */ 1055830d754dSRandall Stewart return (1); 1056f8829a4aSRandall Stewart } 1057f8829a4aSRandall Stewart } 1058f8829a4aSRandall Stewart } 1059f8829a4aSRandall Stewart } else { 1060f8829a4aSRandall Stewart /* 1061f8829a4aSRandall Stewart * For a window probe we don't penalize the net's but only 1062f8829a4aSRandall Stewart * the association. This may fail it if SACKs are not coming 1063f8829a4aSRandall Stewart * back. If sack's are coming with rwnd locked at 0, we will 1064f8829a4aSRandall Stewart * continue to hold things waiting for rwnd to raise 1065f8829a4aSRandall Stewart */ 1066f8829a4aSRandall Stewart if (sctp_threshold_management(inp, stcb, NULL, 1067f8829a4aSRandall Stewart stcb->asoc.max_send_times)) { 1068f8829a4aSRandall Stewart /* Association was destroyed */ 1069f8829a4aSRandall Stewart return (1); 1070f8829a4aSRandall Stewart } 1071f8829a4aSRandall Stewart } 1072f8829a4aSRandall Stewart if (net->dest_state & SCTP_ADDR_NOT_REACHABLE) { 1073f8829a4aSRandall Stewart /* Move all pending over too */ 10749eea4a2dSMichael Tuexen sctp_move_chunks_from_net(stcb, net); 107517205eccSRandall Stewart 107617205eccSRandall Stewart /* 107717205eccSRandall Stewart * Get the address that failed, to force a new src address 107817205eccSRandall Stewart * selecton and a route allocation. 107917205eccSRandall Stewart */ 108017205eccSRandall Stewart if (net->ro._s_addr) { 108117205eccSRandall Stewart sctp_free_ifa(net->ro._s_addr); 108217205eccSRandall Stewart net->ro._s_addr = NULL; 108317205eccSRandall Stewart } 108417205eccSRandall Stewart net->src_addr_selected = 0; 108517205eccSRandall Stewart 108617205eccSRandall Stewart /* Force a route allocation too */ 108717205eccSRandall Stewart if (net->ro.ro_rt) { 108817205eccSRandall Stewart RTFREE(net->ro.ro_rt); 108917205eccSRandall Stewart net->ro.ro_rt = NULL; 109017205eccSRandall Stewart } 1091f8829a4aSRandall Stewart /* Was it our primary? */ 1092f8829a4aSRandall Stewart if ((stcb->asoc.primary_destination == net) && (alt != net)) { 1093f8829a4aSRandall Stewart /* 1094f8829a4aSRandall Stewart * Yes, note it as such and find an alternate note: 1095f8829a4aSRandall Stewart * this means HB code must use this to resent the 1096f8829a4aSRandall Stewart * primary if it goes active AND if someone does a 1097f8829a4aSRandall Stewart * change-primary then this flag must be cleared 1098f8829a4aSRandall Stewart * from any net structures. 1099f8829a4aSRandall Stewart */ 1100f8829a4aSRandall Stewart if (sctp_set_primary_addr(stcb, 1101f8829a4aSRandall Stewart (struct sockaddr *)NULL, 1102f8829a4aSRandall Stewart alt) == 0) { 1103f8829a4aSRandall Stewart net->dest_state |= SCTP_ADDR_WAS_PRIMARY; 1104f8829a4aSRandall Stewart } 1105f8829a4aSRandall Stewart } 11067c99d56fSMichael Tuexen } else if ((stcb->asoc.sctp_cmt_on_off > 0) && 110720083c2eSMichael Tuexen (stcb->asoc.sctp_cmt_pf > 0) && 110820083c2eSMichael Tuexen ((net->dest_state & SCTP_ADDR_PF) == SCTP_ADDR_PF)) { 1109b54d3a6cSRandall Stewart /* 1110b54d3a6cSRandall Stewart * JRS 5/14/07 - If the destination hasn't failed completely 1111b54d3a6cSRandall Stewart * but is in PF state, a PF-heartbeat needs to be sent 1112b54d3a6cSRandall Stewart * manually. 1113b54d3a6cSRandall Stewart */ 1114b54d3a6cSRandall Stewart if (sctp_send_hb(stcb, 1, net) < 0) 1115830d754dSRandall Stewart /* Return less than 0 means we lost the association */ 1116830d754dSRandall Stewart return (1); 1117f8829a4aSRandall Stewart } 1118f8829a4aSRandall Stewart /* 1119f8829a4aSRandall Stewart * Special case for cookie-echo'ed case, we don't do output but must 1120f8829a4aSRandall Stewart * await the COOKIE-ACK before retransmission 1121f8829a4aSRandall Stewart */ 1122f8829a4aSRandall Stewart if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_COOKIE_ECHOED) { 1123f8829a4aSRandall Stewart /* 1124f8829a4aSRandall Stewart * Here we just reset the timer and start again since we 1125f8829a4aSRandall Stewart * have not established the asoc 1126f8829a4aSRandall Stewart */ 1127f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_SEND, inp, stcb, net); 1128f8829a4aSRandall Stewart return (0); 1129f8829a4aSRandall Stewart } 1130f8829a4aSRandall Stewart if (stcb->asoc.peer_supports_prsctp) { 1131f8829a4aSRandall Stewart struct sctp_tmit_chunk *lchk; 1132f8829a4aSRandall Stewart 1133f8829a4aSRandall Stewart lchk = sctp_try_advance_peer_ack_point(stcb, &stcb->asoc); 1134f8829a4aSRandall Stewart /* C3. See if we need to send a Fwd-TSN */ 113520b07a4dSMichael Tuexen if (SCTP_TSN_GT(stcb->asoc.advanced_peer_ack_point, stcb->asoc.last_acked_seq)) { 1136f8829a4aSRandall Stewart send_forward_tsn(stcb, &stcb->asoc); 1137f8829a4aSRandall Stewart if (lchk) { 1138f8829a4aSRandall Stewart /* Assure a timer is up */ 1139f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep, stcb, lchk->whoTo); 1140f8829a4aSRandall Stewart } 1141f8829a4aSRandall Stewart } 1142f8829a4aSRandall Stewart } 1143b3f1ea41SRandall Stewart if (SCTP_BASE_SYSCTL(sctp_logging_level) & SCTP_CWND_MONITOR_ENABLE) { 1144f8829a4aSRandall Stewart sctp_log_cwnd(stcb, net, net->cwnd, SCTP_CWND_LOG_FROM_RTX); 114580fefe0aSRandall Stewart } 1146f8829a4aSRandall Stewart return (0); 1147f8829a4aSRandall Stewart } 1148f8829a4aSRandall Stewart 1149f8829a4aSRandall Stewart int 1150f8829a4aSRandall Stewart sctp_t1init_timer(struct sctp_inpcb *inp, 1151f8829a4aSRandall Stewart struct sctp_tcb *stcb, 1152f8829a4aSRandall Stewart struct sctp_nets *net) 1153f8829a4aSRandall Stewart { 1154f8829a4aSRandall Stewart /* bump the thresholds */ 1155f8829a4aSRandall Stewart if (stcb->asoc.delayed_connection) { 1156f8829a4aSRandall Stewart /* 1157f8829a4aSRandall Stewart * special hook for delayed connection. The library did NOT 1158f8829a4aSRandall Stewart * complete the rest of its sends. 1159f8829a4aSRandall Stewart */ 1160f8829a4aSRandall Stewart stcb->asoc.delayed_connection = 0; 1161ceaad40aSRandall Stewart sctp_send_initiate(inp, stcb, SCTP_SO_NOT_LOCKED); 1162f8829a4aSRandall Stewart return (0); 1163f8829a4aSRandall Stewart } 1164f8829a4aSRandall Stewart if (SCTP_GET_STATE((&stcb->asoc)) != SCTP_STATE_COOKIE_WAIT) { 1165f8829a4aSRandall Stewart return (0); 1166f8829a4aSRandall Stewart } 1167f8829a4aSRandall Stewart if (sctp_threshold_management(inp, stcb, net, 1168f8829a4aSRandall Stewart stcb->asoc.max_init_times)) { 1169f8829a4aSRandall Stewart /* Association was destroyed */ 1170f8829a4aSRandall Stewart return (1); 1171f8829a4aSRandall Stewart } 1172f8829a4aSRandall Stewart stcb->asoc.dropped_special_cnt = 0; 117344fbe462SRandall Stewart sctp_backoff_on_timeout(stcb, stcb->asoc.primary_destination, 1, 0, 0); 1174f8829a4aSRandall Stewart if (stcb->asoc.initial_init_rto_max < net->RTO) { 1175f8829a4aSRandall Stewart net->RTO = stcb->asoc.initial_init_rto_max; 1176f8829a4aSRandall Stewart } 1177f8829a4aSRandall Stewart if (stcb->asoc.numnets > 1) { 1178f8829a4aSRandall Stewart /* If we have more than one addr use it */ 1179f8829a4aSRandall Stewart struct sctp_nets *alt; 1180f8829a4aSRandall Stewart 1181f8829a4aSRandall Stewart alt = sctp_find_alternate_net(stcb, stcb->asoc.primary_destination, 0); 1182b61c3588SMichael Tuexen if (alt != stcb->asoc.primary_destination) { 11839eea4a2dSMichael Tuexen sctp_move_chunks_from_net(stcb, stcb->asoc.primary_destination); 1184f8829a4aSRandall Stewart stcb->asoc.primary_destination = alt; 1185f8829a4aSRandall Stewart } 1186f8829a4aSRandall Stewart } 1187f8829a4aSRandall Stewart /* Send out a new init */ 1188ceaad40aSRandall Stewart sctp_send_initiate(inp, stcb, SCTP_SO_NOT_LOCKED); 1189f8829a4aSRandall Stewart return (0); 1190f8829a4aSRandall Stewart } 1191f8829a4aSRandall Stewart 1192f8829a4aSRandall Stewart /* 1193f8829a4aSRandall Stewart * For cookie and asconf we actually need to find and mark for resend, then 1194f8829a4aSRandall Stewart * increment the resend counter (after all the threshold management stuff of 1195f8829a4aSRandall Stewart * course). 1196f8829a4aSRandall Stewart */ 1197f8829a4aSRandall Stewart int 1198f8829a4aSRandall Stewart sctp_cookie_timer(struct sctp_inpcb *inp, 1199f8829a4aSRandall Stewart struct sctp_tcb *stcb, 1200f8829a4aSRandall Stewart struct sctp_nets *net) 1201f8829a4aSRandall Stewart { 1202f8829a4aSRandall Stewart struct sctp_nets *alt; 1203f8829a4aSRandall Stewart struct sctp_tmit_chunk *cookie; 1204f8829a4aSRandall Stewart 1205f8829a4aSRandall Stewart /* first before all else we must find the cookie */ 1206f8829a4aSRandall Stewart TAILQ_FOREACH(cookie, &stcb->asoc.control_send_queue, sctp_next) { 1207f8829a4aSRandall Stewart if (cookie->rec.chunk_id.id == SCTP_COOKIE_ECHO) { 1208f8829a4aSRandall Stewart break; 1209f8829a4aSRandall Stewart } 1210f8829a4aSRandall Stewart } 1211f8829a4aSRandall Stewart if (cookie == NULL) { 1212f8829a4aSRandall Stewart if (SCTP_GET_STATE(&stcb->asoc) == SCTP_STATE_COOKIE_ECHOED) { 1213f8829a4aSRandall Stewart /* FOOBAR! */ 1214f8829a4aSRandall Stewart struct mbuf *oper; 1215f8829a4aSRandall Stewart 1216f8829a4aSRandall Stewart oper = sctp_get_mbuf_for_msg((sizeof(struct sctp_paramhdr) + sizeof(uint32_t)), 1217f8829a4aSRandall Stewart 0, M_DONTWAIT, 1, MT_DATA); 1218f8829a4aSRandall Stewart if (oper) { 1219f8829a4aSRandall Stewart struct sctp_paramhdr *ph; 1220f8829a4aSRandall Stewart uint32_t *ippp; 1221f8829a4aSRandall Stewart 1222139bc87fSRandall Stewart SCTP_BUF_LEN(oper) = sizeof(struct sctp_paramhdr) + 1223f8829a4aSRandall Stewart sizeof(uint32_t); 1224f8829a4aSRandall Stewart ph = mtod(oper, struct sctp_paramhdr *); 1225f8829a4aSRandall Stewart ph->param_type = htons(SCTP_CAUSE_PROTOCOL_VIOLATION); 1226139bc87fSRandall Stewart ph->param_length = htons(SCTP_BUF_LEN(oper)); 1227f8829a4aSRandall Stewart ippp = (uint32_t *) (ph + 1); 1228b54d3a6cSRandall Stewart *ippp = htonl(SCTP_FROM_SCTP_TIMER + SCTP_LOC_3); 1229f8829a4aSRandall Stewart } 1230b54d3a6cSRandall Stewart inp->last_abort_code = SCTP_FROM_SCTP_TIMER + SCTP_LOC_4; 1231f8829a4aSRandall Stewart sctp_abort_an_association(inp, stcb, SCTP_INTERNAL_ERROR, 1232ceaad40aSRandall Stewart oper, SCTP_SO_NOT_LOCKED); 1233f8829a4aSRandall Stewart } else { 1234a5d547adSRandall Stewart #ifdef INVARIANTS 1235f8829a4aSRandall Stewart panic("Cookie timer expires in wrong state?"); 1236f8829a4aSRandall Stewart #else 1237ad81507eSRandall Stewart SCTP_PRINTF("Strange in state %d not cookie-echoed yet c-e timer expires?\n", SCTP_GET_STATE(&stcb->asoc)); 1238f8829a4aSRandall Stewart return (0); 1239f8829a4aSRandall Stewart #endif 1240f8829a4aSRandall Stewart } 1241f8829a4aSRandall Stewart return (0); 1242f8829a4aSRandall Stewart } 1243f8829a4aSRandall Stewart /* Ok we found the cookie, threshold management next */ 1244f8829a4aSRandall Stewart if (sctp_threshold_management(inp, stcb, cookie->whoTo, 1245f8829a4aSRandall Stewart stcb->asoc.max_init_times)) { 1246f8829a4aSRandall Stewart /* Assoc is over */ 1247f8829a4aSRandall Stewart return (1); 1248f8829a4aSRandall Stewart } 1249f8829a4aSRandall Stewart /* 1250f8829a4aSRandall Stewart * cleared theshold management now lets backoff the address & select 1251f8829a4aSRandall Stewart * an alternate 1252f8829a4aSRandall Stewart */ 1253f8829a4aSRandall Stewart stcb->asoc.dropped_special_cnt = 0; 125444fbe462SRandall Stewart sctp_backoff_on_timeout(stcb, cookie->whoTo, 1, 0, 0); 1255f8829a4aSRandall Stewart alt = sctp_find_alternate_net(stcb, cookie->whoTo, 0); 1256f8829a4aSRandall Stewart if (alt != cookie->whoTo) { 1257f8829a4aSRandall Stewart sctp_free_remote_addr(cookie->whoTo); 1258f8829a4aSRandall Stewart cookie->whoTo = alt; 1259f8829a4aSRandall Stewart atomic_add_int(&alt->ref_count, 1); 1260f8829a4aSRandall Stewart } 1261f8829a4aSRandall Stewart /* Now mark the retran info */ 1262f8829a4aSRandall Stewart if (cookie->sent != SCTP_DATAGRAM_RESEND) { 1263f8829a4aSRandall Stewart sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt); 1264f8829a4aSRandall Stewart } 1265f8829a4aSRandall Stewart cookie->sent = SCTP_DATAGRAM_RESEND; 1266f8829a4aSRandall Stewart /* 1267f8829a4aSRandall Stewart * Now call the output routine to kick out the cookie again, Note we 1268f8829a4aSRandall Stewart * don't mark any chunks for retran so that FR will need to kick in 1269f8829a4aSRandall Stewart * to move these (or a send timer). 1270f8829a4aSRandall Stewart */ 1271f8829a4aSRandall Stewart return (0); 1272f8829a4aSRandall Stewart } 1273f8829a4aSRandall Stewart 1274f8829a4aSRandall Stewart int 1275f8829a4aSRandall Stewart sctp_strreset_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb, 1276f8829a4aSRandall Stewart struct sctp_nets *net) 1277f8829a4aSRandall Stewart { 1278f8829a4aSRandall Stewart struct sctp_nets *alt; 1279f8829a4aSRandall Stewart struct sctp_tmit_chunk *strrst = NULL, *chk = NULL; 1280f8829a4aSRandall Stewart 1281f8829a4aSRandall Stewart if (stcb->asoc.stream_reset_outstanding == 0) { 1282f8829a4aSRandall Stewart return (0); 1283f8829a4aSRandall Stewart } 1284f8829a4aSRandall Stewart /* find the existing STRRESET, we use the seq number we sent out on */ 1285ad81507eSRandall Stewart (void)sctp_find_stream_reset(stcb, stcb->asoc.str_reset_seq_out, &strrst); 1286f8829a4aSRandall Stewart if (strrst == NULL) { 1287f8829a4aSRandall Stewart return (0); 1288f8829a4aSRandall Stewart } 1289f8829a4aSRandall Stewart /* do threshold management */ 1290f8829a4aSRandall Stewart if (sctp_threshold_management(inp, stcb, strrst->whoTo, 1291f8829a4aSRandall Stewart stcb->asoc.max_send_times)) { 1292f8829a4aSRandall Stewart /* Assoc is over */ 1293f8829a4aSRandall Stewart return (1); 1294f8829a4aSRandall Stewart } 1295f8829a4aSRandall Stewart /* 1296f8829a4aSRandall Stewart * cleared theshold management now lets backoff the address & select 1297f8829a4aSRandall Stewart * an alternate 1298f8829a4aSRandall Stewart */ 129944fbe462SRandall Stewart sctp_backoff_on_timeout(stcb, strrst->whoTo, 1, 0, 0); 1300f8829a4aSRandall Stewart alt = sctp_find_alternate_net(stcb, strrst->whoTo, 0); 1301f8829a4aSRandall Stewart sctp_free_remote_addr(strrst->whoTo); 1302f8829a4aSRandall Stewart strrst->whoTo = alt; 1303f8829a4aSRandall Stewart atomic_add_int(&alt->ref_count, 1); 1304f8829a4aSRandall Stewart 1305f8829a4aSRandall Stewart /* See if a ECN Echo is also stranded */ 1306f8829a4aSRandall Stewart TAILQ_FOREACH(chk, &stcb->asoc.control_send_queue, sctp_next) { 1307f8829a4aSRandall Stewart if ((chk->whoTo == net) && 1308f8829a4aSRandall Stewart (chk->rec.chunk_id.id == SCTP_ECN_ECHO)) { 1309f8829a4aSRandall Stewart sctp_free_remote_addr(chk->whoTo); 1310f8829a4aSRandall Stewart if (chk->sent != SCTP_DATAGRAM_RESEND) { 1311f8829a4aSRandall Stewart chk->sent = SCTP_DATAGRAM_RESEND; 1312f8829a4aSRandall Stewart sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt); 1313f8829a4aSRandall Stewart } 1314f8829a4aSRandall Stewart chk->whoTo = alt; 1315f8829a4aSRandall Stewart atomic_add_int(&alt->ref_count, 1); 1316f8829a4aSRandall Stewart } 1317f8829a4aSRandall Stewart } 1318f8829a4aSRandall Stewart if (net->dest_state & SCTP_ADDR_NOT_REACHABLE) { 1319f8829a4aSRandall Stewart /* 1320f8829a4aSRandall Stewart * If the address went un-reachable, we need to move to 1321f8829a4aSRandall Stewart * alternates for ALL chk's in queue 1322f8829a4aSRandall Stewart */ 13239eea4a2dSMichael Tuexen sctp_move_chunks_from_net(stcb, net); 1324f8829a4aSRandall Stewart } 1325f8829a4aSRandall Stewart /* mark the retran info */ 1326f8829a4aSRandall Stewart if (strrst->sent != SCTP_DATAGRAM_RESEND) 1327f8829a4aSRandall Stewart sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt); 1328f8829a4aSRandall Stewart strrst->sent = SCTP_DATAGRAM_RESEND; 1329f8829a4aSRandall Stewart 1330f8829a4aSRandall Stewart /* restart the timer */ 1331f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_STRRESET, inp, stcb, strrst->whoTo); 1332f8829a4aSRandall Stewart return (0); 1333f8829a4aSRandall Stewart } 1334f8829a4aSRandall Stewart 1335f8829a4aSRandall Stewart int 1336f8829a4aSRandall Stewart sctp_asconf_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb, 1337f8829a4aSRandall Stewart struct sctp_nets *net) 1338f8829a4aSRandall Stewart { 1339f8829a4aSRandall Stewart struct sctp_nets *alt; 13404a9ef3f8SMichael Tuexen struct sctp_tmit_chunk *asconf, *chk; 1341f8829a4aSRandall Stewart 13421b649582SRandall Stewart /* is this a first send, or a retransmission? */ 1343c54a18d2SRandall Stewart if (TAILQ_EMPTY(&stcb->asoc.asconf_send_queue)) { 1344f8829a4aSRandall Stewart /* compose a new ASCONF chunk and send it */ 13453232788eSRandall Stewart sctp_send_asconf(stcb, net, SCTP_ADDR_NOT_LOCKED); 1346f8829a4aSRandall Stewart } else { 13471b649582SRandall Stewart /* 13481b649582SRandall Stewart * Retransmission of the existing ASCONF is needed 13491b649582SRandall Stewart */ 1350f8829a4aSRandall Stewart 1351f8829a4aSRandall Stewart /* find the existing ASCONF */ 1352c54a18d2SRandall Stewart asconf = TAILQ_FIRST(&stcb->asoc.asconf_send_queue); 1353f8829a4aSRandall Stewart if (asconf == NULL) { 1354f8829a4aSRandall Stewart return (0); 1355f8829a4aSRandall Stewart } 1356f8829a4aSRandall Stewart /* do threshold management */ 1357f8829a4aSRandall Stewart if (sctp_threshold_management(inp, stcb, asconf->whoTo, 1358f8829a4aSRandall Stewart stcb->asoc.max_send_times)) { 1359f8829a4aSRandall Stewart /* Assoc is over */ 1360f8829a4aSRandall Stewart return (1); 1361f8829a4aSRandall Stewart } 1362f8829a4aSRandall Stewart if (asconf->snd_count > stcb->asoc.max_send_times) { 1363f8829a4aSRandall Stewart /* 13641b649582SRandall Stewart * Something is rotten: our peer is not responding 13651b649582SRandall Stewart * to ASCONFs but apparently is to other chunks. 13661b649582SRandall Stewart * i.e. it is not properly handling the chunk type 13671b649582SRandall Stewart * upper bits. Mark this peer as ASCONF incapable 13681b649582SRandall Stewart * and cleanup. 1369f8829a4aSRandall Stewart */ 1370ad81507eSRandall Stewart SCTPDBG(SCTP_DEBUG_TIMER1, "asconf_timer: Peer has not responded to our repeated ASCONFs\n"); 1371f8829a4aSRandall Stewart sctp_asconf_cleanup(stcb, net); 1372f8829a4aSRandall Stewart return (0); 1373f8829a4aSRandall Stewart } 1374f8829a4aSRandall Stewart /* 13751b649582SRandall Stewart * cleared threshold management, so now backoff the net and 13761b649582SRandall Stewart * select an alternate 1377f8829a4aSRandall Stewart */ 137844fbe462SRandall Stewart sctp_backoff_on_timeout(stcb, asconf->whoTo, 1, 0, 0); 1379f8829a4aSRandall Stewart alt = sctp_find_alternate_net(stcb, asconf->whoTo, 0); 1380c54a18d2SRandall Stewart if (asconf->whoTo != alt) { 1381f8829a4aSRandall Stewart sctp_free_remote_addr(asconf->whoTo); 1382f8829a4aSRandall Stewart asconf->whoTo = alt; 1383f8829a4aSRandall Stewart atomic_add_int(&alt->ref_count, 1); 1384c54a18d2SRandall Stewart } 13851b649582SRandall Stewart /* See if an ECN Echo is also stranded */ 1386f8829a4aSRandall Stewart TAILQ_FOREACH(chk, &stcb->asoc.control_send_queue, sctp_next) { 1387f8829a4aSRandall Stewart if ((chk->whoTo == net) && 1388f8829a4aSRandall Stewart (chk->rec.chunk_id.id == SCTP_ECN_ECHO)) { 1389f8829a4aSRandall Stewart sctp_free_remote_addr(chk->whoTo); 1390f8829a4aSRandall Stewart chk->whoTo = alt; 1391f8829a4aSRandall Stewart if (chk->sent != SCTP_DATAGRAM_RESEND) { 1392f8829a4aSRandall Stewart chk->sent = SCTP_DATAGRAM_RESEND; 1393f8829a4aSRandall Stewart sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt); 1394f8829a4aSRandall Stewart } 1395f8829a4aSRandall Stewart atomic_add_int(&alt->ref_count, 1); 1396f8829a4aSRandall Stewart } 1397f8829a4aSRandall Stewart } 13984a9ef3f8SMichael Tuexen TAILQ_FOREACH(chk, &stcb->asoc.asconf_send_queue, sctp_next) { 1399c54a18d2SRandall Stewart if (chk->whoTo != alt) { 1400c54a18d2SRandall Stewart sctp_free_remote_addr(chk->whoTo); 1401c54a18d2SRandall Stewart chk->whoTo = alt; 1402c54a18d2SRandall Stewart atomic_add_int(&alt->ref_count, 1); 1403c54a18d2SRandall Stewart } 1404c54a18d2SRandall Stewart if (asconf->sent != SCTP_DATAGRAM_RESEND && chk->sent != SCTP_DATAGRAM_UNSENT) 1405c54a18d2SRandall Stewart sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt); 1406c54a18d2SRandall Stewart chk->sent = SCTP_DATAGRAM_RESEND; 1407c54a18d2SRandall Stewart } 1408f8829a4aSRandall Stewart if (net->dest_state & SCTP_ADDR_NOT_REACHABLE) { 1409f8829a4aSRandall Stewart /* 1410f8829a4aSRandall Stewart * If the address went un-reachable, we need to move 14111b649582SRandall Stewart * to the alternate for ALL chunks in queue 1412f8829a4aSRandall Stewart */ 14139eea4a2dSMichael Tuexen sctp_move_chunks_from_net(stcb, net); 1414f8829a4aSRandall Stewart } 1415f8829a4aSRandall Stewart /* mark the retran info */ 1416f8829a4aSRandall Stewart if (asconf->sent != SCTP_DATAGRAM_RESEND) 1417f8829a4aSRandall Stewart sctp_ucount_incr(stcb->asoc.sent_queue_retran_cnt); 1418f8829a4aSRandall Stewart asconf->sent = SCTP_DATAGRAM_RESEND; 1419c54a18d2SRandall Stewart 1420c54a18d2SRandall Stewart /* send another ASCONF if any and we can do */ 1421c54a18d2SRandall Stewart sctp_send_asconf(stcb, alt, SCTP_ADDR_NOT_LOCKED); 1422f8829a4aSRandall Stewart } 1423f8829a4aSRandall Stewart return (0); 1424f8829a4aSRandall Stewart } 1425f8829a4aSRandall Stewart 1426851b7298SRandall Stewart /* Mobility adaptation */ 142704ee05e8SRandall Stewart void 1428851b7298SRandall Stewart sctp_delete_prim_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb, 1429851b7298SRandall Stewart struct sctp_nets *net) 1430851b7298SRandall Stewart { 1431851b7298SRandall Stewart if (stcb->asoc.deleted_primary == NULL) { 1432851b7298SRandall Stewart SCTPDBG(SCTP_DEBUG_ASCONF1, "delete_prim_timer: deleted_primary is not stored...\n"); 1433851b7298SRandall Stewart sctp_mobility_feature_off(inp, SCTP_MOBILITY_PRIM_DELETED); 143404ee05e8SRandall Stewart return; 1435851b7298SRandall Stewart } 1436851b7298SRandall Stewart SCTPDBG(SCTP_DEBUG_ASCONF1, "delete_prim_timer: finished to keep deleted primary "); 1437851b7298SRandall Stewart SCTPDBG_ADDR(SCTP_DEBUG_ASCONF1, &stcb->asoc.deleted_primary->ro._l_addr.sa); 1438851b7298SRandall Stewart sctp_free_remote_addr(stcb->asoc.deleted_primary); 1439851b7298SRandall Stewart stcb->asoc.deleted_primary = NULL; 1440851b7298SRandall Stewart sctp_mobility_feature_off(inp, SCTP_MOBILITY_PRIM_DELETED); 144104ee05e8SRandall Stewart return; 1442851b7298SRandall Stewart } 1443851b7298SRandall Stewart 1444f8829a4aSRandall Stewart /* 1445f8829a4aSRandall Stewart * For the shutdown and shutdown-ack, we do not keep one around on the 1446f8829a4aSRandall Stewart * control queue. This means we must generate a new one and call the general 1447f8829a4aSRandall Stewart * chunk output routine, AFTER having done threshold management. 1448b61c3588SMichael Tuexen * It is assumed that net is non-NULL. 1449f8829a4aSRandall Stewart */ 1450f8829a4aSRandall Stewart int 1451f8829a4aSRandall Stewart sctp_shutdown_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb, 1452f8829a4aSRandall Stewart struct sctp_nets *net) 1453f8829a4aSRandall Stewart { 1454f8829a4aSRandall Stewart struct sctp_nets *alt; 1455f8829a4aSRandall Stewart 1456f8829a4aSRandall Stewart /* first threshold managment */ 1457f8829a4aSRandall Stewart if (sctp_threshold_management(inp, stcb, net, stcb->asoc.max_send_times)) { 1458f8829a4aSRandall Stewart /* Assoc is over */ 1459f8829a4aSRandall Stewart return (1); 1460f8829a4aSRandall Stewart } 1461b61c3588SMichael Tuexen sctp_backoff_on_timeout(stcb, net, 1, 0, 0); 1462f8829a4aSRandall Stewart /* second select an alternative */ 1463f8829a4aSRandall Stewart alt = sctp_find_alternate_net(stcb, net, 0); 1464f8829a4aSRandall Stewart 1465f8829a4aSRandall Stewart /* third generate a shutdown into the queue for out net */ 1466f8829a4aSRandall Stewart sctp_send_shutdown(stcb, alt); 1467b61c3588SMichael Tuexen 1468f8829a4aSRandall Stewart /* fourth restart timer */ 1469f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, inp, stcb, alt); 1470f8829a4aSRandall Stewart return (0); 1471f8829a4aSRandall Stewart } 1472f8829a4aSRandall Stewart 1473f8829a4aSRandall Stewart int 1474f8829a4aSRandall Stewart sctp_shutdownack_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb, 1475f8829a4aSRandall Stewart struct sctp_nets *net) 1476f8829a4aSRandall Stewart { 1477f8829a4aSRandall Stewart struct sctp_nets *alt; 1478f8829a4aSRandall Stewart 1479f8829a4aSRandall Stewart /* first threshold managment */ 1480f8829a4aSRandall Stewart if (sctp_threshold_management(inp, stcb, net, stcb->asoc.max_send_times)) { 1481f8829a4aSRandall Stewart /* Assoc is over */ 1482f8829a4aSRandall Stewart return (1); 1483f8829a4aSRandall Stewart } 1484b61c3588SMichael Tuexen sctp_backoff_on_timeout(stcb, net, 1, 0, 0); 1485f8829a4aSRandall Stewart /* second select an alternative */ 1486f8829a4aSRandall Stewart alt = sctp_find_alternate_net(stcb, net, 0); 1487f8829a4aSRandall Stewart 1488f8829a4aSRandall Stewart /* third generate a shutdown into the queue for out net */ 1489f8829a4aSRandall Stewart sctp_send_shutdown_ack(stcb, alt); 1490f8829a4aSRandall Stewart 1491f8829a4aSRandall Stewart /* fourth restart timer */ 1492f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNACK, inp, stcb, alt); 1493f8829a4aSRandall Stewart return (0); 1494f8829a4aSRandall Stewart } 1495f8829a4aSRandall Stewart 1496f8829a4aSRandall Stewart static void 1497f8829a4aSRandall Stewart sctp_audit_stream_queues_for_size(struct sctp_inpcb *inp, 1498f8829a4aSRandall Stewart struct sctp_tcb *stcb) 1499f8829a4aSRandall Stewart { 1500f8829a4aSRandall Stewart struct sctp_stream_queue_pending *sp; 1501f7a77f6fSMichael Tuexen unsigned int i, chks_in_queue = 0; 1502f8829a4aSRandall Stewart int being_filled = 0; 1503f8829a4aSRandall Stewart 1504f8829a4aSRandall Stewart /* 1505f8829a4aSRandall Stewart * This function is ONLY called when the send/sent queues are empty. 1506f8829a4aSRandall Stewart */ 1507f8829a4aSRandall Stewart if ((stcb == NULL) || (inp == NULL)) 1508f8829a4aSRandall Stewart return; 1509f8829a4aSRandall Stewart 1510f8829a4aSRandall Stewart if (stcb->asoc.sent_queue_retran_cnt) { 1511ad81507eSRandall Stewart SCTP_PRINTF("Hmm, sent_queue_retran_cnt is non-zero %d\n", 1512f8829a4aSRandall Stewart stcb->asoc.sent_queue_retran_cnt); 1513f8829a4aSRandall Stewart stcb->asoc.sent_queue_retran_cnt = 0; 1514f8829a4aSRandall Stewart } 1515f7a77f6fSMichael Tuexen if (stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, &stcb->asoc)) { 1516252f7f93SMichael Tuexen /* No stream scheduler information, initialize scheduler */ 1517252f7f93SMichael Tuexen stcb->asoc.ss_functions.sctp_ss_init(stcb, &stcb->asoc, 0); 1518252f7f93SMichael Tuexen if (!stcb->asoc.ss_functions.sctp_ss_is_empty(stcb, &stcb->asoc)) { 1519252f7f93SMichael Tuexen /* yep, we lost a stream or two */ 1520252f7f93SMichael Tuexen SCTP_PRINTF("Found additional streams NOT managed by scheduler, corrected\n"); 1521f8829a4aSRandall Stewart } else { 1522252f7f93SMichael Tuexen /* no streams lost */ 1523f8829a4aSRandall Stewart stcb->asoc.total_output_queue_size = 0; 1524f8829a4aSRandall Stewart } 1525f8829a4aSRandall Stewart } 1526f8829a4aSRandall Stewart /* Check to see if some data queued, if so report it */ 1527f7a77f6fSMichael Tuexen for (i = 0; i < stcb->asoc.streamoutcnt; i++) { 1528f7a77f6fSMichael Tuexen if (!TAILQ_EMPTY(&stcb->asoc.strmout[i].outqueue)) { 1529f7a77f6fSMichael Tuexen TAILQ_FOREACH(sp, &stcb->asoc.strmout[i].outqueue, next) { 1530f8829a4aSRandall Stewart if (sp->msg_is_complete) 1531f8829a4aSRandall Stewart being_filled++; 1532f8829a4aSRandall Stewart chks_in_queue++; 1533f8829a4aSRandall Stewart } 1534f8829a4aSRandall Stewart } 1535f8829a4aSRandall Stewart } 1536f8829a4aSRandall Stewart if (chks_in_queue != stcb->asoc.stream_queue_cnt) { 1537ad81507eSRandall Stewart SCTP_PRINTF("Hmm, stream queue cnt at %d I counted %d in stream out wheel\n", 1538f8829a4aSRandall Stewart stcb->asoc.stream_queue_cnt, chks_in_queue); 1539f8829a4aSRandall Stewart } 1540f8829a4aSRandall Stewart if (chks_in_queue) { 1541f8829a4aSRandall Stewart /* call the output queue function */ 1542ceaad40aSRandall Stewart sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_T3, SCTP_SO_NOT_LOCKED); 1543f8829a4aSRandall Stewart if ((TAILQ_EMPTY(&stcb->asoc.send_queue)) && 1544f8829a4aSRandall Stewart (TAILQ_EMPTY(&stcb->asoc.sent_queue))) { 1545f8829a4aSRandall Stewart /* 1546f8829a4aSRandall Stewart * Probably should go in and make it go back through 1547f8829a4aSRandall Stewart * and add fragments allowed 1548f8829a4aSRandall Stewart */ 1549f8829a4aSRandall Stewart if (being_filled == 0) { 1550ad81507eSRandall Stewart SCTP_PRINTF("Still nothing moved %d chunks are stuck\n", 1551f8829a4aSRandall Stewart chks_in_queue); 1552f8829a4aSRandall Stewart } 1553f8829a4aSRandall Stewart } 1554f8829a4aSRandall Stewart } else { 1555ad81507eSRandall Stewart SCTP_PRINTF("Found no chunks on any queue tot:%lu\n", 1556f8829a4aSRandall Stewart (u_long)stcb->asoc.total_output_queue_size); 1557f8829a4aSRandall Stewart stcb->asoc.total_output_queue_size = 0; 1558f8829a4aSRandall Stewart } 1559f8829a4aSRandall Stewart } 1560f8829a4aSRandall Stewart 1561f8829a4aSRandall Stewart int 1562f8829a4aSRandall Stewart sctp_heartbeat_timer(struct sctp_inpcb *inp, struct sctp_tcb *stcb, 1563f8829a4aSRandall Stewart struct sctp_nets *net, int cnt_of_unconf) 1564f8829a4aSRandall Stewart { 1565b54d3a6cSRandall Stewart int ret; 1566b54d3a6cSRandall Stewart 1567f8829a4aSRandall Stewart if (net) { 1568f8829a4aSRandall Stewart if (net->hb_responded == 0) { 156942551e99SRandall Stewart if (net->ro._s_addr) { 157042551e99SRandall Stewart /* 157142551e99SRandall Stewart * Invalidate the src address if we did not 157242551e99SRandall Stewart * get a response last time. 157342551e99SRandall Stewart */ 157442551e99SRandall Stewart sctp_free_ifa(net->ro._s_addr); 157542551e99SRandall Stewart net->ro._s_addr = NULL; 157642551e99SRandall Stewart net->src_addr_selected = 0; 157742551e99SRandall Stewart } 157844fbe462SRandall Stewart sctp_backoff_on_timeout(stcb, net, 1, 0, 0); 1579f8829a4aSRandall Stewart } 1580f8829a4aSRandall Stewart /* Zero PBA, if it needs it */ 1581f8829a4aSRandall Stewart if (net->partial_bytes_acked) { 1582f8829a4aSRandall Stewart net->partial_bytes_acked = 0; 1583f8829a4aSRandall Stewart } 1584f8829a4aSRandall Stewart } 1585f8829a4aSRandall Stewart if ((stcb->asoc.total_output_queue_size > 0) && 1586f8829a4aSRandall Stewart (TAILQ_EMPTY(&stcb->asoc.send_queue)) && 1587f8829a4aSRandall Stewart (TAILQ_EMPTY(&stcb->asoc.sent_queue))) { 1588f8829a4aSRandall Stewart sctp_audit_stream_queues_for_size(inp, stcb); 1589f8829a4aSRandall Stewart } 1590f8829a4aSRandall Stewart /* Send a new HB, this will do threshold managment, pick a new dest */ 1591f8829a4aSRandall Stewart if (cnt_of_unconf == 0) { 1592f8829a4aSRandall Stewart if (sctp_send_hb(stcb, 0, NULL) < 0) { 1593f8829a4aSRandall Stewart return (1); 1594f8829a4aSRandall Stewart } 1595f8829a4aSRandall Stewart } else { 1596f8829a4aSRandall Stewart /* 1597f8829a4aSRandall Stewart * this will send out extra hb's up to maxburst if there are 1598f8829a4aSRandall Stewart * any unconfirmed addresses. 1599f8829a4aSRandall Stewart */ 1600d61a0ae0SRandall Stewart uint32_t cnt_sent = 0; 1601f8829a4aSRandall Stewart 1602f8829a4aSRandall Stewart TAILQ_FOREACH(net, &stcb->asoc.nets, sctp_next) { 1603f8829a4aSRandall Stewart if ((net->dest_state & SCTP_ADDR_UNCONFIRMED) && 1604f8829a4aSRandall Stewart (net->dest_state & SCTP_ADDR_REACHABLE)) { 1605f8829a4aSRandall Stewart cnt_sent++; 160642551e99SRandall Stewart if (net->hb_responded == 0) { 160742551e99SRandall Stewart /* Did we respond last time? */ 160842551e99SRandall Stewart if (net->ro._s_addr) { 160942551e99SRandall Stewart sctp_free_ifa(net->ro._s_addr); 161042551e99SRandall Stewart net->ro._s_addr = NULL; 161142551e99SRandall Stewart net->src_addr_selected = 0; 161242551e99SRandall Stewart } 161342551e99SRandall Stewart } 1614b54d3a6cSRandall Stewart ret = sctp_send_hb(stcb, 1, net); 1615b54d3a6cSRandall Stewart if (ret < 0) 1616b54d3a6cSRandall Stewart return 1; 1617b54d3a6cSRandall Stewart else if (ret == 0) { 1618f8829a4aSRandall Stewart break; 1619f8829a4aSRandall Stewart } 1620899288aeSRandall Stewart if (SCTP_BASE_SYSCTL(sctp_hb_maxburst) && 1621899288aeSRandall Stewart (cnt_sent >= SCTP_BASE_SYSCTL(sctp_hb_maxburst))) 1622f8829a4aSRandall Stewart break; 1623f8829a4aSRandall Stewart } 1624f8829a4aSRandall Stewart } 1625f8829a4aSRandall Stewart } 1626f8829a4aSRandall Stewart return (0); 1627f8829a4aSRandall Stewart } 1628f8829a4aSRandall Stewart 1629f8829a4aSRandall Stewart void 1630f8829a4aSRandall Stewart sctp_pathmtu_timer(struct sctp_inpcb *inp, 1631f8829a4aSRandall Stewart struct sctp_tcb *stcb, 1632f8829a4aSRandall Stewart struct sctp_nets *net) 1633f8829a4aSRandall Stewart { 1634c54a18d2SRandall Stewart uint32_t next_mtu, mtu; 1635f8829a4aSRandall Stewart 1636437fc91aSMichael Tuexen next_mtu = sctp_get_next_mtu(inp, net->mtu); 163717205eccSRandall Stewart 1638c54a18d2SRandall Stewart if ((next_mtu > net->mtu) && (net->port == 0)) { 163917205eccSRandall Stewart if ((net->src_addr_selected == 0) || 164017205eccSRandall Stewart (net->ro._s_addr == NULL) || 164117205eccSRandall Stewart (net->ro._s_addr->localifa_flags & SCTP_BEING_DELETED)) { 1642ad81507eSRandall Stewart if ((net->ro._s_addr != NULL) && (net->ro._s_addr->localifa_flags & SCTP_BEING_DELETED)) { 164317205eccSRandall Stewart sctp_free_ifa(net->ro._s_addr); 164417205eccSRandall Stewart net->ro._s_addr = NULL; 164517205eccSRandall Stewart net->src_addr_selected = 0; 1646ad81507eSRandall Stewart } else if (net->ro._s_addr == NULL) { 1647c54a18d2SRandall Stewart #if defined(INET6) && defined(SCTP_EMBEDDED_V6_SCOPE) 1648c54a18d2SRandall Stewart if (net->ro._l_addr.sa.sa_family == AF_INET6) { 1649c54a18d2SRandall Stewart struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)&net->ro._l_addr; 1650c54a18d2SRandall Stewart 1651c54a18d2SRandall Stewart /* KAME hack: embed scopeid */ 1652482444b4SRandall Stewart (void)sa6_embedscope(sin6, MODULE_GLOBAL(ip6_use_defzone)); 1653c54a18d2SRandall Stewart } 1654c54a18d2SRandall Stewart #endif 1655c54a18d2SRandall Stewart 165617205eccSRandall Stewart net->ro._s_addr = sctp_source_address_selection(inp, 165717205eccSRandall Stewart stcb, 165817205eccSRandall Stewart (sctp_route_t *) & net->ro, 165917205eccSRandall Stewart net, 0, stcb->asoc.vrf_id); 1660c54a18d2SRandall Stewart #if defined(INET6) && defined(SCTP_EMBEDDED_V6_SCOPE) 1661c54a18d2SRandall Stewart if (net->ro._l_addr.sa.sa_family == AF_INET6) { 1662c54a18d2SRandall Stewart struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)&net->ro._l_addr; 1663c54a18d2SRandall Stewart 1664c54a18d2SRandall Stewart (void)sa6_recoverscope(sin6); 1665c54a18d2SRandall Stewart } 1666c54a18d2SRandall Stewart #endif /* INET6 */ 1667ad81507eSRandall Stewart } 166817205eccSRandall Stewart if (net->ro._s_addr) 166917205eccSRandall Stewart net->src_addr_selected = 1; 167017205eccSRandall Stewart } 167117205eccSRandall Stewart if (net->ro._s_addr) { 167217205eccSRandall Stewart mtu = SCTP_GATHER_MTU_FROM_ROUTE(net->ro._s_addr, &net->ro._s_addr.sa, net->ro.ro_rt); 1673830d754dSRandall Stewart if (net->port) { 1674830d754dSRandall Stewart mtu -= sizeof(struct udphdr); 1675830d754dSRandall Stewart } 167617205eccSRandall Stewart if (mtu > next_mtu) { 1677f8829a4aSRandall Stewart net->mtu = next_mtu; 1678f8829a4aSRandall Stewart } 1679f8829a4aSRandall Stewart } 1680f8829a4aSRandall Stewart } 1681f8829a4aSRandall Stewart /* restart the timer */ 1682f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_PATHMTURAISE, inp, stcb, net); 1683f8829a4aSRandall Stewart } 1684f8829a4aSRandall Stewart 1685f8829a4aSRandall Stewart void 1686f8829a4aSRandall Stewart sctp_autoclose_timer(struct sctp_inpcb *inp, 1687f8829a4aSRandall Stewart struct sctp_tcb *stcb, 1688f8829a4aSRandall Stewart struct sctp_nets *net) 1689f8829a4aSRandall Stewart { 1690f8829a4aSRandall Stewart struct timeval tn, *tim_touse; 1691f8829a4aSRandall Stewart struct sctp_association *asoc; 1692f8829a4aSRandall Stewart int ticks_gone_by; 1693f8829a4aSRandall Stewart 16946e55db54SRandall Stewart (void)SCTP_GETTIME_TIMEVAL(&tn); 1695f8829a4aSRandall Stewart if (stcb->asoc.sctp_autoclose_ticks && 1696f8829a4aSRandall Stewart sctp_is_feature_on(inp, SCTP_PCB_FLAGS_AUTOCLOSE)) { 1697f8829a4aSRandall Stewart /* Auto close is on */ 1698f8829a4aSRandall Stewart asoc = &stcb->asoc; 1699f8829a4aSRandall Stewart /* pick the time to use */ 1700f8829a4aSRandall Stewart if (asoc->time_last_rcvd.tv_sec > 1701f8829a4aSRandall Stewart asoc->time_last_sent.tv_sec) { 1702f8829a4aSRandall Stewart tim_touse = &asoc->time_last_rcvd; 1703f8829a4aSRandall Stewart } else { 1704f8829a4aSRandall Stewart tim_touse = &asoc->time_last_sent; 1705f8829a4aSRandall Stewart } 1706f8829a4aSRandall Stewart /* Now has long enough transpired to autoclose? */ 1707f8829a4aSRandall Stewart ticks_gone_by = SEC_TO_TICKS(tn.tv_sec - tim_touse->tv_sec); 1708f8829a4aSRandall Stewart if ((ticks_gone_by > 0) && 1709f8829a4aSRandall Stewart (ticks_gone_by >= (int)asoc->sctp_autoclose_ticks)) { 1710f8829a4aSRandall Stewart /* 1711f8829a4aSRandall Stewart * autoclose time has hit, call the output routine, 1712f8829a4aSRandall Stewart * which should do nothing just to be SURE we don't 1713f8829a4aSRandall Stewart * have hanging data. We can then safely check the 1714f8829a4aSRandall Stewart * queues and know that we are clear to send 1715f8829a4aSRandall Stewart * shutdown 1716f8829a4aSRandall Stewart */ 1717ceaad40aSRandall Stewart sctp_chunk_output(inp, stcb, SCTP_OUTPUT_FROM_AUTOCLOSE_TMR, SCTP_SO_NOT_LOCKED); 1718f8829a4aSRandall Stewart /* Are we clean? */ 1719f8829a4aSRandall Stewart if (TAILQ_EMPTY(&asoc->send_queue) && 1720f8829a4aSRandall Stewart TAILQ_EMPTY(&asoc->sent_queue)) { 1721f8829a4aSRandall Stewart /* 1722f8829a4aSRandall Stewart * there is nothing queued to send, so I'm 1723f8829a4aSRandall Stewart * done... 1724f8829a4aSRandall Stewart */ 1725f42a358aSRandall Stewart if (SCTP_GET_STATE(asoc) != SCTP_STATE_SHUTDOWN_SENT) { 1726f8829a4aSRandall Stewart /* only send SHUTDOWN 1st time thru */ 1727f8829a4aSRandall Stewart sctp_send_shutdown(stcb, stcb->asoc.primary_destination); 1728f42a358aSRandall Stewart if ((SCTP_GET_STATE(asoc) == SCTP_STATE_OPEN) || 1729f42a358aSRandall Stewart (SCTP_GET_STATE(asoc) == SCTP_STATE_SHUTDOWN_RECEIVED)) { 1730f8829a4aSRandall Stewart SCTP_STAT_DECR_GAUGE32(sctps_currestab); 1731f42a358aSRandall Stewart } 1732c4739e2fSRandall Stewart SCTP_SET_STATE(asoc, SCTP_STATE_SHUTDOWN_SENT); 1733b201f536SRandall Stewart SCTP_CLEAR_SUBSTATE(asoc, SCTP_STATE_SHUTDOWN_PENDING); 1734f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWN, 1735f8829a4aSRandall Stewart stcb->sctp_ep, stcb, 1736f8829a4aSRandall Stewart asoc->primary_destination); 1737f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_SHUTDOWNGUARD, 1738f8829a4aSRandall Stewart stcb->sctp_ep, stcb, 1739f8829a4aSRandall Stewart asoc->primary_destination); 1740f8829a4aSRandall Stewart } 1741f8829a4aSRandall Stewart } 1742f8829a4aSRandall Stewart } else { 1743f8829a4aSRandall Stewart /* 1744f8829a4aSRandall Stewart * No auto close at this time, reset t-o to check 1745f8829a4aSRandall Stewart * later 1746f8829a4aSRandall Stewart */ 1747f8829a4aSRandall Stewart int tmp; 1748f8829a4aSRandall Stewart 1749f8829a4aSRandall Stewart /* fool the timer startup to use the time left */ 1750f8829a4aSRandall Stewart tmp = asoc->sctp_autoclose_ticks; 1751f8829a4aSRandall Stewart asoc->sctp_autoclose_ticks -= ticks_gone_by; 1752f8829a4aSRandall Stewart sctp_timer_start(SCTP_TIMER_TYPE_AUTOCLOSE, inp, stcb, 1753f8829a4aSRandall Stewart net); 1754f8829a4aSRandall Stewart /* restore the real tick value */ 1755f8829a4aSRandall Stewart asoc->sctp_autoclose_ticks = tmp; 1756f8829a4aSRandall Stewart } 1757f8829a4aSRandall Stewart } 1758f8829a4aSRandall Stewart } 1759