HTTP: Fix mistakes and unclarities on maxline and max_resp_len params
[openssl.git] / crypto / http / http_client.c
1 /*
2  * Copyright 2001-2021 The OpenSSL Project Authors. All Rights Reserved.
3  * Copyright Siemens AG 2018-2020
4  *
5  * Licensed under the Apache License 2.0 (the "License").  You may not use
6  * this file except in compliance with the License.  You can obtain a copy
7  * in the file LICENSE in the source distribution or at
8  * https://www.openssl.org/source/license.html
9  */
10
11 #include "e_os.h"
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include "crypto/ctype.h"
15 #include <string.h>
16 #include <openssl/asn1.h>
17 #include <openssl/evp.h>
18 #include <openssl/err.h>
19 #include <openssl/httperr.h>
20 #include <openssl/cmperr.h>
21 #include <openssl/buffer.h>
22 #include <openssl/http.h>
23 #include "internal/sockets.h"
24 #include "internal/cryptlib.h" /* for ossl_assert() */
25
26 #include "http_local.h"
27
28 #define HTTP_PREFIX "HTTP/"
29 #define HTTP_VERSION_PATT "1." /* allow 1.x */
30 #define HTTP_VERSION_STR_LEN 3
31 #define HTTP_LINE1_MINLEN ((int)strlen(HTTP_PREFIX HTTP_VERSION_PATT "x 200\n"))
32 #define HTTP_VERSION_MAX_REDIRECTIONS 50
33
34 #define HTTP_STATUS_CODE_OK                200
35 #define HTTP_STATUS_CODE_MOVED_PERMANENTLY 301
36 #define HTTP_STATUS_CODE_FOUND             302
37
38
39 /* Stateful HTTP request code, supporting blocking and non-blocking I/O */
40
41 /* Opaque HTTP request status structure */
42
43 struct ossl_http_req_ctx_st {
44     int state;                  /* Current I/O state */
45     unsigned char *readbuf;     /* Buffer for reading response by line */
46     int readbuflen;             /* Buffer length, equals maxline */
47     BIO *wbio;                  /* BIO to send request to */
48     BIO *rbio;                  /* BIO to read response from */
49     BIO *mem;                   /* Memory BIO response is built into */
50     int method_POST;            /* HTTP method is "POST" (else "GET") */
51     const char *expected_ct;    /* expected Content-Type, or NULL */
52     int expect_asn1;            /* response must be ASN.1-encoded */
53     long len_to_send;           /* number of bytes in request still to send */
54     unsigned long resp_len;     /* length of response */
55     unsigned long max_resp_len; /* Maximum length of response */
56     time_t max_time;            /* Maximum end time of the transfer, or 0 */
57     char *redirection_url;      /* Location given with HTTP status 301/302 */
58 };
59
60 /* HTTP states */
61
62 #define OHS_NOREAD          0x1000 /* If set no reading should be performed */
63 #define OHS_ERROR           (0 | OHS_NOREAD) /* Error condition */
64 #define OHS_FIRSTLINE       1 /* First line being read */
65 #define OHS_REDIRECT        0xa /* Looking for redirection location */
66 #define OHS_HEADERS         2 /* MIME headers being read */
67 #define OHS_ASN1_HEADER     3 /* HTTP initial header (tag+length) being read */
68 #define OHS_CONTENT         4 /* HTTP content octets being read */
69 #define OHS_WRITE_INIT     (5 | OHS_NOREAD) /* 1st call: ready to start send */
70 #define OHS_WRITE          (6 | OHS_NOREAD) /* Request being sent */
71 #define OHS_FLUSH          (7 | OHS_NOREAD) /* Request being flushed */
72 #define OHS_DONE           (8 | OHS_NOREAD) /* Completed */
73 #define OHS_HTTP_HEADER    (9 | OHS_NOREAD) /* Headers set, w/o final \r\n */
74
75 OSSL_HTTP_REQ_CTX *OSSL_HTTP_REQ_CTX_new(BIO *wbio, BIO *rbio,
76                                          int method_POST, int maxline,
77                                          unsigned long max_resp_len,
78                                          int timeout,
79                                          const char *expected_content_type,
80                                          int expect_asn1)
81 {
82     OSSL_HTTP_REQ_CTX *rctx;
83
84     if (wbio == NULL || rbio == NULL) {
85         ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
86         return NULL;
87     }
88
89     if ((rctx = OPENSSL_zalloc(sizeof(*rctx))) == NULL)
90         return NULL;
91     rctx->state = OHS_ERROR;
92     rctx->readbuflen = maxline > 0 ? maxline : HTTP_DEFAULT_MAX_LINE_LENGTH;
93     rctx->readbuf = OPENSSL_malloc(rctx->readbuflen);
94     rctx->wbio = wbio;
95     rctx->rbio = rbio;
96     rctx->mem = BIO_new(BIO_s_mem());
97     if (rctx->readbuf == NULL || rctx->mem == NULL) {
98         OSSL_HTTP_REQ_CTX_free(rctx);
99         return NULL;
100     }
101     rctx->method_POST = method_POST;
102     rctx->expected_ct = expected_content_type;
103     rctx->expect_asn1 = expect_asn1;
104     rctx->resp_len = 0;
105     OSSL_HTTP_REQ_CTX_set_max_response_length(rctx, max_resp_len);
106     rctx->max_time = timeout > 0 ? time(NULL) + timeout : 0;
107     return rctx;
108 }
109
110 void OSSL_HTTP_REQ_CTX_free(OSSL_HTTP_REQ_CTX *rctx)
111 {
112     if (rctx == NULL)
113         return;
114     BIO_free(rctx->mem); /* this may indirectly call ERR_clear_error() */
115     OPENSSL_free(rctx->readbuf);
116     OPENSSL_free(rctx);
117 }
118
119 BIO *OSSL_HTTP_REQ_CTX_get0_mem_bio(OSSL_HTTP_REQ_CTX *rctx)
120 {
121     if (rctx == NULL) {
122         ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
123         return NULL;
124     }
125     return rctx->mem;
126 }
127
128 void OSSL_HTTP_REQ_CTX_set_max_response_length(OSSL_HTTP_REQ_CTX *rctx,
129                                                unsigned long len)
130 {
131     if (rctx == NULL) {
132         ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
133         return;
134     }
135     rctx->max_resp_len = len != 0 ? len : HTTP_DEFAULT_MAX_RESP_LEN;
136 }
137
138 /*
139  * Create request line using |ctx| and |path| (or "/" in case |path| is NULL).
140  * Server name (and port) must be given if and only if plain HTTP proxy is used.
141  */
142 int OSSL_HTTP_REQ_CTX_set_request_line(OSSL_HTTP_REQ_CTX *rctx,
143                                        const char *server, const char *port,
144                                        const char *path)
145 {
146     if (rctx == NULL) {
147         ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
148         return 0;
149     }
150
151     if (BIO_printf(rctx->mem, "%s ", rctx->method_POST ? "POST" : "GET") <= 0)
152         return 0;
153
154     if (server != NULL) { /* HTTP (but not HTTPS) proxy is used */
155         /*
156          * Section 5.1.2 of RFC 1945 states that the absoluteURI form is only
157          * allowed when using a proxy
158          */
159         if (BIO_printf(rctx->mem, OSSL_HTTP_PREFIX"%s", server) <= 0)
160             return 0;
161         if (port != NULL && BIO_printf(rctx->mem, ":%s", port) <= 0)
162             return 0;
163     }
164
165     /* Make sure path includes a forward slash */
166     if (path == NULL)
167         path = "/";
168     if (path[0] != '/' && BIO_printf(rctx->mem, "/") <= 0)
169         return 0;
170
171     if (BIO_printf(rctx->mem, "%s "HTTP_PREFIX"1.0\r\n", path) <= 0)
172         return 0;
173     rctx->state = OHS_HTTP_HEADER;
174     return 1;
175 }
176
177 int OSSL_HTTP_REQ_CTX_add1_header(OSSL_HTTP_REQ_CTX *rctx,
178                                   const char *name, const char *value)
179 {
180     if (rctx == NULL || name == NULL) {
181         ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
182         return 0;
183     }
184
185     if (BIO_puts(rctx->mem, name) <= 0)
186         return 0;
187     if (value != NULL) {
188         if (BIO_write(rctx->mem, ": ", 2) != 2)
189             return 0;
190         if (BIO_puts(rctx->mem, value) <= 0)
191             return 0;
192     }
193     if (BIO_write(rctx->mem, "\r\n", 2) != 2)
194         return 0;
195     rctx->state = OHS_HTTP_HEADER;
196     return 1;
197 }
198
199 static int OSSL_HTTP_REQ_CTX_content(OSSL_HTTP_REQ_CTX *rctx,
200                                      const char *content_type, BIO *req_mem)
201 {
202     const unsigned char *req;
203     long req_len;
204
205     if (rctx == NULL || req_mem == NULL) {
206         ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
207         return 0;
208     }
209     if (!rctx->method_POST) {
210         ERR_raise(ERR_LIB_HTTP, ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
211         return 0;
212     }
213
214     if (content_type != NULL
215             && BIO_printf(rctx->mem, "Content-Type: %s\r\n", content_type) <= 0)
216         return 0;
217
218     if ((req_len = BIO_get_mem_data(req_mem, &req)) <= 0)
219         return 0;
220     rctx->state = OHS_WRITE_INIT;
221
222     return BIO_printf(rctx->mem, "Content-Length: %ld\r\n\r\n", req_len) > 0
223         && BIO_write(rctx->mem, req, req_len) == (int)req_len;
224 }
225
226 BIO *HTTP_asn1_item2bio(const ASN1_ITEM *it, const ASN1_VALUE *val)
227 {
228     BIO *res;
229
230     if (it == NULL || val == NULL) {
231         ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
232         return NULL;
233     }
234
235     if ((res = BIO_new(BIO_s_mem())) == NULL)
236         return NULL;
237     if (ASN1_item_i2d_bio(it, res, val) <= 0) {
238         BIO_free(res);
239         res = NULL;
240     }
241     return res;
242 }
243
244 int OSSL_HTTP_REQ_CTX_i2d(OSSL_HTTP_REQ_CTX *rctx, const char *content_type,
245                           const ASN1_ITEM *it, ASN1_VALUE *req)
246 {
247     BIO *mem;
248     int res;
249
250     if (rctx == NULL || it == NULL || req == NULL) {
251         ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
252         return 0;
253     }
254
255     res = (mem = HTTP_asn1_item2bio(it, req)) != NULL
256         && OSSL_HTTP_REQ_CTX_content(rctx, content_type, mem);
257     BIO_free(mem);
258     return res;
259 }
260
261 static int OSSL_HTTP_REQ_CTX_add1_headers(OSSL_HTTP_REQ_CTX *rctx,
262                                           const STACK_OF(CONF_VALUE) *headers,
263                                           const char *host)
264 {
265     int i;
266     int add_host = 1;
267     CONF_VALUE *hdr;
268
269     for (i = 0; i < sk_CONF_VALUE_num(headers); i++) {
270         hdr = sk_CONF_VALUE_value(headers, i);
271         if (add_host && strcasecmp("host", hdr->name) == 0)
272             add_host = 0;
273         if (!OSSL_HTTP_REQ_CTX_add1_header(rctx, hdr->name, hdr->value))
274             return 0;
275     }
276
277     if (add_host && !OSSL_HTTP_REQ_CTX_add1_header(rctx, "Host", host))
278         return 0;
279     return 1;
280 }
281
282 /*-
283  * Create OSSL_HTTP_REQ_CTX structure using the values provided.
284  * If !use_http_proxy then the 'server' and 'port' parameters are ignored.
285  * If req_mem == NULL then use GET and ignore content_type, else POST.
286  */
287 OSSL_HTTP_REQ_CTX *HTTP_REQ_CTX_new(BIO *wbio, BIO *rbio, int use_http_proxy,
288                                     const char *server, const char *port,
289                                     const char *path,
290                                     const STACK_OF(CONF_VALUE) *headers,
291                                     const char *content_type, BIO *req_mem,
292                                     int maxline, unsigned long max_resp_len,
293                                     int timeout,
294                                     const char *expected_content_type,
295                                     int expect_asn1)
296 {
297     OSSL_HTTP_REQ_CTX *rctx;
298
299     if (use_http_proxy && (server == NULL || port == NULL)) {
300         ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
301         return NULL;
302     }
303     /* remaining parameters are checked indirectly by the functions called */
304
305     if ((rctx = OSSL_HTTP_REQ_CTX_new(wbio, rbio, req_mem != NULL, maxline,
306                                       max_resp_len, timeout,
307                                       expected_content_type, expect_asn1))
308         == NULL)
309         return NULL;
310
311     if (OSSL_HTTP_REQ_CTX_set_request_line(rctx,
312                                            use_http_proxy ? server : NULL, port,
313                                            path)
314         && OSSL_HTTP_REQ_CTX_add1_headers(rctx, headers, server)
315         && (req_mem == NULL
316             || OSSL_HTTP_REQ_CTX_content(rctx, content_type, req_mem)))
317         return rctx;
318
319     OSSL_HTTP_REQ_CTX_free(rctx);
320     return NULL;
321 }
322
323 /*
324  * Parse first HTTP response line. This should be like this: "HTTP/1.0 200 OK".
325  * We need to obtain the numeric code and (optional) informational message.
326  */
327
328 static int parse_http_line1(char *line)
329 {
330     int retcode;
331     char *code, *reason, *end;
332
333     /* Skip to first whitespace (past protocol info) */
334     for (code = line; *code != '\0' && !ossl_isspace(*code); code++)
335         continue;
336     if (*code == '\0') {
337         ERR_raise(ERR_LIB_HTTP, HTTP_R_RESPONSE_PARSE_ERROR);
338         return 0;
339     }
340
341     /* Skip past whitespace to start of response code */
342     while (*code != '\0' && ossl_isspace(*code))
343         code++;
344
345     if (*code == '\0') {
346         ERR_raise(ERR_LIB_HTTP, HTTP_R_RESPONSE_PARSE_ERROR);
347         return 0;
348     }
349
350     /* Find end of response code: first whitespace after start of code */
351     for (reason = code; *reason != '\0' && !ossl_isspace(*reason); reason++)
352         continue;
353
354     if (*reason == '\0') {
355         ERR_raise(ERR_LIB_HTTP, HTTP_R_RESPONSE_PARSE_ERROR);
356         return 0;
357     }
358
359     /* Set end of response code and start of message */
360     *reason++ = '\0';
361
362     /* Attempt to parse numeric code */
363     retcode = strtoul(code, &end, 10);
364
365     if (*end != '\0')
366         return 0;
367
368     /* Skip over any leading whitespace in message */
369     while (*reason != '\0' && ossl_isspace(*reason))
370         reason++;
371
372     if (*reason != '\0') {
373         /*
374          * Finally zap any trailing whitespace in message (include CRLF)
375          */
376
377         /* chop any trailing whitespace from reason */
378         /* We know reason has a non-whitespace character so this is OK */
379         for (end = reason + strlen(reason) - 1; ossl_isspace(*end); end--)
380             *end = '\0';
381     }
382
383     switch (retcode) {
384     case HTTP_STATUS_CODE_OK:
385     case HTTP_STATUS_CODE_MOVED_PERMANENTLY:
386     case HTTP_STATUS_CODE_FOUND:
387         return retcode;
388     default:
389         if (retcode < 400)
390             retcode = HTTP_R_STATUS_CODE_UNSUPPORTED;
391         else
392             retcode = HTTP_R_RECEIVED_ERROR;
393         if (*reason == '\0')
394             ERR_raise_data(ERR_LIB_HTTP, retcode, "Code=%s", code);
395         else
396             ERR_raise_data(ERR_LIB_HTTP, retcode,
397                            "Code=%s, Reason=%s", code, reason);
398         return 0;
399     }
400 }
401
402 static int check_set_resp_len(OSSL_HTTP_REQ_CTX *rctx, unsigned long len)
403 {
404     if (len > rctx->max_resp_len)
405         ERR_raise_data(ERR_LIB_HTTP, HTTP_R_MAX_RESP_LEN_EXCEEDED,
406                        "length=%lu, max=%lu", len, rctx->max_resp_len);
407     if (rctx->resp_len != 0 && rctx->resp_len != len)
408         ERR_raise_data(ERR_LIB_HTTP, HTTP_R_INCONSISTENT_CONTENT_LENGTH,
409                        "ASN.1 length=%lu, Content-Length=%lu",
410                        len, rctx->resp_len);
411     rctx->resp_len = len;
412     return 1;
413 }
414
415 /*
416  * Try exchanging request and response via HTTP on (non-)blocking BIO in rctx.
417  * Returns 1 on success, 0 on error or redirection, -1 on BIO_should_retry.
418  */
419 int OSSL_HTTP_REQ_CTX_nbio(OSSL_HTTP_REQ_CTX *rctx)
420 {
421     int i;
422     long n;
423     unsigned long resp_len;
424     const unsigned char *p;
425     char *key, *value, *line_end = NULL;
426
427     if (rctx == NULL) {
428         ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
429         return 0;
430     }
431
432     rctx->redirection_url = NULL;
433  next_io:
434     if ((rctx->state & OHS_NOREAD) == 0) {
435         n = BIO_read(rctx->rbio, rctx->readbuf, rctx->readbuflen);
436         if (n <= 0) {
437             if (BIO_should_retry(rctx->rbio))
438                 return -1;
439             return 0;
440         }
441
442         /* Write data to memory BIO */
443         if (BIO_write(rctx->mem, rctx->readbuf, n) != n)
444             return 0;
445     }
446
447     switch (rctx->state) {
448     case OHS_HTTP_HEADER:
449         /* Last operation was adding headers: need a final \r\n */
450         if (BIO_write(rctx->mem, "\r\n", 2) != 2) {
451             rctx->state = OHS_ERROR;
452             return 0;
453         }
454         rctx->state = OHS_WRITE_INIT;
455
456         /* fall thru */
457     case OHS_WRITE_INIT:
458         rctx->len_to_send = BIO_get_mem_data(rctx->mem, NULL);
459         rctx->state = OHS_WRITE;
460
461         /* fall thru */
462     case OHS_WRITE:
463         n = BIO_get_mem_data(rctx->mem, &p) - rctx->len_to_send;
464         i = BIO_write(rctx->wbio, p + n, rctx->len_to_send);
465
466         if (i <= 0) {
467             if (BIO_should_retry(rctx->wbio))
468                 return -1;
469             rctx->state = OHS_ERROR;
470             return 0;
471         }
472
473         rctx->len_to_send -= i;
474
475         if (rctx->len_to_send > 0)
476             goto next_io;
477
478         rctx->state = OHS_FLUSH;
479
480         (void)BIO_reset(rctx->mem);
481
482         /* fall thru */
483     case OHS_FLUSH:
484
485         i = BIO_flush(rctx->wbio);
486
487         if (i > 0) {
488             rctx->state = OHS_FIRSTLINE;
489             goto next_io;
490         }
491
492         if (BIO_should_retry(rctx->wbio))
493             return -1;
494
495         rctx->state = OHS_ERROR;
496         return 0;
497
498     case OHS_ERROR:
499         return 0;
500
501     case OHS_FIRSTLINE:
502     case OHS_HEADERS:
503     case OHS_REDIRECT:
504
505         /* Attempt to read a line in */
506  next_line:
507         /*
508          * Due to strange memory BIO behavior with BIO_gets we have to check
509          * there's a complete line in there before calling BIO_gets or we'll
510          * just get a partial read.
511          */
512         n = BIO_get_mem_data(rctx->mem, &p);
513         if (n <= 0 || memchr(p, '\n', n) == 0) {
514             if (n >= rctx->readbuflen) {
515                 rctx->state = OHS_ERROR;
516                 return 0;
517             }
518             goto next_io;
519         }
520         n = BIO_gets(rctx->mem, (char *)rctx->readbuf, rctx->readbuflen);
521
522         if (n <= 0) {
523             if (BIO_should_retry(rctx->mem))
524                 goto next_io;
525             rctx->state = OHS_ERROR;
526             return 0;
527         }
528
529         /* Don't allow excessive lines */
530         if (n == rctx->readbuflen) {
531             ERR_raise(ERR_LIB_HTTP, HTTP_R_RESPONSE_LINE_TOO_LONG);
532             rctx->state = OHS_ERROR;
533             return 0;
534         }
535
536         /* First line */
537         if (rctx->state == OHS_FIRSTLINE) {
538             switch (parse_http_line1((char *)rctx->readbuf)) {
539             case HTTP_STATUS_CODE_OK:
540                 rctx->state = OHS_HEADERS;
541                 goto next_line;
542             case HTTP_STATUS_CODE_MOVED_PERMANENTLY:
543             case HTTP_STATUS_CODE_FOUND: /* i.e., moved temporarily */
544                 if (!rctx->method_POST) { /* method is GET */
545                     rctx->state = OHS_REDIRECT;
546                     goto next_line;
547                 }
548                 ERR_raise(ERR_LIB_HTTP, HTTP_R_REDIRECTION_NOT_ENABLED);
549                 /* redirection is not supported/recommended for POST */
550                 /* fall through */
551             default:
552                 rctx->state = OHS_ERROR;
553                 return 0;
554             }
555         }
556         key = (char *)rctx->readbuf;
557         value = strchr(key, ':');
558         if (value != NULL) {
559             *(value++) = '\0';
560             while (ossl_isspace(*value))
561                 value++;
562             line_end = strchr(value, '\r');
563             if (line_end == NULL)
564                 line_end = strchr(value, '\n');
565             if (line_end != NULL)
566                 *line_end = '\0';
567         }
568         if (value != NULL && line_end != NULL) {
569             if (rctx->state == OHS_REDIRECT
570                     && strcasecmp(key, "Location") == 0) {
571                 rctx->redirection_url = value;
572                 return 0;
573             }
574             if (rctx->expected_ct != NULL
575                     && strcasecmp(key, "Content-Type") == 0) {
576                 if (strcasecmp(rctx->expected_ct, value) != 0) {
577                     ERR_raise_data(ERR_LIB_HTTP, HTTP_R_UNEXPECTED_CONTENT_TYPE,
578                                    "expected=%s, actual=%s",
579                                    rctx->expected_ct, value);
580                     return 0;
581                 }
582                 rctx->expected_ct = NULL; /* content-type has been found */
583             }
584             if (strcasecmp(key, "Content-Length") == 0) {
585                 resp_len = strtoul(value, &line_end, 10);
586                 if (line_end == value || *line_end != '\0') {
587                     ERR_raise_data(ERR_LIB_HTTP,
588                                    HTTP_R_ERROR_PARSING_CONTENT_LENGTH,
589                                    "input=%s", value);
590                     return 0;
591                 }
592                 if (!check_set_resp_len(rctx, resp_len))
593                     return 0;
594             }
595         }
596
597         /* Look for blank line indicating end of headers */
598         for (p = rctx->readbuf; *p != '\0'; p++) {
599             if (*p != '\r' && *p != '\n')
600                 break;
601         }
602         if (*p != '\0') /* not end of headers */
603             goto next_line;
604
605         if (rctx->expected_ct != NULL) {
606             ERR_raise_data(ERR_LIB_HTTP, HTTP_R_MISSING_CONTENT_TYPE,
607                            "expected=%s", rctx->expected_ct);
608             return 0;
609         }
610         if (rctx->state == OHS_REDIRECT) {
611             /* http status code indicated redirect but there was no Location */
612             ERR_raise(ERR_LIB_HTTP, HTTP_R_MISSING_REDIRECT_LOCATION);
613             return 0;
614         }
615
616         if (!rctx->expect_asn1) {
617             rctx->state = OHS_CONTENT;
618             goto content;
619         }
620
621         rctx->state = OHS_ASN1_HEADER;
622
623         /* Fall thru */
624     case OHS_ASN1_HEADER:
625         /*
626          * Now reading ASN1 header: can read at least 2 bytes which is enough
627          * for ASN1 SEQUENCE header and either length field or at least the
628          * length of the length field.
629          */
630         n = BIO_get_mem_data(rctx->mem, &p);
631         if (n < 2)
632             goto next_io;
633
634         /* Check it is an ASN1 SEQUENCE */
635         if (*p++ != (V_ASN1_SEQUENCE | V_ASN1_CONSTRUCTED)) {
636             ERR_raise(ERR_LIB_HTTP, HTTP_R_MISSING_ASN1_ENCODING);
637             return 0;
638         }
639
640         /* Check out length field */
641         if ((*p & 0x80) != 0) {
642             /*
643              * If MSB set on initial length octet we can now always read 6
644              * octets: make sure we have them.
645              */
646             if (n < 6)
647                 goto next_io;
648             n = *p & 0x7F;
649             /* Not NDEF or excessive length */
650             if (n == 0 || (n > 4)) {
651                 ERR_raise(ERR_LIB_HTTP, HTTP_R_ERROR_PARSING_ASN1_LENGTH);
652                 return 0;
653             }
654             p++;
655             resp_len = 0;
656             for (i = 0; i < n; i++) {
657                 resp_len <<= 8;
658                 resp_len |= *p++;
659             }
660             resp_len += n + 2;
661         } else {
662             resp_len = *p + 2;
663         }
664         if (!check_set_resp_len(rctx, resp_len))
665             return 0;
666
667  content:
668         rctx->state = OHS_CONTENT;
669
670         /* Fall thru */
671     case OHS_CONTENT:
672     default:
673         n = BIO_get_mem_data(rctx->mem, NULL);
674         if (n < (long)rctx->resp_len /* may be 0 if no Content-Type or ASN.1 */)
675             goto next_io;
676
677         rctx->state = OHS_DONE;
678         return 1;
679     }
680 }
681
682 #ifndef OPENSSL_NO_SOCK
683
684 /* set up a new connection BIO, to HTTP server or to HTTP(S) proxy if given */
685 static BIO *HTTP_new_bio(const char *server /* optionally includes ":port" */,
686                          const char *server_port /* explicit server port */,
687                          const char *proxy /* optionally includes ":port" */)
688 {
689     const char *host = server, *host_end;
690     char host_name[100];
691     const char *port = server_port;
692     BIO *cbio;
693
694     if (!ossl_assert(server != NULL))
695         return NULL;
696
697     if (proxy != NULL) {
698         host = proxy;
699         port = NULL;
700     }
701
702     host_end = strchr(host, '/');
703     if (host_end != NULL) {
704         size_t host_len = host_end - host;
705
706         if (host_len < sizeof(host_name)) {
707             /* chop trailing string starting with '/' */
708             strncpy(host_name, host, host_len);
709             host_name[host_len] = '\0';
710             host = host_name;
711         }
712     }
713
714     cbio = BIO_new_connect(host /* optionally includes ":port" */);
715     if (cbio == NULL)
716         goto end;
717     if (port != NULL)
718         (void)BIO_set_conn_port(cbio, port);
719
720  end:
721     return cbio;
722 }
723 #endif /* OPENSSL_NO_SOCK */
724
725 static ASN1_VALUE *BIO_mem_d2i(BIO *mem, const ASN1_ITEM *it)
726 {
727     const unsigned char *p;
728     long len = BIO_get_mem_data(mem, &p);
729     ASN1_VALUE *resp = ASN1_item_d2i(NULL, &p, len, it);
730
731     if (resp == NULL)
732         ERR_raise(ERR_LIB_HTTP, HTTP_R_RESPONSE_PARSE_ERROR);
733     return resp;
734 }
735
736 static BIO *OSSL_HTTP_REQ_CTX_transfer(OSSL_HTTP_REQ_CTX *rctx)
737 {
738     int sending = 1;
739     int rv;
740
741     if (rctx == NULL) {
742         ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
743         return NULL;
744     }
745
746     for (;;) {
747         rv = OSSL_HTTP_REQ_CTX_nbio(rctx);
748         if (rv != -1)
749             break;
750         /* BIO_should_retry was true */
751         sending = 0;
752         /* will not actually wait if rctx->max_time == 0 */
753         if (BIO_wait(rctx->rbio, rctx->max_time, 100 /* milliseconds */) <= 0)
754             return NULL;
755     }
756
757     if (rv == 0) {
758         if (rctx->redirection_url == NULL) { /* an error occurred */
759             if (sending && (rctx->state & OHS_NOREAD) != 0)
760                 ERR_raise(ERR_LIB_HTTP, HTTP_R_ERROR_SENDING);
761             else
762                 ERR_raise(ERR_LIB_HTTP, HTTP_R_ERROR_RECEIVING);
763         }
764         return NULL;
765     }
766     if (!BIO_up_ref(rctx->mem))
767         return NULL;
768     return rctx->mem;
769 }
770
771 /* Exchange ASN.1-encoded request and response via HTTP on (non-)blocking BIO */
772 ASN1_VALUE *OSSL_HTTP_REQ_CTX_sendreq_d2i(OSSL_HTTP_REQ_CTX *rctx,
773                                           const ASN1_ITEM *it)
774 {
775     if (rctx == NULL || it == NULL) {
776         ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
777         return NULL;
778     }
779     return BIO_mem_d2i(OSSL_HTTP_REQ_CTX_transfer(rctx), it);
780 }
781
782 static int update_timeout(int timeout, time_t start_time)
783 {
784     long elapsed_time;
785
786     if (timeout == 0)
787         return 0;
788     elapsed_time = (long)(time(NULL) - start_time); /* this might overflow */
789     return timeout <= elapsed_time ? -1 : timeout - elapsed_time;
790 }
791
792 /*-
793  * Exchange HTTP request and response with the given server.
794  * If req_mem == NULL then use GET and ignore content_type, else POST.
795  * The redirection_url output (freed by caller) parameter is used only for GET.
796  *
797  * Typically the bio and rbio parameters are NULL and a network BIO is created
798  * internally for connecting to the given server and port, optionally via a
799  * proxy and its port, and is then used for exchanging the request and response.
800  * If bio is given and rbio is NULL then this BIO is used instead.
801  * If both bio and rbio are given (which may be memory BIOs for instance)
802  * then no explicit connection is attempted,
803  * bio is used for writing the request, and rbio for reading the response.
804  *
805  * bio_update_fn is an optional BIO connect/disconnect callback function,
806  * which has the prototype
807  *   BIO *(*OSSL_HTTP_bio_cb_t) (BIO *bio, void *arg, int conn, int detail);
808  * The callback may modify the HTTP BIO provided in the bio argument,
809  * whereby it may make use of any custom defined argument 'arg'.
810  * During connection establishment, just after BIO_do_connect_retry(),
811  * the callback function is invoked with the 'conn' argument being 1
812  * 'detail' indicating whether a HTTPS (i.e., TLS) connection is requested.
813  * On disconnect 'conn' is 0 and 'detail' indicates that no error occurred.
814  * For instance, on connect the funct may prepend a TLS BIO to implement HTTPS;
815  * after disconnect it may do some error diagnostics and/or specific cleanup.
816  * The function should return NULL to indicate failure.
817  * After disconnect the modified BIO will be deallocated using BIO_free_all().
818  */
819 BIO *OSSL_HTTP_transfer(const char *server, const char *port, const char *path,
820                         int use_ssl, const char *proxy, const char *no_proxy,
821                         BIO *bio, BIO *rbio,
822                         OSSL_HTTP_bio_cb_t bio_update_fn, void *arg,
823                         const STACK_OF(CONF_VALUE) *headers,
824                         const char *content_type, BIO *req_mem,
825                         int maxline, unsigned long max_resp_len, int timeout,
826                         const char *expected_ct, int expect_asn1,
827                         char **redirection_url)
828 {
829     time_t start_time = timeout > 0 ? time(NULL) : 0;
830     BIO *cbio; /* = bio if present, used as connection BIO if rbio is NULL */
831     OSSL_HTTP_REQ_CTX *rctx;
832     BIO *resp = NULL;
833
834     if (redirection_url != NULL)
835         *redirection_url = NULL; /* do this beforehand to prevent dbl free */
836
837     if (use_ssl && bio_update_fn == NULL) {
838         ERR_raise(ERR_LIB_HTTP, HTTP_R_TLS_NOT_ENABLED);
839         return NULL;
840     }
841     if (rbio != NULL && (bio == NULL || bio_update_fn != NULL)) {
842         ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_INVALID_ARGUMENT);
843         return NULL;
844     }
845
846     if (bio != NULL) {
847         cbio = bio;
848     } else {
849 #ifndef OPENSSL_NO_SOCK
850         if (server == NULL) {
851             ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
852             return NULL;
853         }
854         if (*port == '\0')
855             port = NULL;
856         if (port == NULL && strchr(server, ':') == NULL)
857             port = use_ssl ? OSSL_HTTPS_PORT : OSSL_HTTP_PORT;
858         proxy = http_adapt_proxy(proxy, no_proxy, server, use_ssl);
859         if ((cbio = HTTP_new_bio(server, port, proxy)) == NULL)
860             return NULL;
861 #else
862         ERR_raise(ERR_LIB_HTTP, HTTP_R_SOCK_NOT_SUPPORTED);
863         return NULL;
864 #endif
865     }
866     /* remaining parameters are checked indirectly by the functions called */
867
868     (void)ERR_set_mark(); /* prepare removing any spurious libssl errors */
869     if (rbio == NULL && BIO_do_connect_retry(cbio, timeout, -1) <= 0)
870         goto end;
871     /* now timeout is guaranteed to be >= 0 */
872
873     /* callback can be used to wrap or prepend TLS session */
874     if (bio_update_fn != NULL) {
875         BIO *orig_bio = cbio;
876         cbio = (*bio_update_fn)(cbio, arg, 1 /* connect */, use_ssl);
877         if (cbio == NULL) {
878             cbio = orig_bio;
879             goto end;
880         }
881     }
882
883     rctx = HTTP_REQ_CTX_new(cbio, rbio != NULL ? rbio : cbio,
884                             !use_ssl && proxy != NULL, server, port, path,
885                             headers, content_type, req_mem, maxline,
886                             max_resp_len, update_timeout(timeout, start_time),
887                             expected_ct, expect_asn1);
888     if (rctx == NULL)
889         goto end;
890
891     resp = OSSL_HTTP_REQ_CTX_transfer(rctx);
892     if (resp == NULL) {
893         if (rctx->redirection_url != NULL) {
894             if (redirection_url == NULL)
895                 ERR_raise(ERR_LIB_HTTP, HTTP_R_REDIRECTION_NOT_ENABLED);
896             else
897                 /* may be NULL if out of memory: */
898                 *redirection_url = OPENSSL_strdup(rctx->redirection_url);
899         } else {
900             char buf[200];
901             unsigned long err = ERR_peek_error();
902             int lib = ERR_GET_LIB(err);
903             int reason = ERR_GET_REASON(err);
904
905             if (lib == ERR_LIB_SSL || lib == ERR_LIB_HTTP
906                     || (lib == ERR_LIB_BIO && reason == BIO_R_CONNECT_TIMEOUT)
907                     || (lib == ERR_LIB_BIO && reason == BIO_R_CONNECT_ERROR)
908 #ifndef OPENSSL_NO_CMP
909                     || (lib == ERR_LIB_CMP
910                         && reason == CMP_R_POTENTIALLY_INVALID_CERTIFICATE)
911 #endif
912                 ) {
913                 BIO_snprintf(buf, 200, "server=%s:%s", server, port);
914                 ERR_add_error_data(1, buf);
915                 if (proxy != NULL)
916                     ERR_add_error_data(2, " proxy=", proxy);
917                 if (err == 0) {
918                     BIO_snprintf(buf, 200, " peer has disconnected%s",
919                                  use_ssl ? " violating the protocol" :
920                                  ", likely because it requires the use of TLS");
921                     ERR_add_error_data(1, buf);
922                 }
923             }
924         }
925     }
926     OSSL_HTTP_REQ_CTX_free(rctx);
927
928     /* callback can be used to clean up TLS session */
929     if (bio_update_fn != NULL
930             && (*bio_update_fn)(cbio, arg, 0, resp != NULL) == NULL) {
931         BIO_free(resp);
932         resp = NULL;
933     }
934
935  end:
936     /*
937      * Use BIO_free_all() because bio_update_fn may prepend or append to cbio.
938      * This also frees any (e.g., SSL/TLS) BIOs linked with bio and,
939      * like BIO_reset(bio), calls SSL_shutdown() to notify/alert the peer.
940      */
941     if (bio == NULL) /* cbio was not provided by caller */
942         BIO_free_all(cbio);
943
944     if (resp != NULL)
945         /* remove any spurious error queue entries by ssl_add_cert_chain() */
946         (void)ERR_pop_to_mark();
947     else
948         (void)ERR_clear_last_mark();
949
950     return resp;
951 }
952
953 static int redirection_ok(int n_redir, const char *old_url, const char *new_url)
954 {
955     size_t https_len = strlen(OSSL_HTTPS_NAME":");
956
957     if (n_redir >= HTTP_VERSION_MAX_REDIRECTIONS) {
958         ERR_raise(ERR_LIB_HTTP, HTTP_R_TOO_MANY_REDIRECTIONS);
959         return 0;
960     }
961     if (*new_url == '/') /* redirection to same server => same protocol */
962         return 1;
963     if (strncmp(old_url, OSSL_HTTPS_NAME":", https_len) == 0 &&
964         strncmp(new_url, OSSL_HTTPS_NAME":", https_len) != 0) {
965         ERR_raise(ERR_LIB_HTTP, HTTP_R_REDIRECTION_FROM_HTTPS_TO_HTTP);
966         return 0;
967     }
968     return 1;
969 }
970
971 /* Get data via HTTP from server at given URL, potentially with redirection */
972 BIO *OSSL_HTTP_get(const char *url, const char *proxy, const char *no_proxy,
973                    BIO *bio, BIO *rbio,
974                    OSSL_HTTP_bio_cb_t bio_update_fn, void *arg,
975                    const STACK_OF(CONF_VALUE) *headers,
976                    int maxline, unsigned long max_resp_len, int timeout,
977                    const char *expected_content_type, int expect_asn1)
978 {
979     time_t start_time = timeout > 0 ? time(NULL) : 0;
980     char *current_url, *redirection_url;
981     int n_redirs = 0;
982     char *host;
983     char *port;
984     char *path;
985     int use_ssl;
986     BIO *resp = NULL;
987
988     if (url == NULL) {
989         ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
990         return NULL;
991     }
992     if ((current_url = OPENSSL_strdup(url)) == NULL)
993         return NULL;
994
995     for (;;) {
996         if (!OSSL_HTTP_parse_url(current_url, &host, &port, NULL /* port_num */,
997                                  &path, &use_ssl))
998             break;
999
1000      new_rpath:
1001         resp = OSSL_HTTP_transfer(host, port, path, use_ssl, proxy, no_proxy,
1002                                   bio, rbio,
1003                                   bio_update_fn, arg, headers, NULL, NULL,
1004                                   maxline, max_resp_len,
1005                                   update_timeout(timeout, start_time),
1006                                   expected_content_type, expect_asn1,
1007                                   &redirection_url);
1008         OPENSSL_free(path);
1009         if (resp == NULL && redirection_url != NULL) {
1010             if (redirection_ok(++n_redirs, current_url, redirection_url)) {
1011                 (void)BIO_reset(bio);
1012                 OPENSSL_free(current_url);
1013                 current_url = redirection_url;
1014                 if (*redirection_url == '/') { /* redirection to same server */
1015                     path = OPENSSL_strdup(redirection_url);
1016                     goto new_rpath;
1017                 }
1018                 OPENSSL_free(host);
1019                 OPENSSL_free(port);
1020                 continue;
1021             }
1022             OPENSSL_free(redirection_url);
1023         }
1024         OPENSSL_free(host);
1025         OPENSSL_free(port);
1026         break;
1027     }
1028     OPENSSL_free(current_url);
1029     return resp;
1030 }
1031
1032 /* Get ASN.1-encoded data via HTTP from server at given URL */
1033 ASN1_VALUE *OSSL_HTTP_get_asn1(const char *url,
1034                                const char *proxy, const char *no_proxy,
1035                                BIO *bio, BIO *rbio,
1036                                OSSL_HTTP_bio_cb_t bio_update_fn, void *arg,
1037                                const STACK_OF(CONF_VALUE) *headers,
1038                                int maxline, unsigned long max_resp_len,
1039                                int timeout, const char *expected_content_type,
1040                                const ASN1_ITEM *it)
1041 {
1042     BIO *mem;
1043     ASN1_VALUE *resp = NULL;
1044
1045     if (url == NULL || it == NULL) {
1046         ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
1047         return NULL;
1048     }
1049     if ((mem = OSSL_HTTP_get(url, proxy, no_proxy, bio, rbio, bio_update_fn,
1050                              arg, headers, maxline, max_resp_len, timeout,
1051                              expected_content_type, 1 /* expect_asn1 */))
1052         != NULL)
1053         resp = BIO_mem_d2i(mem, it);
1054     BIO_free(mem);
1055     return resp;
1056 }
1057
1058 /* Post ASN.1-encoded request via HTTP to server return ASN.1 response */
1059 ASN1_VALUE *OSSL_HTTP_post_asn1(const char *server, const char *port,
1060                                 const char *path, int use_ssl,
1061                                 const char *proxy, const char *no_proxy,
1062                                 BIO *bio, BIO *rbio,
1063                                 OSSL_HTTP_bio_cb_t bio_update_fn, void *arg,
1064                                 const STACK_OF(CONF_VALUE) *headers,
1065                                 const char *content_type,
1066                                 const ASN1_VALUE *req, const ASN1_ITEM *req_it,
1067                                 int maxline, unsigned long max_resp_len,
1068                                 int timeout, const char *expected_ct,
1069                                 const ASN1_ITEM *rsp_it)
1070 {
1071     BIO *req_mem;
1072     BIO *res_mem;
1073     ASN1_VALUE *resp = NULL;
1074
1075     if (req == NULL) {
1076         ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
1077         return NULL;
1078     }
1079     /* remaining parameters are checked indirectly */
1080
1081     req_mem = HTTP_asn1_item2bio(req_it, req);
1082     res_mem = OSSL_HTTP_transfer(server, port, path, use_ssl, proxy, no_proxy,
1083                                  bio, rbio,
1084                                  bio_update_fn, arg, headers, content_type,
1085                                  req_mem /* may be NULL */, maxline,
1086                                  max_resp_len, timeout,
1087                                  expected_ct, 1 /* expect_asn1 */, NULL);
1088     BIO_free(req_mem);
1089     if (res_mem != NULL)
1090         resp = BIO_mem_d2i(res_mem, rsp_it);
1091     BIO_free(res_mem);
1092     return resp;
1093 }
1094
1095 /* BASE64 encoder used for encoding basic proxy authentication credentials */
1096 static char *base64encode(const void *buf, size_t len)
1097 {
1098     int i;
1099     size_t outl;
1100     char *out;
1101
1102     /* Calculate size of encoded data */
1103     outl = (len / 3);
1104     if (len % 3 > 0)
1105         outl++;
1106     outl <<= 2;
1107     out = OPENSSL_malloc(outl + 1);
1108     if (out == NULL)
1109         return 0;
1110
1111     i = EVP_EncodeBlock((unsigned char *)out, buf, len);
1112     if (!ossl_assert(0 <= i && (size_t)i <= outl)) {
1113         OPENSSL_free(out);
1114         return NULL;
1115     }
1116     return out;
1117 }
1118
1119 /*
1120  * Promote the given connection BIO using the CONNECT method for a TLS proxy.
1121  * This is typically called by an app, so bio_err and prog are used unless NULL
1122  * to print additional diagnostic information in a user-oriented way.
1123  */
1124 int OSSL_HTTP_proxy_connect(BIO *bio, const char *server, const char *port,
1125                             const char *proxyuser, const char *proxypass,
1126                             int timeout, BIO *bio_err, const char *prog)
1127 {
1128 #undef BUF_SIZE
1129 #define BUF_SIZE (8 * 1024)
1130     char *mbuf = OPENSSL_malloc(BUF_SIZE);
1131     char *mbufp;
1132     int read_len = 0;
1133     int ret = 0;
1134     BIO *fbio = BIO_new(BIO_f_buffer());
1135     int rv;
1136     time_t max_time = timeout > 0 ? time(NULL) + timeout : 0;
1137
1138     if (bio == NULL || server == NULL
1139             || (bio_err != NULL && prog == NULL)) {
1140         ERR_raise(ERR_LIB_HTTP, ERR_R_PASSED_NULL_PARAMETER);
1141         goto end;
1142     }
1143     if (port == NULL || *port == '\0')
1144         port = OSSL_HTTPS_PORT;
1145
1146     if (mbuf == NULL || fbio == NULL) {
1147         BIO_printf(bio_err /* may be NULL */, "%s: out of memory", prog);
1148         goto end;
1149     }
1150     BIO_push(fbio, bio);
1151
1152     BIO_printf(fbio, "CONNECT %s:%s "HTTP_PREFIX"1.0\r\n", server, port);
1153
1154     /*
1155      * Workaround for broken proxies which would otherwise close
1156      * the connection when entering tunnel mode (e.g., Squid 2.6)
1157      */
1158     BIO_printf(fbio, "Proxy-Connection: Keep-Alive\r\n");
1159
1160     /* Support for basic (base64) proxy authentication */
1161     if (proxyuser != NULL) {
1162         size_t len = strlen(proxyuser) + 1;
1163         char *proxyauth, *proxyauthenc = NULL;
1164
1165         if (proxypass != NULL)
1166             len += strlen(proxypass);
1167         proxyauth = OPENSSL_malloc(len + 1);
1168         if (proxyauth == NULL)
1169             goto end;
1170         if (BIO_snprintf(proxyauth, len + 1, "%s:%s", proxyuser,
1171                          proxypass != NULL ? proxypass : "") != (int)len)
1172             goto proxy_end;
1173         proxyauthenc = base64encode(proxyauth, len);
1174         if (proxyauthenc != NULL) {
1175             BIO_printf(fbio, "Proxy-Authorization: Basic %s\r\n", proxyauthenc);
1176             OPENSSL_clear_free(proxyauthenc, strlen(proxyauthenc));
1177         }
1178      proxy_end:
1179         OPENSSL_clear_free(proxyauth, len);
1180         if (proxyauthenc == NULL)
1181             goto end;
1182     }
1183
1184     /* Terminate the HTTP CONNECT request */
1185     BIO_printf(fbio, "\r\n");
1186
1187     for (;;) {
1188         if (BIO_flush(fbio) != 0)
1189             break;
1190         /* potentially needs to be retried if BIO is non-blocking */
1191         if (!BIO_should_retry(fbio))
1192             break;
1193     }
1194
1195     for (;;) {
1196         /* will not actually wait if timeout == 0 */
1197         rv = BIO_wait(fbio, max_time, 100 /* milliseconds */);
1198         if (rv <= 0) {
1199             BIO_printf(bio_err, "%s: HTTP CONNECT %s\n", prog,
1200                        rv == 0 ? "timed out" : "failed waiting for data");
1201             goto end;
1202         }
1203
1204         /*-
1205          * The first line is the HTTP response.
1206          * According to RFC 7230, it is formatted exactly like this:
1207          * HTTP/d.d ddd Reason text\r\n
1208          */
1209         read_len = BIO_gets(fbio, mbuf, BUF_SIZE);
1210         /* the BIO may not block, so we must wait for the 1st line to come in */
1211         if (read_len < HTTP_LINE1_MINLEN)
1212             continue;
1213
1214         /* RFC 7231 4.3.6: any 2xx status code is valid */
1215         if (strncmp(mbuf, HTTP_PREFIX, strlen(HTTP_PREFIX)) != 0) {
1216             ERR_raise(ERR_LIB_HTTP, HTTP_R_RESPONSE_PARSE_ERROR);
1217             BIO_printf(bio_err, "%s: HTTP CONNECT failed, non-HTTP response\n",
1218                        prog);
1219             /* Wrong protocol, not even HTTP, so stop reading headers */
1220             goto end;
1221         }
1222         mbufp = mbuf + strlen(HTTP_PREFIX);
1223         if (strncmp(mbufp, HTTP_VERSION_PATT, strlen(HTTP_VERSION_PATT)) != 0) {
1224             ERR_raise(ERR_LIB_HTTP, HTTP_R_RECEIVED_WRONG_HTTP_VERSION);
1225             BIO_printf(bio_err,
1226                        "%s: HTTP CONNECT failed, bad HTTP version %.*s\n",
1227                        prog, HTTP_VERSION_STR_LEN, mbufp);
1228             goto end;
1229         }
1230         mbufp += HTTP_VERSION_STR_LEN;
1231         if (strncmp(mbufp, " 2", strlen(" 2")) != 0) {
1232             mbufp += 1;
1233             /* chop any trailing whitespace */
1234             while (read_len > 0 && ossl_isspace(mbuf[read_len - 1]))
1235                 read_len--;
1236             mbuf[read_len] = '\0';
1237             ERR_raise_data(ERR_LIB_HTTP, HTTP_R_CONNECT_FAILURE,
1238                            "Reason=%s", mbufp);
1239             BIO_printf(bio_err, "%s: HTTP CONNECT failed, Reason=%s\n",
1240                        prog, mbufp);
1241             goto end;
1242         }
1243         ret = 1;
1244         break;
1245     }
1246
1247     /* Read past all following headers */
1248     do {
1249         /*
1250          * TODO: This does not necessarily catch the case when the full
1251          * HTTP response came in in more than a single TCP message.
1252          */
1253         read_len = BIO_gets(fbio, mbuf, BUF_SIZE);
1254     } while (read_len > 2);
1255
1256  end:
1257     if (fbio != NULL) {
1258         (void)BIO_flush(fbio);
1259         BIO_pop(fbio);
1260         BIO_free(fbio);
1261     }
1262     OPENSSL_free(mbuf);
1263     return ret;
1264 #undef BUF_SIZE
1265 }