f33ba3
From 8b6d55f6a047acf62675e32606b037f5eea8ccc7 Mon Sep 17 00:00:00 2001
f33ba3
From: Eric Covener <covener@apache.org>
f33ba3
Date: Tue, 10 Jan 2023 13:20:09 +0000
f33ba3
Subject: [PATCH] Merge r1906539 from trunk:
f33ba3
f33ba3
fail on bad header
f33ba3
f33ba3
Submitted By: covener
f33ba3
Reviewed By: covener, rpluem, gbechis
f33ba3
f33ba3
f33ba3
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1906541 13f79535-47bb-0310-9956-ffa450edef68
f33ba3
---
f33ba3
 modules/proxy/mod_proxy_http.c | 46 ++++++++++++++++++++--------------
f33ba3
 server/protocol.c              |  2 ++
f33ba3
 2 files changed, 29 insertions(+), 19 deletions(-)
f33ba3
f33ba3
diff --git a/modules/proxy/mod_proxy_http.c b/modules/proxy/mod_proxy_http.c
f33ba3
index d74ae054ac9..ec4e7fb06b5 100644
f33ba3
--- a/modules/proxy/mod_proxy_http.c
f33ba3
+++ b/modules/proxy/mod_proxy_http.c
f33ba3
@@ -788,7 +788,7 @@ static void process_proxy_header(request_rec *r, proxy_dir_conf *c,
f33ba3
  * any sense at all, since we depend on buffer still containing
f33ba3
  * what was read by ap_getline() upon return.
f33ba3
  */
f33ba3
-static void ap_proxy_read_headers(request_rec *r, request_rec *rr,
f33ba3
+static apr_status_t ap_proxy_read_headers(request_rec *r, request_rec *rr,
f33ba3
                                   char *buffer, int size,
f33ba3
                                   conn_rec *c, int *pread_len)
f33ba3
 {
f33ba3
@@ -820,19 +820,26 @@ static void ap_proxy_read_headers(request_rec *r, request_rec *rr,
f33ba3
         rc = ap_proxygetline(tmp_bb, buffer, size, rr,
f33ba3
                              AP_GETLINE_FOLD | AP_GETLINE_NOSPC_EOL, &len;;
f33ba3
 
f33ba3
-        if (len <= 0)
f33ba3
-            break;
f33ba3
 
f33ba3
-        if (APR_STATUS_IS_ENOSPC(rc)) {
f33ba3
-            /* The header could not fit in the provided buffer, warn.
f33ba3
-             * XXX: falls through with the truncated header, 5xx instead?
f33ba3
-             */
f33ba3
-            int trunc = (len > 128 ? 128 : len) / 2;
f33ba3
-            ap_log_rerror(APLOG_MARK, APLOG_WARNING, rc, r, APLOGNO(10124)
f33ba3
-                    "header size is over the limit allowed by "
f33ba3
-                    "ResponseFieldSize (%d bytes). "
f33ba3
-                    "Bad response header: '%.*s[...]%s'",
f33ba3
-                    size, trunc, buffer, buffer + len - trunc);
f33ba3
+        if (rc != APR_SUCCESS) {
f33ba3
+            if (APR_STATUS_IS_ENOSPC(rc)) {
f33ba3
+                int trunc = (len > 128 ? 128 : len) / 2;
f33ba3
+                ap_log_rerror(APLOG_MARK, APLOG_WARNING, rc, r, APLOGNO(10124)
f33ba3
+                        "header size is over the limit allowed by "
f33ba3
+                        "ResponseFieldSize (%d bytes). "
f33ba3
+                        "Bad response header: '%.*s[...]%s'",
f33ba3
+                        size, trunc, buffer, buffer + len - trunc);
f33ba3
+            }
f33ba3
+            else {
f33ba3
+                ap_log_rerror(APLOG_MARK, APLOG_WARNING, rc, r, APLOGNO(10404) 
f33ba3
+                              "Error reading headers from backend");
f33ba3
+            }
f33ba3
+            r->headers_out = NULL;
f33ba3
+            return rc;
f33ba3
+        }
f33ba3
+
f33ba3
+        if (len <= 0) {
f33ba3
+            break;
f33ba3
         }
f33ba3
         else {
f33ba3
             ap_log_rerror(APLOG_MARK, APLOG_TRACE4, 0, r, "%s", buffer);
f33ba3
@@ -855,7 +862,7 @@ static void ap_proxy_read_headers(request_rec *r, request_rec *rr,
f33ba3
                 if (psc->badopt == bad_error) {
f33ba3
                     /* Nope, it wasn't even an extra HTTP header. Give up. */
f33ba3
                     r->headers_out = NULL;
f33ba3
-                    return;
f33ba3
+                    return APR_EINVAL;
f33ba3
                 }
f33ba3
                 else if (psc->badopt == bad_body) {
f33ba3
                     /* if we've already started loading headers_out, then
f33ba3
@@ -869,13 +876,13 @@ static void ap_proxy_read_headers(request_rec *r, request_rec *rr,
f33ba3
                                       "in headers returned by %s (%s)",
f33ba3
                                       r->uri, r->method);
f33ba3
                         *pread_len = len;
f33ba3
-                        return;
f33ba3
+                        return APR_SUCCESS;
f33ba3
                     }
f33ba3
                     else {
f33ba3
                         ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r, APLOGNO(01099)
f33ba3
                                       "No HTTP headers returned by %s (%s)",
f33ba3
                                       r->uri, r->method);
f33ba3
-                        return;
f33ba3
+                        return APR_SUCCESS;
f33ba3
                     }
f33ba3
                 }
f33ba3
             }
f33ba3
@@ -905,6 +912,7 @@ static void ap_proxy_read_headers(request_rec *r, request_rec *rr,
f33ba3
         process_proxy_header(r, dconf, buffer, value);
f33ba3
         saw_headers = 1;
f33ba3
     }
f33ba3
+    return APR_SUCCESS;
f33ba3
 }
f33ba3
 
f33ba3
 
f33ba3
@@ -1218,10 +1226,10 @@ int ap_proxy_http_process_response(proxy_http_req_t *req)
f33ba3
                          "Set-Cookie", NULL);
f33ba3
 
f33ba3
             /* shove the headers direct into r->headers_out */
f33ba3
-            ap_proxy_read_headers(r, backend->r, buffer, response_field_size,
f33ba3
-                                  origin, &pread_len);
f33ba3
+            rc = ap_proxy_read_headers(r, backend->r, buffer, response_field_size,
f33ba3
+                                       origin, &pread_len);
f33ba3
 
f33ba3
-            if (r->headers_out == NULL) {
f33ba3
+            if (rc != APR_SUCCESS || r->headers_out == NULL) {
f33ba3
                 ap_log_rerror(APLOG_MARK, APLOG_WARNING, 0, r, APLOGNO(01106)
f33ba3
                               "bad HTTP/%d.%d header returned by %s (%s)",
f33ba3
                               major, minor, r->uri, r->method);
f33ba3
diff --git a/server/protocol.c b/server/protocol.c
f33ba3
index 7adc7f75c10..6f9540ad1de 100644
f33ba3
--- a/server/protocol.c
f33ba3
+++ b/server/protocol.c
f33ba3
@@ -508,6 +508,8 @@ AP_DECLARE(apr_status_t) ap_rgetline_core(char **s, apr_size_t n,
f33ba3
         /* PR#43039: We shouldn't accept NULL bytes within the line */
f33ba3
         bytes_handled = strlen(*s);
f33ba3
         if (bytes_handled < *read) {
f33ba3
+            ap_log_data(APLOG_MARK, APLOG_DEBUG, ap_server_conf,
f33ba3
+                        "NULL bytes in header", *s, *read, 0);
f33ba3
             *read = bytes_handled;
f33ba3
             if (rv == APR_SUCCESS) {
f33ba3
                 rv = APR_EINVAL;