summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-02-18 09:10:01 +0100
committerDaniel Stenberg <daniel@haxx.se>2019-02-18 09:14:12 +0100
commit228cb2511e00badc78eb2356232b40eee54d0dbc (patch)
tree5bdf4496ee125551aef9ced5e1c9a4814588d657
parentf26bc29cfec0be84c67cf74065cf8e5e78fd68b7 (diff)
downloadcurl-228cb2511e00badc78eb2356232b40eee54d0dbc.tar.gz
http2: verify :athority in push promise requests
RFC 7540 says we should verify that the push is for an "authoritative" server. We make sure of this by only allowing push with an :athority header that matches the host that was asked for in the URL. Fixes #3577 Reported-by: Nicolas Grekas Bug: https://curl.haxx.se/mail/lib-2019-02/0057.html
-rw-r--r--lib/http2.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/http2.c b/lib/http2.c
index 2884c7152..4f18b200f 100644
--- a/lib/http2.c
+++ b/lib/http2.c
@@ -969,6 +969,26 @@ static int on_header(nghttp2_session *session, const nghttp2_frame *frame,
if(frame->hd.type == NGHTTP2_PUSH_PROMISE) {
char *h;
+ if(!strcmp(":authority", (const char *)name)) {
+ /* psuedo headers are lower case */
+ int rc = 0;
+ char *check = aprintf("%s:%d", conn->host.name, conn->remote_port);
+ if(!check)
+ /* no memory */
+ return NGHTTP2_ERR_CALLBACK_FAILURE;
+ if(!Curl_strcasecompare(check, (const char *)value)) {
+ /* This is push is not for the same authority that was asked for in
+ * the URL. RFC 7540 section 8.2 says: "A client MUST treat a
+ * PUSH_PROMISE for which the server is not authoritative as a stream
+ * error"
+ */
+ rc = NGHTTP2_ERR_CALLBACK_FAILURE;
+ }
+ free(check);
+ if(rc)
+ return rc;
+ }
+
if(!stream->push_headers) {
stream->push_headers_alloc = 10;
stream->push_headers = malloc(stream->push_headers_alloc *