1 /* 2 * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1995 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 4. Neither the name of the University nor the names of its contributors 14 * may be used to endorse or promote products derived from this software 15 * without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 * 29 * @(#)tcp_timer.c 8.2 (Berkeley) 5/24/95 30 * $FreeBSD$ 31 */ 32 33 #include "opt_inet6.h" 34 #include "opt_tcpdebug.h" 35 #include "opt_tcp_sack.h" 36 37 #include <sys/param.h> 38 #include <sys/kernel.h> 39 #include <sys/lock.h> 40 #include <sys/mbuf.h> 41 #include <sys/mutex.h> 42 #include <sys/protosw.h> 43 #include <sys/socket.h> 44 #include <sys/socketvar.h> 45 #include <sys/sysctl.h> 46 #include <sys/systm.h> 47 48 #include <net/route.h> 49 50 #include <netinet/in.h> 51 #include <netinet/in_pcb.h> 52 #include <netinet/in_systm.h> 53 #ifdef INET6 54 #include <netinet6/in6_pcb.h> 55 #endif 56 #include <netinet/ip_var.h> 57 #include <netinet/tcp.h> 58 #include <netinet/tcp_fsm.h> 59 #include <netinet/tcp_timer.h> 60 #include <netinet/tcp_var.h> 61 #include <netinet/tcpip.h> 62 #ifdef TCPDEBUG 63 #include <netinet/tcp_debug.h> 64 #endif 65 66 static int 67 sysctl_msec_to_ticks(SYSCTL_HANDLER_ARGS) 68 { 69 int error, s, tt; 70 71 tt = *(int *)oidp->oid_arg1; 72 s = (int)((int64_t)tt * 1000 / hz); 73 74 error = sysctl_handle_int(oidp, &s, 0, req); 75 if (error || !req->newptr) 76 return (error); 77 78 tt = (int)((int64_t)s * hz / 1000); 79 if (tt < 1) 80 return (EINVAL); 81 82 *(int *)oidp->oid_arg1 = tt; 83 return (0); 84 } 85 86 int tcp_keepinit; 87 SYSCTL_PROC(_net_inet_tcp, TCPCTL_KEEPINIT, keepinit, CTLTYPE_INT|CTLFLAG_RW, 88 &tcp_keepinit, 0, sysctl_msec_to_ticks, "I", ""); 89 90 int tcp_keepidle; 91 SYSCTL_PROC(_net_inet_tcp, TCPCTL_KEEPIDLE, keepidle, CTLTYPE_INT|CTLFLAG_RW, 92 &tcp_keepidle, 0, sysctl_msec_to_ticks, "I", ""); 93 94 int tcp_keepintvl; 95 SYSCTL_PROC(_net_inet_tcp, TCPCTL_KEEPINTVL, keepintvl, CTLTYPE_INT|CTLFLAG_RW, 96 &tcp_keepintvl, 0, sysctl_msec_to_ticks, "I", ""); 97 98 int tcp_delacktime; 99 SYSCTL_PROC(_net_inet_tcp, TCPCTL_DELACKTIME, delacktime, 100 CTLTYPE_INT|CTLFLAG_RW, &tcp_delacktime, 0, sysctl_msec_to_ticks, "I", 101 "Time before a delayed ACK is sent"); 102 103 int tcp_msl; 104 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, msl, CTLTYPE_INT|CTLFLAG_RW, 105 &tcp_msl, 0, sysctl_msec_to_ticks, "I", "Maximum segment lifetime"); 106 107 int tcp_rexmit_min; 108 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, rexmit_min, CTLTYPE_INT|CTLFLAG_RW, 109 &tcp_rexmit_min, 0, sysctl_msec_to_ticks, "I", "Minimum Retransmission Timeout"); 110 111 int tcp_rexmit_slop; 112 SYSCTL_PROC(_net_inet_tcp, OID_AUTO, rexmit_slop, CTLTYPE_INT|CTLFLAG_RW, 113 &tcp_rexmit_slop, 0, sysctl_msec_to_ticks, "I", "Retransmission Timer Slop"); 114 115 static int always_keepalive = 1; 116 SYSCTL_INT(_net_inet_tcp, OID_AUTO, always_keepalive, CTLFLAG_RW, 117 &always_keepalive , 0, "Assume SO_KEEPALIVE on all TCP connections"); 118 119 static int tcp_keepcnt = TCPTV_KEEPCNT; 120 /* max idle probes */ 121 int tcp_maxpersistidle; 122 /* max idle time in persist */ 123 int tcp_maxidle; 124 125 /* 126 * Tcp protocol timeout routine called every 500 ms. 127 * Updates timestamps used for TCP 128 * causes finite state machine actions if timers expire. 129 */ 130 void 131 tcp_slowtimo() 132 { 133 134 /* 135 * XXXRW: Note that there is a minor race issue associated with rapid 136 * modification of the two components of tcp_maxidle. This could be 137 * corrected by introducing sysctl handlers for those two fields, 138 * sliding this update of tcp_maxidle under the tcbinfo lock, and 139 * acquiring that lock in the handlers. 140 */ 141 tcp_maxidle = tcp_keepcnt * tcp_keepintvl; 142 INP_INFO_WLOCK(&tcbinfo); 143 (void) tcp_timer_2msl_tw(0); 144 INP_INFO_WUNLOCK(&tcbinfo); 145 } 146 147 /* 148 * Cancel all timers for TCP tp. 149 * 150 * XXXRW: This appears to be unused. 151 */ 152 void 153 tcp_canceltimers(tp) 154 struct tcpcb *tp; 155 { 156 callout_stop(tp->tt_2msl); 157 callout_stop(tp->tt_persist); 158 callout_stop(tp->tt_keep); 159 callout_stop(tp->tt_rexmt); 160 } 161 162 int tcp_syn_backoff[TCP_MAXRXTSHIFT + 1] = 163 { 1, 1, 1, 1, 1, 2, 4, 8, 16, 32, 64, 64, 64 }; 164 165 int tcp_backoff[TCP_MAXRXTSHIFT + 1] = 166 { 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 512, 512, 512 }; 167 168 static int tcp_totbackoff = 2559; /* sum of tcp_backoff[] */ 169 170 /* 171 * TCP timer processing. 172 */ 173 174 void 175 tcp_timer_delack(xtp) 176 void *xtp; 177 { 178 struct tcpcb *tp = xtp; 179 struct inpcb *inp; 180 181 INP_INFO_RLOCK(&tcbinfo); 182 inp = tp->t_inpcb; 183 if (inp == NULL) { 184 INP_INFO_RUNLOCK(&tcbinfo); 185 return; 186 } 187 INP_LOCK(inp); 188 INP_INFO_RUNLOCK(&tcbinfo); 189 if (callout_pending(tp->tt_delack) || !callout_active(tp->tt_delack)) { 190 INP_UNLOCK(inp); 191 return; 192 } 193 callout_deactivate(tp->tt_delack); 194 195 tp->t_flags |= TF_ACKNOW; 196 tcpstat.tcps_delack++; 197 (void) tcp_output(tp); 198 INP_UNLOCK(inp); 199 } 200 201 void 202 tcp_timer_2msl(xtp) 203 void *xtp; 204 { 205 struct tcpcb *tp = xtp; 206 struct inpcb *inp; 207 #ifdef TCPDEBUG 208 int ostate; 209 210 ostate = tp->t_state; 211 #endif 212 INP_INFO_WLOCK(&tcbinfo); 213 inp = tp->t_inpcb; 214 if (inp == NULL) { 215 INP_INFO_WUNLOCK(&tcbinfo); 216 return; 217 } 218 INP_LOCK(inp); 219 tcp_free_sackholes(tp); 220 if (callout_pending(tp->tt_2msl) || !callout_active(tp->tt_2msl)) { 221 INP_UNLOCK(tp->t_inpcb); 222 INP_INFO_WUNLOCK(&tcbinfo); 223 return; 224 } 225 callout_deactivate(tp->tt_2msl); 226 /* 227 * 2 MSL timeout in shutdown went off. If we're closed but 228 * still waiting for peer to close and connection has been idle 229 * too long, or if 2MSL time is up from TIME_WAIT, delete connection 230 * control block. Otherwise, check again in a bit. 231 */ 232 if (tp->t_state != TCPS_TIME_WAIT && 233 (ticks - tp->t_rcvtime) <= tcp_maxidle) 234 callout_reset(tp->tt_2msl, tcp_keepintvl, 235 tcp_timer_2msl, tp); 236 else 237 tp = tcp_close(tp); 238 239 #ifdef TCPDEBUG 240 if (tp && (tp->t_inpcb->inp_socket->so_options & SO_DEBUG)) 241 tcp_trace(TA_USER, ostate, tp, (void *)0, (struct tcphdr *)0, 242 PRU_SLOWTIMO); 243 #endif 244 if (tp) 245 INP_UNLOCK(inp); 246 INP_INFO_WUNLOCK(&tcbinfo); 247 } 248 249 /* 250 * The timed wait lists contain references to each of the TCP sessions 251 * currently TIME_WAIT state. The list pointers, including the list pointers 252 * in each tcptw structure, are protected using the global tcbinfo lock, 253 * which must be held over list iteration and modification. 254 */ 255 struct twlist { 256 LIST_HEAD(, tcptw) tw_list; 257 struct tcptw tw_tail; 258 }; 259 #define TWLIST_NLISTS 2 260 static struct twlist twl_2msl[TWLIST_NLISTS]; 261 static struct twlist *tw_2msl_list[] = { &twl_2msl[0], &twl_2msl[1], NULL }; 262 263 void 264 tcp_timer_init(void) 265 { 266 int i; 267 struct twlist *twl; 268 269 for (i = 0; i < TWLIST_NLISTS; i++) { 270 twl = &twl_2msl[i]; 271 LIST_INIT(&twl->tw_list); 272 LIST_INSERT_HEAD(&twl->tw_list, &twl->tw_tail, tw_2msl); 273 } 274 } 275 276 void 277 tcp_timer_2msl_reset(struct tcptw *tw, int timeo) 278 { 279 int i; 280 struct tcptw *tw_tail; 281 282 INP_INFO_WLOCK_ASSERT(&tcbinfo); 283 INP_LOCK_ASSERT(tw->tw_inpcb); 284 if (tw->tw_time != 0) 285 LIST_REMOVE(tw, tw_2msl); 286 tw->tw_time = timeo + ticks; 287 i = timeo > tcp_msl ? 1 : 0; 288 tw_tail = &twl_2msl[i].tw_tail; 289 LIST_INSERT_BEFORE(tw_tail, tw, tw_2msl); 290 } 291 292 void 293 tcp_timer_2msl_stop(struct tcptw *tw) 294 { 295 296 INP_INFO_WLOCK_ASSERT(&tcbinfo); 297 if (tw->tw_time != 0) 298 LIST_REMOVE(tw, tw_2msl); 299 } 300 301 struct tcptw * 302 tcp_timer_2msl_tw(int reuse) 303 { 304 struct tcptw *tw, *tw_tail; 305 struct twlist *twl; 306 int i; 307 308 INP_INFO_WLOCK_ASSERT(&tcbinfo); 309 for (i = 0; i < 2; i++) { 310 twl = tw_2msl_list[i]; 311 tw_tail = &twl->tw_tail; 312 for (;;) { 313 tw = LIST_FIRST(&twl->tw_list); 314 if (tw == tw_tail || (!reuse && tw->tw_time > ticks)) 315 break; 316 INP_LOCK(tw->tw_inpcb); 317 if (tcp_twclose(tw, reuse) != NULL) 318 return (tw); 319 } 320 } 321 return (NULL); 322 } 323 324 void 325 tcp_timer_keep(xtp) 326 void *xtp; 327 { 328 struct tcpcb *tp = xtp; 329 struct tcptemp *t_template; 330 int s; 331 struct inpcb *inp; 332 #ifdef TCPDEBUG 333 int ostate; 334 335 ostate = tp->t_state; 336 #endif 337 s = splnet(); 338 INP_INFO_WLOCK(&tcbinfo); 339 inp = tp->t_inpcb; 340 if (!inp) { 341 INP_INFO_WUNLOCK(&tcbinfo); 342 splx(s); 343 return; 344 } 345 INP_LOCK(inp); 346 if (callout_pending(tp->tt_keep) || !callout_active(tp->tt_keep)) { 347 INP_UNLOCK(inp); 348 INP_INFO_WUNLOCK(&tcbinfo); 349 splx(s); 350 return; 351 } 352 callout_deactivate(tp->tt_keep); 353 /* 354 * Keep-alive timer went off; send something 355 * or drop connection if idle for too long. 356 */ 357 tcpstat.tcps_keeptimeo++; 358 if (tp->t_state < TCPS_ESTABLISHED) 359 goto dropit; 360 if ((always_keepalive || inp->inp_socket->so_options & SO_KEEPALIVE) && 361 tp->t_state <= TCPS_CLOSING) { 362 if ((ticks - tp->t_rcvtime) >= tcp_keepidle + tcp_maxidle) 363 goto dropit; 364 /* 365 * Send a packet designed to force a response 366 * if the peer is up and reachable: 367 * either an ACK if the connection is still alive, 368 * or an RST if the peer has closed the connection 369 * due to timeout or reboot. 370 * Using sequence number tp->snd_una-1 371 * causes the transmitted zero-length segment 372 * to lie outside the receive window; 373 * by the protocol spec, this requires the 374 * correspondent TCP to respond. 375 */ 376 tcpstat.tcps_keepprobe++; 377 t_template = tcpip_maketemplate(inp); 378 if (t_template) { 379 tcp_respond(tp, t_template->tt_ipgen, 380 &t_template->tt_t, (struct mbuf *)NULL, 381 tp->rcv_nxt, tp->snd_una - 1, 0); 382 (void) m_free(dtom(t_template)); 383 } 384 callout_reset(tp->tt_keep, tcp_keepintvl, tcp_timer_keep, tp); 385 } else 386 callout_reset(tp->tt_keep, tcp_keepidle, tcp_timer_keep, tp); 387 388 #ifdef TCPDEBUG 389 if (inp->inp_socket->so_options & SO_DEBUG) 390 tcp_trace(TA_USER, ostate, tp, (void *)0, (struct tcphdr *)0, 391 PRU_SLOWTIMO); 392 #endif 393 INP_UNLOCK(inp); 394 INP_INFO_WUNLOCK(&tcbinfo); 395 splx(s); 396 return; 397 398 dropit: 399 tcpstat.tcps_keepdrops++; 400 tp = tcp_drop(tp, ETIMEDOUT); 401 402 #ifdef TCPDEBUG 403 if (tp && (tp->t_inpcb->inp_socket->so_options & SO_DEBUG)) 404 tcp_trace(TA_USER, ostate, tp, (void *)0, (struct tcphdr *)0, 405 PRU_SLOWTIMO); 406 #endif 407 if (tp) 408 INP_UNLOCK(tp->t_inpcb); 409 INP_INFO_WUNLOCK(&tcbinfo); 410 splx(s); 411 } 412 413 void 414 tcp_timer_persist(xtp) 415 void *xtp; 416 { 417 struct tcpcb *tp = xtp; 418 int s; 419 struct inpcb *inp; 420 #ifdef TCPDEBUG 421 int ostate; 422 423 ostate = tp->t_state; 424 #endif 425 s = splnet(); 426 INP_INFO_WLOCK(&tcbinfo); 427 inp = tp->t_inpcb; 428 if (!inp) { 429 INP_INFO_WUNLOCK(&tcbinfo); 430 splx(s); 431 return; 432 } 433 INP_LOCK(inp); 434 if (callout_pending(tp->tt_persist) || !callout_active(tp->tt_persist)){ 435 INP_UNLOCK(inp); 436 INP_INFO_WUNLOCK(&tcbinfo); 437 splx(s); 438 return; 439 } 440 callout_deactivate(tp->tt_persist); 441 /* 442 * Persistance timer into zero window. 443 * Force a byte to be output, if possible. 444 */ 445 tcpstat.tcps_persisttimeo++; 446 /* 447 * Hack: if the peer is dead/unreachable, we do not 448 * time out if the window is closed. After a full 449 * backoff, drop the connection if the idle time 450 * (no responses to probes) reaches the maximum 451 * backoff that we would use if retransmitting. 452 */ 453 if (tp->t_rxtshift == TCP_MAXRXTSHIFT && 454 ((ticks - tp->t_rcvtime) >= tcp_maxpersistidle || 455 (ticks - tp->t_rcvtime) >= TCP_REXMTVAL(tp) * tcp_totbackoff)) { 456 tcpstat.tcps_persistdrop++; 457 tp = tcp_drop(tp, ETIMEDOUT); 458 goto out; 459 } 460 tcp_setpersist(tp); 461 tp->t_force = 1; 462 (void) tcp_output(tp); 463 tp->t_force = 0; 464 465 out: 466 #ifdef TCPDEBUG 467 if (tp && tp->t_inpcb->inp_socket->so_options & SO_DEBUG) 468 tcp_trace(TA_USER, ostate, tp, (void *)0, (struct tcphdr *)0, 469 PRU_SLOWTIMO); 470 #endif 471 if (tp) 472 INP_UNLOCK(inp); 473 INP_INFO_WUNLOCK(&tcbinfo); 474 splx(s); 475 } 476 477 void 478 tcp_timer_rexmt(xtp) 479 void *xtp; 480 { 481 struct tcpcb *tp = xtp; 482 int s; 483 int rexmt; 484 int headlocked; 485 struct inpcb *inp; 486 #ifdef TCPDEBUG 487 int ostate; 488 489 ostate = tp->t_state; 490 #endif 491 s = splnet(); 492 INP_INFO_WLOCK(&tcbinfo); 493 headlocked = 1; 494 inp = tp->t_inpcb; 495 if (!inp) { 496 INP_INFO_WUNLOCK(&tcbinfo); 497 splx(s); 498 return; 499 } 500 INP_LOCK(inp); 501 if (callout_pending(tp->tt_rexmt) || !callout_active(tp->tt_rexmt)) { 502 INP_UNLOCK(inp); 503 INP_INFO_WUNLOCK(&tcbinfo); 504 splx(s); 505 return; 506 } 507 callout_deactivate(tp->tt_rexmt); 508 tcp_free_sackholes(tp); 509 /* 510 * Retransmission timer went off. Message has not 511 * been acked within retransmit interval. Back off 512 * to a longer retransmit interval and retransmit one segment. 513 */ 514 if (++tp->t_rxtshift > TCP_MAXRXTSHIFT) { 515 tp->t_rxtshift = TCP_MAXRXTSHIFT; 516 tcpstat.tcps_timeoutdrop++; 517 tp = tcp_drop(tp, tp->t_softerror ? 518 tp->t_softerror : ETIMEDOUT); 519 goto out; 520 } 521 INP_INFO_WUNLOCK(&tcbinfo); 522 headlocked = 0; 523 if (tp->t_rxtshift == 1) { 524 /* 525 * first retransmit; record ssthresh and cwnd so they can 526 * be recovered if this turns out to be a "bad" retransmit. 527 * A retransmit is considered "bad" if an ACK for this 528 * segment is received within RTT/2 interval; the assumption 529 * here is that the ACK was already in flight. See 530 * "On Estimating End-to-End Network Path Properties" by 531 * Allman and Paxson for more details. 532 */ 533 tp->snd_cwnd_prev = tp->snd_cwnd; 534 tp->snd_ssthresh_prev = tp->snd_ssthresh; 535 tp->snd_recover_prev = tp->snd_recover; 536 if (IN_FASTRECOVERY(tp)) 537 tp->t_flags |= TF_WASFRECOVERY; 538 else 539 tp->t_flags &= ~TF_WASFRECOVERY; 540 tp->t_badrxtwin = ticks + (tp->t_srtt >> (TCP_RTT_SHIFT + 1)); 541 } 542 tcpstat.tcps_rexmttimeo++; 543 if (tp->t_state == TCPS_SYN_SENT) 544 rexmt = TCP_REXMTVAL(tp) * tcp_syn_backoff[tp->t_rxtshift]; 545 else 546 rexmt = TCP_REXMTVAL(tp) * tcp_backoff[tp->t_rxtshift]; 547 TCPT_RANGESET(tp->t_rxtcur, rexmt, 548 tp->t_rttmin, TCPTV_REXMTMAX); 549 /* 550 * Disable rfc1323 if we havn't got any response to 551 * our third SYN to work-around some broken terminal servers 552 * (most of which have hopefully been retired) that have bad VJ 553 * header compression code which trashes TCP segments containing 554 * unknown-to-them TCP options. 555 */ 556 if ((tp->t_state == TCPS_SYN_SENT) && (tp->t_rxtshift == 3)) 557 tp->t_flags &= ~(TF_REQ_SCALE|TF_REQ_TSTMP); 558 /* 559 * If we backed off this far, our srtt estimate is probably bogus. 560 * Clobber it so we'll take the next rtt measurement as our srtt; 561 * move the current srtt into rttvar to keep the current 562 * retransmit times until then. 563 */ 564 if (tp->t_rxtshift > TCP_MAXRXTSHIFT / 4) { 565 #ifdef INET6 566 if ((tp->t_inpcb->inp_vflag & INP_IPV6) != 0) 567 in6_losing(tp->t_inpcb); 568 else 569 #endif 570 tp->t_rttvar += (tp->t_srtt >> TCP_RTT_SHIFT); 571 tp->t_srtt = 0; 572 } 573 tp->snd_nxt = tp->snd_una; 574 tp->snd_recover = tp->snd_max; 575 /* 576 * Force a segment to be sent. 577 */ 578 tp->t_flags |= TF_ACKNOW; 579 /* 580 * If timing a segment in this window, stop the timer. 581 */ 582 tp->t_rtttime = 0; 583 /* 584 * Close the congestion window down to one segment 585 * (we'll open it by one segment for each ack we get). 586 * Since we probably have a window's worth of unacked 587 * data accumulated, this "slow start" keeps us from 588 * dumping all that data as back-to-back packets (which 589 * might overwhelm an intermediate gateway). 590 * 591 * There are two phases to the opening: Initially we 592 * open by one mss on each ack. This makes the window 593 * size increase exponentially with time. If the 594 * window is larger than the path can handle, this 595 * exponential growth results in dropped packet(s) 596 * almost immediately. To get more time between 597 * drops but still "push" the network to take advantage 598 * of improving conditions, we switch from exponential 599 * to linear window opening at some threshhold size. 600 * For a threshhold, we use half the current window 601 * size, truncated to a multiple of the mss. 602 * 603 * (the minimum cwnd that will give us exponential 604 * growth is 2 mss. We don't allow the threshhold 605 * to go below this.) 606 */ 607 { 608 u_int win = min(tp->snd_wnd, tp->snd_cwnd) / 2 / tp->t_maxseg; 609 if (win < 2) 610 win = 2; 611 tp->snd_cwnd = tp->t_maxseg; 612 tp->snd_ssthresh = win * tp->t_maxseg; 613 tp->t_dupacks = 0; 614 } 615 EXIT_FASTRECOVERY(tp); 616 (void) tcp_output(tp); 617 618 out: 619 #ifdef TCPDEBUG 620 if (tp && (tp->t_inpcb->inp_socket->so_options & SO_DEBUG)) 621 tcp_trace(TA_USER, ostate, tp, (void *)0, (struct tcphdr *)0, 622 PRU_SLOWTIMO); 623 #endif 624 if (tp) 625 INP_UNLOCK(inp); 626 if (headlocked) 627 INP_INFO_WUNLOCK(&tcbinfo); 628 splx(s); 629 } 630