Coverage Report

Created: 2026-09-14 07:04

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/curl/lib/cf-h1-proxy.c
Line
Count
Source
1
/***************************************************************************
2
 *                                  _   _ ____  _
3
 *  Project                     ___| | | |  _ \| |
4
 *                             / __| | | | |_) | |
5
 *                            | (__| |_| |  _ <| |___
6
 *                             \___|\___/|_| \_\_____|
7
 *
8
 * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
9
 *
10
 * This software is licensed as described in the file COPYING, which
11
 * you should have received as part of this distribution. The terms
12
 * are also available at https://curl.se/docs/copyright.html.
13
 *
14
 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15
 * copies of the Software, and permit persons to whom the Software is
16
 * furnished to do so, under the terms of the COPYING file.
17
 *
18
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19
 * KIND, either express or implied.
20
 *
21
 * SPDX-License-Identifier: curl
22
 *
23
 ***************************************************************************/
24
#include "curl_setup.h"
25
26
#if !defined(CURL_DISABLE_PROXY) && !defined(CURL_DISABLE_HTTP)
27
28
29
#include <curl/curl.h>
30
#include "urldata.h"
31
#include "curlx/dynbuf.h"
32
#include "sendf.h"
33
#include "http.h"
34
#include "http1.h"
35
#include "http_proxy.h"
36
#include "select.h"
37
#include "progress.h"
38
#include "multiif.h"
39
#include "cfilters.h"
40
#include "cf-h1-proxy.h"
41
#include "connect.h"
42
#include "curl_trc.h"
43
#include "strcase.h"
44
#include "curlx/strparse.h"
45
46
typedef enum {
47
  H1_TUNNEL_INIT,     /* init/default/no tunnel state */
48
  H1_TUNNEL_CONNECT,  /* CONNECT request is being send */
49
  H1_TUNNEL_RECEIVE,  /* CONNECT answer is being received */
50
  H1_TUNNEL_RESPONSE, /* CONNECT response received completely */
51
  H1_TUNNEL_ESTABLISHED,
52
  H1_TUNNEL_FAILED
53
} h1_tunnel_state;
54
55
/* struct for HTTP CONNECT tunneling */
56
struct h1_tunnel_state {
57
  struct Curl_peer *dest;
58
  struct dynbuf rcvbuf;
59
  struct dynbuf request_data;
60
  size_t nsent;
61
  size_t headerlines;
62
  struct Curl_chunker ch;
63
  int httpversion;
64
  enum keeponval {
65
    KEEPON_DONE,
66
    KEEPON_CONNECT,
67
    KEEPON_IGNORE
68
  } keepon;
69
  curl_off_t cl; /* size of content to read and ignore */
70
  h1_tunnel_state tunnel_state;
71
  BIT(chunked_encoding);
72
  BIT(close_connection);
73
  BIT(maybe_folded);
74
  BIT(leading_unfold);
75
  BIT(udp_tunnel);
76
};
77
78
/* Persistent context for the H1-PROXY filter */
79
struct cf_h1_proxy_ctx {
80
  struct Curl_peer *peer;
81
  struct h1_tunnel_state *ts;
82
};
83
84
static bool tunnel_is_established(struct h1_tunnel_state *ts)
85
0
{
86
0
  return ts && (ts->tunnel_state == H1_TUNNEL_ESTABLISHED);
87
0
}
88
89
static bool tunnel_is_failed(struct h1_tunnel_state *ts)
90
0
{
91
0
  return ts && (ts->tunnel_state == H1_TUNNEL_FAILED);
92
0
}
93
94
static bool h1_proxy_is_udp(struct Curl_cfilter *cf)
95
0
{
96
0
  struct cf_h1_proxy_ctx *pctx = cf->ctx;
97
0
  return (bool)(pctx->ts && pctx->ts->udp_tunnel);
98
0
}
99
100
static CURLcode tunnel_reinit(struct Curl_cfilter *cf,
101
                              struct Curl_easy *data,
102
                              struct h1_tunnel_state *ts)
103
0
{
104
0
  (void)data;
105
0
  (void)cf;
106
0
  DEBUGASSERT(ts);
107
0
  curlx_dyn_reset(&ts->rcvbuf);
108
0
  curlx_dyn_reset(&ts->request_data);
109
0
  ts->tunnel_state = H1_TUNNEL_INIT;
110
0
  ts->keepon = KEEPON_CONNECT;
111
0
  ts->cl = 0;
112
0
  ts->close_connection = FALSE;
113
0
  ts->maybe_folded = FALSE;
114
0
  ts->leading_unfold = FALSE;
115
0
  ts->nsent = 0;
116
0
  ts->headerlines = 0;
117
0
  return CURLE_OK;
118
0
}
119
120
static CURLcode tunnel_init(struct Curl_cfilter *cf,
121
                            struct Curl_easy *data,
122
                            struct h1_tunnel_state **pts)
123
0
{
124
0
  struct h1_tunnel_state *ts;
125
126
0
  if(cf->conn->scheme->flags & PROTOPT_NOTCPPROXY) {
127
0
    failf(data, "%s cannot be done over CONNECT", cf->conn->scheme->name);
128
0
    return CURLE_UNSUPPORTED_PROTOCOL;
129
0
  }
130
131
0
  ts = curlx_calloc(1, sizeof(*ts));
132
0
  if(!ts)
133
0
    return CURLE_OUT_OF_MEMORY;
134
135
0
  infof(data, "allocate connect buffer");
136
137
0
  curlx_dyn_init(&ts->rcvbuf, DYN_PROXY_CONNECT_HEADERS);
138
0
  curlx_dyn_init(&ts->request_data, DYN_HTTP_REQUEST);
139
0
  Curl_httpchunk_init(data, &ts->ch, TRUE, TRUE);
140
141
0
  *pts = ts;
142
0
  return tunnel_reinit(cf, data, ts);
143
0
}
144
145
static void h1_tunnel_go_state(struct Curl_cfilter *cf,
146
                               struct h1_tunnel_state *ts,
147
                               h1_tunnel_state new_state,
148
                               struct Curl_easy *data)
149
0
{
150
0
  if(ts->tunnel_state == new_state)
151
0
    return;
152
  /* entering this one */
153
0
  switch(new_state) {
154
0
  case H1_TUNNEL_INIT:
155
0
    CURL_TRC_CF(data, cf, "new tunnel state 'init'");
156
0
    tunnel_reinit(cf, data, ts);
157
0
    break;
158
159
0
  case H1_TUNNEL_CONNECT:
160
0
    CURL_TRC_CF(data, cf, "new tunnel state 'connect'");
161
0
    ts->tunnel_state = H1_TUNNEL_CONNECT;
162
0
    ts->keepon = KEEPON_CONNECT;
163
0
    curlx_dyn_reset(&ts->rcvbuf);
164
0
    break;
165
166
0
  case H1_TUNNEL_RECEIVE:
167
0
    CURL_TRC_CF(data, cf, "new tunnel state 'receive'");
168
0
    ts->tunnel_state = H1_TUNNEL_RECEIVE;
169
0
    break;
170
171
0
  case H1_TUNNEL_RESPONSE:
172
0
    CURL_TRC_CF(data, cf, "new tunnel state 'response'");
173
0
    ts->tunnel_state = H1_TUNNEL_RESPONSE;
174
0
    break;
175
176
0
  case H1_TUNNEL_ESTABLISHED:
177
0
    CURL_TRC_CF(data, cf, "new tunnel state 'established'");
178
0
    infof(data, "CONNECT%s phase completed for HTTP proxy",
179
0
          h1_proxy_is_udp(cf) ? "-UDP" : "");
180
181
0
    data->state.authproxy.done = TRUE;
182
0
    data->state.authproxy.multipass = FALSE;
183
0
    FALLTHROUGH();
184
0
  case H1_TUNNEL_FAILED:
185
0
    if(new_state == H1_TUNNEL_FAILED)
186
0
      CURL_TRC_CF(data, cf, "new tunnel state 'failed'");
187
0
    ts->tunnel_state = new_state;
188
0
    curlx_dyn_reset(&ts->rcvbuf);
189
0
    curlx_dyn_reset(&ts->request_data);
190
    /* restore the protocol pointer */
191
0
    data->info.httpcode = 0; /* clear it as it might have been used for the
192
                                proxy */
193
    /* If a proxy-authorization header was used for the proxy, then we should
194
       make sure that it is not accidentally used for the document request
195
       after we have connected. Let's thus free and clear it here. */
196
0
    curlx_safefree(data->req.hd_proxy_auth);
197
0
    break;
198
0
  }
199
0
}
200
201
static void tunnel_free(struct h1_tunnel_state *ts,
202
                        struct Curl_easy *data)
203
0
{
204
0
  if(ts) {
205
0
    Curl_peer_unlink(&ts->dest);
206
0
    curlx_dyn_free(&ts->rcvbuf);
207
0
    curlx_dyn_free(&ts->request_data);
208
0
    Curl_httpchunk_free(data, &ts->ch);
209
0
    curlx_free(ts);
210
0
  }
211
0
}
212
213
static void cf_tunnel_free(struct Curl_cfilter *cf,
214
                           struct Curl_easy *data)
215
0
{
216
0
  if(cf) {
217
0
    struct cf_h1_proxy_ctx *pctx = cf->ctx;
218
0
    struct h1_tunnel_state *ts = pctx ? pctx->ts : NULL;
219
0
    if(ts) {
220
0
      h1_tunnel_go_state(cf, ts, H1_TUNNEL_FAILED, data);
221
0
      tunnel_free(ts, data);
222
0
      pctx->ts = NULL;
223
0
    }
224
0
  }
225
0
}
226
227
static bool tunnel_want_send(struct h1_tunnel_state *ts)
228
0
{
229
0
  return ts->tunnel_state == H1_TUNNEL_CONNECT;
230
0
}
231
232
static CURLcode start_CONNECT(struct Curl_cfilter *cf,
233
                              struct Curl_easy *data,
234
                              struct h1_tunnel_state *ts)
