tcp: remove bad assert 91/30791/1
authorIvan Shvedunov <ivan4th@gmail.com>
Sat, 16 Jan 2021 00:43:01 +0000 (03:43 +0300)
committerIvan Shvedunov <ivan4th@gmail.com>
Sat, 16 Jan 2021 00:46:36 +0000 (03:46 +0300)
Don't assume that half-open connections pending removal are always
successful.

Type: fix
Signed-off-by: Ivan Shvedunov <ivan4th@gmail.com>
Change-Id: I955077a4ed2389b9ee38d97e27a7c7761c860a4a

src/vnet/tcp/tcp_input.c

index 0a3d315..a159d85 100644 (file)
@@ -1812,13 +1812,10 @@ tcp46_syn_sent_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
          goto drop;
        }
 
-      /* Half-open completed recently but the connection was't removed
-       * yet by the owning thread */
+      /* Half-open completed or cancelled recently but the connection
+       * was't removed yet by the owning thread */
       if (PREDICT_FALSE (tc0->flags & TCP_CONN_HALF_OPEN_DONE))
        {
-         /* Make sure the connection actually exists */
-         ASSERT (tcp_lookup_connection (tc0->c_fib_index, b0,
-                                        my_thread_index, is_ip4));
          error0 = TCP_ERROR_SPURIOUS_SYN_ACK;
          goto drop;
        }