Coverage Report

Created: 2026-09-14 07:05

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/curl/lib/cf-setup.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
#include "urldata.h"
27
#include "cfilters.h"
28
#include "cf-haproxy.h"
29
#include "cf-ip-happy.h"
30
#include "cf-setup.h"
31
#include "curl_trc.h"
32
#include "connect.h"
33
#include "http_proxy.h"
34
#include "socks.h"
35
#include "vquic/cf-capsule.h"
36
#include "vquic/vquic.h"
37
#include "vtls/vtls.h"
38
39
40
typedef enum {
41
  CF_SETUP_INIT,
42
  CF_SETUP_CNNCT_EYEBALLS,
43
  CF_SETUP_CNNCT_SOCKS,
44
  CF_SETUP_CNNCT_HTTP_PROXY,
45
  CF_SETUP_CNNCT_HAPROXY,
46
  CF_SETUP_CNNCT_SSL,
47
  CF_SETUP_DONE
48
} cf_setup_state;
49
50
struct cf_setup_ctx {
51
  cf_setup_state state;
52
  int ssl_mode;
53
  uint8_t transport;
54
  uint8_t retry_count;
55
};
56
57
#ifndef CURL_DISABLE_PROXY
58
59
static CURLcode cf_setup_add_haproxy(struct Curl_cfilter *cf,
60
                                     struct Curl_easy *data)
61
6.80k
{
62
6.80k
  struct cf_setup_ctx *ctx = cf->ctx;
63
6.80k
  CURLcode result = CURLE_OK;
64
65
6.80k
  if(ctx->state < CF_SETUP_CNNCT_HAPROXY) {
66
6.80k
    if(data->set.haproxyprotocol) {
67
0
      if(ctx->transport == TRNSPRT_QUIC) {
68
0
        failf(data, "haproxy protocol does not support QUIC");
69
0
        return CURLE_UNSUPPORTED_PROTOCOL;
70
0
      }
71
0
      result = Curl_cf_haproxy_insert_after(cf, data);
72
0
      if(result) {
73
0
        CURL_TRC_CF(data, cf, "adding HAPROXY filter failed -> %d",
74
0
                    (int)result);
75
0
        return result;
76
0
      }
77
0
      CURL_TRC_CF(data, cf, "added HAPROXY filter");
78
0
    }
79
6.80k
    ctx->state = CF_SETUP_CNNCT_HAPROXY;
80
6.80k
  }
81
6.80k
  return result;
82
6.80k
}
83
84
static CURLcode cf_setup_add_socks(struct Curl_cfilter *cf,
85
                                   struct Curl_easy *data)
86
6.80k
{
87
6.80k
  struct cf_setup_ctx *ctx = cf->ctx;
88
6.80k
  CURLcode result = CURLE_OK;
89
6.80k
  if(ctx->state < CF_SETUP_CNNCT_SOCKS && cf->conn->socks_proxy.peer) {
90
    /* Add a SOCKS proxy to go through `first_peer` to `second_peer`*/
91
0
    struct Curl_peer *second_peer;
92
93
0
    if(cf->conn->http_proxy.peer)
94
0
      second_peer = cf->conn->http_proxy.peer;
95
0
    else
96
0
      second_peer = Curl_conn_get_destination(cf->conn, cf->sockindex);
97
0
    if(!second_peer)
98
0
      return CURLE_FAILED_INIT;
99
100
0
    result = Curl_cf_socks_proxy_insert_after(
101
0
      cf, data, second_peer, cf->conn->ip_version,
102
0
      cf->conn->socks_proxy.proxytype,
103
0
      cf->conn->socks_proxy.creds);
104
0
    if(result) {
105
0
      CURL_TRC_CF(data, cf, "adding SOCKS filter failed -> %d", (int)result);
106
0
      return result;
107
0
    }
108
109
0
    CURL_TRC_CF(data, cf, "added SOCKS filter to %s:%u",
110
0
                second_peer->hostname, second_peer->port);
111
0
    ctx->state = CF_SETUP_CNNCT_SOCKS;
112
0
  }
113
6.80k
  return result;
114
6.80k
}
115
116
#ifndef CURL_DISABLE_HTTP
117
static CURLcode cf_setup_add_http_proxy(struct Curl_cfilter *cf,
118
                                        struct Curl_easy *data)