235
0
{
236
0
  struct cf_h1_proxy_ctx *pctx = cf->ctx;
237
0
  struct httpreq *req = NULL;
238
0
  int http_minor;
239
0
  CURLcode result;
240
241
0
  DEBUGASSERT(data);
242
  /* This only happens if we have looped here due to authentication reasons,
243
     and we do not really use the newly cloned URL here then. Free it. */
244
0
  curlx_safefree(data->req.newurl);
245
246
0
  result = Curl_http_proxy_create_tunnel_request(&req, cf, data,
247
0
                                                 pctx->peer, ts->dest,
248
0
                                                 PROXY_HTTP_V1,
249
0
                                                 h1_proxy_is_udp(cf));
250
0
  if(result)
251
0
    goto out;
252
253
0
  curlx_dyn_reset(&ts->request_data);
254
0
  ts->nsent = 0;
255
0
  ts->headerlines = 0;
256
0
  http_minor = ts->httpversion % 10;
257
258
0
  result = Curl_h1_req_write_head(req, http_minor, &ts->request_data);
259
0
  if(!result)
260
0
    result = Curl_creader_set_null(data);
261
262
0
out:
263
0
  if(result)
264
0
    failf(data, "Failed sending CONNECT to proxy");
265
0
  if(req)
266
0
    Curl_http_req_free(req);
267
0
  return result;
268
0
}
269
270
static CURLcode send_CONNECT(struct Curl_cfilter *cf,
271
                             struct Curl_easy *data,
272
                             struct h1_tunnel_state *ts,
273
                             bool *done)
274
0
{
275
0
  const uint8_t *buf = curlx_dyn_uptr(&ts->request_data);
276
0
  size_t request_len = curlx_dyn_len(&ts->request_data);
277
0
  size_t blen = request_len;
278
0
  CURLcode result = CURLE_OK;
279
0
  size_t nwritten;
280
281
0
  if(blen <= ts->nsent)
282
0
    goto out;  /* we are done */
283
284
0
  blen -= ts->nsent;
285
0
  buf += ts->nsent;
286
287
0
  result = cf->next->cft->do_send(cf->next, data, buf, blen, FALSE, &nwritten);
288
0
  if(result) {
289
0
    if(result == CURLE_AGAIN)
290
0
      result = CURLE_OK;
291
0
    goto out;
292
0
  }
293
294
0
  DEBUGASSERT(blen >= nwritten);
295
0
  ts->nsent += nwritten;
296
0
  Curl_debug(data, CURLINFO_HEADER_OUT, (const char *)buf, nwritten);
297
298
0
out:
299
0
  if(result)
300
0
    failf(data, "Failed sending CONNECT to proxy");
301
0
  *done = (!result && (ts->nsent >= request_len));
302
0
  return result;
303
0
}
304
305
static CURLcode on_resp_header(struct Curl_cfilter *cf,
306
                               struct Curl_easy *data,
307
                               struct h1_tunnel_state *ts,
308
                               const char *header)
