session: fix cleanup in closing states 45/22245/5
authorFlorin Coras <fcoras@cisco.com>
Tue, 24 Sep 2019 19:45:14 +0000 (12:45 -0700)
committerJohn Lo <loj@cisco.com>
Wed, 25 Sep 2019 14:26:57 +0000 (14:26 +0000)
Type: fix

Change-Id: Iccc283bb98d3bb459a711ec2b74d6a32ad12903b
Signed-off-by: Florin Coras <fcoras@cisco.com>
src/vnet/session/session.c
src/vnet/tcp/tcp.c

index cc9f4a8..47f7326 100644 (file)
@@ -1279,11 +1279,9 @@ session_transport_reset (session_t * s)
 void
 session_transport_cleanup (session_t * s)
 {
-  s->session_state = SESSION_STATE_CLOSED;
-
   /* Delete from main lookup table before we axe the the transport */
   session_lookup_del_session (s);
-  if (s->session_state != SESSION_STATE_TRANSPORT_DELETED)
+  if (s->session_state < SESSION_STATE_TRANSPORT_DELETED)
     transport_cleanup (session_get_transport_proto (s), s->connection_index,
                       s->thread_index);
   /* Since we called cleanup, no delete notification will come. So, make
index 2ea4e51..12e2419 100644 (file)
@@ -475,6 +475,8 @@ tcp_session_cleanup (u32 conn_index, u32 thread_index)
 {
   tcp_connection_t *tc;
   tc = tcp_connection_get (conn_index, thread_index);
+  if (!tc)
+    return;
   tcp_connection_set_state (tc, TCP_STATE_CLOSED);
   tcp_connection_cleanup (tc);
 }