tcp: reset fin-wait-2 timeout connections 21/25121/8
authorFlorin Coras <fcoras@cisco.com>
Thu, 13 Feb 2020 19:24:58 +0000 (19:24 +0000)
committerDave Barach <openvpp@barachs.net>
Fri, 14 Feb 2020 21:36:25 +0000 (21:36 +0000)
Type: improvement

Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Id931f3f308a01788d222d0d62f26f5c579321c6a

src/vnet/tcp/tcp.c
src/vnet/tcp/tcp.h

index f83f00a..e34f773 100644 (file)
@@ -1431,6 +1431,14 @@ tcp_timer_waitclose_handler (u32 conn_index, u32 thread_index)
       session_transport_closed_notify (&tc->connection);
       tcp_worker_stats_inc (thread_index, to_closing, 1);
       break;
+    case TCP_STATE_FIN_WAIT_2:
+      tcp_send_reset (tc);
+      tcp_connection_timers_reset (tc);
+      tcp_connection_set_state (tc, TCP_STATE_CLOSED);
+      session_transport_closed_notify (&tc->connection);
+      tcp_timer_set (tc, TCP_TIMER_WAITCLOSE, tcp_cfg.cleanup_time);
+      tcp_worker_stats_inc (thread_index, to_finwait2, 1);
+      break;
     default:
       tcp_connection_del (tc);
       break;
index 1549efb..a60e105 100644 (file)
@@ -508,6 +508,7 @@ typedef struct _tcp_lookup_dispatch
   _(tr_events, u32, "timer retransmit events")                 \
   _(to_closewait, u32, "timeout close-wait")                   \
   _(to_finwait1, u32, "timeout fin-wait-1")                    \
+  _(to_finwait2, u32, "timeout fin-wait-2")                    \
   _(to_lastack, u32, "timeout last-ack")                       \
   _(to_closing, u32, "timeout closing")                                \
   _(tr_abort, u32, "timer retransmit abort")                   \