309
0
{
310
0
  CURLcode result = CURLE_OK;
311
0
  struct SingleRequest *k = &data->req;
312
0
  bool is_udp = h1_proxy_is_udp(cf);
313
314
0
  if(checkprefix("Proxy-authenticate:", header) && (407 == k->httpcode)) {
315
316
0
    bool proxy = (k->httpcode == 407);
317
0
    char *auth = Curl_copy_header_value(header);
318
0
    if(!auth)
319
0
      return CURLE_OUT_OF_MEMORY;
320
321
0
    CURL_TRC_CF(data, cf, "CONNECT%s: fwd auth header '%s'",
322
0
                is_udp ? "-UDP" : "", header);
323
0
    result = Curl_http_input_auth(data, proxy, auth);
324
325
0
    curlx_free(auth);
326
327
0
    if(result)
328
0
      return result;
329
0
  }
330
0
  else if(checkprefix("Content-Length:", header)) {
331
0
    if(k->httpcode < 300) {
332
0
      if(k->httpcode < 200) {
333
        /* Informational 1xx responses cannot carry a body. RFC 9110 15.2 */
334
0
        failf(data, "Invalid Content-Length: in %03d response", k->httpcode);
335
0
        return CURLE_WEIRD_SERVER_REPLY;
336
0
      }
337
      /* A client MUST ignore any Content-Length or Transfer-Encoding
338
         header fields received in a successful response to CONNECT.
339
         "Successful" described as: 2xx (Successful). RFC 7231 4.3.6 */
340
0
      infof(data, "Ignoring Content-Length in CONNECT%s %03d response",
341
0
            is_udp ? "-UDP" : "", k->httpcode);
342
0
    }
343
0
    else {
344
0
      const char *p = header + CURL_CSTRLEN("Content-Length:");
345
0
      if(curlx_str_numblanks(&p, &ts->cl)) {
346
0
        failf(data, "Unsupported Content-Length value");
347
0
        return CURLE_WEIRD_SERVER_REPLY;
348
0
      }
349
0
    }
350
0
  }
351
0
  else if(Curl_compareheader(header,
352
0
                             STRCONST("Connection:"), STRCONST("close"))) {
353
0
    CURL_TRC_CF(data, cf, "CONNECT%s Connection: close", is_udp ? "-UDP" : "");
354
0
    ts->close_connection = TRUE;
355
0
  }
356
0
  else if(checkprefix("Transfer-Encoding:", header)) {
357
0
    if(k->httpcode < 300) {
358
0
      if(k->httpcode < 200) {
359
        /* Informational 1xx responses cannot carry a body. RFC 9110 15.2 */
360
0
        failf(data, "Invalid Transfer-Encoding: in %03d response",
361
0
              k->httpcode);
362
0
        return CURLE_WEIRD_SERVER_REPLY;
363
0
      }
364
      /* A client MUST ignore any Content-Length or Transfer-Encoding
365
         header fields received in a successful response to CONNECT.
366
         "Successful" described as: 2xx (Successful). RFC 7231 4.3.6 */
367
0
      infof(data, "Ignoring Transfer-Encoding in "
368
0
            "CONNECT%s %03d response", is_udp ? "-UDP" : "", k->httpcode);
369
0
    }
370
0
    else if(Curl_compareheader(header,
371
0
                               STRCONST("Transfer-Encoding:"),
372
0
                               STRCONST("chunked"))) {
373
0
      CURL_TRC_CF(data, cf, "CONNECT%s response chunked",
374
0
                  is_udp ? "-UDP" : "");
375
0
      ts->chunked_encoding = TRUE;
376
0
      Curl_httpchunk_reset(data, &ts->ch, TRUE);
377
0
    }
378
0
  }
379
0
  else if(is_udp && checkprefix("Capsule-protocol:", header)) {
380
0
    if(Curl_compareheader(header,
381
0
                           STRCONST("Capsule-protocol:"),
382
0
                           STRCONST("?1"))) {
383
0
      CURL_TRC_CF(data, cf, "CONNECT-UDP Response --> Capsule-protocol: ?1");
384
0
    }
385
0
  }
386
0
  else if(Curl_compareheader(header,
387
0
                             STRCONST("Proxy-Connection:"),
388
0
                             STRCONST("close"))) {
389
0
    CURL_TRC_CF(data, cf, "CONNECT%s Proxy-Connection: close",
390
0
                is_udp ? "-UDP" : "");
391
0
    ts->close_connection = TRUE;
392
0
  }
393
0
  else if(!strncmp(header, "HTTP/1.", 7) &&
394
0
          ((header[7] == '0') || (header[7] == '1')) &&
395
0
          (header[8] == ' ') &&
396
0
          ISDIGIT(header[9]) && ISDIGIT(header[10]) && ISDIGIT(header[11]) &&
397
0
          !ISDIGIT(header[12])) {
398
    /* store the HTTP code from the proxy */
399
0
    data->info.httpproxycode = k->httpcode = ((header[9] - '0') * 100) +
400
0
      ((header[10] - '0') * 10) + (header[11] - '0');
401
0
    CURL_TRC_CF(data, cf, "CONNECT%s HTTP status %d",
402
0
                is_udp ? "-UDP" : "", k->httpcode);
403
0
  }
404
0
  return result;
405
0
}
406
407
static CURLcode single_header(struct Curl_cfilter *cf,
408
                              struct Curl_easy *data,
409
                              struct h1_tunnel_state *ts)
410
0
{
411
0
  CURLcode result = CURLE_OK;
412
0
  const char *linep = curlx_dyn_ptr(&ts->rcvbuf);
413
0
  size_t line_len = curlx_dyn_len(&ts->rcvbuf); /* bytes in this line */
414
0
  const struct SingleRequest *k = &data->req;
415
0
  int writetype;
416
0
  ts->headerlines++;
417
418
  /* output debug if that is requested */
419
0
  Curl_debug(data, CURLINFO_HEADER_IN, linep, line_len);
420
421
  /* a CONNECT response line is handed to the client as a header, so it must
422
     pass the same checks as a regular response header before delivery */
423
0
  result = Curl_verify_header(data, linep, line_len);
424
0
  if(result)
425
0
    return result;
426
427
  /* send the header to the callback */
428
0
  writetype = CLIENTWRITE_HEADER | CLIENTWRITE_CONNECT |
429
0
    (ts->headerlines == 1 ? CLIENTWRITE_STATUS : 0);
430
0
  result = Curl_client_write(data, writetype, linep, line_len);
431
0
  if(result)
432
0
    return result;
433
434
0
  result = Curl_bump_headersize(data, line_len, TRUE);
435
0
  if(result)
436
0
    return result;
437
438
  /* Newlines are CRLF, so the CR is ignored as the line is not
439
     really terminated until the LF comes. Treat a following CR
440
     as end-of-headers as well.*/
441
442
0
  if(ISNEWLINE(linep[0])) {
443
    /* end of response-headers from the proxy */
444
445
0
    if((407 == k->httpcode) && !data->state.authproblem) {
446
      /* If we get a 407 response code with content length
447
         when we have no auth problem, we must ignore the
448
         whole response-body */
449
0
      ts->keepon = KEEPON_IGNORE;
450
451
0
      if(ts->cl) {
452
0
        infof(data, "Ignore %" FMT_OFF_T " bytes of response-body", ts->cl);
453
0
      }
454
0
      else if(ts->chunked_encoding) {
455
0
        infof(data, "Ignore chunked response-body");
456
0
      }
457
0
      else {
458
        /* without content-length or chunked encoding, we
459
           cannot keep the connection alive since the close is
460
           the end signal so we bail out at once instead */
461
0
        CURL_TRC_CF(data, cf, "CONNECT: no content-length or chunked");
462
0
        ts->keepon = KEEPON_DONE;
463
0
      }
464
0
    }
465
0
    else {
466
0
      ts->keepon = KEEPON_DONE;
467
0
    }
468
469
0
    DEBUGASSERT(ts->keepon == KEEPON_IGNORE ||
470
0
                ts->keepon == KEEPON_DONE);
471
0
    return result;
472
0
  }
473
474
0
  result = on_resp_header(cf, data, ts, linep);
475
0
  if(result)
476
0
    return result;
477
478
0
  curlx_dyn_reset(&ts->rcvbuf);
479
0
  return result;
480
0
}
481
482
static CURLcode recv_CONNECT_resp(struct Curl_cfilter *cf,
483
                                  struct Curl_easy *data,
484
                                  struct h1_tunnel_state *ts,
485
                                  bool *done)
486
0
{
487
0
  CURLcode result = CURLE_OK;
488
0
  int error;
489
490
0
#define SELECT_OK      0
491
0
#define SELECT_ERROR   1
492
493
0
  error = SELECT_OK;
494
0
  *done = FALSE;
495
496
0
  while(ts->keepon) {
497
0
    size_t nread;
498
0
    char byte;
499
500
    /* Read one byte at a time to avoid a race condition. Wait at most one
501
       second before looping to ensure continuous pgrsUpdates. */
502
0
    result = Curl_conn_recv(data, cf->sockindex, &byte, 1, &nread);
503
0
    if(result == CURLE_AGAIN)
504
      /* socket buffer drained, return */
505
0
      return CURLE_OK;
506
507
0
    if(!result)
508
0
      result = Curl_pgrsUpdate(data);
509
510
0
    if(result) {
511
0
      ts->keepon = KEEPON_DONE;
512
0
      break;
513
0
    }
514
515
0
    if(!nread) {
516
0
      if(ts->maybe_folded) {
517
        /* EOF right after LF: finalize the pending header line. */
518
0
        result = single_header(cf, data, ts);
519
0
        if(result)
520
0
          return result;
521
0
        ts->maybe_folded = FALSE;
522
0
      }
523
0
      if(data->set.proxyauth && data->state.authproxy.avail &&
524
0
         data->req.hd_proxy_auth) {
525
        /* proxy auth was requested and there was proxy auth available,
526
           then deem this as "mere" proxy disconnect */
527
0
        ts->close_connection = TRUE;
528
0
        infof(data, "Proxy CONNECT connection closed");
529
0
      }
530
0
      else {
531
0
        error = SELECT_ERROR;
532
0
        failf(data, "Proxy CONNECT aborted");
533
0
      }
534
0
      ts->keepon = KEEPON_DONE;
535
0
      break;
536
0
    }
537
538
0
    if(ts->keepon == KEEPON_IGNORE) {
539
      /* This means we are currently ignoring a response-body */
540
0
      if(ts->chunked_encoding) {
541
        /* chunked-encoded body, so we need to do the chunked dance
542
           properly to know when the end of the body is reached */
543
0
        size_t consumed = 0;
544
545
        /* now parse the chunked piece of data so that we can
546
           properly tell when the stream ends */
547
0
        result = Curl_httpchunk_read(data, &ts->ch, &byte, 1, &consumed);
548
0
        if(result)
549
0
          return result;
550
0
        if(Curl_httpchunk_is_done(data, &ts->ch)) {
551
          /* we are done reading chunks! */
552
0
          infof(data, "chunk reading DONE");
553
0
          ts->keepon = KEEPON_DONE;
554
0
        }
555
0
      }
556
0
      else if(ts->cl) {
557
        /* A Content-Length based body: count down the counter
558
           and make sure to break out of the loop when we are done! */
559
0
        ts->cl--;
560
0
        if(ts->cl <= 0) {
561
0
          ts->keepon = KEEPON_DONE;
562
0
          break;
563
0
        }
564
0
      }
565
0
      continue;
566
0
    }
567
568
0
    if(ts->maybe_folded) {
569
0
      if(ISBLANK(byte)) {
570
0
        Curl_http_to_fold(&ts->rcvbuf);
571
0
        ts->leading_unfold = TRUE;
572
0
      }
573
0
      else {
574
0
        result = single_header(cf, data, ts);
575
0
        if(result)
576
0
          return result;
577
        /* now handle the new byte */
578
0
      }
579
0
      ts->maybe_folded = FALSE;
580
0
    }
581
582
0
    if(ts->leading_unfold) {
583
0
      if(ISBLANK(byte))
584
        /* skip a bit brother */
585
0
        continue;
586
      /* non-blank, insert a space then continue the unfolding */
587
0
      if(curlx_dyn_addn(&ts->rcvbuf, " ", 1)) {
588
0
        failf(data, "CONNECT response too large");
589
0
        return CURLE_RECV_ERROR;
590
0
      }
591
0
      ts->leading_unfold = FALSE;
592
0
    }
593
0
    if(curlx_dyn_addn(&ts->rcvbuf, &byte, 1)) {
594
0
      failf(data, "CONNECT response too large");
595
0
      return CURLE_RECV_ERROR;
596
0
    }
597
598
    /* if this is not the end of a header line then continue */
599
0
    if(byte != 0x0a)
600
0
      continue;
601
0
    else {
602
0
      const char *linep = curlx_dyn_ptr(&ts->rcvbuf);
603
0
      size_t hlen = curlx_dyn_len(&ts->rcvbuf);
604
0
      if(hlen && ISNEWLINE(linep[0])) {
605
        /* end of headers */
606
0
        result = single_header(cf, data, ts);
607
0
        if(result)
608
0
          return result;
609
0
      }
610
0
      else
611
0
        ts->maybe_folded = TRUE;
612
0
    }
613
614
0
    if(result)
615
0
      return result;
616
0
  } /* while there is buffer left and loop is requested */
617
618
0
  if(error)
619
0
    result = CURLE_RECV_ERROR;
620
0
  *done = (ts->keepon == KEEPON_DONE);
621
0
  if(!result && *done &&
622
0
     data->info.httpproxycode / 100 != 2 &&
623
0
     !(h1_proxy_is_udp(cf) && data->info.httpproxycode == 101)) {
624
    /* Deal with the possibly already received authenticate
625
       headers. 'newurl' is set to a new URL if we must loop. */
626
0
    result = Curl_http_auth_act(data);
627
0
  }
628
0
  return result;
629
0
}
630
631
static CURLcode H1_CONNECT(struct Curl_cfilter *cf,
632
                           struct Curl_easy *data,
633
                           struct h1_tunnel_state *ts)
634
0
{
635
0
  struct connectdata *conn = cf->conn;
636
0
  CURLcode result;
637
0
  bool done;
638
639
0
  if(tunnel_is_established(ts))
640
0
    return CURLE_OK;
641
0
  if(tunnel_is_failed(ts))
642
0
    return CURLE_RECV_ERROR; /* Need a cfilter close and new bootstrap */
643
644
0
  do {
645
646
0
    if(Curl_timeleft_ms(data) < 0) {
647
0
      failf(data, "Proxy CONNECT aborted due to timeout");
648
0
      result = CURLE_OPERATION_TIMEDOUT;
649
0
      goto out;
650
0
    }
651
652
0
    switch(ts->tunnel_state) {
653
0
    case H1_TUNNEL_INIT:
654
      /* Prepare the CONNECT request and make a first attempt to send. */
655
0
      CURL_TRC_CF(data, cf, "CONNECT start");
656
0
      result = start_CONNECT(cf, data, ts);
657
0
      if(result)
658
0
        goto out;
659
0
      h1_tunnel_go_state(cf, ts, H1_TUNNEL_CONNECT, data);
660
0
      FALLTHROUGH();
661
662
0
    case H1_TUNNEL_CONNECT:
663
      /* see that the request is completely sent */
664
0
      CURL_TRC_CF(data, cf, "CONNECT send");
665
0
      result = send_CONNECT(cf, data, ts, &done);
666
0
      if(result || !done)
667
0
        goto out;
668
0
      h1_tunnel_go_state(cf, ts, H1_TUNNEL_RECEIVE, data);
669
0
      FALLTHROUGH();
670
671
0
    case H1_TUNNEL_RECEIVE:
672
      /* read what is there */
673
0
      CURL_TRC_CF(data, cf, "CONNECT receive");
674
0
      result = recv_CONNECT_resp(cf, data, ts, &done);
675
0
      if(result)
676
0
        CURL_TRC_CF(data, cf, "error receiving CONNECT response: %d",
677
0
                    (int)result);
678
0
      if(!result)
679
0
        result = Curl_pgrsUpdate(data);
680
      /* error or not complete yet. return for more multi-multi */
681
0
      if(result || !done)
682
0
        goto out;
683
      /* got it */
684
0
      h1_tunnel_go_state(cf, ts, H1_TUNNEL_RESPONSE, data);
685
0
      FALLTHROUGH();
686
687
0
    case H1_TUNNEL_RESPONSE:
688
0
      CURL_TRC_CF(data, cf, "CONNECT response");
689
0
      if(data->req.newurl) {
690
        /* not the "final" response, we need to do a follow up request.
691
         * If the other side indicated a connection close, or if someone
692
         * else told us to close this connection, do so now.
693
         */
694
0
        Curl_req_soft_reset(&data->req, data);
695
0
        if(ts->close_connection || conn->bits.close) {
696
          /* Close this filter and the sub-chain, re-connect the
697
           * sub-chain and continue. Closing this filter will
698
           * reset our tunnel state. To avoid recursion, we return
699
           * and expect to be called again.
700
           */
701
0
          CURL_TRC_CF(data, cf, "CONNECT need to close+open");
702
0
          infof(data, "Connect me again please");
703
0
          return CURLE_AGAIN;
704
0
        }
705
0
        else {
706
          /* staying on this connection, reset state */
707
0
          h1_tunnel_go_state(cf, ts, H1_TUNNEL_INIT, data);
708
0
        }
709
0
      }
710
0
      break;
711
712
0
    default:
713
0
      break;
714
0
    }
715
716
0
  } while(data->req.newurl);
717
718
0
  DEBUGASSERT(ts->tunnel_state == H1_TUNNEL_RESPONSE);
719
0
  if(h1_proxy_is_udp(cf)) {
720
    /* RFC 9298: Accept 101 Upgrade for HTTP/1.1 and
721
     * 2xx responses for HTTP/2 and HTTP/3 proxies. */
722
0
    if(data->info.httpproxycode / 100 != 2 &&
723
0
       data->info.httpproxycode != 101) {
724
0
      curlx_safefree(data->req.newurl);
725
0
      h1_tunnel_go_state(cf, ts, H1_TUNNEL_FAILED, data);
726
0
      failf(data, "CONNECT-UDP tunnel failed, response %d",
727
0
            data->req.httpcode);
728
0
      return CURLE_COULDNT_CONNECT;
729
0
    }
730
0
  }
731
0
  else {
732
0
    if(data->info.httpproxycode / 100 != 2) {
733
      /* a non-2xx response and we have no next URL to try. */
734
0
      curlx_safefree(data->req.newurl);
735
0
      h1_tunnel_go_state(cf, ts, H1_TUNNEL_FAILED, data);
736
0
      failf(data, "CONNECT tunnel failed, response %d", data->req.httpcode);
737
0
      return CURLE_COULDNT_CONNECT;
738
0
    }
739
0
  }
740
  /* 2xx response, SUCCESS! */
741
  /* 101 Switching Protocol for CONNECT-UDP */
742
0
  h1_tunnel_go_state(cf, ts, H1_TUNNEL_ESTABLISHED, data);
743
0
  infof(data, "CONNECT%s tunnel established, response %d",
744
0
        h1_proxy_is_udp(cf) ? "-UDP" : "", data->info.httpproxycode);
745
0
  result = CURLE_OK;
746
747
0
out:
748
0
  if(result)
749
0
    h1_tunnel_go_state(cf, ts, H1_TUNNEL_FAILED, data);
750
0
  return result;
751
0
}
752
753
static CURLcode cf_h1_proxy_connect(struct Curl_cfilter *cf,
754
                                    struct Curl_easy *data,
755
                                    bool *done)
