From 3dcd85139f30625f2e4d072fe2b0f211f76f819c Mon Sep 17 00:00:00 2001 From: Neil Horman Date: Fri, 1 Mar 2024 10:12:01 -0500 Subject: [PATCH] Make a failure in ktls_sendfile a syscall error a failure in ktls_sendfile results in an error in ERR_LIB_SSL, but its really a syscall error, since ktls_sendfile just maps to a call to the sendfile syscall. Encode it as such Fixes #23722 Reviewed-by: Matt Caswell Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/23723) --- ssl/ssl_lib.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c index ccb2f28604b..ed3522c7f5a 100644 --- a/ssl/ssl_lib.c +++ b/ssl/ssl_lib.c @@ -2603,7 +2603,8 @@ ossl_ssize_t SSL_sendfile(SSL *s, int fd, off_t offset, size_t size, int flags) BIO_set_retry_write(sc->wbio); else #endif - ERR_raise(ERR_LIB_SSL, SSL_R_UNINITIALIZED); + ERR_raise_data(ERR_LIB_SYS, get_last_sys_error(), + "ktls_sendfile failure"); return ret; } sc->rwstate = SSL_NOTHING; -- 2.47.2