File: | netinet/tcp_timer.c |
Warning: | line 241, column 3 Value stored to 'tp' is never read |
Press '?' to see keyboard shortcuts
Keyboard shortcuts:
1 | /* $OpenBSD: tcp_timer.c,v 1.69 2022/01/02 22:36:04 jsg Exp $ */ |
2 | /* $NetBSD: tcp_timer.c,v 1.14 1996/02/13 23:44:09 christos Exp $ */ |
3 | |
4 | /* |
5 | * Copyright (c) 1982, 1986, 1988, 1990, 1993 |
6 | * The Regents of the University of California. All rights reserved. |
7 | * |
8 | * Redistribution and use in source and binary forms, with or without |
9 | * modification, are permitted provided that the following conditions |
10 | * are met: |
11 | * 1. Redistributions of source code must retain the above copyright |
12 | * notice, this list of conditions and the following disclaimer. |
13 | * 2. Redistributions in binary form must reproduce the above copyright |
14 | * notice, this list of conditions and the following disclaimer in the |
15 | * documentation and/or other materials provided with the distribution. |
16 | * 3. Neither the name of the University nor the names of its contributors |
17 | * may be used to endorse or promote products derived from this software |
18 | * without specific prior written permission. |
19 | * |
20 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
21 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
22 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
23 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
24 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
25 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
26 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
27 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
28 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
29 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
30 | * SUCH DAMAGE. |
31 | * |
32 | * @(#)tcp_timer.c 8.1 (Berkeley) 6/10/93 |
33 | */ |
34 | |
35 | #include <sys/param.h> |
36 | #include <sys/systm.h> |
37 | #include <sys/mbuf.h> |
38 | #include <sys/socket.h> |
39 | #include <sys/socketvar.h> |
40 | #include <sys/protosw.h> |
41 | #include <sys/kernel.h> |
42 | #include <sys/pool.h> |
43 | |
44 | #include <net/route.h> |
45 | |
46 | #include <netinet/in.h> |
47 | #include <netinet/ip.h> |
48 | #include <netinet/in_pcb.h> |
49 | #include <netinet/ip_var.h> |
50 | #include <netinet/tcp.h> |
51 | #include <netinet/tcp_fsm.h> |
52 | #include <netinet/tcp_timer.h> |
53 | #include <netinet/tcp_var.h> |
54 | #include <netinet/tcp_debug.h> |
55 | #include <netinet/ip_icmp.h> |
56 | #include <netinet/tcp_seq.h> |
57 | |
58 | int tcp_always_keepalive; |
59 | int tcp_keepidle; |
60 | int tcp_keepintvl; |
61 | int tcp_maxpersistidle; /* max idle time in persist */ |
62 | int tcp_maxidle; |
63 | |
64 | /* |
65 | * Time to delay the ACK. This is initialized in tcp_init(), unless |
66 | * its patched. |
67 | */ |
68 | int tcp_delack_msecs; |
69 | |
70 | void tcp_timer_rexmt(void *); |
71 | void tcp_timer_persist(void *); |
72 | void tcp_timer_keep(void *); |
73 | void tcp_timer_2msl(void *); |
74 | void tcp_timer_reaper(void *); |
75 | void tcp_timer_delack(void *); |
76 | |
77 | const tcp_timer_func_t tcp_timer_funcs[TCPT_NTIMERS6] = { |
78 | tcp_timer_rexmt, |
79 | tcp_timer_persist, |
80 | tcp_timer_keep, |
81 | tcp_timer_2msl, |
82 | tcp_timer_reaper, |
83 | tcp_timer_delack, |
84 | }; |
85 | |
86 | /* |
87 | * Timer state initialization, called from tcp_init(). |
88 | */ |
89 | void |
90 | tcp_timer_init(void) |
91 | { |
92 | |
93 | if (tcp_keepidle == 0) |
94 | tcp_keepidle = TCPTV_KEEP_IDLE(120*60*2); |
95 | |
96 | if (tcp_keepintvl == 0) |
97 | tcp_keepintvl = TCPTV_KEEPINTVL( 75*2); |
98 | |
99 | if (tcp_maxpersistidle == 0) |
100 | tcp_maxpersistidle = TCPTV_KEEP_IDLE(120*60*2); |
101 | |
102 | if (tcp_delack_msecs == 0) |
103 | tcp_delack_msecs = TCP_DELACK_MSECS200; |
104 | } |
105 | |
106 | /* |
107 | * Callout to process delayed ACKs for a TCPCB. |
108 | */ |
109 | void |
110 | tcp_timer_delack(void *arg) |
111 | { |
112 | struct tcpcb *otp = NULL((void *)0), *tp = arg; |
113 | short ostate; |
114 | |
115 | /* |
116 | * If tcp_output() wasn't able to transmit the ACK |
117 | * for whatever reason, it will restart the delayed |
118 | * ACK callout. |
119 | */ |
120 | NET_LOCK()do { rw_enter_write(&netlock); } while (0); |
121 | /* Ignore canceled timeouts or timeouts that have been rescheduled. */ |
122 | if (!ISSET((tp)->t_flags, TF_TMR_DELACK)(((tp)->t_flags) & (0x80000000)) || |
123 | timeout_pending(&tp->t_timer[TCPT_DELACK])((&tp->t_timer[5])->to_flags & 0x02)) |
124 | goto out; |
125 | CLR((tp)->t_flags, TF_TMR_DELACK)(((tp)->t_flags) &= ~(0x80000000)); |
126 | |
127 | if (tp->t_inpcb->inp_socket->so_options & SO_DEBUG0x0001) { |
128 | otp = tp; |
129 | ostate = tp->t_state; |
130 | } |
131 | tp->t_flags |= TF_ACKNOW0x0001; |
132 | (void) tcp_output(tp); |
133 | if (otp) |
134 | tcp_trace(TA_TIMER5, ostate, tp, otp, NULL((void *)0), TCPT_DELACK5, 0); |
135 | out: |
136 | NET_UNLOCK()do { rw_exit_write(&netlock); } while (0); |
137 | } |
138 | |
139 | /* |
140 | * Tcp protocol timeout routine called every 500 ms. |
141 | * Updates the timers in all active tcb's and |
142 | * causes finite state machine actions if timers expire. |
143 | */ |
144 | void |
145 | tcp_slowtimo(void) |
146 | { |
147 | NET_LOCK()do { rw_enter_write(&netlock); } while (0); |
148 | |
149 | tcp_maxidle = TCPTV_KEEPCNT8 * tcp_keepintvl; |
150 | tcp_iss += TCP_ISSINCR2(1*1024*1024)/PR_SLOWHZ2; /* increment iss */ |
151 | tcp_now++; /* for timestamps */ |
152 | |
153 | NET_UNLOCK()do { rw_exit_write(&netlock); } while (0); |
154 | } |
155 | |
156 | /* |
157 | * Cancel all timers for TCP tp. |
158 | */ |
159 | void |
160 | tcp_canceltimers(struct tcpcb *tp) |
161 | { |
162 | int i; |
163 | |
164 | for (i = 0; i < TCPT_NTIMERS6; i++) |
165 | TCP_TIMER_DISARM(tp, i)do { (((tp)->t_flags) &= ~(0x04000000 << (i))); timeout_del (&(tp)->t_timer[(i)]); } while (0); |
166 | } |
167 | |
168 | int tcp_backoff[TCP_MAXRXTSHIFT12 + 1] = |
169 | { 1, 2, 4, 8, 16, 32, 64, 64, 64, 64, 64, 64, 64 }; |
170 | |
171 | int tcp_totbackoff = 511; /* sum of tcp_backoff[] */ |
172 | |
173 | /* |
174 | * TCP timer processing. |
175 | */ |
176 | |
177 | void tcp_timer_freesack(struct tcpcb *); |
178 | |
179 | void |
180 | tcp_timer_freesack(struct tcpcb *tp) |
181 | { |
182 | struct sackhole *p, *q; |
183 | /* |
184 | * Free SACK holes for 2MSL and REXMT timers. |
185 | */ |
186 | q = tp->snd_holes; |
187 | while (q != NULL((void *)0)) { |
188 | p = q; |
189 | q = q->next; |
190 | pool_put(&sackhl_pool, p); |
191 | } |
192 | tp->snd_holes = 0; |
193 | } |
194 | |
195 | void |
196 | tcp_timer_rexmt(void *arg) |
197 | { |
198 | struct tcpcb *otp = NULL((void *)0), *tp = arg; |
199 | uint32_t rto; |
200 | short ostate; |
201 | |
202 | NET_LOCK()do { rw_enter_write(&netlock); } while (0); |
203 | /* Ignore canceled timeouts or timeouts that have been rescheduled. */ |
204 | if (!ISSET((tp)->t_flags, TF_TMR_REXMT)(((tp)->t_flags) & (0x04000000)) || |
205 | timeout_pending(&tp->t_timer[TCPT_REXMT])((&tp->t_timer[0])->to_flags & 0x02)) |
206 | goto out; |
207 | CLR((tp)->t_flags, TF_TMR_REXMT)(((tp)->t_flags) &= ~(0x04000000)); |
208 | |
209 | if ((tp->t_flags & TF_PMTUD_PEND0x00400000) && tp->t_inpcb && |
210 | SEQ_GEQ(tp->t_pmtud_th_seq, tp->snd_una)((int)((tp->t_pmtud_th_seq)-(tp->snd_una)) >= 0) && |
211 | SEQ_LT(tp->t_pmtud_th_seq, (int)(tp->snd_una + tp->t_maxseg))((int)((tp->t_pmtud_th_seq)-((int)(tp->snd_una + tp-> t_maxseg))) < 0)) { |
212 | struct sockaddr_in sin; |
213 | struct icmp icmp; |
214 | |
215 | tp->t_flags &= ~TF_PMTUD_PEND0x00400000; |
216 | |
217 | /* XXX create fake icmp message with relevant entries */ |
218 | icmp.icmp_nextmtuicmp_hun.ih_pmtu.ipm_nextmtu = tp->t_pmtud_nextmtu; |
219 | icmp.icmp_ipicmp_dun.id_ip.idi_ip.ip_len = tp->t_pmtud_ip_len; |
220 | icmp.icmp_ipicmp_dun.id_ip.idi_ip.ip_hl = tp->t_pmtud_ip_hl; |
221 | icmp.icmp_ipicmp_dun.id_ip.idi_ip.ip_dst = tp->t_inpcb->inp_faddrinp_faddru.iau_a4u.inaddr; |
222 | icmp_mtudisc(&icmp, tp->t_inpcb->inp_rtableid); |
223 | |
224 | /* |
225 | * Notify all connections to the same peer about |
226 | * new mss and trigger retransmit. |
227 | */ |
228 | bzero(&sin, sizeof(sin))__builtin_bzero((&sin), (sizeof(sin))); |
229 | sin.sin_len = sizeof(sin); |
230 | sin.sin_family = AF_INET2; |
231 | sin.sin_addr = tp->t_inpcb->inp_faddrinp_faddru.iau_a4u.inaddr; |
232 | in_pcbnotifyall(&tcbtable, sintosa(&sin), |
233 | tp->t_inpcb->inp_rtableid, EMSGSIZE40, tcp_mtudisc); |
234 | goto out; |
235 | } |
236 | |
237 | tcp_timer_freesack(tp); |
238 | if (++tp->t_rxtshift > TCP_MAXRXTSHIFT12) { |
239 | tp->t_rxtshift = TCP_MAXRXTSHIFT12; |
240 | tcpstat_inc(tcps_timeoutdrop); |
241 | tp = tcp_drop(tp, tp->t_softerror ? |
Value stored to 'tp' is never read | |
242 | tp->t_softerror : ETIMEDOUT60); |
243 | goto out; |
244 | } |
245 | if (tp->t_inpcb->inp_socket->so_options & SO_DEBUG0x0001) { |
246 | otp = tp; |
247 | ostate = tp->t_state; |
248 | } |
249 | tcpstat_inc(tcps_rexmttimeo); |
250 | rto = TCP_REXMTVAL(tp)((((tp)->t_srtt >> 3) + (tp)->t_rttvar) >> 2 ); |
251 | if (rto < tp->t_rttmin) |
252 | rto = tp->t_rttmin; |
253 | TCPT_RANGESET(tp->t_rxtcur,do { (tp->t_rxtcur) = (rto * tcp_backoff[tp->t_rxtshift ]); if ((tp->t_rxtcur) < (tp->t_rttmin)) (tp->t_rxtcur ) = (tp->t_rttmin); else if ((tp->t_rxtcur) > (( 64* 2))) (tp->t_rxtcur) = (( 64*2)); } while ( 0) |
254 | rto * tcp_backoff[tp->t_rxtshift],do { (tp->t_rxtcur) = (rto * tcp_backoff[tp->t_rxtshift ]); if ((tp->t_rxtcur) < (tp->t_rttmin)) (tp->t_rxtcur ) = (tp->t_rttmin); else if ((tp->t_rxtcur) > (( 64* 2))) (tp->t_rxtcur) = (( 64*2)); } while ( 0) |
255 | tp->t_rttmin, TCPTV_REXMTMAX)do { (tp->t_rxtcur) = (rto * tcp_backoff[tp->t_rxtshift ]); if ((tp->t_rxtcur) < (tp->t_rttmin)) (tp->t_rxtcur ) = (tp->t_rttmin); else if ((tp->t_rxtcur) > (( 64* 2))) (tp->t_rxtcur) = (( 64*2)); } while ( 0); |
256 | TCP_TIMER_ARM(tp, TCPT_REXMT, tp->t_rxtcur)do { (((tp)->t_flags) |= (0x04000000 << (0))); timeout_add_msec (&(tp)->t_timer[(0)], (tp->t_rxtcur) * 500); } while (0); |
257 | |
258 | /* |
259 | * If we are losing and we are trying path MTU discovery, |
260 | * try turning it off. This will avoid black holes in |
261 | * the network which suppress or fail to send "packet |
262 | * too big" ICMP messages. We should ideally do |
263 | * lots more sophisticated searching to find the right |
264 | * value here... |
265 | */ |
266 | if (ip_mtudisc && tp->t_inpcb && |
267 | TCPS_HAVEESTABLISHED(tp->t_state)((tp->t_state) >= 4) && |
268 | tp->t_rxtshift > TCP_MAXRXTSHIFT12 / 6) { |
269 | struct inpcb *inp = tp->t_inpcb; |
270 | struct rtentry *rt = NULL((void *)0); |
271 | |
272 | /* No data to send means path mtu is not a problem */ |
273 | if (!inp->inp_socket->so_snd.sb_cc) |
274 | goto leave; |
275 | |
276 | rt = in_pcbrtentry(inp); |
277 | /* Check if path MTU discovery is disabled already */ |
278 | if (rt && (rt->rt_flags & RTF_HOST0x4) && |
279 | (rt->rt_locksrt_rmx.rmx_locks & RTV_MTU0x1)) |
280 | goto leave; |
281 | |
282 | rt = NULL((void *)0); |
283 | switch(tp->pf) { |
284 | #ifdef INET61 |
285 | case PF_INET624: |
286 | /* |
287 | * We can not turn off path MTU for IPv6. |
288 | * Do nothing for now, maybe lower to |
289 | * minimum MTU. |
290 | */ |
291 | break; |
292 | #endif |
293 | case PF_INET2: |
294 | rt = icmp_mtudisc_clone(inp->inp_faddrinp_faddru.iau_a4u.inaddr, |
295 | inp->inp_rtableid, 0); |
296 | break; |
297 | } |
298 | if (rt != NULL((void *)0)) { |
299 | /* Disable path MTU discovery */ |
300 | if ((rt->rt_locksrt_rmx.rmx_locks & RTV_MTU0x1) == 0) { |
301 | rt->rt_locksrt_rmx.rmx_locks |= RTV_MTU0x1; |
302 | in_rtchange(inp, 0); |
303 | } |
304 | |
305 | rtfree(rt); |
306 | } |
307 | leave: |
308 | ; |
309 | } |
310 | |
311 | /* |
312 | * If losing, let the lower level know and try for |
313 | * a better route. Also, if we backed off this far, |
314 | * our srtt estimate is probably bogus. Clobber it |
315 | * so we'll take the next rtt measurement as our srtt; |
316 | * move the current srtt into rttvar to keep the current |
317 | * retransmit times until then. |
318 | */ |
319 | if (tp->t_rxtshift > TCP_MAXRXTSHIFT12 / 4) { |
320 | in_losing(tp->t_inpcb); |
321 | tp->t_rttvar += (tp->t_srtt >> TCP_RTT_SHIFT3); |
322 | tp->t_srtt = 0; |
323 | } |
324 | tp->snd_nxt = tp->snd_una; |
325 | /* |
326 | * Note: We overload snd_last to function also as the |
327 | * snd_last variable described in RFC 2582 |
328 | */ |
329 | tp->snd_last = tp->snd_max; |
330 | /* |
331 | * If timing a segment in this window, stop the timer. |
332 | */ |
333 | tp->t_rtttime = 0; |
334 | #ifdef TCP_ECN1 |
335 | /* |
336 | * if ECN is enabled, there might be a broken firewall which |
337 | * blocks ecn packets. fall back to non-ecn. |
338 | */ |
339 | if ((tp->t_state == TCPS_SYN_SENT2 || tp->t_state == TCPS_SYN_RECEIVED3) |
340 | && tcp_do_ecn && !(tp->t_flags & TF_DISABLE_ECN0x00040000)) |
341 | tp->t_flags |= TF_DISABLE_ECN0x00040000; |
342 | #endif |
343 | /* |
344 | * Close the congestion window down to one segment |
345 | * (we'll open it by one segment for each ack we get). |
346 | * Since we probably have a window's worth of unacked |
347 | * data accumulated, this "slow start" keeps us from |
348 | * dumping all that data as back-to-back packets (which |
349 | * might overwhelm an intermediate gateway). |
350 | * |
351 | * There are two phases to the opening: Initially we |
352 | * open by one mss on each ack. This makes the window |
353 | * size increase exponentially with time. If the |
354 | * window is larger than the path can handle, this |
355 | * exponential growth results in dropped packet(s) |
356 | * almost immediately. To get more time between |
357 | * drops but still "push" the network to take advantage |
358 | * of improving conditions, we switch from exponential |
359 | * to linear window opening at some threshold size. |
360 | * For a threshold, we use half the current window |
361 | * size, truncated to a multiple of the mss. |
362 | * |
363 | * (the minimum cwnd that will give us exponential |
364 | * growth is 2 mss. We don't allow the threshold |
365 | * to go below this.) |
366 | */ |
367 | { |
368 | u_long win = ulmin(tp->snd_wnd, tp->snd_cwnd) / 2 / tp->t_maxseg; |
369 | if (win < 2) |
370 | win = 2; |
371 | tp->snd_cwnd = tp->t_maxseg; |
372 | tp->snd_ssthresh = win * tp->t_maxseg; |
373 | tp->t_dupacks = 0; |
374 | #ifdef TCP_ECN1 |
375 | tp->snd_last = tp->snd_max; |
376 | tp->t_flags |= TF_SEND_CWR0x00020000; |
377 | #endif |
378 | #if 1 /* TCP_ECN */ |
379 | tcpstat_inc(tcps_cwr_timeout); |
380 | #endif |
381 | } |
382 | (void) tcp_output(tp); |
383 | if (otp) |
384 | tcp_trace(TA_TIMER5, ostate, tp, otp, NULL((void *)0), TCPT_REXMT0, 0); |
385 | out: |
386 | NET_UNLOCK()do { rw_exit_write(&netlock); } while (0); |
387 | } |
388 | |
389 | void |
390 | tcp_timer_persist(void *arg) |
391 | { |
392 | struct tcpcb *otp = NULL((void *)0), *tp = arg; |
393 | uint32_t rto; |
394 | short ostate; |
395 | |
396 | NET_LOCK()do { rw_enter_write(&netlock); } while (0); |
397 | /* Ignore canceled timeouts or timeouts that have been rescheduled. */ |
398 | if (!ISSET((tp)->t_flags, TF_TMR_PERSIST)(((tp)->t_flags) & (0x08000000)) || |
399 | timeout_pending(&tp->t_timer[TCPT_PERSIST])((&tp->t_timer[1])->to_flags & 0x02)) |
400 | goto out; |
401 | CLR((tp)->t_flags, TF_TMR_PERSIST)(((tp)->t_flags) &= ~(0x08000000)); |
402 | |
403 | if (TCP_TIMER_ISARMED(tp, TCPT_REXMT)(((tp)->t_flags) & (0x04000000 << (0)))) |
404 | goto out; |
405 | |
406 | if (tp->t_inpcb->inp_socket->so_options & SO_DEBUG0x0001) { |
407 | otp = tp; |
408 | ostate = tp->t_state; |
409 | } |
410 | tcpstat_inc(tcps_persisttimeo); |
411 | /* |
412 | * Hack: if the peer is dead/unreachable, we do not |
413 | * time out if the window is closed. After a full |
414 | * backoff, drop the connection if the idle time |
415 | * (no responses to probes) reaches the maximum |
416 | * backoff that we would use if retransmitting. |
417 | */ |
418 | rto = TCP_REXMTVAL(tp)((((tp)->t_srtt >> 3) + (tp)->t_rttvar) >> 2 ); |
419 | if (rto < tp->t_rttmin) |
420 | rto = tp->t_rttmin; |
421 | if (tp->t_rxtshift == TCP_MAXRXTSHIFT12 && |
422 | ((tcp_now - tp->t_rcvtime) >= tcp_maxpersistidle || |
423 | (tcp_now - tp->t_rcvtime) >= rto * tcp_totbackoff)) { |
424 | tcpstat_inc(tcps_persistdrop); |
425 | tp = tcp_drop(tp, ETIMEDOUT60); |
426 | goto out; |
427 | } |
428 | tcp_setpersist(tp); |
429 | tp->t_force = 1; |
430 | (void) tcp_output(tp); |
431 | tp->t_force = 0; |
432 | if (otp) |
433 | tcp_trace(TA_TIMER5, ostate, tp, otp, NULL((void *)0), TCPT_PERSIST1, 0); |
434 | out: |
435 | NET_UNLOCK()do { rw_exit_write(&netlock); } while (0); |
436 | } |
437 | |
438 | void |
439 | tcp_timer_keep(void *arg) |
440 | { |
441 | struct tcpcb *otp = NULL((void *)0), *tp = arg; |
442 | short ostate; |
443 | |
444 | NET_LOCK()do { rw_enter_write(&netlock); } while (0); |
445 | /* Ignore canceled timeouts or timeouts that have been rescheduled. */ |
446 | if (!ISSET((tp)->t_flags, TF_TMR_KEEP)(((tp)->t_flags) & (0x10000000)) || |
447 | timeout_pending(&tp->t_timer[TCPT_KEEP])((&tp->t_timer[2])->to_flags & 0x02)) |
448 | goto out; |
449 | CLR((tp)->t_flags, TF_TMR_KEEP)(((tp)->t_flags) &= ~(0x10000000)); |
450 | |
451 | if (tp->t_inpcb->inp_socket->so_options & SO_DEBUG0x0001) { |
452 | otp = tp; |
453 | ostate = tp->t_state; |
454 | } |
455 | tcpstat_inc(tcps_keeptimeo); |
456 | if (TCPS_HAVEESTABLISHED(tp->t_state)((tp->t_state) >= 4) == 0) |
457 | goto dropit; |
458 | if ((tcp_always_keepalive || |
459 | tp->t_inpcb->inp_socket->so_options & SO_KEEPALIVE0x0008) && |
460 | tp->t_state <= TCPS_CLOSING7) { |
461 | if ((tcp_maxidle > 0) && |
462 | ((tcp_now - tp->t_rcvtime) >= tcp_keepidle + tcp_maxidle)) |
463 | goto dropit; |
464 | /* |
465 | * Send a packet designed to force a response |
466 | * if the peer is up and reachable: |
467 | * either an ACK if the connection is still alive, |
468 | * or an RST if the peer has closed the connection |
469 | * due to timeout or reboot. |
470 | * Using sequence number tp->snd_una-1 |
471 | * causes the transmitted zero-length segment |
472 | * to lie outside the receive window; |
473 | * by the protocol spec, this requires the |
474 | * correspondent TCP to respond. |
475 | */ |
476 | tcpstat_inc(tcps_keepprobe); |
477 | tcp_respond(tp, mtod(tp->t_template, caddr_t)((caddr_t)((tp->t_template)->m_hdr.mh_data)), |
478 | NULL((void *)0), tp->rcv_nxt, tp->snd_una - 1, 0, 0); |
479 | TCP_TIMER_ARM(tp, TCPT_KEEP, tcp_keepintvl)do { (((tp)->t_flags) |= (0x04000000 << (2))); timeout_add_msec (&(tp)->t_timer[(2)], (tcp_keepintvl) * 500); } while ( 0); |
480 | } else |
481 | TCP_TIMER_ARM(tp, TCPT_KEEP, tcp_keepidle)do { (((tp)->t_flags) |= (0x04000000 << (2))); timeout_add_msec (&(tp)->t_timer[(2)], (tcp_keepidle) * 500); } while ( 0); |
482 | if (otp) |
483 | tcp_trace(TA_TIMER5, ostate, tp, otp, NULL((void *)0), TCPT_KEEP2, 0); |
484 | out: |
485 | NET_UNLOCK()do { rw_exit_write(&netlock); } while (0); |
486 | return; |
487 | |
488 | dropit: |
489 | tcpstat_inc(tcps_keepdrops); |
490 | tp = tcp_drop(tp, ETIMEDOUT60); |
491 | NET_UNLOCK()do { rw_exit_write(&netlock); } while (0); |
492 | } |
493 | |
494 | void |
495 | tcp_timer_2msl(void *arg) |
496 | { |
497 | struct tcpcb *otp = NULL((void *)0), *tp = arg; |
498 | short ostate; |
499 | |
500 | NET_LOCK()do { rw_enter_write(&netlock); } while (0); |
501 | /* Ignore canceled timeouts or timeouts that have been rescheduled. */ |
502 | if (!ISSET((tp)->t_flags, TF_TMR_2MSL)(((tp)->t_flags) & (0x20000000)) || |
503 | timeout_pending(&tp->t_timer[TCPT_2MSL])((&tp->t_timer[3])->to_flags & 0x02)) |
504 | goto out; |
505 | CLR((tp)->t_flags, TF_TMR_2MSL)(((tp)->t_flags) &= ~(0x20000000)); |
506 | |
507 | if (tp->t_inpcb->inp_socket->so_options & SO_DEBUG0x0001) { |
508 | otp = tp; |
509 | ostate = tp->t_state; |
510 | } |
511 | tcp_timer_freesack(tp); |
512 | |
513 | if (tp->t_state != TCPS_TIME_WAIT10 && |
514 | ((tcp_maxidle == 0) || ((tcp_now - tp->t_rcvtime) <= tcp_maxidle))) |
515 | TCP_TIMER_ARM(tp, TCPT_2MSL, tcp_keepintvl)do { (((tp)->t_flags) |= (0x04000000 << (3))); timeout_add_msec (&(tp)->t_timer[(3)], (tcp_keepintvl) * 500); } while ( 0); |
516 | else |
517 | tp = tcp_close(tp); |
518 | if (otp) |
519 | tcp_trace(TA_TIMER5, ostate, tp, otp, NULL((void *)0), TCPT_2MSL3, 0); |
520 | out: |
521 | NET_UNLOCK()do { rw_exit_write(&netlock); } while (0); |
522 | } |
523 | |
524 | void |
525 | tcp_timer_reaper(void *arg) |
526 | { |
527 | struct tcpcb *tp = arg; |
528 | |
529 | /* |
530 | * This timer is necessary to delay the pool_put() after all timers |
531 | * have finished, even if they were sleeping to grab the net lock. |
532 | * Putting the pool_put() in a timer is sufficient as all timers run |
533 | * from the same timeout thread. Note that neither softnet thread nor |
534 | * user process may access the tcpcb after arming the reaper timer. |
535 | * Freeing may run in parallel as it does not grab the net lock. |
536 | */ |
537 | pool_put(&tcpcb_pool, tp); |
538 | tcpstat_inc(tcps_closed); |
539 | } |