blob: 4696dec7ca49192e0848bd2e9dda54c584f12e53 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Proxy variables and functions.
3 *
Willy Tarreau3a7d2072009-03-05 23:48:25 +01004 * Copyright 2000-2009 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
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 */
12
Willy Tarreaubaaee002006-06-26 02:48:02 +020013#include <unistd.h>
Willy Tarreauc8f24f82007-11-30 18:38:35 +010014#include <string.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020015#include <sys/types.h>
16#include <sys/socket.h>
17#include <sys/stat.h>
18
Willy Tarreaub2551052020-06-09 09:07:15 +020019#include <import/eb32tree.h>
20#include <import/ebistree.h>
21
Amaury Denoyelle27fefa12021-03-24 16:13:20 +010022#include <haproxy/acl.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020023#include <haproxy/api.h>
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +020024#include <haproxy/applet.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020025#include <haproxy/capture-t.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020026#include <haproxy/cfgparse.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020027#include <haproxy/cli.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020028#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020029#include <haproxy/fd.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020030#include <haproxy/filters.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020031#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020032#include <haproxy/http_ana.h>
Willy Tarreau76838932021-02-12 08:49:47 +010033#include <haproxy/http_htx.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020034#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020035#include <haproxy/log.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020036#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020037#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020038#include <haproxy/pool.h>
Willy Tarreau626f3a72020-10-07 16:52:43 +020039#include <haproxy/protocol.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020040#include <haproxy/proto_tcp.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020041#include <haproxy/proxy.h>
Willy Tarreau5edca2f2022-05-27 09:25:10 +020042#include <haproxy/sc_strm.h>
Frédéric Lécaille748ece62022-05-21 23:58:40 +020043#include <haproxy/quic_tp.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020044#include <haproxy/server-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020045#include <haproxy/signal.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020046#include <haproxy/stats-t.h>
Willy Tarreaucb086c62022-05-27 09:47:12 +020047#include <haproxy/stconn.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020048#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020049#include <haproxy/task.h>
Willy Tarreau76838932021-02-12 08:49:47 +010050#include <haproxy/tcpcheck.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020051#include <haproxy/time.h>
Willy Tarreaue6844832021-05-08 13:02:07 +020052#include <haproxy/tools.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020053
Willy Tarreaubaaee002006-06-26 02:48:02 +020054
Willy Tarreau918ff602011-07-25 16:33:49 +020055int listeners; /* # of proxy listeners, set by cfgparse */
Olivier Houchardfbc74e82017-11-24 16:54:05 +010056struct proxy *proxies_list = NULL; /* list of all existing proxies */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +020057struct eb_root used_proxy_id = EB_ROOT; /* list of proxy IDs in use */
Willy Tarreauf79d9502014-03-15 07:22:35 +010058struct eb_root proxy_by_name = EB_ROOT; /* tree of proxies sorted by name */
Willy Tarreau0a0f6a72021-02-12 13:52:11 +010059struct eb_root defproxy_by_name = EB_ROOT; /* tree of default proxies sorted by name (dups possible) */
Willy Tarreau10479e42010-12-12 14:00:34 +010060unsigned int error_snapshot_id = 0; /* global ID assigned to each error then incremented */
Willy Tarreaubaaee002006-06-26 02:48:02 +020061
Willy Tarreau72a04232022-05-05 17:00:20 +020062/* CLI context used during "show servers {state|conn}" */
63struct show_srv_ctx {
64 struct proxy *px; /* current proxy to dump or NULL */
65 struct server *sv; /* current server to dump or NULL */
66 uint only_pxid; /* dump only this proxy ID when explicit */
67 int show_conn; /* non-zero = "conn" otherwise "state" */
Willy Tarreaud741e9c2022-05-05 19:26:18 +020068 enum {
69 SHOW_SRV_HEAD = 0,
70 SHOW_SRV_LIST,
71 } state;
Willy Tarreau72a04232022-05-05 17:00:20 +020072};
73
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010074/* proxy->options */
75const struct cfg_opt cfg_opts[] =
76{
77 { "abortonclose", PR_O_ABRT_CLOSE, PR_CAP_BE, 0, 0 },
78 { "allbackups", PR_O_USE_ALL_BK, PR_CAP_BE, 0, 0 },
79 { "checkcache", PR_O_CHK_CACHE, PR_CAP_BE, 0, PR_MODE_HTTP },
80 { "clitcpka", PR_O_TCP_CLI_KA, PR_CAP_FE, 0, 0 },
81 { "contstats", PR_O_CONTSTATS, PR_CAP_FE, 0, 0 },
82 { "dontlognull", PR_O_NULLNOLOG, PR_CAP_FE, 0, 0 },
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010083 { "http-buffer-request", PR_O_WREQ_BODY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP },
84 { "http-ignore-probes", PR_O_IGNORE_PRB, PR_CAP_FE, 0, PR_MODE_HTTP },
William Dauchya9dd9012022-01-05 22:53:24 +010085 { "idle-close-on-response", PR_O_IDLE_CLOSE_RESP, PR_CAP_FE, 0, PR_MODE_HTTP },
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010086 { "prefer-last-server", PR_O_PREF_LAST, PR_CAP_BE, 0, PR_MODE_HTTP },
87 { "logasap", PR_O_LOGASAP, PR_CAP_FE, 0, 0 },
88 { "nolinger", PR_O_TCP_NOLING, PR_CAP_FE | PR_CAP_BE, 0, 0 },
89 { "persist", PR_O_PERSIST, PR_CAP_BE, 0, 0 },
90 { "srvtcpka", PR_O_TCP_SRV_KA, PR_CAP_BE, 0, 0 },
Willy Tarreaue5733232019-05-22 19:24:06 +020091#ifdef USE_TPROXY
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010092 { "transparent", PR_O_TRANSP, PR_CAP_BE, 0, 0 },
93#else
94 { "transparent", 0, 0, 0, 0 },
95#endif
96
97 { NULL, 0, 0, 0, 0 }
98};
99
100/* proxy->options2 */
101const struct cfg_opt cfg_opts2[] =
102{
Willy Tarreaue5733232019-05-22 19:24:06 +0200103#ifdef USE_LINUX_SPLICE
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100104 { "splice-request", PR_O2_SPLIC_REQ, PR_CAP_FE|PR_CAP_BE, 0, 0 },
105 { "splice-response", PR_O2_SPLIC_RTR, PR_CAP_FE|PR_CAP_BE, 0, 0 },
106 { "splice-auto", PR_O2_SPLIC_AUT, PR_CAP_FE|PR_CAP_BE, 0, 0 },
107#else
108 { "splice-request", 0, 0, 0, 0 },
109 { "splice-response", 0, 0, 0, 0 },
110 { "splice-auto", 0, 0, 0, 0 },
111#endif
112 { "accept-invalid-http-request", PR_O2_REQBUG_OK, PR_CAP_FE, 0, PR_MODE_HTTP },
113 { "accept-invalid-http-response", PR_O2_RSPBUG_OK, PR_CAP_BE, 0, PR_MODE_HTTP },
114 { "dontlog-normal", PR_O2_NOLOGNORM, PR_CAP_FE, 0, 0 },
115 { "log-separate-errors", PR_O2_LOGERRORS, PR_CAP_FE, 0, 0 },
116 { "log-health-checks", PR_O2_LOGHCHKS, PR_CAP_BE, 0, 0 },
117 { "socket-stats", PR_O2_SOCKSTAT, PR_CAP_FE, 0, 0 },
118 { "tcp-smart-accept", PR_O2_SMARTACC, PR_CAP_FE, 0, 0 },
119 { "tcp-smart-connect", PR_O2_SMARTCON, PR_CAP_BE, 0, 0 },
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100120 { "independent-streams", PR_O2_INDEPSTR, PR_CAP_FE|PR_CAP_BE, 0, 0 },
121 { "http-use-proxy-header", PR_O2_USE_PXHDR, PR_CAP_FE, 0, PR_MODE_HTTP },
122 { "http-pretend-keepalive", PR_O2_FAKE_KA, PR_CAP_BE, 0, PR_MODE_HTTP },
123 { "http-no-delay", PR_O2_NODELAY, PR_CAP_FE|PR_CAP_BE, 0, PR_MODE_HTTP },
Christopher Faulet98fbe952019-07-22 16:18:24 +0200124
Christopher Fauleta9e934b2022-09-06 10:09:40 +0200125 {"h1-case-adjust-bogus-client", PR_O2_H1_ADJ_BUGCLI, PR_CAP_FE, 0, 0 },
126 {"h1-case-adjust-bogus-server", PR_O2_H1_ADJ_BUGSRV, PR_CAP_BE, 0, 0 },
Christopher Faulet89aed322020-06-02 17:33:56 +0200127 {"disable-h2-upgrade", PR_O2_NO_H2_UPGRADE, PR_CAP_FE, 0, PR_MODE_HTTP },
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100128 { NULL, 0, 0, 0 }
129};
130
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100131static void free_stick_rules(struct list *rules)
132{
133 struct sticking_rule *rule, *ruleb;
134
135 list_for_each_entry_safe(rule, ruleb, rules, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200136 LIST_DELETE(&rule->list);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100137 free_acl_cond(rule->cond);
138 release_sample_expr(rule->expr);
139 free(rule);
140 }
141}
142
143void free_proxy(struct proxy *p)
144{
Amaury Denoyellef5c1e122021-08-25 15:03:46 +0200145 struct server *s;
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100146 struct cap_hdr *h,*h_next;
147 struct listener *l,*l_next;
148 struct bind_conf *bind_conf, *bind_back;
149 struct acl_cond *cond, *condb;
150 struct acl *acl, *aclb;
151 struct server_rule *srule, *sruleb;
152 struct switching_rule *rule, *ruleb;
153 struct redirect_rule *rdr, *rdrb;
154 struct logsrv *log, *logb;
155 struct logformat_node *lf, *lfb;
156 struct proxy_deinit_fct *pxdf;
157 struct server_deinit_fct *srvdf;
158
William Lallemandb0281a42021-08-20 10:16:37 +0200159 if (!p)
160 return;
161
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100162 free(p->conf.file);
163 free(p->id);
164 free(p->cookie_name);
165 free(p->cookie_domain);
166 free(p->cookie_attrs);
167 free(p->lbprm.arg_str);
Willy Tarreau7c9a0fe2022-04-25 10:25:34 +0200168 release_sample_expr(p->lbprm.expr);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100169 free(p->server_state_file_name);
170 free(p->capture_name);
Tim Duesterhus4b1fcaa2022-03-05 00:52:40 +0100171 istfree(&p->monitor_uri);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100172 free(p->rdp_cookie_name);
173 free(p->invalid_rep);
174 free(p->invalid_req);
175#if defined(CONFIG_HAP_TRANSPARENT)
176 free(p->conn_src.bind_hdr_name);
177#endif
178 if (p->conf.logformat_string != default_http_log_format &&
179 p->conf.logformat_string != default_tcp_log_format &&
Remi Tricot-Le Breton98b930d2021-07-29 09:45:52 +0200180 p->conf.logformat_string != clf_http_log_format &&
William Lallemandbe6a8732022-12-22 15:37:01 +0100181 p->conf.logformat_string != default_https_log_format &&
182 p->conf.logformat_string != httpclient_log_format)
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100183 free(p->conf.logformat_string);
184
185 free(p->conf.lfs_file);
186 free(p->conf.uniqueid_format_string);
187 istfree(&p->header_unique_id);
188 free(p->conf.uif_file);
189 if ((p->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_MAP)
190 free(p->lbprm.map.srv);
191
192 if (p->conf.logformat_sd_string != default_rfc5424_sd_log_format)
193 free(p->conf.logformat_sd_string);
194 free(p->conf.lfsd_file);
195
Remi Tricot-Le Bretonfe21fe72021-08-31 12:08:52 +0200196 free(p->conf.error_logformat_string);
197 free(p->conf.elfs_file);
198
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100199 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200200 LIST_DELETE(&cond->list);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100201 prune_acl_cond(cond);
202 free(cond);
203 }
204
205 EXTRA_COUNTERS_FREE(p->extra_counters_fe);
206 EXTRA_COUNTERS_FREE(p->extra_counters_be);
207
208 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200209 LIST_DELETE(&acl->list);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100210 prune_acl(acl);
211 free(acl);
212 }
213
214 list_for_each_entry_safe(srule, sruleb, &p->server_rules, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200215 LIST_DELETE(&srule->list);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100216 prune_acl_cond(srule->cond);
217 list_for_each_entry_safe(lf, lfb, &srule->expr, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200218 LIST_DELETE(&lf->list);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100219 release_sample_expr(lf->expr);
220 free(lf->arg);
221 free(lf);
222 }
223 free(srule->file);
224 free(srule->cond);
225 free(srule);
226 }
227
228 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200229 LIST_DELETE(&rule->list);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100230 if (rule->cond) {
231 prune_acl_cond(rule->cond);
232 free(rule->cond);
233 }
234 free(rule->file);
235 free(rule);
236 }
237
238 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200239 LIST_DELETE(&rdr->list);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100240 if (rdr->cond) {
241 prune_acl_cond(rdr->cond);
242 free(rdr->cond);
243 }
244 free(rdr->rdr_str);
245 list_for_each_entry_safe(lf, lfb, &rdr->rdr_fmt, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200246 LIST_DELETE(&lf->list);
Remi Tricot-Le Breton31202842023-01-06 16:31:06 +0100247 release_sample_expr(lf->expr);
248 free(lf->arg);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100249 free(lf);
250 }
251 free(rdr);
252 }
253
254 list_for_each_entry_safe(log, logb, &p->logsrvs, list) {
Willy Tarreau211ea252022-03-17 19:47:33 +0100255 LIST_DEL_INIT(&log->list);
256 free_logsrv(log);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100257 }
258
259 list_for_each_entry_safe(lf, lfb, &p->logformat, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200260 LIST_DELETE(&lf->list);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100261 release_sample_expr(lf->expr);
262 free(lf->arg);
263 free(lf);
264 }
265
266 list_for_each_entry_safe(lf, lfb, &p->logformat_sd, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200267 LIST_DELETE(&lf->list);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100268 release_sample_expr(lf->expr);
269 free(lf->arg);
270 free(lf);
271 }
272
273 list_for_each_entry_safe(lf, lfb, &p->format_unique_id, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200274 LIST_DELETE(&lf->list);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100275 release_sample_expr(lf->expr);
276 free(lf->arg);
277 free(lf);
278 }
279
Remi Tricot-Le Bretonfe21fe72021-08-31 12:08:52 +0200280 list_for_each_entry_safe(lf, lfb, &p->logformat_error, list) {
281 LIST_DELETE(&lf->list);
282 release_sample_expr(lf->expr);
283 free(lf->arg);
284 free(lf);
285 }
286
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100287 free_act_rules(&p->tcp_req.inspect_rules);
288 free_act_rules(&p->tcp_rep.inspect_rules);
289 free_act_rules(&p->tcp_req.l4_rules);
290 free_act_rules(&p->tcp_req.l5_rules);
291 free_act_rules(&p->http_req_rules);
292 free_act_rules(&p->http_res_rules);
293 free_act_rules(&p->http_after_res_rules);
294
295 free_stick_rules(&p->storersp_rules);
296 free_stick_rules(&p->sticking_rules);
297
298 h = p->req_cap;
299 while (h) {
Christopher Faulet57962282022-04-25 14:30:58 +0200300 if (p->defpx && h == p->defpx->req_cap)
301 break;
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100302 h_next = h->next;
303 free(h->name);
304 pool_destroy(h->pool);
305 free(h);
306 h = h_next;
307 }/* end while(h) */
308
309 h = p->rsp_cap;
310 while (h) {
Christopher Faulet57962282022-04-25 14:30:58 +0200311 if (p->defpx && h == p->defpx->rsp_cap)
312 break;
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100313 h_next = h->next;
314 free(h->name);
315 pool_destroy(h->pool);
316 free(h);
317 h = h_next;
318 }/* end while(h) */
319
320 s = p->srv;
321 while (s) {
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100322 list_for_each_entry(srvdf, &server_deinit_list, list)
323 srvdf->fct(s);
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +0200324 s = srv_drop(s);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100325 }/* end while(s) */
326
327 list_for_each_entry_safe(l, l_next, &p->conf.listeners, by_fe) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200328 LIST_DELETE(&l->by_fe);
329 LIST_DELETE(&l->by_bind);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100330 free(l->name);
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +0100331 free(l->per_thr);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100332 free(l->counters);
333
334 EXTRA_COUNTERS_FREE(l->extra_counters);
335 free(l);
336 }
337
338 /* Release unused SSL configs. */
339 list_for_each_entry_safe(bind_conf, bind_back, &p->conf.bind, by_fe) {
340 if (bind_conf->xprt->destroy_bind_conf)
341 bind_conf->xprt->destroy_bind_conf(bind_conf);
342 free(bind_conf->file);
343 free(bind_conf->arg);
Willy Tarreau2b718102021-04-21 07:32:39 +0200344 LIST_DELETE(&bind_conf->by_fe);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100345 free(bind_conf);
346 }
347
348 flt_deinit(p);
349
350 list_for_each_entry(pxdf, &proxy_deinit_list, list)
351 pxdf->fct(p);
352
353 free(p->desc);
Tim Duesterhusb50ab842022-03-05 00:52:41 +0100354 istfree(&p->fwdfor_hdr_name);
Aurelien DARRAGONb2d797a2022-12-28 12:18:15 +0100355 istfree(&p->orgto_hdr_name);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100356
357 task_destroy(p->task);
358
359 pool_destroy(p->req_cap_pool);
360 pool_destroy(p->rsp_cap_pool);
361 if (p->table)
362 pool_destroy(p->table->pool);
363
364 HA_RWLOCK_DESTROY(&p->lbprm.lock);
365 HA_RWLOCK_DESTROY(&p->lock);
Christopher Faulet57962282022-04-25 14:30:58 +0200366
367 proxy_unref_defaults(p);
Amaury Denoyelle27fefa12021-03-24 16:13:20 +0100368 ha_free(&p);
369}
370
Willy Tarreau977b8e42006-12-29 14:19:17 +0100371/*
Willy Tarreau816eb542007-11-04 07:04:43 +0100372 * This function returns a string containing a name describing capabilities to
373 * report comprehensible error messages. Specifically, it will return the words
Willy Tarreau80dc6fe2021-02-12 09:43:33 +0100374 * "frontend", "backend" when appropriate, "defaults" if it corresponds to a
375 * defaults section, or "proxy" for all other cases including the proxies
376 * declared in "listen" mode.
Willy Tarreau977b8e42006-12-29 14:19:17 +0100377 */
Willy Tarreau816eb542007-11-04 07:04:43 +0100378const char *proxy_cap_str(int cap)
Willy Tarreau977b8e42006-12-29 14:19:17 +0100379{
Willy Tarreau80dc6fe2021-02-12 09:43:33 +0100380 if (cap & PR_CAP_DEF)
381 return "defaults";
382
Willy Tarreau816eb542007-11-04 07:04:43 +0100383 if ((cap & PR_CAP_LISTEN) != PR_CAP_LISTEN) {
384 if (cap & PR_CAP_FE)
385 return "frontend";
386 else if (cap & PR_CAP_BE)
387 return "backend";
Willy Tarreau816eb542007-11-04 07:04:43 +0100388 }
389 return "proxy";
Willy Tarreau977b8e42006-12-29 14:19:17 +0100390}
391
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100392/*
393 * This function returns a string containing the mode of the proxy in a format
394 * suitable for error messages.
395 */
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100396const char *proxy_mode_str(int mode) {
397
398 if (mode == PR_MODE_TCP)
399 return "tcp";
400 else if (mode == PR_MODE_HTTP)
401 return "http";
William Lallemandcf62f7e2018-10-26 14:47:40 +0200402 else if (mode == PR_MODE_CLI)
403 return "cli";
William Lallemand06715af2022-03-08 11:50:59 +0100404 else if (mode == PR_MODE_SYSLOG)
405 return "syslog";
406 else if (mode == PR_MODE_PEERS)
407 return "peers";
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100408 else
409 return "unknown";
410}
411
Willy Tarreau31a3cea2021-03-15 11:11:55 +0100412/* try to find among known options the one that looks closest to <word> by
413 * counting transitions between letters, digits and other characters. Will
414 * return the best matching word if found, otherwise NULL. An optional array
415 * of extra words to compare may be passed in <extra>, but it must then be
416 * terminated by a NULL entry. If unused it may be NULL.
417 */
418const char *proxy_find_best_option(const char *word, const char **extra)
419{
420 uint8_t word_sig[1024];
421 uint8_t list_sig[1024];
422 const char *best_ptr = NULL;
423 int dist, best_dist = INT_MAX;
424 int index;
425
426 make_word_fingerprint(word_sig, word);
427
428 for (index = 0; cfg_opts[index].name; index++) {
429 make_word_fingerprint(list_sig, cfg_opts[index].name);
430 dist = word_fingerprint_distance(word_sig, list_sig);
431 if (dist < best_dist) {
432 best_dist = dist;
433 best_ptr = cfg_opts[index].name;
434 }
435 }
436
437 for (index = 0; cfg_opts2[index].name; index++) {
438 make_word_fingerprint(list_sig, cfg_opts2[index].name);
439 dist = word_fingerprint_distance(word_sig, list_sig);
440 if (dist < best_dist) {
441 best_dist = dist;
442 best_ptr = cfg_opts2[index].name;
443 }
444 }
445
446 while (extra && *extra) {
447 make_word_fingerprint(list_sig, *extra);
448 dist = word_fingerprint_distance(word_sig, list_sig);
449 if (dist < best_dist) {
450 best_dist = dist;
451 best_ptr = *extra;
452 }
453 extra++;
454 }
455
456 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
457 best_ptr = NULL;
458 return best_ptr;
459}
460
Willy Tarreauf3950172009-10-10 18:35:51 +0200461/*
462 * This function scans the list of backends and servers to retrieve the first
463 * backend and the first server with the given names, and sets them in both
464 * parameters. It returns zero if either is not found, or non-zero and sets
465 * the ones it did not found to NULL. If a NULL pointer is passed for the
466 * backend, only the pointer to the server will be updated.
467 */
468int get_backend_server(const char *bk_name, const char *sv_name,
469 struct proxy **bk, struct server **sv)
470{
471 struct proxy *p;
472 struct server *s;
Willy Tarreau7ecc4202014-03-15 07:57:11 +0100473 int sid;
Willy Tarreauf3950172009-10-10 18:35:51 +0200474
475 *sv = NULL;
476
Willy Tarreau050536d2012-10-04 08:47:34 +0200477 sid = -1;
Willy Tarreaucfeaa472009-10-10 22:33:08 +0200478 if (*sv_name == '#')
479 sid = atoi(sv_name + 1);
480
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200481 p = proxy_be_by_name(bk_name);
Willy Tarreauf3950172009-10-10 18:35:51 +0200482 if (bk)
483 *bk = p;
484 if (!p)
485 return 0;
486
487 for (s = p->srv; s; s = s->next)
Willy Tarreau4055a102012-11-15 00:15:18 +0100488 if ((sid >= 0 && s->puid == sid) ||
489 (sid < 0 && strcmp(s->id, sv_name) == 0))
Willy Tarreauf3950172009-10-10 18:35:51 +0200490 break;
491 *sv = s;
492 if (!s)
493 return 0;
494 return 1;
495}
496
Willy Tarreaue219db72007-12-03 01:30:13 +0100497/* This function parses a "timeout" statement in a proxy section. It returns
498 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200499 * return zero, it will write an error or warning message into a preallocated
500 * buffer returned at <err>. The trailing is not be written. The function must
501 * be called with <args> pointing to the first command line word, with <proxy>
502 * pointing to the proxy being parsed, and <defpx> to the default proxy or NULL.
503 * As a special case for compatibility with older configs, it also accepts
504 * "{cli|srv|con}timeout" in args[0].
Willy Tarreaue219db72007-12-03 01:30:13 +0100505 */
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200506static int proxy_parse_timeout(char **args, int section, struct proxy *proxy,
Willy Tarreau01825162021-03-09 09:53:46 +0100507 const struct proxy *defpx, const char *file, int line,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200508 char **err)
Willy Tarreaue219db72007-12-03 01:30:13 +0100509{
510 unsigned timeout;
511 int retval, cap;
512 const char *res, *name;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200513 int *tv = NULL;
Willy Tarreau01825162021-03-09 09:53:46 +0100514 const int *td = NULL;
Willy Tarreaue219db72007-12-03 01:30:13 +0100515
516 retval = 0;
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200517
518 /* simply skip "timeout" but remain compatible with old form */
519 if (strcmp(args[0], "timeout") == 0)
520 args++;
521
Willy Tarreaue219db72007-12-03 01:30:13 +0100522 name = args[0];
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100523 if (strcmp(args[0], "client") == 0) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100524 name = "client";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100525 tv = &proxy->timeout.client;
526 td = &defpx->timeout.client;
Willy Tarreaue219db72007-12-03 01:30:13 +0100527 cap = PR_CAP_FE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100528 } else if (strcmp(args[0], "tarpit") == 0) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100529 tv = &proxy->timeout.tarpit;
530 td = &defpx->timeout.tarpit;
Willy Tarreau51c9bde2008-01-06 13:40:03 +0100531 cap = PR_CAP_FE | PR_CAP_BE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100532 } else if (strcmp(args[0], "http-keep-alive") == 0) {
Willy Tarreaub16a5742010-01-10 14:46:16 +0100533 tv = &proxy->timeout.httpka;
534 td = &defpx->timeout.httpka;
535 cap = PR_CAP_FE | PR_CAP_BE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100536 } else if (strcmp(args[0], "http-request") == 0) {
Willy Tarreau036fae02008-01-06 13:24:40 +0100537 tv = &proxy->timeout.httpreq;
538 td = &defpx->timeout.httpreq;
Willy Tarreaucd7afc02009-07-12 10:03:17 +0200539 cap = PR_CAP_FE | PR_CAP_BE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100540 } else if (strcmp(args[0], "server") == 0) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100541 name = "server";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100542 tv = &proxy->timeout.server;
543 td = &defpx->timeout.server;
Willy Tarreaue219db72007-12-03 01:30:13 +0100544 cap = PR_CAP_BE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100545 } else if (strcmp(args[0], "connect") == 0) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100546 name = "connect";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100547 tv = &proxy->timeout.connect;
548 td = &defpx->timeout.connect;
Willy Tarreaue219db72007-12-03 01:30:13 +0100549 cap = PR_CAP_BE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100550 } else if (strcmp(args[0], "check") == 0) {
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100551 tv = &proxy->timeout.check;
552 td = &defpx->timeout.check;
553 cap = PR_CAP_BE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100554 } else if (strcmp(args[0], "queue") == 0) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100555 tv = &proxy->timeout.queue;
556 td = &defpx->timeout.queue;
557 cap = PR_CAP_BE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100558 } else if (strcmp(args[0], "tunnel") == 0) {
Willy Tarreauce887fd2012-05-12 12:50:00 +0200559 tv = &proxy->timeout.tunnel;
560 td = &defpx->timeout.tunnel;
561 cap = PR_CAP_BE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100562 } else if (strcmp(args[0], "client-fin") == 0) {
Willy Tarreau05cdd962014-05-10 14:30:07 +0200563 tv = &proxy->timeout.clientfin;
564 td = &defpx->timeout.clientfin;
565 cap = PR_CAP_FE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100566 } else if (strcmp(args[0], "server-fin") == 0) {
Willy Tarreau05cdd962014-05-10 14:30:07 +0200567 tv = &proxy->timeout.serverfin;
568 td = &defpx->timeout.serverfin;
569 cap = PR_CAP_BE;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100570 } else if (strcmp(args[0], "clitimeout") == 0) {
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200571 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout client'.", args[0]);
572 return -1;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100573 } else if (strcmp(args[0], "srvtimeout") == 0) {
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200574 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout server'.", args[0]);
575 return -1;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100576 } else if (strcmp(args[0], "contimeout") == 0) {
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +0200577 memprintf(err, "the '%s' directive is not supported anymore since HAProxy 2.1. Use 'timeout connect'.", args[0]);
578 return -1;
Willy Tarreaue219db72007-12-03 01:30:13 +0100579 } else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200580 memprintf(err,
581 "'timeout' supports 'client', 'server', 'connect', 'check', "
Willy Tarreau05cdd962014-05-10 14:30:07 +0200582 "'queue', 'http-keep-alive', 'http-request', 'tunnel', 'tarpit', "
583 "'client-fin' and 'server-fin' (got '%s')",
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200584 args[0]);
Willy Tarreaue219db72007-12-03 01:30:13 +0100585 return -1;
586 }
587
588 if (*args[1] == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200589 memprintf(err, "'timeout %s' expects an integer value (in milliseconds)", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100590 return -1;
591 }
592
593 res = parse_time_err(args[1], &timeout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200594 if (res == PARSE_TIME_OVER) {
595 memprintf(err, "timer overflow in argument '%s' to 'timeout %s' (maximum value is 2147483647 ms or ~24.8 days)",
596 args[1], name);
597 return -1;
598 }
599 else if (res == PARSE_TIME_UNDER) {
600 memprintf(err, "timer underflow in argument '%s' to 'timeout %s' (minimum non-null value is 1 ms)",
601 args[1], name);
602 return -1;
603 }
604 else if (res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200605 memprintf(err, "unexpected character '%c' in 'timeout %s'", *res, name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100606 return -1;
607 }
608
609 if (!(proxy->cap & cap)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200610 memprintf(err, "'timeout %s' will be ignored because %s '%s' has no %s capability",
611 name, proxy_type_str(proxy), proxy->id,
612 (cap & PR_CAP_BE) ? "backend" : "frontend");
Willy Tarreaue219db72007-12-03 01:30:13 +0100613 retval = 1;
614 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200615 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200616 memprintf(err, "overwriting 'timeout %s' which was already specified", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100617 retval = 1;
618 }
619
Willy Tarreaufac5b592014-05-22 08:24:46 +0200620 if (*args[2] != 0) {
621 memprintf(err, "'timeout %s' : unexpected extra argument '%s' after value '%s'.", name, args[2], args[1]);
622 retval = -1;
623 }
624
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200625 *tv = MS_TO_TICKS(timeout);
Willy Tarreaue219db72007-12-03 01:30:13 +0100626 return retval;
627}
628
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100629/* This function parses a "rate-limit" statement in a proxy section. It returns
630 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200631 * return zero, it will write an error or warning message into a preallocated
632 * buffer returned at <err>. The function must be called with <args> pointing
633 * to the first command line word, with <proxy> pointing to the proxy being
634 * parsed, and <defpx> to the default proxy or NULL.
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100635 */
636static int proxy_parse_rate_limit(char **args, int section, struct proxy *proxy,
Willy Tarreau01825162021-03-09 09:53:46 +0100637 const struct proxy *defpx, const char *file, int line,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200638 char **err)
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100639{
William Dauchybb9da0b2020-01-16 01:34:27 +0100640 int retval;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200641 char *res;
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100642 unsigned int *tv = NULL;
Willy Tarreau01825162021-03-09 09:53:46 +0100643 const unsigned int *td = NULL;
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100644 unsigned int val;
645
646 retval = 0;
647
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200648 if (strcmp(args[1], "sessions") == 0) {
Willy Tarreau13a34bd2009-05-10 18:52:49 +0200649 tv = &proxy->fe_sps_lim;
650 td = &defpx->fe_sps_lim;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200651 }
652 else {
653 memprintf(err, "'%s' only supports 'sessions' (got '%s')", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100654 return -1;
655 }
656
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200657 if (*args[2] == 0) {
658 memprintf(err, "'%s %s' expects expects an integer value (in sessions/second)", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100659 return -1;
660 }
661
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200662 val = strtoul(args[2], &res, 0);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100663 if (*res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200664 memprintf(err, "'%s %s' : unexpected character '%c' in integer value '%s'", args[0], args[1], *res, args[2]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100665 return -1;
666 }
667
William Dauchybb9da0b2020-01-16 01:34:27 +0100668 if (!(proxy->cap & PR_CAP_FE)) {
669 memprintf(err, "%s %s will be ignored because %s '%s' has no frontend capability",
670 args[0], args[1], proxy_type_str(proxy), proxy->id);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100671 retval = 1;
672 }
673 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200674 memprintf(err, "overwriting %s %s which was already specified", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100675 retval = 1;
676 }
677
678 *tv = val;
679 return retval;
680}
681
Willy Tarreauc35362a2014-04-25 13:58:37 +0200682/* This function parses a "max-keep-alive-queue" statement in a proxy section.
683 * It returns -1 if there is any error, 1 for a warning, otherwise zero. If it
684 * does not return zero, it will write an error or warning message into a
685 * preallocated buffer returned at <err>. The function must be called with
686 * <args> pointing to the first command line word, with <proxy> pointing to
687 * the proxy being parsed, and <defpx> to the default proxy or NULL.
688 */
689static int proxy_parse_max_ka_queue(char **args, int section, struct proxy *proxy,
Willy Tarreau01825162021-03-09 09:53:46 +0100690 const struct proxy *defpx, const char *file, int line,
Willy Tarreauc35362a2014-04-25 13:58:37 +0200691 char **err)
692{
693 int retval;
694 char *res;
695 unsigned int val;
696
697 retval = 0;
698
699 if (*args[1] == 0) {
700 memprintf(err, "'%s' expects expects an integer value (or -1 to disable)", args[0]);
701 return -1;
702 }
703
704 val = strtol(args[1], &res, 0);
705 if (*res) {
706 memprintf(err, "'%s' : unexpected character '%c' in integer value '%s'", args[0], *res, args[1]);
707 return -1;
708 }
709
710 if (!(proxy->cap & PR_CAP_BE)) {
711 memprintf(err, "%s will be ignored because %s '%s' has no backend capability",
712 args[0], proxy_type_str(proxy), proxy->id);
713 retval = 1;
714 }
715
716 /* we store <val+1> so that a user-facing value of -1 is stored as zero (default) */
717 proxy->max_ka_queue = val + 1;
718 return retval;
719}
720
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200721/* This function parses a "declare" statement in a proxy section. It returns -1
722 * if there is any error, 1 for warning, otherwise 0. If it does not return zero,
723 * it will write an error or warning message into a preallocated buffer returned
724 * at <err>. The function must be called with <args> pointing to the first command
725 * line word, with <proxy> pointing to the proxy being parsed, and <defpx> to the
726 * default proxy or NULL.
727 */
728static int proxy_parse_declare(char **args, int section, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +0100729 const struct proxy *defpx, const char *file, int line,
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200730 char **err)
731{
732 /* Capture keyword wannot be declared in a default proxy. */
733 if (curpx == defpx) {
Joseph Herlant9edebb82018-11-15 11:50:44 -0800734 memprintf(err, "'%s' not available in default section", args[0]);
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200735 return -1;
736 }
737
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -0700738 /* Capture keyword is only available in frontend. */
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200739 if (!(curpx->cap & PR_CAP_FE)) {
Joseph Herlant9edebb82018-11-15 11:50:44 -0800740 memprintf(err, "'%s' only available in frontend or listen section", args[0]);
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200741 return -1;
742 }
743
744 /* Check mandatory second keyword. */
745 if (!args[1] || !*args[1]) {
746 memprintf(err, "'%s' needs a second keyword that specify the type of declaration ('capture')", args[0]);
747 return -1;
748 }
749
Joseph Herlant59dd2952018-11-15 11:46:55 -0800750 /* Actually, declare is only available for declaring capture
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200751 * slot, but in the future it can declare maps or variables.
Joseph Herlant59dd2952018-11-15 11:46:55 -0800752 * So, this section permits to check and switch according with
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200753 * the second keyword.
754 */
755 if (strcmp(args[1], "capture") == 0) {
756 char *error = NULL;
757 long len;
758 struct cap_hdr *hdr;
759
760 /* Check the next keyword. */
761 if (!args[2] || !*args[2] ||
762 (strcmp(args[2], "response") != 0 &&
763 strcmp(args[2], "request") != 0)) {
764 memprintf(err, "'%s %s' requires a direction ('request' or 'response')", args[0], args[1]);
765 return -1;
766 }
767
768 /* Check the 'len' keyword. */
769 if (!args[3] || !*args[3] || strcmp(args[3], "len") != 0) {
770 memprintf(err, "'%s %s' requires a capture length ('len')", args[0], args[1]);
771 return -1;
772 }
773
774 /* Check the length value. */
775 if (!args[4] || !*args[4]) {
776 memprintf(err, "'%s %s': 'len' requires a numeric value that represents the "
777 "capture length",
778 args[0], args[1]);
779 return -1;
780 }
781
782 /* convert the length value. */
783 len = strtol(args[4], &error, 10);
784 if (*error != '\0') {
785 memprintf(err, "'%s %s': cannot parse the length '%s'.",
786 args[0], args[1], args[3]);
787 return -1;
788 }
789
790 /* check length. */
791 if (len <= 0) {
792 memprintf(err, "length must be > 0");
793 return -1;
794 }
795
796 /* register the capture. */
Vincent Bernat02779b62016-04-03 13:48:43 +0200797 hdr = calloc(1, sizeof(*hdr));
Remi Tricot-Le Breton55ba0d62021-05-12 18:04:46 +0200798 if (!hdr) {
799 memprintf(err, "proxy '%s': out of memory while registering a capture", curpx->id);
800 return -1;
801 }
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +0200802 hdr->name = NULL; /* not a header capture */
803 hdr->namelen = 0;
804 hdr->len = len;
805 hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED);
806
807 if (strcmp(args[2], "request") == 0) {
808 hdr->next = curpx->req_cap;
809 hdr->index = curpx->nb_req_cap++;
810 curpx->req_cap = hdr;
811 }
812 if (strcmp(args[2], "response") == 0) {
813 hdr->next = curpx->rsp_cap;
814 hdr->index = curpx->nb_rsp_cap++;
815 curpx->rsp_cap = hdr;
816 }
817 return 0;
818 }
819 else {
820 memprintf(err, "unknown declaration type '%s' (supports 'capture')", args[1]);
821 return -1;
822 }
823}
824
Olivier Houcharda254a372019-04-05 15:30:12 +0200825/* This function parses a "retry-on" statement */
826static int
827proxy_parse_retry_on(char **args, int section, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +0100828 const struct proxy *defpx, const char *file, int line,
Olivier Houcharda254a372019-04-05 15:30:12 +0200829 char **err)
830{
831 int i;
832
833 if (!(*args[1])) {
834 memprintf(err, "'%s' needs at least one keyword to specify when to retry", args[0]);
835 return -1;
836 }
837 if (!(curpx->cap & PR_CAP_BE)) {
838 memprintf(err, "'%s' only available in backend or listen section", args[0]);
839 return -1;
840 }
841 curpx->retry_type = 0;
842 for (i = 1; *(args[i]); i++) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100843 if (strcmp(args[i], "conn-failure") == 0)
Olivier Houcharda254a372019-04-05 15:30:12 +0200844 curpx->retry_type |= PR_RE_CONN_FAILED;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100845 else if (strcmp(args[i], "empty-response") == 0)
Olivier Houcharda254a372019-04-05 15:30:12 +0200846 curpx->retry_type |= PR_RE_DISCONNECTED;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100847 else if (strcmp(args[i], "response-timeout") == 0)
Olivier Houcharda254a372019-04-05 15:30:12 +0200848 curpx->retry_type |= PR_RE_TIMEOUT;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100849 else if (strcmp(args[i], "401") == 0)
Julien Pivotto2de240a2020-11-12 11:14:05 +0100850 curpx->retry_type |= PR_RE_401;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100851 else if (strcmp(args[i], "403") == 0)
Julien Pivotto2de240a2020-11-12 11:14:05 +0100852 curpx->retry_type |= PR_RE_403;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100853 else if (strcmp(args[i], "404") == 0)
Olivier Houcharda254a372019-04-05 15:30:12 +0200854 curpx->retry_type |= PR_RE_404;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100855 else if (strcmp(args[i], "408") == 0)
Olivier Houcharda254a372019-04-05 15:30:12 +0200856 curpx->retry_type |= PR_RE_408;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100857 else if (strcmp(args[i], "425") == 0)
Olivier Houcharda254a372019-04-05 15:30:12 +0200858 curpx->retry_type |= PR_RE_425;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100859 else if (strcmp(args[i], "500") == 0)
Olivier Houcharda254a372019-04-05 15:30:12 +0200860 curpx->retry_type |= PR_RE_500;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100861 else if (strcmp(args[i], "501") == 0)
Olivier Houcharda254a372019-04-05 15:30:12 +0200862 curpx->retry_type |= PR_RE_501;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100863 else if (strcmp(args[i], "502") == 0)
Olivier Houcharda254a372019-04-05 15:30:12 +0200864 curpx->retry_type |= PR_RE_502;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100865 else if (strcmp(args[i], "503") == 0)
Olivier Houcharda254a372019-04-05 15:30:12 +0200866 curpx->retry_type |= PR_RE_503;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100867 else if (strcmp(args[i], "504") == 0)
Olivier Houcharda254a372019-04-05 15:30:12 +0200868 curpx->retry_type |= PR_RE_504;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100869 else if (strcmp(args[i], "0rtt-rejected") == 0)
Olivier Houchard865d8392019-05-03 22:46:27 +0200870 curpx->retry_type |= PR_RE_EARLY_ERROR;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100871 else if (strcmp(args[i], "junk-response") == 0)
Olivier Houcharde3249a92019-05-03 23:01:47 +0200872 curpx->retry_type |= PR_RE_JUNK_REQUEST;
Olivier Houchardddf0e032019-05-10 18:05:40 +0200873 else if (!(strcmp(args[i], "all-retryable-errors")))
874 curpx->retry_type |= PR_RE_CONN_FAILED | PR_RE_DISCONNECTED |
875 PR_RE_TIMEOUT | PR_RE_500 | PR_RE_502 |
876 PR_RE_503 | PR_RE_504 | PR_RE_EARLY_ERROR |
877 PR_RE_JUNK_REQUEST;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100878 else if (strcmp(args[i], "none") == 0) {
Olivier Houcharda254a372019-04-05 15:30:12 +0200879 if (i != 1 || *args[i + 1]) {
880 memprintf(err, "'%s' 'none' keyworld only usable alone", args[0]);
881 return -1;
882 }
883 } else {
884 memprintf(err, "'%s': unknown keyword '%s'", args[0], args[i]);
885 return -1;
886 }
887
888 }
889
890
891 return 0;
892}
893
Willy Tarreau52543212020-07-09 05:58:51 +0200894#ifdef TCP_KEEPCNT
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +0900895/* This function parses "{cli|srv}tcpka-cnt" statements */
896static int proxy_parse_tcpka_cnt(char **args, int section, struct proxy *proxy,
Willy Tarreau01825162021-03-09 09:53:46 +0100897 const struct proxy *defpx, const char *file, int line,
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +0900898 char **err)
899{
900 int retval;
901 char *res;
902 unsigned int tcpka_cnt;
903
904 retval = 0;
905
906 if (*args[1] == 0) {
907 memprintf(err, "'%s' expects an integer value", args[0]);
908 return -1;
909 }
910
911 tcpka_cnt = strtol(args[1], &res, 0);
912 if (*res) {
913 memprintf(err, "'%s' : unexpected character '%c' in integer value '%s'", args[0], *res, args[1]);
914 return -1;
915 }
916
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100917 if (strcmp(args[0], "clitcpka-cnt") == 0) {
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +0900918 if (!(proxy->cap & PR_CAP_FE)) {
919 memprintf(err, "%s will be ignored because %s '%s' has no frontend capability",
920 args[0], proxy_type_str(proxy), proxy->id);
921 retval = 1;
922 }
923 proxy->clitcpka_cnt = tcpka_cnt;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100924 } else if (strcmp(args[0], "srvtcpka-cnt") == 0) {
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +0900925 if (!(proxy->cap & PR_CAP_BE)) {
926 memprintf(err, "%s will be ignored because %s '%s' has no backend capability",
927 args[0], proxy_type_str(proxy), proxy->id);
928 retval = 1;
929 }
930 proxy->srvtcpka_cnt = tcpka_cnt;
931 } else {
932 /* unreachable */
933 memprintf(err, "'%s': unknown keyword", args[0]);
934 return -1;
935 }
936
937 return retval;
938}
Willy Tarreau52543212020-07-09 05:58:51 +0200939#endif
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +0900940
Willy Tarreau52543212020-07-09 05:58:51 +0200941#ifdef TCP_KEEPIDLE
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +0900942/* This function parses "{cli|srv}tcpka-idle" statements */
943static int proxy_parse_tcpka_idle(char **args, int section, struct proxy *proxy,
Willy Tarreau01825162021-03-09 09:53:46 +0100944 const struct proxy *defpx, const char *file, int line,
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +0900945 char **err)
946{
947 int retval;
948 const char *res;
949 unsigned int tcpka_idle;
950
951 retval = 0;
952
953 if (*args[1] == 0) {
954 memprintf(err, "'%s' expects an integer value", args[0]);
955 return -1;
956 }
957 res = parse_time_err(args[1], &tcpka_idle, TIME_UNIT_S);
958 if (res == PARSE_TIME_OVER) {
959 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
960 args[1], args[0]);
961 return -1;
962 }
963 else if (res == PARSE_TIME_UNDER) {
964 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
965 args[1], args[0]);
966 return -1;
967 }
968 else if (res) {
969 memprintf(err, "unexpected character '%c' in argument to <%s>.\n", *res, args[0]);
970 return -1;
971 }
972
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100973 if (strcmp(args[0], "clitcpka-idle") == 0) {
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +0900974 if (!(proxy->cap & PR_CAP_FE)) {
975 memprintf(err, "%s will be ignored because %s '%s' has no frontend capability",
976 args[0], proxy_type_str(proxy), proxy->id);
977 retval = 1;
978 }
979 proxy->clitcpka_idle = tcpka_idle;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100980 } else if (strcmp(args[0], "srvtcpka-idle") == 0) {
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +0900981 if (!(proxy->cap & PR_CAP_BE)) {
982 memprintf(err, "%s will be ignored because %s '%s' has no backend capability",
983 args[0], proxy_type_str(proxy), proxy->id);
984 retval = 1;
985 }
986 proxy->srvtcpka_idle = tcpka_idle;
987 } else {
988 /* unreachable */
989 memprintf(err, "'%s': unknown keyword", args[0]);
990 return -1;
991 }
992
993 return retval;
994}
Willy Tarreau52543212020-07-09 05:58:51 +0200995#endif
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +0900996
Willy Tarreau52543212020-07-09 05:58:51 +0200997#ifdef TCP_KEEPINTVL
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +0900998/* This function parses "{cli|srv}tcpka-intvl" statements */
999static int proxy_parse_tcpka_intvl(char **args, int section, struct proxy *proxy,
Willy Tarreau01825162021-03-09 09:53:46 +01001000 const struct proxy *defpx, const char *file, int line,
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +09001001 char **err)
1002{
1003 int retval;
1004 const char *res;
1005 unsigned int tcpka_intvl;
1006
1007 retval = 0;
1008
1009 if (*args[1] == 0) {
1010 memprintf(err, "'%s' expects an integer value", args[0]);
1011 return -1;
1012 }
1013 res = parse_time_err(args[1], &tcpka_intvl, TIME_UNIT_S);
1014 if (res == PARSE_TIME_OVER) {
1015 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
1016 args[1], args[0]);
1017 return -1;
1018 }
1019 else if (res == PARSE_TIME_UNDER) {
1020 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
1021 args[1], args[0]);
1022 return -1;
1023 }
1024 else if (res) {
1025 memprintf(err, "unexpected character '%c' in argument to <%s>.\n", *res, args[0]);
1026 return -1;
1027 }
1028
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001029 if (strcmp(args[0], "clitcpka-intvl") == 0) {
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +09001030 if (!(proxy->cap & PR_CAP_FE)) {
1031 memprintf(err, "%s will be ignored because %s '%s' has no frontend capability",
1032 args[0], proxy_type_str(proxy), proxy->id);
1033 retval = 1;
1034 }
1035 proxy->clitcpka_intvl = tcpka_intvl;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001036 } else if (strcmp(args[0], "srvtcpka-intvl") == 0) {
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +09001037 if (!(proxy->cap & PR_CAP_BE)) {
1038 memprintf(err, "%s will be ignored because %s '%s' has no backend capability",
1039 args[0], proxy_type_str(proxy), proxy->id);
1040 retval = 1;
1041 }
1042 proxy->srvtcpka_intvl = tcpka_intvl;
1043 } else {
1044 /* unreachable */
1045 memprintf(err, "'%s': unknown keyword", args[0]);
1046 return -1;
1047 }
1048
1049 return retval;
1050}
Willy Tarreau52543212020-07-09 05:58:51 +02001051#endif
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +09001052
Willy Tarreau0a0f6a72021-02-12 13:52:11 +01001053/* This function inserts proxy <px> into the tree of known proxies (regular
1054 * ones or defaults depending on px->cap & PR_CAP_DEF). The proxy's name is
1055 * used as the storing key so it must already have been initialized.
Willy Tarreauf79d9502014-03-15 07:22:35 +01001056 */
1057void proxy_store_name(struct proxy *px)
1058{
Willy Tarreau0a0f6a72021-02-12 13:52:11 +01001059 struct eb_root *root = (px->cap & PR_CAP_DEF) ? &defproxy_by_name : &proxy_by_name;
1060
Willy Tarreauf79d9502014-03-15 07:22:35 +01001061 px->conf.by_name.key = px->id;
Willy Tarreau0a0f6a72021-02-12 13:52:11 +01001062 ebis_insert(root, &px->conf.by_name);
Willy Tarreauf79d9502014-03-15 07:22:35 +01001063}
1064
Willy Tarreau3c56a7d2015-05-26 15:25:32 +02001065/* Returns a pointer to the first proxy matching capabilities <cap> and id
1066 * <id>. NULL is returned if no match is found. If <table> is non-zero, it
1067 * only considers proxies having a table.
Willy Tarreaubc216c42011-08-02 11:25:54 +02001068 */
Willy Tarreau3c56a7d2015-05-26 15:25:32 +02001069struct proxy *proxy_find_by_id(int id, int cap, int table)
Willy Tarreau9e0bb102015-05-26 11:24:42 +02001070{
Willy Tarreau3c56a7d2015-05-26 15:25:32 +02001071 struct eb32_node *n;
Willy Tarreaubc216c42011-08-02 11:25:54 +02001072
Willy Tarreau3c56a7d2015-05-26 15:25:32 +02001073 for (n = eb32_lookup(&used_proxy_id, id); n; n = eb32_next(n)) {
1074 struct proxy *px = container_of(n, struct proxy, conf.id);
Willy Tarreaucfd837f2014-03-15 07:43:51 +01001075
Willy Tarreau3c56a7d2015-05-26 15:25:32 +02001076 if (px->uuid != id)
1077 break;
Alex Williams96532db2009-11-01 21:27:13 -05001078
Willy Tarreau3c56a7d2015-05-26 15:25:32 +02001079 if ((px->cap & cap) != cap)
1080 continue;
Alex Williams96532db2009-11-01 21:27:13 -05001081
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001082 if (table && (!px->table || !px->table->size))
Willy Tarreau3c56a7d2015-05-26 15:25:32 +02001083 continue;
Willy Tarreaucfd837f2014-03-15 07:43:51 +01001084
Willy Tarreau3c56a7d2015-05-26 15:25:32 +02001085 return px;
1086 }
1087 return NULL;
1088}
Willy Tarreaucfd837f2014-03-15 07:43:51 +01001089
Willy Tarreau3c56a7d2015-05-26 15:25:32 +02001090/* Returns a pointer to the first proxy matching either name <name>, or id
1091 * <name> if <name> begins with a '#'. NULL is returned if no match is found.
Willy Tarreau0a0f6a72021-02-12 13:52:11 +01001092 * If <table> is non-zero, it only considers proxies having a table. The search
1093 * is made into the regular proxies, unless <cap> has PR_CAP_DEF set in which
1094 * case it's searched into the defproxy tree.
Willy Tarreau3c56a7d2015-05-26 15:25:32 +02001095 */
1096struct proxy *proxy_find_by_name(const char *name, int cap, int table)
1097{
1098 struct proxy *curproxy;
Willy Tarreau9e0bb102015-05-26 11:24:42 +02001099
Willy Tarreau0a0f6a72021-02-12 13:52:11 +01001100 if (*name == '#' && !(cap & PR_CAP_DEF)) {
Willy Tarreau3c56a7d2015-05-26 15:25:32 +02001101 curproxy = proxy_find_by_id(atoi(name + 1), cap, table);
1102 if (curproxy)
Willy Tarreauc739aa82015-05-26 11:35:41 +02001103 return curproxy;
Alex Williams96532db2009-11-01 21:27:13 -05001104 }
Willy Tarreaucfd837f2014-03-15 07:43:51 +01001105 else {
Willy Tarreau0a0f6a72021-02-12 13:52:11 +01001106 struct eb_root *root;
Willy Tarreaucfd837f2014-03-15 07:43:51 +01001107 struct ebpt_node *node;
1108
Willy Tarreau0a0f6a72021-02-12 13:52:11 +01001109 root = (cap & PR_CAP_DEF) ? &defproxy_by_name : &proxy_by_name;
1110 for (node = ebis_lookup(root, name); node; node = ebpt_next(node)) {
Willy Tarreaucfd837f2014-03-15 07:43:51 +01001111 curproxy = container_of(node, struct proxy, conf.by_name);
Alex Williams96532db2009-11-01 21:27:13 -05001112
Willy Tarreaucfd837f2014-03-15 07:43:51 +01001113 if (strcmp(curproxy->id, name) != 0)
1114 break;
1115
1116 if ((curproxy->cap & cap) != cap)
1117 continue;
1118
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001119 if (table && (!curproxy->table || !curproxy->table->size))
Willy Tarreau9e0bb102015-05-26 11:24:42 +02001120 continue;
1121
Willy Tarreauc739aa82015-05-26 11:35:41 +02001122 return curproxy;
Willy Tarreaucfd837f2014-03-15 07:43:51 +01001123 }
1124 }
Willy Tarreauc739aa82015-05-26 11:35:41 +02001125 return NULL;
Alex Williams96532db2009-11-01 21:27:13 -05001126}
1127
Willy Tarreaueb3e3482015-05-27 16:46:26 +02001128/* Finds the best match for a proxy with capabilities <cap>, name <name> and id
1129 * <id>. At most one of <id> or <name> may be different provided that <cap> is
1130 * valid. Either <id> or <name> may be left unspecified (0). The purpose is to
1131 * find a proxy based on some information from a previous configuration, across
1132 * reloads or during information exchange between peers.
1133 *
1134 * Names are looked up first if present, then IDs are compared if present. In
1135 * case of an inexact match whatever is forced in the configuration has
1136 * precedence in the following order :
1137 * - 1) forced ID (proves a renaming / change of proxy type)
1138 * - 2) proxy name+type (may indicate a move if ID differs)
1139 * - 3) automatic ID+type (may indicate a renaming)
1140 *
1141 * Depending on what is found, we can end up in the following situations :
1142 *
1143 * name id cap | possible causes
1144 * -------------+-----------------
1145 * -- -- -- | nothing found
1146 * -- -- ok | nothing found
1147 * -- ok -- | proxy deleted, ID points to next one
1148 * -- ok ok | proxy renamed, or deleted with ID pointing to next one
1149 * ok -- -- | proxy deleted, but other half with same name still here (before)
1150 * ok -- ok | proxy's ID changed (proxy moved in the config file)
1151 * ok ok -- | proxy deleted, but other half with same name still here (after)
1152 * ok ok ok | perfect match
1153 *
1154 * Upon return if <diff> is not NULL, it is zeroed then filled with up to 3 bits :
Baptiste Assmann8a027cc2015-07-03 11:03:33 +02001155 * - PR_FBM_MISMATCH_ID : proxy was found but ID differs
1156 * (and ID was not zero)
1157 * - PR_FBM_MISMATCH_NAME : proxy was found by ID but name differs
1158 * (and name was not NULL)
1159 * - PR_FBM_MISMATCH_PROXYTYPE : a proxy of different type was found with
1160 * the same name and/or id
Willy Tarreaueb3e3482015-05-27 16:46:26 +02001161 *
1162 * Only a valid proxy is returned. If capabilities do not match, NULL is
1163 * returned. The caller can check <diff> to report detailed warnings / errors,
1164 * and decide whether or not to use what was found.
1165 */
1166struct proxy *proxy_find_best_match(int cap, const char *name, int id, int *diff)
1167{
1168 struct proxy *byname;
1169 struct proxy *byid;
1170
1171 if (!name && !id)
1172 return NULL;
1173
1174 if (diff)
1175 *diff = 0;
1176
1177 byname = byid = NULL;
1178
1179 if (name) {
1180 byname = proxy_find_by_name(name, cap, 0);
1181 if (byname && (!id || byname->uuid == id))
1182 return byname;
1183 }
1184
Joseph Herlant59dd2952018-11-15 11:46:55 -08001185 /* remaining possibilities :
Willy Tarreaueb3e3482015-05-27 16:46:26 +02001186 * - name not set
1187 * - name set but not found
1188 * - name found, but ID doesn't match.
1189 */
1190 if (id) {
1191 byid = proxy_find_by_id(id, cap, 0);
1192 if (byid) {
1193 if (byname) {
1194 /* id+type found, name+type found, but not all 3.
1195 * ID wins only if forced, otherwise name wins.
1196 */
1197 if (byid->options & PR_O_FORCED_ID) {
1198 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +02001199 *diff |= PR_FBM_MISMATCH_NAME;
Willy Tarreaueb3e3482015-05-27 16:46:26 +02001200 return byid;
1201 }
1202 else {
1203 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +02001204 *diff |= PR_FBM_MISMATCH_ID;
Willy Tarreaueb3e3482015-05-27 16:46:26 +02001205 return byname;
1206 }
1207 }
1208
Joseph Herlant59dd2952018-11-15 11:46:55 -08001209 /* remaining possibilities :
Willy Tarreaueb3e3482015-05-27 16:46:26 +02001210 * - name not set
1211 * - name set but not found
1212 */
1213 if (name && diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +02001214 *diff |= PR_FBM_MISMATCH_NAME;
Willy Tarreaueb3e3482015-05-27 16:46:26 +02001215 return byid;
1216 }
1217
1218 /* ID not found */
1219 if (byname) {
1220 if (diff)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +02001221 *diff |= PR_FBM_MISMATCH_ID;
Willy Tarreaueb3e3482015-05-27 16:46:26 +02001222 return byname;
1223 }
1224 }
1225
Joseph Herlant59dd2952018-11-15 11:46:55 -08001226 /* All remaining possibilities will lead to NULL. If we can report more
Willy Tarreaueb3e3482015-05-27 16:46:26 +02001227 * detailed information to the caller about changed types and/or name,
1228 * we'll do it. For example, we could detect that "listen foo" was
1229 * split into "frontend foo_ft" and "backend foo_bk" if IDs are forced.
1230 * - name not set, ID not found
1231 * - name not found, ID not set
1232 * - name not found, ID not found
1233 */
1234 if (!diff)
1235 return NULL;
1236
1237 if (name) {
1238 byname = proxy_find_by_name(name, 0, 0);
1239 if (byname && (!id || byname->uuid == id))
Baptiste Assmann8a027cc2015-07-03 11:03:33 +02001240 *diff |= PR_FBM_MISMATCH_PROXYTYPE;
Willy Tarreaueb3e3482015-05-27 16:46:26 +02001241 }
1242
1243 if (id) {
1244 byid = proxy_find_by_id(id, 0, 0);
1245 if (byid) {
1246 if (!name)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +02001247 *diff |= PR_FBM_MISMATCH_PROXYTYPE; /* only type changed */
Willy Tarreaueb3e3482015-05-27 16:46:26 +02001248 else if (byid->options & PR_O_FORCED_ID)
Baptiste Assmann8a027cc2015-07-03 11:03:33 +02001249 *diff |= PR_FBM_MISMATCH_NAME | PR_FBM_MISMATCH_PROXYTYPE; /* name and type changed */
Willy Tarreaueb3e3482015-05-27 16:46:26 +02001250 /* otherwise it's a different proxy that was returned */
1251 }
1252 }
1253 return NULL;
1254}
1255
Willy Tarreaubaaee002006-06-26 02:48:02 +02001256/*
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001257 * This function finds a server with matching name within selected proxy.
1258 * It also checks if there are more matching servers with
1259 * requested name as this often leads into unexpected situations.
1260 */
1261
1262struct server *findserver(const struct proxy *px, const char *name) {
1263
1264 struct server *cursrv, *target = NULL;
1265
1266 if (!px)
1267 return NULL;
1268
1269 for (cursrv = px->srv; cursrv; cursrv = cursrv->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001270 if (strcmp(cursrv->id, name) != 0)
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001271 continue;
1272
1273 if (!target) {
1274 target = cursrv;
1275 continue;
1276 }
1277
Christopher Faulet767a84b2017-11-24 16:50:31 +01001278 ha_alert("Refusing to use duplicated server '%s' found in proxy: %s!\n",
1279 name, px->id);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001280
1281 return NULL;
1282 }
1283
1284 return target;
1285}
1286
Willy Tarreauff01a212009-03-15 13:46:16 +01001287/* This function checks that the designated proxy has no http directives
1288 * enabled. It will output a warning if there are, and will fix some of them.
1289 * It returns the number of fatal errors encountered. This should be called
1290 * at the end of the configuration parsing if the proxy is not in http mode.
1291 * The <file> argument is used to construct the error message.
1292 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001293int proxy_cfg_ensure_no_http(struct proxy *curproxy)
Willy Tarreauff01a212009-03-15 13:46:16 +01001294{
1295 if (curproxy->cookie_name != NULL) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02001296 ha_warning("cookie will be ignored for %s '%s' (needs 'mode http').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01001297 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01001298 }
Tim Duesterhus4b1fcaa2022-03-05 00:52:40 +01001299 if (isttest(curproxy->monitor_uri)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02001300 ha_warning("monitor-uri will be ignored for %s '%s' (needs 'mode http').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01001301 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01001302 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02001303 if (curproxy->lbprm.algo & BE_LB_NEED_HTTP) {
Willy Tarreauff01a212009-03-15 13:46:16 +01001304 curproxy->lbprm.algo &= ~BE_LB_ALGO;
1305 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Amaury Denoyelle11124302021-06-04 18:22:08 +02001306 ha_warning("Layer 7 hash not possible for %s '%s' (needs 'mode http'). Falling back to round robin.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01001307 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01001308 }
Willy Tarreau17804162009-11-09 21:27:51 +01001309 if (curproxy->to_log & (LW_REQ | LW_RESP)) {
1310 curproxy->to_log &= ~(LW_REQ | LW_RESP);
Christopher Faulet767a84b2017-11-24 16:50:31 +01001311 ha_warning("parsing [%s:%d] : HTTP log/header format not usable with %s '%s' (needs 'mode http').\n",
1312 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
1313 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau17804162009-11-09 21:27:51 +01001314 }
Willy Tarreau62a61232013-04-12 18:13:46 +02001315 if (curproxy->conf.logformat_string == default_http_log_format ||
1316 curproxy->conf.logformat_string == clf_http_log_format) {
1317 /* Note: we don't change the directive's file:line number */
1318 curproxy->conf.logformat_string = default_tcp_log_format;
Christopher Faulet767a84b2017-11-24 16:50:31 +01001319 ha_warning("parsing [%s:%d] : 'option httplog' not usable with %s '%s' (needs 'mode http'). Falling back to 'option tcplog'.\n",
1320 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
1321 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau196729e2012-05-31 19:30:26 +02001322 }
Remi Tricot-Le Breton98b930d2021-07-29 09:45:52 +02001323 else if (curproxy->conf.logformat_string == default_https_log_format) {
1324 /* Note: we don't change the directive's file:line number */
1325 curproxy->conf.logformat_string = default_tcp_log_format;
1326 ha_warning("parsing [%s:%d] : 'option httpslog' not usable with %s '%s' (needs 'mode http'). Falling back to 'option tcplog'.\n",
1327 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
1328 proxy_type_str(curproxy), curproxy->id);
1329 }
Willy Tarreau196729e2012-05-31 19:30:26 +02001330
Willy Tarreauff01a212009-03-15 13:46:16 +01001331 return 0;
1332}
1333
Willy Tarreau237250c2011-07-29 01:49:03 +02001334/* Perform the most basic initialization of a proxy :
1335 * memset(), list_init(*), reset_timeouts(*).
Willy Tarreaub249e842011-09-07 18:41:08 +02001336 * Any new proxy or peer should be initialized via this function.
Willy Tarreau237250c2011-07-29 01:49:03 +02001337 */
1338void init_new_proxy(struct proxy *p)
1339{
1340 memset(p, 0, sizeof(struct proxy));
Willy Tarreau3fdb3662012-11-12 00:42:33 +01001341 p->obj_type = OBJ_TYPE_PROXY;
Willy Tarreaucdc83e02021-06-23 16:11:02 +02001342 queue_init(&p->queue, p, NULL);
Willy Tarreau237250c2011-07-29 01:49:03 +02001343 LIST_INIT(&p->acl);
1344 LIST_INIT(&p->http_req_rules);
Willy Tarreaue365c0b2013-06-11 16:06:12 +02001345 LIST_INIT(&p->http_res_rules);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01001346 LIST_INIT(&p->http_after_res_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +02001347 LIST_INIT(&p->redirect_rules);
1348 LIST_INIT(&p->mon_fail_cond);
1349 LIST_INIT(&p->switching_rules);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001350 LIST_INIT(&p->server_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +02001351 LIST_INIT(&p->persist_rules);
1352 LIST_INIT(&p->sticking_rules);
1353 LIST_INIT(&p->storersp_rules);
1354 LIST_INIT(&p->tcp_req.inspect_rules);
1355 LIST_INIT(&p->tcp_rep.inspect_rules);
1356 LIST_INIT(&p->tcp_req.l4_rules);
Willy Tarreau620408f2016-10-21 16:37:51 +02001357 LIST_INIT(&p->tcp_req.l5_rules);
Olivier Houchard859dc802019-08-08 15:47:21 +02001358 MT_LIST_INIT(&p->listener_queue);
William Lallemand0f99e342011-10-12 17:50:54 +02001359 LIST_INIT(&p->logsrvs);
William Lallemand723b73a2012-02-08 16:37:49 +01001360 LIST_INIT(&p->logformat);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001361 LIST_INIT(&p->logformat_sd);
William Lallemanda73203e2012-03-12 12:48:57 +01001362 LIST_INIT(&p->format_unique_id);
Remi Tricot-Le Bretonfe21fe72021-08-31 12:08:52 +02001363 LIST_INIT(&p->logformat_error);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001364 LIST_INIT(&p->conf.bind);
Willy Tarreau4348fad2012-09-20 16:48:07 +02001365 LIST_INIT(&p->conf.listeners);
Christopher Faulet76edc0f2020-01-13 15:52:01 +01001366 LIST_INIT(&p->conf.errors);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001367 LIST_INIT(&p->conf.args.list);
Christopher Faulet443ea1a2016-02-04 13:40:26 +01001368 LIST_INIT(&p->filter_configs);
Christopher Faulet7a1e2e12020-04-02 18:05:11 +02001369 LIST_INIT(&p->tcpcheck_rules.preset_vars);
Willy Tarreau237250c2011-07-29 01:49:03 +02001370
Willy Tarreau3b06eae2021-02-12 09:15:16 +01001371 p->defsrv.id = "default-server";
1372 p->conf.used_listener_id = EB_ROOT;
1373 p->conf.used_server_id = EB_ROOT;
1374 p->used_server_addr = EB_ROOT_UNIQUE;
1375
Willy Tarreau237250c2011-07-29 01:49:03 +02001376 /* Timeouts are defined as -1 */
1377 proxy_reset_timeouts(p);
1378 p->tcp_rep.inspect_delay = TICK_ETERNITY;
Willy Tarreau050536d2012-10-04 08:47:34 +02001379
1380 /* initial uuid is unassigned (-1) */
1381 p->uuid = -1;
Christopher Fauletff8abcd2017-06-02 15:33:24 +02001382
Olivier Houcharda254a372019-04-05 15:30:12 +02001383 /* Default to only allow L4 retries */
1384 p->retry_type = PR_RE_CONN_FAILED;
1385
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01001386 p->extra_counters_fe = NULL;
1387 p->extra_counters_be = NULL;
1388
Willy Tarreauac66d6b2020-10-20 17:24:27 +02001389 HA_RWLOCK_INIT(&p->lock);
Willy Tarreau237250c2011-07-29 01:49:03 +02001390}
1391
Willy Tarreau144289b2021-02-12 08:19:01 +01001392/* Preset default settings onto proxy <defproxy>. */
1393void proxy_preset_defaults(struct proxy *defproxy)
1394{
1395 defproxy->mode = PR_MODE_TCP;
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001396 defproxy->flags = 0;
William Lallemand6bb77b92021-07-28 15:48:16 +02001397 if (!(defproxy->cap & PR_CAP_INT)) {
Amaury Denoyelle6f26fae2021-03-24 10:49:34 +01001398 defproxy->maxconn = cfg_maxpconn;
1399 defproxy->conn_retries = CONN_RETRIES;
1400 }
Willy Tarreau144289b2021-02-12 08:19:01 +01001401 defproxy->redispatch_after = 0;
1402 defproxy->options = PR_O_REUSE_SAFE;
William Lallemand6bb77b92021-07-28 15:48:16 +02001403 if (defproxy->cap & PR_CAP_INT)
Amaury Denoyelle6f26fae2021-03-24 10:49:34 +01001404 defproxy->options2 |= PR_O2_INDEPSTR;
Willy Tarreau144289b2021-02-12 08:19:01 +01001405 defproxy->max_out_conns = MAX_SRV_LIST;
1406
1407 defproxy->defsrv.check.inter = DEF_CHKINTR;
1408 defproxy->defsrv.check.fastinter = 0;
1409 defproxy->defsrv.check.downinter = 0;
1410 defproxy->defsrv.agent.inter = DEF_CHKINTR;
1411 defproxy->defsrv.agent.fastinter = 0;
1412 defproxy->defsrv.agent.downinter = 0;
1413 defproxy->defsrv.check.rise = DEF_RISETIME;
1414 defproxy->defsrv.check.fall = DEF_FALLTIME;
1415 defproxy->defsrv.agent.rise = DEF_AGENT_RISETIME;
1416 defproxy->defsrv.agent.fall = DEF_AGENT_FALLTIME;
1417 defproxy->defsrv.check.port = 0;
1418 defproxy->defsrv.agent.port = 0;
1419 defproxy->defsrv.maxqueue = 0;
1420 defproxy->defsrv.minconn = 0;
1421 defproxy->defsrv.maxconn = 0;
1422 defproxy->defsrv.max_reuse = -1;
1423 defproxy->defsrv.max_idle_conns = -1;
1424 defproxy->defsrv.pool_purge_delay = 5000;
1425 defproxy->defsrv.slowstart = 0;
1426 defproxy->defsrv.onerror = DEF_HANA_ONERR;
1427 defproxy->defsrv.consecutive_errors_limit = DEF_HANA_ERRLIMIT;
1428 defproxy->defsrv.uweight = defproxy->defsrv.iweight = 1;
1429
1430 defproxy->email_alert.level = LOG_ALERT;
1431 defproxy->load_server_state_from_file = PR_SRV_STATE_FILE_UNSPEC;
1432#if defined(USE_QUIC)
1433 quic_transport_params_init(&defproxy->defsrv.quic_params, 0);
1434#endif
Amaury Denoyelle6f26fae2021-03-24 10:49:34 +01001435
William Lallemand6bb77b92021-07-28 15:48:16 +02001436 if (defproxy->cap & PR_CAP_INT)
Amaury Denoyelle6f26fae2021-03-24 10:49:34 +01001437 defproxy->timeout.connect = 5000;
Willy Tarreau144289b2021-02-12 08:19:01 +01001438}
1439
Willy Tarreaua3320a02021-02-12 10:38:49 +01001440/* Frees all dynamic settings allocated on a default proxy that's about to be
1441 * destroyed. This is a subset of the complete proxy deinit code, but these
1442 * should probably be merged ultimately. Note that most of the fields are not
1443 * even reset, so extreme care is required here, and calling
1444 * proxy_preset_defaults() afterwards would be safer.
1445 */
1446void proxy_free_defaults(struct proxy *defproxy)
1447{
Christopher Faulet6db9a972021-10-15 14:33:34 +02001448 struct acl *acl, *aclb;
Willy Tarreau211ea252022-03-17 19:47:33 +01001449 struct logsrv *log, *logb;
Christopher Faulet57962282022-04-25 14:30:58 +02001450 struct cap_hdr *h,*h_next;
Christopher Faulet6db9a972021-10-15 14:33:34 +02001451
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001452 ha_free(&defproxy->id);
1453 ha_free(&defproxy->conf.file);
1454 ha_free(&defproxy->check_command);
1455 ha_free(&defproxy->check_path);
1456 ha_free(&defproxy->cookie_name);
1457 ha_free(&defproxy->rdp_cookie_name);
1458 ha_free(&defproxy->dyncookie_key);
1459 ha_free(&defproxy->cookie_domain);
1460 ha_free(&defproxy->cookie_attrs);
1461 ha_free(&defproxy->lbprm.arg_str);
1462 ha_free(&defproxy->capture_name);
Tim Duesterhus4b1fcaa2022-03-05 00:52:40 +01001463 istfree(&defproxy->monitor_uri);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001464 ha_free(&defproxy->defbe.name);
1465 ha_free(&defproxy->conn_src.iface_name);
Tim Duesterhusb50ab842022-03-05 00:52:41 +01001466 istfree(&defproxy->fwdfor_hdr_name);
Tim Duesterhuse502c3e2022-03-05 00:52:42 +01001467 istfree(&defproxy->orgto_hdr_name);
Tim Duesterhusb4b03772022-03-05 00:52:43 +01001468 istfree(&defproxy->server_id_hdr_name);
Willy Tarreaua3320a02021-02-12 10:38:49 +01001469
Christopher Faulet6db9a972021-10-15 14:33:34 +02001470 list_for_each_entry_safe(acl, aclb, &defproxy->acl, list) {
1471 LIST_DELETE(&acl->list);
1472 prune_acl(acl);
1473 free(acl);
1474 }
1475
1476 free_act_rules(&defproxy->tcp_req.inspect_rules);
1477 free_act_rules(&defproxy->tcp_rep.inspect_rules);
1478 free_act_rules(&defproxy->tcp_req.l4_rules);
1479 free_act_rules(&defproxy->tcp_req.l5_rules);
1480 free_act_rules(&defproxy->http_req_rules);
1481 free_act_rules(&defproxy->http_res_rules);
1482 free_act_rules(&defproxy->http_after_res_rules);
1483
Christopher Faulet57962282022-04-25 14:30:58 +02001484 h = defproxy->req_cap;
1485 while (h) {
1486 h_next = h->next;
1487 free(h->name);
1488 pool_destroy(h->pool);
1489 free(h);
1490 h = h_next;
1491 }
1492
1493 h = defproxy->rsp_cap;
1494 while (h) {
1495 h_next = h->next;
1496 free(h->name);
1497 pool_destroy(h->pool);
1498 free(h);
1499 h = h_next;
1500 }
1501
Willy Tarreaua3320a02021-02-12 10:38:49 +01001502 if (defproxy->conf.logformat_string != default_http_log_format &&
1503 defproxy->conf.logformat_string != default_tcp_log_format &&
Remi Tricot-Le Breton98b930d2021-07-29 09:45:52 +02001504 defproxy->conf.logformat_string != clf_http_log_format &&
1505 defproxy->conf.logformat_string != default_https_log_format) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001506 ha_free(&defproxy->conf.logformat_string);
Willy Tarreau818ec782021-02-12 10:48:53 +01001507 }
Willy Tarreaua3320a02021-02-12 10:38:49 +01001508
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001509 if (defproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
1510 ha_free(&defproxy->conf.logformat_sd_string);
Willy Tarreaua3320a02021-02-12 10:38:49 +01001511
Willy Tarreau211ea252022-03-17 19:47:33 +01001512 list_for_each_entry_safe(log, logb, &defproxy->logsrvs, list) {
1513 LIST_DEL_INIT(&log->list);
1514 free_logsrv(log);
1515 }
1516
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001517 ha_free(&defproxy->conf.uniqueid_format_string);
Remi Tricot-Le Bretonfe21fe72021-08-31 12:08:52 +02001518 ha_free(&defproxy->conf.error_logformat_string);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001519 ha_free(&defproxy->conf.lfs_file);
1520 ha_free(&defproxy->conf.lfsd_file);
1521 ha_free(&defproxy->conf.uif_file);
Remi Tricot-Le Bretonfe21fe72021-08-31 12:08:52 +02001522 ha_free(&defproxy->conf.elfs_file);
Willy Tarreaua3320a02021-02-12 10:38:49 +01001523 chunk_destroy(&defproxy->log_tag);
1524
1525 free_email_alert(defproxy);
1526 proxy_release_conf_errors(defproxy);
1527 deinit_proxy_tcpcheck(defproxy);
1528
1529 /* FIXME: we cannot free uri_auth because it might already be used by
1530 * another proxy (legacy code for stats URI ...). Refcount anyone ?
1531 */
1532}
1533
Willy Tarreau0a0f6a72021-02-12 13:52:11 +01001534/* delete a defproxy from the tree if still in it, frees its content and its
1535 * storage. Nothing is done if <px> is NULL or if it doesn't have PR_CAP_DEF
1536 * set, allowing to pass it the direct result of a lookup function.
1537 */
1538void proxy_destroy_defaults(struct proxy *px)
1539{
1540 if (!px)
1541 return;
1542 if (!(px->cap & PR_CAP_DEF))
1543 return;
Christopher Faulet27c8d202021-10-13 09:50:53 +02001544 BUG_ON(px->conf.refcount != 0);
Willy Tarreau0a0f6a72021-02-12 13:52:11 +01001545 ebpt_delete(&px->conf.by_name);
1546 proxy_free_defaults(px);
1547 free(px);
1548}
1549
Christopher Faulet27c8d202021-10-13 09:50:53 +02001550/* delete all unreferenced default proxies. A default proxy is unreferenced if
1551 * its refcount is equal to zero.
1552 */
1553void proxy_destroy_all_unref_defaults()
Willy Tarreaue90904d2021-02-12 14:08:31 +01001554{
1555 struct ebpt_node *n;
1556
Christopher Faulet27c8d202021-10-13 09:50:53 +02001557 n = ebpt_first(&defproxy_by_name);
1558 while (n) {
Willy Tarreaue90904d2021-02-12 14:08:31 +01001559 struct proxy *px = container_of(n, struct proxy, conf.by_name);
1560 BUG_ON(!(px->cap & PR_CAP_DEF));
Christopher Faulet27c8d202021-10-13 09:50:53 +02001561 n = ebpt_next(n);
1562 if (!px->conf.refcount)
1563 proxy_destroy_defaults(px);
Willy Tarreaue90904d2021-02-12 14:08:31 +01001564 }
1565}
1566
Christopher Faulet27c8d202021-10-13 09:50:53 +02001567/* Add a reference on the default proxy <defpx> for the proxy <px> Nothing is
1568 * done if <px> already references <defpx>. Otherwise, the default proxy
1569 * refcount is incremented by one. For now, this operation is not thread safe
1570 * and is perform during init stage only.
1571 */
1572void proxy_ref_defaults(struct proxy *px, struct proxy *defpx)
1573{
1574 if (px->defpx == defpx)
1575 return;
1576 BUG_ON(px->defpx != NULL);
1577 px->defpx = defpx;
1578 defpx->conf.refcount++;
1579}
1580
1581/* proxy <px> removes its reference on its default proxy. The default proxy
1582 * refcount is decremented by one. If it was the last reference, the
1583 * corresponding default proxy is destroyed. For now this operation is not
1584 * thread safe and is performed during deinit staged only.
1585*/
1586void proxy_unref_defaults(struct proxy *px)
1587{
1588 if (px->defpx == NULL)
1589 return;
1590 if (!--px->defpx->conf.refcount)
1591 proxy_destroy_defaults(px->defpx);
1592 px->defpx = NULL;
1593}
1594
Amaury Denoyelle476b9ad2021-03-23 17:27:05 +01001595/* Allocates a new proxy <name> of type <cap>.
1596 * Returns the proxy instance on success. On error, NULL is returned.
Willy Tarreau76838932021-02-12 08:49:47 +01001597 */
Amaury Denoyelle476b9ad2021-03-23 17:27:05 +01001598struct proxy *alloc_new_proxy(const char *name, unsigned int cap, char **errmsg)
Willy Tarreau76838932021-02-12 08:49:47 +01001599{
Willy Tarreau76838932021-02-12 08:49:47 +01001600 struct proxy *curproxy;
Willy Tarreau76838932021-02-12 08:49:47 +01001601
1602 if ((curproxy = calloc(1, sizeof(*curproxy))) == NULL) {
1603 memprintf(errmsg, "proxy '%s': out of memory", name);
1604 goto fail;
1605 }
1606
1607 init_new_proxy(curproxy);
Willy Tarreau76838932021-02-12 08:49:47 +01001608 curproxy->last_change = now.tv_sec;
1609 curproxy->id = strdup(name);
1610 curproxy->cap = cap;
Amaury Denoyelle6f26fae2021-03-24 10:49:34 +01001611
William Lallemand6bb77b92021-07-28 15:48:16 +02001612 if (!(cap & PR_CAP_INT))
Amaury Denoyelle6f26fae2021-03-24 10:49:34 +01001613 proxy_store_name(curproxy);
Willy Tarreau76838932021-02-12 08:49:47 +01001614
Amaury Denoyelle476b9ad2021-03-23 17:27:05 +01001615 done:
1616 return curproxy;
1617
1618 fail:
1619 /* Note: in case of fatal error here, we WILL make valgrind unhappy,
1620 * but its not worth trying to unroll everything here just before
1621 * quitting.
1622 */
1623 free(curproxy);
1624 return NULL;
1625}
1626
1627/* Copy the proxy settings from <defproxy> to <curproxy>.
1628 * Returns 0 on success.
1629 * Returns 1 on error. <errmsg> will be allocated with an error description.
1630 */
1631static int proxy_defproxy_cpy(struct proxy *curproxy, const struct proxy *defproxy,
1632 char **errmsg)
1633{
1634 struct logsrv *tmplogsrv;
1635 char *tmpmsg = NULL;
Willy Tarreau3b06eae2021-02-12 09:15:16 +01001636
1637 /* set default values from the specified default proxy */
Christopher Faulet6bb86532022-08-03 11:31:55 +02001638 srv_settings_cpy(&curproxy->defsrv, &defproxy->defsrv, 0);
Willy Tarreau76838932021-02-12 08:49:47 +01001639
Christopher Faulet56717802021-10-13 10:10:09 +02001640 curproxy->flags = (defproxy->flags & PR_FL_DISABLED); /* Only inherit from disabled flag */
Willy Tarreau76838932021-02-12 08:49:47 +01001641 curproxy->options = defproxy->options;
1642 curproxy->options2 = defproxy->options2;
1643 curproxy->no_options = defproxy->no_options;
1644 curproxy->no_options2 = defproxy->no_options2;
Christopher Faulet5d1def62021-02-26 09:19:15 +01001645 curproxy->except_xff_net = defproxy->except_xff_net;
1646 curproxy->except_xot_net = defproxy->except_xot_net;
Willy Tarreau76838932021-02-12 08:49:47 +01001647 curproxy->retry_type = defproxy->retry_type;
Christopher Fauletee08d6c2021-10-13 15:40:15 +02001648 curproxy->tcp_req.inspect_delay = defproxy->tcp_req.inspect_delay;
1649 curproxy->tcp_rep.inspect_delay = defproxy->tcp_rep.inspect_delay;
Willy Tarreau76838932021-02-12 08:49:47 +01001650
Tim Duesterhusb50ab842022-03-05 00:52:41 +01001651 if (isttest(defproxy->fwdfor_hdr_name))
1652 curproxy->fwdfor_hdr_name = istdup(defproxy->fwdfor_hdr_name);
Willy Tarreau76838932021-02-12 08:49:47 +01001653
Tim Duesterhuse502c3e2022-03-05 00:52:42 +01001654 if (isttest(defproxy->orgto_hdr_name))
1655 curproxy->orgto_hdr_name = istdup(defproxy->orgto_hdr_name);
Willy Tarreau76838932021-02-12 08:49:47 +01001656
Tim Duesterhusb4b03772022-03-05 00:52:43 +01001657 if (isttest(defproxy->server_id_hdr_name))
1658 curproxy->server_id_hdr_name = istdup(defproxy->server_id_hdr_name);
Willy Tarreau76838932021-02-12 08:49:47 +01001659
1660 /* initialize error relocations */
1661 if (!proxy_dup_default_conf_errors(curproxy, defproxy, &tmpmsg)) {
1662 memprintf(errmsg, "proxy '%s' : %s", curproxy->id, tmpmsg);
Amaury Denoyelle476b9ad2021-03-23 17:27:05 +01001663 free(tmpmsg);
1664 return 1;
Willy Tarreau76838932021-02-12 08:49:47 +01001665 }
1666
1667 if (curproxy->cap & PR_CAP_FE) {
1668 curproxy->maxconn = defproxy->maxconn;
1669 curproxy->backlog = defproxy->backlog;
1670 curproxy->fe_sps_lim = defproxy->fe_sps_lim;
1671
1672 curproxy->to_log = defproxy->to_log & ~LW_COOKIE & ~LW_REQHDR & ~ LW_RSPHDR;
1673 curproxy->max_out_conns = defproxy->max_out_conns;
1674
1675 curproxy->clitcpka_cnt = defproxy->clitcpka_cnt;
1676 curproxy->clitcpka_idle = defproxy->clitcpka_idle;
1677 curproxy->clitcpka_intvl = defproxy->clitcpka_intvl;
1678 }
1679
1680 if (curproxy->cap & PR_CAP_BE) {
1681 curproxy->lbprm.algo = defproxy->lbprm.algo;
1682 curproxy->lbprm.hash_balance_factor = defproxy->lbprm.hash_balance_factor;
1683 curproxy->fullconn = defproxy->fullconn;
1684 curproxy->conn_retries = defproxy->conn_retries;
1685 curproxy->redispatch_after = defproxy->redispatch_after;
1686 curproxy->max_ka_queue = defproxy->max_ka_queue;
1687
1688 curproxy->tcpcheck_rules.flags = (defproxy->tcpcheck_rules.flags & ~TCPCHK_RULES_UNUSED_RS);
1689 curproxy->tcpcheck_rules.list = defproxy->tcpcheck_rules.list;
1690 if (!LIST_ISEMPTY(&defproxy->tcpcheck_rules.preset_vars)) {
1691 if (!dup_tcpcheck_vars(&curproxy->tcpcheck_rules.preset_vars,
1692 &defproxy->tcpcheck_rules.preset_vars)) {
Amaury Denoyelle476b9ad2021-03-23 17:27:05 +01001693 memprintf(errmsg, "proxy '%s': failed to duplicate tcpcheck preset-vars", curproxy->id);
1694 return 1;
Willy Tarreau76838932021-02-12 08:49:47 +01001695 }
1696 }
1697
1698 curproxy->ck_opts = defproxy->ck_opts;
1699 if (defproxy->cookie_name)
1700 curproxy->cookie_name = strdup(defproxy->cookie_name);
1701 curproxy->cookie_len = defproxy->cookie_len;
1702
1703 if (defproxy->dyncookie_key)
1704 curproxy->dyncookie_key = strdup(defproxy->dyncookie_key);
1705 if (defproxy->cookie_domain)
1706 curproxy->cookie_domain = strdup(defproxy->cookie_domain);
1707
1708 if (defproxy->cookie_maxidle)
1709 curproxy->cookie_maxidle = defproxy->cookie_maxidle;
1710
1711 if (defproxy->cookie_maxlife)
1712 curproxy->cookie_maxlife = defproxy->cookie_maxlife;
1713
1714 if (defproxy->rdp_cookie_name)
1715 curproxy->rdp_cookie_name = strdup(defproxy->rdp_cookie_name);
1716 curproxy->rdp_cookie_len = defproxy->rdp_cookie_len;
1717
1718 if (defproxy->cookie_attrs)
1719 curproxy->cookie_attrs = strdup(defproxy->cookie_attrs);
1720
1721 if (defproxy->lbprm.arg_str)
1722 curproxy->lbprm.arg_str = strdup(defproxy->lbprm.arg_str);
1723 curproxy->lbprm.arg_len = defproxy->lbprm.arg_len;
1724 curproxy->lbprm.arg_opt1 = defproxy->lbprm.arg_opt1;
1725 curproxy->lbprm.arg_opt2 = defproxy->lbprm.arg_opt2;
1726 curproxy->lbprm.arg_opt3 = defproxy->lbprm.arg_opt3;
1727
1728 if (defproxy->conn_src.iface_name)
1729 curproxy->conn_src.iface_name = strdup(defproxy->conn_src.iface_name);
1730 curproxy->conn_src.iface_len = defproxy->conn_src.iface_len;
1731 curproxy->conn_src.opts = defproxy->conn_src.opts;
1732#if defined(CONFIG_HAP_TRANSPARENT)
1733 curproxy->conn_src.tproxy_addr = defproxy->conn_src.tproxy_addr;
1734#endif
1735 curproxy->load_server_state_from_file = defproxy->load_server_state_from_file;
1736
1737 curproxy->srvtcpka_cnt = defproxy->srvtcpka_cnt;
1738 curproxy->srvtcpka_idle = defproxy->srvtcpka_idle;
1739 curproxy->srvtcpka_intvl = defproxy->srvtcpka_intvl;
1740 }
1741
1742 if (curproxy->cap & PR_CAP_FE) {
1743 if (defproxy->capture_name)
1744 curproxy->capture_name = strdup(defproxy->capture_name);
1745 curproxy->capture_namelen = defproxy->capture_namelen;
1746 curproxy->capture_len = defproxy->capture_len;
Christopher Faulet57962282022-04-25 14:30:58 +02001747
1748 curproxy->nb_req_cap = defproxy->nb_req_cap;
1749 curproxy->req_cap = defproxy->req_cap;
1750
1751 curproxy->nb_rsp_cap = defproxy->nb_rsp_cap;
1752 curproxy->rsp_cap = defproxy->rsp_cap;
Willy Tarreau76838932021-02-12 08:49:47 +01001753 }
1754
1755 if (curproxy->cap & PR_CAP_FE) {
1756 curproxy->timeout.client = defproxy->timeout.client;
1757 curproxy->timeout.clientfin = defproxy->timeout.clientfin;
1758 curproxy->timeout.tarpit = defproxy->timeout.tarpit;
1759 curproxy->timeout.httpreq = defproxy->timeout.httpreq;
1760 curproxy->timeout.httpka = defproxy->timeout.httpka;
Tim Duesterhus4b1fcaa2022-03-05 00:52:40 +01001761 if (isttest(defproxy->monitor_uri))
1762 curproxy->monitor_uri = istdup(defproxy->monitor_uri);
Willy Tarreau76838932021-02-12 08:49:47 +01001763 if (defproxy->defbe.name)
1764 curproxy->defbe.name = strdup(defproxy->defbe.name);
1765
1766 /* get either a pointer to the logformat string or a copy of it */
1767 curproxy->conf.logformat_string = defproxy->conf.logformat_string;
1768 if (curproxy->conf.logformat_string &&
1769 curproxy->conf.logformat_string != default_http_log_format &&
1770 curproxy->conf.logformat_string != default_tcp_log_format &&
Remi Tricot-Le Breton98b930d2021-07-29 09:45:52 +02001771 curproxy->conf.logformat_string != clf_http_log_format &&
1772 curproxy->conf.logformat_string != default_https_log_format)
Willy Tarreau76838932021-02-12 08:49:47 +01001773 curproxy->conf.logformat_string = strdup(curproxy->conf.logformat_string);
1774
1775 if (defproxy->conf.lfs_file) {
1776 curproxy->conf.lfs_file = strdup(defproxy->conf.lfs_file);
1777 curproxy->conf.lfs_line = defproxy->conf.lfs_line;
1778 }
1779
1780 /* get either a pointer to the logformat string for RFC5424 structured-data or a copy of it */
1781 curproxy->conf.logformat_sd_string = defproxy->conf.logformat_sd_string;
1782 if (curproxy->conf.logformat_sd_string &&
1783 curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
1784 curproxy->conf.logformat_sd_string = strdup(curproxy->conf.logformat_sd_string);
1785
1786 if (defproxy->conf.lfsd_file) {
1787 curproxy->conf.lfsd_file = strdup(defproxy->conf.lfsd_file);
1788 curproxy->conf.lfsd_line = defproxy->conf.lfsd_line;
1789 }
Remi Tricot-Le Bretonfe21fe72021-08-31 12:08:52 +02001790
1791 curproxy->conf.error_logformat_string = defproxy->conf.error_logformat_string;
1792 if (curproxy->conf.error_logformat_string)
1793 curproxy->conf.error_logformat_string = strdup(curproxy->conf.error_logformat_string);
1794
1795 if (defproxy->conf.elfs_file) {
1796 curproxy->conf.elfs_file = strdup(defproxy->conf.elfs_file);
1797 curproxy->conf.elfs_line = defproxy->conf.elfs_line;
1798 }
Willy Tarreau76838932021-02-12 08:49:47 +01001799 }
1800
1801 if (curproxy->cap & PR_CAP_BE) {
1802 curproxy->timeout.connect = defproxy->timeout.connect;
1803 curproxy->timeout.server = defproxy->timeout.server;
1804 curproxy->timeout.serverfin = defproxy->timeout.serverfin;
1805 curproxy->timeout.check = defproxy->timeout.check;
1806 curproxy->timeout.queue = defproxy->timeout.queue;
1807 curproxy->timeout.tarpit = defproxy->timeout.tarpit;
1808 curproxy->timeout.httpreq = defproxy->timeout.httpreq;
1809 curproxy->timeout.httpka = defproxy->timeout.httpka;
1810 curproxy->timeout.tunnel = defproxy->timeout.tunnel;
1811 curproxy->conn_src.source_addr = defproxy->conn_src.source_addr;
1812 }
1813
1814 curproxy->mode = defproxy->mode;
1815 curproxy->uri_auth = defproxy->uri_auth; /* for stats */
1816
1817 /* copy default logsrvs to curproxy */
1818 list_for_each_entry(tmplogsrv, &defproxy->logsrvs, list) {
1819 struct logsrv *node = malloc(sizeof(*node));
1820
1821 if (!node) {
Amaury Denoyelle476b9ad2021-03-23 17:27:05 +01001822 memprintf(errmsg, "proxy '%s': out of memory", curproxy->id);
1823 return 1;
Willy Tarreau76838932021-02-12 08:49:47 +01001824 }
1825 memcpy(node, tmplogsrv, sizeof(struct logsrv));
1826 node->ref = tmplogsrv->ref;
1827 LIST_INIT(&node->list);
Willy Tarreau2b718102021-04-21 07:32:39 +02001828 LIST_APPEND(&curproxy->logsrvs, &node->list);
Willy Tarreau211ea252022-03-17 19:47:33 +01001829 node->ring_name = tmplogsrv->ring_name ? strdup(tmplogsrv->ring_name) : NULL;
1830 node->conf.file = strdup(tmplogsrv->conf.file);
1831 node->conf.line = tmplogsrv->conf.line;
Willy Tarreau76838932021-02-12 08:49:47 +01001832 }
1833
1834 curproxy->conf.uniqueid_format_string = defproxy->conf.uniqueid_format_string;
1835 if (curproxy->conf.uniqueid_format_string)
1836 curproxy->conf.uniqueid_format_string = strdup(curproxy->conf.uniqueid_format_string);
1837
1838 chunk_dup(&curproxy->log_tag, &defproxy->log_tag);
1839
1840 if (defproxy->conf.uif_file) {
1841 curproxy->conf.uif_file = strdup(defproxy->conf.uif_file);
1842 curproxy->conf.uif_line = defproxy->conf.uif_line;
1843 }
1844
1845 /* copy default header unique id */
1846 if (isttest(defproxy->header_unique_id)) {
1847 const struct ist copy = istdup(defproxy->header_unique_id);
1848
1849 if (!isttest(copy)) {
Amaury Denoyelle476b9ad2021-03-23 17:27:05 +01001850 memprintf(errmsg, "proxy '%s': out of memory for unique-id-header", curproxy->id);
1851 return 1;
Willy Tarreau76838932021-02-12 08:49:47 +01001852 }
1853 curproxy->header_unique_id = copy;
1854 }
1855
1856 /* default compression options */
1857 if (defproxy->comp != NULL) {
1858 curproxy->comp = calloc(1, sizeof(*curproxy->comp));
Remi Tricot-Le Breton18a82ba2021-05-12 18:07:27 +02001859 if (!curproxy->comp) {
1860 memprintf(errmsg, "proxy '%s': out of memory for default compression options", curproxy->id);
1861 return 1;
1862 }
Willy Tarreau76838932021-02-12 08:49:47 +01001863 curproxy->comp->algos = defproxy->comp->algos;
1864 curproxy->comp->types = defproxy->comp->types;
1865 }
1866
Willy Tarreau76838932021-02-12 08:49:47 +01001867 if (defproxy->check_path)
1868 curproxy->check_path = strdup(defproxy->check_path);
1869 if (defproxy->check_command)
1870 curproxy->check_command = strdup(defproxy->check_command);
1871
1872 if (defproxy->email_alert.mailers.name)
1873 curproxy->email_alert.mailers.name = strdup(defproxy->email_alert.mailers.name);
1874 if (defproxy->email_alert.from)
1875 curproxy->email_alert.from = strdup(defproxy->email_alert.from);
1876 if (defproxy->email_alert.to)
1877 curproxy->email_alert.to = strdup(defproxy->email_alert.to);
1878 if (defproxy->email_alert.myhostname)
1879 curproxy->email_alert.myhostname = strdup(defproxy->email_alert.myhostname);
1880 curproxy->email_alert.level = defproxy->email_alert.level;
1881 curproxy->email_alert.set = defproxy->email_alert.set;
Willy Tarreau3b06eae2021-02-12 09:15:16 +01001882
Amaury Denoyelle476b9ad2021-03-23 17:27:05 +01001883 return 0;
1884}
1885
1886/* Allocates a new proxy <name> of type <cap> found at position <file:linenum>,
1887 * preset it from the defaults of <defproxy> and returns it. In case of error,
1888 * an alert is printed and NULL is returned.
1889 */
1890struct proxy *parse_new_proxy(const char *name, unsigned int cap,
1891 const char *file, int linenum,
1892 const struct proxy *defproxy)
1893{
1894 struct proxy *curproxy = NULL;
Willy Tarreau282b6a72022-02-24 16:37:19 +01001895 char *errmsg = NULL;
Amaury Denoyelle476b9ad2021-03-23 17:27:05 +01001896
1897 if (!(curproxy = alloc_new_proxy(name, cap, &errmsg))) {
1898 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
1899 free(errmsg);
1900 return NULL;
1901 }
1902
1903 if (defproxy) {
1904 if (proxy_defproxy_cpy(curproxy, defproxy, &errmsg)) {
1905 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
1906 free(errmsg);
1907
1908 ha_free(&curproxy);
1909 return NULL;
1910 }
1911 }
1912 else {
1913 proxy_preset_defaults(curproxy);
1914 }
1915
1916 curproxy->conf.args.file = curproxy->conf.file = strdup(file);
1917 curproxy->conf.args.line = curproxy->conf.line = linenum;
1918
Willy Tarreau76838932021-02-12 08:49:47 +01001919 return curproxy;
Willy Tarreau76838932021-02-12 08:49:47 +01001920}
1921
Aurelien DARRAGONd46f4372022-09-09 15:51:37 +02001922/* to be called under the proxy lock after pausing some listeners. This will
1923 * automatically update the p->flags flag
1924 */
1925void proxy_cond_pause(struct proxy *p)
1926{
1927 if (p->li_ready)
1928 return;
1929 p->flags |= PR_FL_PAUSED;
1930}
1931
1932/* to be called under the proxy lock after resuming some listeners. This will
1933 * automatically update the p->flags flag
1934 */
1935void proxy_cond_resume(struct proxy *p)
1936{
1937 if (!p->li_ready)
1938 return;
1939 p->flags &= ~PR_FL_PAUSED;
1940}
1941
Willy Tarreauacde1522020-10-07 16:31:39 +02001942/* to be called under the proxy lock after stopping some listeners. This will
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001943 * automatically update the p->flags flag after stopping the last one, and
Willy Tarreauacde1522020-10-07 16:31:39 +02001944 * will emit a log indicating the proxy's condition. The function is idempotent
1945 * so that it will not emit multiple logs; a proxy will be disabled only once.
1946 */
1947void proxy_cond_disable(struct proxy *p)
1948{
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001949 if (p->flags & (PR_FL_DISABLED|PR_FL_STOPPED))
Willy Tarreauacde1522020-10-07 16:31:39 +02001950 return;
1951
1952 if (p->li_ready + p->li_paused > 0)
1953 return;
1954
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001955 p->flags |= PR_FL_STOPPED;
Willy Tarreauacde1522020-10-07 16:31:39 +02001956
Willy Tarreauacde1522020-10-07 16:31:39 +02001957 /* Note: syslog proxies use their own loggers so while it's somewhat OK
1958 * to report them being stopped as a warning, we must not spam their log
1959 * servers which are in fact production servers. For other types (CLI,
1960 * peers, etc) we must not report them at all as they're not really on
1961 * the data plane but on the control plane.
1962 */
1963 if (p->mode == PR_MODE_TCP || p->mode == PR_MODE_HTTP || p->mode == PR_MODE_SYSLOG)
1964 ha_warning("Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
1965 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
1966
1967 if (p->mode == PR_MODE_TCP || p->mode == PR_MODE_HTTP)
1968 send_log(p, LOG_WARNING, "Proxy %s stopped (cumulated conns: FE: %lld, BE: %lld).\n",
1969 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
1970
Willy Tarreauacde1522020-10-07 16:31:39 +02001971 if (p->table && p->table->size && p->table->sync_task)
1972 task_wakeup(p->table->sync_task, TASK_WOKEN_MSG);
1973
1974 if (p->task)
1975 task_wakeup(p->task, TASK_WOKEN_MSG);
1976}
1977
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +01001978/*
Willy Tarreau918ff602011-07-25 16:33:49 +02001979 * This is the proxy management task. It enables proxies when there are enough
Willy Tarreau87b09662015-04-03 00:22:06 +02001980 * free streams, or stops them when the table is full. It is designed to be
Willy Tarreau918ff602011-07-25 16:33:49 +02001981 * called as a task which is woken up upon stopping or when rate limiting must
1982 * be enforced.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001983 */
Willy Tarreau144f84a2021-03-02 16:09:26 +01001984struct task *manage_proxy(struct task *t, void *context, unsigned int state)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001985{
Olivier Houchard9f6af332018-05-25 14:04:04 +02001986 struct proxy *p = context;
Willy Tarreau918ff602011-07-25 16:33:49 +02001987 int next = TICK_ETERNITY;
Willy Tarreau79584222009-03-06 09:18:27 +01001988 unsigned int wait;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001989
Willy Tarreau918ff602011-07-25 16:33:49 +02001990 /* We should periodically try to enable listeners waiting for a
1991 * global resource here.
1992 */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001993
Willy Tarreau918ff602011-07-25 16:33:49 +02001994 /* first, let's check if we need to stop the proxy */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001995 if (unlikely(stopping && !(p->flags & (PR_FL_DISABLED|PR_FL_STOPPED)))) {
Willy Tarreau918ff602011-07-25 16:33:49 +02001996 int t;
1997 t = tick_remain(now_ms, p->stop_time);
1998 if (t == 0) {
Willy Tarreau918ff602011-07-25 16:33:49 +02001999 stop_proxy(p);
2000 /* try to free more memory */
Willy Tarreaubafbe012017-11-24 17:34:44 +01002001 pool_gc(NULL);
Willy Tarreau918ff602011-07-25 16:33:49 +02002002 }
2003 else {
2004 next = tick_first(next, p->stop_time);
2005 }
2006 }
Willy Tarreauf3f8c702011-07-25 07:37:28 +02002007
Willy Tarreau3a925c12013-09-04 17:54:01 +02002008 /* If the proxy holds a stick table, we need to purge all unused
2009 * entries. These are all the ones in the table with ref_cnt == 0
2010 * and all the ones in the pool used to allocate new entries. Any
Willy Tarreau87b09662015-04-03 00:22:06 +02002011 * entry attached to an existing stream waiting for a store will
Willy Tarreau3a925c12013-09-04 17:54:01 +02002012 * be in neither list. Any entry being dumped will have ref_cnt > 0.
2013 * However we protect tables that are being synced to peers.
2014 */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002015 if (unlikely(stopping && (p->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) && p->table && p->table->current)) {
Emeric Brun2cc201f2021-04-23 12:21:26 +02002016
2017 if (!p->table->refcnt) {
2018 /* !table->refcnt means there
2019 * is no more pending full resync
2020 * to push to a new process and
2021 * we are free to flush the table.
2022 */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002023 stktable_trash_oldest(p->table, p->table->current);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002024 pool_gc(NULL);
Willy Tarreau3a925c12013-09-04 17:54:01 +02002025 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002026 if (p->table->current) {
Willy Tarreau3a925c12013-09-04 17:54:01 +02002027 /* some entries still remain, let's recheck in one second */
2028 next = tick_first(next, tick_add(now_ms, 1000));
2029 }
2030 }
2031
Willy Tarreau918ff602011-07-25 16:33:49 +02002032 /* the rest below is just for frontends */
2033 if (!(p->cap & PR_CAP_FE))
2034 goto out;
Willy Tarreauf3f8c702011-07-25 07:37:28 +02002035
Willy Tarreau918ff602011-07-25 16:33:49 +02002036 /* check the various reasons we may find to block the frontend */
Willy Tarreau6b3bf732020-09-24 07:35:46 +02002037 if (unlikely(p->feconn >= p->maxconn))
Willy Tarreau918ff602011-07-25 16:33:49 +02002038 goto out;
Willy Tarreau3a7d2072009-03-05 23:48:25 +01002039
Willy Tarreau918ff602011-07-25 16:33:49 +02002040 if (p->fe_sps_lim &&
2041 (wait = next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0))) {
2042 /* we're blocking because a limit was reached on the number of
2043 * requests/s on the frontend. We want to re-check ASAP, which
2044 * means in 1 ms before estimated expiration date, because the
2045 * timer will have settled down.
2046 */
2047 next = tick_first(next, tick_add(now_ms, wait));
2048 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002049 }
Willy Tarreau918ff602011-07-25 16:33:49 +02002050
2051 /* The proxy is not limited so we can re-enable any waiting listener */
Willy Tarreau241797a2019-12-10 14:10:52 +01002052 dequeue_proxy_listeners(p);
Willy Tarreau918ff602011-07-25 16:33:49 +02002053 out:
2054 t->expire = next;
2055 task_queue(t);
2056 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002057}
2058
2059
Willy Tarreau10080712021-09-07 10:49:45 +02002060static int proxy_parse_grace(char **args, int section_type, struct proxy *curpx,
2061 const struct proxy *defpx, const char *file, int line,
2062 char **err)
2063{
2064 const char *res;
2065
2066 if (!*args[1]) {
2067 memprintf(err, "'%s' expects <time> as argument.\n", args[0]);
2068 return -1;
2069 }
2070 res = parse_time_err(args[1], &global.grace_delay, TIME_UNIT_MS);
2071 if (res == PARSE_TIME_OVER) {
2072 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
2073 args[1], args[0]);
2074 return -1;
2075 }
2076 else if (res == PARSE_TIME_UNDER) {
2077 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
2078 args[1], args[0]);
2079 return -1;
2080 }
2081 else if (res) {
2082 memprintf(err, "unexpected character '%c' in argument to <%s>.\n", *res, args[0]);
2083 return -1;
2084 }
2085 return 0;
2086}
2087
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002088static int proxy_parse_hard_stop_after(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01002089 const struct proxy *defpx, const char *file, int line,
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002090 char **err)
2091{
2092 const char *res;
2093
2094 if (!*args[1]) {
2095 memprintf(err, "'%s' expects <time> as argument.\n", args[0]);
2096 return -1;
2097 }
2098 res = parse_time_err(args[1], &global.hard_stop_after, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02002099 if (res == PARSE_TIME_OVER) {
2100 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
2101 args[1], args[0]);
2102 return -1;
2103 }
2104 else if (res == PARSE_TIME_UNDER) {
2105 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
2106 args[1], args[0]);
2107 return -1;
2108 }
2109 else if (res) {
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002110 memprintf(err, "unexpected character '%c' in argument to <%s>.\n", *res, args[0]);
2111 return -1;
2112 }
2113 return 0;
2114}
2115
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02002116static int proxy_parse_close_spread_time(char **args, int section_type, struct proxy *curpx,
2117 const struct proxy *defpx, const char *file, int line,
2118 char **err)
2119{
2120 const char *res;
2121
2122 if (!*args[1]) {
2123 memprintf(err, "'%s' expects <time> as argument.\n", args[0]);
2124 return -1;
2125 }
Remi Tricot-Le Breton4d7fdc62022-04-26 15:17:18 +02002126
2127 /* If close-spread-time is set to "infinite", disable the active connection
2128 * closing during soft-stop.
2129 */
2130 if (strcmp(args[1], "infinite") == 0) {
2131 global.tune.options |= GTUNE_DISABLE_ACTIVE_CLOSE;
2132 global.close_spread_time = TICK_ETERNITY;
2133 return 0;
2134 }
2135
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02002136 res = parse_time_err(args[1], &global.close_spread_time, TIME_UNIT_MS);
2137 if (res == PARSE_TIME_OVER) {
2138 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
2139 args[1], args[0]);
2140 return -1;
2141 }
2142 else if (res == PARSE_TIME_UNDER) {
2143 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
2144 args[1], args[0]);
2145 return -1;
2146 }
2147 else if (res) {
2148 memprintf(err, "unexpected character '%c' in argument to <%s>.\n", *res, args[0]);
2149 return -1;
2150 }
Remi Tricot-Le Breton4d7fdc62022-04-26 15:17:18 +02002151 global.tune.options &= ~GTUNE_DISABLE_ACTIVE_CLOSE;
2152
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02002153 return 0;
2154}
2155
Willy Tarreau144f84a2021-03-02 16:09:26 +01002156struct task *hard_stop(struct task *t, void *context, unsigned int state)
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002157{
2158 struct proxy *p;
2159 struct stream *s;
Willy Tarreau0d038252021-02-24 11:13:59 +01002160 int thr;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002161
2162 if (killed) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002163 ha_warning("Some tasks resisted to hard-stop, exiting now.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002164 send_log(NULL, LOG_WARNING, "Some tasks resisted to hard-stop, exiting now.\n");
Willy Tarreau7067b3a2019-06-02 11:11:29 +02002165 killed = 2;
Willy Tarreau0d038252021-02-24 11:13:59 +01002166 for (thr = 0; thr < global.nbthread; thr++)
Willy Tarreaub2f38c12023-01-19 19:14:18 +01002167 if (_HA_ATOMIC_LOAD(&ha_thread_info[thr].tg->threads_enabled) & ha_thread_info[thr].ltid_bit)
Willy Tarreau0d038252021-02-24 11:13:59 +01002168 wake_thread(thr);
Willy Tarreau7067b3a2019-06-02 11:11:29 +02002169 t->expire = TICK_ETERNITY;
2170 return t;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002171 }
2172
Christopher Faulet767a84b2017-11-24 16:50:31 +01002173 ha_warning("soft-stop running for too long, performing a hard-stop.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002174 send_log(NULL, LOG_WARNING, "soft-stop running for too long, performing a hard-stop.\n");
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002175 p = proxies_list;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002176 while (p) {
2177 if ((p->cap & PR_CAP_FE) && (p->feconn > 0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002178 ha_warning("Proxy %s hard-stopped (%d remaining conns will be closed).\n",
2179 p->id, p->feconn);
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002180 send_log(p, LOG_WARNING, "Proxy %s hard-stopped (%d remaining conns will be closed).\n",
2181 p->id, p->feconn);
2182 }
2183 p = p->next;
2184 }
Willy Tarreau92b887e2021-02-24 11:08:56 +01002185
2186 thread_isolate();
Willy Tarreaua698eb62021-02-24 10:37:01 +01002187
2188 for (thr = 0; thr < global.nbthread; thr++) {
Willy Tarreaub4e34762021-09-30 19:02:18 +02002189 list_for_each_entry(s, &ha_thread_ctx[thr].streams, list) {
Willy Tarreaua698eb62021-02-24 10:37:01 +01002190 stream_shutdown(s, SF_ERR_KILLED);
2191 }
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002192 }
Willy Tarreaua698eb62021-02-24 10:37:01 +01002193
Willy Tarreau92b887e2021-02-24 11:08:56 +01002194 thread_release();
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002195
2196 killed = 1;
2197 t->expire = tick_add(now_ms, MS_TO_TICKS(1000));
2198 return t;
2199}
2200
Willy Tarreau10080712021-09-07 10:49:45 +02002201/* perform the soft-stop right now (i.e. unbind listeners) */
2202static void do_soft_stop_now()
Willy Tarreaubaaee002006-06-26 02:48:02 +02002203{
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002204 struct task *task;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002205
William Dauchy3894d972019-12-28 15:36:02 +01002206 /* disable busy polling to avoid cpu eating for the new process */
2207 global.tune.options &= ~GTUNE_BUSY_POLLING;
Willy Tarreau10080712021-09-07 10:49:45 +02002208
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02002209 if (tick_isset(global.close_spread_time)) {
2210 global.close_spread_end = tick_add(now_ms, global.close_spread_time);
2211 }
2212
Willy Tarreau10080712021-09-07 10:49:45 +02002213 /* schedule a hard-stop after a delay if needed */
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002214 if (tick_isset(global.hard_stop_after)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02002215 task = task_new_anywhere();
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002216 if (task) {
2217 task->process = hard_stop;
2218 task_schedule(task, tick_add(now_ms, global.hard_stop_after));
2219 }
2220 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002221 ha_alert("out of memory trying to allocate the hard-stop task.\n");
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002222 }
2223 }
Willy Tarreau626f3a72020-10-07 16:52:43 +02002224
Willy Tarreau1b927eb2022-07-15 19:15:02 +02002225 /* we isolate so that we have a chance of stopping listeners in other groups */
2226 thread_isolate();
2227
Willy Tarreaueb778242021-06-11 16:27:10 +02002228 /* stop all stoppable listeners */
Willy Tarreau626f3a72020-10-07 16:52:43 +02002229 protocol_stop_now();
2230
Willy Tarreau1b927eb2022-07-15 19:15:02 +02002231 thread_release();
2232
Willy Tarreaud0807c32010-08-27 18:26:11 +02002233 /* signal zero is used to broadcast the "stopping" event */
2234 signal_handler(0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002235}
2236
Willy Tarreau10080712021-09-07 10:49:45 +02002237/* triggered by a soft-stop delayed with `grace` */
2238static struct task *grace_expired(struct task *t, void *context, unsigned int state)
2239{
2240 ha_notice("Grace period expired, proceeding with soft-stop now.\n");
2241 send_log(NULL, LOG_NOTICE, "Grace period expired, proceeding with soft-stop now.\n");
2242 do_soft_stop_now();
2243 task_destroy(t);
2244 return NULL;
2245}
2246
2247/*
2248 * this function disables health-check servers so that the process will quickly be ignored
2249 * by load balancers.
2250 */
2251void soft_stop(void)
2252{
2253 struct task *task;
2254
2255 stopping = 1;
2256
2257 if (tick_isset(global.grace_delay)) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02002258 task = task_new_anywhere();
Willy Tarreau10080712021-09-07 10:49:45 +02002259 if (task) {
2260 ha_notice("Scheduling a soft-stop in %u ms.\n", global.grace_delay);
2261 send_log(NULL, LOG_WARNING, "Scheduling a soft-stop in %u ms.\n", global.grace_delay);
2262 task->process = grace_expired;
2263 task_schedule(task, tick_add(now_ms, global.grace_delay));
2264 return;
2265 }
2266 else {
2267 ha_alert("out of memory trying to allocate the stop-stop task, stopping now.\n");
2268 }
2269 }
2270
2271 /* no grace (or failure to enforce it): stop now */
2272 do_soft_stop_now();
2273}
2274
Willy Tarreaubaaee002006-06-26 02:48:02 +02002275
Willy Tarreaube58c382011-07-24 18:28:10 +02002276/* Temporarily disables listening on all of the proxy's listeners. Upon
Willy Tarreaua17c91b2020-09-24 07:44:34 +02002277 * success, the proxy enters the PR_PAUSED state. The function returns 0
Willy Tarreauce8fe252011-09-07 19:14:57 +02002278 * if it fails, or non-zero on success.
Aurelien DARRAGON7d000772022-09-08 14:35:35 +02002279 * The function takes the proxy's lock so it's safe to
2280 * call from multiple places.
Willy Tarreaubaaee002006-06-26 02:48:02 +02002281 */
Willy Tarreauce8fe252011-09-07 19:14:57 +02002282int pause_proxy(struct proxy *p)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002283{
2284 struct listener *l;
Willy Tarreauce8fe252011-09-07 19:14:57 +02002285
Aurelien DARRAGON7d000772022-09-08 14:35:35 +02002286 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
2287
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002288 if (!(p->cap & PR_CAP_FE) || (p->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) || !p->li_ready)
Aurelien DARRAGON7d000772022-09-08 14:35:35 +02002289 goto end;
Willy Tarreauce8fe252011-09-07 19:14:57 +02002290
Willy Tarreaua17c91b2020-09-24 07:44:34 +02002291 list_for_each_entry(l, &p->conf.listeners, by_fe)
Aurelien DARRAGON00132882022-09-09 15:32:57 +02002292 pause_listener(l, 1);
Willy Tarreauce8fe252011-09-07 19:14:57 +02002293
Willy Tarreaua17c91b2020-09-24 07:44:34 +02002294 if (p->li_ready) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002295 ha_warning("%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
Willy Tarreauce8fe252011-09-07 19:14:57 +02002296 send_log(p, LOG_WARNING, "%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
Aurelien DARRAGON7d000772022-09-08 14:35:35 +02002297 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
Willy Tarreauce8fe252011-09-07 19:14:57 +02002298 return 0;
2299 }
Aurelien DARRAGON7d000772022-09-08 14:35:35 +02002300end:
2301 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
Willy Tarreauce8fe252011-09-07 19:14:57 +02002302 return 1;
Willy Tarreauda250db2008-10-12 12:07:48 +02002303}
2304
Willy Tarreauda250db2008-10-12 12:07:48 +02002305/*
2306 * This function completely stops a proxy and releases its listeners. It has
2307 * to be called when going down in order to release the ports so that another
2308 * process may bind to them. It must also be called on disabled proxies at the
William Lallemandc59f9882018-11-16 16:57:21 +01002309 * end of start-up. If all listeners are closed, the proxy is set to the
Aurelien DARRAGON7d000772022-09-08 14:35:35 +02002310 * PR_STOPPED state.
2311 * The function takes the proxy's lock so it's safe to
Willy Tarreau3de3cd42019-07-24 17:42:44 +02002312 * call from multiple places.
Willy Tarreauda250db2008-10-12 12:07:48 +02002313 */
2314void stop_proxy(struct proxy *p)
2315{
2316 struct listener *l;
2317
Willy Tarreauac66d6b2020-10-20 17:24:27 +02002318 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
Willy Tarreau3de3cd42019-07-24 17:42:44 +02002319
Willy Tarreau322b9b92020-10-07 16:20:34 +02002320 list_for_each_entry(l, &p->conf.listeners, by_fe)
Aurelien DARRAGON00132882022-09-09 15:32:57 +02002321 stop_listener(l, 1, 0);
Willy Tarreau3de3cd42019-07-24 17:42:44 +02002322
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002323 if (!(p->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) && !p->li_ready) {
Willy Tarreauba296872020-10-16 15:10:11 +02002324 /* might be just a backend */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002325 p->flags |= PR_FL_STOPPED;
Willy Tarreauba296872020-10-16 15:10:11 +02002326 }
2327
Willy Tarreauac66d6b2020-10-20 17:24:27 +02002328 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002329}
2330
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02002331/* This function resumes listening on the specified proxy. It scans all of its
2332 * listeners and tries to enable them all. If any of them fails, the proxy is
2333 * put back to the paused state. It returns 1 upon success, or zero if an error
2334 * is encountered.
Aurelien DARRAGON7d000772022-09-08 14:35:35 +02002335 * The function takes the proxy's lock so it's safe to
2336 * call from multiple places.
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02002337 */
2338int resume_proxy(struct proxy *p)
2339{
2340 struct listener *l;
2341 int fail;
2342
Aurelien DARRAGON7d000772022-09-08 14:35:35 +02002343 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
2344
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002345 if ((p->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) || !p->li_paused)
Aurelien DARRAGON7d000772022-09-08 14:35:35 +02002346 goto end;
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02002347
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02002348 fail = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +02002349 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Aurelien DARRAGON00132882022-09-09 15:32:57 +02002350 if (!resume_listener(l, 1)) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02002351 int port;
2352
Willy Tarreau37159062020-08-27 07:48:42 +02002353 port = get_host_port(&l->rx.addr);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02002354 if (port) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002355 ha_warning("Port %d busy while trying to enable %s %s.\n",
2356 port, proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02002357 send_log(p, LOG_WARNING, "Port %d busy while trying to enable %s %s.\n",
2358 port, proxy_cap_str(p->cap), p->id);
2359 }
2360 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002361 ha_warning("Bind on socket %d busy while trying to enable %s %s.\n",
2362 l->luid, proxy_cap_str(p->cap), p->id);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02002363 send_log(p, LOG_WARNING, "Bind on socket %d busy while trying to enable %s %s.\n",
2364 l->luid, proxy_cap_str(p->cap), p->id);
2365 }
2366
2367 /* Another port might have been enabled. Let's stop everything. */
2368 fail = 1;
2369 break;
2370 }
2371 }
2372
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02002373 if (fail) {
Aurelien DARRAGON7d000772022-09-08 14:35:35 +02002374 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
2375 /* pause_proxy will take PROXY_LOCK */
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02002376 pause_proxy(p);
2377 return 0;
2378 }
Aurelien DARRAGON7d000772022-09-08 14:35:35 +02002379end:
2380 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02002381 return 1;
2382}
2383
Willy Tarreau87b09662015-04-03 00:22:06 +02002384/* Set current stream's backend to <be>. Nothing is done if the
2385 * stream already had a backend assigned, which is indicated by
Willy Tarreaue7dff022015-04-03 01:14:29 +02002386 * s->flags & SF_BE_ASSIGNED.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002387 * All flags, stats and counters which need be updated are updated.
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02002388 * Returns 1 if done, 0 in case of internal error, eg: lack of resource.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002389 */
Willy Tarreau87b09662015-04-03 00:22:06 +02002390int stream_set_backend(struct stream *s, struct proxy *be)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002391{
Christopher Faulet6c1fd982021-03-15 10:42:02 +01002392 unsigned int req_ana;
2393
Willy Tarreaue7dff022015-04-03 01:14:29 +02002394 if (s->flags & SF_BE_ASSIGNED)
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02002395 return 1;
Christopher Faulet41179042016-06-21 11:54:52 +02002396
2397 if (flt_set_stream_backend(s, be) < 0)
2398 return 0;
2399
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002400 s->be = be;
Christopher Fauletff8abcd2017-06-02 15:33:24 +02002401 HA_ATOMIC_UPDATE_MAX(&be->be_counters.conn_max,
Willy Tarreau1db42732021-04-06 11:44:07 +02002402 HA_ATOMIC_ADD_FETCH(&be->beconn, 1));
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002403 proxy_inc_be_ctr(be);
2404
Willy Tarreau87b09662015-04-03 00:22:06 +02002405 /* assign new parameters to the stream from the new backend */
Willy Tarreaucb041662022-05-17 19:44:42 +02002406 s->scb->flags &= ~SC_FL_INDEP_STR;
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02002407 if (be->options2 & PR_O2_INDEPSTR)
Willy Tarreaucb041662022-05-17 19:44:42 +02002408 s->scb->flags |= SC_FL_INDEP_STR;
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02002409
Hongbo Longe39683c2017-03-10 18:41:51 +01002410 if (tick_isset(be->timeout.serverfin))
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02002411 s->scb->hcto = be->timeout.serverfin;
Hongbo Longe39683c2017-03-10 18:41:51 +01002412
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02002413 /* We want to enable the backend-specific analysers except those which
2414 * were already run as part of the frontend/listener. Note that it would
2415 * be more reliable to store the list of analysers that have been run,
2416 * but what we do here is OK for now.
2417 */
Christopher Faulet6c1fd982021-03-15 10:42:02 +01002418 req_ana = be->be_req_ana;
2419 if (!(strm_fe(s)->options & PR_O_WREQ_BODY) && be->options & PR_O_WREQ_BODY) {
2420 /* The backend request to parse a request body while it was not
2421 * performed on the frontend, so add the corresponding analyser
2422 */
2423 req_ana |= AN_REQ_HTTP_BODY;
2424 }
2425 if (IS_HTX_STRM(s) && strm_fe(s)->mode != PR_MODE_HTTP) {
2426 /* The stream was already upgraded to HTTP, so remove analysers
2427 * set during the upgrade
2428 */
2429 req_ana &= ~(AN_REQ_WAIT_HTTP|AN_REQ_HTTP_PROCESS_FE);
2430 }
2431 s->req.analysers |= req_ana & ~(strm_li(s) ? strm_li(s)->analysers : 0);
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02002432
Christopher Faulet6c1fd982021-03-15 10:42:02 +01002433 if (!IS_HTX_STRM(s) && be->mode == PR_MODE_HTTP) {
Christopher Fauletbbe68542019-04-08 10:53:51 +02002434 /* If we chain a TCP frontend to an HTX backend, we must upgrade
2435 * the client mux */
Christopher Fauletae863c62021-03-15 12:03:44 +01002436 if (!stream_set_http_mode(s, NULL))
Christopher Fauleteec7f8a2019-12-20 15:59:20 +01002437 return 0;
Christopher Faulet6c1fd982021-03-15 10:42:02 +01002438 }
2439 else if (IS_HTX_STRM(s) && be->mode != PR_MODE_HTTP) {
2440 /* If a TCP backend is assgiend to an HTX stream, return an
2441 * error. It may happens for a new stream on a previously
2442 * upgraded connections. */
2443 if (!(s->flags & SF_ERR_MASK))
2444 s->flags |= SF_ERR_INTERNAL;
2445 return 0;
2446 }
2447 else {
2448 /* If the target backend requires HTTP processing, we have to allocate
2449 * the HTTP transaction if we did not have one.
2450 */
2451 if (unlikely(!s->txn && be->http_needed && !http_create_txn(s)))
2452 return 0;
Willy Tarreaueee5b512015-04-03 23:46:31 +02002453 }
2454
2455 s->flags |= SF_BE_ASSIGNED;
Willy Tarreau96e31212011-05-30 18:10:30 +02002456 if (be->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01002457 s->req.flags |= CF_NEVER_WAIT;
2458 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +02002459 }
2460
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02002461 return 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02002462}
2463
Willy Tarreau75fb65a2018-09-07 17:43:26 +02002464/* Capture a bad request or response and archive it in the proxy's structure.
2465 * It is relatively protocol-agnostic so it requires that a number of elements
2466 * are passed :
2467 * - <proxy> is the proxy where the error was detected and where the snapshot
2468 * needs to be stored
Joseph Herlant59dd2952018-11-15 11:46:55 -08002469 * - <is_back> indicates that the error happened when receiving the response
Willy Tarreau75fb65a2018-09-07 17:43:26 +02002470 * - <other_end> is a pointer to the proxy on the other side when known
2471 * - <target> is the target of the connection, usually a server or a proxy
2472 * - <sess> is the session which experienced the error
2473 * - <ctx> may be NULL or should contain any info relevant to the protocol
2474 * - <buf> is the buffer containing the offending data
2475 * - <buf_ofs> is the position of this buffer's input data in the input
2476 * stream, starting at zero. It may be passed as zero if unknown.
2477 * - <buf_out> is the portion of <buf->data> which was already forwarded and
2478 * which precedes the buffer's input. The buffer's input starts at
2479 * buf->head + buf_out.
2480 * - <err_pos> is the pointer to the faulty byte in the buffer's input.
2481 * - <show> is the callback to use to display <ctx>. It may be NULL.
2482 */
2483void proxy_capture_error(struct proxy *proxy, int is_back,
2484 struct proxy *other_end, enum obj_type *target,
2485 const struct session *sess,
2486 const struct buffer *buf, long buf_ofs,
2487 unsigned int buf_out, unsigned int err_pos,
2488 const union error_snapshot_ctx *ctx,
2489 void (*show)(struct buffer *, const struct error_snapshot *))
2490{
2491 struct error_snapshot *es;
2492 unsigned int buf_len;
2493 int len1, len2;
Willy Tarreauc55015e2018-09-07 19:02:32 +02002494 unsigned int ev_id;
2495
Willy Tarreau18515722021-04-06 11:57:41 +02002496 ev_id = HA_ATOMIC_FETCH_ADD(&error_snapshot_id, 1);
Willy Tarreauc55015e2018-09-07 19:02:32 +02002497
Willy Tarreau4bc7d902018-09-07 20:07:17 +02002498 buf_len = b_data(buf) - buf_out;
2499
2500 es = malloc(sizeof(*es) + buf_len);
Willy Tarreauc55015e2018-09-07 19:02:32 +02002501 if (!es)
2502 return;
2503
Willy Tarreau4bc7d902018-09-07 20:07:17 +02002504 es->buf_len = buf_len;
2505 es->ev_id = ev_id;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02002506
Christopher Faulet47a72102020-01-06 11:37:00 +01002507 len1 = b_size(buf) - b_peek_ofs(buf, buf_out);
Willy Tarreau75fb65a2018-09-07 17:43:26 +02002508 if (len1 > buf_len)
2509 len1 = buf_len;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02002510
Willy Tarreau4bc7d902018-09-07 20:07:17 +02002511 if (len1) {
Willy Tarreau75fb65a2018-09-07 17:43:26 +02002512 memcpy(es->buf, b_peek(buf, buf_out), len1);
Willy Tarreau4bc7d902018-09-07 20:07:17 +02002513 len2 = buf_len - len1;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02002514 if (len2)
2515 memcpy(es->buf + len1, b_orig(buf), len2);
2516 }
2517
2518 es->buf_err = err_pos;
2519 es->when = date; // user-visible date
2520 es->srv = objt_server(target);
2521 es->oe = other_end;
Olivier Houchardbdb00c52020-03-12 15:30:17 +01002522 if (sess && objt_conn(sess->origin) && conn_get_src(__objt_conn(sess->origin)))
Willy Tarreau026efc72019-07-17 15:20:02 +02002523 es->src = *__objt_conn(sess->origin)->src;
Willy Tarreau75fb65a2018-09-07 17:43:26 +02002524 else
2525 memset(&es->src, 0, sizeof(es->src));
2526
Willy Tarreau75fb65a2018-09-07 17:43:26 +02002527 es->buf_wrap = b_wrap(buf) - b_peek(buf, buf_out);
2528 es->buf_out = buf_out;
2529 es->buf_ofs = buf_ofs;
2530
2531 /* be sure to indicate the offset of the first IN byte */
2532 if (es->buf_ofs >= es->buf_len)
2533 es->buf_ofs -= es->buf_len;
2534 else
2535 es->buf_ofs = 0;
2536
2537 /* protocol-specific part now */
2538 if (ctx)
2539 es->ctx = *ctx;
2540 else
2541 memset(&es->ctx, 0, sizeof(es->ctx));
2542 es->show = show;
Willy Tarreauc55015e2018-09-07 19:02:32 +02002543
2544 /* note: we still lock since we have to be certain that nobody is
2545 * dumping the output while we free.
2546 */
Willy Tarreauac66d6b2020-10-20 17:24:27 +02002547 HA_RWLOCK_WRLOCK(PROXY_LOCK, &proxy->lock);
Willy Tarreauc55015e2018-09-07 19:02:32 +02002548 if (is_back) {
2549 es = HA_ATOMIC_XCHG(&proxy->invalid_rep, es);
2550 } else {
2551 es = HA_ATOMIC_XCHG(&proxy->invalid_req, es);
2552 }
Willy Tarreauac66d6b2020-10-20 17:24:27 +02002553 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &proxy->lock);
Willy Tarreauda9f2582022-09-17 11:07:19 +02002554 ha_free(&es);
Willy Tarreau75fb65a2018-09-07 17:43:26 +02002555}
2556
Willy Tarreauc8d5b952019-02-27 17:25:52 +01002557/* Configure all proxies which lack a maxconn setting to use the global one by
2558 * default. This avoids the common mistake consisting in setting maxconn only
2559 * in the global section and discovering the hard way that it doesn't propagate
2560 * through the frontends. These values are also propagated through the various
Ilya Shipitsin47d17182020-06-21 21:42:57 +05002561 * targeted backends, whose fullconn is finally calculated if not yet set.
Willy Tarreauc8d5b952019-02-27 17:25:52 +01002562 */
2563void proxy_adjust_all_maxconn()
2564{
2565 struct proxy *curproxy;
2566 struct switching_rule *swrule1, *swrule2;
2567
2568 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002569 if (curproxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED))
Willy Tarreauc8d5b952019-02-27 17:25:52 +01002570 continue;
2571
2572 if (!(curproxy->cap & PR_CAP_FE))
2573 continue;
2574
2575 if (!curproxy->maxconn)
2576 curproxy->maxconn = global.maxconn;
2577
2578 /* update the target backend's fullconn count : default_backend */
2579 if (curproxy->defbe.be)
2580 curproxy->defbe.be->tot_fe_maxconn += curproxy->maxconn;
2581 else if ((curproxy->cap & PR_CAP_LISTEN) == PR_CAP_LISTEN)
2582 curproxy->tot_fe_maxconn += curproxy->maxconn;
2583
2584 list_for_each_entry(swrule1, &curproxy->switching_rules, list) {
2585 /* For each target of switching rules, we update their
2586 * tot_fe_maxconn, except if a previous rule points to
2587 * the same backend or to the default backend.
2588 */
2589 if (swrule1->be.backend != curproxy->defbe.be) {
Frédéric Lécaille2365fb02019-03-07 15:02:52 +01002590 /* note: swrule1->be.backend isn't a backend if the rule
2591 * is dynamic, it's an expression instead, so it must not
2592 * be dereferenced as a backend before being certain it is.
2593 */
Willy Tarreauc8d5b952019-02-27 17:25:52 +01002594 list_for_each_entry(swrule2, &curproxy->switching_rules, list) {
2595 if (swrule2 == swrule1) {
Frédéric Lécaille2365fb02019-03-07 15:02:52 +01002596 if (!swrule1->dynamic)
2597 swrule1->be.backend->tot_fe_maxconn += curproxy->maxconn;
Willy Tarreauc8d5b952019-02-27 17:25:52 +01002598 break;
2599 }
2600 else if (!swrule2->dynamic && swrule2->be.backend == swrule1->be.backend) {
2601 /* there are multiple refs of this backend */
2602 break;
2603 }
2604 }
2605 }
2606 }
2607 }
2608
2609 /* automatically compute fullconn if not set. We must not do it in the
2610 * loop above because cross-references are not yet fully resolved.
2611 */
2612 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002613 if (curproxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED))
Willy Tarreauc8d5b952019-02-27 17:25:52 +01002614 continue;
2615
2616 /* If <fullconn> is not set, let's set it to 10% of the sum of
2617 * the possible incoming frontend's maxconns.
2618 */
2619 if (!curproxy->fullconn && (curproxy->cap & PR_CAP_BE)) {
2620 /* we have the sum of the maxconns in <total>. We only
2621 * keep 10% of that sum to set the default fullconn, with
2622 * a hard minimum of 1 (to avoid a divide by zero).
2623 */
2624 curproxy->fullconn = (curproxy->tot_fe_maxconn + 9) / 10;
2625 if (!curproxy->fullconn)
2626 curproxy->fullconn = 1;
2627 }
2628 }
2629}
2630
Willy Tarreau75fb65a2018-09-07 17:43:26 +02002631/* Config keywords below */
2632
Willy Tarreaudc13c112013-06-21 23:16:39 +02002633static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau10080712021-09-07 10:49:45 +02002634 { CFG_GLOBAL, "grace", proxy_parse_grace },
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002635 { CFG_GLOBAL, "hard-stop-after", proxy_parse_hard_stop_after },
Remi Tricot-Le Bretonb5d968d2022-04-08 18:04:18 +02002636 { CFG_GLOBAL, "close-spread-time", proxy_parse_close_spread_time },
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02002637 { CFG_LISTEN, "timeout", proxy_parse_timeout },
Tim Duesterhus86e6b6e2019-05-14 20:57:59 +02002638 { CFG_LISTEN, "clitimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */
2639 { CFG_LISTEN, "contimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */
2640 { CFG_LISTEN, "srvtimeout", proxy_parse_timeout }, /* This keyword actually fails to parse, this line remains for better error messages. */
Willy Tarreau3a7d2072009-03-05 23:48:25 +01002641 { CFG_LISTEN, "rate-limit", proxy_parse_rate_limit },
Willy Tarreauc35362a2014-04-25 13:58:37 +02002642 { CFG_LISTEN, "max-keep-alive-queue", proxy_parse_max_ka_queue },
Thierry FOURNIERa0a1b752015-05-26 17:44:32 +02002643 { CFG_LISTEN, "declare", proxy_parse_declare },
Olivier Houcharda254a372019-04-05 15:30:12 +02002644 { CFG_LISTEN, "retry-on", proxy_parse_retry_on },
Willy Tarreau52543212020-07-09 05:58:51 +02002645#ifdef TCP_KEEPCNT
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +09002646 { CFG_LISTEN, "clitcpka-cnt", proxy_parse_tcpka_cnt },
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +09002647 { CFG_LISTEN, "srvtcpka-cnt", proxy_parse_tcpka_cnt },
Willy Tarreau52543212020-07-09 05:58:51 +02002648#endif
2649#ifdef TCP_KEEPIDLE
2650 { CFG_LISTEN, "clitcpka-idle", proxy_parse_tcpka_idle },
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +09002651 { CFG_LISTEN, "srvtcpka-idle", proxy_parse_tcpka_idle },
Willy Tarreau52543212020-07-09 05:58:51 +02002652#endif
2653#ifdef TCP_KEEPINTVL
2654 { CFG_LISTEN, "clitcpka-intvl", proxy_parse_tcpka_intvl },
MIZUTA Takeshib24bc0d2020-07-09 11:13:20 +09002655 { CFG_LISTEN, "srvtcpka-intvl", proxy_parse_tcpka_intvl },
Willy Tarreau52543212020-07-09 05:58:51 +02002656#endif
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02002657 { 0, NULL, NULL },
2658}};
2659
Willy Tarreau0108d902018-11-25 19:14:37 +01002660INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
2661
Willy Tarreau960f2cb2016-11-24 12:02:29 +01002662/* Expects to find a frontend named <arg> and returns it, otherwise displays various
2663 * adequate error messages and returns NULL. This function is designed to be used by
2664 * functions requiring a frontend on the CLI.
2665 */
2666struct proxy *cli_find_frontend(struct appctx *appctx, const char *arg)
2667{
2668 struct proxy *px;
2669
2670 if (!*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02002671 cli_err(appctx, "A frontend name is expected.\n");
Willy Tarreau960f2cb2016-11-24 12:02:29 +01002672 return NULL;
2673 }
2674
2675 px = proxy_fe_by_name(arg);
2676 if (!px) {
Willy Tarreau9d008692019-08-09 11:21:01 +02002677 cli_err(appctx, "No such frontend.\n");
Willy Tarreau960f2cb2016-11-24 12:02:29 +01002678 return NULL;
2679 }
2680 return px;
2681}
2682
Olivier Houchard614f8d72017-03-14 20:08:46 +01002683/* Expects to find a backend named <arg> and returns it, otherwise displays various
2684 * adequate error messages and returns NULL. This function is designed to be used by
2685 * functions requiring a frontend on the CLI.
2686 */
2687struct proxy *cli_find_backend(struct appctx *appctx, const char *arg)
2688{
2689 struct proxy *px;
2690
2691 if (!*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02002692 cli_err(appctx, "A backend name is expected.\n");
Olivier Houchard614f8d72017-03-14 20:08:46 +01002693 return NULL;
2694 }
2695
2696 px = proxy_be_by_name(arg);
2697 if (!px) {
Willy Tarreau9d008692019-08-09 11:21:01 +02002698 cli_err(appctx, "No such backend.\n");
Olivier Houchard614f8d72017-03-14 20:08:46 +01002699 return NULL;
2700 }
2701 return px;
2702}
2703
2704
Willy Tarreau69f591e2020-07-01 07:00:59 +02002705/* parse a "show servers [state|conn]" CLI line, returns 0 if it wants to start
2706 * the dump or 1 if it stops immediately. If an argument is specified, it will
Willy Tarreau72a04232022-05-05 17:00:20 +02002707 * reserve a show_srv_ctx context and set the proxy pointer into ->px, its ID
2708 * into ->only_pxid, and ->show_conn to 0 for "state", or 1 for "conn".
William Lallemanda6c5f332016-11-19 02:25:36 +01002709 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002710static int cli_parse_show_servers(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemanda6c5f332016-11-19 02:25:36 +01002711{
Willy Tarreau72a04232022-05-05 17:00:20 +02002712 struct show_srv_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01002713 struct proxy *px;
William Lallemanda6c5f332016-11-19 02:25:36 +01002714
Willy Tarreau72a04232022-05-05 17:00:20 +02002715 ctx->show_conn = *args[2] == 'c'; // "conn" vs "state"
Willy Tarreau69f591e2020-07-01 07:00:59 +02002716
William Lallemanda6c5f332016-11-19 02:25:36 +01002717 /* check if a backend name has been provided */
2718 if (*args[3]) {
2719 /* read server state from local file */
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01002720 px = proxy_be_by_name(args[3]);
William Lallemanda6c5f332016-11-19 02:25:36 +01002721
Willy Tarreau9d008692019-08-09 11:21:01 +02002722 if (!px)
2723 return cli_err(appctx, "Can't find backend.\n");
2724
Willy Tarreau72a04232022-05-05 17:00:20 +02002725 ctx->px = px;
2726 ctx->only_pxid = px->uuid;
William Lallemanda6c5f332016-11-19 02:25:36 +01002727 }
2728 return 0;
2729}
2730
William Dauchyd1a7b852021-02-11 22:51:26 +01002731/* helper to dump server addr */
2732static void dump_server_addr(const struct sockaddr_storage *addr, char *addr_str)
2733{
2734 addr_str[0] = '\0';
2735 switch (addr->ss_family) {
2736 case AF_INET:
2737 case AF_INET6:
2738 addr_to_str(addr, addr_str, INET6_ADDRSTRLEN + 1);
2739 break;
2740 default:
2741 memcpy(addr_str, "-\0", 2);
2742 break;
2743 }
2744}
2745
Willy Tarreau6ff81432020-07-01 07:02:42 +02002746/* dumps server state information for all the servers found in backend cli.p0.
William Lallemanda6c5f332016-11-19 02:25:36 +01002747 * These information are all the parameters which may change during HAProxy runtime.
Willy Tarreau72a04232022-05-05 17:00:20 +02002748 * By default, we only export to the last known server state file format. These
2749 * information can be used at next startup to recover same level of server
2750 * state. It takes its context from show_srv_ctx, with the proxy pointer from
2751 * ->px, the proxy's id ->only_pxid, the server's pointer from ->sv, and the
2752 * choice of what to dump from ->show_conn.
William Lallemanda6c5f332016-11-19 02:25:36 +01002753 */
Willy Tarreau475e4632022-05-27 10:26:46 +02002754static int dump_servers_state(struct stconn *sc)
William Lallemanda6c5f332016-11-19 02:25:36 +01002755{
Willy Tarreau475e4632022-05-27 10:26:46 +02002756 struct appctx *appctx = __sc_appctx(sc);
Willy Tarreau72a04232022-05-05 17:00:20 +02002757 struct show_srv_ctx *ctx = appctx->svcctx;
2758 struct proxy *px = ctx->px;
William Lallemanda6c5f332016-11-19 02:25:36 +01002759 struct server *srv;
2760 char srv_addr[INET6_ADDRSTRLEN + 1];
William Dauchyd1a7b852021-02-11 22:51:26 +01002761 char srv_agent_addr[INET6_ADDRSTRLEN + 1];
2762 char srv_check_addr[INET6_ADDRSTRLEN + 1];
William Lallemanda6c5f332016-11-19 02:25:36 +01002763 time_t srv_time_since_last_change;
2764 int bk_f_forced_id, srv_f_forced_id;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002765 char *srvrecord;
William Lallemanda6c5f332016-11-19 02:25:36 +01002766
Willy Tarreau72a04232022-05-05 17:00:20 +02002767 if (!ctx->sv)
2768 ctx->sv = px->srv;
William Lallemanda6c5f332016-11-19 02:25:36 +01002769
Willy Tarreau72a04232022-05-05 17:00:20 +02002770 for (; ctx->sv != NULL; ctx->sv = srv->next) {
2771 srv = ctx->sv;
William Lallemanda6c5f332016-11-19 02:25:36 +01002772
William Dauchyd1a7b852021-02-11 22:51:26 +01002773 dump_server_addr(&srv->addr, srv_addr);
2774 dump_server_addr(&srv->check.addr, srv_check_addr);
2775 dump_server_addr(&srv->agent.addr, srv_agent_addr);
2776
William Lallemanda6c5f332016-11-19 02:25:36 +01002777 srv_time_since_last_change = now.tv_sec - srv->last_change;
Willy Tarreau3c92f2a2016-12-16 18:23:39 +01002778 bk_f_forced_id = px->options & PR_O_FORCED_ID ? 1 : 0;
William Lallemanda6c5f332016-11-19 02:25:36 +01002779 srv_f_forced_id = srv->flags & SRV_F_FORCED_ID ? 1 : 0;
2780
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002781 srvrecord = NULL;
2782 if (srv->srvrq && srv->srvrq->name)
2783 srvrecord = srv->srvrq->name;
2784
Willy Tarreau72a04232022-05-05 17:00:20 +02002785 if (ctx->show_conn == 0) {
Willy Tarreau69f591e2020-07-01 07:00:59 +02002786 /* show servers state */
2787 chunk_printf(&trash,
2788 "%d %s "
2789 "%d %s %s "
2790 "%d %d %d %d %ld "
2791 "%d %d %d %d %d "
William Dauchyf6370442020-11-14 19:25:33 +01002792 "%d %d %s %u "
William Dauchyd1a7b852021-02-11 22:51:26 +01002793 "%s %d %d "
2794 "%s %s %d"
Willy Tarreau69f591e2020-07-01 07:00:59 +02002795 "\n",
Erwan Le Goasacfdf762022-09-14 17:48:55 +02002796 px->uuid, HA_ANON_CLI(px->id),
Erwan Le Goas9ac3ccb2022-09-29 10:27:33 +02002797 srv->puid, HA_ANON_CLI(srv->id),
2798 hash_ipanon(appctx->cli_anon_key, srv_addr, 0),
Erwan Le Goasacfdf762022-09-14 17:48:55 +02002799 srv->cur_state, srv->cur_admin, srv->uweight, srv->iweight,
2800 (long int)srv_time_since_last_change,
2801 srv->check.status, srv->check.result, srv->check.health,
Willy Tarreau99521ab2022-10-12 21:40:31 +02002802 srv->check.state & 0x0F, srv->agent.state & 0x1F,
Erwan Le Goas1caa5352022-09-29 10:28:44 +02002803 bk_f_forced_id, srv_f_forced_id,
2804 srv->hostname ? HA_ANON_CLI(srv->hostname) : "-", srv->svc_port,
William Dauchyd1a7b852021-02-11 22:51:26 +01002805 srvrecord ? srvrecord : "-", srv->use_ssl, srv->check.port,
2806 srv_check_addr, srv_agent_addr, srv->agent.port);
Willy Tarreau69f591e2020-07-01 07:00:59 +02002807 } else {
2808 /* show servers conn */
2809 int thr;
2810
2811 chunk_printf(&trash,
2812 "%s/%s %d/%d %s %u - %u %u %u %u %u %u %d %u",
Erwan Le Goasacfdf762022-09-14 17:48:55 +02002813 HA_ANON_CLI(px->id), HA_ANON_CLI(srv->id),
Erwan Le Goas9ac3ccb2022-09-29 10:27:33 +02002814 px->uuid, srv->puid, hash_ipanon(appctx->cli_anon_key, srv_addr, 0),
Erwan Le Goasacfdf762022-09-14 17:48:55 +02002815 srv->svc_port, srv->pool_purge_delay,
Willy Tarreau69f591e2020-07-01 07:00:59 +02002816 srv->curr_used_conns, srv->max_used_conns, srv->est_need_conns,
2817 srv->curr_idle_nb, srv->curr_safe_nb, (int)srv->max_idle_conns, srv->curr_idle_conns);
2818
Willy Tarreau42abe682020-07-02 15:19:57 +02002819 for (thr = 0; thr < global.nbthread && srv->curr_idle_thr; thr++)
Willy Tarreau69f591e2020-07-01 07:00:59 +02002820 chunk_appendf(&trash, " %u", srv->curr_idle_thr[thr]);
2821
2822 chunk_appendf(&trash, "\n");
2823 }
2824
Willy Tarreaud0a06d52022-05-18 15:07:19 +02002825 if (applet_putchk(appctx, &trash) == -1) {
William Lallemanda6c5f332016-11-19 02:25:36 +01002826 return 0;
2827 }
2828 }
2829 return 1;
2830}
2831
2832/* Parses backend list or simply use backend name provided by the user to return
Willy Tarreau72a04232022-05-05 17:00:20 +02002833 * states of servers to stdout. It takes its context from show_srv_ctx and dumps
2834 * proxy ->px and stops if ->only_pxid is non-null.
William Lallemanda6c5f332016-11-19 02:25:36 +01002835 */
2836static int cli_io_handler_servers_state(struct appctx *appctx)
2837{
Willy Tarreau72a04232022-05-05 17:00:20 +02002838 struct show_srv_ctx *ctx = appctx->svcctx;
Willy Tarreauc12b3212022-05-27 11:08:15 +02002839 struct stconn *sc = appctx_sc(appctx);
William Lallemanda6c5f332016-11-19 02:25:36 +01002840 struct proxy *curproxy;
2841
Willy Tarreaud741e9c2022-05-05 19:26:18 +02002842 if (ctx->state == SHOW_SRV_HEAD) {
Willy Tarreau72a04232022-05-05 17:00:20 +02002843 if (ctx->show_conn == 0)
Willy Tarreau69f591e2020-07-01 07:00:59 +02002844 chunk_printf(&trash, "%d\n# %s\n", SRV_STATE_FILE_VERSION, SRV_STATE_FILE_FIELD_NAMES);
2845 else
2846 chunk_printf(&trash,
2847 "# bkname/svname bkid/svid addr port - purge_delay used_cur used_max need_est unsafe_nb safe_nb idle_lim idle_cur idle_per_thr[%d]\n",
2848 global.nbthread);
2849
Willy Tarreaud0a06d52022-05-18 15:07:19 +02002850 if (applet_putchk(appctx, &trash) == -1)
William Lallemanda6c5f332016-11-19 02:25:36 +01002851 return 0;
Willy Tarreaud0a06d52022-05-18 15:07:19 +02002852
Willy Tarreaud741e9c2022-05-05 19:26:18 +02002853 ctx->state = SHOW_SRV_LIST;
2854
2855 if (!ctx->px)
2856 ctx->px = proxies_list;
William Lallemanda6c5f332016-11-19 02:25:36 +01002857 }
2858
Willy Tarreau72a04232022-05-05 17:00:20 +02002859 for (; ctx->px != NULL; ctx->px = curproxy->next) {
2860 curproxy = ctx->px;
William Lallemanda6c5f332016-11-19 02:25:36 +01002861 /* servers are only in backends */
William Lallemanda39e6262021-08-25 18:15:31 +02002862 if ((curproxy->cap & PR_CAP_BE) && !(curproxy->cap & PR_CAP_INT)) {
Willy Tarreau475e4632022-05-27 10:26:46 +02002863 if (!dump_servers_state(sc))
William Lallemanda6c5f332016-11-19 02:25:36 +01002864 return 0;
William Lallemanda6c5f332016-11-19 02:25:36 +01002865 }
2866 /* only the selected proxy is dumped */
Willy Tarreau72a04232022-05-05 17:00:20 +02002867 if (ctx->only_pxid)
William Lallemanda6c5f332016-11-19 02:25:36 +01002868 break;
2869 }
2870
2871 return 1;
2872}
2873
Willy Tarreau608ea592016-12-16 18:01:15 +01002874/* Parses backend list and simply report backend names. It keeps the proxy
Willy Tarreauacf6a442022-05-05 17:05:38 +02002875 * pointer in svcctx since there's nothing else to store there.
Willy Tarreau608ea592016-12-16 18:01:15 +01002876 */
William Lallemand933efcd2016-11-22 12:34:16 +01002877static int cli_io_handler_show_backend(struct appctx *appctx)
2878{
William Lallemand933efcd2016-11-22 12:34:16 +01002879 struct proxy *curproxy;
2880
2881 chunk_reset(&trash);
2882
Willy Tarreauacf6a442022-05-05 17:05:38 +02002883 if (!appctx->svcctx) {
William Lallemand933efcd2016-11-22 12:34:16 +01002884 chunk_printf(&trash, "# name\n");
Willy Tarreaud0a06d52022-05-18 15:07:19 +02002885 if (applet_putchk(appctx, &trash) == -1)
William Lallemand933efcd2016-11-22 12:34:16 +01002886 return 0;
Willy Tarreaud0a06d52022-05-18 15:07:19 +02002887
Willy Tarreauacf6a442022-05-05 17:05:38 +02002888 appctx->svcctx = proxies_list;
William Lallemand933efcd2016-11-22 12:34:16 +01002889 }
2890
Willy Tarreauacf6a442022-05-05 17:05:38 +02002891 for (; appctx->svcctx != NULL; appctx->svcctx = curproxy->next) {
2892 curproxy = appctx->svcctx;
William Lallemand933efcd2016-11-22 12:34:16 +01002893
Willy Tarreau4f9f1572022-05-05 17:10:03 +02002894 /* looking for non-internal backends only */
2895 if ((curproxy->cap & (PR_CAP_BE|PR_CAP_INT)) != PR_CAP_BE)
William Lallemand933efcd2016-11-22 12:34:16 +01002896 continue;
2897
William Lallemand933efcd2016-11-22 12:34:16 +01002898 chunk_appendf(&trash, "%s\n", curproxy->id);
Willy Tarreaud0a06d52022-05-18 15:07:19 +02002899 if (applet_putchk(appctx, &trash) == -1)
William Lallemand933efcd2016-11-22 12:34:16 +01002900 return 0;
William Lallemand933efcd2016-11-22 12:34:16 +01002901 }
2902
2903 return 1;
2904}
William Lallemanda6c5f332016-11-19 02:25:36 +01002905
Willy Tarreaua275a372018-08-21 14:50:44 +02002906/* Parses the "enable dynamic-cookies backend" directive, it always returns 1.
2907 *
2908 * Grabs the proxy lock and each server's lock.
2909 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002910static int cli_parse_enable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01002911{
2912 struct proxy *px;
2913 struct server *s;
2914
2915 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2916 return 1;
2917
2918 px = cli_find_backend(appctx, args[3]);
2919 if (!px)
2920 return 1;
2921
Willy Tarreau5e83d992019-07-30 11:59:34 +02002922 /* Note: this lock is to make sure this doesn't change while another
2923 * thread is in srv_set_dyncookie().
2924 */
Willy Tarreauac66d6b2020-10-20 17:24:27 +02002925 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002926 px->ck_opts |= PR_CK_DYNAMIC;
Willy Tarreauac66d6b2020-10-20 17:24:27 +02002927 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002928
Willy Tarreaua275a372018-08-21 14:50:44 +02002929 for (s = px->srv; s != NULL; s = s->next) {
2930 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002931 srv_set_dyncookie(s);
Willy Tarreaua275a372018-08-21 14:50:44 +02002932 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
2933 }
2934
Olivier Houchard614f8d72017-03-14 20:08:46 +01002935 return 1;
2936}
2937
Willy Tarreaua275a372018-08-21 14:50:44 +02002938/* Parses the "disable dynamic-cookies backend" directive, it always returns 1.
2939 *
2940 * Grabs the proxy lock and each server's lock.
2941 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002942static int cli_parse_disable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01002943{
2944 struct proxy *px;
2945 struct server *s;
2946
2947 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2948 return 1;
2949
2950 px = cli_find_backend(appctx, args[3]);
2951 if (!px)
2952 return 1;
2953
Willy Tarreau5e83d992019-07-30 11:59:34 +02002954 /* Note: this lock is to make sure this doesn't change while another
2955 * thread is in srv_set_dyncookie().
2956 */
Willy Tarreauac66d6b2020-10-20 17:24:27 +02002957 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002958 px->ck_opts &= ~PR_CK_DYNAMIC;
Willy Tarreauac66d6b2020-10-20 17:24:27 +02002959 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002960
2961 for (s = px->srv; s != NULL; s = s->next) {
Willy Tarreaua275a372018-08-21 14:50:44 +02002962 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002963 if (!(s->flags & SRV_F_COOKIESET))
2964 ha_free(&s->cookie);
Willy Tarreaua275a372018-08-21 14:50:44 +02002965 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002966 }
2967
2968 return 1;
2969}
2970
Willy Tarreaua275a372018-08-21 14:50:44 +02002971/* Parses the "set dynamic-cookie-key backend" directive, it always returns 1.
2972 *
2973 * Grabs the proxy lock and each server's lock.
2974 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002975static int cli_parse_set_dyncookie_key_backend(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchard614f8d72017-03-14 20:08:46 +01002976{
2977 struct proxy *px;
2978 struct server *s;
2979 char *newkey;
2980
2981 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
2982 return 1;
2983
2984 px = cli_find_backend(appctx, args[3]);
2985 if (!px)
2986 return 1;
2987
Willy Tarreau9d008692019-08-09 11:21:01 +02002988 if (!*args[4])
2989 return cli_err(appctx, "String value expected.\n");
Olivier Houchard614f8d72017-03-14 20:08:46 +01002990
2991 newkey = strdup(args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02002992 if (!newkey)
2993 return cli_err(appctx, "Failed to allocate memory.\n");
Willy Tarreaua275a372018-08-21 14:50:44 +02002994
Willy Tarreau5e83d992019-07-30 11:59:34 +02002995 /* Note: this lock is to make sure this doesn't change while another
2996 * thread is in srv_set_dyncookie().
2997 */
Willy Tarreauac66d6b2020-10-20 17:24:27 +02002998 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01002999 free(px->dyncookie_key);
3000 px->dyncookie_key = newkey;
Willy Tarreauac66d6b2020-10-20 17:24:27 +02003001 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01003002
Willy Tarreaua275a372018-08-21 14:50:44 +02003003 for (s = px->srv; s != NULL; s = s->next) {
3004 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houchard614f8d72017-03-14 20:08:46 +01003005 srv_set_dyncookie(s);
Willy Tarreaua275a372018-08-21 14:50:44 +02003006 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
3007 }
3008
Olivier Houchard614f8d72017-03-14 20:08:46 +01003009 return 1;
3010}
3011
Willy Tarreaua275a372018-08-21 14:50:44 +02003012/* Parses the "set maxconn frontend" directive, it always returns 1.
3013 *
3014 * Grabs the proxy lock.
3015 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02003016static int cli_parse_set_maxconn_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauc429a1f2016-11-23 16:22:04 +01003017{
3018 struct proxy *px;
3019 struct listener *l;
3020 int v;
3021
3022 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
3023 return 1;
3024
3025 px = cli_find_frontend(appctx, args[3]);
3026 if (!px)
3027 return 1;
3028
Willy Tarreau9d008692019-08-09 11:21:01 +02003029 if (!*args[4])
3030 return cli_err(appctx, "Integer value expected.\n");
Willy Tarreauc429a1f2016-11-23 16:22:04 +01003031
3032 v = atoi(args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02003033 if (v < 0)
3034 return cli_err(appctx, "Value out of range.\n");
Willy Tarreauc429a1f2016-11-23 16:22:04 +01003035
3036 /* OK, the value is fine, so we assign it to the proxy and to all of
3037 * its listeners. The blocked ones will be dequeued.
3038 */
Willy Tarreauac66d6b2020-10-20 17:24:27 +02003039 HA_RWLOCK_WRLOCK(PROXY_LOCK, &px->lock);
Willy Tarreaua275a372018-08-21 14:50:44 +02003040
Willy Tarreauc429a1f2016-11-23 16:22:04 +01003041 px->maxconn = v;
3042 list_for_each_entry(l, &px->conf.listeners, by_fe) {
Willy Tarreauc429a1f2016-11-23 16:22:04 +01003043 if (l->state == LI_FULL)
Aurelien DARRAGON00132882022-09-09 15:32:57 +02003044 resume_listener(l, 1);
Willy Tarreauc429a1f2016-11-23 16:22:04 +01003045 }
3046
Willy Tarreau241797a2019-12-10 14:10:52 +01003047 if (px->maxconn > px->feconn)
3048 dequeue_proxy_listeners(px);
Willy Tarreauc429a1f2016-11-23 16:22:04 +01003049
Willy Tarreauac66d6b2020-10-20 17:24:27 +02003050 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &px->lock);
Willy Tarreaua275a372018-08-21 14:50:44 +02003051
Willy Tarreauc429a1f2016-11-23 16:22:04 +01003052 return 1;
3053}
3054
Willy Tarreaua275a372018-08-21 14:50:44 +02003055/* Parses the "shutdown frontend" directive, it always returns 1.
3056 *
3057 * Grabs the proxy lock.
3058 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02003059static int cli_parse_shutdown_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau5212d7f2016-11-24 11:13:06 +01003060{
3061 struct proxy *px;
3062
3063 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
3064 return 1;
3065
3066 px = cli_find_frontend(appctx, args[2]);
3067 if (!px)
3068 return 1;
3069
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003070 if (px->flags & (PR_FL_DISABLED|PR_FL_STOPPED))
Willy Tarreau9d008692019-08-09 11:21:01 +02003071 return cli_msg(appctx, LOG_NOTICE, "Frontend was already shut down.\n");
Willy Tarreau5212d7f2016-11-24 11:13:06 +01003072
Willy Tarreau5212d7f2016-11-24 11:13:06 +01003073 stop_proxy(px);
3074 return 1;
3075}
3076
Willy Tarreaua275a372018-08-21 14:50:44 +02003077/* Parses the "disable frontend" directive, it always returns 1.
3078 *
3079 * Grabs the proxy lock.
3080 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02003081static int cli_parse_disable_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau15b9e682016-11-24 11:55:28 +01003082{
3083 struct proxy *px;
Willy Tarreaua275a372018-08-21 14:50:44 +02003084 int ret;
Willy Tarreau15b9e682016-11-24 11:55:28 +01003085
3086 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
3087 return 1;
3088
3089 px = cli_find_frontend(appctx, args[2]);
3090 if (!px)
3091 return 1;
3092
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003093 if (px->flags & (PR_FL_DISABLED|PR_FL_STOPPED))
Willy Tarreau9d008692019-08-09 11:21:01 +02003094 return cli_msg(appctx, LOG_NOTICE, "Frontend was previously shut down, cannot disable.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01003095
Willy Tarreauf18d9682020-09-24 08:04:27 +02003096 if (!px->li_ready)
3097 return cli_msg(appctx, LOG_NOTICE, "All sockets are already disabled.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01003098
Aurelien DARRAGON7d000772022-09-08 14:35:35 +02003099 /* pause_proxy will take PROXY_LOCK */
Willy Tarreaua275a372018-08-21 14:50:44 +02003100 ret = pause_proxy(px);
Willy Tarreaua275a372018-08-21 14:50:44 +02003101
Willy Tarreau9d008692019-08-09 11:21:01 +02003102 if (!ret)
3103 return cli_err(appctx, "Failed to pause frontend, check logs for precise cause.\n");
3104
Willy Tarreau15b9e682016-11-24 11:55:28 +01003105 return 1;
3106}
3107
Willy Tarreaua275a372018-08-21 14:50:44 +02003108/* Parses the "enable frontend" directive, it always returns 1.
3109 *
3110 * Grabs the proxy lock.
3111 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02003112static int cli_parse_enable_frontend(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau15b9e682016-11-24 11:55:28 +01003113{
3114 struct proxy *px;
Willy Tarreaua275a372018-08-21 14:50:44 +02003115 int ret;
Willy Tarreau15b9e682016-11-24 11:55:28 +01003116
3117 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
3118 return 1;
3119
3120 px = cli_find_frontend(appctx, args[2]);
3121 if (!px)
3122 return 1;
3123
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02003124 if (px->flags & (PR_FL_DISABLED|PR_FL_STOPPED))
Willy Tarreau9d008692019-08-09 11:21:01 +02003125 return cli_err(appctx, "Frontend was previously shut down, cannot enable.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01003126
Willy Tarreauf18d9682020-09-24 08:04:27 +02003127 if (px->li_ready == px->li_all)
3128 return cli_msg(appctx, LOG_NOTICE, "All sockets are already enabled.\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01003129
Aurelien DARRAGON7d000772022-09-08 14:35:35 +02003130 /* resume_proxy will take PROXY_LOCK */
Willy Tarreaua275a372018-08-21 14:50:44 +02003131 ret = resume_proxy(px);
Willy Tarreaua275a372018-08-21 14:50:44 +02003132
Willy Tarreau9d008692019-08-09 11:21:01 +02003133 if (!ret)
3134 return cli_err(appctx, "Failed to resume frontend, check logs for precise cause (port conflict?).\n");
Willy Tarreau15b9e682016-11-24 11:55:28 +01003135 return 1;
3136}
3137
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003138/* appctx context used during "show errors" */
3139struct show_errors_ctx {
3140 struct proxy *px; /* current proxy being dumped, NULL = not started yet. */
3141 unsigned int flag; /* bit0: buffer being dumped, 0 = req, 1 = resp ; bit1=skip req ; bit2=skip resp. */
3142 unsigned int ev_id; /* event ID of error being dumped */
3143 int iid; /* if >= 0, ID of the proxy to filter on */
3144 int ptr; /* <0: headers, >=0 : text pointer to restart from */
3145 int bol; /* pointer to beginning of current line */
3146};
3147
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003148/* "show errors" handler for the CLI. Returns 0 if wants to continue, 1 to stop
3149 * now.
3150 */
3151static int cli_parse_show_errors(char **args, char *payload, struct appctx *appctx, void *private)
3152{
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003153 struct show_errors_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
3154
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003155 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
3156 return 1;
3157
3158 if (*args[2]) {
3159 struct proxy *px;
3160
3161 px = proxy_find_by_name(args[2], 0, 0);
3162 if (px)
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003163 ctx->iid = px->uuid;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003164 else
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003165 ctx->iid = atoi(args[2]);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003166
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003167 if (!ctx->iid)
Willy Tarreau9d008692019-08-09 11:21:01 +02003168 return cli_err(appctx, "No such proxy.\n");
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003169 }
3170 else
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003171 ctx->iid = -1; // dump all proxies
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003172
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003173 ctx->flag = 0;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003174 if (strcmp(args[3], "request") == 0)
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003175 ctx->flag |= 4; // ignore response
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003176 else if (strcmp(args[3], "response") == 0)
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003177 ctx->flag |= 2; // ignore request
3178 ctx->px = NULL;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003179 return 0;
3180}
3181
Willy Tarreau4596fe22022-05-17 19:07:51 +02003182/* This function dumps all captured errors onto the stream connector's
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003183 * read buffer. It returns 0 if the output buffer is full and it needs
3184 * to be called again, otherwise non-zero.
3185 */
3186static int cli_io_handler_show_errors(struct appctx *appctx)
3187{
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003188 struct show_errors_ctx *ctx = appctx->svcctx;
Willy Tarreauc12b3212022-05-27 11:08:15 +02003189 struct stconn *sc = appctx_sc(appctx);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003190 extern const char *monthname[12];
3191
Christopher Fauletda89e9b2023-01-04 14:11:10 +01003192 if (unlikely(sc_ic(sc)->flags & CF_SHUTW))
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003193 return 1;
3194
3195 chunk_reset(&trash);
3196
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003197 if (!ctx->px) {
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003198 /* the function had not been called yet, let's prepare the
3199 * buffer for a response.
3200 */
3201 struct tm tm;
3202
3203 get_localtime(date.tv_sec, &tm);
3204 chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n",
3205 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
3206 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000),
3207 error_snapshot_id);
3208
Willy Tarreaud0a06d52022-05-18 15:07:19 +02003209 if (applet_putchk(appctx, &trash) == -1)
Willy Tarreau36b27362018-09-07 19:55:44 +02003210 goto cant_send;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003211
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003212 ctx->px = proxies_list;
3213 ctx->bol = 0;
3214 ctx->ptr = -1;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003215 }
3216
3217 /* we have two inner loops here, one for the proxy, the other one for
3218 * the buffer.
3219 */
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003220 while (ctx->px) {
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003221 struct error_snapshot *es;
3222
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003223 HA_RWLOCK_RDLOCK(PROXY_LOCK, &ctx->px->lock);
Willy Tarreau36b27362018-09-07 19:55:44 +02003224
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003225 if ((ctx->flag & 1) == 0) {
3226 es = ctx->px->invalid_req;
3227 if (ctx->flag & 2) // skip req
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003228 goto next;
3229 }
3230 else {
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003231 es = ctx->px->invalid_rep;
3232 if (ctx->flag & 4) // skip resp
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003233 goto next;
3234 }
3235
Willy Tarreauc55015e2018-09-07 19:02:32 +02003236 if (!es)
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003237 goto next;
3238
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003239 if (ctx->iid >= 0 &&
3240 ctx->px->uuid != ctx->iid &&
3241 (!es->oe || es->oe->uuid != ctx->iid))
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003242 goto next;
3243
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003244 if (ctx->ptr < 0) {
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003245 /* just print headers now */
3246
3247 char pn[INET6_ADDRSTRLEN];
3248 struct tm tm;
3249 int port;
3250
3251 get_localtime(es->when.tv_sec, &tm);
3252 chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]",
3253 tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900,
3254 tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000));
3255
3256 switch (addr_to_str(&es->src, pn, sizeof(pn))) {
3257 case AF_INET:
3258 case AF_INET6:
3259 port = get_host_port(&es->src);
3260 break;
3261 default:
3262 port = 0;
3263 }
3264
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003265 switch (ctx->flag & 1) {
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003266 case 0:
3267 chunk_appendf(&trash,
3268 " frontend %s (#%d): invalid request\n"
3269 " backend %s (#%d)",
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003270 ctx->px->id, ctx->px->uuid,
Olivier Houchardbdb00c52020-03-12 15:30:17 +01003271 (es->oe && es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>",
3272 (es->oe && es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003273 break;
3274 case 1:
3275 chunk_appendf(&trash,
3276 " backend %s (#%d): invalid response\n"
3277 " frontend %s (#%d)",
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003278 ctx->px->id, ctx->px->uuid,
Olivier Houchardbdb00c52020-03-12 15:30:17 +01003279 es->oe ? es->oe->id : "<NONE>" , es->oe ? es->oe->uuid : -1);
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003280 break;
3281 }
3282
3283 chunk_appendf(&trash,
3284 ", server %s (#%d), event #%u, src %s:%d\n"
3285 " buffer starts at %llu (including %u out), %u free,\n"
3286 " len %u, wraps at %u, error at position %u\n",
3287 es->srv ? es->srv->id : "<NONE>",
3288 es->srv ? es->srv->puid : -1,
3289 es->ev_id, pn, port,
3290 es->buf_ofs, es->buf_out,
3291 global.tune.bufsize - es->buf_out - es->buf_len,
3292 es->buf_len, es->buf_wrap, es->buf_err);
3293
3294 if (es->show)
3295 es->show(&trash, es);
3296
3297 chunk_appendf(&trash, " \n");
3298
Willy Tarreaud0a06d52022-05-18 15:07:19 +02003299 if (applet_putchk(appctx, &trash) == -1)
Willy Tarreau36b27362018-09-07 19:55:44 +02003300 goto cant_send_unlock;
3301
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003302 ctx->ptr = 0;
3303 ctx->ev_id = es->ev_id;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003304 }
3305
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003306 if (ctx->ev_id != es->ev_id) {
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003307 /* the snapshot changed while we were dumping it */
3308 chunk_appendf(&trash,
3309 " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n");
Willy Tarreaud0a06d52022-05-18 15:07:19 +02003310 if (applet_putchk(appctx, &trash) == -1)
Willy Tarreau36b27362018-09-07 19:55:44 +02003311 goto cant_send_unlock;
3312
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003313 goto next;
3314 }
3315
3316 /* OK, ptr >= 0, so we have to dump the current line */
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003317 while (ctx->ptr < es->buf_len && ctx->ptr < global.tune.bufsize) {
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003318 int newptr;
3319 int newline;
3320
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003321 newline = ctx->bol;
3322 newptr = dump_text_line(&trash, es->buf, global.tune.bufsize, es->buf_len, &newline, ctx->ptr);
3323 if (newptr == ctx->ptr)
Willy Tarreau36b27362018-09-07 19:55:44 +02003324 goto cant_send_unlock;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003325
Willy Tarreaud0a06d52022-05-18 15:07:19 +02003326 if (applet_putchk(appctx, &trash) == -1)
Willy Tarreau36b27362018-09-07 19:55:44 +02003327 goto cant_send_unlock;
3328
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003329 ctx->ptr = newptr;
3330 ctx->bol = newline;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003331 };
3332 next:
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003333 HA_RWLOCK_RDUNLOCK(PROXY_LOCK, &ctx->px->lock);
3334 ctx->bol = 0;
3335 ctx->ptr = -1;
3336 ctx->flag ^= 1;
3337 if (!(ctx->flag & 1))
3338 ctx->px = ctx->px->next;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003339 }
3340
3341 /* dump complete */
3342 return 1;
Willy Tarreau36b27362018-09-07 19:55:44 +02003343
3344 cant_send_unlock:
Willy Tarreau0fd8f0e2022-05-03 11:24:24 +02003345 HA_RWLOCK_RDUNLOCK(PROXY_LOCK, &ctx->px->lock);
Willy Tarreau36b27362018-09-07 19:55:44 +02003346 cant_send:
Willy Tarreau475e4632022-05-27 10:26:46 +02003347 sc_need_room(sc);
Willy Tarreau36b27362018-09-07 19:55:44 +02003348 return 0;
Willy Tarreauddb68ac2018-09-07 18:34:24 +02003349}
3350
William Lallemanda6c5f332016-11-19 02:25:36 +01003351/* register cli keywords */
3352static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub205bfd2021-05-07 11:38:37 +02003353 { { "disable", "frontend", NULL }, "disable frontend <frontend> : temporarily disable specific frontend", cli_parse_disable_frontend, NULL, NULL },
3354 { { "enable", "frontend", NULL }, "enable frontend <frontend> : re-enable specific frontend", cli_parse_enable_frontend, NULL, NULL },
3355 { { "set", "maxconn", "frontend", NULL }, "set maxconn frontend <frontend> <value> : change a frontend's maxconn setting", cli_parse_set_maxconn_frontend, NULL },
3356 { { "show","servers", "conn", NULL }, "show servers conn [<backend>] : dump server connections status (all or for a single backend)", cli_parse_show_servers, cli_io_handler_servers_state },
3357 { { "show","servers", "state", NULL }, "show servers state [<backend>] : dump volatile server information (all or for a single backend)", cli_parse_show_servers, cli_io_handler_servers_state },
3358 { { "show", "backend", NULL }, "show backend : list backends in the current running config", NULL, cli_io_handler_show_backend },
3359 { { "shutdown", "frontend", NULL }, "shutdown frontend <frontend> : stop a specific frontend", cli_parse_shutdown_frontend, NULL, NULL },
3360 { { "set", "dynamic-cookie-key", "backend", NULL }, "set dynamic-cookie-key backend <bk> <k> : change a backend secret key for dynamic cookies", cli_parse_set_dyncookie_key_backend, NULL },
3361 { { "enable", "dynamic-cookie", "backend", NULL }, "enable dynamic-cookie backend <bk> : enable dynamic cookies on a specific backend", cli_parse_enable_dyncookie_backend, NULL },
3362 { { "disable", "dynamic-cookie", "backend", NULL }, "disable dynamic-cookie backend <bk> : disable dynamic cookies on a specific backend", cli_parse_disable_dyncookie_backend, NULL },
3363 { { "show", "errors", NULL }, "show errors [<px>] [request|response] : report last request and/or response errors for each proxy", cli_parse_show_errors, cli_io_handler_show_errors, NULL },
William Lallemanda6c5f332016-11-19 02:25:36 +01003364 {{},}
3365}};
3366
Willy Tarreau0108d902018-11-25 19:14:37 +01003367INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003368
3369/*
3370 * Local variables:
3371 * c-indent-level: 8
3372 * c-basic-offset: 8
3373 * End:
3374 */