From: Florin Coras Date: Sat, 7 Oct 2023 21:27:52 +0000 (-0700) Subject: tls: propagate reads to app irrespective of state X-Git-Tag: v24.06-rc0~233 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=aa7b88120ad83a29a05522bed4e5aa71524b8aba;hp=a3d55df1e91a7df4ad4c0e1b639ba12a1ed04c79;p=vpp.git tls: propagate reads to app irrespective of state Session input node handles rx notifications even if session not fully accepted/connected Type: fix Signed-off-by: Florin Coras Change-Id: I6560c45db8f8e0b7f0dc3bdd0939f13ca2f43f15 --- diff --git a/src/plugins/tlsopenssl/tls_openssl.c b/src/plugins/tlsopenssl/tls_openssl.c index a3e93e1f588..15bea86ffd3 100644 --- a/src/plugins/tlsopenssl/tls_openssl.c +++ b/src/plugins/tlsopenssl/tls_openssl.c @@ -560,8 +560,7 @@ openssl_ctx_read_tls (tls_ctx_t *ctx, session_t *tls_session) return 0; } - /* If handshake just completed, session may still be in accepting state */ - if (read && app_session->session_state >= SESSION_STATE_READY) + if (read) tls_notify_app_enqueue (ctx, app_session); if ((SSL_pending (oc->ssl) > 0) || diff --git a/src/plugins/tlspicotls/tls_picotls.c b/src/plugins/tlspicotls/tls_picotls.c index 393f2bf9940..4c19084fea3 100644 --- a/src/plugins/tlspicotls/tls_picotls.c +++ b/src/plugins/tlspicotls/tls_picotls.c @@ -445,7 +445,7 @@ picotls_ctx_read (tls_ctx_t *ctx, session_t *tcp_session) app_session = session_get_from_handle (ctx->app_session_handle); wrote = ptls_tcp_to_app_write (ptls_ctx, app_session->rx_fifo, tcp_rx_fifo); - if (wrote && app_session->session_state >= SESSION_STATE_READY) + if (wrote) tls_notify_app_enqueue (ctx, app_session); if (ptls_ctx->read_buffer_offset || svm_fifo_max_dequeue (tcp_rx_fifo))