119
6.80k
{
120
6.80k
  struct cf_setup_ctx *ctx = cf->ctx;
121
6.80k
  CURLcode result = CURLE_OK;
122
123
6.80k
  if(ctx->state < CF_SETUP_CNNCT_HTTP_PROXY &&
124
6.80k
     cf->conn->http_proxy.peer && !cf->conn->bits.origin_is_proxy) {
125
0
    struct Curl_peer *peer = cf->conn->http_proxy.peer;
126
0
    struct Curl_peer *tunnel_peer =
127
0
      Curl_conn_get_destination(cf->conn, cf->sockindex);
128
129
0
#ifdef USE_SSL
130
0
    if(CURL_PROXY_IS_HTTPS(cf->conn->http_proxy.proxytype) &&
131
0
       !Curl_conn_is_ssl(cf->conn, cf->sockindex)) {
132
0
      result = Curl_cf_ssl_proxy_insert_after(
133
0
        cf, data, cf->conn->http_proxy.peer);
134
0
      if(result) {
135
0
        CURL_TRC_CF(data, cf, "adding SSL filter for HTTP proxy failed -> %d",
136
0
                    (int)result);
137
0
        return result;
138
0
      }
139
0
      CURL_TRC_CF(data, cf, "added SSL filter for HTTP proxy");
140
0
    }
141
0
#endif /* USE_SSL */
142
143
0
    result = Curl_cf_http_proxy_insert_after(
144
0
      cf, data, peer, tunnel_peer,
145
0
      ctx->transport, cf->conn->http_proxy.proxytype);
146
0
    if(result) {
147
0
      CURL_TRC_CF(data, cf, "adding HTTP proxy tunnel filter failed -> %d",
148
0
                  (int)result);
149
0
      return result;
150
0
    }
151
0
    CURL_TRC_CF(data, cf, "added HTTP proxy tunnel filter");
152
0
    ctx->state = CF_SETUP_CNNCT_HTTP_PROXY;
153
0
  }
154
6.80k
  return result;
155
6.80k
}
156
#endif /* !CURL_DISABLE_HTTP */
157
#endif /* CURL_DISABLE_PROXY */
158
159
/* Get the origin curl connects its socket to.
160
 * Can be origin or the first proxy. */
161
static struct Curl_peer *conn_get_first_origin(struct connectdata *conn,
162
                                             int8_t sockindex)
163
6.80k
{
164
6.80k
#ifndef CURL_DISABLE_PROXY
165
6.80k
  if(conn->socks_proxy.peer)
166
0
    return conn->socks_proxy.peer;
167
6.80k
  if(conn->http_proxy.peer)
168
0
    return conn->http_proxy.peer;
169
6.80k
#endif
170
6.80k
  return (sockindex == SECONDARYSOCKET) ? conn->origin2 : conn->origin;
171
6.80k
}
172
173
static CURLcode cf_setup_add_ip_happy(struct Curl_cfilter *cf,
174
                                      struct Curl_easy *data)
175
13.6k
{
176
13.6k
  struct cf_setup_ctx *ctx = cf->ctx;
177
13.6k
  CURLcode result = CURLE_OK;
178
179
13.6k
  if(ctx->state < CF_SETUP_CNNCT_EYEBALLS) {
180
    /* What is the first hop we directly connect to and what transport
181
     * do we use for it? Only on the first hop we can do Happy Eyeballs.
182
     * first_origin and first_peer differ on --connect-to. */
183
6.80k
    struct Curl_peer *first_origin =
184
6.80k
      conn_get_first_origin(cf->conn, cf->sockindex);
185
6.80k
    struct Curl_peer *first_peer =
186
6.80k
      Curl_conn_get_first_peer(cf->conn, cf->sockindex);
187
6.80k
    struct Curl_peer *tunnel_peer = NULL;
188
6.80k
    uint8_t first_transport = ctx->transport;
189
190
6.80k
    if(!first_peer)
191
0
      return CURLE_FAILED_INIT;
192
193
6.80k
#if !defined(CURL_DISABLE_PROXY) && !defined(CURL_DISABLE_HTTP)
194
6.80k
    if(cf->conn->http_proxy.peer && !cf->conn->bits.origin_is_proxy) {
195
0
      first_transport =
196
0
        Curl_http_proxy_transport(cf->conn->http_proxy.proxytype);
197
0
      tunnel_peer = Curl_conn_get_destination(cf->conn, cf->sockindex);
198
0
      if((first_transport == TRNSPRT_QUIC) && cf->conn->socks_proxy.peer) {
199
0
        failf(data, "HTTP/3 proxy not possible via SOCKS");
200
0
        return CURLE_UNSUPPORTED_PROTOCOL;
201
0
      }
202
0
    }
203
6.80k
#endif /* !CURL_DISABLE_PROXY && !CURL_DISABLE_HTTP */
204
205
6.80k
    result = Curl_cf_ip_happy_insert_after(cf, data, first_origin, first_peer,
206
6.80k
                                           first_transport,
207
6.80k
                                           tunnel_peer, ctx->transport);
208
6.80k
    if(result) {
209
0
      CURL_TRC_CF(data, cf, "adding happy eyeballs failed -> %d", (int)result);
210
0
      return result;
211
0
    }
212
213
6.80k
    if(tunnel_peer && (first_transport == TRNSPRT_QUIC)) {
214
0
      CURL_TRC_CF(data, cf, "happy eyeballing to HTTP/3 proxy %s:%u",
215
0
                  first_peer->hostname, first_peer->port);
216
0
      ctx->state = CF_SETUP_CNNCT_HTTP_PROXY;
217
0
    }
218
6.80k
    else {
219
6.80k
      CURL_TRC_CF(data, cf, "happy eyeballing to %s %s:%u",
220
6.80k
                  tunnel_peer ? "proxy" : "origin",
221
6.80k
                  first_peer->hostname, first_peer->port);
222
6.80k
      ctx->state = CF_SETUP_CNNCT_EYEBALLS;
223
6.80k
    }
224
6.80k
  }
225
13.6k
  return result;
226
13.6k
}
227
228
static CURLcode cf_setup_add_origin_filters(struct Curl_cfilter *cf,
229
                                            struct Curl_easy *data)
230
6.80k
{
231
6.80k
  struct cf_setup_ctx *ctx = cf->ctx;
232
6.80k
  CURLcode result = CURLE_OK;
233
234
6.80k
  (void)data; /* not used in all builds */
235
6.80k
  if(ctx->state < CF_SETUP_CNNCT_SSL) {
236
6.80k
#if !defined(CURL_DISABLE_HTTP) && defined(USE_HTTP3) && \
237
6.80k
    !defined(CURL_DISABLE_PROXY)
238
239
    /* Wanting QUIC with an HTTP tunneling filter, we now need to add
240
     * the QUIC filter on top. Without tunneling, this has already
241
     * happened in the Happy Eyeball filter. */
242
6.80k
    if(ctx->transport == TRNSPRT_QUIC &&
243
6.80k
       cf->conn->http_proxy.peer && !cf->conn->bits.origin_is_proxy) {
244
0
      struct Curl_peer *origin = Curl_conn_get_origin(cf->conn, cf->sockindex);
245
0
      struct Curl_peer *peer =
246
0
        Curl_conn_get_destination(cf->conn, cf->sockindex);
247
248
0
      result = Curl_cf_capsule_insert_after(cf, data);
249
0
      if(result) {
250
0
        CURL_TRC_CF(data, cf, "adding capsule filter failed -> %d",
251
0
                    (int)result);
252
0
        return result;
253
0
      }
254
0
      result = Curl_cf_quic_insert_after(cf, data, origin, peer);
255
0
      if(result) {
256
0
        CURL_TRC_CF(data, cf, "adding QUIC filter failed -> %d", (int)result);
257
0
        return result;
258
0
      }
259
0
      CURL_TRC_CF(data, cf, "added QUIC filter for origin");
260
0
    }
261
6.80k
    else
262
6.80k
#endif /* !CURL_DISABLE_HTTP && USE_HTTP3 && CURL_DISABLE_PROXY */
263
6.80k
#ifdef USE_SSL
264
6.80k
    if((ctx->ssl_mode == CURL_CF_SSL_ENABLE ||
265
0
        (ctx->ssl_mode != CURL_CF_SSL_DISABLE &&
266
0
         cf->conn->scheme->flags & PROTOPT_SSL)) && /* we want SSL */
267
6.80k
       !Curl_conn_is_ssl(cf->conn, cf->sockindex)) { /* it is missing */
268
269
0
#ifndef CURL_DISABLE_PROXY
270
0
      if(cf->conn->bits.origin_is_proxy) {
271
0
        result = Curl_cf_ssl_proxy_insert_after(cf, data, cf->conn->origin);
272
0
      }
273
0
      else
274
0
#endif
275
0
      {
276
        /* FTP is a bitch. Wherever we really connect to on the DATA
277
         * (secondary) connection, many servers require TLS sessions reuse
278
         * to prove they are talking to the same client.
279
         * For the TLS session lookup to work, we need to instantiate
280
         * the SSL filter with the same peers as FIRSTSOCKET. See #22225
281
         * Meaning: cf->sockindex does not matter here. */
282
0
        result = Curl_cf_ssl_insert_after(cf, data,
283
0
          Curl_conn_get_origin(cf->conn, FIRSTSOCKET),
284
0
          Curl_conn_get_destination(cf->conn, FIRSTSOCKET));
285
0
      }
286
0
      if(result) {
287
0
        CURL_TRC_CF(data, cf, "adding SSL filter for origin failed -> %d",
288
0
                    (int)result);
289
0
        return result;
290
0
      }
291
0
      CURL_TRC_CF(data, cf, "added SSL filter for origin");
292
0
    }
293
6.80k
#endif /* USE_SSL */
294
6.80k
    ctx->state = CF_SETUP_CNNCT_SSL;
295
6.80k
  }
296
6.80k
  return result;
297
6.80k
}
298
299
static CURLcode cf_setup_connect_steps(struct Curl_cfilter *cf,
300
                                       struct Curl_easy *data,
301
                                       bool *done)
302
20.4k
{
303
20.4k
  struct cf_setup_ctx *ctx = cf->ctx;
304
20.4k
  CURLcode result = CURLE_OK;
305
306
20.4k
  if(cf->connected) {
307
0
    *done = TRUE;
308
0
    return CURLE_OK;
309
0
  }
310
311
  /* connect current sub-chain */
312
27.2k
connect_sub_chain:
313
27.2k
  VERBOSE(Curl_conn_trc_filters(data, cf->sockindex, "cf_setup_connect"));
314
315
27.2k
  if(cf->next && !cf->next->connected) {
316
20.4k
    result = Curl_conn_cf_connect(cf->next, data, done);
317
20.4k
    if(result || !*done)
318
13.6k
      return result;
319
20.4k
  }
320
321
13.6k
  result = cf_setup_add_ip_happy(cf, data);
322
13.6k
  if(result)
323
0
    return result;
324
13.6k
  if(!cf->next || !cf->next->connected)
325
6.80k
    goto connect_sub_chain;
326
327
6.80k
#ifndef CURL_DISABLE_PROXY
328
6.80k
  result = cf_setup_add_socks(cf, data);
329
6.80k
  if(result)
330
0
    return result;
331
6.80k
  if(!cf->next || !cf->next->connected)
332
0
    goto connect_sub_chain;
333
334
6.80k
#ifndef CURL_DISABLE_HTTP
335
6.80k
  result = cf_setup_add_http_proxy(cf, data);
336
6.80k
  if(result)
337
0
    return result;
338
6.80k
  if(!cf->next || !cf->next->connected)
339
0
    goto connect_sub_chain;
340
6.80k
#endif /* !CURL_DISABLE_HTTP */
341
342
6.80k
  result = cf_setup_add_haproxy(cf, data);
343
6.80k
  if(result)
344
0
    return result;
345
6.80k
  if(!cf->next || !cf->next->connected)
346
0
    goto connect_sub_chain;
347
6.80k
#endif /* !CURL_DISABLE_PROXY */
348
349
6.80k
  result = cf_setup_add_origin_filters(cf, data);
350
6.80k
  if(result)
351
0
    return result;
352
6.80k
  if(!cf->next || !cf->next->connected)
353
0
    goto connect_sub_chain;
354
355
6.80k
  ctx->state = CF_SETUP_DONE;
356
6.80k
  cf->connected = TRUE;
357
6.80k
  *done = TRUE;
358
6.80k
  return CURLE_OK;
359
6.80k
}
360
361
static CURLcode cf_setup_connect(struct Curl_cfilter *cf,
362
                                 struct Curl_easy *data,
363
                                 bool *done)