756
0
{
757
0
  CURLcode result;
758
0
  struct cf_h1_proxy_ctx *pctx = cf->ctx;
759
0
  struct h1_tunnel_state *ts = pctx->ts;
760
761
0
  if(cf->connected) {
762
0
    *done = TRUE;
763
0
    return CURLE_OK;
764
0
  }
765
766
0
  CURL_TRC_CF(data, cf, "connect");
767
0
  result = cf->next->cft->do_connect(cf->next, data, done);
768
0
  if(result || !*done)
769
0
    return result;
770
771
0
  *done = FALSE;
772
0
  if(!ts) {
773
0
    result = tunnel_init(cf, data, &ts);
774
0
    if(result)
775
0
      return result;
776
0
    pctx->ts = ts;
777
0
  }
778
779
  /* We want "seamless" operations through HTTP proxy tunnel */
780
781
0
  result = H1_CONNECT(cf, data, ts);
782
0
  if(result)
783
0
    goto out;
784
0
  curlx_safefree(data->req.hd_proxy_auth);
785
786
0
out:
787
0
  *done = (result == CURLE_OK) && tunnel_is_established(pctx->ts);
788
0
  if(*done) {
789
0
    cf->connected = TRUE;
790
    /* The real request will follow the CONNECT, reset request partially */
791
0
    Curl_req_soft_reset(&data->req, data);
792
0
    Curl_client_reset(data);
793
0
    Curl_pgrsReset(data);
794
0
    cf_tunnel_free(cf, data);
795
0
  }
796
0
  return result;
797
0
}
798
799
static CURLcode cf_h1_proxy_adjust_pollset(struct Curl_cfilter *cf,
800
                                           struct Curl_easy *data,
801
                                           struct easy_pollset *ps)
802
0
{
803
0
  struct cf_h1_proxy_ctx *pctx = cf->ctx;
804
0
  struct h1_tunnel_state *ts = pctx->ts;
805
0
  CURLcode result = CURLE_OK;
806
807
0
  if(!cf->connected) {
808
    /* If we are not connected, but the filter "below" is
809
     * and not waiting on something, we are tunneling. */
810
0
    curl_socket_t sock = Curl_conn_cf_get_socket(cf, data);
811
0
    if(ts) {
812
      /* when we have sent a CONNECT to a proxy, we should rather either
813
         wait for the socket to become readable to be able to get the
814
         response headers or if we are still sending the request, wait
815
         for write. */
816
0
      if(tunnel_want_send(ts))
817
0
        result = Curl_pollset_set_out_only(data, ps, sock);
818
0
      else
819
0
        result = Curl_pollset_set_in_only(data, ps, sock);
820
0
    }
821
0
    else
822
0
      result = Curl_pollset_set_out_only(data, ps, sock);
823
0
  }
824
0
  else {
825
0
    if(cf->next)
826
0
      result = cf->next->cft->adjust_pollset(cf->next, data, ps);
827
0
  }
828
0
  return result;
829
0
}
830
831
static bool cf_h1_proxy_data_pending(struct Curl_cfilter *cf,
832
                                     const struct Curl_easy *data)
