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