blob: 13eb676b948c677eaeb3cd5e02c09e45f512b002 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Server management functions.
3 *
Willy Tarreau21faa912012-10-10 08:27:36 +02004 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01005 * Copyright 2007-2008 Krzysztof Piotr Oledzki <ole@ans.pl>
Willy Tarreaubaaee002006-06-26 02:48:02 +02006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
Willy Tarreau0a4b0ab2020-06-11 11:22:44 +020014#include <sys/types.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020015#include <netinet/tcp.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020016#include <ctype.h>
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020017#include <errno.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020018
Willy Tarreaub2551052020-06-09 09:07:15 +020019#include <import/ebsttree.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020020#include <import/xxhash.h>
21
Willy Tarreaub2551052020-06-09 09:07:15 +020022#include <haproxy/api.h>
Willy Tarreau3f0f82e2020-06-04 19:42:41 +020023#include <haproxy/applet-t.h>
Willy Tarreau49801602020-06-04 22:50:02 +020024#include <haproxy/backend.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020025#include <haproxy/cfgparse.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020026#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020027#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020028#include <haproxy/connection.h>
Willy Tarreau3afc4c42020-06-03 18:23:19 +020029#include <haproxy/dict-t.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020030#include <haproxy/dns.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020031#include <haproxy/errors.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020032#include <haproxy/global.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020033#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020034#include <haproxy/mailers.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +020035#include <haproxy/namespace.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020036#include <haproxy/port_range.h>
37#include <haproxy/protocol.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020038#include <haproxy/queue.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020039#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020040#include <haproxy/server.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020041#include <haproxy/stats-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020042#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020043#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020044#include <haproxy/task.h>
Willy Tarreau51cd5952020-06-05 12:25:38 +020045#include <haproxy/tcpcheck.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020046#include <haproxy/time.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020047
Baptiste Assmannda29fe22019-06-13 13:24:29 +020048
Willy Tarreau3ff577e2018-08-02 11:48:52 +020049static void srv_update_status(struct server *s);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020050static void srv_update_state(struct server *srv, int version, char **params);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +010051static int srv_apply_lastaddr(struct server *srv, int *err_code);
Olivier Houchardd16bfe62017-10-31 15:21:19 +010052static int srv_set_fqdn(struct server *srv, const char *fqdn, int dns_locked);
Baptiste Assmannda29fe22019-06-13 13:24:29 +020053static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params);
54static int srv_state_get_version(FILE *f);
William Dauchy6318d332020-05-02 21:52:36 +020055static void srv_cleanup_connections(struct server *srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +020056
Willy Tarreau21faa912012-10-10 08:27:36 +020057/* List head of all known server keywords */
58static struct srv_kw_list srv_keywords = {
59 .list = LIST_HEAD_INIT(srv_keywords.list)
60};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020061
Willy Tarreauaf613e82020-06-05 08:40:51 +020062__decl_thread(HA_SPINLOCK_T idle_conn_srv_lock);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010063struct eb_root idle_conn_srv = EB_ROOT;
64struct task *idle_conn_task = NULL;
Olivier Houchard9ea5d362019-02-14 18:29:09 +010065
Frédéric Lécaille7da71292019-05-20 09:47:07 +020066/* The server names dictionary */
67struct dict server_name_dict = {
68 .name = "server names",
69 .values = EB_ROOT_UNIQUE,
70};
71
Baptiste Assmannda29fe22019-06-13 13:24:29 +020072/* tree where global state_file is loaded */
Willy Tarreaufd1aa012019-12-20 17:23:40 +010073struct eb_root state_file = EB_ROOT_UNIQUE;
Baptiste Assmannda29fe22019-06-13 13:24:29 +020074
Simon Hormana3608442013-11-01 16:46:15 +090075int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020076{
Amaury Denoyellee6ba7912020-10-29 15:59:05 +010077 if ((s->cur_state != SRV_ST_STOPPED) || s->last_change >= now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020078 return s->down_time;
79
80 return now.tv_sec - s->last_change + s->down_time;
81}
Willy Tarreaubaaee002006-06-26 02:48:02 +020082
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050083int srv_lastsession(const struct server *s)
84{
85 if (s->counters.last_sess)
86 return now.tv_sec - s->counters.last_sess;
87
88 return -1;
89}
90
Simon Horman4a741432013-02-23 15:35:38 +090091int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020092{
Simon Horman4a741432013-02-23 15:35:38 +090093 const struct server *s = check->server;
94
Willy Tarreauff5ae352013-12-11 20:36:34 +010095 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +090096 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010097
Emeric Brun52a91d32017-08-31 14:41:55 +020098 if ((s->next_state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +090099 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100100
Simon Horman4a741432013-02-23 15:35:38 +0900101 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100102}
103
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100104/*
105 * Check that we did not get a hash collision.
Willy Tarreau595e7672020-10-20 17:30:08 +0200106 * Unlikely, but it can happen. The server's proxy must be at least
107 * read-locked.
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100108 */
109static inline void srv_check_for_dup_dyncookie(struct server *s)
Olivier Houchard4e694042017-03-14 20:01:29 +0100110{
111 struct proxy *p = s->proxy;
112 struct server *tmpserv;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100113
114 for (tmpserv = p->srv; tmpserv != NULL;
115 tmpserv = tmpserv->next) {
116 if (tmpserv == s)
117 continue;
118 if (tmpserv->next_admin & SRV_ADMF_FMAINT)
119 continue;
120 if (tmpserv->cookie &&
121 strcmp(tmpserv->cookie, s->cookie) == 0) {
122 ha_warning("We generated two equal cookies for two different servers.\n"
123 "Please change the secret key for '%s'.\n",
124 s->proxy->id);
125 }
126 }
127
128}
129
Willy Tarreau46b7f532018-08-21 11:54:26 +0200130/*
Willy Tarreau595e7672020-10-20 17:30:08 +0200131 * Must be called with the server lock held, and will read-lock the proxy.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200132 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100133void srv_set_dyncookie(struct server *s)
134{
135 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100136 char *tmpbuf;
137 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100138 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100139 size_t buffer_len;
140 int addr_len;
141 int port;
142
Willy Tarreau595e7672020-10-20 17:30:08 +0200143 HA_RWLOCK_RDLOCK(PROXY_LOCK, &p->lock);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200144
Olivier Houchard4e694042017-03-14 20:01:29 +0100145 if ((s->flags & SRV_F_COOKIESET) ||
146 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
147 s->proxy->dyncookie_key == NULL)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200148 goto out;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100149 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100150
151 if (s->addr.ss_family != AF_INET &&
152 s->addr.ss_family != AF_INET6)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200153 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100154 /*
155 * Buffer to calculate the cookie value.
156 * The buffer contains the secret key + the server IP address
157 * + the TCP port.
158 */
159 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
160 /*
161 * The TCP port should use only 2 bytes, but is stored in
162 * an unsigned int in struct server, so let's use 4, to be
163 * on the safe side.
164 */
165 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200166 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100167 memcpy(tmpbuf, p->dyncookie_key, key_len);
168 memcpy(&(tmpbuf[key_len]),
169 s->addr.ss_family == AF_INET ?
170 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
171 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
172 addr_len);
173 /*
174 * Make sure it's the same across all the load balancers,
175 * no matter their endianness.
176 */
177 port = htonl(s->svc_port);
178 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
179 hash_value = XXH64(tmpbuf, buffer_len, 0);
180 memprintf(&s->cookie, "%016llx", hash_value);
181 if (!s->cookie)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200182 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100183 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100184
185 /* Don't bother checking if the dyncookie is duplicated if
186 * the server is marked as "disabled", maybe it doesn't have
187 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100188 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100189 if (!(s->next_admin & SRV_ADMF_FMAINT))
190 srv_check_for_dup_dyncookie(s);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200191 out:
Willy Tarreau595e7672020-10-20 17:30:08 +0200192 HA_RWLOCK_RDUNLOCK(PROXY_LOCK, &p->lock);
Olivier Houchard4e694042017-03-14 20:01:29 +0100193}
194
Willy Tarreau21faa912012-10-10 08:27:36 +0200195/*
196 * Registers the server keyword list <kwl> as a list of valid keywords for next
197 * parsing sessions.
198 */
199void srv_register_keywords(struct srv_kw_list *kwl)
200{
201 LIST_ADDQ(&srv_keywords.list, &kwl->list);
202}
203
204/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
205 * keyword is found with a NULL ->parse() function, then an attempt is made to
206 * find one with a valid ->parse() function. This way it is possible to declare
207 * platform-dependant, known keywords as NULL, then only declare them as valid
208 * if some options are met. Note that if the requested keyword contains an
209 * opening parenthesis, everything from this point is ignored.
210 */
211struct srv_kw *srv_find_kw(const char *kw)
212{
213 int index;
214 const char *kwend;
215 struct srv_kw_list *kwl;
216 struct srv_kw *ret = NULL;
217
218 kwend = strchr(kw, '(');
219 if (!kwend)
220 kwend = kw + strlen(kw);
221
222 list_for_each_entry(kwl, &srv_keywords.list, list) {
223 for (index = 0; kwl->kw[index].kw != NULL; index++) {
224 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
225 kwl->kw[index].kw[kwend-kw] == 0) {
226 if (kwl->kw[index].parse)
227 return &kwl->kw[index]; /* found it !*/
228 else
229 ret = &kwl->kw[index]; /* may be OK */
230 }
231 }
232 }
233 return ret;
234}
235
236/* Dumps all registered "server" keywords to the <out> string pointer. The
237 * unsupported keywords are only dumped if their supported form was not
238 * found.
239 */
240void srv_dump_kws(char **out)
241{
242 struct srv_kw_list *kwl;
243 int index;
244
Christopher Faulet784063e2020-05-18 12:14:18 +0200245 if (!out)
246 return;
247
Willy Tarreau21faa912012-10-10 08:27:36 +0200248 *out = NULL;
249 list_for_each_entry(kwl, &srv_keywords.list, list) {
250 for (index = 0; kwl->kw[index].kw != NULL; index++) {
251 if (kwl->kw[index].parse ||
252 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
253 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
254 kwl->scope,
255 kwl->kw[index].kw,
256 kwl->kw[index].skip ? " <arg>" : "",
257 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
258 kwl->kw[index].parse ? "" : " (not supported)");
259 }
260 }
261 }
262}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100263
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100264/* Parse the "backup" server keyword */
265static int srv_parse_backup(char **args, int *cur_arg,
266 struct proxy *curproxy, struct server *newsrv, char **err)
267{
268 newsrv->flags |= SRV_F_BACKUP;
269 return 0;
270}
271
Alexander Liu2a54bb72019-05-22 19:44:48 +0800272
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100273/* Parse the "cookie" server keyword */
274static int srv_parse_cookie(char **args, int *cur_arg,
275 struct proxy *curproxy, struct server *newsrv, char **err)
276{
277 char *arg;
278
279 arg = args[*cur_arg + 1];
280 if (!*arg) {
281 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
282 return ERR_ALERT | ERR_FATAL;
283 }
284
285 free(newsrv->cookie);
286 newsrv->cookie = strdup(arg);
287 newsrv->cklen = strlen(arg);
288 newsrv->flags |= SRV_F_COOKIESET;
289 return 0;
290}
291
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100292/* Parse the "disabled" server keyword */
293static int srv_parse_disabled(char **args, int *cur_arg,
294 struct proxy *curproxy, struct server *newsrv, char **err)
295{
Emeric Brun52a91d32017-08-31 14:41:55 +0200296 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
297 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100298 newsrv->check.state |= CHK_ST_PAUSED;
299 newsrv->check.health = 0;
300 return 0;
301}
302
303/* Parse the "enabled" server keyword */
304static int srv_parse_enabled(char **args, int *cur_arg,
305 struct proxy *curproxy, struct server *newsrv, char **err)
306{
Emeric Brun52a91d32017-08-31 14:41:55 +0200307 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
308 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100309 newsrv->check.state &= ~CHK_ST_PAUSED;
310 newsrv->check.health = newsrv->check.rise;
311 return 0;
312}
313
Willy Tarreau9c538e02019-01-23 10:21:49 +0100314static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
315{
316 char *arg;
317
318 arg = args[*cur_arg + 1];
319 if (!*arg) {
320 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
321 return ERR_ALERT | ERR_FATAL;
322 }
323 newsrv->max_reuse = atoi(arg);
324
325 return 0;
326}
327
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100328static int srv_parse_pool_purge_delay(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100329{
330 const char *res;
331 char *arg;
332 unsigned int time;
333
334 arg = args[*cur_arg + 1];
335 if (!*arg) {
336 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
337 return ERR_ALERT | ERR_FATAL;
338 }
339 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200340 if (res == PARSE_TIME_OVER) {
341 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
342 args[*cur_arg+1], args[*cur_arg]);
343 return ERR_ALERT | ERR_FATAL;
344 }
345 else if (res == PARSE_TIME_UNDER) {
346 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
347 args[*cur_arg+1], args[*cur_arg]);
348 return ERR_ALERT | ERR_FATAL;
349 }
350 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100351 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
352 *res, args[*cur_arg]);
353 return ERR_ALERT | ERR_FATAL;
354 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100355 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100356
357 return 0;
358}
359
Willy Tarreau2f3f4d32020-07-01 07:43:51 +0200360static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
361{
362 char *arg;
363
364 arg = args[*cur_arg + 1];
365 if (!*arg) {
366 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
367 return ERR_ALERT | ERR_FATAL;
368 }
369
370 newsrv->low_idle_conns = atoi(arg);
371 return 0;
372}
373
Olivier Houchard006e3102018-12-10 18:30:32 +0100374static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
375{
376 char *arg;
377
378 arg = args[*cur_arg + 1];
379 if (!*arg) {
380 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
381 return ERR_ALERT | ERR_FATAL;
382 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100383
Olivier Houchard006e3102018-12-10 18:30:32 +0100384 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100385 if ((int)newsrv->max_idle_conns < -1) {
386 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
387 return ERR_ALERT | ERR_FATAL;
388 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100389
390 return 0;
391}
392
Willy Tarreaudff55432012-10-10 17:51:05 +0200393/* parse the "id" server keyword */
394static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
395{
396 struct eb32_node *node;
397
398 if (!*args[*cur_arg + 1]) {
399 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
400 return ERR_ALERT | ERR_FATAL;
401 }
402
403 newsrv->puid = atol(args[*cur_arg + 1]);
404 newsrv->conf.id.key = newsrv->puid;
405
406 if (newsrv->puid <= 0) {
407 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
408 return ERR_ALERT | ERR_FATAL;
409 }
410
411 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
412 if (node) {
413 struct server *target = container_of(node, struct server, conf.id);
414 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
415 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
416 target->id);
417 return ERR_ALERT | ERR_FATAL;
418 }
419
420 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200421 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200422 return 0;
423}
424
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100425/* Parse the "namespace" server keyword */
426static int srv_parse_namespace(char **args, int *cur_arg,
427 struct proxy *curproxy, struct server *newsrv, char **err)
428{
Willy Tarreaue5733232019-05-22 19:24:06 +0200429#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100430 char *arg;
431
432 arg = args[*cur_arg + 1];
433 if (!*arg) {
434 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
435 return ERR_ALERT | ERR_FATAL;
436 }
437
438 if (!strcmp(arg, "*")) {
439 /* Use the namespace associated with the connection (if present). */
440 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
441 return 0;
442 }
443
444 /*
445 * As this parser may be called several times for the same 'default-server'
446 * object, or for a new 'server' instance deriving from a 'default-server'
447 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
448 */
449 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
450
451 newsrv->netns = netns_store_lookup(arg, strlen(arg));
452 if (!newsrv->netns)
453 newsrv->netns = netns_store_insert(arg);
454
455 if (!newsrv->netns) {
456 memprintf(err, "Cannot open namespace '%s'", arg);
457 return ERR_ALERT | ERR_FATAL;
458 }
459
460 return 0;
461#else
462 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
463 return ERR_ALERT | ERR_FATAL;
464#endif
465}
466
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100467/* Parse the "no-backup" server keyword */
468static int srv_parse_no_backup(char **args, int *cur_arg,
469 struct proxy *curproxy, struct server *newsrv, char **err)
470{
471 newsrv->flags &= ~SRV_F_BACKUP;
472 return 0;
473}
474
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100475
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100476/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200477static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100478{
479 srv->pp_opts &= ~flags;
480 return 0;
481}
482
483/* Parse the "no-send-proxy" server keyword */
484static int srv_parse_no_send_proxy(char **args, int *cur_arg,
485 struct proxy *curproxy, struct server *newsrv, char **err)
486{
487 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
488}
489
490/* Parse the "no-send-proxy-v2" server keyword */
491static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
492 struct proxy *curproxy, struct server *newsrv, char **err)
493{
494 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
495}
496
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200497/* Parse the "no-tfo" server keyword */
498static int srv_parse_no_tfo(char **args, int *cur_arg,
499 struct proxy *curproxy, struct server *newsrv, char **err)
500{
501 newsrv->flags &= ~SRV_F_FASTOPEN;
502 return 0;
503}
504
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100505/* Parse the "non-stick" server keyword */
506static int srv_parse_non_stick(char **args, int *cur_arg,
507 struct proxy *curproxy, struct server *newsrv, char **err)
508{
509 newsrv->flags |= SRV_F_NON_STICK;
510 return 0;
511}
512
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100513/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200514static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100515{
516 srv->pp_opts |= flags;
517 return 0;
518}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200519/* parse the "proto" server keyword */
520static int srv_parse_proto(char **args, int *cur_arg,
521 struct proxy *px, struct server *newsrv, char **err)
522{
523 struct ist proto;
524
525 if (!*args[*cur_arg + 1]) {
526 memprintf(err, "'%s' : missing value", args[*cur_arg]);
527 return ERR_ALERT | ERR_FATAL;
528 }
529 proto = ist2(args[*cur_arg + 1], strlen(args[*cur_arg + 1]));
530 newsrv->mux_proto = get_mux_proto(proto);
531 if (!newsrv->mux_proto) {
532 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
533 return ERR_ALERT | ERR_FATAL;
534 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200535 return 0;
536}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100537
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100538/* parse the "proxy-v2-options" */
539static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
540 struct proxy *px, struct server *newsrv, char **err)
541{
542 char *p, *n;
543 for (p = args[*cur_arg+1]; p; p = n) {
544 n = strchr(p, ',');
545 if (n)
546 *n++ = '\0';
547 if (!strcmp(p, "ssl")) {
548 newsrv->pp_opts |= SRV_PP_V2_SSL;
549 } else if (!strcmp(p, "cert-cn")) {
550 newsrv->pp_opts |= SRV_PP_V2_SSL;
551 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100552 } else if (!strcmp(p, "cert-key")) {
553 newsrv->pp_opts |= SRV_PP_V2_SSL;
554 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
555 } else if (!strcmp(p, "cert-sig")) {
556 newsrv->pp_opts |= SRV_PP_V2_SSL;
557 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
558 } else if (!strcmp(p, "ssl-cipher")) {
559 newsrv->pp_opts |= SRV_PP_V2_SSL;
560 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100561 } else if (!strcmp(p, "authority")) {
562 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100563 } else if (!strcmp(p, "crc32c")) {
564 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100565 } else if (!strcmp(p, "unique-id")) {
566 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100567 } else
568 goto fail;
569 }
570 return 0;
571 fail:
572 if (err)
573 memprintf(err, "'%s' : proxy v2 option not implemented", p);
574 return ERR_ALERT | ERR_FATAL;
575}
576
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100577/* Parse the "observe" server keyword */
578static int srv_parse_observe(char **args, int *cur_arg,
579 struct proxy *curproxy, struct server *newsrv, char **err)
580{
581 char *arg;
582
583 arg = args[*cur_arg + 1];
584 if (!*arg) {
585 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
586 return ERR_ALERT | ERR_FATAL;
587 }
588
589 if (!strcmp(arg, "none")) {
590 newsrv->observe = HANA_OBS_NONE;
591 }
592 else if (!strcmp(arg, "layer4")) {
593 newsrv->observe = HANA_OBS_LAYER4;
594 }
595 else if (!strcmp(arg, "layer7")) {
596 if (curproxy->mode != PR_MODE_HTTP) {
597 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
598 return ERR_ALERT;
599 }
600 newsrv->observe = HANA_OBS_LAYER7;
601 }
602 else {
603 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
604 "but got '%s'\n", args[*cur_arg], arg);
605 return ERR_ALERT | ERR_FATAL;
606 }
607
608 return 0;
609}
610
Frédéric Lécaille16186232017-03-14 16:42:49 +0100611/* Parse the "redir" server keyword */
612static int srv_parse_redir(char **args, int *cur_arg,
613 struct proxy *curproxy, struct server *newsrv, char **err)
614{
615 char *arg;
616
617 arg = args[*cur_arg + 1];
618 if (!*arg) {
619 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
620 return ERR_ALERT | ERR_FATAL;
621 }
622
623 free(newsrv->rdr_pfx);
624 newsrv->rdr_pfx = strdup(arg);
625 newsrv->rdr_len = strlen(arg);
626
627 return 0;
628}
629
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100630/* Parse the "send-proxy" server keyword */
631static int srv_parse_send_proxy(char **args, int *cur_arg,
632 struct proxy *curproxy, struct server *newsrv, char **err)
633{
634 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
635}
636
637/* Parse the "send-proxy-v2" server keyword */
638static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
639 struct proxy *curproxy, struct server *newsrv, char **err)
640{
641 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
642}
643
Frédéric Lécailledba97072017-03-17 15:33:50 +0100644
645/* Parse the "source" server keyword */
646static int srv_parse_source(char **args, int *cur_arg,
647 struct proxy *curproxy, struct server *newsrv, char **err)
648{
649 char *errmsg;
650 int port_low, port_high;
651 struct sockaddr_storage *sk;
Frédéric Lécailledba97072017-03-17 15:33:50 +0100652
653 errmsg = NULL;
654
655 if (!*args[*cur_arg + 1]) {
656 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
657 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
658 goto err;
659 }
660
661 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200662 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
663 &errmsg, NULL, NULL,
664 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_RANGE | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100665 if (!sk) {
666 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
667 goto err;
668 }
669
Frédéric Lécailledba97072017-03-17 15:33:50 +0100670 newsrv->conn_src.opts |= CO_SRC_BIND;
671 newsrv->conn_src.source_addr = *sk;
672
673 if (port_low != port_high) {
674 int i;
675
Frédéric Lécailledba97072017-03-17 15:33:50 +0100676 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
677 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
678 newsrv->conn_src.sport_range->ports[i] = port_low + i;
679 }
680
681 *cur_arg += 2;
682 while (*(args[*cur_arg])) {
683 if (!strcmp(args[*cur_arg], "usesrc")) { /* address to use outside */
684#if defined(CONFIG_HAP_TRANSPARENT)
685 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100686 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
687 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +0100688 goto err;
689 }
690 if (!strcmp(args[*cur_arg + 1], "client")) {
691 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
692 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
693 }
694 else if (!strcmp(args[*cur_arg + 1], "clientip")) {
695 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
696 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
697 }
698 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
699 char *name, *end;
700
701 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +0100702 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100703 name++;
704
705 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +0100706 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +0100707 end++;
708
709 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
710 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
711 free(newsrv->conn_src.bind_hdr_name);
712 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
713 newsrv->conn_src.bind_hdr_len = end - name;
714 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
715 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
716 newsrv->conn_src.bind_hdr_occ = -1;
717
718 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +0100719 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100720 end++;
721 if (*end == ',') {
722 end++;
723 name = end;
724 if (*end == '-')
725 end++;
Willy Tarreau90807112020-02-25 08:16:33 +0100726 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100727 end++;
728 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
729 }
730
731 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100732 ha_alert("usesrc hdr_ip(name,num) does not support negative"
733 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100734 goto err;
735 }
736 }
737 else {
738 struct sockaddr_storage *sk;
739 int port1, port2;
740
741 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200742 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL,
743 &errmsg, NULL, NULL,
744 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100745 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100746 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100747 goto err;
748 }
749
Frédéric Lécailledba97072017-03-17 15:33:50 +0100750 newsrv->conn_src.tproxy_addr = *sk;
751 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
752 }
753 global.last_checks |= LSTCHK_NETADM;
754 *cur_arg += 2;
755 continue;
756#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100757 ha_alert("'usesrc' not allowed here because support for TPROXY was not compiled in.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +0100758 goto err;
759#endif /* defined(CONFIG_HAP_TRANSPARENT) */
760 } /* "usesrc" */
761
762 if (!strcmp(args[*cur_arg], "interface")) { /* specifically bind to this interface */
763#ifdef SO_BINDTODEVICE
764 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100765 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100766 goto err;
767 }
768 free(newsrv->conn_src.iface_name);
769 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
770 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
771 global.last_checks |= LSTCHK_NETADM;
772#else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100773 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100774 goto err;
775#endif
776 *cur_arg += 2;
777 continue;
778 }
779 /* this keyword in not an option of "source" */
780 break;
781 } /* while */
782
783 return 0;
784
785 err:
786 free(errmsg);
787 return ERR_ALERT | ERR_FATAL;
788}
789
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100790/* Parse the "stick" server keyword */
791static int srv_parse_stick(char **args, int *cur_arg,
792 struct proxy *curproxy, struct server *newsrv, char **err)
793{
794 newsrv->flags &= ~SRV_F_NON_STICK;
795 return 0;
796}
797
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100798/* Parse the "track" server keyword */
799static int srv_parse_track(char **args, int *cur_arg,
800 struct proxy *curproxy, struct server *newsrv, char **err)
801{
802 char *arg;
803
804 arg = args[*cur_arg + 1];
805 if (!*arg) {
806 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
807 return ERR_ALERT | ERR_FATAL;
808 }
809
810 free(newsrv->trackit);
811 newsrv->trackit = strdup(arg);
812
813 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800814}
815
816/* Parse the "socks4" server keyword */
817static int srv_parse_socks4(char **args, int *cur_arg,
818 struct proxy *curproxy, struct server *newsrv, char **err)
819{
820 char *errmsg;
821 int port_low, port_high;
822 struct sockaddr_storage *sk;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800823
824 errmsg = NULL;
825
826 if (!*args[*cur_arg + 1]) {
827 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
828 goto err;
829 }
830
831 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200832 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
833 &errmsg, NULL, NULL,
834 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT);
Alexander Liu2a54bb72019-05-22 19:44:48 +0800835 if (!sk) {
836 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
837 goto err;
838 }
839
Alexander Liu2a54bb72019-05-22 19:44:48 +0800840 newsrv->flags |= SRV_F_SOCKS4_PROXY;
841 newsrv->socks4_addr = *sk;
842
Alexander Liu2a54bb72019-05-22 19:44:48 +0800843 return 0;
844
845 err:
846 free(errmsg);
847 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100848}
849
Frédéric Lécailledba97072017-03-17 15:33:50 +0100850
Willy Tarreau034c88c2017-01-23 23:36:45 +0100851/* parse the "tfo" server keyword */
852static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
853{
854 newsrv->flags |= SRV_F_FASTOPEN;
855 return 0;
856}
857
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200858/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +0200859 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200860 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200861 *
862 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200863 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200864void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200865{
Willy Tarreau49e10802021-02-17 13:33:24 +0100866 struct stream *stream;
867 struct mt_list *elt1, elt2;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200868
Willy Tarreau49e10802021-02-17 13:33:24 +0100869 mt_list_for_each_entry_safe(stream, &srv->actconns, by_srv, elt1, elt2)
Willy Tarreau87b09662015-04-03 00:22:06 +0200870 if (stream->srv_conn == srv)
871 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200872}
873
874/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +0200875 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200876 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200877 *
878 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200879 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200880void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200881{
882 struct server *srv;
883
884 for (srv = px->srv; srv != NULL; srv = srv->next)
885 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +0200886 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200887}
888
Willy Tarreaubda92272014-05-20 21:55:30 +0200889/* Appends some information to a message string related to a server going UP or
890 * DOWN. If both <forced> and <reason> are null and the server tracks another
891 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +0200892 * If <check> is non-null, an entire string describing the check result will be
893 * appended after a comma and a space (eg: to report some information from the
894 * check that changed the state). In the other case, the string will be built
895 * using the check results stored into the struct server if present.
896 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +0200897 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200898 *
899 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200900 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200901void srv_append_status(struct buffer *msg, struct server *s,
902 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200903{
Emeric Brun5a133512017-10-19 14:42:30 +0200904 short status = s->op_st_chg.status;
905 short code = s->op_st_chg.code;
906 long duration = s->op_st_chg.duration;
907 char *desc = s->op_st_chg.reason;
908
909 if (check) {
910 status = check->status;
911 code = check->code;
912 duration = check->duration;
913 desc = check->desc;
914 }
915
916 if (status != -1) {
917 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
918
919 if (status >= HCHK_STATUS_L57DATA)
920 chunk_appendf(msg, ", code: %d", code);
921
922 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +0200923 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +0200924
925 chunk_appendf(msg, ", info: \"");
926
927 chunk_initlen(&src, desc, 0, strlen(desc));
928 chunk_asciiencode(msg, &src, '"');
929
930 chunk_appendf(msg, "\"");
931 }
932
933 if (duration >= 0)
934 chunk_appendf(msg, ", check duration: %ldms", duration);
935 }
936 else if (desc && *desc) {
937 chunk_appendf(msg, ", %s", desc);
938 }
939 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +0200940 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +0200941 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200942
943 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200944 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200945 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
946 " %d sessions active, %d requeued, %d remaining in queue",
947 s->proxy->srv_act, s->proxy->srv_bck,
948 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
949 s->cur_sess, xferred, s->nbpend);
950 else
951 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
952 " %d sessions requeued, %d total in queue",
953 s->proxy->srv_act, s->proxy->srv_bck,
954 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
955 xferred, s->nbpend);
956 }
957}
958
Emeric Brun5a133512017-10-19 14:42:30 +0200959/* Marks server <s> down, regardless of its checks' statuses. The server is
960 * registered in a list to postpone the counting of the remaining servers on
961 * the proxy and transfers queued streams whenever possible to other servers at
962 * a sync point. Maintenance servers are ignored. It stores the <reason> if
963 * non-null as the reason for going down or the available data from the check
964 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200965 *
966 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200967 */
Emeric Brun5a133512017-10-19 14:42:30 +0200968void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200969{
970 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200971
Emeric Brun64cc49c2017-10-03 14:46:45 +0200972 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200973 return;
974
Emeric Brun52a91d32017-08-31 14:41:55 +0200975 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +0200976 *s->op_st_chg.reason = 0;
977 s->op_st_chg.status = -1;
978 if (reason) {
979 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
980 }
981 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +0100982 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +0200983 s->op_st_chg.code = check->code;
984 s->op_st_chg.status = check->status;
985 s->op_st_chg.duration = check->duration;
986 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200987
Willy Tarreaueeba36b2018-08-21 08:22:26 +0200988 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +0200989 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +0200990
Emeric Brun9f0b4582017-10-23 14:39:51 +0200991 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100992 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +0200993 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100994 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +0200995 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200996}
997
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200998/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +0200999 * in maintenance. The server is registered in a list to postpone the counting
1000 * of the remaining servers on the proxy and tries to grab requests from the
1001 * proxy at a sync point. Maintenance servers are ignored. It stores the
1002 * <reason> if non-null as the reason for going down or the available data
1003 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001004 *
1005 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001006 */
Emeric Brun5a133512017-10-19 14:42:30 +02001007void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001008{
1009 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001010
Emeric Brun64cc49c2017-10-03 14:46:45 +02001011 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001012 return;
1013
Emeric Brun52a91d32017-08-31 14:41:55 +02001014 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001015 return;
1016
Emeric Brun52a91d32017-08-31 14:41:55 +02001017 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001018 *s->op_st_chg.reason = 0;
1019 s->op_st_chg.status = -1;
1020 if (reason) {
1021 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1022 }
1023 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001024 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001025 s->op_st_chg.code = check->code;
1026 s->op_st_chg.status = check->status;
1027 s->op_st_chg.duration = check->duration;
1028 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001029
Emeric Brun64cc49c2017-10-03 14:46:45 +02001030 if (s->slowstart <= 0)
1031 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001032
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001033 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001034 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001035
Emeric Brun9f0b4582017-10-23 14:39:51 +02001036 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001037 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001038 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001039 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001040 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001041}
1042
Willy Tarreau8eb77842014-05-21 13:54:57 +02001043/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001044 * isn't in maintenance. The server is registered in a list to postpone the
1045 * counting of the remaining servers on the proxy and tries to grab requests
1046 * from the proxy. Maintenance servers are ignored. It stores the
1047 * <reason> if non-null as the reason for going down or the available data
1048 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001049 * up. Note that it makes use of the trash to build the log strings, so <reason>
1050 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001051 *
1052 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001053 */
Emeric Brun5a133512017-10-19 14:42:30 +02001054void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001055{
1056 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001057
Emeric Brun64cc49c2017-10-03 14:46:45 +02001058 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001059 return;
1060
Emeric Brun52a91d32017-08-31 14:41:55 +02001061 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001062 return;
1063
Emeric Brun52a91d32017-08-31 14:41:55 +02001064 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001065 *s->op_st_chg.reason = 0;
1066 s->op_st_chg.status = -1;
1067 if (reason) {
1068 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1069 }
1070 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001071 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001072 s->op_st_chg.code = check->code;
1073 s->op_st_chg.status = check->status;
1074 s->op_st_chg.duration = check->duration;
1075 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001076
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001077 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001078 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001079
Emeric Brun9f0b4582017-10-23 14:39:51 +02001080 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001081 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001082 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001083 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001084 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001085}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001086
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001087/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1088 * enforce either maint mode or drain mode. It is not allowed to set more than
1089 * one flag at once. The equivalent "inherited" flag is propagated to all
1090 * tracking servers. Maintenance mode disables health checks (but not agent
1091 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001092 * is done. If <cause> is non-null, it will be displayed at the end of the log
1093 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001094 *
1095 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001096 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001097void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001098{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001099 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001100
1101 if (!mode)
1102 return;
1103
1104 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001105 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001106 return;
1107
Emeric Brun52a91d32017-08-31 14:41:55 +02001108 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001109 if (cause)
1110 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1111
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001112 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001113 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001114
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001115 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001116 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1117 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001118 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001119
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001120 /* compute the inherited flag to propagate */
1121 if (mode & SRV_ADMF_MAINT)
1122 mode = SRV_ADMF_IMAINT;
1123 else if (mode & SRV_ADMF_DRAIN)
1124 mode = SRV_ADMF_IDRAIN;
1125
Emeric Brun9f0b4582017-10-23 14:39:51 +02001126 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001127 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001128 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001129 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001130 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001131}
1132
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001133/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1134 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1135 * than one flag at once. The equivalent "inherited" flag is propagated to all
1136 * tracking servers. Leaving maintenance mode re-enables health checks. When
1137 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001138 *
1139 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001140 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001141void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001142{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001143 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001144
1145 if (!mode)
1146 return;
1147
1148 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001149 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001150 return;
1151
Emeric Brun52a91d32017-08-31 14:41:55 +02001152 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001153
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001154 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001155 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001156
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001157 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001158 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1159 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001160 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001161
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001162 if (mode & SRV_ADMF_MAINT)
1163 mode = SRV_ADMF_IMAINT;
1164 else if (mode & SRV_ADMF_DRAIN)
1165 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001166
Emeric Brun9f0b4582017-10-23 14:39:51 +02001167 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001168 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001169 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001170 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001171 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001172}
1173
Willy Tarreau757478e2016-11-03 19:22:19 +01001174/* principle: propagate maint and drain to tracking servers. This is useful
1175 * upon startup so that inherited states are correct.
1176 */
1177static void srv_propagate_admin_state(struct server *srv)
1178{
1179 struct server *srv2;
1180
1181 if (!srv->trackers)
1182 return;
1183
1184 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001185 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001186 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001187 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001188
Emeric Brun52a91d32017-08-31 14:41:55 +02001189 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001190 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001191 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001192 }
1193}
1194
1195/* Compute and propagate the admin states for all servers in proxy <px>.
1196 * Only servers *not* tracking another one are considered, because other
1197 * ones will be handled when the server they track is visited.
1198 */
1199void srv_compute_all_admin_states(struct proxy *px)
1200{
1201 struct server *srv;
1202
1203 for (srv = px->srv; srv; srv = srv->next) {
1204 if (srv->track)
1205 continue;
1206 srv_propagate_admin_state(srv);
1207 }
1208}
1209
Willy Tarreaudff55432012-10-10 17:51:05 +02001210/* Note: must not be declared <const> as its list will be overwritten.
1211 * Please take care of keeping this list alphabetically sorted, doing so helps
1212 * all code contributors.
1213 * Optional keywords are also declared with a NULL ->parse() function so that
1214 * the config parser can report an appropriate error when a known keyword was
1215 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001216 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001217 */
1218static struct srv_kw_list srv_kws = { "ALL", { }, {
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001219 { "backup", srv_parse_backup, 0, 1 }, /* Flag as backup server */
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +01001220 { "cookie", srv_parse_cookie, 1, 1 }, /* Assign a cookie to the server */
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +01001221 { "disabled", srv_parse_disabled, 0, 1 }, /* Start the server in 'disabled' state */
1222 { "enabled", srv_parse_enabled, 0, 1 }, /* Start the server in 'enabled' state */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001223 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
Willy Tarreau9c538e02019-01-23 10:21:49 +01001224 { "max-reuse", srv_parse_max_reuse, 1, 1 }, /* Set the max number of requests on a connection, -1 means unlimited */
Frédéric Lécaille22f41a22017-03-16 17:17:36 +01001225 { "namespace", srv_parse_namespace, 1, 1 }, /* Namespace the server socket belongs to (if supported) */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001226 { "no-backup", srv_parse_no_backup, 0, 1 }, /* Flag as non-backup server */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001227 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1 }, /* Disable use of PROXY V1 protocol */
1228 { "no-send-proxy-v2", srv_parse_no_send_proxy_v2, 0, 1 }, /* Disable use of PROXY V2 protocol */
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +02001229 { "no-tfo", srv_parse_no_tfo, 0, 1 }, /* Disable use of TCP Fast Open */
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001230 { "non-stick", srv_parse_non_stick, 0, 1 }, /* Disable stick-table persistence */
Frédéric Lécaille547356e2017-03-15 08:55:39 +01001231 { "observe", srv_parse_observe, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001232 { "pool-low-conn", srv_parse_pool_low_conn, 1, 1 }, /* Set the min number of orphan idle connecbefore being allowed to pick from other threads */
Olivier Houchard006e3102018-12-10 18:30:32 +01001233 { "pool-max-conn", srv_parse_pool_max_conn, 1, 1 }, /* Set the max number of orphan idle connections, 0 means unlimited */
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001234 { "pool-purge-delay", srv_parse_pool_purge_delay, 1, 1 }, /* Set the time before we destroy orphan idle connections, defaults to 1s */
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001235 { "proto", srv_parse_proto, 1, 1 }, /* Set the proto to use for all outgoing connections */
Emmanuel Hocdetf643b802018-02-01 15:20:32 +01001236 { "proxy-v2-options", srv_parse_proxy_v2_options, 1, 1 }, /* options for send-proxy-v2 */
Frédéric Lécaille16186232017-03-14 16:42:49 +01001237 { "redir", srv_parse_redir, 1, 1 }, /* Enable redirection mode */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001238 { "send-proxy", srv_parse_send_proxy, 0, 1 }, /* Enforce use of PROXY V1 protocol */
1239 { "send-proxy-v2", srv_parse_send_proxy_v2, 0, 1 }, /* Enforce use of PROXY V2 protocol */
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001240 { "source", srv_parse_source, -1, 1 }, /* Set the source address to be used to connect to the server */
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001241 { "stick", srv_parse_stick, 0, 1 }, /* Enable stick-table persistence */
Olivier Houchard8d82db72019-07-04 13:34:10 +02001242 { "tfo", srv_parse_tfo, 0, 1 }, /* enable TCP Fast Open of server */
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001243 { "track", srv_parse_track, 1, 1 }, /* Set the current state of the server, tracking another one */
Alexander Liu2a54bb72019-05-22 19:44:48 +08001244 { "socks4", srv_parse_socks4, 1, 1 }, /* Set the socks4 proxy of the server*/
Willy Tarreaudff55432012-10-10 17:51:05 +02001245 { NULL, NULL, 0 },
1246}};
1247
Willy Tarreau0108d902018-11-25 19:14:37 +01001248INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001249
Willy Tarreau004e0452013-11-21 11:22:01 +01001250/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001251 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001252 * state is automatically disabled if the time is elapsed. If <must_update> is
1253 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001254 *
1255 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001256 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001257void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001258{
1259 struct proxy *px = sv->proxy;
1260 unsigned w;
1261
1262 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1263 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001264 if (sv->next_state == SRV_ST_STARTING)
1265 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001266 }
1267
1268 /* We must take care of not pushing the server to full throttle during slow starts.
1269 * It must also start immediately, at least at the minimal step when leaving maintenance.
1270 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001271 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001272 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1273 else
1274 w = px->lbprm.wdiv;
1275
Emeric Brun52a91d32017-08-31 14:41:55 +02001276 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001277
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001278 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001279 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001280 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001281}
1282
Willy Tarreaubaaee002006-06-26 02:48:02 +02001283/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001284 * Parses weight_str and configures sv accordingly.
1285 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001286 *
1287 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001288 */
1289const char *server_parse_weight_change_request(struct server *sv,
1290 const char *weight_str)
1291{
1292 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001293 long int w;
1294 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001295
1296 px = sv->proxy;
1297
1298 /* if the weight is terminated with '%', it is set relative to
1299 * the initial weight, otherwise it is absolute.
1300 */
1301 if (!*weight_str)
1302 return "Require <weight> or <weight%>.\n";
1303
Simon Hormanb796afa2013-02-12 10:45:53 +09001304 w = strtol(weight_str, &end, 10);
1305 if (end == weight_str)
1306 return "Empty weight string empty or preceded by garbage";
1307 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001308 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001309 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001310 /* Avoid integer overflow */
1311 if (w > 25600)
1312 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001313 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001314 if (w > 256)
1315 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001316 }
1317 else if (w < 0 || w > 256)
1318 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001319 else if (end[0] != '\0')
1320 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001321
1322 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1323 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1324
1325 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001326 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001327
1328 return NULL;
1329}
1330
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001331/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001332 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1333 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001334 * Returns:
1335 * - error string on error
1336 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001337 *
1338 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001339 */
1340const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001341 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001342{
1343 unsigned char ip[INET6_ADDRSTRLEN];
1344
1345 if (inet_pton(AF_INET6, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001346 update_server_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001347 return NULL;
1348 }
1349 if (inet_pton(AF_INET, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001350 update_server_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001351 return NULL;
1352 }
1353
1354 return "Could not understand IP address format.\n";
1355}
1356
Willy Tarreau46b7f532018-08-21 11:54:26 +02001357/*
1358 * Must be called with the server lock held.
1359 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001360const char *server_parse_maxconn_change_request(struct server *sv,
1361 const char *maxconn_str)
1362{
1363 long int v;
1364 char *end;
1365
1366 if (!*maxconn_str)
1367 return "Require <maxconn>.\n";
1368
1369 v = strtol(maxconn_str, &end, 10);
1370 if (end == maxconn_str)
1371 return "maxconn string empty or preceded by garbage";
1372 else if (end[0] != '\0')
1373 return "Trailing garbage in maxconn string";
1374
1375 if (sv->maxconn == sv->minconn) { // static maxconn
1376 sv->maxconn = sv->minconn = v;
1377 } else { // dynamic maxconn
1378 sv->maxconn = v;
1379 }
1380
1381 if (may_dequeue_tasks(sv, sv->proxy))
1382 process_srv_queue(sv);
1383
1384 return NULL;
1385}
1386
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001387#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001388static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1389 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001390{
1391 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001392 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001393 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001394 NULL,
1395 };
1396
1397 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001398 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001399
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001400 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001401}
1402
1403static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1404{
1405 struct sample_expr *expr;
1406
1407 expr = srv_sni_sample_parse_expr(newsrv, px, px->conf.file, px->conf.line, err);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001408 if (!expr) {
1409 memprintf(err, "error detected while parsing sni expression : %s", *err);
1410 return ERR_ALERT | ERR_FATAL;
1411 }
1412
1413 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1414 memprintf(err, "error detected while parsing sni expression : "
1415 " fetch method '%s' extracts information from '%s', "
1416 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001417 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001418 return ERR_ALERT | ERR_FATAL;
1419 }
1420
1421 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1422 release_sample_expr(newsrv->ssl_ctx.sni);
1423 newsrv->ssl_ctx.sni = expr;
1424
1425 return 0;
1426}
1427#endif
1428
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001429static void display_parser_err(const char *file, int linenum, char **args, int cur_arg, int err_code, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001430{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001431 char *msg = "error encountered while processing ";
1432 char *quote = "'";
1433 char *token = args[cur_arg];
1434
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001435 if (err && *err) {
1436 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001437 msg = *err;
1438 quote = "";
1439 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001440 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001441
1442 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
1443 ha_warning("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1444 file, linenum, args[0], args[1],
1445 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001446 else
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001447 ha_alert("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1448 file, linenum, args[0], args[1],
1449 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001450}
1451
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001452static void srv_conn_src_sport_range_cpy(struct server *srv,
1453 struct server *src)
1454{
1455 int range_sz;
1456
1457 range_sz = src->conn_src.sport_range->size;
1458 if (range_sz > 0) {
1459 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1460 if (srv->conn_src.sport_range != NULL) {
1461 int i;
1462
1463 for (i = 0; i < range_sz; i++) {
1464 srv->conn_src.sport_range->ports[i] =
1465 src->conn_src.sport_range->ports[i];
1466 }
1467 }
1468 }
1469}
1470
1471/*
1472 * Copy <src> server connection source settings to <srv> server everything needed.
1473 */
1474static void srv_conn_src_cpy(struct server *srv, struct server *src)
1475{
1476 srv->conn_src.opts = src->conn_src.opts;
1477 srv->conn_src.source_addr = src->conn_src.source_addr;
1478
1479 /* Source port range copy. */
1480 if (src->conn_src.sport_range != NULL)
1481 srv_conn_src_sport_range_cpy(srv, src);
1482
1483#ifdef CONFIG_HAP_TRANSPARENT
1484 if (src->conn_src.bind_hdr_name != NULL) {
1485 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1486 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1487 }
1488 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1489 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1490#endif
1491 if (src->conn_src.iface_name != NULL)
1492 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1493}
1494
1495/*
1496 * Copy <src> server SSL settings to <srv> server allocating
1497 * everything needed.
1498 */
1499#if defined(USE_OPENSSL)
1500static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1501{
1502 if (src->ssl_ctx.ca_file != NULL)
1503 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1504 if (src->ssl_ctx.crl_file != NULL)
1505 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
1506 if (src->ssl_ctx.client_crt != NULL)
1507 srv->ssl_ctx.client_crt = strdup(src->ssl_ctx.client_crt);
1508
1509 srv->ssl_ctx.verify = src->ssl_ctx.verify;
1510
1511 if (src->ssl_ctx.verify_host != NULL)
1512 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
1513 if (src->ssl_ctx.ciphers != NULL)
1514 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02001515 if (src->ssl_ctx.options)
1516 srv->ssl_ctx.options = src->ssl_ctx.options;
1517 if (src->ssl_ctx.methods.flags)
1518 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
1519 if (src->ssl_ctx.methods.min)
1520 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
1521 if (src->ssl_ctx.methods.max)
1522 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
1523
Willy Tarreau5db847a2019-05-09 14:13:35 +02001524#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02001525 if (src->ssl_ctx.ciphersuites != NULL)
1526 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
1527#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001528 if (src->sni_expr != NULL)
1529 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01001530
1531#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
1532 if (src->ssl_ctx.alpn_str) {
1533 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
1534 if (srv->ssl_ctx.alpn_str) {
1535 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
1536 src->ssl_ctx.alpn_len);
1537 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
1538 }
1539 }
1540#endif
1541#ifdef OPENSSL_NPN_NEGOTIATED
1542 if (src->ssl_ctx.npn_str) {
1543 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
1544 if (srv->ssl_ctx.npn_str) {
1545 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
1546 src->ssl_ctx.npn_len);
1547 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
1548 }
1549 }
1550#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001551}
1552#endif
1553
1554/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001555 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001556 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001557 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001558 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001559static int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001560{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001561 char *hostname_dn;
1562 int hostname_len, hostname_dn_len;
1563
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001564 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001565 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001566
Christopher Faulet67957bd2017-09-27 11:00:59 +02001567 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001568 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001569 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
1570 hostname_dn, trash.size);
1571 if (hostname_dn_len == -1)
1572 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001573
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001574
Christopher Faulet67957bd2017-09-27 11:00:59 +02001575 free(srv->hostname);
1576 free(srv->hostname_dn);
1577 srv->hostname = strdup(hostname);
1578 srv->hostname_dn = strdup(hostname_dn);
1579 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001580 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001581 goto err;
1582
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001583 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001584
1585 err:
Christopher Faulet67957bd2017-09-27 11:00:59 +02001586 free(srv->hostname); srv->hostname = NULL;
1587 free(srv->hostname_dn); srv->hostname_dn = NULL;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001588 return -1;
1589}
1590
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001591/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001592 * Copy <src> server settings to <srv> server allocating
1593 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001594 * This function is not supposed to be called at any time, but only
1595 * during server settings parsing or during server allocations from
1596 * a server template, and just after having calloc()'ed a new server.
1597 * So, <src> may only be a default server (when parsing server settings)
1598 * or a server template (during server allocations from a server template).
1599 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
1600 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001601 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001602static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001603{
1604 /* Connection source settings copy */
1605 srv_conn_src_cpy(srv, src);
1606
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001607 if (srv_tmpl) {
1608 srv->addr = src->addr;
1609 srv->svc_port = src->svc_port;
1610 }
1611
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001612 srv->pp_opts = src->pp_opts;
1613 if (src->rdr_pfx != NULL) {
1614 srv->rdr_pfx = strdup(src->rdr_pfx);
1615 srv->rdr_len = src->rdr_len;
1616 }
1617 if (src->cookie != NULL) {
1618 srv->cookie = strdup(src->cookie);
1619 srv->cklen = src->cklen;
1620 }
1621 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01001622 srv->check.addr = src->check.addr;
1623 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001624 srv->check.use_ssl = src->check.use_ssl;
1625 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01001626 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01001627 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05001628 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001629 /* Note: 'flags' field has potentially been already initialized. */
1630 srv->flags |= src->flags;
1631 srv->do_check = src->do_check;
1632 srv->do_agent = src->do_agent;
1633 if (srv->check.port)
1634 srv->flags |= SRV_F_CHECKPORT;
1635 srv->check.inter = src->check.inter;
1636 srv->check.fastinter = src->check.fastinter;
1637 srv->check.downinter = src->check.downinter;
1638 srv->agent.use_ssl = src->agent.use_ssl;
1639 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001640
1641 if (src->agent.tcpcheck_rules) {
1642 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
1643 if (srv->agent.tcpcheck_rules) {
1644 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
1645 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
1646 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
1647 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
1648 &src->agent.tcpcheck_rules->preset_vars);
1649 }
1650 }
1651
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001652 srv->agent.inter = src->agent.inter;
1653 srv->agent.fastinter = src->agent.fastinter;
1654 srv->agent.downinter = src->agent.downinter;
1655 srv->maxqueue = src->maxqueue;
1656 srv->minconn = src->minconn;
1657 srv->maxconn = src->maxconn;
1658 srv->slowstart = src->slowstart;
1659 srv->observe = src->observe;
1660 srv->onerror = src->onerror;
1661 srv->onmarkeddown = src->onmarkeddown;
1662 srv->onmarkedup = src->onmarkedup;
1663 if (src->trackit != NULL)
1664 srv->trackit = strdup(src->trackit);
1665 srv->consecutive_errors_limit = src->consecutive_errors_limit;
1666 srv->uweight = srv->iweight = src->iweight;
1667
1668 srv->check.send_proxy = src->check.send_proxy;
1669 /* health: up, but will fall down at first failure */
1670 srv->check.rise = srv->check.health = src->check.rise;
1671 srv->check.fall = src->check.fall;
1672
1673 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001674 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
1675 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
1676 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001677 srv->check.state |= CHK_ST_PAUSED;
1678 srv->check.health = 0;
1679 }
1680
1681 /* health: up but will fall down at first failure */
1682 srv->agent.rise = srv->agent.health = src->agent.rise;
1683 srv->agent.fall = src->agent.fall;
1684
1685 if (src->resolvers_id != NULL)
1686 srv->resolvers_id = strdup(src->resolvers_id);
1687 srv->dns_opts.family_prio = src->dns_opts.family_prio;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001688 srv->dns_opts.accept_duplicate_ip = src->dns_opts.accept_duplicate_ip;
Daniel Corbettf8716912019-11-17 09:48:56 -05001689 srv->dns_opts.ignore_weight = src->dns_opts.ignore_weight;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001690 if (srv->dns_opts.family_prio == AF_UNSPEC)
1691 srv->dns_opts.family_prio = AF_INET6;
1692 memcpy(srv->dns_opts.pref_net,
1693 src->dns_opts.pref_net,
1694 sizeof srv->dns_opts.pref_net);
1695 srv->dns_opts.pref_net_nb = src->dns_opts.pref_net_nb;
1696
1697 srv->init_addr_methods = src->init_addr_methods;
1698 srv->init_addr = src->init_addr;
1699#if defined(USE_OPENSSL)
1700 srv_ssl_settings_cpy(srv, src);
1701#endif
1702#ifdef TCP_USER_TIMEOUT
1703 srv->tcp_ut = src->tcp_ut;
1704#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001705 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001706 srv->pool_purge_delay = src->pool_purge_delay;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001707 srv->low_idle_conns = src->low_idle_conns;
Olivier Houchard006e3102018-12-10 18:30:32 +01001708 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01001709 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001710
Olivier Houchard8da5f982017-08-04 18:35:36 +02001711 if (srv_tmpl)
1712 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001713
1714 srv->check.via_socks4 = src->check.via_socks4;
1715 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001716}
1717
William Lallemand313bfd12018-10-26 14:47:32 +02001718struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001719{
1720 struct server *srv;
1721
1722 srv = calloc(1, sizeof *srv);
1723 if (!srv)
1724 return NULL;
1725
1726 srv->obj_type = OBJ_TYPE_SERVER;
1727 srv->proxy = proxy;
Willy Tarreau49e10802021-02-17 13:33:24 +01001728 MT_LIST_INIT(&srv->actconns);
Patrick Hemmer0355dab2018-05-11 12:52:31 -04001729 srv->pendconns = EB_ROOT;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001730
Emeric Brun52a91d32017-08-31 14:41:55 +02001731 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001732 srv->last_change = now.tv_sec;
1733
Christopher Faulet38290462020-04-21 11:46:40 +02001734 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001735 srv->check.status = HCHK_STATUS_INI;
1736 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01001737 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02001738 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001739
Christopher Faulet38290462020-04-21 11:46:40 +02001740 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001741 srv->agent.status = HCHK_STATUS_INI;
1742 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01001743 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001744 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
1745
Willy Tarreau975b1552019-06-06 16:25:55 +02001746 /* please don't put default server settings here, they are set in
1747 * init_default_instance().
1748 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001749 return srv;
1750}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001751
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001752#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1753static int server_sni_expr_init(const char *file, int linenum, char **args, int cur_arg,
1754 struct server *srv, struct proxy *proxy)
1755{
1756 int ret;
1757 char *err = NULL;
1758
1759 if (!srv->sni_expr)
1760 return 0;
1761
1762 ret = server_parse_sni_expr(srv, proxy, &err);
1763 if (!ret)
1764 return 0;
1765
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001766 display_parser_err(file, linenum, args, cur_arg, ret, &err);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001767 free(err);
1768
1769 return ret;
1770}
1771#endif
1772
1773/*
1774 * Server initializations finalization.
1775 * Initialize health check, agent check and SNI expression if enabled.
1776 * Must not be called for a default server instance.
1777 */
1778static int server_finalize_init(const char *file, int linenum, char **args, int cur_arg,
1779 struct server *srv, struct proxy *px)
1780{
Christopher Fauletb3b53522020-04-27 11:17:10 +02001781#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001782 int ret;
Christopher Fauletb3b53522020-04-27 11:17:10 +02001783#endif
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001784
Christopher Faulet8892e5d2020-03-26 19:48:20 +01001785 if (srv->do_check && srv->trackit) {
1786 ha_alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1787 file, linenum);
1788 return ERR_ALERT | ERR_FATAL;
1789 }
1790
1791 if (srv->do_agent && !srv->agent.port) {
1792 ha_alert("parsing [%s:%d] : server %s does not have agent port. Agent check has been disabled.\n",
1793 file, linenum, srv->id);
1794 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001795 }
1796
1797#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1798 if ((ret = server_sni_expr_init(file, linenum, args, cur_arg, srv, px)) != 0)
1799 return ret;
1800#endif
1801
1802 if (srv->flags & SRV_F_BACKUP)
1803 px->srv_bck++;
1804 else
1805 px->srv_act++;
1806 srv_lb_commit_status(srv);
1807
1808 return 0;
1809}
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001810
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001811/*
1812 * Parse as much as possible such a range string argument: low[-high]
1813 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
1814 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
1815 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
1816 * Returns 0 if succeeded, -1 if not.
1817 */
1818static int srv_tmpl_parse_range(struct server *srv, const char *arg, int *nb_low, int *nb_high)
1819{
1820 char *nb_high_arg;
1821
1822 *nb_high = 0;
1823 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001824 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001825
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001826 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001827 *nb_high_arg++ = '\0';
1828 *nb_high = atoi(nb_high_arg);
1829 }
1830 else {
1831 *nb_high += *nb_low;
1832 *nb_low = 1;
1833 }
1834
1835 if (*nb_low < 0 || *nb_high < *nb_low)
1836 return -1;
1837
1838 return 0;
1839}
1840
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001841static inline void srv_set_id_from_prefix(struct server *srv, const char *prefix, int nb)
1842{
1843 chunk_printf(&trash, "%s%d", prefix, nb);
1844 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001845 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001846}
1847
1848/*
1849 * Initialize as much as possible servers from <srv> server template.
1850 * Note that a server template is a special server with
1851 * a few different parameters than a server which has
1852 * been parsed mostly the same way as a server.
Joseph Herlant44466822018-11-15 08:57:51 -08001853 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001854 * 'srv' template included.
1855 */
1856static int server_template_init(struct server *srv, struct proxy *px)
1857{
1858 int i;
1859 struct server *newsrv;
1860
1861 for (i = srv->tmpl_info.nb_low + 1; i <= srv->tmpl_info.nb_high; i++) {
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001862 newsrv = new_server(px);
1863 if (!newsrv)
1864 goto err;
1865
Christopher Faulet75bef002020-11-02 22:04:55 +01001866 newsrv->conf.file = strdup(srv->conf.file);
1867 newsrv->conf.line = srv->conf.line;
1868
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001869 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001870 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001871#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1872 if (newsrv->sni_expr) {
1873 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
1874 if (!newsrv->ssl_ctx.sni)
1875 goto err;
1876 }
1877#endif
1878 /* Set this new server ID. */
1879 srv_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
1880
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001881 /* Linked backwards first. This will be restablished after parsing. */
1882 newsrv->next = px->srv;
1883 px->srv = newsrv;
1884 }
1885 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1886
1887 return i - srv->tmpl_info.nb_low;
1888
1889 err:
1890 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1891 if (newsrv) {
1892#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1893 release_sample_expr(newsrv->ssl_ctx.sni);
1894#endif
1895 free_check(&newsrv->agent);
1896 free_check(&newsrv->check);
1897 }
1898 free(newsrv);
1899 return i - srv->tmpl_info.nb_low;
1900}
1901
Emeric Brund3db3842020-07-21 16:54:36 +02001902int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy,
1903 struct proxy *defproxy, int parse_addr, int in_peers_section, int initial_resolve)
Willy Tarreau272adea2014-03-31 10:39:59 +02001904{
1905 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001906 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001907 char *errmsg = NULL;
1908 int err_code = 0;
1909 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +02001910 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001911
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001912 if (!strcmp(args[0], "server") ||
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02001913 !strcmp(args[0], "peer") ||
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001914 !strcmp(args[0], "default-server") ||
1915 !strcmp(args[0], "server-template")) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001916 int cur_arg;
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001917 int defsrv = (*args[0] == 'd');
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02001918 int srv = !defsrv && (*args[0] == 'p' || !strcmp(args[0], "server"));
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001919 int srv_tmpl = !defsrv && !srv;
1920 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02001921
1922 if (!defsrv && curproxy == defproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001923 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001924 err_code |= ERR_ALERT | ERR_FATAL;
1925 goto out;
1926 }
Christopher Faulet75ffbf92021-01-13 13:14:13 +01001927 else if (failifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) {
1928 err_code |= ERR_ALERT | ERR_FATAL;
1929 goto out;
1930 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001931
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001932 /* There is no mandatory first arguments for default server. */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01001933 if (srv && parse_addr) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001934 if (!*args[2]) {
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +02001935 if (in_peers_section) {
1936 return 0;
1937 }
1938 else {
1939 /* 'server' line number of argument check. */
1940 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1941 file, linenum, args[0]);
1942 err_code |= ERR_ALERT | ERR_FATAL;
1943 goto out;
1944 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001945 }
1946
1947 err = invalid_char(args[1]);
1948 }
1949 else if (srv_tmpl) {
1950 if (!*args[3]) {
1951 /* 'server-template' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001952 ha_alert("parsing [%s:%d] : '%s' expects <prefix> <nb | range> <addr>[:<port>] as arguments.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001953 file, linenum, args[0]);
1954 err_code |= ERR_ALERT | ERR_FATAL;
1955 goto out;
1956 }
1957
1958 err = invalid_prefix_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001959 }
1960
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001961 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001962 ha_alert("parsing [%s:%d] : character '%c' is not permitted in %s %s '%s'.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001963 file, linenum, *err, args[0], srv ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001964 err_code |= ERR_ALERT | ERR_FATAL;
1965 goto out;
1966 }
1967
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001968 cur_arg = 2;
1969 if (srv_tmpl) {
1970 /* Parse server-template <nb | range> arg. */
1971 if (srv_tmpl_parse_range(newsrv, args[cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001972 ha_alert("parsing [%s:%d] : Wrong %s number or range arg '%s'.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001973 file, linenum, args[0], args[cur_arg]);
1974 err_code |= ERR_ALERT | ERR_FATAL;
1975 goto out;
1976 }
1977 cur_arg++;
1978 }
1979
Willy Tarreau272adea2014-03-31 10:39:59 +02001980 if (!defsrv) {
1981 struct sockaddr_storage *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01001982 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02001983
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001984 newsrv = new_server(curproxy);
1985 if (!newsrv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001986 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Willy Tarreau272adea2014-03-31 10:39:59 +02001987 err_code |= ERR_ALERT | ERR_ABORT;
1988 goto out;
1989 }
1990
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001991 if (srv_tmpl) {
1992 newsrv->tmpl_info.nb_low = tmpl_range_low;
1993 newsrv->tmpl_info.nb_high = tmpl_range_high;
1994 }
1995
Willy Tarreau272adea2014-03-31 10:39:59 +02001996 /* the servers are linked backwards first */
1997 newsrv->next = curproxy->srv;
1998 curproxy->srv = newsrv;
Willy Tarreau272adea2014-03-31 10:39:59 +02001999 newsrv->conf.file = strdup(file);
2000 newsrv->conf.line = linenum;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002001 /* Note: for a server template, its id is its prefix.
2002 * This is a temporary id which will be used for server allocations to come
2003 * after parsing.
2004 */
2005 if (srv)
2006 newsrv->id = strdup(args[1]);
2007 else
2008 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002009
2010 /* several ways to check the port component :
2011 * - IP => port=+0, relative (IPv4 only)
2012 * - IP: => port=+0, relative
2013 * - IP:N => port=N, absolute
2014 * - IP:+N => port=+N, relative
2015 * - IP:-N => port=-N, relative
2016 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002017 if (!parse_addr)
2018 goto skip_addr;
2019
Willy Tarreau65ec4e32020-09-16 19:17:08 +02002020 sk = str2sa_range(args[cur_arg], &port, &port1, &port2, NULL, NULL,
2021 &errmsg, NULL, &fqdn,
2022 (initial_resolve ? PA_O_RESOLVE : 0) | PA_O_PORT_OK | PA_O_PORT_OFS | PA_O_STREAM | PA_O_XPRT | PA_O_CONNECT);
Willy Tarreau272adea2014-03-31 10:39:59 +02002023 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002024 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau272adea2014-03-31 10:39:59 +02002025 err_code |= ERR_ALERT | ERR_FATAL;
2026 goto out;
2027 }
2028
Willy Tarreau272adea2014-03-31 10:39:59 +02002029 if (!port1 || !port2) {
2030 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +02002031 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +02002032 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002033
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002034 /* save hostname and create associated name resolution */
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002035 if (fqdn) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002036 if (fqdn[0] == '_') { /* SRV record */
Olivier Houchard8da5f982017-08-04 18:35:36 +02002037 /* Check if a SRV request already exists, and if not, create it */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002038 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2039 newsrv->srvrq = new_dns_srvrq(newsrv, fqdn);
2040 if (newsrv->srvrq == NULL) {
Olivier Houchard8da5f982017-08-04 18:35:36 +02002041 err_code |= ERR_ALERT | ERR_FATAL;
2042 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002043 }
2044 }
2045 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002046 ha_alert("parsing [%s:%d] : Can't create DNS resolution for server '%s'\n",
Christopher Faulet67957bd2017-09-27 11:00:59 +02002047 file, linenum, newsrv->id);
2048 err_code |= ERR_ALERT | ERR_FATAL;
2049 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002050 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002051 }
2052
Willy Tarreau272adea2014-03-31 10:39:59 +02002053 newsrv->addr = *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002054 newsrv->svc_port = port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002055
Olivier Houchard8da5f982017-08-04 18:35:36 +02002056 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002057 ha_alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002058 file, linenum, newsrv->addr.ss_family, args[cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002059 err_code |= ERR_ALERT | ERR_FATAL;
2060 goto out;
2061 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002062
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002063 cur_arg++;
2064 skip_addr:
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002065 /* Copy default server settings to new server settings. */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002066 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002067 HA_SPIN_INIT(&newsrv->lock);
Willy Tarreau272adea2014-03-31 10:39:59 +02002068 } else {
2069 newsrv = &curproxy->defsrv;
2070 cur_arg = 1;
Thierry Fournierada34842016-02-17 21:25:09 +01002071 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002072 newsrv->dns_opts.accept_duplicate_ip = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002073 }
2074
2075 while (*args[cur_arg]) {
Christopher Fauletcbba66c2020-04-06 14:26:30 +02002076 if (!strcmp(args[cur_arg], "init-addr")) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002077 char *p, *end;
2078 int done;
Willy Tarreau4310d362016-11-02 15:05:56 +01002079 struct sockaddr_storage sa;
Baptiste Assmann25938272016-09-21 20:26:16 +02002080
2081 newsrv->init_addr_methods = 0;
2082 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
2083
2084 for (p = args[cur_arg + 1]; *p; p = end) {
2085 /* cut on next comma */
2086 for (end = p; *end && *end != ','; end++);
2087 if (*end)
2088 *(end++) = 0;
2089
Willy Tarreau4310d362016-11-02 15:05:56 +01002090 memset(&sa, 0, sizeof(sa));
Baptiste Assmann25938272016-09-21 20:26:16 +02002091 if (!strcmp(p, "libc")) {
2092 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
2093 }
2094 else if (!strcmp(p, "last")) {
2095 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
2096 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01002097 else if (!strcmp(p, "none")) {
2098 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
2099 }
Willy Tarreau4310d362016-11-02 15:05:56 +01002100 else if (str2ip2(p, &sa, 0)) {
2101 if (is_addr(&newsrv->init_addr)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002102 ha_alert("parsing [%s:%d]: '%s' : initial address already specified, cannot add '%s'.\n",
Willy Tarreau4310d362016-11-02 15:05:56 +01002103 file, linenum, args[cur_arg], p);
2104 err_code |= ERR_ALERT | ERR_FATAL;
2105 goto out;
2106 }
2107 newsrv->init_addr = sa;
2108 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
2109 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002110 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002111 ha_alert("parsing [%s:%d]: '%s' : unknown init-addr method '%s', supported methods are 'libc', 'last', 'none'.\n",
Baptiste Assmann25938272016-09-21 20:26:16 +02002112 file, linenum, args[cur_arg], p);
2113 err_code |= ERR_ALERT | ERR_FATAL;
2114 goto out;
2115 }
2116 if (!done) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002117 ha_alert("parsing [%s:%d]: '%s' : too many init-addr methods when trying to add '%s'\n",
Baptiste Assmann25938272016-09-21 20:26:16 +02002118 file, linenum, args[cur_arg], p);
2119 err_code |= ERR_ALERT | ERR_FATAL;
2120 goto out;
2121 }
2122 }
2123 cur_arg += 2;
2124 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002125 else if (!strcmp(args[cur_arg], "resolvers")) {
Frédéric Lécailledaa2fe62017-04-20 12:17:50 +02002126 free(newsrv->resolvers_id);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002127 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
2128 cur_arg += 2;
2129 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002130 else if (!strcmp(args[cur_arg], "resolve-opts")) {
2131 char *p, *end;
2132
2133 for (p = args[cur_arg + 1]; *p; p = end) {
2134 /* cut on next comma */
2135 for (end = p; *end && *end != ','; end++);
2136 if (*end)
2137 *(end++) = 0;
2138
2139 if (!strcmp(p, "allow-dup-ip")) {
2140 newsrv->dns_opts.accept_duplicate_ip = 1;
2141 }
Daniel Corbettf8716912019-11-17 09:48:56 -05002142 else if (!strcmp(p, "ignore-weight")) {
2143 newsrv->dns_opts.ignore_weight = 1;
2144 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002145 else if (!strcmp(p, "prevent-dup-ip")) {
2146 newsrv->dns_opts.accept_duplicate_ip = 0;
2147 }
2148 else {
Daniel Corbettf8716912019-11-17 09:48:56 -05002149 ha_alert("parsing [%s:%d]: '%s' : unknown resolve-opts option '%s', supported methods are 'allow-dup-ip', 'ignore-weight', and 'prevent-dup-ip'.\n",
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002150 file, linenum, args[cur_arg], p);
2151 err_code |= ERR_ALERT | ERR_FATAL;
2152 goto out;
2153 }
2154 }
2155
2156 cur_arg += 2;
2157 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002158 else if (!strcmp(args[cur_arg], "resolve-prefer")) {
2159 if (!strcmp(args[cur_arg + 1], "ipv4"))
Thierry Fournierada34842016-02-17 21:25:09 +01002160 newsrv->dns_opts.family_prio = AF_INET;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002161 else if (!strcmp(args[cur_arg + 1], "ipv6"))
Thierry Fournierada34842016-02-17 21:25:09 +01002162 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002163 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002164 ha_alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002165 file, linenum, args[cur_arg]);
2166 err_code |= ERR_ALERT | ERR_FATAL;
2167 goto out;
2168 }
2169 cur_arg += 2;
2170 }
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002171 else if (!strcmp(args[cur_arg], "resolve-net")) {
2172 char *p, *e;
2173 unsigned char mask;
2174 struct dns_options *opt;
2175
2176 if (!args[cur_arg + 1] || args[cur_arg + 1][0] == '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002177 ha_alert("parsing [%s:%d]: '%s' expects a list of networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002178 file, linenum, args[cur_arg]);
2179 err_code |= ERR_ALERT | ERR_FATAL;
2180 goto out;
2181 }
2182
2183 opt = &newsrv->dns_opts;
2184
2185 /* Split arguments by comma, and convert it from ipv4 or ipv6
2186 * string network in in_addr or in6_addr.
2187 */
2188 p = args[cur_arg + 1];
2189 e = p;
2190 while (*p != '\0') {
Joseph Herlant44466822018-11-15 08:57:51 -08002191 /* If no room available, return error. */
David Carlierd10025c2016-04-08 10:26:44 +01002192 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002193 ha_alert("parsing [%s:%d]: '%s' exceed %d networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002194 file, linenum, args[cur_arg], SRV_MAX_PREF_NET);
2195 err_code |= ERR_ALERT | ERR_FATAL;
2196 goto out;
2197 }
2198 /* look for end or comma. */
2199 while (*e != ',' && *e != '\0')
2200 e++;
2201 if (*e == ',') {
2202 *e = '\0';
2203 e++;
2204 }
2205 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
2206 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
2207 /* Try to convert input string from ipv4 or ipv6 network. */
2208 opt->pref_net[opt->pref_net_nb].family = AF_INET;
2209 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
2210 &mask)) {
2211 /* Try to convert input string from ipv6 network. */
2212 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
2213 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
2214 } else {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05002215 /* All network conversions fail, return error. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002216 ha_alert("parsing [%s:%d]: '%s': invalid network '%s'.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002217 file, linenum, args[cur_arg], p);
2218 err_code |= ERR_ALERT | ERR_FATAL;
2219 goto out;
2220 }
2221 opt->pref_net_nb++;
2222 p = e;
2223 }
2224
2225 cur_arg += 2;
2226 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002227 else if (!strcmp(args[cur_arg], "weight")) {
2228 int w;
2229 w = atol(args[cur_arg + 1]);
2230 if (w < 0 || w > SRV_UWGHT_MAX) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002231 ha_alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002232 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
2233 err_code |= ERR_ALERT | ERR_FATAL;
2234 goto out;
2235 }
2236 newsrv->uweight = newsrv->iweight = w;
2237 cur_arg += 2;
2238 }
Emeric Brun97556472020-05-30 01:42:45 +02002239 else if (!strcmp(args[cur_arg], "log-proto")) {
2240 if (!strcmp(args[cur_arg + 1], "legacy"))
2241 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
2242 else if (!strcmp(args[cur_arg + 1], "octet-count"))
2243 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
2244 else {
2245 ha_alert("parsing [%s:%d]: '%s' expects one of 'legacy' or "
2246 "'octet-count' but got '%s'\n",
2247 file, linenum, args[cur_arg], args[cur_arg + 1]);
2248 err_code |= ERR_ALERT | ERR_FATAL;
2249 goto out;
2250 }
2251 cur_arg += 2;
2252 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002253 else if (!strcmp(args[cur_arg], "minconn")) {
2254 newsrv->minconn = atol(args[cur_arg + 1]);
2255 cur_arg += 2;
2256 }
2257 else if (!strcmp(args[cur_arg], "maxconn")) {
2258 newsrv->maxconn = atol(args[cur_arg + 1]);
2259 cur_arg += 2;
2260 }
2261 else if (!strcmp(args[cur_arg], "maxqueue")) {
2262 newsrv->maxqueue = atol(args[cur_arg + 1]);
2263 cur_arg += 2;
2264 }
2265 else if (!strcmp(args[cur_arg], "slowstart")) {
2266 /* slowstart is stored in seconds */
2267 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02002268
2269 if (err == PARSE_TIME_OVER) {
2270 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).\n",
2271 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2272 err_code |= ERR_ALERT | ERR_FATAL;
2273 goto out;
2274 }
2275 else if (err == PARSE_TIME_UNDER) {
2276 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.\n",
2277 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2278 err_code |= ERR_ALERT | ERR_FATAL;
2279 goto out;
2280 }
2281 else if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002282 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002283 file, linenum, *err, newsrv->id);
2284 err_code |= ERR_ALERT | ERR_FATAL;
2285 goto out;
2286 }
2287 newsrv->slowstart = (val + 999) / 1000;
2288 cur_arg += 2;
2289 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002290 else if (!strcmp(args[cur_arg], "on-error")) {
2291 if (!strcmp(args[cur_arg + 1], "fastinter"))
2292 newsrv->onerror = HANA_ONERR_FASTINTER;
2293 else if (!strcmp(args[cur_arg + 1], "fail-check"))
2294 newsrv->onerror = HANA_ONERR_FAILCHK;
2295 else if (!strcmp(args[cur_arg + 1], "sudden-death"))
2296 newsrv->onerror = HANA_ONERR_SUDDTH;
2297 else if (!strcmp(args[cur_arg + 1], "mark-down"))
2298 newsrv->onerror = HANA_ONERR_MARKDWN;
2299 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002300 ha_alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
Willy Tarreau272adea2014-03-31 10:39:59 +02002301 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
2302 file, linenum, args[cur_arg], args[cur_arg + 1]);
2303 err_code |= ERR_ALERT | ERR_FATAL;
2304 goto out;
2305 }
2306
2307 cur_arg += 2;
2308 }
2309 else if (!strcmp(args[cur_arg], "on-marked-down")) {
2310 if (!strcmp(args[cur_arg + 1], "shutdown-sessions"))
2311 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
2312 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002313 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002314 file, linenum, args[cur_arg], args[cur_arg + 1]);
2315 err_code |= ERR_ALERT | ERR_FATAL;
2316 goto out;
2317 }
2318
2319 cur_arg += 2;
2320 }
2321 else if (!strcmp(args[cur_arg], "on-marked-up")) {
2322 if (!strcmp(args[cur_arg + 1], "shutdown-backup-sessions"))
2323 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
2324 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002325 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002326 file, linenum, args[cur_arg], args[cur_arg + 1]);
2327 err_code |= ERR_ALERT | ERR_FATAL;
2328 goto out;
2329 }
2330
2331 cur_arg += 2;
2332 }
2333 else if (!strcmp(args[cur_arg], "error-limit")) {
2334 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002335 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002336 file, linenum, args[cur_arg]);
2337 err_code |= ERR_ALERT | ERR_FATAL;
2338 goto out;
2339 }
2340
2341 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
2342
2343 if (newsrv->consecutive_errors_limit <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002344 ha_alert("parsing [%s:%d]: %s has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002345 file, linenum, args[cur_arg]);
2346 err_code |= ERR_ALERT | ERR_FATAL;
2347 goto out;
2348 }
2349 cur_arg += 2;
2350 }
Frédéric Lécaille8d083ed2017-04-14 15:19:56 +02002351 else if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside: needs "source" first */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002352 ha_alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002353 file, linenum, "usesrc", "source");
2354 err_code |= ERR_ALERT | ERR_FATAL;
2355 goto out;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002356 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002357 else {
2358 static int srv_dumped;
2359 struct srv_kw *kw;
2360 char *err;
2361
2362 kw = srv_find_kw(args[cur_arg]);
2363 if (kw) {
2364 char *err = NULL;
2365 int code;
2366
2367 if (!kw->parse) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002368 ha_alert("parsing [%s:%d] : '%s %s' : '%s' option is not implemented in this version (check build options).\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002369 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002370 if (kw->skip != -1)
2371 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002372 err_code |= ERR_ALERT | ERR_FATAL;
2373 goto out;
2374 }
2375
2376 if (defsrv && !kw->default_ok) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002377 ha_alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002378 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002379 if (kw->skip != -1)
2380 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002381 err_code |= ERR_ALERT;
2382 continue;
2383 }
2384
2385 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
2386 err_code |= code;
2387
2388 if (code) {
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002389 display_parser_err(file, linenum, args, cur_arg, code, &err);
Willy Tarreau272adea2014-03-31 10:39:59 +02002390 if (code & ERR_FATAL) {
2391 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002392 if (kw->skip != -1)
2393 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002394 goto out;
2395 }
2396 }
2397 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002398 if (kw->skip != -1)
2399 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002400 continue;
2401 }
2402
2403 err = NULL;
2404 if (!srv_dumped) {
2405 srv_dump_kws(&err);
2406 indent_msg(&err, 4);
2407 srv_dumped = 1;
2408 }
2409
Christopher Faulet767a84b2017-11-24 16:50:31 +01002410 ha_alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002411 file, linenum, args[0], args[1], args[cur_arg],
2412 err ? " Registered keywords :" : "", err ? err : "");
2413 free(err);
2414
2415 err_code |= ERR_ALERT | ERR_FATAL;
2416 goto out;
2417 }
2418 }
2419
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002420 if (!defsrv)
2421 err_code |= server_finalize_init(file, linenum, args, cur_arg, newsrv, curproxy);
2422 if (err_code & ERR_FATAL)
2423 goto out;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002424 if (srv_tmpl)
2425 server_template_init(newsrv, curproxy);
Willy Tarreau272adea2014-03-31 10:39:59 +02002426 }
Willy Tarreau07101d52015-09-08 16:16:35 +02002427 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002428 return 0;
2429
2430 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02002431 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002432 free(errmsg);
2433 return err_code;
2434}
2435
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002436/* Returns a pointer to the first server matching either id <id>.
2437 * NULL is returned if no match is found.
2438 * the lookup is performed in the backend <bk>
2439 */
2440struct server *server_find_by_id(struct proxy *bk, int id)
2441{
2442 struct eb32_node *eb32;
2443 struct server *curserver;
2444
2445 if (!bk || (id ==0))
2446 return NULL;
2447
2448 /* <bk> has no backend capabilities, so it can't have a server */
2449 if (!(bk->cap & PR_CAP_BE))
2450 return NULL;
2451
2452 curserver = NULL;
2453
2454 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2455 if (eb32)
2456 curserver = container_of(eb32, struct server, conf.id);
2457
2458 return curserver;
2459}
2460
2461/* Returns a pointer to the first server matching either name <name>, or id
2462 * if <name> starts with a '#'. NULL is returned if no match is found.
2463 * the lookup is performed in the backend <bk>
2464 */
2465struct server *server_find_by_name(struct proxy *bk, const char *name)
2466{
2467 struct server *curserver;
2468
2469 if (!bk || !name)
2470 return NULL;
2471
2472 /* <bk> has no backend capabilities, so it can't have a server */
2473 if (!(bk->cap & PR_CAP_BE))
2474 return NULL;
2475
2476 curserver = NULL;
2477 if (*name == '#') {
2478 curserver = server_find_by_id(bk, atoi(name + 1));
2479 if (curserver)
2480 return curserver;
2481 }
2482 else {
2483 curserver = bk->srv;
2484
2485 while (curserver && (strcmp(curserver->id, name) != 0))
2486 curserver = curserver->next;
2487
2488 if (curserver)
2489 return curserver;
2490 }
2491
2492 return NULL;
2493}
2494
2495struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2496{
2497 struct server *byname;
2498 struct server *byid;
2499
2500 if (!name && !id)
2501 return NULL;
2502
2503 if (diff)
2504 *diff = 0;
2505
2506 byname = byid = NULL;
2507
2508 if (name) {
2509 byname = server_find_by_name(bk, name);
2510 if (byname && (!id || byname->puid == id))
2511 return byname;
2512 }
2513
2514 /* remaining possibilities :
2515 * - name not set
2516 * - name set but not found
2517 * - name found but ID doesn't match
2518 */
2519 if (id) {
2520 byid = server_find_by_id(bk, id);
2521 if (byid) {
2522 if (byname) {
2523 /* use id only if forced by configuration */
2524 if (byid->flags & SRV_F_FORCED_ID) {
2525 if (diff)
2526 *diff |= 2;
2527 return byid;
2528 }
2529 else {
2530 if (diff)
2531 *diff |= 1;
2532 return byname;
2533 }
2534 }
2535
2536 /* remaining possibilities:
2537 * - name not set
2538 * - name set but not found
2539 */
2540 if (name && diff)
2541 *diff |= 2;
2542 return byid;
2543 }
2544
2545 /* id bot found */
2546 if (byname) {
2547 if (diff)
2548 *diff |= 1;
2549 return byname;
2550 }
2551 }
2552
2553 return NULL;
2554}
2555
Willy Tarreau46b7f532018-08-21 11:54:26 +02002556/* Update a server state using the parameters available in the params list.
2557 *
2558 * Grabs the server lock during operation.
2559 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002560static void srv_update_state(struct server *srv, int version, char **params)
2561{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002562 char *p;
Willy Tarreau83061a82018-07-13 11:56:34 +02002563 struct buffer *msg;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002564
2565 /* fields since version 1
2566 * and common to all other upcoming versions
2567 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002568 enum srv_state srv_op_state;
2569 enum srv_admin srv_admin_state;
2570 unsigned srv_uweight, srv_iweight;
2571 unsigned long srv_last_time_change;
2572 short srv_check_status;
2573 enum chk_result srv_check_result;
2574 int srv_check_health;
2575 int srv_check_state, srv_agent_state;
2576 int bk_f_forced_id;
2577 int srv_f_forced_id;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002578 int fqdn_set_by_cli;
2579 const char *fqdn;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002580 const char *port_str;
2581 unsigned int port;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002582 char *srvrecord;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002583
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002584 fqdn = NULL;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002585 port = 0;
Willy Tarreau31138fa2015-09-29 18:38:47 +02002586 msg = get_trash_chunk();
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002587 switch (version) {
2588 case 1:
2589 /*
2590 * now we can proceed with server's state update:
2591 * srv_addr: params[0]
2592 * srv_op_state: params[1]
2593 * srv_admin_state: params[2]
2594 * srv_uweight: params[3]
2595 * srv_iweight: params[4]
2596 * srv_last_time_change: params[5]
2597 * srv_check_status: params[6]
2598 * srv_check_result: params[7]
2599 * srv_check_health: params[8]
2600 * srv_check_state: params[9]
2601 * srv_agent_state: params[10]
2602 * bk_f_forced_id: params[11]
2603 * srv_f_forced_id: params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002604 * srv_fqdn: params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02002605 * srv_port: params[14]
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002606 * srvrecord: params[15]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002607 */
2608
2609 /* validating srv_op_state */
2610 p = NULL;
2611 errno = 0;
2612 srv_op_state = strtol(params[1], &p, 10);
2613 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
2614 (srv_op_state != SRV_ST_STOPPED &&
2615 srv_op_state != SRV_ST_STARTING &&
2616 srv_op_state != SRV_ST_RUNNING &&
2617 srv_op_state != SRV_ST_STOPPING)) {
2618 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
2619 }
2620
2621 /* validating srv_admin_state */
2622 p = NULL;
2623 errno = 0;
2624 srv_admin_state = strtol(params[2], &p, 10);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002625 fqdn_set_by_cli = !!(srv_admin_state & SRV_ADMF_HMAINT);
Willy Tarreau757478e2016-11-03 19:22:19 +01002626
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002627 /* inherited statuses will be recomputed later.
2628 * Also disable SRV_ADMF_HMAINT flag (set from stats socket fqdn).
2629 */
Christopher Fauletc6111032021-02-12 17:36:08 +01002630 srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_HMAINT & ~SRV_ADMF_RMAINT;
Willy Tarreau757478e2016-11-03 19:22:19 +01002631
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002632 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
2633 (srv_admin_state != 0 &&
2634 srv_admin_state != SRV_ADMF_FMAINT &&
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002635 srv_admin_state != SRV_ADMF_CMAINT &&
2636 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
Willy Tarreaue1bde142016-11-03 18:33:25 +01002637 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FDRAIN) &&
Willy Tarreau757478e2016-11-03 19:22:19 +01002638 srv_admin_state != SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002639 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
2640 }
2641
2642 /* validating srv_uweight */
2643 p = NULL;
2644 errno = 0;
2645 srv_uweight = strtol(params[3], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002646 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002647 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
2648
2649 /* validating srv_iweight */
2650 p = NULL;
2651 errno = 0;
2652 srv_iweight = strtol(params[4], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002653 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002654 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
2655
2656 /* validating srv_last_time_change */
2657 p = NULL;
2658 errno = 0;
2659 srv_last_time_change = strtol(params[5], &p, 10);
2660 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2661 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
2662
2663 /* validating srv_check_status */
2664 p = NULL;
2665 errno = 0;
2666 srv_check_status = strtol(params[6], &p, 10);
2667 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2668 (srv_check_status >= HCHK_STATUS_SIZE))
2669 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
2670
2671 /* validating srv_check_result */
2672 p = NULL;
2673 errno = 0;
2674 srv_check_result = strtol(params[7], &p, 10);
2675 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2676 (srv_check_result != CHK_RES_UNKNOWN &&
2677 srv_check_result != CHK_RES_NEUTRAL &&
2678 srv_check_result != CHK_RES_FAILED &&
2679 srv_check_result != CHK_RES_PASSED &&
2680 srv_check_result != CHK_RES_CONDPASS)) {
2681 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2682 }
2683
2684 /* validating srv_check_health */
2685 p = NULL;
2686 errno = 0;
2687 srv_check_health = strtol(params[8], &p, 10);
2688 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2689 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
2690
2691 /* validating srv_check_state */
2692 p = NULL;
2693 errno = 0;
2694 srv_check_state = strtol(params[9], &p, 10);
2695 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2696 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2697 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
2698
2699 /* validating srv_agent_state */
2700 p = NULL;
2701 errno = 0;
2702 srv_agent_state = strtol(params[10], &p, 10);
2703 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2704 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2705 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
2706
2707 /* validating bk_f_forced_id */
2708 p = NULL;
2709 errno = 0;
2710 bk_f_forced_id = strtol(params[11], &p, 10);
2711 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
2712 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
2713
2714 /* validating srv_f_forced_id */
2715 p = NULL;
2716 errno = 0;
2717 srv_f_forced_id = strtol(params[12], &p, 10);
2718 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
2719 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
2720
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002721 /* validating srv_fqdn */
2722 fqdn = params[13];
2723 if (fqdn && *fqdn == '-')
2724 fqdn = NULL;
2725 if (fqdn && (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn))) {
2726 chunk_appendf(msg, ", invalid srv_fqdn value '%s'", params[13]);
2727 fqdn = NULL;
2728 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002729
Frédéric Lécaille31694712017-08-01 08:47:19 +02002730 port_str = params[14];
2731 if (port_str) {
2732 port = strl2uic(port_str, strlen(port_str));
2733 if (port > USHRT_MAX) {
2734 chunk_appendf(msg, ", invalid srv_port value '%s'", port_str);
2735 port_str = NULL;
2736 }
2737 }
2738
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002739 /* SRV record
2740 * NOTE: in HAProxy, SRV records must start with an underscore '_'
2741 */
2742 srvrecord = params[15];
2743 if (srvrecord && *srvrecord != '_')
2744 srvrecord = NULL;
2745
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002746 /* don't apply anything if one error has been detected */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002747 if (msg->data)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002748 goto out;
2749
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002750 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002751 /* recover operational state and apply it to this server
2752 * and all servers tracking this one */
Jérôme Magninf57afa42019-01-20 11:27:40 +01002753 srv->check.health = srv_check_health;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002754 switch (srv_op_state) {
2755 case SRV_ST_STOPPED:
2756 srv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02002757 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002758 break;
2759 case SRV_ST_STARTING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002760 /* If rise == 1 there is no STARTING state, let's switch to
2761 * RUNNING
2762 */
2763 if (srv->check.rise == 1) {
2764 srv->check.health = srv->check.rise + srv->check.fall - 1;
2765 srv_set_running(srv, "", NULL);
2766 break;
2767 }
2768 if (srv->check.health < 1 || srv->check.health >= srv->check.rise)
2769 srv->check.health = srv->check.rise - 1;
Emeric Brun52a91d32017-08-31 14:41:55 +02002770 srv->next_state = srv_op_state;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002771 break;
2772 case SRV_ST_STOPPING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002773 /* If fall == 1 there is no STOPPING state, let's switch to
2774 * STOPPED
2775 */
2776 if (srv->check.fall == 1) {
2777 srv->check.health = 0;
2778 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
2779 break;
2780 }
2781 if (srv->check.health < srv->check.rise ||
2782 srv->check.health > srv->check.rise + srv->check.fall - 2)
2783 srv->check.health = srv->check.rise;
Emeric Brun5a133512017-10-19 14:42:30 +02002784 srv_set_stopping(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002785 break;
2786 case SRV_ST_RUNNING:
2787 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02002788 srv_set_running(srv, "", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002789 break;
2790 }
2791
2792 /* When applying server state, the following rules apply:
2793 * - in case of a configuration change, we apply the setting from the new
2794 * configuration, regardless of old running state
2795 * - if no configuration change, we apply old running state only if old running
2796 * state is different from new configuration state
2797 */
2798 /* configuration has changed */
Emeric Brun52a91d32017-08-31 14:41:55 +02002799 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->next_admin & SRV_ADMF_CMAINT)) {
2800 if (srv->next_admin & SRV_ADMF_CMAINT)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002801 srv_adm_set_maint(srv);
2802 else
2803 srv_adm_set_ready(srv);
2804 }
2805 /* configuration is the same, let's compate old running state and new conf state */
2806 else {
Emeric Brun52a91d32017-08-31 14:41:55 +02002807 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002808 srv_adm_set_maint(srv);
Emeric Brun52a91d32017-08-31 14:41:55 +02002809 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002810 srv_adm_set_ready(srv);
2811 }
2812 /* apply drain mode if server is currently enabled */
Emeric Brun52a91d32017-08-31 14:41:55 +02002813 if (!(srv->next_admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002814 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
Willy Tarreau22cace22016-11-03 18:19:49 +01002815 * (srv->iweight is the weight set up in configuration).
2816 * There are two possible reasons for FDRAIN to have been present :
2817 * - previous config weight was zero
2818 * - "set server b/s drain" was sent to the CLI
2819 *
2820 * In the first case, we simply want to drop this drain state
2821 * if the new weight is not zero anymore, meaning the administrator
2822 * has intentionally turned the weight back to a positive value to
2823 * enable the server again after an operation. In the second case,
2824 * the drain state was forced on the CLI regardless of the config's
2825 * weight so we don't want a change to the config weight to lose this
2826 * status. What this means is :
2827 * - if previous weight was 0 and new one is >0, drop the DRAIN state.
2828 * - if the previous weight was >0, keep it.
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002829 */
Willy Tarreau22cace22016-11-03 18:19:49 +01002830 if (srv_iweight > 0 || srv->iweight == 0)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002831 srv_adm_set_drain(srv);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002832 }
2833
2834 srv->last_change = date.tv_sec - srv_last_time_change;
2835 srv->check.status = srv_check_status;
2836 srv->check.result = srv_check_result;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002837
2838 /* Only case we want to apply is removing ENABLED flag which could have been
2839 * done by the "disable health" command over the stats socket
2840 */
2841 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2842 (srv_check_state & CHK_ST_CONFIGURED) &&
2843 !(srv_check_state & CHK_ST_ENABLED))
2844 srv->check.state &= ~CHK_ST_ENABLED;
2845
2846 /* Only case we want to apply is removing ENABLED flag which could have been
2847 * done by the "disable agent" command over the stats socket
2848 */
2849 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
2850 (srv_agent_state & CHK_ST_CONFIGURED) &&
2851 !(srv_agent_state & CHK_ST_ENABLED))
2852 srv->agent.state &= ~CHK_ST_ENABLED;
2853
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002854 /* We want to apply the previous 'running' weight (srv_uweight) only if there
2855 * was no change in the configuration: both previous and new iweight are equals
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002856 *
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002857 * It means that a configuration file change has precedence over a unix socket change
2858 * for server's weight
2859 *
2860 * by default, HAProxy applies the following weight when parsing the configuration
2861 * srv->uweight = srv->iweight
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002862 */
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002863 if (srv_iweight == srv->iweight) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002864 srv->uweight = srv_uweight;
2865 }
Willy Tarreau3ff577e2018-08-02 11:48:52 +02002866 server_recalc_eweight(srv, 1);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002867
Willy Tarreaue5a60682016-11-09 14:54:53 +01002868 /* load server IP address */
Daniel Corbett9215ffa2018-05-19 19:43:24 -04002869 if (strcmp(params[0], "-"))
2870 srv->lastaddr = strdup(params[0]);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002871
2872 if (fqdn && srv->hostname) {
2873 if (!strcmp(srv->hostname, fqdn)) {
2874 /* Here we reset the 'set from stats socket FQDN' flag
2875 * to support such transitions:
2876 * Let's say initial FQDN value is foo1 (in configuration file).
2877 * - FQDN changed from stats socket, from foo1 to foo2 value,
2878 * - FQDN changed again from file configuration (with the same previous value
2879 set from stats socket, from foo1 to foo2 value),
2880 * - reload for any other reason than a FQDN modification,
2881 * the configuration file FQDN matches the fqdn server state file value.
2882 * So we must reset the 'set from stats socket FQDN' flag to be consistent with
Joseph Herlant44466822018-11-15 08:57:51 -08002883 * any further FQDN modification.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002884 */
Emeric Brun52a91d32017-08-31 14:41:55 +02002885 srv->next_admin &= ~SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002886 }
2887 else {
2888 /* If the FDQN has been changed from stats socket,
2889 * apply fqdn state file value (which is the value set
2890 * from stats socket).
Baptiste Assmann13a92322019-06-07 09:40:55 +02002891 * Also ensure the runtime resolver will process this resolution.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002892 */
2893 if (fqdn_set_by_cli) {
Olivier Houchardd16bfe62017-10-31 15:21:19 +01002894 srv_set_fqdn(srv, fqdn, 0);
Baptiste Assmann13a92322019-06-07 09:40:55 +02002895 srv->flags &= ~SRV_F_NO_RESOLUTION;
Emeric Brun52a91d32017-08-31 14:41:55 +02002896 srv->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002897 }
2898 }
2899 }
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002900 /* If all the conditions below are validated, this means
2901 * we're evaluating a server managed by SRV resolution
2902 */
2903 else if (fqdn && !srv->hostname && srvrecord) {
2904 int res;
2905
2906 /* we can't apply previous state if SRV record has changed */
2907 if (srv->srvrq && strcmp(srv->srvrq->name, srvrecord) != 0) {
2908 chunk_appendf(msg, ", SRV record mismatch between configuration ('%s') and state file ('%s) for server '%s'. Previous state not applied", srv->srvrq->name, srvrecord, srv->id);
2909 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2910 goto out;
2911 }
2912
2913 /* create or find a SRV resolution for this srv record */
2914 if (srv->srvrq == NULL && (srv->srvrq = find_srvrq_by_name(srvrecord, srv->proxy)) == NULL)
2915 srv->srvrq = new_dns_srvrq(srv, srvrecord);
2916 if (srv->srvrq == NULL) {
2917 chunk_appendf(msg, ", can't create or find SRV resolution '%s' for server '%s'", srvrecord, srv->id);
2918 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2919 goto out;
2920 }
2921
2922 /* prepare DNS resolution for this server */
2923 res = srv_prepare_for_resolution(srv, fqdn);
2924 if (res == -1) {
2925 chunk_appendf(msg, ", can't allocate memory for DNS resolution for server '%s'", srv->id);
2926 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2927 goto out;
2928 }
2929
2930 /* configure check.port accordingly */
2931 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2932 !(srv->flags & SRV_F_CHECKPORT))
2933 srv->check.port = port;
2934
2935 /* Unset SRV_F_MAPPORTS for SRV records.
2936 * SRV_F_MAPPORTS is unfortunately set by parse_server()
2937 * because no ports are provided in the configuration file.
2938 * This is because HAProxy will use the port found into the SRV record.
2939 */
2940 srv->flags &= ~SRV_F_MAPPORTS;
2941 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002942
Frédéric Lécaille31694712017-08-01 08:47:19 +02002943 if (port_str)
2944 srv->svc_port = port;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002945 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Frédéric Lécaille31694712017-08-01 08:47:19 +02002946
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002947 break;
2948 default:
2949 chunk_appendf(msg, ", version '%d' not supported", version);
2950 }
2951
2952 out:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002953 if (msg->data) {
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002954 chunk_appendf(msg, "\n");
Christopher Faulet767a84b2017-11-24 16:50:31 +01002955 ha_warning("server-state application failed for server '%s/%s'%s",
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002956 srv->proxy->id, srv->id, msg->area);
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002957 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002958}
2959
Baptiste Assmannda29fe22019-06-13 13:24:29 +02002960
2961/*
2962 * read next line from file <f> and return the server state version if one found.
2963 * If no version is found, then 0 is returned
2964 * Note that this should be the first read on <f>
2965 */
2966static int srv_state_get_version(FILE *f) {
2967 char buf[2];
2968 int ret;
2969
2970 /* first character of first line of the file must contain the version of the export */
2971 if (fgets(buf, 2, f) == NULL) {
2972 return 0;
2973 }
2974
2975 ret = atoi(buf);
2976 if ((ret < SRV_STATE_FILE_VERSION_MIN) ||
2977 (ret > SRV_STATE_FILE_VERSION_MAX))
2978 return 0;
2979
2980 return ret;
2981}
2982
2983
2984/*
2985 * parses server state line stored in <buf> and supposedly in version <version>.
2986 * Set <params> and <srv_params> accordingly.
2987 * In case of error, params[0] is set to NULL.
2988 */
2989static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params)
2990{
2991 int buflen, arg, srv_arg;
2992 char *cur, *end;
2993
2994 buflen = strlen(buf);
2995 cur = buf;
2996 end = cur + buflen;
2997
2998 /* we need at least one character */
2999 if (buflen == 0) {
3000 params[0] = NULL;
3001 return;
3002 }
3003
3004 /* ignore blank characters at the beginning of the line */
Willy Tarreau90807112020-02-25 08:16:33 +01003005 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003006 ++cur;
3007
3008 /* Ignore empty or commented lines */
3009 if (cur == end || *cur == '#') {
3010 params[0] = NULL;
3011 return;
3012 }
3013
3014 /* truncated lines */
3015 if (buf[buflen - 1] != '\n') {
3016 //ha_warning("server-state file '%s': truncated line\n", filepath);
3017 params[0] = NULL;
3018 return;
3019 }
3020
3021 /* Removes trailing '\n' */
3022 buf[buflen - 1] = '\0';
3023
3024 /* we're now ready to move the line into *srv_params[] */
Christopher Fauletd119e562021-02-19 16:47:11 +01003025 memset(params, 0, SRV_STATE_FILE_MAX_FIELDS * sizeof(*params));
3026 memset(srv_params, 0, SRV_STATE_FILE_MAX_FIELDS * sizeof(*srv_params));
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003027
3028 arg = 0;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003029 srv_arg = 0;
3030 while (*cur && arg < SRV_STATE_FILE_MAX_FIELDS) {
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003031 /* Search begining of the current field */
3032 while (isspace((unsigned char)*cur)) {
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003033 ++cur;
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003034 if (!*cur)
3035 goto end;
3036 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003037
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003038 /* v1
3039 * srv_addr: params[4] => srv_params[0]
3040 * srv_op_state: params[5] => srv_params[1]
3041 * srv_admin_state: params[6] => srv_params[2]
3042 * srv_uweight: params[7] => srv_params[3]
3043 * srv_iweight: params[8] => srv_params[4]
3044 * srv_last_time_change: params[9] => srv_params[5]
3045 * srv_check_status: params[10] => srv_params[6]
3046 * srv_check_result: params[11] => srv_params[7]
3047 * srv_check_health: params[12] => srv_params[8]
3048 * srv_check_state: params[13] => srv_params[9]
3049 * srv_agent_state: params[14] => srv_params[10]
3050 * bk_f_forced_id: params[15] => srv_params[11]
3051 * srv_f_forced_id: params[16] => srv_params[12]
3052 * srv_fqdn: params[17] => srv_params[13]
3053 * srv_port: params[18] => srv_params[14]
3054 * srvrecord: params[19] => srv_params[15]
3055 */
3056 if (version == 1 && arg >= 4) {
3057 srv_params[srv_arg] = cur;
3058 ++srv_arg;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003059 }
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003060 params[arg] = cur;
3061 ++arg;
3062
3063 /* Search end of the current field: first space or \0 */
3064 /* Search begining of the current field */
3065 while (!isspace((unsigned char)*cur)) {
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003066 ++cur;
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003067 if (!*cur)
3068 goto end;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003069 }
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003070 *cur++ = '\0';
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003071 }
3072
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003073 end:
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003074 /* if line is incomplete line, then ignore it.
3075 * otherwise, update useful flags */
3076 switch (version) {
3077 case 1:
3078 if (arg < SRV_STATE_FILE_NB_FIELDS_VERSION_1) {
3079 params[0] = NULL;
3080 return;
3081 }
3082 break;
3083 }
3084
3085 return;
3086}
3087
3088
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003089/* This function parses all the proxies and only take care of the backends (since we're looking for server)
3090 * For each proxy, it does the following:
3091 * - opens its server state file (either one or local one)
3092 * - read whole file, line by line
3093 * - analyse each line to check if it matches our current backend:
3094 * - backend name matches
3095 * - backend id matches if id is forced and name doesn't match
3096 * - if the server pointed by the line is found, then state is applied
3097 *
3098 * If the running backend uuid or id differs from the state file, then HAProxy reports
3099 * a warning.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003100 *
3101 * Grabs the server's lock via srv_update_state().
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003102 */
3103void apply_server_state(void)
3104{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003105 char mybuf[SRV_STATE_LINE_MAXLEN];
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003106 char *params[SRV_STATE_FILE_MAX_FIELDS] = {0};
3107 char *srv_params[SRV_STATE_FILE_MAX_FIELDS] = {0};
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003108 int version, global_file_version;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003109 FILE *f;
3110 char *filepath;
3111 char globalfilepath[MAXPATHLEN + 1];
3112 char localfilepath[MAXPATHLEN + 1];
3113 int len, fileopenerr, globalfilepathlen, localfilepathlen;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003114 struct proxy *curproxy, *bk;
3115 struct server *srv;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003116 char *line;
3117 char *bkname, *srvname;
3118 struct state_line *st;
3119 struct ebmb_node *node, *next_node;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003120
Willy Tarreau2d067f92020-07-16 06:40:27 +02003121 f = NULL;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003122 global_file_version = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003123 globalfilepathlen = 0;
3124 /* create the globalfilepath variable */
3125 if (global.server_state_file) {
3126 /* absolute path or no base directory provided */
3127 if ((global.server_state_file[0] == '/') || (!global.server_state_base)) {
3128 len = strlen(global.server_state_file);
3129 if (len > MAXPATHLEN) {
3130 globalfilepathlen = 0;
3131 goto globalfileerror;
3132 }
3133 memcpy(globalfilepath, global.server_state_file, len);
3134 globalfilepath[len] = '\0';
3135 globalfilepathlen = len;
3136 }
3137 else if (global.server_state_base) {
3138 len = strlen(global.server_state_base);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003139 if (len > MAXPATHLEN) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003140 globalfilepathlen = 0;
3141 goto globalfileerror;
3142 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003143 memcpy(globalfilepath, global.server_state_base, len);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003144 globalfilepath[len] = 0;
3145 globalfilepathlen = len;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003146
3147 /* append a slash if needed */
3148 if (!globalfilepathlen || globalfilepath[globalfilepathlen - 1] != '/') {
3149 if (globalfilepathlen + 1 > MAXPATHLEN) {
3150 globalfilepathlen = 0;
3151 goto globalfileerror;
3152 }
3153 globalfilepath[globalfilepathlen++] = '/';
3154 }
3155
3156 len = strlen(global.server_state_file);
3157 if (globalfilepathlen + len > MAXPATHLEN) {
3158 globalfilepathlen = 0;
3159 goto globalfileerror;
3160 }
3161 memcpy(globalfilepath + globalfilepathlen, global.server_state_file, len);
3162 globalfilepathlen += len;
3163 globalfilepath[globalfilepathlen++] = 0;
3164 }
3165 }
3166 globalfileerror:
3167 if (globalfilepathlen == 0)
3168 globalfilepath[0] = '\0';
3169
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003170 /* Load global server state in a tree */
3171 if (globalfilepathlen > 0) {
3172 errno = 0;
3173 f = fopen(globalfilepath, "r");
3174 if (errno)
3175 ha_warning("Can't open global server state file '%s': %s\n", globalfilepath, strerror(errno));
Vedran Furac5d486272019-10-16 14:49:38 +02003176 if (!f)
3177 goto out_load_server_state_in_tree;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003178
3179 global_file_version = srv_state_get_version(f);
3180 if (global_file_version == 0)
3181 goto out_load_server_state_in_tree;
3182
3183 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3184 line = NULL;
3185
3186 line = strdup(mybuf);
3187 if (line == NULL)
3188 continue;
3189
3190 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3191 if (params[0] == NULL)
Willy Tarreauca7a5af2019-12-20 17:26:27 +01003192 goto nextline;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003193
3194 /* bkname */
3195 bkname = params[1];
3196 /* srvname */
3197 srvname = params[3];
3198
3199 /* key */
3200 chunk_printf(&trash, "%s %s", bkname, srvname);
3201
3202 /* store line in tree */
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003203 st = calloc(1, sizeof(*st) + trash.data + 1);
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003204 if (st == NULL) {
3205 goto nextline;
3206 }
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003207 memcpy(st->name_name.key, trash.area, trash.data + 1);
Willy Tarreaufd1aa012019-12-20 17:23:40 +01003208 if (ebst_insert(&state_file, &st->name_name) != &st->name_name) {
3209 /* this is a duplicate key, probably a hand-crafted file,
3210 * drop it!
3211 */
3212 goto nextline;
3213 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003214
3215 /* save line */
3216 st->line = line;
3217
3218 continue;
3219
3220 nextline:
3221 /* free up memory in case of error during the processing of the line */
3222 free(line);
3223 }
3224 }
3225 out_load_server_state_in_tree:
3226
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003227 if (f) {
3228 fclose(f);
3229 f = NULL;
3230 }
3231
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003232 /* parse all proxies and load states form tree (global file) or from local file */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003233 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003234 /* servers are only in backends */
3235 if (!(curproxy->cap & PR_CAP_BE))
3236 continue;
3237 fileopenerr = 0;
3238 filepath = NULL;
3239
3240 /* search server state file path and name */
3241 switch (curproxy->load_server_state_from_file) {
3242 /* read servers state from global file */
3243 case PR_SRV_STATE_FILE_GLOBAL:
3244 /* there was an error while generating global server state file path */
3245 if (globalfilepathlen == 0)
3246 continue;
3247 filepath = globalfilepath;
3248 fileopenerr = 1;
3249 break;
3250 /* this backend has its own file */
3251 case PR_SRV_STATE_FILE_LOCAL:
3252 localfilepathlen = 0;
3253 localfilepath[0] = '\0';
3254 len = 0;
3255 /* create the localfilepath variable */
3256 /* absolute path or no base directory provided */
3257 if ((curproxy->server_state_file_name[0] == '/') || (!global.server_state_base)) {
3258 len = strlen(curproxy->server_state_file_name);
3259 if (len > MAXPATHLEN) {
3260 localfilepathlen = 0;
3261 goto localfileerror;
3262 }
3263 memcpy(localfilepath, curproxy->server_state_file_name, len);
3264 localfilepath[len] = '\0';
3265 localfilepathlen = len;
3266 }
3267 else if (global.server_state_base) {
3268 len = strlen(global.server_state_base);
3269 localfilepathlen += len;
3270
3271 if (localfilepathlen > MAXPATHLEN) {
3272 localfilepathlen = 0;
3273 goto localfileerror;
3274 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003275 memcpy(localfilepath, global.server_state_base, len);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003276 localfilepath[localfilepathlen] = 0;
3277
3278 /* append a slash if needed */
3279 if (!localfilepathlen || localfilepath[localfilepathlen - 1] != '/') {
3280 if (localfilepathlen + 1 > MAXPATHLEN) {
3281 localfilepathlen = 0;
3282 goto localfileerror;
3283 }
3284 localfilepath[localfilepathlen++] = '/';
3285 }
3286
3287 len = strlen(curproxy->server_state_file_name);
3288 if (localfilepathlen + len > MAXPATHLEN) {
3289 localfilepathlen = 0;
3290 goto localfileerror;
3291 }
3292 memcpy(localfilepath + localfilepathlen, curproxy->server_state_file_name, len);
3293 localfilepathlen += len;
3294 localfilepath[localfilepathlen++] = 0;
3295 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003296 localfileerror:
3297 if (localfilepathlen == 0)
Christopher Fauletacef6b92021-02-12 16:31:03 +01003298 continue;
3299 filepath = localfilepath;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003300
3301 break;
3302 case PR_SRV_STATE_FILE_NONE:
3303 default:
3304 continue;
3305 }
3306
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003307 /* when global file is used, we get data from the tree
3308 * Note that in such case we don't check backend name neither uuid.
3309 * Backend name can't be wrong since it's used as a key to retrieve the server state
3310 * line from the tree.
3311 */
3312 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_GLOBAL) {
3313 struct server *srv = curproxy->srv;
3314 while (srv) {
3315 struct ebmb_node *node;
3316 struct state_line *st;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003317
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003318 chunk_printf(&trash, "%s %s", curproxy->id, srv->id);
3319 node = ebst_lookup(&state_file, trash.area);
3320 if (!node)
3321 goto next;
Dragan Dosencf4fb032015-11-04 23:03:26 +01003322
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003323 st = container_of(node, struct state_line, name_name);
3324 memcpy(mybuf, st->line, strlen(st->line));
3325 mybuf[strlen(st->line)] = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003326
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003327 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3328 if (params[0] == NULL)
3329 goto next;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003330
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003331 srv_update_state(srv, global_file_version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003332
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003333 next:
3334 srv = srv->next;
3335 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003336
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003337 continue; /* next proxy in list */
3338 }
3339 else {
3340 /* load 'local' state file */
3341 errno = 0;
3342 f = fopen(filepath, "r");
3343 if (errno && fileopenerr)
3344 ha_warning("Can't open server state file '%s': %s\n", filepath, strerror(errno));
3345 if (!f)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003346 continue;
3347
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003348 mybuf[0] = '\0';
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003349
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003350 /* first character of first line of the file must contain the version of the export */
3351 version = srv_state_get_version(f);
3352 if (version == 0) {
3353 ha_warning("Can't get version of the server state file '%s'\n", filepath);
3354 goto fileclose;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003355 }
3356
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003357 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3358 int bk_f_forced_id = 0;
3359 int check_id = 0;
3360 int check_name = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003361
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003362 srv_state_parse_line(mybuf, version, params, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003363
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003364 if (params[0] == NULL) {
3365 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003366 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003367
3368 /* if line is incomplete line, then ignore it.
3369 * otherwise, update useful flags */
3370 switch (version) {
3371 case 1:
3372 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
3373 check_id = (atoi(params[0]) == curproxy->uuid);
3374 check_name = (strcmp(curproxy->id, params[1]) == 0);
3375 break;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003376 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003377
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003378 bk = curproxy;
3379
3380 /* if backend can't be found, let's continue */
3381 if (!check_id && !check_name)
3382 continue;
3383 else if (!check_id && check_name) {
3384 ha_warning("backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3385 send_log(bk, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3386 }
3387 else if (check_id && !check_name) {
3388 ha_warning("backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3389 send_log(bk, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3390 /* if name doesn't match, we still want to update curproxy if the backend id
3391 * was forced in previous the previous configuration */
3392 if (!bk_f_forced_id)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003393 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003394 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003395
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003396 /* look for the server by its name: param[3] */
3397 srv = server_find_best_match(bk, params[3], 0, NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003398
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003399 if (!srv) {
3400 /* if no server found, then warning and continue with next line */
3401 ha_warning("can't find server '%s' in backend '%s'\n",
3402 params[3], params[1]);
3403 send_log(bk, LOG_NOTICE, "can't find server '%s' in backend '%s'\n",
3404 params[3], params[1]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003405 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003406 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003407
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003408 /* now we can proceed with server's state update */
3409 srv_update_state(srv, version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003410 }
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003411
3412 fileclose:
3413 fclose(f);
3414
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003415 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003416 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003417
3418 /* now free memory allocated for the tree */
3419 for (node = ebmb_first(&state_file), next_node = node ? ebmb_next(node) : NULL;
3420 node;
3421 node = next_node, next_node = node ? ebmb_next(node) : NULL) {
3422 st = container_of(node, struct state_line, name_name);
3423 ebmb_delete(&st->name_name);
3424 free(st->line);
3425 free(st);
3426 }
3427
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003428}
3429
Simon Horman7d09b9a2013-02-12 10:45:51 +09003430/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003431 * update a server's current IP address.
3432 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3433 * ip is in network format.
3434 * updater is a string which contains an information about the requester of the update.
3435 * updater is used if not NULL.
3436 *
3437 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003438 *
3439 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003440 */
Thierry Fournierd35b7a62016-02-24 08:23:22 +01003441int update_server_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003442{
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +02003443 /* save the new IP family & address if necessary */
3444 switch (ip_sin_family) {
3445 case AF_INET:
3446 if (s->addr.ss_family == ip_sin_family &&
3447 !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4))
3448 return 0;
3449 break;
3450 case AF_INET6:
3451 if (s->addr.ss_family == ip_sin_family &&
3452 !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16))
3453 return 0;
3454 break;
3455 };
3456
Baptiste Assmann14e40142015-04-14 01:13:07 +02003457 /* generates a log line and a warning on stderr */
3458 if (1) {
3459 /* book enough space for both IPv4 and IPv6 */
3460 char oldip[INET6_ADDRSTRLEN];
3461 char newip[INET6_ADDRSTRLEN];
3462
3463 memset(oldip, '\0', INET6_ADDRSTRLEN);
3464 memset(newip, '\0', INET6_ADDRSTRLEN);
3465
3466 /* copy old IP address in a string */
3467 switch (s->addr.ss_family) {
3468 case AF_INET:
3469 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3470 break;
3471 case AF_INET6:
3472 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3473 break;
Christopher Fauletb0b76072020-09-08 10:38:40 +02003474 default:
3475 strcpy(oldip, "(none)");
3476 break;
Baptiste Assmann14e40142015-04-14 01:13:07 +02003477 };
3478
3479 /* copy new IP address in a string */
3480 switch (ip_sin_family) {
3481 case AF_INET:
3482 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3483 break;
3484 case AF_INET6:
3485 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3486 break;
3487 };
3488
3489 /* save log line into a buffer */
3490 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3491 s->proxy->id, s->id, oldip, newip, updater);
3492
3493 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003494 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003495
3496 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003497 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003498 }
3499
3500 /* save the new IP family */
3501 s->addr.ss_family = ip_sin_family;
3502 /* save the new IP address */
3503 switch (ip_sin_family) {
3504 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003505 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003506 break;
3507 case AF_INET6:
3508 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3509 break;
3510 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003511 srv_set_dyncookie(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003512
3513 return 0;
3514}
3515
3516/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003517 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3518 *
3519 * Caller can pass its name through <updater> to get it integrated in the response message
3520 * returned by the function.
3521 *
3522 * The function first does the following, in that order:
3523 * - validates the new addr and/or port
3524 * - checks if an update is required (new IP or port is different than current ones)
3525 * - checks the update is allowed:
3526 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3527 * - allow all changes if no CHECKS are configured
3528 * - if CHECK is configured:
3529 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3530 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3531 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003532 *
3533 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003534 */
3535const char *update_server_addr_port(struct server *s, const char *addr, const char *port, char *updater)
3536{
3537 struct sockaddr_storage sa;
3538 int ret, port_change_required;
3539 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003540 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003541 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003542 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003543
3544 msg = get_trash_chunk();
3545 chunk_reset(msg);
3546
3547 if (addr) {
3548 memset(&sa, 0, sizeof(struct sockaddr_storage));
3549 if (str2ip2(addr, &sa, 0) == NULL) {
3550 chunk_printf(msg, "Invalid addr '%s'", addr);
3551 goto out;
3552 }
3553
3554 /* changes are allowed on AF_INET* families only */
3555 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3556 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3557 goto out;
3558 }
3559
3560 /* collecting data currently setup */
3561 memset(current_addr, '\0', sizeof(current_addr));
3562 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3563 /* changes are allowed on AF_INET* families only */
3564 if ((ret != AF_INET) && (ret != AF_INET6)) {
3565 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3566 goto out;
3567 }
3568
3569 /* applying ADDR changes if required and allowed
3570 * ipcmp returns 0 when both ADDR are the same
3571 */
3572 if (ipcmp(&s->addr, &sa) == 0) {
3573 chunk_appendf(msg, "no need to change the addr");
3574 goto port;
3575 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003576 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003577 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003578
3579 /* we also need to update check's ADDR only if it uses the server's one */
3580 if ((s->check.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_CHECKADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003581 ipcpy(&sa, &s->check.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003582 }
3583
3584 /* we also need to update agent ADDR only if it use the server's one */
3585 if ((s->agent.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_AGENTADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003586 ipcpy(&sa, &s->agent.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003587 }
3588
3589 /* update report for caller */
3590 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3591 }
3592
3593 port:
3594 if (port) {
3595 char sign = '\0';
3596 char *endptr;
3597
3598 if (addr)
3599 chunk_appendf(msg, ", ");
3600
3601 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003602 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003603
3604 /* check if PORT change is required */
3605 port_change_required = 0;
3606
3607 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003608 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003609 new_port = strtol(port, &endptr, 10);
3610 if ((errno != 0) || (port == endptr)) {
3611 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3612 goto out;
3613 }
3614
3615 /* check if caller triggers a port mapped or offset */
3616 if (sign == '-' || (sign == '+')) {
3617 /* check if server currently uses port map */
3618 if (!(s->flags & SRV_F_MAPPORTS)) {
3619 /* switch from fixed port to port map mandatorily triggers
3620 * a port change */
3621 port_change_required = 1;
3622 /* check is configured
3623 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3624 * prevent PORT change if check doesn't have it's dedicated port while switching
3625 * to port mapping */
3626 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3627 chunk_appendf(msg, "can't change <port> to port map because it is incompatible with current health check port configuration (use 'port' statement from the 'server' directive.");
3628 goto out;
3629 }
3630 }
3631 /* we're already using port maps */
3632 else {
3633 port_change_required = current_port != new_port;
3634 }
3635 }
3636 /* fixed port */
3637 else {
3638 port_change_required = current_port != new_port;
3639 }
3640
3641 /* applying PORT changes if required and update response message */
3642 if (port_change_required) {
3643 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003644 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003645 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003646
3647 /* prepare message */
3648 chunk_appendf(msg, "port changed from '");
3649 if (s->flags & SRV_F_MAPPORTS)
3650 chunk_appendf(msg, "+");
3651 chunk_appendf(msg, "%d' to '", current_port);
3652
3653 if (sign == '-') {
3654 s->flags |= SRV_F_MAPPORTS;
3655 chunk_appendf(msg, "%c", sign);
3656 /* just use for result output */
3657 new_port = -new_port;
3658 }
3659 else if (sign == '+') {
3660 s->flags |= SRV_F_MAPPORTS;
3661 chunk_appendf(msg, "%c", sign);
3662 }
3663 else {
3664 s->flags &= ~SRV_F_MAPPORTS;
3665 }
3666
3667 chunk_appendf(msg, "%d'", new_port);
3668
3669 /* we also need to update health checks port only if it uses server's realport */
3670 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3671 s->check.port = new_port;
3672 }
3673 }
3674 else {
3675 chunk_appendf(msg, "no need to change the port");
3676 }
3677 }
3678
3679out:
William Dauchy6318d332020-05-02 21:52:36 +02003680 if (changed) {
3681 /* force connection cleanup on the given server */
3682 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003683 srv_set_dyncookie(s);
William Dauchy6318d332020-05-02 21:52:36 +02003684 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003685 if (updater)
3686 chunk_appendf(msg, " by '%s'", updater);
3687 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003688 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003689}
3690
3691
3692/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003693 * update server status based on result of name resolution
3694 * returns:
3695 * 0 if server status is updated
3696 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003697 *
3698 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003699 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003700int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003701{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003702 struct dns_resolvers *resolvers = s->resolvers;
3703 struct dns_resolution *resolution = s->dns_requester->resolution;
3704 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003705
Jerome Magnin012261a2020-07-28 13:38:22 +02003706 /* If resolution is NULL we're dealing with SRV records Additional records */
3707 if (resolution == NULL) {
Baptiste Assmann87138c32020-08-04 10:57:21 +02003708 /* since this server has an IP, it can go back in production */
3709 if (has_no_ip == 0) {
3710 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3711 return 1;
3712 }
3713
Jerome Magnin012261a2020-07-28 13:38:22 +02003714 if (s->next_admin & SRV_ADMF_RMAINT)
3715 return 1;
3716
3717 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record");
3718 return 0;
3719 }
3720
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003721 switch (resolution->status) {
3722 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003723 /* status when HAProxy has just (re)started.
3724 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003725 break;
3726
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003727 case RSLV_STATUS_VALID:
3728 /*
3729 * resume health checks
3730 * server will be turned back on if health check is safe
3731 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003732 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003733 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003734 return 1;
3735 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3736 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003737 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003738 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003739
Emeric Brun52a91d32017-08-31 14:41:55 +02003740 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003741 return 1;
3742 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3743 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3744 s->proxy->id, s->id);
3745
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003746 ha_warning("%s.\n", trash.area);
3747 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003748 return 0;
3749
3750 case RSLV_STATUS_NX:
3751 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003752 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3753 if (!tick_is_expired(exp, now_ms))
3754 break;
3755
3756 if (s->next_admin & SRV_ADMF_RMAINT)
3757 return 1;
3758 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3759 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003760
3761 case RSLV_STATUS_TIMEOUT:
3762 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003763 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3764 if (!tick_is_expired(exp, now_ms))
3765 break;
3766
3767 if (s->next_admin & SRV_ADMF_RMAINT)
3768 return 1;
3769 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3770 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003771
3772 case RSLV_STATUS_REFUSED:
3773 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003774 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3775 if (!tick_is_expired(exp, now_ms))
3776 break;
3777
3778 if (s->next_admin & SRV_ADMF_RMAINT)
3779 return 1;
3780 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3781 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003782
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003783 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003784 /* stop server if resolution failed for a long enough period */
3785 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3786 if (!tick_is_expired(exp, now_ms))
3787 break;
3788
3789 if (s->next_admin & SRV_ADMF_RMAINT)
3790 return 1;
3791 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3792 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003793 }
3794
3795 return 1;
3796}
3797
3798/*
3799 * Server Name Resolution valid response callback
3800 * It expects:
3801 * - <nameserver>: the name server which answered the valid response
3802 * - <response>: buffer containing a valid DNS response
3803 * - <response_len>: size of <response>
3804 * It performs the following actions:
3805 * - ignore response if current ip found and server family not met
3806 * - update with first new ip found if family is met and current IP is not found
3807 * returns:
3808 * 0 on error
3809 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003810 *
3811 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003812 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003813int snr_resolution_cb(struct dns_requester *requester, struct dns_nameserver *nameserver)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003814{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003815 struct server *s = NULL;
3816 struct dns_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003817 void *serverip, *firstip;
3818 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003819 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003820 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003821 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003822
Christopher Faulet67957bd2017-09-27 11:00:59 +02003823 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003824 if (!s)
3825 return 1;
3826
Christopher Faulet67957bd2017-09-27 11:00:59 +02003827 resolution = s->dns_requester->resolution;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003828
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003829 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003830 firstip = NULL; /* pointer to the first valid response found */
3831 /* it will be used as the new IP if a change is required */
3832 firstip_sin_family = AF_UNSPEC;
3833 serverip = NULL; /* current server IP address */
3834
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003835 /* initializing server IP pointer */
3836 server_sin_family = s->addr.ss_family;
3837 switch (server_sin_family) {
3838 case AF_INET:
3839 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3840 break;
3841
3842 case AF_INET6:
3843 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3844 break;
3845
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003846 case AF_UNSPEC:
3847 break;
3848
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003849 default:
3850 goto invalid;
3851 }
3852
Baptiste Assmann729c9012017-05-22 15:13:10 +02003853 ret = dns_get_ip_from_response(&resolution->response, &s->dns_opts,
Thierry Fournierada34842016-02-17 21:25:09 +01003854 serverip, server_sin_family, &firstip,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003855 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003856
3857 switch (ret) {
3858 case DNS_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003859 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003860
3861 case DNS_UPD_SRVIP_NOT_FOUND:
3862 goto save_ip;
3863
3864 case DNS_UPD_CNAME:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003865 goto invalid;
3866
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003867 case DNS_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003868 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003869 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003870
Baptiste Assmannfad03182015-10-28 02:03:32 +01003871 case DNS_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003872 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003873 resolution->status = RSLV_STATUS_OTHER;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003874 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003875
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003876 default:
3877 goto invalid;
3878
3879 }
3880
3881 save_ip:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003882 if (nameserver) {
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003883 nameserver->counters->update++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003884 /* save the first ip we found */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003885 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003886 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003887 else
3888 chunk_printf(chk, "DNS cache");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003889 update_server_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003890
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003891 update_status:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003892 snr_update_srv_status(s, has_no_ip);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003893 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003894
3895 invalid:
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003896 if (nameserver) {
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003897 nameserver->counters->invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003898 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003899 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003900 snr_update_srv_status(s, has_no_ip);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003901 return 0;
3902}
3903
3904/*
Baptiste Assmann826060e2020-11-19 22:38:33 +01003905 * SRV record error management callback
3906 * returns:
3907 * 0 on error
3908 * 1 when no error or safe ignore
3909 *
3910 * Grabs the server's lock.
3911 */
3912int srvrq_resolution_error_cb(struct dns_requester *requester, int error_code)
3913{
3914 struct server *s;
3915 struct dns_srvrq *srvrq;
3916 struct dns_resolution *res;
3917 struct dns_resolvers *resolvers;
3918 int exp;
3919
3920 /* SRV records */
3921 srvrq = objt_dns_srvrq(requester->owner);
3922 if (!srvrq)
3923 return 1;
3924
3925 resolvers = srvrq->resolvers;
3926 res = requester->resolution;
3927
3928 switch (res->status) {
3929
3930 case RSLV_STATUS_NX:
3931 /* stop server if resolution is NX for a long enough period */
3932 exp = tick_add(res->last_valid, resolvers->hold.nx);
3933 if (!tick_is_expired(exp, now_ms))
3934 return 1;
3935 break;
3936
3937 case RSLV_STATUS_TIMEOUT:
3938 /* stop server if resolution is TIMEOUT for a long enough period */
3939 exp = tick_add(res->last_valid, resolvers->hold.timeout);
3940 if (!tick_is_expired(exp, now_ms))
3941 return 1;
3942 break;
3943
3944 case RSLV_STATUS_REFUSED:
3945 /* stop server if resolution is REFUSED for a long enough period */
3946 exp = tick_add(res->last_valid, resolvers->hold.refused);
3947 if (!tick_is_expired(exp, now_ms))
3948 return 1;
3949 break;
3950
3951 default:
3952 /* stop server if resolution failed for a long enough period */
3953 exp = tick_add(res->last_valid, resolvers->hold.other);
3954 if (!tick_is_expired(exp, now_ms))
3955 return 1;
3956 }
3957
3958 /* Remove any associated server */
3959 for (s = srvrq->proxy->srv; s != NULL; s = s->next) {
3960 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
3961 if (s->srvrq == srvrq) {
3962 snr_update_srv_status(s, 1);
3963 free(s->hostname);
3964 free(s->hostname_dn);
3965 s->hostname = NULL;
3966 s->hostname_dn = NULL;
3967 s->hostname_dn_len = 0;
Christopher Faulet8427aa62021-02-23 12:24:09 +01003968 memset(&s->addr, 0, sizeof(s->addr));
3969 s->svc_port = 0;
Baptiste Assmann826060e2020-11-19 22:38:33 +01003970 dns_unlink_resolution(s->dns_requester);
3971 }
3972 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
3973 }
3974
3975 return 1;
3976}
3977
3978/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003979 * Server Name Resolution error management callback
3980 * returns:
3981 * 0 on error
3982 * 1 when no error or safe ignore
Willy Tarreau46b7f532018-08-21 11:54:26 +02003983 *
3984 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003985 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003986int snr_resolution_error_cb(struct dns_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003987{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003988 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003989
Christopher Faulet67957bd2017-09-27 11:00:59 +02003990 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003991 if (!s)
3992 return 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003993 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003994 snr_update_srv_status(s, 0);
Christopher Faulet9b8c9042021-02-23 12:33:17 +01003995 memset(&s->addr, 0, sizeof(s->addr));
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003996 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003997 return 1;
3998}
3999
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004000/*
4001 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004002 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004003 * It returns a pointer to the first server found or NULL if <ip> is not yet
4004 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01004005 *
4006 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004007 */
4008struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
4009{
4010 struct server *tmpsrv;
4011 struct proxy *be;
4012
4013 if (!srv)
4014 return NULL;
4015
4016 be = srv->proxy;
4017 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01004018 /* we found the current server is the same, ignore it */
4019 if (srv == tmpsrv)
4020 continue;
4021
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004022 /* We want to compare the IP in the record with the IP of the servers in the
4023 * same backend, only if:
4024 * * DNS resolution is enabled on the server
4025 * * the hostname used for the resolution by our server is the same than the
4026 * one used for the server found in the backend
4027 * * the server found in the backend is not our current server
4028 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004029 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004030 if ((tmpsrv->hostname_dn == NULL) ||
4031 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
4032 (strcmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01004033 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004034 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004035 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004036 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004037
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004038 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01004039 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004040 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004041 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004042 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004043
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004044 /* At this point, we have 2 different servers using the same DNS hostname
4045 * for their respective resolution.
4046 */
4047 if (*ip_family == tmpsrv->addr.ss_family &&
4048 ((tmpsrv->addr.ss_family == AF_INET &&
4049 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
4050 (tmpsrv->addr.ss_family == AF_INET6 &&
4051 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004052 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004053 return tmpsrv;
4054 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004055 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004056 }
4057
Emeric Brune9fd6b52017-11-02 17:20:39 +01004058
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004059 return NULL;
4060}
4061
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004062/* Sets the server's address (srv->addr) from srv->hostname using the libc's
4063 * resolver. This is suited for initial address configuration. Returns 0 on
4064 * success otherwise a non-zero error code. In case of error, *err_code, if
4065 * not NULL, is filled up.
4066 */
4067int srv_set_addr_via_libc(struct server *srv, int *err_code)
4068{
4069 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004070 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01004071 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004072 return 1;
4073 }
4074 return 0;
4075}
4076
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004077/* Set the server's FDQN (->hostname) from <hostname>.
4078 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004079 *
4080 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004081 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004082int srv_set_fqdn(struct server *srv, const char *hostname, int dns_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004083{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004084 struct dns_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004085 char *hostname_dn;
4086 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004087
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02004088 /* Note that the server lock is already held. */
4089 if (!srv->resolvers)
4090 return -1;
4091
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004092 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004093 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004094 /* run time DNS resolution was not active for this server
4095 * and we can't enable it at run time for now.
4096 */
4097 if (!srv->dns_requester)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004098 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004099
4100 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004101 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004102 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004103 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
4104 hostname_dn, trash.size);
4105 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004106 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004107
Christopher Faulet67957bd2017-09-27 11:00:59 +02004108 resolution = srv->dns_requester->resolution;
4109 if (resolution &&
4110 resolution->hostname_dn &&
4111 !strcmp(resolution->hostname_dn, hostname_dn))
Christopher Fauletb2812a62017-10-04 16:17:58 +02004112 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004113
Christopher Faulet67957bd2017-09-27 11:00:59 +02004114 dns_unlink_resolution(srv->dns_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004115
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004116 free(srv->hostname);
4117 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004118 srv->hostname = strdup(hostname);
4119 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004120 srv->hostname_dn_len = hostname_dn_len;
4121 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004122 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004123
Baptiste Assmann13a92322019-06-07 09:40:55 +02004124 if (srv->flags & SRV_F_NO_RESOLUTION)
4125 goto end;
4126
Olivier Houchard55dcdf42017-11-06 15:15:04 +01004127 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004128 goto err;
4129
4130 end:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004131 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004132 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004133 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02004134
4135 err:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004136 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004137 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02004138 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004139}
4140
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004141/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
4142 * from the state file. This is suited for initial address configuration.
4143 * Returns 0 on success otherwise a non-zero error code. In case of error,
4144 * *err_code, if not NULL, is filled up.
4145 */
4146static int srv_apply_lastaddr(struct server *srv, int *err_code)
4147{
4148 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
4149 if (err_code)
4150 *err_code |= ERR_WARN;
4151 return 1;
4152 }
4153 return 0;
4154}
4155
Willy Tarreau25e51522016-11-04 15:10:17 +01004156/* returns 0 if no error, otherwise a combination of ERR_* flags */
4157static int srv_iterate_initaddr(struct server *srv)
4158{
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004159 char *name = srv->hostname;
Willy Tarreau25e51522016-11-04 15:10:17 +01004160 int return_code = 0;
4161 int err_code;
4162 unsigned int methods;
4163
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004164 /* If no addr and no hostname set, get the name from the DNS SRV request */
4165 if (!name && srv->srvrq)
4166 name = srv->srvrq->name;
4167
Willy Tarreau25e51522016-11-04 15:10:17 +01004168 methods = srv->init_addr_methods;
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004169 if (!methods) {
4170 /* otherwise default to "last,libc" */
Willy Tarreau25e51522016-11-04 15:10:17 +01004171 srv_append_initaddr(&methods, SRV_IADDR_LAST);
4172 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004173 if (srv->resolvers_id) {
4174 /* dns resolution is configured, add "none" to not fail on startup */
4175 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4176 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004177 }
4178
Willy Tarreau3eed10e2016-11-07 21:03:16 +01004179 /* "-dr" : always append "none" so that server addresses resolution
4180 * failures are silently ignored, this is convenient to validate some
4181 * configs out of their environment.
4182 */
4183 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
4184 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4185
Willy Tarreau25e51522016-11-04 15:10:17 +01004186 while (methods) {
4187 err_code = 0;
4188 switch (srv_get_next_initaddr(&methods)) {
4189 case SRV_IADDR_LAST:
4190 if (!srv->lastaddr)
4191 continue;
4192 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004193 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004194 return_code |= err_code;
4195 break;
4196
4197 case SRV_IADDR_LIBC:
4198 if (!srv->hostname)
4199 continue;
4200 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004201 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004202 return_code |= err_code;
4203 break;
4204
Willy Tarreau37ebe122016-11-04 15:17:58 +01004205 case SRV_IADDR_NONE:
4206 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004207 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004208 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004209 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004210 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01004211 return return_code;
4212
Willy Tarreau4310d362016-11-02 15:05:56 +01004213 case SRV_IADDR_IP:
4214 ipcpy(&srv->init_addr, &srv->addr);
4215 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004216 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', falling back to configured address.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004217 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau4310d362016-11-02 15:05:56 +01004218 }
Olivier Houchard4e694042017-03-14 20:01:29 +01004219 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01004220
Willy Tarreau25e51522016-11-04 15:10:17 +01004221 default: /* unhandled method */
4222 break;
4223 }
4224 }
4225
4226 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004227 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004228 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau25e51522016-11-04 15:10:17 +01004229 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01004230 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004231 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004232 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004233 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004234
4235 return_code |= ERR_ALERT | ERR_FATAL;
4236 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01004237out:
4238 srv_set_dyncookie(srv);
4239 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01004240}
4241
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004242/*
4243 * This function parses all backends and all servers within each backend
4244 * and performs servers' addr resolution based on information provided by:
4245 * - configuration file
4246 * - server-state file (states provided by an 'old' haproxy process)
4247 *
4248 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
4249 */
4250int srv_init_addr(void)
4251{
4252 struct proxy *curproxy;
4253 int return_code = 0;
4254
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004255 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004256 while (curproxy) {
4257 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004258
4259 /* servers are in backend only */
Amaury Denoyelle96a4ff12021-01-06 14:28:50 +01004260 if (!(curproxy->cap & PR_CAP_BE) || curproxy->disabled)
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004261 goto srv_init_addr_next;
4262
Willy Tarreau25e51522016-11-04 15:10:17 +01004263 for (srv = curproxy->srv; srv; srv = srv->next)
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004264 if (srv->hostname || srv->srvrq)
Willy Tarreau3d609a72017-09-06 14:22:45 +02004265 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004266
4267 srv_init_addr_next:
4268 curproxy = curproxy->next;
4269 }
4270
4271 return return_code;
4272}
4273
Willy Tarreau46b7f532018-08-21 11:54:26 +02004274/*
4275 * Must be called with the server lock held.
4276 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004277const char *update_server_fqdn(struct server *server, const char *fqdn, const char *updater, int dns_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004278{
4279
Willy Tarreau83061a82018-07-13 11:56:34 +02004280 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004281
4282 msg = get_trash_chunk();
4283 chunk_reset(msg);
4284
Olivier Houchard8da5f982017-08-04 18:35:36 +02004285 if (server->hostname && !strcmp(fqdn, server->hostname)) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004286 chunk_appendf(msg, "no need to change the FDQN");
4287 goto out;
4288 }
4289
4290 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4291 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4292 goto out;
4293 }
4294
4295 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4296 server->proxy->id, server->id, server->hostname, fqdn);
4297
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004298 if (srv_set_fqdn(server, fqdn, dns_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004299 chunk_reset(msg);
4300 chunk_appendf(msg, "could not update %s/%s FQDN",
4301 server->proxy->id, server->id);
4302 goto out;
4303 }
4304
4305 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004306 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004307
4308 out:
4309 if (updater)
4310 chunk_appendf(msg, " by '%s'", updater);
4311 chunk_appendf(msg, "\n");
4312
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004313 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004314}
4315
4316
Willy Tarreau21b069d2016-11-23 17:15:08 +01004317/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4318 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004319 * on the CLI, sets the CLI's state to CLI_ST_PRINT and returns NULL. This is only
Willy Tarreau21b069d2016-11-23 17:15:08 +01004320 * used for CLI commands requiring a server name.
4321 * Important: the <arg> is modified to remove the '/'.
4322 */
4323struct server *cli_find_server(struct appctx *appctx, char *arg)
4324{
4325 struct proxy *px;
4326 struct server *sv;
4327 char *line;
4328
4329 /* split "backend/server" and make <line> point to server */
4330 for (line = arg; *line; line++)
4331 if (*line == '/') {
4332 *line++ = '\0';
4333 break;
4334 }
4335
4336 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004337 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004338 return NULL;
4339 }
4340
4341 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004342 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004343 return NULL;
4344 }
4345
Willy Tarreauc3914d42020-09-24 08:39:22 +02004346 if (px->disabled) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004347 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004348 return NULL;
4349 }
4350
4351 return sv;
4352}
4353
William Lallemand222baf22016-11-19 02:00:33 +01004354
Willy Tarreau46b7f532018-08-21 11:54:26 +02004355/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004356static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004357{
4358 struct server *sv;
4359 const char *warning;
4360
4361 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4362 return 1;
4363
4364 sv = cli_find_server(appctx, args[2]);
4365 if (!sv)
4366 return 1;
4367
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004368 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02004369
William Lallemand222baf22016-11-19 02:00:33 +01004370 if (strcmp(args[3], "weight") == 0) {
4371 warning = server_parse_weight_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004372 if (warning)
4373 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004374 }
4375 else if (strcmp(args[3], "state") == 0) {
4376 if (strcmp(args[4], "ready") == 0)
4377 srv_adm_set_ready(sv);
4378 else if (strcmp(args[4], "drain") == 0)
4379 srv_adm_set_drain(sv);
4380 else if (strcmp(args[4], "maint") == 0)
4381 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02004382 else
4383 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004384 }
4385 else if (strcmp(args[3], "health") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004386 if (sv->track)
4387 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004388 else if (strcmp(args[4], "up") == 0) {
4389 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004390 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004391 }
4392 else if (strcmp(args[4], "stopping") == 0) {
4393 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004394 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004395 }
4396 else if (strcmp(args[4], "down") == 0) {
4397 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004398 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004399 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004400 else
4401 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004402 }
4403 else if (strcmp(args[3], "agent") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004404 if (!(sv->agent.state & CHK_ST_ENABLED))
4405 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004406 else if (strcmp(args[4], "up") == 0) {
4407 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004408 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004409 }
4410 else if (strcmp(args[4], "down") == 0) {
4411 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004412 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004413 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004414 else
4415 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004416 }
Misiek2da082d2017-01-09 09:40:42 +01004417 else if (strcmp(args[3], "agent-addr") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004418 if (!(sv->agent.state & CHK_ST_ENABLED))
4419 cli_err(appctx, "agent checks are not enabled on this server.\n");
4420 else if (str2ip(args[4], &sv->agent.addr) == NULL)
4421 cli_err(appctx, "incorrect addr address given for agent.\n");
Misiek2da082d2017-01-09 09:40:42 +01004422 }
4423 else if (strcmp(args[3], "agent-send") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004424 if (!(sv->agent.state & CHK_ST_ENABLED))
4425 cli_err(appctx, "agent checks are not enabled on this server.\n");
4426 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004427 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004428 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004429 }
4430 }
William Lallemand222baf22016-11-19 02:00:33 +01004431 else if (strcmp(args[3], "check-port") == 0) {
4432 int i = 0;
4433 if (strl2irc(args[4], strlen(args[4]), &i) != 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004434 cli_err(appctx, "'set server <srv> check-port' expects an integer as argument.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004435 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004436 }
4437 if ((i < 0) || (i > 65535)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004438 cli_err(appctx, "provided port is not valid.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004439 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004440 }
4441 /* prevent the update of port to 0 if MAPPORTS are in use */
4442 if ((sv->flags & SRV_F_MAPPORTS) && (i == 0)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004443 cli_err(appctx, "can't unset 'port' since MAPPORTS is in use.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004444 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004445 }
4446 sv->check.port = i;
Willy Tarreau9d008692019-08-09 11:21:01 +02004447 cli_msg(appctx, LOG_NOTICE, "health check port updated.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004448 }
4449 else if (strcmp(args[3], "addr") == 0) {
4450 char *addr = NULL;
4451 char *port = NULL;
4452 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004453 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004454 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004455 }
4456 else {
4457 addr = args[4];
4458 }
4459 if (strcmp(args[5], "port") == 0) {
4460 port = args[6];
4461 }
4462 warning = update_server_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004463 if (warning)
4464 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004465 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
4466 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004467 else if (strcmp(args[3], "fqdn") == 0) {
4468 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004469 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004470 goto out_unlock;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004471 }
Baptiste Assmann13a92322019-06-07 09:40:55 +02004472 /* ensure runtime resolver will process this new fqdn */
4473 if (sv->flags & SRV_F_NO_RESOLUTION) {
4474 sv->flags &= ~SRV_F_NO_RESOLUTION;
4475 }
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004476 warning = update_server_fqdn(sv, args[4], "stats socket command", 0);
Willy Tarreau9d008692019-08-09 11:21:01 +02004477 if (warning)
4478 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004479 }
William Lallemand222baf22016-11-19 02:00:33 +01004480 else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004481 cli_err(appctx,
4482 "'set server <srv>' only supports 'agent', 'health', 'state',"
4483 " 'weight', 'addr', 'fqdn' and 'check-port'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004484 }
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004485 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004486 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004487 return 1;
4488}
4489
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004490static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004491{
4492 struct stream_interface *si = appctx->owner;
4493 struct proxy *px;
4494 struct server *sv;
4495 char *line;
4496
4497
4498 /* split "backend/server" and make <line> point to server */
4499 for (line = args[2]; *line; line++)
4500 if (*line == '/') {
4501 *line++ = '\0';
4502 break;
4503 }
4504
Willy Tarreau9d008692019-08-09 11:21:01 +02004505 if (!*line)
4506 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004507
Willy Tarreau9d008692019-08-09 11:21:01 +02004508 if (!get_backend_server(args[2], line, &px, &sv))
4509 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004510
4511 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004512 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4513 sv->iweight);
4514 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004515 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004516 return 0;
4517 }
William Lallemand6b160942016-11-22 12:34:35 +01004518 return 1;
4519}
4520
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004521/* Parse a "set weight" command.
4522 *
4523 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004524 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004525static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004526{
4527 struct server *sv;
4528 const char *warning;
4529
4530 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4531 return 1;
4532
4533 sv = cli_find_server(appctx, args[2]);
4534 if (!sv)
4535 return 1;
4536
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004537 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4538
William Lallemand6b160942016-11-22 12:34:35 +01004539 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004540 if (warning)
4541 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004542
4543 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4544
William Lallemand6b160942016-11-22 12:34:35 +01004545 return 1;
4546}
4547
Willy Tarreau46b7f532018-08-21 11:54:26 +02004548/* parse a "set maxconn server" command. It always returns 1.
4549 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004550 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004551 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004552static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004553{
4554 struct server *sv;
4555 const char *warning;
4556
4557 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4558 return 1;
4559
4560 sv = cli_find_server(appctx, args[3]);
4561 if (!sv)
4562 return 1;
4563
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004564 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4565
Willy Tarreaub8026272016-11-23 11:26:56 +01004566 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004567 if (warning)
4568 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004569
4570 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4571
Willy Tarreaub8026272016-11-23 11:26:56 +01004572 return 1;
4573}
William Lallemand6b160942016-11-22 12:34:35 +01004574
Willy Tarreau46b7f532018-08-21 11:54:26 +02004575/* parse a "disable agent" command. It always returns 1.
4576 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004577 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004578 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004579static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004580{
4581 struct server *sv;
4582
4583 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4584 return 1;
4585
4586 sv = cli_find_server(appctx, args[2]);
4587 if (!sv)
4588 return 1;
4589
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004590 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004591 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004592 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004593 return 1;
4594}
4595
Willy Tarreau46b7f532018-08-21 11:54:26 +02004596/* parse a "disable health" command. It always returns 1.
4597 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004598 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004599 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004600static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004601{
4602 struct server *sv;
4603
4604 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4605 return 1;
4606
4607 sv = cli_find_server(appctx, args[2]);
4608 if (!sv)
4609 return 1;
4610
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004611 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004612 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004613 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004614 return 1;
4615}
4616
Willy Tarreau46b7f532018-08-21 11:54:26 +02004617/* parse a "disable server" command. It always returns 1.
4618 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004619 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004620 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004621static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004622{
4623 struct server *sv;
4624
4625 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4626 return 1;
4627
4628 sv = cli_find_server(appctx, args[2]);
4629 if (!sv)
4630 return 1;
4631
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004632 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004633 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004634 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004635 return 1;
4636}
4637
Willy Tarreau46b7f532018-08-21 11:54:26 +02004638/* parse a "enable agent" command. It always returns 1.
4639 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004640 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004641 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004642static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004643{
4644 struct server *sv;
4645
4646 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4647 return 1;
4648
4649 sv = cli_find_server(appctx, args[2]);
4650 if (!sv)
4651 return 1;
4652
Willy Tarreau9d008692019-08-09 11:21:01 +02004653 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4654 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004655
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004656 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004657 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004658 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004659 return 1;
4660}
4661
Willy Tarreau46b7f532018-08-21 11:54:26 +02004662/* parse a "enable health" command. It always returns 1.
4663 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004664 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004665 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004666static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004667{
4668 struct server *sv;
4669
4670 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4671 return 1;
4672
4673 sv = cli_find_server(appctx, args[2]);
4674 if (!sv)
4675 return 1;
4676
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004677 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004678 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004679 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004680 return 1;
4681}
4682
Willy Tarreau46b7f532018-08-21 11:54:26 +02004683/* parse a "enable server" command. It always returns 1.
4684 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004685 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004686 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004687static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004688{
4689 struct server *sv;
4690
4691 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4692 return 1;
4693
4694 sv = cli_find_server(appctx, args[2]);
4695 if (!sv)
4696 return 1;
4697
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004698 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004699 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004700 if (!(sv->flags & SRV_F_COOKIESET)
4701 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4702 sv->cookie)
4703 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004704 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004705 return 1;
4706}
4707
William Lallemand222baf22016-11-19 02:00:33 +01004708/* register cli keywords */
4709static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004710 { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004711 { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004712 { { "disable", "server", NULL }, "disable server : disable a server for maintenance (use 'set server' instead)", cli_parse_disable_server, NULL },
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004713 { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004714 { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004715 { { "enable", "server", NULL }, "enable server : enable a disabled server (use 'set server' instead)", cli_parse_enable_server, NULL },
Willy Tarreaub8026272016-11-23 11:26:56 +01004716 { { "set", "maxconn", "server", NULL }, "set maxconn server : change a server's maxconn setting", cli_parse_set_maxconn_server, NULL },
William Lallemand222baf22016-11-19 02:00:33 +01004717 { { "set", "server", NULL }, "set server : change a server's state, weight or address", cli_parse_set_server },
William Lallemand6b160942016-11-22 12:34:35 +01004718 { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight },
4719 { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight },
4720
William Lallemand222baf22016-11-19 02:00:33 +01004721 {{},}
4722}};
4723
Willy Tarreau0108d902018-11-25 19:14:37 +01004724INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004725
Emeric Brun64cc49c2017-10-03 14:46:45 +02004726/*
4727 * This function applies server's status changes, it is
4728 * is designed to be called asynchronously.
4729 *
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004730 * Must be called with the server lock held. This may also be called at init
4731 * time as the result of parsing the state file, in which case no lock will be
4732 * held, and the server's warmup task can be null.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004733 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004734static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004735{
4736 struct check *check = &s->check;
4737 int xferred;
4738 struct proxy *px = s->proxy;
4739 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4740 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4741 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004742 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004743
Emeric Brun64cc49c2017-10-03 14:46:45 +02004744 /* If currently main is not set we try to apply pending state changes */
4745 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4746 int next_admin;
4747
4748 /* Backup next admin */
4749 next_admin = s->next_admin;
4750
4751 /* restore current admin state */
4752 s->next_admin = s->cur_admin;
4753
4754 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4755 s->last_change = now.tv_sec;
4756 if (s->proxy->lbprm.set_server_status_down)
4757 s->proxy->lbprm.set_server_status_down(s);
4758
4759 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4760 srv_shutdown_streams(s, SF_ERR_DOWN);
4761
4762 /* we might have streams queued on this server and waiting for
4763 * a connection. Those which are redispatchable will be queued
4764 * to another server or to the proxy itself.
4765 */
4766 xferred = pendconn_redistribute(s);
4767
4768 tmptrash = alloc_trash_chunk();
4769 if (tmptrash) {
4770 chunk_printf(tmptrash,
4771 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4772 s->proxy->id, s->id);
4773
Emeric Brun5a133512017-10-19 14:42:30 +02004774 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004775 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004776
4777 /* we don't send an alert if the server was previously paused */
4778 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004779 send_log(s->proxy, log_level, "%s.\n",
4780 tmptrash->area);
4781 send_email_alert(s, log_level, "%s",
4782 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004783 free_trash_chunk(tmptrash);
4784 tmptrash = NULL;
4785 }
4786 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4787 set_backend_down(s->proxy);
4788
4789 s->counters.down_trans++;
4790 }
4791 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4792 s->last_change = now.tv_sec;
4793 if (s->proxy->lbprm.set_server_status_down)
4794 s->proxy->lbprm.set_server_status_down(s);
4795
4796 /* we might have streams queued on this server and waiting for
4797 * a connection. Those which are redispatchable will be queued
4798 * to another server or to the proxy itself.
4799 */
4800 xferred = pendconn_redistribute(s);
4801
4802 tmptrash = alloc_trash_chunk();
4803 if (tmptrash) {
4804 chunk_printf(tmptrash,
4805 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4806 s->proxy->id, s->id);
4807
Emeric Brun5a133512017-10-19 14:42:30 +02004808 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004809
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004810 ha_warning("%s.\n", tmptrash->area);
4811 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4812 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004813 free_trash_chunk(tmptrash);
4814 tmptrash = NULL;
4815 }
4816
4817 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4818 set_backend_down(s->proxy);
4819 }
4820 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4821 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4822 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4823 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4824 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4825 s->proxy->last_change = now.tv_sec;
4826 }
4827
Amaury Denoyellefe2bf092020-10-29 15:59:04 +01004828 if (s->cur_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
Emeric Brun64cc49c2017-10-03 14:46:45 +02004829 s->down_time += now.tv_sec - s->last_change;
4830
4831 s->last_change = now.tv_sec;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004832 if (s->next_state == SRV_ST_STARTING && s->warmup)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004833 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4834
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004835 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004836 /* now propagate the status change to any LB algorithms */
4837 if (px->lbprm.update_server_eweight)
4838 px->lbprm.update_server_eweight(s);
4839 else if (srv_willbe_usable(s)) {
4840 if (px->lbprm.set_server_status_up)
4841 px->lbprm.set_server_status_up(s);
4842 }
4843 else {
4844 if (px->lbprm.set_server_status_down)
4845 px->lbprm.set_server_status_down(s);
4846 }
4847
4848 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4849 * and it's not a backup server and its effective weight is > 0,
4850 * then it can accept new connections, so we shut down all streams
4851 * on all backup servers.
4852 */
4853 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4854 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4855 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4856
4857 /* check if we can handle some connections queued at the proxy. We
4858 * will take as many as we can handle.
4859 */
4860 xferred = pendconn_grab_from_px(s);
4861
4862 tmptrash = alloc_trash_chunk();
4863 if (tmptrash) {
4864 chunk_printf(tmptrash,
4865 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
4866 s->proxy->id, s->id);
4867
Emeric Brun5a133512017-10-19 14:42:30 +02004868 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004869 ha_warning("%s.\n", tmptrash->area);
4870 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4871 tmptrash->area);
4872 send_email_alert(s, LOG_NOTICE, "%s",
4873 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004874 free_trash_chunk(tmptrash);
4875 tmptrash = NULL;
4876 }
4877
4878 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4879 set_backend_down(s->proxy);
4880 }
4881 else if (s->cur_eweight != s->next_eweight) {
4882 /* now propagate the status change to any LB algorithms */
4883 if (px->lbprm.update_server_eweight)
4884 px->lbprm.update_server_eweight(s);
4885 else if (srv_willbe_usable(s)) {
4886 if (px->lbprm.set_server_status_up)
4887 px->lbprm.set_server_status_up(s);
4888 }
4889 else {
4890 if (px->lbprm.set_server_status_down)
4891 px->lbprm.set_server_status_down(s);
4892 }
4893
4894 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4895 set_backend_down(s->proxy);
4896 }
4897
4898 s->next_admin = next_admin;
4899 }
4900
Emeric Brun5a133512017-10-19 14:42:30 +02004901 /* reset operational state change */
4902 *s->op_st_chg.reason = 0;
4903 s->op_st_chg.status = s->op_st_chg.code = -1;
4904 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004905
4906 /* Now we try to apply pending admin changes */
4907
4908 /* Maintenance must also disable health checks */
4909 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
4910 if (s->check.state & CHK_ST_ENABLED) {
4911 s->check.state |= CHK_ST_PAUSED;
4912 check->health = 0;
4913 }
4914
4915 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02004916 tmptrash = alloc_trash_chunk();
4917 if (tmptrash) {
4918 chunk_printf(tmptrash,
4919 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
4920 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4921 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02004922
Olivier Houchard796a2b32017-10-24 17:42:47 +02004923 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02004924
Olivier Houchard796a2b32017-10-24 17:42:47 +02004925 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004926 ha_warning("%s.\n", tmptrash->area);
4927 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4928 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02004929 }
4930 free_trash_chunk(tmptrash);
4931 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004932 }
Emeric Brun8f298292017-12-06 16:47:17 +01004933 /* commit new admin status */
4934
4935 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004936 }
4937 else { /* server was still running */
4938 check->health = 0; /* failure */
4939 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01004940
4941 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004942 if (s->proxy->lbprm.set_server_status_down)
4943 s->proxy->lbprm.set_server_status_down(s);
4944
Emeric Brun64cc49c2017-10-03 14:46:45 +02004945 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4946 srv_shutdown_streams(s, SF_ERR_DOWN);
4947
William Dauchy6318d332020-05-02 21:52:36 +02004948 /* force connection cleanup on the given server */
4949 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004950 /* we might have streams queued on this server and waiting for
4951 * a connection. Those which are redispatchable will be queued
4952 * to another server or to the proxy itself.
4953 */
4954 xferred = pendconn_redistribute(s);
4955
4956 tmptrash = alloc_trash_chunk();
4957 if (tmptrash) {
4958 chunk_printf(tmptrash,
4959 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
4960 s->flags & SRV_F_BACKUP ? "Backup " : "",
4961 s->proxy->id, s->id,
4962 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
4963
4964 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
4965
4966 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004967 ha_warning("%s.\n", tmptrash->area);
4968 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
4969 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004970 }
4971 free_trash_chunk(tmptrash);
4972 tmptrash = NULL;
4973 }
4974 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4975 set_backend_down(s->proxy);
4976
4977 s->counters.down_trans++;
4978 }
4979 }
4980 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
4981 /* OK here we're leaving maintenance, we have many things to check,
4982 * because the server might possibly be coming back up depending on
4983 * its state. In practice, leaving maintenance means that we should
4984 * immediately turn to UP (more or less the slowstart) under the
4985 * following conditions :
4986 * - server is neither checked nor tracked
4987 * - server tracks another server which is not checked
4988 * - server tracks another server which is already up
4989 * Which sums up as something simpler :
4990 * "either the tracking server is up or the server's checks are disabled
4991 * or up". Otherwise we only re-enable health checks. There's a special
4992 * case associated to the stopping state which can be inherited. Note
4993 * that the server might still be in drain mode, which is naturally dealt
4994 * with by the lower level functions.
4995 */
4996
4997 if (s->check.state & CHK_ST_ENABLED) {
4998 s->check.state &= ~CHK_ST_PAUSED;
4999 check->health = check->rise; /* start OK but check immediately */
5000 }
5001
5002 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
5003 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
5004 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
5005 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
5006 s->next_state = SRV_ST_STOPPING;
5007 }
5008 else {
5009 s->next_state = SRV_ST_STARTING;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005010 if (s->slowstart > 0) {
5011 if (s->warmup)
5012 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5013 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005014 else
5015 s->next_state = SRV_ST_RUNNING;
5016 }
5017
5018 }
5019
5020 tmptrash = alloc_trash_chunk();
5021 if (tmptrash) {
5022 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5023 chunk_printf(tmptrash,
5024 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
5025 s->flags & SRV_F_BACKUP ? "Backup " : "",
5026 s->proxy->id, s->id,
5027 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5028 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5029 }
5030 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5031 chunk_printf(tmptrash,
5032 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
5033 s->flags & SRV_F_BACKUP ? "Backup " : "",
5034 s->proxy->id, s->id, s->hostname,
5035 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5036 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5037 }
5038 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5039 chunk_printf(tmptrash,
5040 "%sServer %s/%s is %s/%s (leaving maintenance)",
5041 s->flags & SRV_F_BACKUP ? "Backup " : "",
5042 s->proxy->id, s->id,
5043 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5044 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5045 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005046 ha_warning("%s.\n", tmptrash->area);
5047 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5048 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005049 free_trash_chunk(tmptrash);
5050 tmptrash = NULL;
5051 }
5052
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005053 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005054 /* now propagate the status change to any LB algorithms */
5055 if (px->lbprm.update_server_eweight)
5056 px->lbprm.update_server_eweight(s);
5057 else if (srv_willbe_usable(s)) {
5058 if (px->lbprm.set_server_status_up)
5059 px->lbprm.set_server_status_up(s);
5060 }
5061 else {
5062 if (px->lbprm.set_server_status_down)
5063 px->lbprm.set_server_status_down(s);
5064 }
5065
5066 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5067 set_backend_down(s->proxy);
5068
Willy Tarreau6a78e612018-08-07 10:14:53 +02005069 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5070 * and it's not a backup server and its effective weight is > 0,
5071 * then it can accept new connections, so we shut down all streams
5072 * on all backup servers.
5073 */
5074 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5075 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5076 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5077
5078 /* check if we can handle some connections queued at the proxy. We
5079 * will take as many as we can handle.
5080 */
5081 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005082 }
5083 else if (s->next_admin & SRV_ADMF_MAINT) {
5084 /* remaining in maintenance mode, let's inform precisely about the
5085 * situation.
5086 */
5087 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5088 tmptrash = alloc_trash_chunk();
5089 if (tmptrash) {
5090 chunk_printf(tmptrash,
5091 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5092 s->flags & SRV_F_BACKUP ? "Backup " : "",
5093 s->proxy->id, s->id);
5094
5095 if (s->track) /* normally it's mandatory here */
5096 chunk_appendf(tmptrash, " via %s/%s",
5097 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005098 ha_warning("%s.\n", tmptrash->area);
5099 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5100 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005101 free_trash_chunk(tmptrash);
5102 tmptrash = NULL;
5103 }
5104 }
5105 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5106 tmptrash = alloc_trash_chunk();
5107 if (tmptrash) {
5108 chunk_printf(tmptrash,
5109 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5110 s->flags & SRV_F_BACKUP ? "Backup " : "",
5111 s->proxy->id, s->id, s->hostname);
5112
5113 if (s->track) /* normally it's mandatory here */
5114 chunk_appendf(tmptrash, " via %s/%s",
5115 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005116 ha_warning("%s.\n", tmptrash->area);
5117 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5118 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005119 free_trash_chunk(tmptrash);
5120 tmptrash = NULL;
5121 }
5122 }
5123 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5124 tmptrash = alloc_trash_chunk();
5125 if (tmptrash) {
5126 chunk_printf(tmptrash,
5127 "%sServer %s/%s remains in forced maintenance",
5128 s->flags & SRV_F_BACKUP ? "Backup " : "",
5129 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005130 ha_warning("%s.\n", tmptrash->area);
5131 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5132 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005133 free_trash_chunk(tmptrash);
5134 tmptrash = NULL;
5135 }
5136 }
5137 /* don't report anything when leaving drain mode and remaining in maintenance */
5138
5139 s->cur_admin = s->next_admin;
5140 }
5141
5142 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5143 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5144 /* drain state is applied only if not yet in maint */
5145
5146 s->last_change = now.tv_sec;
5147 if (px->lbprm.set_server_status_down)
5148 px->lbprm.set_server_status_down(s);
5149
5150 /* we might have streams queued on this server and waiting for
5151 * a connection. Those which are redispatchable will be queued
5152 * to another server or to the proxy itself.
5153 */
5154 xferred = pendconn_redistribute(s);
5155
5156 tmptrash = alloc_trash_chunk();
5157 if (tmptrash) {
5158 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5159 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5160 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5161
5162 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5163
5164 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005165 ha_warning("%s.\n", tmptrash->area);
5166 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5167 tmptrash->area);
5168 send_email_alert(s, LOG_NOTICE, "%s",
5169 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005170 }
5171 free_trash_chunk(tmptrash);
5172 tmptrash = NULL;
5173 }
5174
5175 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5176 set_backend_down(s->proxy);
5177 }
5178 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5179 /* OK completely leaving drain mode */
5180 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5181 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5182 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5183 s->proxy->last_change = now.tv_sec;
5184 }
5185
5186 if (s->last_change < now.tv_sec) // ignore negative times
5187 s->down_time += now.tv_sec - s->last_change;
5188 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005189 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005190
5191 tmptrash = alloc_trash_chunk();
5192 if (tmptrash) {
5193 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5194 chunk_printf(tmptrash,
5195 "%sServer %s/%s is %s (leaving forced drain)",
5196 s->flags & SRV_F_BACKUP ? "Backup " : "",
5197 s->proxy->id, s->id,
5198 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5199 }
5200 else {
5201 chunk_printf(tmptrash,
5202 "%sServer %s/%s is %s (leaving drain)",
5203 s->flags & SRV_F_BACKUP ? "Backup " : "",
5204 s->proxy->id, s->id,
5205 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5206 if (s->track) /* normally it's mandatory here */
5207 chunk_appendf(tmptrash, " via %s/%s",
5208 s->track->proxy->id, s->track->id);
5209 }
5210
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005211 ha_warning("%s.\n", tmptrash->area);
5212 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5213 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005214 free_trash_chunk(tmptrash);
5215 tmptrash = NULL;
5216 }
5217
5218 /* now propagate the status change to any LB algorithms */
5219 if (px->lbprm.update_server_eweight)
5220 px->lbprm.update_server_eweight(s);
5221 else if (srv_willbe_usable(s)) {
5222 if (px->lbprm.set_server_status_up)
5223 px->lbprm.set_server_status_up(s);
5224 }
5225 else {
5226 if (px->lbprm.set_server_status_down)
5227 px->lbprm.set_server_status_down(s);
5228 }
5229 }
5230 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5231 /* remaining in drain mode after removing one of its flags */
5232
5233 tmptrash = alloc_trash_chunk();
5234 if (tmptrash) {
5235 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5236 chunk_printf(tmptrash,
5237 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5238 s->flags & SRV_F_BACKUP ? "Backup " : "",
5239 s->proxy->id, s->id);
5240
5241 if (s->track) /* normally it's mandatory here */
5242 chunk_appendf(tmptrash, " via %s/%s",
5243 s->track->proxy->id, s->track->id);
5244 }
5245 else {
5246 chunk_printf(tmptrash,
5247 "%sServer %s/%s remains in forced drain mode",
5248 s->flags & SRV_F_BACKUP ? "Backup " : "",
5249 s->proxy->id, s->id);
5250 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005251 ha_warning("%s.\n", tmptrash->area);
5252 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5253 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005254 free_trash_chunk(tmptrash);
5255 tmptrash = NULL;
5256 }
5257
5258 /* commit new admin status */
5259
5260 s->cur_admin = s->next_admin;
5261 }
5262 }
5263
5264 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005265 *s->adm_st_chg_cause = 0;
5266}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005267
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005268struct task *srv_cleanup_toremove_connections(struct task *task, void *context, unsigned short state)
5269{
5270 struct connection *conn;
5271
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005272 while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns,
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005273 struct connection *, list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005274 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005275 }
5276
5277 return task;
5278}
5279
Olivier Houchardff1d0922020-06-29 20:15:59 +02005280/* Move toremove_nb connections from idle_list to toremove_list, -1 means
5281 * moving them all.
5282 * Returns the number of connections moved.
5283 */
5284static int srv_migrate_conns_to_remove(struct mt_list *idle_list, struct mt_list *toremove_list, int toremove_nb)
5285{
5286 struct mt_list *elt1, elt2;
5287 struct connection *conn;
5288 int i = 0;
5289
5290 mt_list_for_each_entry_safe(conn, idle_list, list, elt1, elt2) {
5291 if (toremove_nb != -1 && i >= toremove_nb)
5292 break;
5293 MT_LIST_DEL_SAFE_NOINIT(elt1);
Willy Tarreaude4db172020-07-10 08:10:29 +02005294 MT_LIST_ADDQ(toremove_list, &conn->list);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005295 i++;
5296 }
5297 return i;
5298}
William Dauchy6318d332020-05-02 21:52:36 +02005299/* cleanup connections for a given server
5300 * might be useful when going on forced maintenance or live changing ip/port
5301 */
William Dauchy707ad322020-05-04 13:52:40 +02005302static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005303{
William Dauchy6318d332020-05-02 21:52:36 +02005304 int did_remove;
5305 int i;
William Dauchy6318d332020-05-02 21:52:36 +02005306
Amaury Denoyellec0a2ace2021-01-06 14:28:51 +01005307 /* nothing to do if pool-max-conn is null */
5308 if (!srv->max_idle_conns)
5309 return;
5310
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005311 /* check all threads starting with ours */
William Dauchy6318d332020-05-02 21:52:36 +02005312 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005313 for (i = tid;;) {
William Dauchy6318d332020-05-02 21:52:36 +02005314 did_remove = 0;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005315 if (srv_migrate_conns_to_remove(&srv->idle_conns[i], &idle_conns[i].toremove_conns, -1) > 0)
William Dauchy6318d332020-05-02 21:52:36 +02005316 did_remove = 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005317 if (srv_migrate_conns_to_remove(&srv->safe_conns[i], &idle_conns[i].toremove_conns, -1) > 0)
5318 did_remove = 1;
William Dauchy6318d332020-05-02 21:52:36 +02005319 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005320 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005321
5322 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5323 break;
William Dauchy6318d332020-05-02 21:52:36 +02005324 }
5325 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5326}
5327
Willy Tarreau980855b2019-02-07 14:59:29 +01005328struct task *srv_cleanup_idle_connections(struct task *task, void *context, unsigned short state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005329{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005330 struct server *srv;
5331 struct eb32_node *eb;
5332 int i;
5333 unsigned int next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005334
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005335 next_wakeup = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005336 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5337 while (1) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005338 int exceed_conns;
5339 int to_kill;
5340 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005341
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005342 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5343 if (!eb) {
5344 /* we might have reached the end of the tree, typically because
5345 * <now_ms> is in the first half and we're first scanning the last
5346 * half. Let's loop back to the beginning of the tree now.
5347 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005348
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005349 eb = eb32_first(&idle_conn_srv);
5350 if (likely(!eb))
5351 break;
5352 }
5353 if (tick_is_lt(now_ms, eb->key)) {
5354 /* timer not expired yet, revisit it later */
5355 next_wakeup = eb->key;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005356 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005357 }
5358 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005359
5360 /* Calculate how many idle connections we want to kill :
5361 * we want to remove half the difference between the total
5362 * of established connections (used or idle) and the max
5363 * number of used connections.
5364 */
5365 curr_idle = srv->curr_idle_conns;
5366 if (curr_idle == 0)
5367 goto remove;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005368 exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005369 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005370
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005371 srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns) / 2;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005372 if (srv->est_need_conns < srv->max_used_conns)
5373 srv->est_need_conns = srv->max_used_conns;
5374
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005375 srv->max_used_conns = srv->curr_used_conns;
5376
Willy Tarreau18ed7892020-07-02 19:05:30 +02005377 if (exceed_conns <= 0)
5378 goto remove;
5379
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005380 /* check all threads starting with ours */
5381 for (i = tid;;) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005382 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005383 int j;
5384 int did_remove = 0;
5385
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005386 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5387 curr_idle + 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005388
5389 j = srv_migrate_conns_to_remove(&srv->idle_conns[i], &idle_conns[i].toremove_conns, max_conn);
5390 if (j > 0)
5391 did_remove = 1;
5392 if (max_conn - j > 0 &&
5393 srv_migrate_conns_to_remove(&srv->safe_conns[i], &idle_conns[i].toremove_conns, max_conn - j) > 0)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005394 did_remove = 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005395
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005396 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005397 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005398
5399 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5400 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005401 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005402remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005403 eb32_delete(&srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005404
5405 if (srv->curr_idle_conns) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005406 /* There are still more idle connections, add the
5407 * server back in the tree.
5408 */
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005409 srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005410 eb32_insert(&idle_conn_srv, &srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005411 next_wakeup = tick_first(next_wakeup, srv->idle_node.key);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005412 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005413 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005414 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5415
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005416 task->expire = next_wakeup;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005417 return task;
5418}
Olivier Houchard88698d92019-04-16 19:07:22 +02005419
Willy Tarreau76cc6992020-07-01 18:49:24 +02005420/* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */
5421static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx,
5422 struct proxy *defpx, const char *file, int line,
5423 char **err)
5424{
5425 if (too_many_args(1, args, err, NULL))
5426 return -1;
5427
5428 if (strcmp(args[1], "on") == 0)
5429 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
5430 else if (strcmp(args[1], "off") == 0)
5431 global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
5432 else {
5433 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
5434 return -1;
5435 }
5436 return 0;
5437}
5438
Olivier Houchard88698d92019-04-16 19:07:22 +02005439/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5440static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
5441 struct proxy *defpx, const char *file, int line,
5442 char **err)
5443{
5444 int arg = -1;
5445
5446 if (too_many_args(1, args, err, NULL))
5447 return -1;
5448
5449 if (*(args[1]) != 0)
5450 arg = atoi(args[1]);
5451
5452 if (arg < 0 || arg > 100) {
5453 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5454 return -1;
5455 }
5456
5457 if (args[0][10] == 'h')
5458 global.tune.pool_high_ratio = arg;
5459 else
5460 global.tune.pool_low_ratio = arg;
5461 return 0;
5462}
5463
5464/* config keyword parsers */
5465static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau76cc6992020-07-01 18:49:24 +02005466 { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared },
Olivier Houchard88698d92019-04-16 19:07:22 +02005467 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5468 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5469 { 0, NULL, NULL }
5470}};
5471
5472INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5473
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005474/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005475 * Local variables:
5476 * c-indent-level: 8
5477 * c-basic-offset: 8
5478 * End:
5479 */