tcp: reject out-of-order fins 03/20403/2
authorFlorin Coras <fcoras@cisco.com>
Fri, 28 Jun 2019 16:18:48 +0000 (09:18 -0700)
committerDave Wallace <dwallacelf@gmail.com>
Fri, 28 Jun 2019 17:54:49 +0000 (17:54 +0000)
Type:fix

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

index 23030ee..848028f 100644 (file)
@@ -1698,6 +1698,10 @@ static void
 tcp_rcv_fin (tcp_worker_ctx_t * wrk, tcp_connection_t * tc, vlib_buffer_t * b,
             u32 * error)
 {
+  /* Reject out-of-order fins */
+  if (vnet_buffer (b)->tcp.seq_end != tc->rcv_nxt)
+    return;
+
   /* Account for the FIN and send ack */
   tc->rcv_nxt += 1;
   tcp_program_ack (wrk, tc);