mirror of
https://git.yoctoproject.org/poky
synced 2026-04-04 23:02:22 +02:00
curl: free old conn better on reuse
Backport a patch [1] to free old conn better on reuse to fix the memory leak issue [2]. [1] https://github.com/curl/curl/commit/06d1210 [2] https://github.com/curl/curl/issues/8841 (From OE-Core rev: fbb820cdfc480e2481d51b9a1057454832f02b23) Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
This commit is contained in:
@@ -0,0 +1,95 @@
|
||||
From 06d12105c7aa883a62802e36eebb76d5303247d0 Mon Sep 17 00:00:00 2001
|
||||
From: Daniel Stenberg <daniel@haxx.se>
|
||||
Date: Sat, 14 May 2022 18:04:46 +0200
|
||||
Subject: [PATCH] url: free old conn better on reuse
|
||||
|
||||
Make use of conn_free() better and avoid duplicate code.
|
||||
|
||||
Reported-by: Andrea Pappacoda
|
||||
Fixes #8841
|
||||
Closes #8842
|
||||
|
||||
Upstream-Status: Backport [https://github.com/curl/curl/commit/06d12105c7aa883a62802e36eebb76d5303247d0]
|
||||
|
||||
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
|
||||
---
|
||||
lib/url.c | 34 ++++------------------------------
|
||||
1 file changed, 4 insertions(+), 30 deletions(-)
|
||||
|
||||
diff --git a/lib/url.c b/lib/url.c
|
||||
index 631e49696..c2d9e78f4 100644
|
||||
--- a/lib/url.c
|
||||
+++ b/lib/url.c
|
||||
@@ -3498,17 +3498,6 @@ static void reuse_conn(struct Curl_easy *data,
|
||||
**established** from the primary socket to a remote address. */
|
||||
char local_ip[MAX_IPADR_LEN] = "";
|
||||
int local_port = -1;
|
||||
-#ifndef CURL_DISABLE_PROXY
|
||||
- Curl_free_idnconverted_hostname(&old_conn->http_proxy.host);
|
||||
- Curl_free_idnconverted_hostname(&old_conn->socks_proxy.host);
|
||||
-
|
||||
- free(old_conn->http_proxy.host.rawalloc);
|
||||
- free(old_conn->socks_proxy.host.rawalloc);
|
||||
- Curl_free_primary_ssl_config(&old_conn->proxy_ssl_config);
|
||||
-#endif
|
||||
- /* free the SSL config struct from this connection struct as this was
|
||||
- allocated in vain and is targeted for destruction */
|
||||
- Curl_free_primary_ssl_config(&old_conn->ssl_config);
|
||||
|
||||
/* get the user+password information from the old_conn struct since it may
|
||||
* be new for this request even when we re-use an existing connection */
|
||||
@@ -3539,20 +3528,17 @@ static void reuse_conn(struct Curl_easy *data,
|
||||
old_conn->http_proxy.passwd = NULL;
|
||||
old_conn->socks_proxy.passwd = NULL;
|
||||
}
|
||||
- Curl_safefree(old_conn->http_proxy.user);
|
||||
- Curl_safefree(old_conn->socks_proxy.user);
|
||||
- Curl_safefree(old_conn->http_proxy.passwd);
|
||||
- Curl_safefree(old_conn->socks_proxy.passwd);
|
||||
#endif
|
||||
|
||||
- /* host can change, when doing keepalive with a proxy or if the case is
|
||||
- different this time etc */
|
||||
Curl_free_idnconverted_hostname(&conn->host);
|
||||
Curl_free_idnconverted_hostname(&conn->conn_to_host);
|
||||
Curl_safefree(conn->host.rawalloc);
|
||||
Curl_safefree(conn->conn_to_host.rawalloc);
|
||||
conn->host = old_conn->host;
|
||||
+ old_conn->host.rawalloc = NULL;
|
||||
+ old_conn->host.encalloc = NULL;
|
||||
conn->conn_to_host = old_conn->conn_to_host;
|
||||
+ old_conn->conn_to_host.rawalloc = NULL;
|
||||
conn->conn_to_port = old_conn->conn_to_port;
|
||||
conn->remote_port = old_conn->remote_port;
|
||||
Curl_safefree(conn->hostname_resolve);
|
||||
@@ -3572,15 +3558,7 @@ static void reuse_conn(struct Curl_easy *data,
|
||||
/* re-use init */
|
||||
conn->bits.reuse = TRUE; /* yes, we're re-using here */
|
||||
|
||||
- Curl_safefree(old_conn->user);
|
||||
- Curl_safefree(old_conn->passwd);
|
||||
- Curl_safefree(old_conn->options);
|
||||
- Curl_safefree(old_conn->localdev);
|
||||
- Curl_llist_destroy(&old_conn->easyq, NULL);
|
||||
-
|
||||
-#ifdef USE_UNIX_SOCKETS
|
||||
- Curl_safefree(old_conn->unix_domain_socket);
|
||||
-#endif
|
||||
+ conn_free(old_conn);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -3930,10 +3908,6 @@ static CURLcode create_conn(struct Curl_easy *data,
|
||||
* allocated before we can move along and use the previously existing one.
|
||||
*/
|
||||
reuse_conn(data, conn, conn_temp);
|
||||
-#ifdef USE_SSL
|
||||
- free(conn->ssl_extra);
|
||||
-#endif
|
||||
- free(conn); /* we don't need this anymore */
|
||||
conn = conn_temp;
|
||||
*in_connect = conn;
|
||||
|
||||
--
|
||||
2.34.1
|
||||
|
||||
@@ -61,6 +61,7 @@ SRC_URI = "https://curl.se/download/${BP}.tar.xz \
|
||||
file://CVE-2024-7264_1.patch \
|
||||
file://CVE-2024-7264_2.patch \
|
||||
file://CVE-2024-8096.patch \
|
||||
file://0001-url-free-old-conn-better-on-reuse.patch \
|
||||
"
|
||||
SRC_URI[sha256sum] = "0aaa12d7bd04b0966254f2703ce80dd5c38dbbd76af0297d3d690cdce58a583c"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user