Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Step:15-SP4
curl
curl-CVE-2024-2398.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File curl-CVE-2024-2398.patch of Package curl
From deca8039991886a559b67bcd6701db800a5cf764 Mon Sep 17 00:00:00 2001 From: Stefan Eissing <stefan@eissing.org> Date: Wed, 6 Mar 2024 09:36:08 +0100 Subject: [PATCH] http2: push headers better cleanup - provide common cleanup method for push headers Closes #13054 --- lib/http2.c | 34 +++++++++++++++------------------- 1 file changed, 15 insertions(+), 19 deletions(-) Index: curl-8.0.1/lib/http2.c =================================================================== --- curl-8.0.1.orig/lib/http2.c +++ curl-8.0.1/lib/http2.c @@ -696,6 +696,15 @@ static int set_transfer_url(struct Curl_ return 0; } +static void free_push_headers(struct HTTP *stream) +{ + size_t i; + for(i = 0; i<stream->push_headers_used; i++) + free(stream->push_headers[i]); + Curl_safefree(stream->push_headers); + stream->push_headers_used = 0; +} + static int push_promise(struct Curl_cfilter *cf, struct Curl_easy *data, const nghttp2_push_promise *frame) @@ -710,7 +719,6 @@ static int push_promise(struct Curl_cfil struct HTTP *newstream; struct curl_pushheaders heads; CURLMcode rc; - size_t i; /* clone the parent */ struct Curl_easy *newhandle = h2_duphandle(cf, data); if(!newhandle) { @@ -746,11 +754,7 @@ static int push_promise(struct Curl_cfil Curl_set_in_callback(data, false); /* free the headers again */ - for(i = 0; i<stream->push_headers_used; i++) - free(stream->push_headers[i]); - free(stream->push_headers); - stream->push_headers = NULL; - stream->push_headers_used = 0; + free_push_headers(stream); if(rv) { DEBUGASSERT((rv > CURL_PUSH_OK) && (rv <= CURL_PUSH_ERROROUT)); @@ -1210,14 +1214,14 @@ static int on_header(nghttp2_session *se if(stream->push_headers_alloc > 1000) { /* this is beyond crazy many headers, bail out */ failf(data_s, "Too many PUSH_PROMISE headers"); - Curl_safefree(stream->push_headers); + free_push_headers(stream); return NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE; } stream->push_headers_alloc *= 2; - headp = Curl_saferealloc(stream->push_headers, - stream->push_headers_alloc * sizeof(char *)); + headp = realloc(stream->push_headers, + stream->push_headers_alloc * sizeof(char *)); if(!headp) { - stream->push_headers = NULL; + free_push_headers(stream); return NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE; } stream->push_headers = headp; @@ -1376,14 +1380,7 @@ static void http2_data_done(struct Curl_ setup */ Curl_dyn_free(&stream->header_recvbuf); Curl_dyn_free(&stream->trailer_recvbuf); - if(stream->push_headers) { - /* if they weren't used and then freed before */ - for(; stream->push_headers_used > 0; --stream->push_headers_used) { - free(stream->push_headers[stream->push_headers_used - 1]); - } - free(stream->push_headers); - stream->push_headers = NULL; - } + free_push_headers(stream); if(!ctx || !ctx->h2) return;
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor