William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1 | /* |
| 2 | * HTTP Client |
| 3 | * |
| 4 | * Copyright (C) 2021 HAProxy Technologies, William Lallemand <wlallemand@haproxy.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * This file implements an HTTP Client API. |
| 12 | * |
| 13 | */ |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 14 | |
William Lallemand | 2a8fe8b | 2021-08-20 14:25:15 +0200 | [diff] [blame] | 15 | #include <haproxy/api.h> |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 16 | #include <haproxy/applet.h> |
| 17 | #include <haproxy/cli.h> |
William Lallemand | cf5cb0b | 2022-04-22 14:48:45 +0200 | [diff] [blame] | 18 | #include <haproxy/ssl_ckch.h> |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 19 | #include <haproxy/dynbuf.h> |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 20 | #include <haproxy/cfgparse.h> |
Christopher Faulet | 908628c | 2022-03-25 16:43:49 +0100 | [diff] [blame] | 21 | #include <haproxy/conn_stream.h> |
| 22 | #include <haproxy/cs_utils.h> |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 23 | #include <haproxy/global.h> |
William Lallemand | 0da616e | 2021-10-28 15:34:26 +0200 | [diff] [blame] | 24 | #include <haproxy/istbuf.h> |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 25 | #include <haproxy/h1_htx.h> |
| 26 | #include <haproxy/http.h> |
William Lallemand | 2b7dc4e | 2022-02-24 16:55:41 +0100 | [diff] [blame] | 27 | #include <haproxy/http_ana-t.h> |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 28 | #include <haproxy/http_client.h> |
| 29 | #include <haproxy/http_htx.h> |
William Lallemand | 5392ff6 | 2022-04-28 16:55:02 +0200 | [diff] [blame] | 30 | #include <haproxy/http_rules.h> |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 31 | #include <haproxy/htx.h> |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 32 | #include <haproxy/log.h> |
| 33 | #include <haproxy/proxy.h> |
William Lallemand | 5392ff6 | 2022-04-28 16:55:02 +0200 | [diff] [blame] | 34 | #include <haproxy/resolvers.h> |
William Lallemand | 2a8fe8b | 2021-08-20 14:25:15 +0200 | [diff] [blame] | 35 | #include <haproxy/server.h> |
Willy Tarreau | 1df2042 | 2021-10-06 11:28:24 +0200 | [diff] [blame] | 36 | #include <haproxy/ssl_sock-t.h> |
William Lallemand | 7f1df8f | 2022-04-14 17:50:20 +0200 | [diff] [blame] | 37 | #include <haproxy/sock_inet.h> |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 38 | #include <haproxy/tools.h> |
| 39 | |
| 40 | #include <string.h> |
| 41 | |
| 42 | |
| 43 | static struct proxy *httpclient_proxy; |
| 44 | static struct server *httpclient_srv_raw; |
William Lallemand | 6fce46a | 2022-05-04 14:53:41 +0200 | [diff] [blame] | 45 | |
William Lallemand | 957ab13 | 2021-08-24 18:33:28 +0200 | [diff] [blame] | 46 | #ifdef USE_OPENSSL |
William Lallemand | 6fce46a | 2022-05-04 14:53:41 +0200 | [diff] [blame] | 47 | /* if the httpclient is not configured, error are ignored and features are limited */ |
| 48 | static int hard_error_ssl = 0; |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 49 | static struct server *httpclient_srv_ssl; |
William Lallemand | f1344b3 | 2022-04-26 12:00:06 +0200 | [diff] [blame] | 50 | static int httpclient_ssl_verify = SSL_SOCK_VERIFY_REQUIRED; |
William Lallemand | 683fbb8 | 2022-05-04 15:43:01 +0200 | [diff] [blame] | 51 | static char *httpclient_ssl_ca_file = NULL; |
William Lallemand | 957ab13 | 2021-08-24 18:33:28 +0200 | [diff] [blame] | 52 | #endif |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 53 | static struct applet httpclient_applet; |
| 54 | |
William Lallemand | 7c5a7ef | 2022-05-04 15:59:44 +0200 | [diff] [blame] | 55 | /* if the httpclient is not configured, error are ignored and features are limited */ |
William Lallemand | 8a734cb | 2022-05-04 16:10:47 +0200 | [diff] [blame] | 56 | static int hard_error_resolvers = 0; |
| 57 | static char *resolvers_id = NULL; |
William Lallemand | 7c5a7ef | 2022-05-04 15:59:44 +0200 | [diff] [blame] | 58 | static char *resolvers_prefer = NULL; |
William Lallemand | eaa703e | 2022-04-22 17:52:33 +0200 | [diff] [blame] | 59 | |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 60 | /* --- This part of the file implement an HTTP client over the CLI --- |
| 61 | * The functions will be starting by "hc_cli" for "httpclient cli" |
| 62 | */ |
| 63 | |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 64 | /* What kind of data we need to read */ |
| 65 | #define HC_CLI_F_RES_STLINE 0x01 |
| 66 | #define HC_CLI_F_RES_HDR 0x02 |
| 67 | #define HC_CLI_F_RES_BODY 0x04 |
| 68 | #define HC_CLI_F_RES_END 0x08 |
| 69 | |
| 70 | |
| 71 | /* These are the callback used by the HTTP Client when it needs to notify new |
| 72 | * data, we only sets a flag in the IO handler */ |
| 73 | |
| 74 | void hc_cli_res_stline_cb(struct httpclient *hc) |
| 75 | { |
| 76 | struct appctx *appctx = hc->caller; |
| 77 | |
William Lallemand | dfc3f89 | 2021-08-20 11:35:29 +0200 | [diff] [blame] | 78 | if (!appctx) |
| 79 | return; |
| 80 | |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 81 | appctx->ctx.cli.i0 |= HC_CLI_F_RES_STLINE; |
William Lallemand | dfc3f89 | 2021-08-20 11:35:29 +0200 | [diff] [blame] | 82 | appctx_wakeup(appctx); |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | void hc_cli_res_headers_cb(struct httpclient *hc) |
| 86 | { |
| 87 | struct appctx *appctx = hc->caller; |
| 88 | |
William Lallemand | dfc3f89 | 2021-08-20 11:35:29 +0200 | [diff] [blame] | 89 | if (!appctx) |
| 90 | return; |
| 91 | |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 92 | appctx->ctx.cli.i0 |= HC_CLI_F_RES_HDR; |
William Lallemand | dfc3f89 | 2021-08-20 11:35:29 +0200 | [diff] [blame] | 93 | appctx_wakeup(appctx); |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | void hc_cli_res_body_cb(struct httpclient *hc) |
| 97 | { |
| 98 | struct appctx *appctx = hc->caller; |
| 99 | |
William Lallemand | dfc3f89 | 2021-08-20 11:35:29 +0200 | [diff] [blame] | 100 | if (!appctx) |
| 101 | return; |
| 102 | |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 103 | appctx->ctx.cli.i0 |= HC_CLI_F_RES_BODY; |
William Lallemand | dfc3f89 | 2021-08-20 11:35:29 +0200 | [diff] [blame] | 104 | appctx_wakeup(appctx); |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | void hc_cli_res_end_cb(struct httpclient *hc) |
| 108 | { |
| 109 | struct appctx *appctx = hc->caller; |
| 110 | |
William Lallemand | dfc3f89 | 2021-08-20 11:35:29 +0200 | [diff] [blame] | 111 | if (!appctx) |
| 112 | return; |
| 113 | |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 114 | appctx->ctx.cli.i0 |= HC_CLI_F_RES_END; |
William Lallemand | dfc3f89 | 2021-08-20 11:35:29 +0200 | [diff] [blame] | 115 | appctx_wakeup(appctx); |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | /* |
| 119 | * Parse an httpclient keyword on the cli: |
| 120 | * httpclient <ID> <method> <URI> |
| 121 | */ |
| 122 | static int hc_cli_parse(char **args, char *payload, struct appctx *appctx, void *private) |
| 123 | { |
| 124 | struct httpclient *hc; |
| 125 | char *err = NULL; |
| 126 | enum http_meth_t meth; |
| 127 | char *meth_str; |
| 128 | struct ist uri; |
William Lallemand | dec25c3 | 2021-10-25 19:48:37 +0200 | [diff] [blame] | 129 | struct ist body = IST_NULL; |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 130 | |
| 131 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 132 | return 1; |
| 133 | |
| 134 | if (!*args[1] || !*args[2]) { |
| 135 | memprintf(&err, ": not enough parameters"); |
| 136 | goto err; |
| 137 | } |
| 138 | |
| 139 | meth_str = args[1]; |
| 140 | uri = ist(args[2]); |
| 141 | |
William Lallemand | dec25c3 | 2021-10-25 19:48:37 +0200 | [diff] [blame] | 142 | if (payload) |
| 143 | body = ist(payload); |
| 144 | |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 145 | meth = find_http_meth(meth_str, strlen(meth_str)); |
| 146 | |
| 147 | hc = httpclient_new(appctx, meth, uri); |
| 148 | if (!hc) { |
| 149 | goto err; |
| 150 | } |
| 151 | |
| 152 | /* update the httpclient callbacks */ |
| 153 | hc->ops.res_stline = hc_cli_res_stline_cb; |
| 154 | hc->ops.res_headers = hc_cli_res_headers_cb; |
| 155 | hc->ops.res_payload = hc_cli_res_body_cb; |
| 156 | hc->ops.res_end = hc_cli_res_end_cb; |
| 157 | |
| 158 | appctx->ctx.cli.p0 = hc; /* store the httpclient ptr in the applet */ |
| 159 | appctx->ctx.cli.i0 = 0; |
| 160 | |
William Lallemand | bad9c8c | 2022-01-14 14:10:33 +0100 | [diff] [blame] | 161 | if (httpclient_req_gen(hc, hc->req.url, hc->req.meth, NULL, body) != ERR_NONE) |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 162 | goto err; |
| 163 | |
| 164 | |
| 165 | if (!httpclient_start(hc)) |
| 166 | goto err; |
| 167 | |
| 168 | return 0; |
| 169 | |
| 170 | err: |
| 171 | memprintf(&err, "Can't start the HTTP client%s.\n", err ? err : ""); |
| 172 | return cli_err(appctx, err); |
| 173 | } |
| 174 | |
| 175 | /* This function dumps the content of the httpclient receive buffer |
| 176 | * on the CLI output |
| 177 | * |
| 178 | * Return 1 when the processing is finished |
| 179 | * return 0 if it needs to be called again |
| 180 | */ |
| 181 | static int hc_cli_io_handler(struct appctx *appctx) |
| 182 | { |
Christopher Faulet | 908628c | 2022-03-25 16:43:49 +0100 | [diff] [blame] | 183 | struct conn_stream *cs = appctx->owner; |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 184 | struct buffer *trash = alloc_trash_chunk(); |
| 185 | struct httpclient *hc = appctx->ctx.cli.p0; |
| 186 | struct http_hdr *hdrs, *hdr; |
| 187 | |
| 188 | if (!trash) |
| 189 | goto out; |
| 190 | if (appctx->ctx.cli.i0 & HC_CLI_F_RES_STLINE) { |
William Lallemand | de6ecc3 | 2022-02-16 11:37:02 +0100 | [diff] [blame] | 191 | chunk_appendf(trash, "%.*s %d %.*s\n", (unsigned int)istlen(hc->res.vsn), istptr(hc->res.vsn), |
| 192 | hc->res.status, (unsigned int)istlen(hc->res.reason), istptr(hc->res.reason)); |
Christopher Faulet | 908628c | 2022-03-25 16:43:49 +0100 | [diff] [blame] | 193 | if (ci_putchk(cs_ic(cs), trash) == -1) |
Christopher Faulet | a0bdec3 | 2022-04-04 07:51:21 +0200 | [diff] [blame] | 194 | cs_rx_room_blk(cs); |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 195 | appctx->ctx.cli.i0 &= ~HC_CLI_F_RES_STLINE; |
| 196 | goto out; |
| 197 | } |
| 198 | |
| 199 | if (appctx->ctx.cli.i0 & HC_CLI_F_RES_HDR) { |
| 200 | hdrs = hc->res.hdrs; |
| 201 | for (hdr = hdrs; isttest(hdr->v); hdr++) { |
| 202 | if (!h1_format_htx_hdr(hdr->n, hdr->v, trash)) |
| 203 | goto out; |
| 204 | } |
| 205 | if (!chunk_memcat(trash, "\r\n", 2)) |
| 206 | goto out; |
Christopher Faulet | 908628c | 2022-03-25 16:43:49 +0100 | [diff] [blame] | 207 | if (ci_putchk(cs_ic(cs), trash) == -1) |
Christopher Faulet | a0bdec3 | 2022-04-04 07:51:21 +0200 | [diff] [blame] | 208 | cs_rx_room_blk(cs); |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 209 | appctx->ctx.cli.i0 &= ~HC_CLI_F_RES_HDR; |
| 210 | goto out; |
| 211 | } |
| 212 | |
| 213 | if (appctx->ctx.cli.i0 & HC_CLI_F_RES_BODY) { |
| 214 | int ret; |
| 215 | |
Christopher Faulet | 908628c | 2022-03-25 16:43:49 +0100 | [diff] [blame] | 216 | ret = httpclient_res_xfer(hc, cs_ib(cs)); |
| 217 | channel_add_input(cs_ic(cs), ret); /* forward what we put in the buffer channel */ |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 218 | |
William Lallemand | 518878e | 2021-09-21 10:45:34 +0200 | [diff] [blame] | 219 | if (!httpclient_data(hc)) {/* remove the flag if the buffer was emptied */ |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 220 | appctx->ctx.cli.i0 &= ~HC_CLI_F_RES_BODY; |
| 221 | } |
| 222 | goto out; |
| 223 | } |
| 224 | |
| 225 | /* we must close only if F_END is the last flag */ |
| 226 | if (appctx->ctx.cli.i0 == HC_CLI_F_RES_END) { |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 227 | cs_shutw(cs); |
| 228 | cs_shutr(cs); |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 229 | appctx->ctx.cli.i0 &= ~HC_CLI_F_RES_END; |
| 230 | goto out; |
| 231 | } |
| 232 | |
| 233 | out: |
| 234 | /* we didn't clear every flags, we should come back to finish things */ |
| 235 | if (appctx->ctx.cli.i0) |
Christopher Faulet | a0bdec3 | 2022-04-04 07:51:21 +0200 | [diff] [blame] | 236 | cs_rx_room_blk(cs); |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 237 | |
| 238 | free_trash_chunk(trash); |
| 239 | return 0; |
| 240 | } |
| 241 | |
| 242 | static void hc_cli_release(struct appctx *appctx) |
| 243 | { |
| 244 | struct httpclient *hc = appctx->ctx.cli.p0; |
| 245 | |
| 246 | /* Everything possible was printed on the CLI, we can destroy the client */ |
William Lallemand | ecb83e1 | 2021-09-28 11:00:43 +0200 | [diff] [blame] | 247 | httpclient_stop_and_destroy(hc); |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 248 | |
| 249 | return; |
| 250 | } |
| 251 | |
| 252 | /* register cli keywords */ |
| 253 | static struct cli_kw_list cli_kws = {{ },{ |
Willy Tarreau | 2c8f984 | 2022-02-18 16:26:36 +0100 | [diff] [blame] | 254 | { { "httpclient", NULL }, "httpclient <method> <URI> : launch an HTTP request", hc_cli_parse, hc_cli_io_handler, hc_cli_release, NULL, ACCESS_EXPERT}, |
William Lallemand | 03a4eb1 | 2021-08-18 16:46:21 +0200 | [diff] [blame] | 255 | { { NULL }, NULL, NULL, NULL } |
| 256 | }}; |
| 257 | |
| 258 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
| 259 | |
| 260 | |
| 261 | /* --- This part of the file implements the actual HTTP client API --- */ |
| 262 | |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 263 | /* |
| 264 | * Generate a simple request and fill the httpclient request buffer with it. |
| 265 | * The request contains a request line generated from the absolute <url> and |
| 266 | * <meth> as well as list of headers <hdrs>. |
| 267 | * |
| 268 | * If the buffer was filled correctly the function returns 0, if not it returns |
| 269 | * an error_code but there is no guarantee that the buffer wasn't modified. |
| 270 | */ |
William Lallemand | dec25c3 | 2021-10-25 19:48:37 +0200 | [diff] [blame] | 271 | int httpclient_req_gen(struct httpclient *hc, const struct ist url, enum http_meth_t meth, const struct http_hdr *hdrs, const struct ist payload) |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 272 | { |
| 273 | struct htx_sl *sl; |
| 274 | struct htx *htx; |
| 275 | int err_code = 0; |
| 276 | struct ist meth_ist, vsn; |
William Lallemand | dec25c3 | 2021-10-25 19:48:37 +0200 | [diff] [blame] | 277 | unsigned int flags = HTX_SL_F_VER_11 | HTX_SL_F_NORMALIZED_URI | HTX_SL_F_HAS_SCHM; |
William Lallemand | f03b53c | 2021-11-24 15:38:17 +0100 | [diff] [blame] | 278 | int i; |
William Lallemand | bad9c8c | 2022-01-14 14:10:33 +0100 | [diff] [blame] | 279 | int foundhost = 0, foundaccept = 0, foundua = 0; |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 280 | |
Christopher Faulet | 600985d | 2022-01-12 11:14:08 +0100 | [diff] [blame] | 281 | if (!b_alloc(&hc->req.buf)) |
| 282 | goto error; |
| 283 | |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 284 | if (meth >= HTTP_METH_OTHER) |
| 285 | goto error; |
| 286 | |
| 287 | meth_ist = http_known_methods[meth]; |
| 288 | |
| 289 | vsn = ist("HTTP/1.1"); |
| 290 | |
| 291 | htx = htx_from_buf(&hc->req.buf); |
| 292 | if (!htx) |
| 293 | goto error; |
William Lallemand | e1e045f | 2022-01-14 14:08:34 +0100 | [diff] [blame] | 294 | |
| 295 | if (!hc->ops.req_payload && !isttest(payload)) |
| 296 | flags |= HTX_SL_F_BODYLESS; |
| 297 | |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 298 | sl = htx_add_stline(htx, HTX_BLK_REQ_SL, flags, meth_ist, url, vsn); |
| 299 | if (!sl) { |
| 300 | goto error; |
| 301 | } |
| 302 | sl->info.req.meth = meth; |
| 303 | |
William Lallemand | f03b53c | 2021-11-24 15:38:17 +0100 | [diff] [blame] | 304 | for (i = 0; hdrs && hdrs[i].n.len; i++) { |
| 305 | /* Don't check the value length because a header value may be empty */ |
| 306 | if (isttest(hdrs[i].v) == 0) |
| 307 | continue; |
| 308 | |
| 309 | if (isteqi(hdrs[i].n, ist("host"))) |
| 310 | foundhost = 1; |
William Lallemand | bad9c8c | 2022-01-14 14:10:33 +0100 | [diff] [blame] | 311 | else if (isteqi(hdrs[i].n, ist("accept"))) |
| 312 | foundaccept = 1; |
| 313 | else if (isteqi(hdrs[i].n, ist("user-agent"))) |
| 314 | foundua = 1; |
William Lallemand | f03b53c | 2021-11-24 15:38:17 +0100 | [diff] [blame] | 315 | |
| 316 | if (!htx_add_header(htx, hdrs[i].n, hdrs[i].v)) |
| 317 | goto error; |
| 318 | } |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 319 | |
William Lallemand | f03b53c | 2021-11-24 15:38:17 +0100 | [diff] [blame] | 320 | if (!foundhost) { |
| 321 | /* Add Host Header from URL */ |
| 322 | if (!htx_add_header(htx, ist("Host"), ist("h"))) |
William Lallemand | 79a3478 | 2021-09-20 16:19:15 +0200 | [diff] [blame] | 323 | goto error; |
William Lallemand | f03b53c | 2021-11-24 15:38:17 +0100 | [diff] [blame] | 324 | if (!http_update_host(htx, sl, url)) |
William Lallemand | 79a3478 | 2021-09-20 16:19:15 +0200 | [diff] [blame] | 325 | goto error; |
| 326 | } |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 327 | |
William Lallemand | bad9c8c | 2022-01-14 14:10:33 +0100 | [diff] [blame] | 328 | if (!foundaccept) { |
| 329 | if (!htx_add_header(htx, ist("Accept"), ist("*/*"))) |
| 330 | goto error; |
| 331 | } |
| 332 | |
| 333 | if (!foundua) { |
| 334 | if (!htx_add_header(htx, ist("User-Agent"), ist(HTTPCLIENT_USERAGENT))) |
| 335 | goto error; |
| 336 | } |
| 337 | |
| 338 | |
William Lallemand | f03b53c | 2021-11-24 15:38:17 +0100 | [diff] [blame] | 339 | if (!htx_add_endof(htx, HTX_BLK_EOH)) |
| 340 | goto error; |
| 341 | |
William Lallemand | dec25c3 | 2021-10-25 19:48:37 +0200 | [diff] [blame] | 342 | if (isttest(payload)) { |
| 343 | /* add the payload if it can feat in the buffer, no need to set |
| 344 | * the Content-Length, the data will be sent chunked */ |
| 345 | if (!htx_add_data_atonce(htx, payload)) |
| 346 | goto error; |
| 347 | } |
| 348 | |
William Lallemand | 0da616e | 2021-10-28 15:34:26 +0200 | [diff] [blame] | 349 | /* If req.payload was set, does not set the end of stream which *MUST* |
| 350 | * be set in the callback */ |
| 351 | if (!hc->ops.req_payload) |
| 352 | htx->flags |= HTX_FL_EOM; |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 353 | |
| 354 | htx_to_buf(htx, &hc->req.buf); |
| 355 | |
| 356 | return 0; |
| 357 | error: |
| 358 | err_code |= ERR_ALERT | ERR_ABORT; |
| 359 | return err_code; |
| 360 | } |
| 361 | |
| 362 | /* |
| 363 | * transfer the response to the destination buffer and wakeup the HTTP client |
| 364 | * applet so it could fill again its buffer. |
| 365 | * |
Ilya Shipitsin | bd6b4be | 2021-10-15 16:18:21 +0500 | [diff] [blame] | 366 | * Return the number of bytes transferred. |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 367 | */ |
| 368 | int httpclient_res_xfer(struct httpclient *hc, struct buffer *dst) |
| 369 | { |
Willy Tarreau | 11adb1d | 2022-02-18 17:28:25 +0100 | [diff] [blame] | 370 | size_t room = b_room(dst); |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 371 | int ret; |
| 372 | |
Willy Tarreau | 11adb1d | 2022-02-18 17:28:25 +0100 | [diff] [blame] | 373 | ret = b_force_xfer(dst, &hc->res.buf, MIN(room, b_data(&hc->res.buf))); |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 374 | /* call the client once we consumed all data */ |
Christopher Faulet | 600985d | 2022-01-12 11:14:08 +0100 | [diff] [blame] | 375 | if (!b_data(&hc->res.buf)) { |
| 376 | b_free(&hc->res.buf); |
| 377 | if (hc->appctx) |
| 378 | appctx_wakeup(hc->appctx); |
| 379 | } |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 380 | return ret; |
| 381 | } |
| 382 | |
| 383 | /* |
William Lallemand | 0da616e | 2021-10-28 15:34:26 +0200 | [diff] [blame] | 384 | * Transfer raw HTTP payload from src, and insert it into HTX format in the |
| 385 | * httpclient. |
| 386 | * |
| 387 | * Must be used to transfer the request body. |
| 388 | * Then wakeup the httpclient so it can transfer it. |
| 389 | * |
| 390 | * <end> tries to add the ending data flag if it succeed to copy all data. |
| 391 | * |
| 392 | * Return the number of bytes copied from src. |
| 393 | */ |
| 394 | int httpclient_req_xfer(struct httpclient *hc, struct ist src, int end) |
| 395 | { |
| 396 | int ret = 0; |
| 397 | struct htx *htx; |
| 398 | |
Christopher Faulet | 600985d | 2022-01-12 11:14:08 +0100 | [diff] [blame] | 399 | if (!b_alloc(&hc->req.buf)) |
| 400 | goto error; |
| 401 | |
William Lallemand | 0da616e | 2021-10-28 15:34:26 +0200 | [diff] [blame] | 402 | htx = htx_from_buf(&hc->req.buf); |
| 403 | if (!htx) |
| 404 | goto error; |
| 405 | |
| 406 | if (hc->appctx) |
| 407 | appctx_wakeup(hc->appctx); |
| 408 | |
| 409 | ret += htx_add_data(htx, src); |
| 410 | |
| 411 | |
| 412 | /* if we copied all the data and the end flag is set */ |
| 413 | if ((istlen(src) == ret) && end) { |
| 414 | htx->flags |= HTX_FL_EOM; |
| 415 | } |
| 416 | htx_to_buf(htx, &hc->req.buf); |
| 417 | |
| 418 | error: |
| 419 | |
| 420 | return ret; |
| 421 | } |
| 422 | |
William Lallemand | b4a4ef6 | 2022-02-23 14:18:16 +0100 | [diff] [blame] | 423 | /* Set the 'timeout server' in ms for the next httpclient request */ |
| 424 | void httpclient_set_timeout(struct httpclient *hc, int timeout) |
| 425 | { |
| 426 | hc->timeout_server = timeout; |
| 427 | } |
| 428 | |
William Lallemand | 7b2e0ee | 2022-02-17 19:10:55 +0100 | [diff] [blame] | 429 | /* |
| 430 | * Sets a destination for the httpclient from an HAProxy addr format |
| 431 | * This will prevent to determine the destination from the URL |
| 432 | * Return 0 in case of success or -1 otherwise. |
| 433 | */ |
| 434 | int httpclient_set_dst(struct httpclient *hc, const char *dst) |
| 435 | { |
| 436 | struct sockaddr_storage *sk; |
| 437 | char *errmsg = NULL; |
| 438 | |
| 439 | sockaddr_free(&hc->dst); |
| 440 | /* 'sk' is statically allocated (no need to be freed). */ |
| 441 | sk = str2sa_range(dst, NULL, NULL, NULL, NULL, NULL, |
| 442 | &errmsg, NULL, NULL, |
| 443 | PA_O_PORT_OK | PA_O_STREAM | PA_O_XPRT | PA_O_CONNECT); |
| 444 | if (!sk) { |
| 445 | ha_alert("httpclient: Failed to parse destination address in %s\n", errmsg); |
| 446 | free(errmsg); |
| 447 | return -1; |
| 448 | } |
| 449 | |
| 450 | if (!sockaddr_alloc(&hc->dst, sk, sizeof(*sk))) { |
| 451 | ha_alert("httpclient: Failed to allocate sockaddr in %s:%d.\n", __FUNCTION__, __LINE__); |
| 452 | return -1; |
| 453 | } |
| 454 | |
| 455 | return 0; |
| 456 | } |
William Lallemand | 0da616e | 2021-10-28 15:34:26 +0200 | [diff] [blame] | 457 | |
| 458 | /* |
William Lallemand | 7f1df8f | 2022-04-14 17:50:20 +0200 | [diff] [blame] | 459 | * Return a splitted URL in <scheme>, <host>, <port> |
| 460 | */ |
| 461 | static void httpclient_spliturl(struct ist url, enum http_scheme *scheme, |
| 462 | struct ist *host, int *port) |
| 463 | { |
| 464 | enum http_scheme scheme_tmp = SCH_HTTP; |
| 465 | int port_tmp = 0; |
| 466 | struct ist scheme_ist, authority_ist, host_ist, port_ist; |
| 467 | char *p, *end; |
| 468 | struct http_uri_parser parser; |
| 469 | |
| 470 | parser = http_uri_parser_init(url); |
| 471 | scheme_ist = http_parse_scheme(&parser); |
| 472 | |
| 473 | if (isteqi(scheme_ist, ist("http://"))){ |
| 474 | scheme_tmp = SCH_HTTP; |
| 475 | port_tmp = 80; |
| 476 | } else if (isteqi(scheme_ist, ist("https://"))) { |
| 477 | scheme_tmp = SCH_HTTPS; |
| 478 | port_tmp = 443; |
| 479 | } |
| 480 | |
| 481 | authority_ist = http_parse_authority(&parser, 1); |
| 482 | p = end = istend(authority_ist); |
| 483 | |
| 484 | /* look for a port at the end of the authority */ |
| 485 | while (p > istptr(authority_ist) && isdigit((unsigned char)*--p)) |
| 486 | ; |
| 487 | |
| 488 | if (*p == ':') { |
| 489 | host_ist = ist2(istptr(authority_ist), p - istptr(authority_ist)); |
| 490 | port_ist = istnext(ist2(p, end - p)); |
| 491 | ist2str(trash.area, port_ist); |
| 492 | port_tmp = atoi(trash.area); |
| 493 | } else { |
| 494 | host_ist = authority_ist; |
| 495 | } |
| 496 | |
| 497 | if (scheme) |
| 498 | *scheme = scheme_tmp; |
| 499 | if (host) |
| 500 | *host = host_ist; |
| 501 | if (port) |
| 502 | *port = port_tmp; |
| 503 | |
| 504 | } |
| 505 | |
| 506 | /* |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 507 | * Start the HTTP client |
| 508 | * Create the appctx, session, stream and wakeup the applet |
| 509 | * |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 510 | * Return the <appctx> or NULL if it failed |
| 511 | */ |
| 512 | struct appctx *httpclient_start(struct httpclient *hc) |
| 513 | { |
| 514 | struct applet *applet = &httpclient_applet; |
| 515 | struct appctx *appctx; |
| 516 | struct session *sess; |
Christopher Faulet | 13a35e5 | 2021-12-20 15:34:16 +0100 | [diff] [blame] | 517 | struct conn_stream *cs; |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 518 | struct stream *s; |
Christopher Faulet | a9e8b39 | 2022-03-23 11:01:09 +0100 | [diff] [blame] | 519 | struct sockaddr_storage *addr = NULL; |
William Lallemand | 7f1df8f | 2022-04-14 17:50:20 +0200 | [diff] [blame] | 520 | struct sockaddr_storage ss_url = {}; |
| 521 | struct sockaddr_storage *ss_dst; |
William Lallemand | 4006b0f | 2022-04-25 18:23:35 +0200 | [diff] [blame] | 522 | enum obj_type *target = NULL; |
William Lallemand | 7f1df8f | 2022-04-14 17:50:20 +0200 | [diff] [blame] | 523 | struct ist host = IST_NULL; |
| 524 | enum http_scheme scheme; |
| 525 | int port; |
William Lallemand | 5392ff6 | 2022-04-28 16:55:02 +0200 | [diff] [blame] | 526 | int doresolve = 0; |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 527 | |
William Lallemand | 5085bc3 | 2022-02-17 12:52:09 +0100 | [diff] [blame] | 528 | /* if the client was started and not ended, an applet is already |
| 529 | * running, we shouldn't try anything */ |
| 530 | if (httpclient_started(hc) && !httpclient_ended(hc)) |
| 531 | return NULL; |
| 532 | |
| 533 | hc->flags = 0; |
| 534 | |
William Lallemand | 7f1df8f | 2022-04-14 17:50:20 +0200 | [diff] [blame] | 535 | /* parse the URL and */ |
| 536 | httpclient_spliturl(hc->req.url, &scheme, &host, &port); |
| 537 | |
William Lallemand | 8533273 | 2022-05-04 10:59:51 +0200 | [diff] [blame] | 538 | if (hc->dst) { |
| 539 | /* if httpclient_set_dst() was used, sets the alternative address */ |
| 540 | ss_dst = hc->dst; |
| 541 | } else { |
| 542 | /* set the dst using the host, or 0.0.0.0 to resolve */ |
| 543 | |
| 544 | ist2str(trash.area, host); |
| 545 | ss_dst = str2ip2(trash.area, &ss_url, 0); |
| 546 | if (!ss_dst) { /* couldn't get an IP from that, try to resolve */ |
| 547 | doresolve = 1; |
| 548 | ss_dst = str2ip2("0.0.0.0", &ss_url, 0); |
| 549 | } |
| 550 | sock_inet_set_port(ss_dst, port); |
| 551 | } |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 552 | |
| 553 | /* The HTTP client will be created in the same thread as the caller, |
| 554 | * avoiding threading issues */ |
Christopher Faulet | 9ec2f4d | 2022-03-23 15:15:29 +0100 | [diff] [blame] | 555 | appctx = appctx_new(applet, NULL); |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 556 | if (!appctx) |
Christopher Faulet | a9e8b39 | 2022-03-23 11:01:09 +0100 | [diff] [blame] | 557 | goto out; |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 558 | |
| 559 | sess = session_new(httpclient_proxy, NULL, &appctx->obj_type); |
| 560 | if (!sess) { |
| 561 | ha_alert("httpclient: out of memory in %s:%d.\n", __FUNCTION__, __LINE__); |
| 562 | goto out_free_appctx; |
| 563 | } |
Christopher Faulet | 2479e5f | 2022-01-19 14:50:11 +0100 | [diff] [blame] | 564 | |
William Lallemand | 4006b0f | 2022-04-25 18:23:35 +0200 | [diff] [blame] | 565 | /* choose the SSL server or not */ |
William Lallemand | 7f1df8f | 2022-04-14 17:50:20 +0200 | [diff] [blame] | 566 | switch (scheme) { |
William Lallemand | 4006b0f | 2022-04-25 18:23:35 +0200 | [diff] [blame] | 567 | case SCH_HTTP: |
| 568 | target = &httpclient_srv_raw->obj_type; |
| 569 | break; |
| 570 | case SCH_HTTPS: |
| 571 | #ifdef USE_OPENSSL |
| 572 | if (httpclient_srv_ssl) { |
| 573 | target = &httpclient_srv_ssl->obj_type; |
| 574 | } else { |
| 575 | ha_alert("httpclient: SSL was disabled (wrong verify/ca-file)!\n"); |
| 576 | goto out_free_sess; |
| 577 | } |
| 578 | #else |
| 579 | ha_alert("httpclient: OpenSSL is not available %s:%d.\n", __FUNCTION__, __LINE__); |
| 580 | goto out_free_sess; |
| 581 | #endif |
| 582 | break; |
| 583 | } |
| 584 | |
William Lallemand | 5392ff6 | 2022-04-28 16:55:02 +0200 | [diff] [blame] | 585 | if (!ss_dst) { |
| 586 | ha_alert("httpclient: Failed to initialize address %s:%d.\n", __FUNCTION__, __LINE__); |
| 587 | goto out_free_sess; |
| 588 | } |
William Lallemand | 7b2e0ee | 2022-02-17 19:10:55 +0100 | [diff] [blame] | 589 | |
William Lallemand | 8533273 | 2022-05-04 10:59:51 +0200 | [diff] [blame] | 590 | if (!sockaddr_alloc(&addr, ss_dst, sizeof(*ss_dst))) |
Christopher Faulet | a9e8b39 | 2022-03-23 11:01:09 +0100 | [diff] [blame] | 591 | goto out_free_sess; |
| 592 | |
Christopher Faulet | 9ec2f4d | 2022-03-23 15:15:29 +0100 | [diff] [blame] | 593 | cs = cs_new_from_applet(appctx->endp, sess, &hc->req.buf); |
Christopher Faulet | a9e8b39 | 2022-03-23 11:01:09 +0100 | [diff] [blame] | 594 | if (!cs) { |
| 595 | ha_alert("httpclient: Failed to initialize stream %s:%d.\n", __FUNCTION__, __LINE__); |
Christopher Faulet | a9e8b39 | 2022-03-23 11:01:09 +0100 | [diff] [blame] | 596 | goto out_free_addr; |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 597 | } |
Christopher Faulet | a9e8b39 | 2022-03-23 11:01:09 +0100 | [diff] [blame] | 598 | s = DISGUISE(cs_strm(cs)); |
| 599 | |
William Lallemand | 4006b0f | 2022-04-25 18:23:35 +0200 | [diff] [blame] | 600 | s->target = target; |
Christopher Faulet | a9e8b39 | 2022-03-23 11:01:09 +0100 | [diff] [blame] | 601 | /* set the "timeout server" */ |
| 602 | s->req.wto = hc->timeout_server; |
| 603 | s->res.rto = hc->timeout_server; |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 604 | |
William Lallemand | 8533273 | 2022-05-04 10:59:51 +0200 | [diff] [blame] | 605 | if (doresolve) { |
| 606 | /* in order to do the set-dst we need to put the address on the front */ |
| 607 | s->csf->dst = addr; |
| 608 | } else { |
| 609 | /* in cases we don't use the resolve we already have the address |
| 610 | * and must put it on the backend side, some of the cases are |
| 611 | * not meant to be used on the frontend (sockpair, unix socket etc.) */ |
| 612 | s->csb->dst = addr; |
| 613 | } |
| 614 | |
| 615 | s->csb->flags |= CS_FL_NOLINGER; |
Willy Tarreau | 03bd395 | 2022-05-02 16:36:47 +0200 | [diff] [blame] | 616 | s->flags |= SF_ASSIGNED; |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 617 | s->res.flags |= CF_READ_DONTWAIT; |
| 618 | |
| 619 | /* applet is waiting for data */ |
Christopher Faulet | a0bdec3 | 2022-04-04 07:51:21 +0200 | [diff] [blame] | 620 | cs_cant_get(s->csf); |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 621 | appctx_wakeup(appctx); |
| 622 | |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 623 | hc->appctx = appctx; |
William Lallemand | b8b1370 | 2021-09-28 12:15:37 +0200 | [diff] [blame] | 624 | hc->flags |= HTTPCLIENT_FS_STARTED; |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 625 | appctx->ctx.httpclient.ptr = hc; |
Christopher Faulet | 6ced61d | 2022-01-12 15:27:41 +0100 | [diff] [blame] | 626 | |
| 627 | /* The request was transferred when the stream was created. So switch |
| 628 | * directly to REQ_BODY or RES_STLINE state |
| 629 | */ |
| 630 | appctx->st0 = (hc->ops.req_payload ? HTTPCLIENT_S_REQ_BODY : HTTPCLIENT_S_RES_STLINE); |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 631 | |
| 632 | return appctx; |
| 633 | |
Christopher Faulet | a9e8b39 | 2022-03-23 11:01:09 +0100 | [diff] [blame] | 634 | out_free_addr: |
| 635 | sockaddr_free(&addr); |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 636 | out_free_sess: |
| 637 | session_free(sess); |
| 638 | out_free_appctx: |
| 639 | appctx_free(appctx); |
| 640 | out: |
| 641 | |
| 642 | return NULL; |
| 643 | } |
| 644 | |
William Lallemand | ecb83e1 | 2021-09-28 11:00:43 +0200 | [diff] [blame] | 645 | /* |
| 646 | * This function tries to destroy the httpclient if it wasn't running. |
| 647 | * If it was running, stop the client and ask it to autodestroy itself. |
| 648 | * |
Ilya Shipitsin | bd6b4be | 2021-10-15 16:18:21 +0500 | [diff] [blame] | 649 | * Once this function is used, all pointer sto the client must be removed |
William Lallemand | ecb83e1 | 2021-09-28 11:00:43 +0200 | [diff] [blame] | 650 | * |
| 651 | */ |
| 652 | void httpclient_stop_and_destroy(struct httpclient *hc) |
| 653 | { |
| 654 | |
William Lallemand | b8b1370 | 2021-09-28 12:15:37 +0200 | [diff] [blame] | 655 | /* The httpclient was already stopped or never started, we can safely destroy it */ |
| 656 | if (hc->flags & HTTPCLIENT_FS_ENDED || !(hc->flags & HTTPCLIENT_FS_STARTED)) { |
William Lallemand | ecb83e1 | 2021-09-28 11:00:43 +0200 | [diff] [blame] | 657 | httpclient_destroy(hc); |
| 658 | } else { |
| 659 | /* if the client wasn't stopped, ask for a stop and destroy */ |
| 660 | hc->flags |= (HTTPCLIENT_FA_AUTOKILL | HTTPCLIENT_FA_STOP); |
| 661 | if (hc->appctx) |
| 662 | appctx_wakeup(hc->appctx); |
| 663 | } |
| 664 | } |
| 665 | |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 666 | /* Free the httpclient */ |
| 667 | void httpclient_destroy(struct httpclient *hc) |
| 668 | { |
William Lallemand | 03f5a1c | 2021-09-27 15:17:47 +0200 | [diff] [blame] | 669 | struct http_hdr *hdrs; |
| 670 | |
| 671 | |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 672 | if (!hc) |
| 673 | return; |
William Lallemand | ecb83e1 | 2021-09-28 11:00:43 +0200 | [diff] [blame] | 674 | |
William Lallemand | 2a87900 | 2021-10-05 15:50:45 +0200 | [diff] [blame] | 675 | /* we should never destroy a client which was started but not stopped */ |
| 676 | BUG_ON(httpclient_started(hc) && !httpclient_ended(hc)); |
William Lallemand | ecb83e1 | 2021-09-28 11:00:43 +0200 | [diff] [blame] | 677 | |
William Lallemand | 03f5a1c | 2021-09-27 15:17:47 +0200 | [diff] [blame] | 678 | /* request */ |
| 679 | istfree(&hc->req.url); |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 680 | b_free(&hc->req.buf); |
William Lallemand | 03f5a1c | 2021-09-27 15:17:47 +0200 | [diff] [blame] | 681 | /* response */ |
| 682 | istfree(&hc->res.vsn); |
| 683 | istfree(&hc->res.reason); |
| 684 | hdrs = hc->res.hdrs; |
| 685 | while (hdrs && isttest(hdrs->n)) { |
| 686 | istfree(&hdrs->n); |
| 687 | istfree(&hdrs->v); |
| 688 | hdrs++; |
| 689 | } |
| 690 | ha_free(&hc->res.hdrs); |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 691 | b_free(&hc->res.buf); |
William Lallemand | 7b2e0ee | 2022-02-17 19:10:55 +0100 | [diff] [blame] | 692 | sockaddr_free(&hc->dst); |
William Lallemand | 03f5a1c | 2021-09-27 15:17:47 +0200 | [diff] [blame] | 693 | |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 694 | free(hc); |
| 695 | |
| 696 | return; |
| 697 | } |
| 698 | |
| 699 | /* Allocate an httpclient and its buffers |
| 700 | * Return NULL on failure */ |
| 701 | struct httpclient *httpclient_new(void *caller, enum http_meth_t meth, struct ist url) |
| 702 | { |
| 703 | struct httpclient *hc; |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 704 | |
| 705 | hc = calloc(1, sizeof(*hc)); |
| 706 | if (!hc) |
| 707 | goto err; |
| 708 | |
Christopher Faulet | 600985d | 2022-01-12 11:14:08 +0100 | [diff] [blame] | 709 | hc->req.buf = BUF_NULL; |
| 710 | hc->res.buf = BUF_NULL; |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 711 | hc->caller = caller; |
William Lallemand | 67b7784 | 2021-11-10 16:57:25 +0100 | [diff] [blame] | 712 | hc->req.url = istdup(url); |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 713 | hc->req.meth = meth; |
| 714 | |
| 715 | return hc; |
| 716 | |
| 717 | err: |
| 718 | httpclient_destroy(hc); |
| 719 | return NULL; |
| 720 | } |
| 721 | |
| 722 | static void httpclient_applet_io_handler(struct appctx *appctx) |
| 723 | { |
| 724 | struct httpclient *hc = appctx->ctx.httpclient.ptr; |
Christopher Faulet | 908628c | 2022-03-25 16:43:49 +0100 | [diff] [blame] | 725 | struct conn_stream *cs = appctx->owner; |
| 726 | struct stream *s = __cs_strm(cs); |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 727 | struct channel *req = &s->req; |
| 728 | struct channel *res = &s->res; |
| 729 | struct htx_blk *blk = NULL; |
| 730 | struct htx *htx; |
William Lallemand | b702030 | 2021-08-20 11:24:13 +0200 | [diff] [blame] | 731 | struct htx_sl *sl = NULL; |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 732 | uint32_t hdr_num; |
William Lallemand | 2b7dc4e | 2022-02-24 16:55:41 +0100 | [diff] [blame] | 733 | uint32_t sz; |
William Lallemand | 933fe39 | 2021-11-04 09:45:58 +0100 | [diff] [blame] | 734 | int ret; |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 735 | |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 736 | while (1) { |
William Lallemand | ecb83e1 | 2021-09-28 11:00:43 +0200 | [diff] [blame] | 737 | |
| 738 | /* required to stop */ |
| 739 | if (hc->flags & HTTPCLIENT_FA_STOP) |
| 740 | goto end; |
| 741 | |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 742 | switch(appctx->st0) { |
| 743 | |
| 744 | case HTTPCLIENT_S_REQ: |
William Lallemand | db8a1f3 | 2021-11-08 16:55:14 +0100 | [diff] [blame] | 745 | /* we know that the buffer is empty here, since |
| 746 | * it's the first call, we can freely copy the |
| 747 | * request from the httpclient buffer */ |
William Lallemand | 933fe39 | 2021-11-04 09:45:58 +0100 | [diff] [blame] | 748 | ret = b_xfer(&req->buf, &hc->req.buf, b_data(&hc->req.buf)); |
William Lallemand | db8a1f3 | 2021-11-08 16:55:14 +0100 | [diff] [blame] | 749 | if (!ret) |
| 750 | goto more; |
William Lallemand | 933fe39 | 2021-11-04 09:45:58 +0100 | [diff] [blame] | 751 | |
Christopher Faulet | 600985d | 2022-01-12 11:14:08 +0100 | [diff] [blame] | 752 | if (!b_data(&hc->req.buf)) |
| 753 | b_free(&hc->req.buf); |
| 754 | |
William Lallemand | db8a1f3 | 2021-11-08 16:55:14 +0100 | [diff] [blame] | 755 | htx = htx_from_buf(&req->buf); |
William Lallemand | 933fe39 | 2021-11-04 09:45:58 +0100 | [diff] [blame] | 756 | if (!htx) |
| 757 | goto more; |
| 758 | |
William Lallemand | db8a1f3 | 2021-11-08 16:55:14 +0100 | [diff] [blame] | 759 | channel_add_input(req, htx->data); |
| 760 | |
William Lallemand | 933fe39 | 2021-11-04 09:45:58 +0100 | [diff] [blame] | 761 | if (htx->flags & HTX_FL_EOM) /* check if a body need to be added */ |
| 762 | appctx->st0 = HTTPCLIENT_S_RES_STLINE; |
| 763 | else |
| 764 | appctx->st0 = HTTPCLIENT_S_REQ_BODY; |
| 765 | |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 766 | goto more; /* we need to leave the IO handler once we wrote the request */ |
| 767 | break; |
William Lallemand | 0da616e | 2021-10-28 15:34:26 +0200 | [diff] [blame] | 768 | case HTTPCLIENT_S_REQ_BODY: |
| 769 | /* call the payload callback */ |
| 770 | { |
| 771 | if (hc->ops.req_payload) { |
William Lallemand | ccc7ee4 | 2022-03-18 17:57:15 +0100 | [diff] [blame] | 772 | struct htx *hc_htx; |
William Lallemand | 0da616e | 2021-10-28 15:34:26 +0200 | [diff] [blame] | 773 | |
William Lallemand | 0da616e | 2021-10-28 15:34:26 +0200 | [diff] [blame] | 774 | /* call the request callback */ |
| 775 | hc->ops.req_payload(hc); |
William Lallemand | db8a1f3 | 2021-11-08 16:55:14 +0100 | [diff] [blame] | 776 | |
William Lallemand | ccc7ee4 | 2022-03-18 17:57:15 +0100 | [diff] [blame] | 777 | hc_htx = htx_from_buf(&hc->req.buf); |
William Lallemand | db8a1f3 | 2021-11-08 16:55:14 +0100 | [diff] [blame] | 778 | htx = htx_from_buf(&req->buf); |
William Lallemand | db8a1f3 | 2021-11-08 16:55:14 +0100 | [diff] [blame] | 779 | |
William Lallemand | ccc7ee4 | 2022-03-18 17:57:15 +0100 | [diff] [blame] | 780 | if (htx_is_empty(hc_htx)) |
William Lallemand | db8a1f3 | 2021-11-08 16:55:14 +0100 | [diff] [blame] | 781 | goto more; |
Christopher Faulet | 600985d | 2022-01-12 11:14:08 +0100 | [diff] [blame] | 782 | |
William Lallemand | ccc7ee4 | 2022-03-18 17:57:15 +0100 | [diff] [blame] | 783 | if (htx_is_empty(htx)) { |
Christopher Faulet | dca3b5b | 2022-04-07 10:47:07 +0200 | [diff] [blame] | 784 | size_t data = hc_htx->data; |
| 785 | |
William Lallemand | ccc7ee4 | 2022-03-18 17:57:15 +0100 | [diff] [blame] | 786 | /* Here htx_to_buf() will set buffer data to 0 because |
| 787 | * the HTX is empty, and allow us to do an xfer. |
| 788 | */ |
| 789 | htx_to_buf(hc_htx, &hc->req.buf); |
| 790 | htx_to_buf(htx, &req->buf); |
William Lallemand | ccc7ee4 | 2022-03-18 17:57:15 +0100 | [diff] [blame] | 791 | b_xfer(&req->buf, &hc->req.buf, b_data(&hc->req.buf)); |
Christopher Faulet | dca3b5b | 2022-04-07 10:47:07 +0200 | [diff] [blame] | 792 | channel_add_input(req, data); |
William Lallemand | ccc7ee4 | 2022-03-18 17:57:15 +0100 | [diff] [blame] | 793 | } else { |
| 794 | struct htx_ret ret; |
Christopher Faulet | 600985d | 2022-01-12 11:14:08 +0100 | [diff] [blame] | 795 | |
Christopher Faulet | 6b4f1f6 | 2022-04-29 13:56:12 +0200 | [diff] [blame] | 796 | ret = htx_xfer_blks(htx, hc_htx, htx_used_space(hc_htx), HTX_BLK_UNUSED); |
William Lallemand | ccc7ee4 | 2022-03-18 17:57:15 +0100 | [diff] [blame] | 797 | channel_add_input(req, ret.ret); |
William Lallemand | db8a1f3 | 2021-11-08 16:55:14 +0100 | [diff] [blame] | 798 | |
William Lallemand | ccc7ee4 | 2022-03-18 17:57:15 +0100 | [diff] [blame] | 799 | /* we must copy the EOM if we empty the buffer */ |
| 800 | if (htx_is_empty(hc_htx)) { |
| 801 | htx->flags |= (hc_htx->flags & HTX_FL_EOM); |
| 802 | } |
| 803 | htx_to_buf(htx, &req->buf); |
| 804 | htx_to_buf(hc_htx, &hc->req.buf); |
| 805 | } |
| 806 | |
| 807 | |
| 808 | if (!b_data(&hc->req.buf)) |
| 809 | b_free(&hc->req.buf); |
William Lallemand | 0da616e | 2021-10-28 15:34:26 +0200 | [diff] [blame] | 810 | } |
| 811 | |
William Lallemand | db8a1f3 | 2021-11-08 16:55:14 +0100 | [diff] [blame] | 812 | htx = htx_from_buf(&req->buf); |
William Lallemand | 0da616e | 2021-10-28 15:34:26 +0200 | [diff] [blame] | 813 | if (!htx) |
| 814 | goto more; |
| 815 | |
| 816 | /* if the request contains the HTX_FL_EOM, we finished the request part. */ |
Christopher Faulet | 3d43324 | 2022-03-03 15:38:39 +0100 | [diff] [blame] | 817 | if (htx->flags & HTX_FL_EOM) { |
Christopher Faulet | 908628c | 2022-03-25 16:43:49 +0100 | [diff] [blame] | 818 | cs->endp->flags |= CS_EP_EOI; |
Christopher Faulet | 3d43324 | 2022-03-03 15:38:39 +0100 | [diff] [blame] | 819 | req->flags |= CF_EOI; |
William Lallemand | 0da616e | 2021-10-28 15:34:26 +0200 | [diff] [blame] | 820 | appctx->st0 = HTTPCLIENT_S_RES_STLINE; |
Christopher Faulet | 3d43324 | 2022-03-03 15:38:39 +0100 | [diff] [blame] | 821 | } |
William Lallemand | 0da616e | 2021-10-28 15:34:26 +0200 | [diff] [blame] | 822 | |
William Lallemand | 1eca894 | 2022-03-17 14:57:23 +0100 | [diff] [blame] | 823 | goto process_data; /* we need to leave the IO handler once we wrote the request */ |
William Lallemand | 0da616e | 2021-10-28 15:34:26 +0200 | [diff] [blame] | 824 | } |
| 825 | break; |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 826 | |
| 827 | case HTTPCLIENT_S_RES_STLINE: |
| 828 | /* copy the start line in the hc structure,then remove the htx block */ |
William Lallemand | a625b03 | 2022-03-17 14:45:46 +0100 | [diff] [blame] | 829 | if (!co_data(res)) |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 830 | goto more; |
| 831 | htx = htxbuf(&res->buf); |
| 832 | if (!htx) |
| 833 | goto more; |
William Lallemand | 97f69c6 | 2022-03-10 17:23:40 +0100 | [diff] [blame] | 834 | blk = htx_get_head_blk(htx); |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 835 | if (blk && (htx_get_blk_type(blk) == HTX_BLK_RES_SL)) |
| 836 | sl = htx_get_blk_ptr(htx, blk); |
| 837 | if (!sl || (!(sl->flags & HTX_SL_F_IS_RESP))) |
| 838 | goto more; |
| 839 | |
| 840 | /* copy the status line in the httpclient */ |
| 841 | hc->res.status = sl->info.res.status; |
| 842 | hc->res.vsn = istdup(htx_sl_res_vsn(sl)); |
| 843 | hc->res.reason = istdup(htx_sl_res_reason(sl)); |
William Lallemand | 2b7dc4e | 2022-02-24 16:55:41 +0100 | [diff] [blame] | 844 | sz = htx_get_blksz(blk); |
Christopher Faulet | 0055d56 | 2022-04-29 14:09:03 +0200 | [diff] [blame] | 845 | c_rew(res, sz); |
William Lallemand | 2b7dc4e | 2022-02-24 16:55:41 +0100 | [diff] [blame] | 846 | htx_remove_blk(htx, blk); |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 847 | /* caller callback */ |
| 848 | if (hc->ops.res_stline) |
| 849 | hc->ops.res_stline(hc); |
| 850 | |
| 851 | /* if there is no HTX data anymore and the EOM flag is |
| 852 | * set, leave (no body) */ |
| 853 | if (htx_is_empty(htx) && htx->flags & HTX_FL_EOM) |
| 854 | appctx->st0 = HTTPCLIENT_S_RES_END; |
| 855 | else |
| 856 | appctx->st0 = HTTPCLIENT_S_RES_HDR; |
| 857 | break; |
| 858 | |
| 859 | case HTTPCLIENT_S_RES_HDR: |
| 860 | /* first copy the headers in a local hdrs |
| 861 | * structure, once we the total numbers of the |
| 862 | * header we allocate the right size and copy |
| 863 | * them. The htx block of the headers are |
| 864 | * removed each time one is read */ |
| 865 | { |
| 866 | struct http_hdr hdrs[global.tune.max_http_hdr]; |
| 867 | |
William Lallemand | a625b03 | 2022-03-17 14:45:46 +0100 | [diff] [blame] | 868 | if (!co_data(res)) |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 869 | goto more; |
| 870 | htx = htxbuf(&res->buf); |
| 871 | if (!htx) |
| 872 | goto more; |
| 873 | |
| 874 | hdr_num = 0; |
Christopher Faulet | 534645d | 2022-04-29 13:44:46 +0200 | [diff] [blame] | 875 | blk = htx_get_head_blk(htx); |
| 876 | while (blk) { |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 877 | enum htx_blk_type type = htx_get_blk_type(blk); |
William Lallemand | 2b7dc4e | 2022-02-24 16:55:41 +0100 | [diff] [blame] | 878 | uint32_t sz = htx_get_blksz(blk); |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 879 | |
Christopher Faulet | 534645d | 2022-04-29 13:44:46 +0200 | [diff] [blame] | 880 | c_rew(res, sz); |
| 881 | blk = htx_remove_blk(htx, blk); |
William Lallemand | c020b25 | 2022-03-09 18:56:02 +0100 | [diff] [blame] | 882 | |
Christopher Faulet | 534645d | 2022-04-29 13:44:46 +0200 | [diff] [blame] | 883 | if (type == HTX_BLK_UNUSED) |
| 884 | continue; |
| 885 | else if (type == HTX_BLK_HDR) { |
William Lallemand | c020b25 | 2022-03-09 18:56:02 +0100 | [diff] [blame] | 886 | hdrs[hdr_num].n = istdup(htx_get_blk_name(htx, blk)); |
| 887 | hdrs[hdr_num].v = istdup(htx_get_blk_value(htx, blk)); |
William Lallemand | c020b25 | 2022-03-09 18:56:02 +0100 | [diff] [blame] | 888 | hdr_num++; |
| 889 | } |
Christopher Faulet | 534645d | 2022-04-29 13:44:46 +0200 | [diff] [blame] | 890 | else if (type == HTX_BLK_EOH) { |
| 891 | /* create a NULL end of array and leave the loop */ |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 892 | hdrs[hdr_num].n = IST_NULL; |
| 893 | hdrs[hdr_num].v = IST_NULL; |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 894 | break; |
| 895 | } |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 896 | } |
| 897 | |
William Lallemand | 0d6f779 | 2021-08-20 11:59:49 +0200 | [diff] [blame] | 898 | if (hdr_num) { |
| 899 | /* alloc and copy the headers in the httpclient struct */ |
| 900 | hc->res.hdrs = calloc((hdr_num + 1), sizeof(*hc->res.hdrs)); |
| 901 | if (!hc->res.hdrs) |
| 902 | goto end; |
| 903 | memcpy(hc->res.hdrs, hdrs, sizeof(struct http_hdr) * (hdr_num + 1)); |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 904 | |
William Lallemand | 0d6f779 | 2021-08-20 11:59:49 +0200 | [diff] [blame] | 905 | /* caller callback */ |
| 906 | if (hc->ops.res_headers) |
| 907 | hc->ops.res_headers(hc); |
| 908 | } |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 909 | |
| 910 | /* if there is no HTX data anymore and the EOM flag is |
| 911 | * set, leave (no body) */ |
William Lallemand | 1123dde | 2021-09-21 10:58:10 +0200 | [diff] [blame] | 912 | if (htx_is_empty(htx) && htx->flags & HTX_FL_EOM) { |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 913 | appctx->st0 = HTTPCLIENT_S_RES_END; |
William Lallemand | 1123dde | 2021-09-21 10:58:10 +0200 | [diff] [blame] | 914 | } else { |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 915 | appctx->st0 = HTTPCLIENT_S_RES_BODY; |
William Lallemand | 1123dde | 2021-09-21 10:58:10 +0200 | [diff] [blame] | 916 | } |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 917 | } |
| 918 | break; |
| 919 | |
| 920 | case HTTPCLIENT_S_RES_BODY: |
| 921 | /* |
| 922 | * The IO handler removes the htx blocks in the response buffer and |
| 923 | * push them in the hc->res.buf buffer in a raw format. |
| 924 | */ |
William Lallemand | a625b03 | 2022-03-17 14:45:46 +0100 | [diff] [blame] | 925 | if (!co_data(res)) |
William Lallemand | 2b7dc4e | 2022-02-24 16:55:41 +0100 | [diff] [blame] | 926 | goto more; |
| 927 | |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 928 | htx = htxbuf(&res->buf); |
| 929 | if (!htx || htx_is_empty(htx)) |
| 930 | goto more; |
| 931 | |
Christopher Faulet | 600985d | 2022-01-12 11:14:08 +0100 | [diff] [blame] | 932 | if (!b_alloc(&hc->res.buf)) |
| 933 | goto more; |
| 934 | |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 935 | if (b_full(&hc->res.buf)) |
Christopher Faulet | 600985d | 2022-01-12 11:14:08 +0100 | [diff] [blame] | 936 | goto process_data; |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 937 | |
| 938 | /* decapsule the htx data to raw data */ |
Christopher Faulet | 534645d | 2022-04-29 13:44:46 +0200 | [diff] [blame] | 939 | blk = htx_get_head_blk(htx); |
| 940 | while (blk) { |
William Lallemand | c8f1eb9 | 2022-03-09 11:58:51 +0100 | [diff] [blame] | 941 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 942 | size_t count = co_data(res); |
| 943 | uint32_t blksz = htx_get_blksz(blk); |
| 944 | uint32_t room = b_room(&hc->res.buf); |
| 945 | uint32_t vlen; |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 946 | |
William Lallemand | c8f1eb9 | 2022-03-09 11:58:51 +0100 | [diff] [blame] | 947 | /* we should try to copy the maximum output data in a block, which fit |
| 948 | * the destination buffer */ |
| 949 | vlen = MIN(count, blksz); |
| 950 | vlen = MIN(vlen, room); |
William Lallemand | 2b7dc4e | 2022-02-24 16:55:41 +0100 | [diff] [blame] | 951 | |
William Lallemand | c8f1eb9 | 2022-03-09 11:58:51 +0100 | [diff] [blame] | 952 | if (vlen == 0) |
William Lallemand | 2b7dc4e | 2022-02-24 16:55:41 +0100 | [diff] [blame] | 953 | goto process_data; |
| 954 | |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 955 | if (type == HTX_BLK_DATA) { |
| 956 | struct ist v = htx_get_blk_value(htx, blk); |
| 957 | |
William Lallemand | c8f1eb9 | 2022-03-09 11:58:51 +0100 | [diff] [blame] | 958 | __b_putblk(&hc->res.buf, v.ptr, vlen); |
| 959 | c_rew(res, vlen); |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 960 | |
William Lallemand | c8f1eb9 | 2022-03-09 11:58:51 +0100 | [diff] [blame] | 961 | if (vlen == blksz) |
Christopher Faulet | 534645d | 2022-04-29 13:44:46 +0200 | [diff] [blame] | 962 | blk = htx_remove_blk(htx, blk); |
William Lallemand | c8f1eb9 | 2022-03-09 11:58:51 +0100 | [diff] [blame] | 963 | else |
| 964 | htx_cut_data_blk(htx, blk, vlen); |
William Lallemand | 2b7dc4e | 2022-02-24 16:55:41 +0100 | [diff] [blame] | 965 | |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 966 | /* the data must be processed by the caller in the receive phase */ |
| 967 | if (hc->ops.res_payload) |
| 968 | hc->ops.res_payload(hc); |
William Lallemand | c8f1eb9 | 2022-03-09 11:58:51 +0100 | [diff] [blame] | 969 | |
| 970 | /* cannot copy everything, need to processs */ |
| 971 | if (vlen != blksz) |
| 972 | goto process_data; |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 973 | } else { |
William Lallemand | c8f1eb9 | 2022-03-09 11:58:51 +0100 | [diff] [blame] | 974 | if (vlen != blksz) |
| 975 | goto process_data; |
| 976 | |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 977 | /* remove any block which is not a data block */ |
William Lallemand | c8f1eb9 | 2022-03-09 11:58:51 +0100 | [diff] [blame] | 978 | c_rew(res, blksz); |
Christopher Faulet | 534645d | 2022-04-29 13:44:46 +0200 | [diff] [blame] | 979 | blk = htx_remove_blk(htx, blk); |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 980 | } |
| 981 | } |
William Lallemand | c8f1eb9 | 2022-03-09 11:58:51 +0100 | [diff] [blame] | 982 | |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 983 | /* if not finished, should be called again */ |
William Lallemand | c8f1eb9 | 2022-03-09 11:58:51 +0100 | [diff] [blame] | 984 | if (!(htx_is_empty(htx) && (htx->flags & HTX_FL_EOM))) |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 985 | goto more; |
| 986 | |
William Lallemand | c8f1eb9 | 2022-03-09 11:58:51 +0100 | [diff] [blame] | 987 | |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 988 | /* end of message, we should quit */ |
| 989 | appctx->st0 = HTTPCLIENT_S_RES_END; |
| 990 | break; |
| 991 | |
| 992 | case HTTPCLIENT_S_RES_END: |
| 993 | goto end; |
| 994 | break; |
| 995 | } |
| 996 | } |
| 997 | |
| 998 | process_data: |
| 999 | |
Christopher Faulet | a0bdec3 | 2022-04-04 07:51:21 +0200 | [diff] [blame] | 1000 | cs_rx_chan_rdy(cs); |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 1001 | |
| 1002 | return; |
| 1003 | more: |
| 1004 | /* There was not enough data in the response channel */ |
| 1005 | |
Christopher Faulet | a0bdec3 | 2022-04-04 07:51:21 +0200 | [diff] [blame] | 1006 | cs_rx_room_blk(cs); |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 1007 | |
| 1008 | if (appctx->st0 == HTTPCLIENT_S_RES_END) |
| 1009 | goto end; |
| 1010 | |
| 1011 | /* The state machine tries to handle as much data as possible, if there |
| 1012 | * isn't any data to handle and a shutdown is detected, let's stop |
| 1013 | * everything */ |
| 1014 | if ((req->flags & (CF_SHUTR|CF_SHUTR_NOW)) || |
William Lallemand | 58a81ae | 2022-03-17 15:14:15 +0100 | [diff] [blame] | 1015 | (res->flags & CF_SHUTW) || |
| 1016 | ((res->flags & CF_SHUTW_NOW) && channel_is_empty(res))) { |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 1017 | goto end; |
| 1018 | } |
| 1019 | return; |
| 1020 | |
| 1021 | end: |
Christopher Faulet | da098e6 | 2022-03-31 17:44:45 +0200 | [diff] [blame] | 1022 | cs_shutw(cs); |
| 1023 | cs_shutr(cs); |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 1024 | return; |
| 1025 | } |
| 1026 | |
| 1027 | static void httpclient_applet_release(struct appctx *appctx) |
| 1028 | { |
| 1029 | struct httpclient *hc = appctx->ctx.httpclient.ptr; |
| 1030 | |
William Lallemand | 1123dde | 2021-09-21 10:58:10 +0200 | [diff] [blame] | 1031 | /* mark the httpclient as ended */ |
William Lallemand | ecb83e1 | 2021-09-28 11:00:43 +0200 | [diff] [blame] | 1032 | hc->flags |= HTTPCLIENT_FS_ENDED; |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 1033 | /* the applet is leaving, remove the ptr so we don't try to call it |
| 1034 | * again from the caller */ |
| 1035 | hc->appctx = NULL; |
| 1036 | |
William Lallemand | eb0d4c4 | 2022-04-06 14:12:37 +0200 | [diff] [blame] | 1037 | if (hc->ops.res_end) |
| 1038 | hc->ops.res_end(hc); |
William Lallemand | ecb83e1 | 2021-09-28 11:00:43 +0200 | [diff] [blame] | 1039 | |
| 1040 | /* destroy the httpclient when set to autotokill */ |
| 1041 | if (hc->flags & HTTPCLIENT_FA_AUTOKILL) { |
| 1042 | httpclient_destroy(hc); |
| 1043 | } |
| 1044 | |
William Lallemand | 33b0d09 | 2021-08-13 16:05:53 +0200 | [diff] [blame] | 1045 | return; |
| 1046 | } |
| 1047 | |
| 1048 | /* HTTP client applet */ |
| 1049 | static struct applet httpclient_applet = { |
| 1050 | .obj_type = OBJ_TYPE_APPLET, |
| 1051 | .name = "<HTTPCLIENT>", |
| 1052 | .fct = httpclient_applet_io_handler, |
| 1053 | .release = httpclient_applet_release, |
| 1054 | }; |
| 1055 | |
William Lallemand | 5392ff6 | 2022-04-28 16:55:02 +0200 | [diff] [blame] | 1056 | |
| 1057 | static int httpclient_resolve_init() |
| 1058 | { |
| 1059 | struct act_rule *rule; |
| 1060 | int i; |
William Lallemand | 8a734cb | 2022-05-04 16:10:47 +0200 | [diff] [blame] | 1061 | char *do_resolve = NULL; |
| 1062 | char *http_rules[][11] = { |
William Lallemand | 5392ff6 | 2022-04-28 16:55:02 +0200 | [diff] [blame] | 1063 | { "set-var(txn.hc_ip)", "dst", "" }, |
William Lallemand | 8a734cb | 2022-05-04 16:10:47 +0200 | [diff] [blame] | 1064 | { do_resolve, "hdr(Host),lower", "if", "{", "var(txn.hc_ip)", "-m", "ip", "0.0.0.0", "}", "" }, |
William Lallemand | 5392ff6 | 2022-04-28 16:55:02 +0200 | [diff] [blame] | 1065 | { "return", "status", "503", "if", "{", "var(txn.hc_ip)", "-m", "ip", "0.0.0.0", "}", "" }, |
| 1066 | { "capture", "var(txn.hc_ip)", "len", "40", "" }, |
| 1067 | { "set-dst", "var(txn.hc_ip)", "" }, |
| 1068 | { "" } |
| 1069 | }; |
| 1070 | |
William Lallemand | 8a734cb | 2022-05-04 16:10:47 +0200 | [diff] [blame] | 1071 | if (!resolvers_id) |
| 1072 | resolvers_id = strdup("default"); |
| 1073 | |
William Lallemand | 7c5a7ef | 2022-05-04 15:59:44 +0200 | [diff] [blame] | 1074 | memprintf(&do_resolve, "do-resolve(txn.hc_ip,%s%s%s)", resolvers_id, resolvers_prefer ? "," : "", resolvers_prefer ? resolvers_prefer : ""); |
William Lallemand | 8a734cb | 2022-05-04 16:10:47 +0200 | [diff] [blame] | 1075 | http_rules[1][0] = do_resolve; |
| 1076 | |
William Lallemand | 7867f63 | 2022-05-05 19:02:59 +0200 | [diff] [blame] | 1077 | /* Try to create the default resolvers section */ |
| 1078 | resolvers_create_default(); |
| 1079 | |
William Lallemand | 8a734cb | 2022-05-04 16:10:47 +0200 | [diff] [blame] | 1080 | /* if the resolver does not exist and no hard_error was set, simply ignore resolving */ |
| 1081 | if (!find_resolvers_by_id(resolvers_id) && !hard_error_resolvers) { |
| 1082 | free(do_resolve); |
William Lallemand | 5392ff6 | 2022-04-28 16:55:02 +0200 | [diff] [blame] | 1083 | return 0; |
William Lallemand | 8a734cb | 2022-05-04 16:10:47 +0200 | [diff] [blame] | 1084 | } |
William Lallemand | 5392ff6 | 2022-04-28 16:55:02 +0200 | [diff] [blame] | 1085 | |
| 1086 | |
| 1087 | for (i = 0; *http_rules[i][0] != '\0'; i++) { |
| 1088 | rule = parse_http_req_cond((const char **)http_rules[i], "httpclient", 0, httpclient_proxy); |
| 1089 | if (!rule) { |
William Lallemand | 8a734cb | 2022-05-04 16:10:47 +0200 | [diff] [blame] | 1090 | free(do_resolve); |
William Lallemand | 5392ff6 | 2022-04-28 16:55:02 +0200 | [diff] [blame] | 1091 | ha_alert("Couldn't setup the httpclient resolver.\n"); |
| 1092 | return 1; |
| 1093 | } |
| 1094 | LIST_APPEND(&httpclient_proxy->http_req_rules, &rule->list); |
| 1095 | } |
| 1096 | |
William Lallemand | 8a734cb | 2022-05-04 16:10:47 +0200 | [diff] [blame] | 1097 | free(do_resolve); |
William Lallemand | 5392ff6 | 2022-04-28 16:55:02 +0200 | [diff] [blame] | 1098 | return 0; |
| 1099 | } |
| 1100 | |
| 1101 | |
| 1102 | |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1103 | /* |
| 1104 | * Initialize the proxy for the HTTP client with 2 servers, one for raw HTTP, |
| 1105 | * the other for HTTPS. |
| 1106 | */ |
William Lallemand | 2c8b084 | 2022-04-22 15:16:09 +0200 | [diff] [blame] | 1107 | static int httpclient_precheck() |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1108 | { |
William Lallemand | 85af49c | 2022-05-04 14:33:57 +0200 | [diff] [blame] | 1109 | int err_code = ERR_NONE; |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1110 | char *errmsg = NULL; |
| 1111 | |
William Lallemand | c6ceba3 | 2022-04-22 16:49:53 +0200 | [diff] [blame] | 1112 | if (global.mode & MODE_MWORKER_WAIT) |
William Lallemand | 85af49c | 2022-05-04 14:33:57 +0200 | [diff] [blame] | 1113 | return ERR_NONE; |
William Lallemand | c6ceba3 | 2022-04-22 16:49:53 +0200 | [diff] [blame] | 1114 | |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1115 | httpclient_proxy = alloc_new_proxy("<HTTPCLIENT>", PR_CAP_LISTEN|PR_CAP_INT, &errmsg); |
| 1116 | if (!httpclient_proxy) { |
William Lallemand | 85af49c | 2022-05-04 14:33:57 +0200 | [diff] [blame] | 1117 | memprintf(&errmsg, "couldn't allocate proxy."); |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1118 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1119 | goto err; |
| 1120 | } |
| 1121 | |
Willy Tarreau | 0e72e40 | 2021-08-20 10:23:12 +0200 | [diff] [blame] | 1122 | proxy_preset_defaults(httpclient_proxy); |
| 1123 | |
William Lallemand | ccc7ee4 | 2022-03-18 17:57:15 +0100 | [diff] [blame] | 1124 | httpclient_proxy->options |= PR_O_WREQ_BODY; |
William Lallemand | 71abad0 | 2022-03-17 15:24:28 +0100 | [diff] [blame] | 1125 | httpclient_proxy->retry_type |= PR_RE_CONN_FAILED | PR_RE_DISCONNECTED | PR_RE_TIMEOUT; |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1126 | httpclient_proxy->options2 |= PR_O2_INDEPSTR; |
| 1127 | httpclient_proxy->mode = PR_MODE_HTTP; |
| 1128 | httpclient_proxy->maxconn = 0; |
| 1129 | httpclient_proxy->accept = NULL; |
William Lallemand | 71abad0 | 2022-03-17 15:24:28 +0100 | [diff] [blame] | 1130 | httpclient_proxy->conn_retries = CONN_RETRIES; |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1131 | httpclient_proxy->timeout.client = TICK_ETERNITY; |
| 1132 | /* The HTTP Client use the "option httplog" with the global log server */ |
| 1133 | httpclient_proxy->conf.logformat_string = default_http_log_format; |
| 1134 | httpclient_proxy->http_needed = 1; |
| 1135 | |
| 1136 | /* clear HTTP server */ |
| 1137 | httpclient_srv_raw = new_server(httpclient_proxy); |
| 1138 | if (!httpclient_srv_raw) { |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1139 | memprintf(&errmsg, "out of memory."); |
William Lallemand | 85af49c | 2022-05-04 14:33:57 +0200 | [diff] [blame] | 1140 | err_code |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1141 | goto err; |
| 1142 | } |
| 1143 | |
| 1144 | httpclient_srv_raw->iweight = 0; |
| 1145 | httpclient_srv_raw->uweight = 0; |
| 1146 | httpclient_srv_raw->xprt = xprt_get(XPRT_RAW); |
William Lallemand | 1218d19 | 2022-05-03 14:09:06 +0200 | [diff] [blame] | 1147 | httpclient_srv_raw->flags |= SRV_F_MAPPORTS; /* needed to apply the port change with resolving */ |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1148 | httpclient_srv_raw->id = strdup("<HTTPCLIENT>"); |
William Lallemand | 85af49c | 2022-05-04 14:33:57 +0200 | [diff] [blame] | 1149 | if (!httpclient_srv_raw->id) { |
| 1150 | memprintf(&errmsg, "out of memory."); |
| 1151 | err_code |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1152 | goto err; |
William Lallemand | 85af49c | 2022-05-04 14:33:57 +0200 | [diff] [blame] | 1153 | } |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1154 | |
William Lallemand | 957ab13 | 2021-08-24 18:33:28 +0200 | [diff] [blame] | 1155 | #ifdef USE_OPENSSL |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1156 | /* SSL HTTP server */ |
| 1157 | httpclient_srv_ssl = new_server(httpclient_proxy); |
| 1158 | if (!httpclient_srv_ssl) { |
| 1159 | memprintf(&errmsg, "out of memory."); |
| 1160 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1161 | goto err; |
| 1162 | } |
| 1163 | httpclient_srv_ssl->iweight = 0; |
| 1164 | httpclient_srv_ssl->uweight = 0; |
| 1165 | httpclient_srv_ssl->xprt = xprt_get(XPRT_SSL); |
| 1166 | httpclient_srv_ssl->use_ssl = 1; |
William Lallemand | 1218d19 | 2022-05-03 14:09:06 +0200 | [diff] [blame] | 1167 | httpclient_srv_ssl->flags |= SRV_F_MAPPORTS; /* needed to apply the port change with resolving */ |
William Lallemand | 211c967 | 2021-08-24 17:18:13 +0200 | [diff] [blame] | 1168 | httpclient_srv_ssl->id = strdup("<HTTPSCLIENT>"); |
William Lallemand | 85af49c | 2022-05-04 14:33:57 +0200 | [diff] [blame] | 1169 | if (!httpclient_srv_ssl->id) { |
| 1170 | memprintf(&errmsg, "out of memory."); |
| 1171 | err_code |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1172 | goto err; |
William Lallemand | 85af49c | 2022-05-04 14:33:57 +0200 | [diff] [blame] | 1173 | } |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1174 | |
William Lallemand | eaa703e | 2022-04-22 17:52:33 +0200 | [diff] [blame] | 1175 | httpclient_srv_ssl->ssl_ctx.verify = httpclient_ssl_verify; |
William Lallemand | 4006b0f | 2022-04-25 18:23:35 +0200 | [diff] [blame] | 1176 | /* if the verify is required, try to load the system CA */ |
William Lallemand | eaa703e | 2022-04-22 17:52:33 +0200 | [diff] [blame] | 1177 | if (httpclient_ssl_verify == SSL_SOCK_VERIFY_REQUIRED) { |
William Lallemand | 683fbb8 | 2022-05-04 15:43:01 +0200 | [diff] [blame] | 1178 | |
| 1179 | if (!httpclient_ssl_ca_file) |
| 1180 | httpclient_ssl_ca_file = strdup("@system-ca"); |
| 1181 | |
| 1182 | httpclient_srv_ssl->ssl_ctx.ca_file = httpclient_ssl_ca_file; |
William Lallemand | 4006b0f | 2022-04-25 18:23:35 +0200 | [diff] [blame] | 1183 | if (!ssl_store_load_locations_file(httpclient_srv_ssl->ssl_ctx.ca_file, 1, CAFILE_CERT)) { |
William Lallemand | 6fce46a | 2022-05-04 14:53:41 +0200 | [diff] [blame] | 1184 | /* if we failed to load the ca-file, only quits in |
| 1185 | * error with hard_error, otherwise just disable the |
| 1186 | * feature. */ |
| 1187 | if (hard_error_ssl) { |
| 1188 | memprintf(&errmsg, "cannot initialize SSL verify with 'ca-file \"%s\"'.", httpclient_srv_ssl->ssl_ctx.ca_file); |
| 1189 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1190 | goto err; |
| 1191 | } else { |
| 1192 | ha_free(&httpclient_srv_ssl->ssl_ctx.ca_file); |
| 1193 | srv_drop(httpclient_srv_ssl); |
| 1194 | httpclient_srv_ssl = NULL; |
| 1195 | } |
William Lallemand | 4006b0f | 2022-04-25 18:23:35 +0200 | [diff] [blame] | 1196 | } |
William Lallemand | eaa703e | 2022-04-22 17:52:33 +0200 | [diff] [blame] | 1197 | } |
William Lallemand | cf5cb0b | 2022-04-22 14:48:45 +0200 | [diff] [blame] | 1198 | |
William Lallemand | 957ab13 | 2021-08-24 18:33:28 +0200 | [diff] [blame] | 1199 | #endif |
William Lallemand | cfcbe9e | 2021-08-24 17:15:58 +0200 | [diff] [blame] | 1200 | |
Ilya Shipitsin | bd6b4be | 2021-10-15 16:18:21 +0500 | [diff] [blame] | 1201 | /* add the proxy in the proxy list only if everything is successful */ |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1202 | httpclient_proxy->next = proxies_list; |
| 1203 | proxies_list = httpclient_proxy; |
| 1204 | |
William Lallemand | 85af49c | 2022-05-04 14:33:57 +0200 | [diff] [blame] | 1205 | if (httpclient_resolve_init() != 0) { |
| 1206 | memprintf(&errmsg, "cannot initialize resolvers."); |
| 1207 | err_code |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 5392ff6 | 2022-04-28 16:55:02 +0200 | [diff] [blame] | 1208 | goto err; |
William Lallemand | 85af49c | 2022-05-04 14:33:57 +0200 | [diff] [blame] | 1209 | } |
William Lallemand | 5392ff6 | 2022-04-28 16:55:02 +0200 | [diff] [blame] | 1210 | |
William Lallemand | 211c967 | 2021-08-24 17:18:13 +0200 | [diff] [blame] | 1211 | /* link the 2 servers in the proxy */ |
| 1212 | httpclient_srv_raw->next = httpclient_proxy->srv; |
William Lallemand | 957ab13 | 2021-08-24 18:33:28 +0200 | [diff] [blame] | 1213 | httpclient_proxy->srv = httpclient_srv_raw; |
| 1214 | |
| 1215 | #ifdef USE_OPENSSL |
William Lallemand | 4006b0f | 2022-04-25 18:23:35 +0200 | [diff] [blame] | 1216 | if (httpclient_srv_ssl) { |
| 1217 | httpclient_srv_ssl->next = httpclient_proxy->srv; |
| 1218 | httpclient_proxy->srv = httpclient_srv_ssl; |
| 1219 | } |
William Lallemand | 957ab13 | 2021-08-24 18:33:28 +0200 | [diff] [blame] | 1220 | #endif |
| 1221 | |
William Lallemand | 211c967 | 2021-08-24 17:18:13 +0200 | [diff] [blame] | 1222 | |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1223 | err: |
William Lallemand | 85af49c | 2022-05-04 14:33:57 +0200 | [diff] [blame] | 1224 | if (err_code & ERR_CODE) { |
| 1225 | ha_alert("httpclient: cannot initialize: %s\n", errmsg); |
| 1226 | free(errmsg); |
| 1227 | srv_drop(httpclient_srv_raw); |
William Lallemand | 957ab13 | 2021-08-24 18:33:28 +0200 | [diff] [blame] | 1228 | #ifdef USE_OPENSSL |
William Lallemand | 85af49c | 2022-05-04 14:33:57 +0200 | [diff] [blame] | 1229 | srv_drop(httpclient_srv_ssl); |
William Lallemand | 957ab13 | 2021-08-24 18:33:28 +0200 | [diff] [blame] | 1230 | #endif |
William Lallemand | 85af49c | 2022-05-04 14:33:57 +0200 | [diff] [blame] | 1231 | free_proxy(httpclient_proxy); |
| 1232 | } |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1233 | return err_code; |
| 1234 | } |
| 1235 | |
William Lallemand | 2c8b084 | 2022-04-22 15:16:09 +0200 | [diff] [blame] | 1236 | static int httpclient_postcheck() |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1237 | { |
William Lallemand | 85af49c | 2022-05-04 14:33:57 +0200 | [diff] [blame] | 1238 | int err_code = ERR_NONE; |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1239 | struct logsrv *logsrv; |
| 1240 | struct proxy *curproxy = httpclient_proxy; |
William Lallemand | 71e3158 | 2022-03-16 15:47:47 +0100 | [diff] [blame] | 1241 | char *errmsg = NULL; |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1242 | |
William Lallemand | c6ceba3 | 2022-04-22 16:49:53 +0200 | [diff] [blame] | 1243 | if (global.mode & MODE_MWORKER_WAIT) |
William Lallemand | 85af49c | 2022-05-04 14:33:57 +0200 | [diff] [blame] | 1244 | return ERR_NONE; |
William Lallemand | c6ceba3 | 2022-04-22 16:49:53 +0200 | [diff] [blame] | 1245 | |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1246 | /* copy logs from "global" log list */ |
| 1247 | list_for_each_entry(logsrv, &global.logsrvs, list) { |
| 1248 | struct logsrv *node = malloc(sizeof(*node)); |
| 1249 | |
| 1250 | if (!node) { |
William Lallemand | 85af49c | 2022-05-04 14:33:57 +0200 | [diff] [blame] | 1251 | memprintf(&errmsg, "out of memory."); |
| 1252 | err_code |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1253 | goto err; |
| 1254 | } |
| 1255 | |
| 1256 | memcpy(node, logsrv, sizeof(*node)); |
| 1257 | LIST_INIT(&node->list); |
| 1258 | LIST_APPEND(&curproxy->logsrvs, &node->list); |
Willy Tarreau | e1e9f6b | 2022-04-21 14:14:28 +0200 | [diff] [blame] | 1259 | node->ring_name = logsrv->ring_name ? strdup(logsrv->ring_name) : NULL; |
| 1260 | node->conf.file = logsrv->conf.file ? strdup(logsrv->conf.file) : NULL; |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1261 | } |
| 1262 | if (curproxy->conf.logformat_string) { |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1263 | curproxy->conf.args.ctx = ARGC_LOG; |
| 1264 | if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat, |
| 1265 | LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES, |
William Lallemand | 715c101 | 2022-03-16 16:39:23 +0100 | [diff] [blame] | 1266 | SMP_VAL_FE_LOG_END, &errmsg)) { |
William Lallemand | 85af49c | 2022-05-04 14:33:57 +0200 | [diff] [blame] | 1267 | memprintf(&errmsg, "failed to parse log-format : %s.", errmsg); |
| 1268 | err_code |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1269 | goto err; |
| 1270 | } |
| 1271 | curproxy->conf.args.file = NULL; |
| 1272 | curproxy->conf.args.line = 0; |
| 1273 | } |
William Lallemand | 71e3158 | 2022-03-16 15:47:47 +0100 | [diff] [blame] | 1274 | |
| 1275 | #ifdef USE_OPENSSL |
William Lallemand | 4006b0f | 2022-04-25 18:23:35 +0200 | [diff] [blame] | 1276 | if (httpclient_srv_ssl) { |
William Lallemand | 715c101 | 2022-03-16 16:39:23 +0100 | [diff] [blame] | 1277 | /* init the SNI expression */ |
| 1278 | /* always use the host header as SNI, without the port */ |
| 1279 | httpclient_srv_ssl->sni_expr = strdup("req.hdr(host),field(1,:)"); |
| 1280 | err_code |= server_parse_sni_expr(httpclient_srv_ssl, httpclient_proxy, &errmsg); |
| 1281 | if (err_code & ERR_CODE) { |
William Lallemand | 85af49c | 2022-05-04 14:33:57 +0200 | [diff] [blame] | 1282 | memprintf(&errmsg, "failed to configure sni: %s.", errmsg); |
William Lallemand | 715c101 | 2022-03-16 16:39:23 +0100 | [diff] [blame] | 1283 | goto err; |
| 1284 | } |
William Lallemand | 71e3158 | 2022-03-16 15:47:47 +0100 | [diff] [blame] | 1285 | } |
| 1286 | #endif |
| 1287 | |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1288 | err: |
William Lallemand | 85af49c | 2022-05-04 14:33:57 +0200 | [diff] [blame] | 1289 | if (err_code & ERR_CODE) { |
| 1290 | ha_alert("httpclient: failed to initialize: %s\n", errmsg); |
| 1291 | free(errmsg); |
| 1292 | |
| 1293 | } |
| 1294 | return err_code; |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1295 | } |
| 1296 | |
William Lallemand | 83614a9 | 2021-08-13 14:47:57 +0200 | [diff] [blame] | 1297 | /* initialize the proxy and servers for the HTTP client */ |
| 1298 | |
William Lallemand | 2c8b084 | 2022-04-22 15:16:09 +0200 | [diff] [blame] | 1299 | REGISTER_PRE_CHECK(httpclient_precheck); |
| 1300 | REGISTER_POST_CHECK(httpclient_postcheck); |
William Lallemand | eaa703e | 2022-04-22 17:52:33 +0200 | [diff] [blame] | 1301 | |
William Lallemand | 8a734cb | 2022-05-04 16:10:47 +0200 | [diff] [blame] | 1302 | static int httpclient_parse_global_resolvers(char **args, int section_type, struct proxy *curpx, |
| 1303 | const struct proxy *defpx, const char *file, int line, |
| 1304 | char **err) |
| 1305 | { |
| 1306 | if (too_many_args(1, args, err, NULL)) |
| 1307 | return -1; |
| 1308 | |
| 1309 | /* any configuration should set the hard_error flag */ |
| 1310 | hard_error_resolvers = 1; |
| 1311 | |
| 1312 | free(resolvers_id); |
| 1313 | resolvers_id = strdup(args[1]); |
| 1314 | |
| 1315 | return 0; |
| 1316 | } |
| 1317 | |
William Lallemand | 7c5a7ef | 2022-05-04 15:59:44 +0200 | [diff] [blame] | 1318 | static int httpclient_parse_global_prefer(char **args, int section_type, struct proxy *curpx, |
| 1319 | const struct proxy *defpx, const char *file, int line, |
| 1320 | char **err) |
| 1321 | { |
| 1322 | if (too_many_args(1, args, err, NULL)) |
| 1323 | return -1; |
| 1324 | |
| 1325 | /* any configuration should set the hard_error flag */ |
| 1326 | hard_error_resolvers = 1; |
| 1327 | |
| 1328 | |
| 1329 | if (strcmp(args[1],"ipv4") == 0) |
| 1330 | resolvers_prefer = "ipv4"; |
| 1331 | else if (strcmp(args[1],"ipv6") == 0) |
| 1332 | resolvers_prefer = "ipv6"; |
| 1333 | else { |
| 1334 | ha_alert("parsing [%s:%d] : '%s' expects 'ipv4' or 'ipv6' as argument.\n", file, line, args[0]); |
| 1335 | return -1; |
| 1336 | } |
| 1337 | |
| 1338 | return 0; |
| 1339 | } |
William Lallemand | 8a734cb | 2022-05-04 16:10:47 +0200 | [diff] [blame] | 1340 | |
| 1341 | |
William Lallemand | eaa703e | 2022-04-22 17:52:33 +0200 | [diff] [blame] | 1342 | #ifdef USE_OPENSSL |
William Lallemand | 683fbb8 | 2022-05-04 15:43:01 +0200 | [diff] [blame] | 1343 | static int httpclient_parse_global_ca_file(char **args, int section_type, struct proxy *curpx, |
| 1344 | const struct proxy *defpx, const char *file, int line, |
| 1345 | char **err) |
| 1346 | { |
| 1347 | if (too_many_args(1, args, err, NULL)) |
| 1348 | return -1; |
| 1349 | |
| 1350 | /* any configuration should set the hard_error flag */ |
| 1351 | hard_error_ssl = 1; |
| 1352 | |
| 1353 | free(httpclient_ssl_ca_file); |
| 1354 | httpclient_ssl_ca_file = strdup(args[1]); |
| 1355 | |
| 1356 | return 0; |
| 1357 | } |
| 1358 | |
William Lallemand | eaa703e | 2022-04-22 17:52:33 +0200 | [diff] [blame] | 1359 | static int httpclient_parse_global_verify(char **args, int section_type, struct proxy *curpx, |
| 1360 | const struct proxy *defpx, const char *file, int line, |
| 1361 | char **err) |
| 1362 | { |
| 1363 | if (too_many_args(1, args, err, NULL)) |
| 1364 | return -1; |
| 1365 | |
William Lallemand | 6fce46a | 2022-05-04 14:53:41 +0200 | [diff] [blame] | 1366 | /* any configuration should set the hard_error flag */ |
| 1367 | hard_error_ssl = 1; |
| 1368 | |
William Lallemand | eaa703e | 2022-04-22 17:52:33 +0200 | [diff] [blame] | 1369 | if (strcmp(args[1],"none") == 0) |
William Lallemand | 04994de | 2022-04-28 19:35:21 +0200 | [diff] [blame] | 1370 | httpclient_ssl_verify = SSL_SOCK_VERIFY_NONE; |
William Lallemand | eaa703e | 2022-04-22 17:52:33 +0200 | [diff] [blame] | 1371 | else if (strcmp(args[1],"required") == 0) |
William Lallemand | 04994de | 2022-04-28 19:35:21 +0200 | [diff] [blame] | 1372 | httpclient_ssl_verify = SSL_SOCK_VERIFY_REQUIRED; |
William Lallemand | eaa703e | 2022-04-22 17:52:33 +0200 | [diff] [blame] | 1373 | else { |
| 1374 | ha_alert("parsing [%s:%d] : '%s' expects 'none' or 'required' as argument.\n", file, line, args[0]); |
| 1375 | return -1; |
| 1376 | } |
| 1377 | |
| 1378 | return 0; |
| 1379 | } |
William Lallemand | 8a734cb | 2022-05-04 16:10:47 +0200 | [diff] [blame] | 1380 | #endif /* ! USE_OPENSSL */ |
William Lallemand | eaa703e | 2022-04-22 17:52:33 +0200 | [diff] [blame] | 1381 | |
| 1382 | static struct cfg_kw_list cfg_kws = {ILH, { |
William Lallemand | 8a734cb | 2022-05-04 16:10:47 +0200 | [diff] [blame] | 1383 | { CFG_GLOBAL, "httpclient.resolvers.id", httpclient_parse_global_resolvers }, |
William Lallemand | 7c5a7ef | 2022-05-04 15:59:44 +0200 | [diff] [blame] | 1384 | { CFG_GLOBAL, "httpclient.resolvers.prefer", httpclient_parse_global_prefer }, |
William Lallemand | 8a734cb | 2022-05-04 16:10:47 +0200 | [diff] [blame] | 1385 | #ifdef USE_OPENSSL |
William Lallemand | 9ff95e2 | 2022-05-04 13:52:29 +0200 | [diff] [blame] | 1386 | { CFG_GLOBAL, "httpclient.ssl.verify", httpclient_parse_global_verify }, |
William Lallemand | 683fbb8 | 2022-05-04 15:43:01 +0200 | [diff] [blame] | 1387 | { CFG_GLOBAL, "httpclient.ssl.ca-file", httpclient_parse_global_ca_file }, |
William Lallemand | 8a734cb | 2022-05-04 16:10:47 +0200 | [diff] [blame] | 1388 | #endif |
William Lallemand | eaa703e | 2022-04-22 17:52:33 +0200 | [diff] [blame] | 1389 | { 0, NULL, NULL }, |
| 1390 | }}; |
| 1391 | |
| 1392 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |