tls: no read after app close 73/39573/2
authorFlorin Coras <fcoras@cisco.com>
Sat, 7 Oct 2023 00:31:32 +0000 (17:31 -0700)
committerDave Wallace <dwallacelf@gmail.com>
Mon, 9 Oct 2023 21:41:12 +0000 (21:41 +0000)
Type: fix

Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I34f8ee2e36d07e8e55e21561528fc6b73feb852f
(cherry picked from commit 3843d0dd03a3ebbdb5d13b54e1b871a8ea72498c)

src/vnet/tls/tls.c

index b7ef7de..aca8c9f 100644 (file)
@@ -516,7 +516,7 @@ tls_app_rx_callback (session_t * tls_session)
     return 0;
 
   ctx = tls_ctx_get (tls_session->opaque);
-  if (PREDICT_FALSE (ctx->no_app_session))
+  if (PREDICT_FALSE (ctx->no_app_session || ctx->app_closed))
     {
       TLS_DBG (1, "Local App closed");
       return 0;