833
0
{
834
0
  return cf->next ? cf->next->cft->has_data_pending(cf->next, data) : FALSE;
835
0
}
836
837
static void cf_h1_proxy_destroy(struct Curl_cfilter *cf,
838
                                struct Curl_easy *data)
839
0
{
840
0
  struct cf_h1_proxy_ctx *pctx = cf->ctx;
841
842
0
  CURL_TRC_CF(data, cf, "destroy");
843
0
  if(pctx) {
844
0
    cf_tunnel_free(cf, data);
845
0
    Curl_peer_unlink(&pctx->peer);
846
0
    curlx_safefree(cf->ctx);
847
0
  }
848
0
}
849
850
static CURLcode cf_h1_proxy_query(struct Curl_cfilter *cf,
851
                                  struct Curl_easy *data,
852
                                  int query, int *pres1, void *pres2)
853
0
{
854
0
  struct cf_h1_proxy_ctx *pctx = cf->ctx;
855
0
  struct h1_tunnel_state *ts = pctx ? pctx->ts : NULL;
856
0
  switch(query) {
857
0
  case CF_QUERY_HOST_PORT:
858
0
    if(!ts || !ts->dest)
859
0
      break;
860
0
    *pres1 = (int)ts->dest->port;
861
0
    *((const char **)pres2) = ts->dest->hostname;
862
0
    return CURLE_OK;
863
0
  case CF_QUERY_ALPN_NEGOTIATED: {
864
0
    const char **palpn = pres2;
865
0
    DEBUGASSERT(palpn);
866
0
    *palpn = NULL;
867
0
    return CURLE_OK;
868
0
  }
869
0
  default:
870
0
    break;
871
0
  }
872
0
  return cf->next ?
873
0
    cf->next->cft->query(cf->next, data, query, pres1, pres2) :
874
0
    CURLE_UNKNOWN_OPTION;
875
0
}
876
877
struct Curl_cftype Curl_cft_h1_proxy = {
878
  "H1-PROXY",
879
  CF_TYPE_IP_CONNECT | CF_TYPE_PROXY,
880
  0,
881
  cf_h1_proxy_destroy,
882
  cf_h1_proxy_connect,
883
  Curl_cf_def_shutdown,
884
  cf_h1_proxy_adjust_pollset,
885
  cf_h1_proxy_data_pending,
886
  Curl_cf_def_send,
887
  Curl_cf_def_recv,
888
  Curl_cf_def_cntrl,
889
  Curl_cf_def_conn_is_alive,
890
  Curl_cf_def_conn_keep_alive,
891
  cf_h1_proxy_query,
892
};
893
894
CURLcode Curl_cf_h1_proxy_insert_after(struct Curl_cfilter *cf_at,
895
                                       struct Curl_easy *data,
896
                                       struct Curl_peer *peer,
897
                                       struct Curl_peer *dest,
898
                                       int httpversion,
899
                                       bool udp_tunnel)
900
0
{
901
0
  struct Curl_cfilter *cf;
902
0
  struct cf_h1_proxy_ctx *pctx;
903
0
  struct h1_tunnel_state *ts;
904
0
  CURLcode result;
905
906
0
  (void)data;
907
0
  if(!dest)
908
0
    return CURLE_FAILED_INIT;
909
0
  if((httpversion < 10) || (httpversion >= 20))
910
0
    return CURLE_FAILED_INIT;
911
912
0
  ts = curlx_calloc(1, sizeof(*ts));
913
0
  if(!ts) {
914
0
    result = CURLE_OUT_OF_MEMORY;
915
0
    goto out;
916
0
  }
917
0
  Curl_peer_link(&ts->dest, dest);
918
0
  ts->udp_tunnel = udp_tunnel;
919
0
  ts->httpversion = httpversion;
920
0
  curlx_dyn_init(&ts->rcvbuf, DYN_PROXY_CONNECT_HEADERS);
921
0
  curlx_dyn_init(&ts->request_data, DYN_HTTP_REQUEST);
922
0
  Curl_httpchunk_init(data, &ts->ch, TRUE, TRUE);
923
924
0
  pctx = curlx_calloc(1, sizeof(*pctx));
925
0
  if(!pctx) {
926
0
    result = CURLE_OUT_OF_MEMORY;
927
0
    goto out;
928
0
  }
929
0
  Curl_peer_link(&pctx->peer, peer);
930
0
  pctx->ts = ts;
931
0
  result = Curl_cf_create(&cf, &Curl_cft_h1_proxy, pctx);
932
0
  if(result) {
933
0
    Curl_peer_unlink(&pctx->peer);
934
0
    curlx_free(pctx);
935
0
    goto out;
936
0
  }
937
0
  ts = NULL;
938
0
  Curl_conn_cf_insert_after(cf_at, cf);
939
940
0
out:
941
0
  tunnel_free(ts, data);
942
0
  return result;
943
0
}
944
945
#endif /* !CURL_DISABLE_PROXY && !CURL_DISABLE_HTTP */