364
20.4k
{
365
20.4k
  struct cf_setup_ctx *ctx = cf->ctx;
366
20.4k
  CURLcode result;
367
368
  /* In some situations, a server/proxy may close the connection and
369
   * we need to connect again (HTTP/1.x proxy auth, for example).
370
   * We used to close the filters and reuse them for another attempt,
371
   * however that complicates filter code and it is simpler to tear them
372
   * all down and start over. */
373
20.4k
retry:
374
20.4k
  result = cf_setup_connect_steps(cf, data, done);
375
376
20.4k
  if(result == CURLE_AGAIN) {
377
0
    ++ctx->retry_count;
378
0
    if(ctx->retry_count > 5) /* arbitrary limit, better just timeout? */
379
0
      return CURLE_COULDNT_CONNECT;
380
381
0
    CURL_TRC_CF(data, cf, "retrying connect, %d. time", ctx->retry_count);
382
0
    Curl_conn_cf_discard_chain(&cf->next, data);
383
0
    ctx->state = CF_SETUP_INIT;
384
0
    goto retry;
385
0
  }
386
20.4k
  return result;
387
20.4k
}
388
389
static void cf_setup_destroy(struct Curl_cfilter *cf, struct Curl_easy *data)
390
6.80k
{
391
6.80k
  struct cf_setup_ctx *ctx = cf->ctx;
392
393
6.80k
  CURL_TRC_CF(data, cf, "destroy");
394
6.80k
  curlx_safefree(ctx);
395
6.80k
}
396
397
struct Curl_cftype Curl_cft_setup = {
398
  "SETUP",
399
  CF_TYPE_SETUP,
400
  CURL_LOG_LVL_NONE,
401
  cf_setup_destroy,
402
  cf_setup_connect,
403
  Curl_cf_def_shutdown,
404
  Curl_cf_def_adjust_pollset,
405
  Curl_cf_def_data_pending,
406
  Curl_cf_def_send,
407
  Curl_cf_def_recv,
408
  Curl_cf_def_cntrl,
409
  Curl_cf_def_conn_is_alive,
410
  Curl_cf_def_conn_keep_alive,
411
  Curl_cf_def_query,
412
};
413
414
static CURLcode cf_setup_create(struct Curl_cfilter **pcf,
415
                                struct Curl_easy *data,
416
                                uint8_t transport,
417
                                int ssl_mode)
418
6.80k
{
419
6.80k
  struct Curl_cfilter *cf = NULL;
420
6.80k
  struct cf_setup_ctx *ctx;
421
6.80k
  CURLcode result = CURLE_OK;
422
423
6.80k
  (void)data;
424
6.80k
  ctx = curlx_calloc(1, sizeof(*ctx));
425
6.80k
  if(!ctx) {
426
0
    result = CURLE_OUT_OF_MEMORY;
427
0
    goto out;
428
0
  }
429
6.80k
  ctx->state = CF_SETUP_INIT;
430
6.80k
  ctx->ssl_mode = ssl_mode;
431
6.80k
  ctx->transport = transport;
432
433
6.80k
  result = Curl_cf_create(&cf, &Curl_cft_setup, ctx);
434
6.80k
  if(result)
435
0
    goto out;
436
6.80k
  ctx = NULL;
437
438
6.80k
out:
439
6.80k
  *pcf = result ? NULL : cf;
440
6.80k
  if(ctx) {
441
0
    curlx_free(ctx);
442
0
  }
443
6.80k
  return result;
444
6.80k
}
445
446
CURLcode Curl_cf_setup_add(struct Curl_easy *data,
447
                           struct connectdata *conn,
448
                           int8_t sockindex,
449
                           uint8_t transport,
450
                           int ssl_mode)
451
0
{
452
0
  struct Curl_cfilter *cf;
453
0
  CURLcode result = CURLE_OK;
454
455
0
  DEBUGASSERT(data);
456
0
  result = cf_setup_create(&cf, data, transport, ssl_mode);
457
0
  if(result)
458
0
    goto out;
459
0
  Curl_conn_cf_add(data, conn, sockindex, cf);
460
0
out:
461
0
  return result;
462
0
}
463
464
CURLcode Curl_cf_setup_insert_after(struct Curl_cfilter *cf_at,
465
                                    struct Curl_easy *data,
466
                                    uint8_t transport,
467
                                    int ssl_mode)
468
6.80k
{
469
6.80k
  struct Curl_cfilter *cf;
470
6.80k
  CURLcode result;
471
472
6.80k
  DEBUGASSERT(data);
473
6.80k
  result = cf_setup_create(&cf, data, transport, ssl_mode);
474
6.80k
  if(result)
475
0
    goto out;
476
6.80k
  Curl_conn_cf_insert_after(cf_at, cf);
477
6.80k
out:
478
6.80k
  return result;
479
6.80k
}