blob: a86a2806178d68b70e8db53f4ca69f967b22b23a [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 Tarreau272adea2014-03-31 10:39:59 +020014#include <ctype.h>
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020015#include <errno.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020016
Olivier Houchard4e694042017-03-14 20:01:29 +010017#include <import/xxhash.h>
18
Willy Tarreau272adea2014-03-31 10:39:59 +020019#include <common/cfgparse.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020020#include <common/config.h>
Willy Tarreaudff55432012-10-10 17:51:05 +020021#include <common/errors.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010022#include <common/initcall.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010023#include <common/namespace.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020024#include <common/time.h>
25
William Lallemand222baf22016-11-19 02:00:33 +010026#include <types/applet.h>
27#include <types/cli.h>
Frédéric Lécaille7da71292019-05-20 09:47:07 +020028#include <types/dict.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020029#include <types/global.h>
Willy Tarreau21b069d2016-11-23 17:15:08 +010030#include <types/cli.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020031#include <types/dns.h>
William Lallemand222baf22016-11-19 02:00:33 +010032#include <types/stats.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020033
William Lallemand222baf22016-11-19 02:00:33 +010034#include <proto/applet.h>
35#include <proto/cli.h>
Simon Hormanb1900d52015-01-30 11:22:54 +090036#include <proto/checks.h>
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +020037#include <proto/connection.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020038#include <proto/port_range.h>
39#include <proto/protocol.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020040#include <proto/queue.h>
Frédéric Lécaille9a146de2017-03-20 14:54:41 +010041#include <proto/sample.h>
Willy Tarreauec6c5df2008-07-15 00:22:45 +020042#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020043#include <proto/stream.h>
William Lallemand222baf22016-11-19 02:00:33 +010044#include <proto/stream_interface.h>
45#include <proto/stats.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020046#include <proto/task.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020047#include <proto/dns.h>
David Carlier6f182082017-04-03 21:58:04 +010048#include <netinet/tcp.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020049
Willy Tarreau3ff577e2018-08-02 11:48:52 +020050static void srv_update_status(struct server *s);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020051static void srv_update_state(struct server *srv, int version, char **params);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +010052static int srv_apply_lastaddr(struct server *srv, int *err_code);
Olivier Houchardd16bfe62017-10-31 15:21:19 +010053static int srv_set_fqdn(struct server *srv, const char *fqdn, int dns_locked);
Willy Tarreaubaaee002006-06-26 02:48:02 +020054
Willy Tarreau21faa912012-10-10 08:27:36 +020055/* List head of all known server keywords */
56static struct srv_kw_list srv_keywords = {
57 .list = LIST_HEAD_INIT(srv_keywords.list)
58};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020059
Olivier Houchard9ea5d362019-02-14 18:29:09 +010060__decl_hathreads(HA_SPINLOCK_T idle_conn_srv_lock);
61struct eb_root idle_conn_srv = EB_ROOT;
62struct task *idle_conn_task = NULL;
63struct task *idle_conn_cleanup[MAX_THREADS] = { NULL };
64struct list toremove_connections[MAX_THREADS];
Olivier Houchardba936e52019-07-11 15:49:00 +020065__decl_hathreads(HA_SPINLOCK_T toremove_lock[MAX_THREADS]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010066
Frédéric Lécaille7da71292019-05-20 09:47:07 +020067/* The server names dictionary */
68struct dict server_name_dict = {
69 .name = "server names",
70 .values = EB_ROOT_UNIQUE,
71};
72
Simon Hormana3608442013-11-01 16:46:15 +090073int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020074{
Amaury Denoyelle13ed5032020-10-29 15:59:05 +010075 if ((s->cur_state != SRV_ST_STOPPED) || s->last_change >= now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020076 return s->down_time;
77
78 return now.tv_sec - s->last_change + s->down_time;
79}
Willy Tarreaubaaee002006-06-26 02:48:02 +020080
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050081int srv_lastsession(const struct server *s)
82{
83 if (s->counters.last_sess)
84 return now.tv_sec - s->counters.last_sess;
85
86 return -1;
87}
88
Simon Horman4a741432013-02-23 15:35:38 +090089int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020090{
Simon Horman4a741432013-02-23 15:35:38 +090091 const struct server *s = check->server;
92
Willy Tarreauff5ae352013-12-11 20:36:34 +010093 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +090094 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010095
Emeric Brun52a91d32017-08-31 14:41:55 +020096 if ((s->next_state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +090097 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010098
Simon Horman4a741432013-02-23 15:35:38 +090099 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100100}
101
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100102/*
103 * Check that we did not get a hash collision.
104 * Unlikely, but it can happen.
105 */
106static inline void srv_check_for_dup_dyncookie(struct server *s)
Olivier Houchard4e694042017-03-14 20:01:29 +0100107{
108 struct proxy *p = s->proxy;
109 struct server *tmpserv;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100110
111 for (tmpserv = p->srv; tmpserv != NULL;
112 tmpserv = tmpserv->next) {
113 if (tmpserv == s)
114 continue;
115 if (tmpserv->next_admin & SRV_ADMF_FMAINT)
116 continue;
117 if (tmpserv->cookie &&
118 strcmp(tmpserv->cookie, s->cookie) == 0) {
119 ha_warning("We generated two equal cookies for two different servers.\n"
120 "Please change the secret key for '%s'.\n",
121 s->proxy->id);
122 }
123 }
124
125}
126
Willy Tarreau46b7f532018-08-21 11:54:26 +0200127/*
Willy Tarreau0ff395c2019-07-30 11:59:34 +0200128 * Must be called with the server lock held, and will grab the proxy lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200129 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100130void srv_set_dyncookie(struct server *s)
131{
132 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100133 char *tmpbuf;
134 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100135 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100136 size_t buffer_len;
137 int addr_len;
138 int port;
139
Willy Tarreau0ff395c2019-07-30 11:59:34 +0200140 HA_SPIN_LOCK(PROXY_LOCK, &p->lock);
141
Olivier Houchard4e694042017-03-14 20:01:29 +0100142 if ((s->flags & SRV_F_COOKIESET) ||
143 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
144 s->proxy->dyncookie_key == NULL)
Willy Tarreau0ff395c2019-07-30 11:59:34 +0200145 goto out;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100146 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100147
148 if (s->addr.ss_family != AF_INET &&
149 s->addr.ss_family != AF_INET6)
Willy Tarreau0ff395c2019-07-30 11:59:34 +0200150 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100151 /*
152 * Buffer to calculate the cookie value.
153 * The buffer contains the secret key + the server IP address
154 * + the TCP port.
155 */
156 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
157 /*
158 * The TCP port should use only 2 bytes, but is stored in
159 * an unsigned int in struct server, so let's use 4, to be
160 * on the safe side.
161 */
162 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200163 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100164 memcpy(tmpbuf, p->dyncookie_key, key_len);
165 memcpy(&(tmpbuf[key_len]),
166 s->addr.ss_family == AF_INET ?
167 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
168 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
169 addr_len);
170 /*
171 * Make sure it's the same across all the load balancers,
172 * no matter their endianness.
173 */
174 port = htonl(s->svc_port);
175 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
176 hash_value = XXH64(tmpbuf, buffer_len, 0);
177 memprintf(&s->cookie, "%016llx", hash_value);
178 if (!s->cookie)
Willy Tarreau0ff395c2019-07-30 11:59:34 +0200179 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100180 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100181
182 /* Don't bother checking if the dyncookie is duplicated if
183 * the server is marked as "disabled", maybe it doesn't have
184 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100185 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100186 if (!(s->next_admin & SRV_ADMF_FMAINT))
187 srv_check_for_dup_dyncookie(s);
Willy Tarreau0ff395c2019-07-30 11:59:34 +0200188 out:
189 HA_SPIN_UNLOCK(PROXY_LOCK, &p->lock);
Olivier Houchard4e694042017-03-14 20:01:29 +0100190}
191
Willy Tarreau21faa912012-10-10 08:27:36 +0200192/*
193 * Registers the server keyword list <kwl> as a list of valid keywords for next
194 * parsing sessions.
195 */
196void srv_register_keywords(struct srv_kw_list *kwl)
197{
198 LIST_ADDQ(&srv_keywords.list, &kwl->list);
199}
200
201/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
202 * keyword is found with a NULL ->parse() function, then an attempt is made to
203 * find one with a valid ->parse() function. This way it is possible to declare
204 * platform-dependant, known keywords as NULL, then only declare them as valid
205 * if some options are met. Note that if the requested keyword contains an
206 * opening parenthesis, everything from this point is ignored.
207 */
208struct srv_kw *srv_find_kw(const char *kw)
209{
210 int index;
211 const char *kwend;
212 struct srv_kw_list *kwl;
213 struct srv_kw *ret = NULL;
214
215 kwend = strchr(kw, '(');
216 if (!kwend)
217 kwend = kw + strlen(kw);
218
219 list_for_each_entry(kwl, &srv_keywords.list, list) {
220 for (index = 0; kwl->kw[index].kw != NULL; index++) {
221 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
222 kwl->kw[index].kw[kwend-kw] == 0) {
223 if (kwl->kw[index].parse)
224 return &kwl->kw[index]; /* found it !*/
225 else
226 ret = &kwl->kw[index]; /* may be OK */
227 }
228 }
229 }
230 return ret;
231}
232
233/* Dumps all registered "server" keywords to the <out> string pointer. The
234 * unsupported keywords are only dumped if their supported form was not
235 * found.
236 */
237void srv_dump_kws(char **out)
238{
239 struct srv_kw_list *kwl;
240 int index;
241
242 *out = NULL;
243 list_for_each_entry(kwl, &srv_keywords.list, list) {
244 for (index = 0; kwl->kw[index].kw != NULL; index++) {
245 if (kwl->kw[index].parse ||
246 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
247 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
248 kwl->scope,
249 kwl->kw[index].kw,
250 kwl->kw[index].skip ? " <arg>" : "",
251 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
252 kwl->kw[index].parse ? "" : " (not supported)");
253 }
254 }
255 }
256}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100257
Frédéric Lécaille6e5e0d82017-03-20 16:30:18 +0100258/* Parse the "addr" server keyword */
259static int srv_parse_addr(char **args, int *cur_arg,
260 struct proxy *curproxy, struct server *newsrv, char **err)
261{
262 char *errmsg, *arg;
263 struct sockaddr_storage *sk;
264 int port1, port2;
265 struct protocol *proto;
266
267 errmsg = NULL;
268 arg = args[*cur_arg + 1];
269
270 if (!*arg) {
271 memprintf(err, "'%s' expects <ipv4|ipv6> as argument.\n", args[*cur_arg]);
272 goto err;
273 }
274
275 sk = str2sa_range(arg, NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
276 if (!sk) {
277 memprintf(err, "'%s' : %s", args[*cur_arg], errmsg);
278 goto err;
279 }
280
281 proto = protocol_by_family(sk->ss_family);
282 if (!proto || !proto->connect) {
283 memprintf(err, "'%s %s' : connect() not supported for this address family.\n",
284 args[*cur_arg], arg);
285 goto err;
286 }
287
288 if (port1 != port2) {
289 memprintf(err, "'%s' : port ranges and offsets are not allowed in '%s'\n",
290 args[*cur_arg], arg);
291 goto err;
292 }
293
294 newsrv->check.addr = newsrv->agent.addr = *sk;
295 newsrv->flags |= SRV_F_CHECKADDR;
296 newsrv->flags |= SRV_F_AGENTADDR;
297
298 return 0;
299
300 err:
301 free(errmsg);
302 return ERR_ALERT | ERR_FATAL;
303}
304
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +0100305/* Parse the "agent-check" server keyword */
306static int srv_parse_agent_check(char **args, int *cur_arg,
307 struct proxy *curproxy, struct server *newsrv, char **err)
308{
309 newsrv->do_agent = 1;
310 return 0;
311}
312
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100313/* Parse the "backup" server keyword */
314static int srv_parse_backup(char **args, int *cur_arg,
315 struct proxy *curproxy, struct server *newsrv, char **err)
316{
317 newsrv->flags |= SRV_F_BACKUP;
318 return 0;
319}
320
Frédéric Lécaille65aa3562017-03-14 11:20:13 +0100321/* Parse the "check" server keyword */
322static int srv_parse_check(char **args, int *cur_arg,
323 struct proxy *curproxy, struct server *newsrv, char **err)
324{
325 newsrv->do_check = 1;
326 return 0;
327}
328
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100329/* Parse the "check-send-proxy" server keyword */
330static int srv_parse_check_send_proxy(char **args, int *cur_arg,
331 struct proxy *curproxy, struct server *newsrv, char **err)
332{
333 newsrv->check.send_proxy = 1;
334 return 0;
335}
336
Alexander Liu2a54bb72019-05-22 19:44:48 +0800337/* Parse the "check-via-socks4" server keyword */
338static int srv_parse_check_via_socks4(char **args, int *cur_arg,
339 struct proxy *curproxy, struct server *newsrv, char **err)
340{
341 newsrv->check.via_socks4 = 1;
342 return 0;
343}
344
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100345/* Parse the "cookie" server keyword */
346static int srv_parse_cookie(char **args, int *cur_arg,
347 struct proxy *curproxy, struct server *newsrv, char **err)
348{
349 char *arg;
350
351 arg = args[*cur_arg + 1];
352 if (!*arg) {
353 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
354 return ERR_ALERT | ERR_FATAL;
355 }
356
357 free(newsrv->cookie);
358 newsrv->cookie = strdup(arg);
359 newsrv->cklen = strlen(arg);
360 newsrv->flags |= SRV_F_COOKIESET;
361 return 0;
362}
363
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100364/* Parse the "disabled" server keyword */
365static int srv_parse_disabled(char **args, int *cur_arg,
366 struct proxy *curproxy, struct server *newsrv, char **err)
367{
Emeric Brun52a91d32017-08-31 14:41:55 +0200368 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
369 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100370 newsrv->check.state |= CHK_ST_PAUSED;
371 newsrv->check.health = 0;
372 return 0;
373}
374
375/* Parse the "enabled" server keyword */
376static int srv_parse_enabled(char **args, int *cur_arg,
377 struct proxy *curproxy, struct server *newsrv, char **err)
378{
Emeric Brun52a91d32017-08-31 14:41:55 +0200379 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
380 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100381 newsrv->check.state &= ~CHK_ST_PAUSED;
382 newsrv->check.health = newsrv->check.rise;
383 return 0;
384}
385
Willy Tarreau9c538e02019-01-23 10:21:49 +0100386static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
387{
388 char *arg;
389
390 arg = args[*cur_arg + 1];
391 if (!*arg) {
392 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
393 return ERR_ALERT | ERR_FATAL;
394 }
395 newsrv->max_reuse = atoi(arg);
396
397 return 0;
398}
399
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100400static 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 +0100401{
402 const char *res;
403 char *arg;
404 unsigned int time;
405
406 arg = args[*cur_arg + 1];
407 if (!*arg) {
408 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
409 return ERR_ALERT | ERR_FATAL;
410 }
411 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200412 if (res == PARSE_TIME_OVER) {
413 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
414 args[*cur_arg+1], args[*cur_arg]);
415 return ERR_ALERT | ERR_FATAL;
416 }
417 else if (res == PARSE_TIME_UNDER) {
418 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
419 args[*cur_arg+1], args[*cur_arg]);
420 return ERR_ALERT | ERR_FATAL;
421 }
422 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100423 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
424 *res, args[*cur_arg]);
425 return ERR_ALERT | ERR_FATAL;
426 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100427 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100428
429 return 0;
430}
431
Olivier Houchard006e3102018-12-10 18:30:32 +0100432static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
433{
434 char *arg;
435
436 arg = args[*cur_arg + 1];
437 if (!*arg) {
438 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
439 return ERR_ALERT | ERR_FATAL;
440 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100441
Olivier Houchard006e3102018-12-10 18:30:32 +0100442 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100443 if ((int)newsrv->max_idle_conns < -1) {
444 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
445 return ERR_ALERT | ERR_FATAL;
446 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100447
448 return 0;
449}
450
Willy Tarreaudff55432012-10-10 17:51:05 +0200451/* parse the "id" server keyword */
452static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
453{
454 struct eb32_node *node;
455
456 if (!*args[*cur_arg + 1]) {
457 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
458 return ERR_ALERT | ERR_FATAL;
459 }
460
461 newsrv->puid = atol(args[*cur_arg + 1]);
462 newsrv->conf.id.key = newsrv->puid;
463
464 if (newsrv->puid <= 0) {
465 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
466 return ERR_ALERT | ERR_FATAL;
467 }
468
469 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
470 if (node) {
471 struct server *target = container_of(node, struct server, conf.id);
472 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
473 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
474 target->id);
475 return ERR_ALERT | ERR_FATAL;
476 }
477
478 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200479 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200480 return 0;
481}
482
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100483/* Parse the "namespace" server keyword */
484static int srv_parse_namespace(char **args, int *cur_arg,
485 struct proxy *curproxy, struct server *newsrv, char **err)
486{
Willy Tarreaue5733232019-05-22 19:24:06 +0200487#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100488 char *arg;
489
490 arg = args[*cur_arg + 1];
491 if (!*arg) {
492 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
493 return ERR_ALERT | ERR_FATAL;
494 }
495
496 if (!strcmp(arg, "*")) {
497 /* Use the namespace associated with the connection (if present). */
498 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
499 return 0;
500 }
501
502 /*
503 * As this parser may be called several times for the same 'default-server'
504 * object, or for a new 'server' instance deriving from a 'default-server'
505 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
506 */
507 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
508
509 newsrv->netns = netns_store_lookup(arg, strlen(arg));
510 if (!newsrv->netns)
511 newsrv->netns = netns_store_insert(arg);
512
513 if (!newsrv->netns) {
514 memprintf(err, "Cannot open namespace '%s'", arg);
515 return ERR_ALERT | ERR_FATAL;
516 }
517
518 return 0;
519#else
520 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
521 return ERR_ALERT | ERR_FATAL;
522#endif
523}
524
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +0100525/* Parse the "no-agent-check" server keyword */
526static int srv_parse_no_agent_check(char **args, int *cur_arg,
527 struct proxy *curproxy, struct server *newsrv, char **err)
528{
529 free_check(&newsrv->agent);
530 newsrv->agent.inter = 0;
531 newsrv->agent.port = 0;
532 newsrv->agent.state &= ~CHK_ST_CONFIGURED & ~CHK_ST_ENABLED & ~CHK_ST_AGENT;
533 newsrv->do_agent = 0;
534 return 0;
535}
536
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100537/* Parse the "no-backup" server keyword */
538static int srv_parse_no_backup(char **args, int *cur_arg,
539 struct proxy *curproxy, struct server *newsrv, char **err)
540{
541 newsrv->flags &= ~SRV_F_BACKUP;
542 return 0;
543}
544
Frédéric Lécaille65aa3562017-03-14 11:20:13 +0100545/* Parse the "no-check" server keyword */
546static int srv_parse_no_check(char **args, int *cur_arg,
547 struct proxy *curproxy, struct server *newsrv, char **err)
548{
549 free_check(&newsrv->check);
550 newsrv->check.state &= ~CHK_ST_CONFIGURED & ~CHK_ST_ENABLED;
551 newsrv->do_check = 0;
552 return 0;
553}
554
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100555/* Parse the "no-check-send-proxy" server keyword */
556static int srv_parse_no_check_send_proxy(char **args, int *cur_arg,
557 struct proxy *curproxy, struct server *newsrv, char **err)
558{
559 newsrv->check.send_proxy = 0;
560 return 0;
561}
562
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100563/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200564static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100565{
566 srv->pp_opts &= ~flags;
567 return 0;
568}
569
570/* Parse the "no-send-proxy" server keyword */
571static int srv_parse_no_send_proxy(char **args, int *cur_arg,
572 struct proxy *curproxy, struct server *newsrv, char **err)
573{
574 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
575}
576
577/* Parse the "no-send-proxy-v2" server keyword */
578static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
579 struct proxy *curproxy, struct server *newsrv, char **err)
580{
581 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
582}
583
Frédéric Lécailleaeeb1c92019-07-04 14:19:06 +0200584/* Parse the "no-tfo" server keyword */
585static int srv_parse_no_tfo(char **args, int *cur_arg,
586 struct proxy *curproxy, struct server *newsrv, char **err)
587{
588 newsrv->flags &= ~SRV_F_FASTOPEN;
589 return 0;
590}
591
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100592/* Parse the "non-stick" server keyword */
593static int srv_parse_non_stick(char **args, int *cur_arg,
594 struct proxy *curproxy, struct server *newsrv, char **err)
595{
596 newsrv->flags |= SRV_F_NON_STICK;
597 return 0;
598}
599
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100600/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200601static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100602{
603 srv->pp_opts |= flags;
604 return 0;
605}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200606/* parse the "proto" server keyword */
607static int srv_parse_proto(char **args, int *cur_arg,
608 struct proxy *px, struct server *newsrv, char **err)
609{
610 struct ist proto;
611
612 if (!*args[*cur_arg + 1]) {
613 memprintf(err, "'%s' : missing value", args[*cur_arg]);
614 return ERR_ALERT | ERR_FATAL;
615 }
616 proto = ist2(args[*cur_arg + 1], strlen(args[*cur_arg + 1]));
617 newsrv->mux_proto = get_mux_proto(proto);
618 if (!newsrv->mux_proto) {
619 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
620 return ERR_ALERT | ERR_FATAL;
621 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200622 return 0;
623}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100624
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100625/* parse the "proxy-v2-options" */
626static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
627 struct proxy *px, struct server *newsrv, char **err)
628{
629 char *p, *n;
630 for (p = args[*cur_arg+1]; p; p = n) {
631 n = strchr(p, ',');
632 if (n)
633 *n++ = '\0';
634 if (!strcmp(p, "ssl")) {
635 newsrv->pp_opts |= SRV_PP_V2_SSL;
636 } else if (!strcmp(p, "cert-cn")) {
637 newsrv->pp_opts |= SRV_PP_V2_SSL;
638 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100639 } else if (!strcmp(p, "cert-key")) {
640 newsrv->pp_opts |= SRV_PP_V2_SSL;
641 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
642 } else if (!strcmp(p, "cert-sig")) {
643 newsrv->pp_opts |= SRV_PP_V2_SSL;
644 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
645 } else if (!strcmp(p, "ssl-cipher")) {
646 newsrv->pp_opts |= SRV_PP_V2_SSL;
647 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100648 } else if (!strcmp(p, "authority")) {
649 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100650 } else if (!strcmp(p, "crc32c")) {
651 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100652 } else
653 goto fail;
654 }
655 return 0;
656 fail:
657 if (err)
658 memprintf(err, "'%s' : proxy v2 option not implemented", p);
659 return ERR_ALERT | ERR_FATAL;
660}
661
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100662/* Parse the "observe" server keyword */
663static int srv_parse_observe(char **args, int *cur_arg,
664 struct proxy *curproxy, struct server *newsrv, char **err)
665{
666 char *arg;
667
668 arg = args[*cur_arg + 1];
669 if (!*arg) {
670 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
671 return ERR_ALERT | ERR_FATAL;
672 }
673
674 if (!strcmp(arg, "none")) {
675 newsrv->observe = HANA_OBS_NONE;
676 }
677 else if (!strcmp(arg, "layer4")) {
678 newsrv->observe = HANA_OBS_LAYER4;
679 }
680 else if (!strcmp(arg, "layer7")) {
681 if (curproxy->mode != PR_MODE_HTTP) {
682 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
683 return ERR_ALERT;
684 }
685 newsrv->observe = HANA_OBS_LAYER7;
686 }
687 else {
688 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
689 "but got '%s'\n", args[*cur_arg], arg);
690 return ERR_ALERT | ERR_FATAL;
691 }
692
693 return 0;
694}
695
Frédéric Lécaille16186232017-03-14 16:42:49 +0100696/* Parse the "redir" server keyword */
697static int srv_parse_redir(char **args, int *cur_arg,
698 struct proxy *curproxy, struct server *newsrv, char **err)
699{
700 char *arg;
701
702 arg = args[*cur_arg + 1];
703 if (!*arg) {
704 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
705 return ERR_ALERT | ERR_FATAL;
706 }
707
708 free(newsrv->rdr_pfx);
709 newsrv->rdr_pfx = strdup(arg);
710 newsrv->rdr_len = strlen(arg);
711
712 return 0;
713}
714
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100715/* Parse the "send-proxy" server keyword */
716static int srv_parse_send_proxy(char **args, int *cur_arg,
717 struct proxy *curproxy, struct server *newsrv, char **err)
718{
719 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
720}
721
722/* Parse the "send-proxy-v2" server keyword */
723static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
724 struct proxy *curproxy, struct server *newsrv, char **err)
725{
726 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
727}
728
Frédéric Lécailledba97072017-03-17 15:33:50 +0100729
730/* Parse the "source" server keyword */
731static int srv_parse_source(char **args, int *cur_arg,
732 struct proxy *curproxy, struct server *newsrv, char **err)
733{
734 char *errmsg;
735 int port_low, port_high;
736 struct sockaddr_storage *sk;
737 struct protocol *proto;
738
739 errmsg = NULL;
740
741 if (!*args[*cur_arg + 1]) {
742 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
743 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
744 goto err;
745 }
746
747 /* 'sk' is statically allocated (no need to be freed). */
748 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, &errmsg, NULL, NULL, 1);
749 if (!sk) {
750 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
751 goto err;
752 }
753
754 proto = protocol_by_family(sk->ss_family);
755 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100756 ha_alert("'%s %s' : connect() not supported for this address family.\n",
757 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100758 goto err;
759 }
760
761 newsrv->conn_src.opts |= CO_SRC_BIND;
762 newsrv->conn_src.source_addr = *sk;
763
764 if (port_low != port_high) {
765 int i;
766
767 if (!port_low || !port_high) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100768 ha_alert("'%s' does not support port offsets (found '%s').\n",
769 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100770 goto err;
771 }
772
773 if (port_low <= 0 || port_low > 65535 ||
774 port_high <= 0 || port_high > 65535 ||
775 port_low > port_high) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100776 ha_alert("'%s': invalid source port range %d-%d.\n", args[*cur_arg], port_low, port_high);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100777 goto err;
778 }
779 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
780 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
781 newsrv->conn_src.sport_range->ports[i] = port_low + i;
782 }
783
784 *cur_arg += 2;
785 while (*(args[*cur_arg])) {
786 if (!strcmp(args[*cur_arg], "usesrc")) { /* address to use outside */
787#if defined(CONFIG_HAP_TRANSPARENT)
788 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100789 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
790 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +0100791 goto err;
792 }
793 if (!strcmp(args[*cur_arg + 1], "client")) {
794 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
795 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
796 }
797 else if (!strcmp(args[*cur_arg + 1], "clientip")) {
798 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
799 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
800 }
801 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
802 char *name, *end;
803
804 name = args[*cur_arg + 1] + 7;
805 while (isspace(*name))
806 name++;
807
808 end = name;
809 while (*end && !isspace(*end) && *end != ',' && *end != ')')
810 end++;
811
812 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
813 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
814 free(newsrv->conn_src.bind_hdr_name);
815 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
816 newsrv->conn_src.bind_hdr_len = end - name;
817 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
818 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
819 newsrv->conn_src.bind_hdr_occ = -1;
820
821 /* now look for an occurrence number */
822 while (isspace(*end))
823 end++;
824 if (*end == ',') {
825 end++;
826 name = end;
827 if (*end == '-')
828 end++;
829 while (isdigit((int)*end))
830 end++;
831 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
832 }
833
834 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100835 ha_alert("usesrc hdr_ip(name,num) does not support negative"
836 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100837 goto err;
838 }
839 }
840 else {
841 struct sockaddr_storage *sk;
842 int port1, port2;
843
844 /* 'sk' is statically allocated (no need to be freed). */
845 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
846 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100847 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100848 goto err;
849 }
850
851 proto = protocol_by_family(sk->ss_family);
852 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100853 ha_alert("'%s %s' : connect() not supported for this address family.\n",
854 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100855 goto err;
856 }
857
858 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100859 ha_alert("'%s' : port ranges and offsets are not allowed in '%s'\n",
860 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100861 goto err;
862 }
863 newsrv->conn_src.tproxy_addr = *sk;
864 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
865 }
866 global.last_checks |= LSTCHK_NETADM;
867 *cur_arg += 2;
868 continue;
869#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100870 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 +0100871 goto err;
872#endif /* defined(CONFIG_HAP_TRANSPARENT) */
873 } /* "usesrc" */
874
875 if (!strcmp(args[*cur_arg], "interface")) { /* specifically bind to this interface */
876#ifdef SO_BINDTODEVICE
877 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100878 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100879 goto err;
880 }
881 free(newsrv->conn_src.iface_name);
882 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
883 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
884 global.last_checks |= LSTCHK_NETADM;
885#else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100886 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100887 goto err;
888#endif
889 *cur_arg += 2;
890 continue;
891 }
892 /* this keyword in not an option of "source" */
893 break;
894 } /* while */
895
896 return 0;
897
898 err:
899 free(errmsg);
900 return ERR_ALERT | ERR_FATAL;
901}
902
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100903/* Parse the "stick" server keyword */
904static int srv_parse_stick(char **args, int *cur_arg,
905 struct proxy *curproxy, struct server *newsrv, char **err)
906{
907 newsrv->flags &= ~SRV_F_NON_STICK;
908 return 0;
909}
910
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100911/* Parse the "track" server keyword */
912static int srv_parse_track(char **args, int *cur_arg,
913 struct proxy *curproxy, struct server *newsrv, char **err)
914{
915 char *arg;
916
917 arg = args[*cur_arg + 1];
918 if (!*arg) {
919 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
920 return ERR_ALERT | ERR_FATAL;
921 }
922
923 free(newsrv->trackit);
924 newsrv->trackit = strdup(arg);
925
926 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800927}
928
929/* Parse the "socks4" server keyword */
930static int srv_parse_socks4(char **args, int *cur_arg,
931 struct proxy *curproxy, struct server *newsrv, char **err)
932{
933 char *errmsg;
934 int port_low, port_high;
935 struct sockaddr_storage *sk;
936 struct protocol *proto;
937
938 errmsg = NULL;
939
940 if (!*args[*cur_arg + 1]) {
941 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
942 goto err;
943 }
944
945 /* 'sk' is statically allocated (no need to be freed). */
946 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, &errmsg, NULL, NULL, 1);
947 if (!sk) {
948 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
949 goto err;
950 }
951
952 proto = protocol_by_family(sk->ss_family);
953 if (!proto || !proto->connect) {
954 ha_alert("'%s %s' : connect() not supported for this address family.\n", args[*cur_arg], args[*cur_arg + 1]);
955 goto err;
956 }
957
958 newsrv->flags |= SRV_F_SOCKS4_PROXY;
959 newsrv->socks4_addr = *sk;
960
961 if (port_low != port_high) {
962 ha_alert("'%s' does not support port offsets (found '%s').\n", args[*cur_arg], args[*cur_arg + 1]);
963 goto err;
964 }
965
Willy Tarreaubc907762020-09-15 11:25:54 +0200966 if (port_low <= 0 || port_low > 65535) {
967 ha_alert("'%s': invalid port %d.\n", args[*cur_arg], port_low);
Alexander Liu2a54bb72019-05-22 19:44:48 +0800968 goto err;
969 }
970
971 return 0;
972
973 err:
974 free(errmsg);
975 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100976}
977
Frédéric Lécailledba97072017-03-17 15:33:50 +0100978
Willy Tarreau034c88c2017-01-23 23:36:45 +0100979/* parse the "tfo" server keyword */
980static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
981{
982 newsrv->flags |= SRV_F_FASTOPEN;
983 return 0;
984}
985
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200986/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +0200987 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200988 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200989 *
990 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200991 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200992void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200993{
Willy Tarreau87b09662015-04-03 00:22:06 +0200994 struct stream *stream, *stream_bck;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200995
Willy Tarreau87b09662015-04-03 00:22:06 +0200996 list_for_each_entry_safe(stream, stream_bck, &srv->actconns, by_srv)
997 if (stream->srv_conn == srv)
998 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200999}
1000
1001/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +02001002 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001003 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001004 *
1005 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001006 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001007void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001008{
1009 struct server *srv;
1010
1011 for (srv = px->srv; srv != NULL; srv = srv->next)
1012 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +02001013 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001014}
1015
Willy Tarreaubda92272014-05-20 21:55:30 +02001016/* Appends some information to a message string related to a server going UP or
1017 * DOWN. If both <forced> and <reason> are null and the server tracks another
1018 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +02001019 * If <check> is non-null, an entire string describing the check result will be
1020 * appended after a comma and a space (eg: to report some information from the
1021 * check that changed the state). In the other case, the string will be built
1022 * using the check results stored into the struct server if present.
1023 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +02001024 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001025 *
1026 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001027 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001028void srv_append_status(struct buffer *msg, struct server *s,
1029 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001030{
Emeric Brun5a133512017-10-19 14:42:30 +02001031 short status = s->op_st_chg.status;
1032 short code = s->op_st_chg.code;
1033 long duration = s->op_st_chg.duration;
1034 char *desc = s->op_st_chg.reason;
1035
1036 if (check) {
1037 status = check->status;
1038 code = check->code;
1039 duration = check->duration;
1040 desc = check->desc;
1041 }
1042
1043 if (status != -1) {
1044 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
1045
1046 if (status >= HCHK_STATUS_L57DATA)
1047 chunk_appendf(msg, ", code: %d", code);
1048
1049 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +02001050 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +02001051
1052 chunk_appendf(msg, ", info: \"");
1053
1054 chunk_initlen(&src, desc, 0, strlen(desc));
1055 chunk_asciiencode(msg, &src, '"');
1056
1057 chunk_appendf(msg, "\"");
1058 }
1059
1060 if (duration >= 0)
1061 chunk_appendf(msg, ", check duration: %ldms", duration);
1062 }
1063 else if (desc && *desc) {
1064 chunk_appendf(msg, ", %s", desc);
1065 }
1066 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +02001067 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +02001068 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001069
1070 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001071 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001072 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
1073 " %d sessions active, %d requeued, %d remaining in queue",
1074 s->proxy->srv_act, s->proxy->srv_bck,
1075 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
1076 s->cur_sess, xferred, s->nbpend);
1077 else
1078 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
1079 " %d sessions requeued, %d total in queue",
1080 s->proxy->srv_act, s->proxy->srv_bck,
1081 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
1082 xferred, s->nbpend);
1083 }
1084}
1085
Emeric Brun5a133512017-10-19 14:42:30 +02001086/* Marks server <s> down, regardless of its checks' statuses. The server is
1087 * registered in a list to postpone the counting of the remaining servers on
1088 * the proxy and transfers queued streams whenever possible to other servers at
1089 * a sync point. Maintenance servers are ignored. It stores the <reason> if
1090 * non-null as the reason for going down or the available data from the check
1091 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001092 *
1093 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001094 */
Emeric Brun5a133512017-10-19 14:42:30 +02001095void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001096{
1097 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001098
Emeric Brun64cc49c2017-10-03 14:46:45 +02001099 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001100 return;
1101
Emeric Brun52a91d32017-08-31 14:41:55 +02001102 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +02001103 *s->op_st_chg.reason = 0;
1104 s->op_st_chg.status = -1;
1105 if (reason) {
1106 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1107 }
1108 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001109 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001110 s->op_st_chg.code = check->code;
1111 s->op_st_chg.status = check->status;
1112 s->op_st_chg.duration = check->duration;
1113 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001114
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001115 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001116 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001117
Emeric Brun9f0b4582017-10-23 14:39:51 +02001118 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001119 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001120 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001121 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001122 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001123}
1124
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001125/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001126 * in maintenance. The server is registered in a list to postpone the counting
1127 * of the remaining servers on the proxy and tries to grab requests from the
1128 * proxy at a sync point. Maintenance servers are ignored. It stores the
1129 * <reason> if non-null as the reason for going down or the available data
1130 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001131 *
1132 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001133 */
Emeric Brun5a133512017-10-19 14:42:30 +02001134void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001135{
1136 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001137
Emeric Brun64cc49c2017-10-03 14:46:45 +02001138 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001139 return;
1140
Emeric Brun52a91d32017-08-31 14:41:55 +02001141 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001142 return;
1143
Emeric Brun52a91d32017-08-31 14:41:55 +02001144 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001145 *s->op_st_chg.reason = 0;
1146 s->op_st_chg.status = -1;
1147 if (reason) {
1148 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1149 }
1150 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001151 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001152 s->op_st_chg.code = check->code;
1153 s->op_st_chg.status = check->status;
1154 s->op_st_chg.duration = check->duration;
1155 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001156
Emeric Brun64cc49c2017-10-03 14:46:45 +02001157 if (s->slowstart <= 0)
1158 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001159
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001160 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001161 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001162
Emeric Brun9f0b4582017-10-23 14:39:51 +02001163 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001164 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001165 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001166 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001167 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001168}
1169
Willy Tarreau8eb77842014-05-21 13:54:57 +02001170/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001171 * isn't in maintenance. The server is registered in a list to postpone the
1172 * counting of the remaining servers on the proxy and tries to grab requests
1173 * from the proxy. Maintenance servers are ignored. It stores the
1174 * <reason> if non-null as the reason for going down or the available data
1175 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001176 * up. Note that it makes use of the trash to build the log strings, so <reason>
1177 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001178 *
1179 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001180 */
Emeric Brun5a133512017-10-19 14:42:30 +02001181void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001182{
1183 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001184
Emeric Brun64cc49c2017-10-03 14:46:45 +02001185 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001186 return;
1187
Emeric Brun52a91d32017-08-31 14:41:55 +02001188 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001189 return;
1190
Emeric Brun52a91d32017-08-31 14:41:55 +02001191 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001192 *s->op_st_chg.reason = 0;
1193 s->op_st_chg.status = -1;
1194 if (reason) {
1195 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1196 }
1197 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001198 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001199 s->op_st_chg.code = check->code;
1200 s->op_st_chg.status = check->status;
1201 s->op_st_chg.duration = check->duration;
1202 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001203
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001204 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001205 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001206
Emeric Brun9f0b4582017-10-23 14:39:51 +02001207 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001208 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001209 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001210 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001211 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001212}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001213
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001214/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1215 * enforce either maint mode or drain mode. It is not allowed to set more than
1216 * one flag at once. The equivalent "inherited" flag is propagated to all
1217 * tracking servers. Maintenance mode disables health checks (but not agent
1218 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001219 * is done. If <cause> is non-null, it will be displayed at the end of the log
1220 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001221 *
1222 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001223 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001224void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001225{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001226 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001227
1228 if (!mode)
1229 return;
1230
1231 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001232 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001233 return;
1234
Emeric Brun52a91d32017-08-31 14:41:55 +02001235 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001236 if (cause)
1237 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1238
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001239 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001240 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001241
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001242 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001243 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1244 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001245 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001246
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001247 /* compute the inherited flag to propagate */
1248 if (mode & SRV_ADMF_MAINT)
1249 mode = SRV_ADMF_IMAINT;
1250 else if (mode & SRV_ADMF_DRAIN)
1251 mode = SRV_ADMF_IDRAIN;
1252
Emeric Brun9f0b4582017-10-23 14:39:51 +02001253 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001254 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001255 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001256 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001257 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001258}
1259
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001260/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1261 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1262 * than one flag at once. The equivalent "inherited" flag is propagated to all
1263 * tracking servers. Leaving maintenance mode re-enables health checks. When
1264 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001265 *
1266 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001267 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001268void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001269{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001270 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001271
1272 if (!mode)
1273 return;
1274
1275 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001276 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001277 return;
1278
Emeric Brun52a91d32017-08-31 14:41:55 +02001279 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001280
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001281 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001282 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001283
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001284 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001285 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1286 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001287 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001288
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001289 if (mode & SRV_ADMF_MAINT)
1290 mode = SRV_ADMF_IMAINT;
1291 else if (mode & SRV_ADMF_DRAIN)
1292 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001293
Emeric Brun9f0b4582017-10-23 14:39:51 +02001294 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001295 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001296 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001297 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001298 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001299}
1300
Willy Tarreau757478e2016-11-03 19:22:19 +01001301/* principle: propagate maint and drain to tracking servers. This is useful
1302 * upon startup so that inherited states are correct.
1303 */
1304static void srv_propagate_admin_state(struct server *srv)
1305{
1306 struct server *srv2;
1307
1308 if (!srv->trackers)
1309 return;
1310
1311 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001312 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001313 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001314 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001315
Emeric Brun52a91d32017-08-31 14:41:55 +02001316 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001317 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001318 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001319 }
1320}
1321
1322/* Compute and propagate the admin states for all servers in proxy <px>.
1323 * Only servers *not* tracking another one are considered, because other
1324 * ones will be handled when the server they track is visited.
1325 */
1326void srv_compute_all_admin_states(struct proxy *px)
1327{
1328 struct server *srv;
1329
1330 for (srv = px->srv; srv; srv = srv->next) {
1331 if (srv->track)
1332 continue;
1333 srv_propagate_admin_state(srv);
1334 }
1335}
1336
Willy Tarreaudff55432012-10-10 17:51:05 +02001337/* Note: must not be declared <const> as its list will be overwritten.
1338 * Please take care of keeping this list alphabetically sorted, doing so helps
1339 * all code contributors.
1340 * Optional keywords are also declared with a NULL ->parse() function so that
1341 * the config parser can report an appropriate error when a known keyword was
1342 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001343 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001344 */
1345static struct srv_kw_list srv_kws = { "ALL", { }, {
Frédéric Lécaille6e5e0d82017-03-20 16:30:18 +01001346 { "addr", srv_parse_addr, 1, 1 }, /* IP address to send health to or to probe from agent-check */
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001347 { "agent-check", srv_parse_agent_check, 0, 1 }, /* Enable an auxiliary agent check */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001348 { "backup", srv_parse_backup, 0, 1 }, /* Flag as backup server */
Frédéric Lécaille65aa3562017-03-14 11:20:13 +01001349 { "check", srv_parse_check, 0, 1 }, /* enable health checks */
Frédéric Lécaille25df8902017-03-10 14:04:31 +01001350 { "check-send-proxy", srv_parse_check_send_proxy, 0, 1 }, /* enable PROXY protocol for health checks */
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +01001351 { "cookie", srv_parse_cookie, 1, 1 }, /* Assign a cookie to the server */
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +01001352 { "disabled", srv_parse_disabled, 0, 1 }, /* Start the server in 'disabled' state */
1353 { "enabled", srv_parse_enabled, 0, 1 }, /* Start the server in 'enabled' state */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001354 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
Willy Tarreau9c538e02019-01-23 10:21:49 +01001355 { "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 +01001356 { "namespace", srv_parse_namespace, 1, 1 }, /* Namespace the server socket belongs to (if supported) */
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001357 { "no-agent-check", srv_parse_no_agent_check, 0, 1 }, /* Do not enable any auxiliary agent check */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001358 { "no-backup", srv_parse_no_backup, 0, 1 }, /* Flag as non-backup server */
Frédéric Lécaille65aa3562017-03-14 11:20:13 +01001359 { "no-check", srv_parse_no_check, 0, 1 }, /* disable health checks */
Frédéric Lécaille25df8902017-03-10 14:04:31 +01001360 { "no-check-send-proxy", srv_parse_no_check_send_proxy, 0, 1 }, /* disable PROXY protol for health checks */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001361 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1 }, /* Disable use of PROXY V1 protocol */
1362 { "no-send-proxy-v2", srv_parse_no_send_proxy_v2, 0, 1 }, /* Disable use of PROXY V2 protocol */
Frédéric Lécailleaeeb1c92019-07-04 14:19:06 +02001363 { "no-tfo", srv_parse_no_tfo, 0, 1 }, /* Disable use of TCP Fast Open */
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001364 { "non-stick", srv_parse_non_stick, 0, 1 }, /* Disable stick-table persistence */
Frédéric Lécaille547356e2017-03-15 08:55:39 +01001365 { "observe", srv_parse_observe, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
Olivier Houchard006e3102018-12-10 18:30:32 +01001366 { "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 +01001367 { "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 +02001368 { "proto", srv_parse_proto, 1, 1 }, /* Set the proto to use for all outgoing connections */
Emmanuel Hocdetf643b802018-02-01 15:20:32 +01001369 { "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 +01001370 { "redir", srv_parse_redir, 1, 1 }, /* Enable redirection mode */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001371 { "send-proxy", srv_parse_send_proxy, 0, 1 }, /* Enforce use of PROXY V1 protocol */
1372 { "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 +02001373 { "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 +01001374 { "stick", srv_parse_stick, 0, 1 }, /* Enable stick-table persistence */
Olivier Houchard1a9c25f2019-07-04 13:34:10 +02001375 { "tfo", srv_parse_tfo, 0, 1 }, /* enable TCP Fast Open of server */
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001376 { "track", srv_parse_track, 1, 1 }, /* Set the current state of the server, tracking another one */
Alexander Liu2a54bb72019-05-22 19:44:48 +08001377 { "socks4", srv_parse_socks4, 1, 1 }, /* Set the socks4 proxy of the server*/
1378 { "check-via-socks4", srv_parse_check_via_socks4, 0, 1 }, /* enable socks4 proxy for health checks */
Willy Tarreaudff55432012-10-10 17:51:05 +02001379 { NULL, NULL, 0 },
1380}};
1381
Willy Tarreau0108d902018-11-25 19:14:37 +01001382INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001383
Willy Tarreau004e0452013-11-21 11:22:01 +01001384/* Recomputes the server's eweight based on its state, uweight, the current time,
1385 * and the proxy's algorihtm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001386 * state is automatically disabled if the time is elapsed. If <must_update> is
1387 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001388 *
1389 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001390 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001391void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001392{
1393 struct proxy *px = sv->proxy;
1394 unsigned w;
1395
1396 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1397 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001398 if (sv->next_state == SRV_ST_STARTING)
1399 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001400 }
1401
1402 /* We must take care of not pushing the server to full throttle during slow starts.
1403 * It must also start immediately, at least at the minimal step when leaving maintenance.
1404 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001405 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001406 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1407 else
1408 w = px->lbprm.wdiv;
1409
Emeric Brun52a91d32017-08-31 14:41:55 +02001410 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001411
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001412 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001413 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001414 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001415}
1416
Willy Tarreaubaaee002006-06-26 02:48:02 +02001417/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001418 * Parses weight_str and configures sv accordingly.
1419 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001420 *
1421 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001422 */
1423const char *server_parse_weight_change_request(struct server *sv,
1424 const char *weight_str)
1425{
1426 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001427 long int w;
1428 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001429
1430 px = sv->proxy;
1431
1432 /* if the weight is terminated with '%', it is set relative to
1433 * the initial weight, otherwise it is absolute.
1434 */
1435 if (!*weight_str)
1436 return "Require <weight> or <weight%>.\n";
1437
Simon Hormanb796afa2013-02-12 10:45:53 +09001438 w = strtol(weight_str, &end, 10);
1439 if (end == weight_str)
1440 return "Empty weight string empty or preceded by garbage";
1441 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001442 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001443 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001444 /* Avoid integer overflow */
1445 if (w > 25600)
1446 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001447 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001448 if (w > 256)
1449 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001450 }
1451 else if (w < 0 || w > 256)
1452 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001453 else if (end[0] != '\0')
1454 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001455
1456 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1457 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1458
1459 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001460 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001461
1462 return NULL;
1463}
1464
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001465/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001466 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1467 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001468 * Returns:
1469 * - error string on error
1470 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001471 *
1472 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001473 */
1474const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001475 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001476{
1477 unsigned char ip[INET6_ADDRSTRLEN];
1478
1479 if (inet_pton(AF_INET6, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001480 update_server_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001481 return NULL;
1482 }
1483 if (inet_pton(AF_INET, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001484 update_server_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001485 return NULL;
1486 }
1487
1488 return "Could not understand IP address format.\n";
1489}
1490
Willy Tarreau46b7f532018-08-21 11:54:26 +02001491/*
1492 * Must be called with the server lock held.
1493 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001494const char *server_parse_maxconn_change_request(struct server *sv,
1495 const char *maxconn_str)
1496{
1497 long int v;
1498 char *end;
1499
1500 if (!*maxconn_str)
1501 return "Require <maxconn>.\n";
1502
1503 v = strtol(maxconn_str, &end, 10);
1504 if (end == maxconn_str)
1505 return "maxconn string empty or preceded by garbage";
1506 else if (end[0] != '\0')
1507 return "Trailing garbage in maxconn string";
1508
1509 if (sv->maxconn == sv->minconn) { // static maxconn
1510 sv->maxconn = sv->minconn = v;
1511 } else { // dynamic maxconn
1512 sv->maxconn = v;
1513 }
1514
1515 if (may_dequeue_tasks(sv, sv->proxy))
1516 process_srv_queue(sv);
1517
1518 return NULL;
1519}
1520
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001521#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001522static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1523 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001524{
1525 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001526 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001527 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001528 NULL,
1529 };
1530
1531 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001532 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001533
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001534 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args);
1535}
1536
1537static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1538{
1539 struct sample_expr *expr;
1540
1541 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 +01001542 if (!expr) {
1543 memprintf(err, "error detected while parsing sni expression : %s", *err);
1544 return ERR_ALERT | ERR_FATAL;
1545 }
1546
1547 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1548 memprintf(err, "error detected while parsing sni expression : "
1549 " fetch method '%s' extracts information from '%s', "
1550 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001551 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001552 return ERR_ALERT | ERR_FATAL;
1553 }
1554
1555 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1556 release_sample_expr(newsrv->ssl_ctx.sni);
1557 newsrv->ssl_ctx.sni = expr;
1558
1559 return 0;
1560}
1561#endif
1562
1563static void display_parser_err(const char *file, int linenum, char **args, int cur_arg, char **err)
1564{
1565 if (err && *err) {
1566 indent_msg(err, 2);
Christopher Faulet767a84b2017-11-24 16:50:31 +01001567 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], *err);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001568 }
1569 else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001570 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while processing '%s'.\n",
1571 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001572}
1573
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001574static void srv_conn_src_sport_range_cpy(struct server *srv,
1575 struct server *src)
1576{
1577 int range_sz;
1578
1579 range_sz = src->conn_src.sport_range->size;
1580 if (range_sz > 0) {
1581 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1582 if (srv->conn_src.sport_range != NULL) {
1583 int i;
1584
1585 for (i = 0; i < range_sz; i++) {
1586 srv->conn_src.sport_range->ports[i] =
1587 src->conn_src.sport_range->ports[i];
1588 }
1589 }
1590 }
1591}
1592
1593/*
1594 * Copy <src> server connection source settings to <srv> server everything needed.
1595 */
1596static void srv_conn_src_cpy(struct server *srv, struct server *src)
1597{
1598 srv->conn_src.opts = src->conn_src.opts;
1599 srv->conn_src.source_addr = src->conn_src.source_addr;
1600
1601 /* Source port range copy. */
1602 if (src->conn_src.sport_range != NULL)
1603 srv_conn_src_sport_range_cpy(srv, src);
1604
1605#ifdef CONFIG_HAP_TRANSPARENT
1606 if (src->conn_src.bind_hdr_name != NULL) {
1607 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1608 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1609 }
1610 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1611 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1612#endif
1613 if (src->conn_src.iface_name != NULL)
1614 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1615}
1616
1617/*
1618 * Copy <src> server SSL settings to <srv> server allocating
1619 * everything needed.
1620 */
1621#if defined(USE_OPENSSL)
1622static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1623{
1624 if (src->ssl_ctx.ca_file != NULL)
1625 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1626 if (src->ssl_ctx.crl_file != NULL)
1627 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
1628 if (src->ssl_ctx.client_crt != NULL)
1629 srv->ssl_ctx.client_crt = strdup(src->ssl_ctx.client_crt);
1630
1631 srv->ssl_ctx.verify = src->ssl_ctx.verify;
1632
1633 if (src->ssl_ctx.verify_host != NULL)
1634 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
1635 if (src->ssl_ctx.ciphers != NULL)
1636 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin770bc8a2020-04-22 11:40:18 +02001637 if (src->ssl_ctx.options)
1638 srv->ssl_ctx.options = src->ssl_ctx.options;
1639 if (src->ssl_ctx.methods.flags)
1640 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
1641 if (src->ssl_ctx.methods.min)
1642 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
1643 if (src->ssl_ctx.methods.max)
1644 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
1645
Willy Tarreau5db847a2019-05-09 14:13:35 +02001646#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02001647 if (src->ssl_ctx.ciphersuites != NULL)
1648 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
1649#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001650 if (src->sni_expr != NULL)
1651 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01001652
1653#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
1654 if (src->ssl_ctx.alpn_str) {
1655 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
1656 if (srv->ssl_ctx.alpn_str) {
1657 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
1658 src->ssl_ctx.alpn_len);
1659 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
1660 }
1661 }
1662#endif
1663#ifdef OPENSSL_NPN_NEGOTIATED
1664 if (src->ssl_ctx.npn_str) {
1665 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
1666 if (srv->ssl_ctx.npn_str) {
1667 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
1668 src->ssl_ctx.npn_len);
1669 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
1670 }
1671 }
1672#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001673}
1674#endif
1675
1676/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001677 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001678 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001679 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001680 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001681static int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001682{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001683 char *hostname_dn;
1684 int hostname_len, hostname_dn_len;
1685
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001686 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001687 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001688
Christopher Faulet67957bd2017-09-27 11:00:59 +02001689 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001690 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001691 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
1692 hostname_dn, trash.size);
1693 if (hostname_dn_len == -1)
1694 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001695
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001696
Christopher Faulet67957bd2017-09-27 11:00:59 +02001697 free(srv->hostname);
1698 free(srv->hostname_dn);
1699 srv->hostname = strdup(hostname);
1700 srv->hostname_dn = strdup(hostname_dn);
1701 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001702 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001703 goto err;
1704
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001705 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001706
1707 err:
Christopher Faulet67957bd2017-09-27 11:00:59 +02001708 free(srv->hostname); srv->hostname = NULL;
1709 free(srv->hostname_dn); srv->hostname_dn = NULL;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001710 return -1;
1711}
1712
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001713/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001714 * Copy <src> server settings to <srv> server allocating
1715 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001716 * This function is not supposed to be called at any time, but only
1717 * during server settings parsing or during server allocations from
1718 * a server template, and just after having calloc()'ed a new server.
1719 * So, <src> may only be a default server (when parsing server settings)
1720 * or a server template (during server allocations from a server template).
1721 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
1722 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001723 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001724static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001725{
1726 /* Connection source settings copy */
1727 srv_conn_src_cpy(srv, src);
1728
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001729 if (srv_tmpl) {
1730 srv->addr = src->addr;
1731 srv->svc_port = src->svc_port;
1732 }
1733
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001734 srv->pp_opts = src->pp_opts;
1735 if (src->rdr_pfx != NULL) {
1736 srv->rdr_pfx = strdup(src->rdr_pfx);
1737 srv->rdr_len = src->rdr_len;
1738 }
1739 if (src->cookie != NULL) {
1740 srv->cookie = strdup(src->cookie);
1741 srv->cklen = src->cklen;
1742 }
1743 srv->use_ssl = src->use_ssl;
Willy Tarreaufb389562019-12-11 15:43:45 +01001744 srv->check.addr = src->check.addr;
1745 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001746 srv->check.use_ssl = src->check.use_ssl;
1747 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01001748 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01001749 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05001750 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001751 /* Note: 'flags' field has potentially been already initialized. */
1752 srv->flags |= src->flags;
1753 srv->do_check = src->do_check;
1754 srv->do_agent = src->do_agent;
1755 if (srv->check.port)
1756 srv->flags |= SRV_F_CHECKPORT;
1757 srv->check.inter = src->check.inter;
1758 srv->check.fastinter = src->check.fastinter;
1759 srv->check.downinter = src->check.downinter;
1760 srv->agent.use_ssl = src->agent.use_ssl;
1761 srv->agent.port = src->agent.port;
1762 if (src->agent.send_string != NULL)
1763 srv->agent.send_string = strdup(src->agent.send_string);
1764 srv->agent.send_string_len = src->agent.send_string_len;
1765 srv->agent.inter = src->agent.inter;
1766 srv->agent.fastinter = src->agent.fastinter;
1767 srv->agent.downinter = src->agent.downinter;
1768 srv->maxqueue = src->maxqueue;
1769 srv->minconn = src->minconn;
1770 srv->maxconn = src->maxconn;
1771 srv->slowstart = src->slowstart;
1772 srv->observe = src->observe;
1773 srv->onerror = src->onerror;
1774 srv->onmarkeddown = src->onmarkeddown;
1775 srv->onmarkedup = src->onmarkedup;
1776 if (src->trackit != NULL)
1777 srv->trackit = strdup(src->trackit);
1778 srv->consecutive_errors_limit = src->consecutive_errors_limit;
1779 srv->uweight = srv->iweight = src->iweight;
1780
1781 srv->check.send_proxy = src->check.send_proxy;
1782 /* health: up, but will fall down at first failure */
1783 srv->check.rise = srv->check.health = src->check.rise;
1784 srv->check.fall = src->check.fall;
1785
1786 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001787 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
1788 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
1789 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001790 srv->check.state |= CHK_ST_PAUSED;
1791 srv->check.health = 0;
1792 }
1793
1794 /* health: up but will fall down at first failure */
1795 srv->agent.rise = srv->agent.health = src->agent.rise;
1796 srv->agent.fall = src->agent.fall;
1797
1798 if (src->resolvers_id != NULL)
1799 srv->resolvers_id = strdup(src->resolvers_id);
1800 srv->dns_opts.family_prio = src->dns_opts.family_prio;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001801 srv->dns_opts.accept_duplicate_ip = src->dns_opts.accept_duplicate_ip;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001802 if (srv->dns_opts.family_prio == AF_UNSPEC)
1803 srv->dns_opts.family_prio = AF_INET6;
1804 memcpy(srv->dns_opts.pref_net,
1805 src->dns_opts.pref_net,
1806 sizeof srv->dns_opts.pref_net);
1807 srv->dns_opts.pref_net_nb = src->dns_opts.pref_net_nb;
1808
1809 srv->init_addr_methods = src->init_addr_methods;
1810 srv->init_addr = src->init_addr;
1811#if defined(USE_OPENSSL)
1812 srv_ssl_settings_cpy(srv, src);
1813#endif
1814#ifdef TCP_USER_TIMEOUT
1815 srv->tcp_ut = src->tcp_ut;
1816#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001817 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001818 srv->pool_purge_delay = src->pool_purge_delay;
Olivier Houchard006e3102018-12-10 18:30:32 +01001819 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01001820 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001821
Olivier Houchard8da5f982017-08-04 18:35:36 +02001822 if (srv_tmpl)
1823 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001824
1825 srv->check.via_socks4 = src->check.via_socks4;
1826 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001827}
1828
William Lallemand313bfd12018-10-26 14:47:32 +02001829struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001830{
1831 struct server *srv;
1832
1833 srv = calloc(1, sizeof *srv);
1834 if (!srv)
1835 return NULL;
1836
1837 srv->obj_type = OBJ_TYPE_SERVER;
1838 srv->proxy = proxy;
1839 LIST_INIT(&srv->actconns);
Patrick Hemmer0355dab2018-05-11 12:52:31 -04001840 srv->pendconns = EB_ROOT;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001841
Emeric Brun52a91d32017-08-31 14:41:55 +02001842 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001843 srv->last_change = now.tv_sec;
1844
1845 srv->check.status = HCHK_STATUS_INI;
1846 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01001847 srv->check.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001848 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
1849
1850 srv->agent.status = HCHK_STATUS_INI;
1851 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01001852 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001853 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
1854
Willy Tarreau975b1552019-06-06 16:25:55 +02001855 /* please don't put default server settings here, they are set in
1856 * init_default_instance().
1857 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001858 return srv;
1859}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001860
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001861#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1862static int server_sni_expr_init(const char *file, int linenum, char **args, int cur_arg,
1863 struct server *srv, struct proxy *proxy)
1864{
1865 int ret;
1866 char *err = NULL;
1867
1868 if (!srv->sni_expr)
1869 return 0;
1870
1871 ret = server_parse_sni_expr(srv, proxy, &err);
1872 if (!ret)
1873 return 0;
1874
1875 display_parser_err(file, linenum, args, cur_arg, &err);
1876 free(err);
1877
1878 return ret;
1879}
1880#endif
1881
1882/*
1883 * Server initializations finalization.
1884 * Initialize health check, agent check and SNI expression if enabled.
1885 * Must not be called for a default server instance.
1886 */
1887static int server_finalize_init(const char *file, int linenum, char **args, int cur_arg,
1888 struct server *srv, struct proxy *px)
1889{
Christopher Faulet1ebb12c2020-04-27 11:17:10 +02001890#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001891 int ret;
Christopher Faulet1ebb12c2020-04-27 11:17:10 +02001892#endif
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001893
Christopher Fauletc6e07702020-03-26 19:48:20 +01001894 if (srv->do_check && srv->trackit) {
1895 ha_alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1896 file, linenum);
1897 return ERR_ALERT | ERR_FATAL;
1898 }
1899
1900 if (srv->do_agent && !srv->agent.port) {
1901 ha_alert("parsing [%s:%d] : server %s does not have agent port. Agent check has been disabled.\n",
1902 file, linenum, srv->id);
1903 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001904 }
1905
1906#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1907 if ((ret = server_sni_expr_init(file, linenum, args, cur_arg, srv, px)) != 0)
1908 return ret;
1909#endif
1910
1911 if (srv->flags & SRV_F_BACKUP)
1912 px->srv_bck++;
1913 else
1914 px->srv_act++;
1915 srv_lb_commit_status(srv);
1916
1917 return 0;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001918err:
1919 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001920}
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001921
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001922/*
1923 * Parse as much as possible such a range string argument: low[-high]
1924 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
1925 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
1926 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
1927 * Returns 0 if succeeded, -1 if not.
1928 */
1929static int srv_tmpl_parse_range(struct server *srv, const char *arg, int *nb_low, int *nb_high)
1930{
1931 char *nb_high_arg;
1932
1933 *nb_high = 0;
1934 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001935 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001936
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001937 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001938 *nb_high_arg++ = '\0';
1939 *nb_high = atoi(nb_high_arg);
1940 }
1941 else {
1942 *nb_high += *nb_low;
1943 *nb_low = 1;
1944 }
1945
1946 if (*nb_low < 0 || *nb_high < *nb_low)
1947 return -1;
1948
1949 return 0;
1950}
1951
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001952static inline void srv_set_id_from_prefix(struct server *srv, const char *prefix, int nb)
1953{
1954 chunk_printf(&trash, "%s%d", prefix, nb);
1955 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001956 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001957}
1958
1959/*
1960 * Initialize as much as possible servers from <srv> server template.
1961 * Note that a server template is a special server with
1962 * a few different parameters than a server which has
1963 * been parsed mostly the same way as a server.
Joseph Herlant44466822018-11-15 08:57:51 -08001964 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001965 * 'srv' template included.
1966 */
1967static int server_template_init(struct server *srv, struct proxy *px)
1968{
1969 int i;
1970 struct server *newsrv;
1971
1972 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 +02001973 newsrv = new_server(px);
1974 if (!newsrv)
1975 goto err;
1976
Christopher Fauletfa31ae92020-11-02 22:04:55 +01001977 newsrv->conf.file = strdup(srv->conf.file);
1978 newsrv->conf.line = srv->conf.line;
1979
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001980 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001981 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001982#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1983 if (newsrv->sni_expr) {
1984 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
1985 if (!newsrv->ssl_ctx.sni)
1986 goto err;
1987 }
1988#endif
1989 /* Set this new server ID. */
1990 srv_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
1991
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001992 /* Linked backwards first. This will be restablished after parsing. */
1993 newsrv->next = px->srv;
1994 px->srv = newsrv;
1995 }
1996 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1997
1998 return i - srv->tmpl_info.nb_low;
1999
2000 err:
2001 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
2002 if (newsrv) {
2003#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
2004 release_sample_expr(newsrv->ssl_ctx.sni);
2005#endif
2006 free_check(&newsrv->agent);
2007 free_check(&newsrv->check);
2008 }
2009 free(newsrv);
2010 return i - srv->tmpl_info.nb_low;
2011}
2012
Emeric Brun33f0a732020-07-21 16:54:36 +02002013int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy,
2014 struct proxy *defproxy, int parse_addr, int in_peers_section, int initial_resolve)
Willy Tarreau272adea2014-03-31 10:39:59 +02002015{
2016 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002017 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002018 char *errmsg = NULL;
2019 int err_code = 0;
2020 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +02002021 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002022
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002023 if (!strcmp(args[0], "server") ||
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02002024 !strcmp(args[0], "peer") ||
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002025 !strcmp(args[0], "default-server") ||
2026 !strcmp(args[0], "server-template")) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002027 int cur_arg;
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01002028 int defsrv = (*args[0] == 'd');
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02002029 int srv = !defsrv && (*args[0] == 'p' || !strcmp(args[0], "server"));
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002030 int srv_tmpl = !defsrv && !srv;
2031 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002032
2033 if (!defsrv && curproxy == defproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002034 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002035 err_code |= ERR_ALERT | ERR_FATAL;
2036 goto out;
2037 }
2038 else if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL))
Olivier Houchard306e6532018-07-24 16:48:59 +02002039 err_code |= ERR_WARN;
Willy Tarreau272adea2014-03-31 10:39:59 +02002040
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002041 /* There is no mandatory first arguments for default server. */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002042 if (srv && parse_addr) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002043 if (!*args[2]) {
Frédéric Lécaille9b0d59d2020-04-03 09:43:47 +02002044 if (in_peers_section) {
2045 return 0;
2046 }
2047 else {
2048 /* 'server' line number of argument check. */
2049 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
2050 file, linenum, args[0]);
2051 err_code |= ERR_ALERT | ERR_FATAL;
2052 goto out;
2053 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002054 }
2055
2056 err = invalid_char(args[1]);
2057 }
2058 else if (srv_tmpl) {
2059 if (!*args[3]) {
2060 /* 'server-template' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002061 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 +02002062 file, linenum, args[0]);
2063 err_code |= ERR_ALERT | ERR_FATAL;
2064 goto out;
2065 }
2066
2067 err = invalid_prefix_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002068 }
2069
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002070 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002071 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 +02002072 file, linenum, *err, args[0], srv ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002073 err_code |= ERR_ALERT | ERR_FATAL;
2074 goto out;
2075 }
2076
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002077 cur_arg = 2;
2078 if (srv_tmpl) {
2079 /* Parse server-template <nb | range> arg. */
2080 if (srv_tmpl_parse_range(newsrv, args[cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002081 ha_alert("parsing [%s:%d] : Wrong %s number or range arg '%s'.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002082 file, linenum, args[0], args[cur_arg]);
2083 err_code |= ERR_ALERT | ERR_FATAL;
2084 goto out;
2085 }
2086 cur_arg++;
2087 }
2088
Willy Tarreau272adea2014-03-31 10:39:59 +02002089 if (!defsrv) {
2090 struct sockaddr_storage *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002091 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002092 struct protocol *proto;
2093
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002094 newsrv = new_server(curproxy);
2095 if (!newsrv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002096 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Willy Tarreau272adea2014-03-31 10:39:59 +02002097 err_code |= ERR_ALERT | ERR_ABORT;
2098 goto out;
2099 }
2100
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002101 if (srv_tmpl) {
2102 newsrv->tmpl_info.nb_low = tmpl_range_low;
2103 newsrv->tmpl_info.nb_high = tmpl_range_high;
2104 }
2105
Willy Tarreau272adea2014-03-31 10:39:59 +02002106 /* the servers are linked backwards first */
2107 newsrv->next = curproxy->srv;
2108 curproxy->srv = newsrv;
Willy Tarreau272adea2014-03-31 10:39:59 +02002109 newsrv->conf.file = strdup(file);
2110 newsrv->conf.line = linenum;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002111 /* Note: for a server template, its id is its prefix.
2112 * This is a temporary id which will be used for server allocations to come
2113 * after parsing.
2114 */
2115 if (srv)
2116 newsrv->id = strdup(args[1]);
2117 else
2118 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002119
2120 /* several ways to check the port component :
2121 * - IP => port=+0, relative (IPv4 only)
2122 * - IP: => port=+0, relative
2123 * - IP:N => port=N, absolute
2124 * - IP:+N => port=+N, relative
2125 * - IP:-N => port=-N, relative
2126 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002127 if (!parse_addr)
2128 goto skip_addr;
2129
Emeric Brun33f0a732020-07-21 16:54:36 +02002130 sk = str2sa_range(args[cur_arg], &port, &port1, &port2, &errmsg, NULL, &fqdn, initial_resolve);
Willy Tarreau272adea2014-03-31 10:39:59 +02002131 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002132 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau272adea2014-03-31 10:39:59 +02002133 err_code |= ERR_ALERT | ERR_FATAL;
2134 goto out;
2135 }
2136
2137 proto = protocol_by_family(sk->ss_family);
Willy Tarreau9698f4b2017-01-06 18:42:57 +01002138 if (!fqdn && (!proto || !proto->connect)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002139 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002140 file, linenum, args[0], args[1]);
2141 err_code |= ERR_ALERT | ERR_FATAL;
2142 goto out;
2143 }
2144
2145 if (!port1 || !port2) {
2146 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +02002147 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +02002148 }
2149 else if (port1 != port2) {
2150 /* port range */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002151 ha_alert("parsing [%s:%d] : '%s %s' : port ranges are not allowed in '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002152 file, linenum, args[0], args[1], args[2]);
2153 err_code |= ERR_ALERT | ERR_FATAL;
2154 goto out;
2155 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002156
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002157 /* save hostname and create associated name resolution */
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002158 if (fqdn) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002159 if (fqdn[0] == '_') { /* SRV record */
Olivier Houchard8da5f982017-08-04 18:35:36 +02002160 /* Check if a SRV request already exists, and if not, create it */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002161 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2162 newsrv->srvrq = new_dns_srvrq(newsrv, fqdn);
2163 if (newsrv->srvrq == NULL) {
Olivier Houchard8da5f982017-08-04 18:35:36 +02002164 err_code |= ERR_ALERT | ERR_FATAL;
2165 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002166 }
2167 }
2168 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002169 ha_alert("parsing [%s:%d] : Can't create DNS resolution for server '%s'\n",
Christopher Faulet67957bd2017-09-27 11:00:59 +02002170 file, linenum, newsrv->id);
2171 err_code |= ERR_ALERT | ERR_FATAL;
2172 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002173 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002174 }
2175
Willy Tarreau272adea2014-03-31 10:39:59 +02002176 newsrv->addr = *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002177 newsrv->svc_port = port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002178
Olivier Houchard8da5f982017-08-04 18:35:36 +02002179 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002180 ha_alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002181 file, linenum, newsrv->addr.ss_family, args[cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002182 err_code |= ERR_ALERT | ERR_FATAL;
2183 goto out;
2184 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002185
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002186 cur_arg++;
2187 skip_addr:
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002188 /* Copy default server settings to new server settings. */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002189 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002190 HA_SPIN_INIT(&newsrv->lock);
Willy Tarreau272adea2014-03-31 10:39:59 +02002191 } else {
2192 newsrv = &curproxy->defsrv;
2193 cur_arg = 1;
Thierry Fournierada34842016-02-17 21:25:09 +01002194 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002195 newsrv->dns_opts.accept_duplicate_ip = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002196 }
2197
2198 while (*args[cur_arg]) {
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01002199 if (!strcmp(args[cur_arg], "agent-inter")) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002200 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02002201
2202 if (err == PARSE_TIME_OVER) {
2203 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).\n",
2204 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2205 err_code |= ERR_ALERT | ERR_FATAL;
2206 goto out;
2207 }
2208 else if (err == PARSE_TIME_UNDER) {
2209 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.\n",
2210 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2211 err_code |= ERR_ALERT | ERR_FATAL;
2212 goto out;
2213 }
2214 else if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002215 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'agent-inter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002216 file, linenum, *err, newsrv->id);
2217 err_code |= ERR_ALERT | ERR_FATAL;
2218 goto out;
2219 }
2220 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002221 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002222 file, linenum, val, args[cur_arg], newsrv->id);
2223 err_code |= ERR_ALERT | ERR_FATAL;
2224 goto out;
2225 }
2226 newsrv->agent.inter = val;
2227 cur_arg += 2;
2228 }
Misiekea849332017-01-09 09:39:51 +01002229 else if (!strcmp(args[cur_arg], "agent-addr")) {
2230 if(str2ip(args[cur_arg + 1], &newsrv->agent.addr) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002231 ha_alert("parsing agent-addr failed. Check if %s is correct address.\n", args[cur_arg + 1]);
Misiekea849332017-01-09 09:39:51 +01002232 goto out;
2233 }
2234
2235 cur_arg += 2;
2236 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002237 else if (!strcmp(args[cur_arg], "agent-port")) {
2238 global.maxsock++;
2239 newsrv->agent.port = atol(args[cur_arg + 1]);
2240 cur_arg += 2;
2241 }
James Brown55f9ff12015-10-21 18:19:05 -07002242 else if (!strcmp(args[cur_arg], "agent-send")) {
2243 global.maxsock++;
2244 free(newsrv->agent.send_string);
2245 newsrv->agent.send_string_len = strlen(args[cur_arg + 1]);
2246 newsrv->agent.send_string = calloc(1, newsrv->agent.send_string_len + 1);
2247 memcpy(newsrv->agent.send_string, args[cur_arg + 1], newsrv->agent.send_string_len);
2248 cur_arg += 2;
2249 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002250 else if (!strcmp(args[cur_arg], "init-addr")) {
2251 char *p, *end;
2252 int done;
Willy Tarreau4310d362016-11-02 15:05:56 +01002253 struct sockaddr_storage sa;
Baptiste Assmann25938272016-09-21 20:26:16 +02002254
2255 newsrv->init_addr_methods = 0;
2256 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
2257
2258 for (p = args[cur_arg + 1]; *p; p = end) {
2259 /* cut on next comma */
2260 for (end = p; *end && *end != ','; end++);
2261 if (*end)
2262 *(end++) = 0;
2263
Willy Tarreau4310d362016-11-02 15:05:56 +01002264 memset(&sa, 0, sizeof(sa));
Baptiste Assmann25938272016-09-21 20:26:16 +02002265 if (!strcmp(p, "libc")) {
2266 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
2267 }
2268 else if (!strcmp(p, "last")) {
2269 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
2270 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01002271 else if (!strcmp(p, "none")) {
2272 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
2273 }
Willy Tarreau4310d362016-11-02 15:05:56 +01002274 else if (str2ip2(p, &sa, 0)) {
2275 if (is_addr(&newsrv->init_addr)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002276 ha_alert("parsing [%s:%d]: '%s' : initial address already specified, cannot add '%s'.\n",
Willy Tarreau4310d362016-11-02 15:05:56 +01002277 file, linenum, args[cur_arg], p);
2278 err_code |= ERR_ALERT | ERR_FATAL;
2279 goto out;
2280 }
2281 newsrv->init_addr = sa;
2282 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
2283 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002284 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002285 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 +02002286 file, linenum, args[cur_arg], p);
2287 err_code |= ERR_ALERT | ERR_FATAL;
2288 goto out;
2289 }
2290 if (!done) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002291 ha_alert("parsing [%s:%d]: '%s' : too many init-addr methods when trying to add '%s'\n",
Baptiste Assmann25938272016-09-21 20:26:16 +02002292 file, linenum, args[cur_arg], p);
2293 err_code |= ERR_ALERT | ERR_FATAL;
2294 goto out;
2295 }
2296 }
2297 cur_arg += 2;
2298 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002299 else if (!strcmp(args[cur_arg], "resolvers")) {
Frédéric Lécailledaa2fe62017-04-20 12:17:50 +02002300 free(newsrv->resolvers_id);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002301 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
2302 cur_arg += 2;
2303 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002304 else if (!strcmp(args[cur_arg], "resolve-opts")) {
2305 char *p, *end;
2306
2307 for (p = args[cur_arg + 1]; *p; p = end) {
2308 /* cut on next comma */
2309 for (end = p; *end && *end != ','; end++);
2310 if (*end)
2311 *(end++) = 0;
2312
2313 if (!strcmp(p, "allow-dup-ip")) {
2314 newsrv->dns_opts.accept_duplicate_ip = 1;
2315 }
2316 else if (!strcmp(p, "prevent-dup-ip")) {
2317 newsrv->dns_opts.accept_duplicate_ip = 0;
2318 }
2319 else {
2320 ha_alert("parsing [%s:%d]: '%s' : unknown resolve-opts option '%s', supported methods are 'allow-dup-ip' and 'prevent-dup-ip'.\n",
2321 file, linenum, args[cur_arg], p);
2322 err_code |= ERR_ALERT | ERR_FATAL;
2323 goto out;
2324 }
2325 }
2326
2327 cur_arg += 2;
2328 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002329 else if (!strcmp(args[cur_arg], "resolve-prefer")) {
2330 if (!strcmp(args[cur_arg + 1], "ipv4"))
Thierry Fournierada34842016-02-17 21:25:09 +01002331 newsrv->dns_opts.family_prio = AF_INET;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002332 else if (!strcmp(args[cur_arg + 1], "ipv6"))
Thierry Fournierada34842016-02-17 21:25:09 +01002333 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002334 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002335 ha_alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002336 file, linenum, args[cur_arg]);
2337 err_code |= ERR_ALERT | ERR_FATAL;
2338 goto out;
2339 }
2340 cur_arg += 2;
2341 }
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002342 else if (!strcmp(args[cur_arg], "resolve-net")) {
2343 char *p, *e;
2344 unsigned char mask;
2345 struct dns_options *opt;
2346
2347 if (!args[cur_arg + 1] || args[cur_arg + 1][0] == '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002348 ha_alert("parsing [%s:%d]: '%s' expects a list of networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002349 file, linenum, args[cur_arg]);
2350 err_code |= ERR_ALERT | ERR_FATAL;
2351 goto out;
2352 }
2353
2354 opt = &newsrv->dns_opts;
2355
2356 /* Split arguments by comma, and convert it from ipv4 or ipv6
2357 * string network in in_addr or in6_addr.
2358 */
2359 p = args[cur_arg + 1];
2360 e = p;
2361 while (*p != '\0') {
Joseph Herlant44466822018-11-15 08:57:51 -08002362 /* If no room available, return error. */
David Carlierd10025c2016-04-08 10:26:44 +01002363 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002364 ha_alert("parsing [%s:%d]: '%s' exceed %d networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002365 file, linenum, args[cur_arg], SRV_MAX_PREF_NET);
2366 err_code |= ERR_ALERT | ERR_FATAL;
2367 goto out;
2368 }
2369 /* look for end or comma. */
2370 while (*e != ',' && *e != '\0')
2371 e++;
2372 if (*e == ',') {
2373 *e = '\0';
2374 e++;
2375 }
2376 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
2377 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
2378 /* Try to convert input string from ipv4 or ipv6 network. */
2379 opt->pref_net[opt->pref_net_nb].family = AF_INET;
2380 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
2381 &mask)) {
2382 /* Try to convert input string from ipv6 network. */
2383 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
2384 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
2385 } else {
2386 /* All network conversions fail, retrun error. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002387 ha_alert("parsing [%s:%d]: '%s': invalid network '%s'.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002388 file, linenum, args[cur_arg], p);
2389 err_code |= ERR_ALERT | ERR_FATAL;
2390 goto out;
2391 }
2392 opt->pref_net_nb++;
2393 p = e;
2394 }
2395
2396 cur_arg += 2;
2397 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002398 else if (!strcmp(args[cur_arg], "rise")) {
2399 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002400 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002401 file, linenum, args[cur_arg]);
2402 err_code |= ERR_ALERT | ERR_FATAL;
2403 goto out;
2404 }
2405
2406 newsrv->check.rise = atol(args[cur_arg + 1]);
2407 if (newsrv->check.rise <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002408 ha_alert("parsing [%s:%d]: '%s' has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002409 file, linenum, args[cur_arg]);
2410 err_code |= ERR_ALERT | ERR_FATAL;
2411 goto out;
2412 }
2413
2414 if (newsrv->check.health)
2415 newsrv->check.health = newsrv->check.rise;
2416 cur_arg += 2;
2417 }
2418 else if (!strcmp(args[cur_arg], "fall")) {
2419 newsrv->check.fall = atol(args[cur_arg + 1]);
2420
2421 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002422 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002423 file, linenum, args[cur_arg]);
2424 err_code |= ERR_ALERT | ERR_FATAL;
2425 goto out;
2426 }
2427
2428 if (newsrv->check.fall <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002429 ha_alert("parsing [%s:%d]: '%s' has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002430 file, linenum, args[cur_arg]);
2431 err_code |= ERR_ALERT | ERR_FATAL;
2432 goto out;
2433 }
2434
2435 cur_arg += 2;
2436 }
2437 else if (!strcmp(args[cur_arg], "inter")) {
2438 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02002439
2440 if (err == PARSE_TIME_OVER) {
2441 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).\n",
2442 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2443 err_code |= ERR_ALERT | ERR_FATAL;
2444 goto out;
2445 }
2446 else if (err == PARSE_TIME_UNDER) {
2447 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.\n",
2448 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2449 err_code |= ERR_ALERT | ERR_FATAL;
2450 goto out;
2451 }
2452 else if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002453 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'inter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002454 file, linenum, *err, newsrv->id);
2455 err_code |= ERR_ALERT | ERR_FATAL;
2456 goto out;
2457 }
2458 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002459 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002460 file, linenum, val, args[cur_arg], newsrv->id);
2461 err_code |= ERR_ALERT | ERR_FATAL;
2462 goto out;
2463 }
2464 newsrv->check.inter = val;
2465 cur_arg += 2;
2466 }
2467 else if (!strcmp(args[cur_arg], "fastinter")) {
2468 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02002469
2470 if (err == PARSE_TIME_OVER) {
2471 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).\n",
2472 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2473 err_code |= ERR_ALERT | ERR_FATAL;
2474 goto out;
2475 }
2476 else if (err == PARSE_TIME_UNDER) {
2477 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.\n",
2478 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2479 err_code |= ERR_ALERT | ERR_FATAL;
2480 goto out;
2481 }
2482 else if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002483 ha_alert("parsing [%s:%d]: unexpected character '%c' in 'fastinter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002484 file, linenum, *err, newsrv->id);
2485 err_code |= ERR_ALERT | ERR_FATAL;
2486 goto out;
2487 }
2488 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002489 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002490 file, linenum, val, args[cur_arg], newsrv->id);
2491 err_code |= ERR_ALERT | ERR_FATAL;
2492 goto out;
2493 }
2494 newsrv->check.fastinter = val;
2495 cur_arg += 2;
2496 }
2497 else if (!strcmp(args[cur_arg], "downinter")) {
2498 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02002499
2500 if (err == PARSE_TIME_OVER) {
2501 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).\n",
2502 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2503 err_code |= ERR_ALERT | ERR_FATAL;
2504 goto out;
2505 }
2506 else if (err == PARSE_TIME_UNDER) {
2507 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.\n",
2508 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2509 err_code |= ERR_ALERT | ERR_FATAL;
2510 goto out;
2511 }
2512 else if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002513 ha_alert("parsing [%s:%d]: unexpected character '%c' in 'downinter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002514 file, linenum, *err, newsrv->id);
2515 err_code |= ERR_ALERT | ERR_FATAL;
2516 goto out;
2517 }
2518 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002519 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002520 file, linenum, val, args[cur_arg], newsrv->id);
2521 err_code |= ERR_ALERT | ERR_FATAL;
2522 goto out;
2523 }
2524 newsrv->check.downinter = val;
2525 cur_arg += 2;
2526 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002527 else if (!strcmp(args[cur_arg], "port")) {
2528 newsrv->check.port = atol(args[cur_arg + 1]);
Baptiste Assmann6b453f12016-08-11 23:12:18 +02002529 newsrv->flags |= SRV_F_CHECKPORT;
Willy Tarreau272adea2014-03-31 10:39:59 +02002530 cur_arg += 2;
2531 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002532 else if (!strcmp(args[cur_arg], "weight")) {
2533 int w;
2534 w = atol(args[cur_arg + 1]);
2535 if (w < 0 || w > SRV_UWGHT_MAX) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002536 ha_alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002537 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
2538 err_code |= ERR_ALERT | ERR_FATAL;
2539 goto out;
2540 }
2541 newsrv->uweight = newsrv->iweight = w;
2542 cur_arg += 2;
2543 }
2544 else if (!strcmp(args[cur_arg], "minconn")) {
2545 newsrv->minconn = atol(args[cur_arg + 1]);
2546 cur_arg += 2;
2547 }
2548 else if (!strcmp(args[cur_arg], "maxconn")) {
2549 newsrv->maxconn = atol(args[cur_arg + 1]);
2550 cur_arg += 2;
2551 }
2552 else if (!strcmp(args[cur_arg], "maxqueue")) {
2553 newsrv->maxqueue = atol(args[cur_arg + 1]);
2554 cur_arg += 2;
2555 }
2556 else if (!strcmp(args[cur_arg], "slowstart")) {
2557 /* slowstart is stored in seconds */
2558 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02002559
2560 if (err == PARSE_TIME_OVER) {
2561 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).\n",
2562 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2563 err_code |= ERR_ALERT | ERR_FATAL;
2564 goto out;
2565 }
2566 else if (err == PARSE_TIME_UNDER) {
2567 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.\n",
2568 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2569 err_code |= ERR_ALERT | ERR_FATAL;
2570 goto out;
2571 }
2572 else if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002573 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002574 file, linenum, *err, newsrv->id);
2575 err_code |= ERR_ALERT | ERR_FATAL;
2576 goto out;
2577 }
2578 newsrv->slowstart = (val + 999) / 1000;
2579 cur_arg += 2;
2580 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002581 else if (!strcmp(args[cur_arg], "on-error")) {
2582 if (!strcmp(args[cur_arg + 1], "fastinter"))
2583 newsrv->onerror = HANA_ONERR_FASTINTER;
2584 else if (!strcmp(args[cur_arg + 1], "fail-check"))
2585 newsrv->onerror = HANA_ONERR_FAILCHK;
2586 else if (!strcmp(args[cur_arg + 1], "sudden-death"))
2587 newsrv->onerror = HANA_ONERR_SUDDTH;
2588 else if (!strcmp(args[cur_arg + 1], "mark-down"))
2589 newsrv->onerror = HANA_ONERR_MARKDWN;
2590 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002591 ha_alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
Willy Tarreau272adea2014-03-31 10:39:59 +02002592 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
2593 file, linenum, args[cur_arg], args[cur_arg + 1]);
2594 err_code |= ERR_ALERT | ERR_FATAL;
2595 goto out;
2596 }
2597
2598 cur_arg += 2;
2599 }
2600 else if (!strcmp(args[cur_arg], "on-marked-down")) {
2601 if (!strcmp(args[cur_arg + 1], "shutdown-sessions"))
2602 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
2603 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002604 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002605 file, linenum, args[cur_arg], args[cur_arg + 1]);
2606 err_code |= ERR_ALERT | ERR_FATAL;
2607 goto out;
2608 }
2609
2610 cur_arg += 2;
2611 }
2612 else if (!strcmp(args[cur_arg], "on-marked-up")) {
2613 if (!strcmp(args[cur_arg + 1], "shutdown-backup-sessions"))
2614 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
2615 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002616 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002617 file, linenum, args[cur_arg], args[cur_arg + 1]);
2618 err_code |= ERR_ALERT | ERR_FATAL;
2619 goto out;
2620 }
2621
2622 cur_arg += 2;
2623 }
2624 else if (!strcmp(args[cur_arg], "error-limit")) {
2625 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002626 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002627 file, linenum, args[cur_arg]);
2628 err_code |= ERR_ALERT | ERR_FATAL;
2629 goto out;
2630 }
2631
2632 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
2633
2634 if (newsrv->consecutive_errors_limit <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002635 ha_alert("parsing [%s:%d]: %s has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002636 file, linenum, args[cur_arg]);
2637 err_code |= ERR_ALERT | ERR_FATAL;
2638 goto out;
2639 }
2640 cur_arg += 2;
2641 }
Frédéric Lécaille8d083ed2017-04-14 15:19:56 +02002642 else if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside: needs "source" first */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002643 ha_alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002644 file, linenum, "usesrc", "source");
2645 err_code |= ERR_ALERT | ERR_FATAL;
2646 goto out;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002647 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002648 else {
2649 static int srv_dumped;
2650 struct srv_kw *kw;
2651 char *err;
2652
2653 kw = srv_find_kw(args[cur_arg]);
2654 if (kw) {
2655 char *err = NULL;
2656 int code;
2657
2658 if (!kw->parse) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002659 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 +02002660 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002661 if (kw->skip != -1)
2662 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002663 err_code |= ERR_ALERT | ERR_FATAL;
2664 goto out;
2665 }
2666
2667 if (defsrv && !kw->default_ok) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002668 ha_alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002669 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002670 if (kw->skip != -1)
2671 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002672 err_code |= ERR_ALERT;
2673 continue;
2674 }
2675
2676 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
2677 err_code |= code;
2678
2679 if (code) {
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002680 display_parser_err(file, linenum, args, cur_arg, &err);
Willy Tarreau272adea2014-03-31 10:39:59 +02002681 if (code & ERR_FATAL) {
2682 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002683 if (kw->skip != -1)
2684 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002685 goto out;
2686 }
2687 }
2688 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002689 if (kw->skip != -1)
2690 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002691 continue;
2692 }
2693
2694 err = NULL;
2695 if (!srv_dumped) {
2696 srv_dump_kws(&err);
2697 indent_msg(&err, 4);
2698 srv_dumped = 1;
2699 }
2700
Christopher Faulet767a84b2017-11-24 16:50:31 +01002701 ha_alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002702 file, linenum, args[0], args[1], args[cur_arg],
2703 err ? " Registered keywords :" : "", err ? err : "");
2704 free(err);
2705
2706 err_code |= ERR_ALERT | ERR_FATAL;
2707 goto out;
2708 }
2709 }
2710
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002711 if (!defsrv)
2712 err_code |= server_finalize_init(file, linenum, args, cur_arg, newsrv, curproxy);
2713 if (err_code & ERR_FATAL)
2714 goto out;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002715 if (srv_tmpl)
2716 server_template_init(newsrv, curproxy);
Willy Tarreau272adea2014-03-31 10:39:59 +02002717 }
Willy Tarreau07101d52015-09-08 16:16:35 +02002718 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002719 return 0;
2720
2721 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02002722 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002723 free(errmsg);
2724 return err_code;
2725}
2726
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002727/* Returns a pointer to the first server matching either id <id>.
2728 * NULL is returned if no match is found.
2729 * the lookup is performed in the backend <bk>
2730 */
2731struct server *server_find_by_id(struct proxy *bk, int id)
2732{
2733 struct eb32_node *eb32;
2734 struct server *curserver;
2735
2736 if (!bk || (id ==0))
2737 return NULL;
2738
2739 /* <bk> has no backend capabilities, so it can't have a server */
2740 if (!(bk->cap & PR_CAP_BE))
2741 return NULL;
2742
2743 curserver = NULL;
2744
2745 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2746 if (eb32)
2747 curserver = container_of(eb32, struct server, conf.id);
2748
2749 return curserver;
2750}
2751
2752/* Returns a pointer to the first server matching either name <name>, or id
2753 * if <name> starts with a '#'. NULL is returned if no match is found.
2754 * the lookup is performed in the backend <bk>
2755 */
2756struct server *server_find_by_name(struct proxy *bk, const char *name)
2757{
2758 struct server *curserver;
2759
2760 if (!bk || !name)
2761 return NULL;
2762
2763 /* <bk> has no backend capabilities, so it can't have a server */
2764 if (!(bk->cap & PR_CAP_BE))
2765 return NULL;
2766
2767 curserver = NULL;
2768 if (*name == '#') {
2769 curserver = server_find_by_id(bk, atoi(name + 1));
2770 if (curserver)
2771 return curserver;
2772 }
2773 else {
2774 curserver = bk->srv;
2775
2776 while (curserver && (strcmp(curserver->id, name) != 0))
2777 curserver = curserver->next;
2778
2779 if (curserver)
2780 return curserver;
2781 }
2782
2783 return NULL;
2784}
2785
2786struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2787{
2788 struct server *byname;
2789 struct server *byid;
2790
2791 if (!name && !id)
2792 return NULL;
2793
2794 if (diff)
2795 *diff = 0;
2796
2797 byname = byid = NULL;
2798
2799 if (name) {
2800 byname = server_find_by_name(bk, name);
2801 if (byname && (!id || byname->puid == id))
2802 return byname;
2803 }
2804
2805 /* remaining possibilities :
2806 * - name not set
2807 * - name set but not found
2808 * - name found but ID doesn't match
2809 */
2810 if (id) {
2811 byid = server_find_by_id(bk, id);
2812 if (byid) {
2813 if (byname) {
2814 /* use id only if forced by configuration */
2815 if (byid->flags & SRV_F_FORCED_ID) {
2816 if (diff)
2817 *diff |= 2;
2818 return byid;
2819 }
2820 else {
2821 if (diff)
2822 *diff |= 1;
2823 return byname;
2824 }
2825 }
2826
2827 /* remaining possibilities:
2828 * - name not set
2829 * - name set but not found
2830 */
2831 if (name && diff)
2832 *diff |= 2;
2833 return byid;
2834 }
2835
2836 /* id bot found */
2837 if (byname) {
2838 if (diff)
2839 *diff |= 1;
2840 return byname;
2841 }
2842 }
2843
2844 return NULL;
2845}
2846
Willy Tarreau46b7f532018-08-21 11:54:26 +02002847/* Update a server state using the parameters available in the params list.
2848 *
2849 * Grabs the server lock during operation.
2850 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002851static void srv_update_state(struct server *srv, int version, char **params)
2852{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002853 char *p;
Willy Tarreau83061a82018-07-13 11:56:34 +02002854 struct buffer *msg;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002855
2856 /* fields since version 1
2857 * and common to all other upcoming versions
2858 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002859 enum srv_state srv_op_state;
2860 enum srv_admin srv_admin_state;
2861 unsigned srv_uweight, srv_iweight;
2862 unsigned long srv_last_time_change;
2863 short srv_check_status;
2864 enum chk_result srv_check_result;
2865 int srv_check_health;
2866 int srv_check_state, srv_agent_state;
2867 int bk_f_forced_id;
2868 int srv_f_forced_id;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002869 int fqdn_set_by_cli;
2870 const char *fqdn;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002871 const char *port_str;
2872 unsigned int port;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002873 char *srvrecord;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002874
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002875 fqdn = NULL;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002876 port = 0;
Willy Tarreau31138fa2015-09-29 18:38:47 +02002877 msg = get_trash_chunk();
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002878 switch (version) {
2879 case 1:
2880 /*
2881 * now we can proceed with server's state update:
2882 * srv_addr: params[0]
2883 * srv_op_state: params[1]
2884 * srv_admin_state: params[2]
2885 * srv_uweight: params[3]
2886 * srv_iweight: params[4]
2887 * srv_last_time_change: params[5]
2888 * srv_check_status: params[6]
2889 * srv_check_result: params[7]
2890 * srv_check_health: params[8]
2891 * srv_check_state: params[9]
2892 * srv_agent_state: params[10]
2893 * bk_f_forced_id: params[11]
2894 * srv_f_forced_id: params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002895 * srv_fqdn: params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02002896 * srv_port: params[14]
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002897 * srvrecord: params[15]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002898 */
2899
2900 /* validating srv_op_state */
2901 p = NULL;
2902 errno = 0;
2903 srv_op_state = strtol(params[1], &p, 10);
2904 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
2905 (srv_op_state != SRV_ST_STOPPED &&
2906 srv_op_state != SRV_ST_STARTING &&
2907 srv_op_state != SRV_ST_RUNNING &&
2908 srv_op_state != SRV_ST_STOPPING)) {
2909 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
2910 }
2911
2912 /* validating srv_admin_state */
2913 p = NULL;
2914 errno = 0;
2915 srv_admin_state = strtol(params[2], &p, 10);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002916 fqdn_set_by_cli = !!(srv_admin_state & SRV_ADMF_HMAINT);
Willy Tarreau757478e2016-11-03 19:22:19 +01002917
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002918 /* inherited statuses will be recomputed later.
2919 * Also disable SRV_ADMF_HMAINT flag (set from stats socket fqdn).
2920 */
Christopher Fauletf02bcb92021-02-12 17:36:08 +01002921 srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_HMAINT & ~SRV_ADMF_RMAINT;
Willy Tarreau757478e2016-11-03 19:22:19 +01002922
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002923 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
2924 (srv_admin_state != 0 &&
2925 srv_admin_state != SRV_ADMF_FMAINT &&
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002926 srv_admin_state != SRV_ADMF_CMAINT &&
2927 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
Willy Tarreaue1bde142016-11-03 18:33:25 +01002928 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FDRAIN) &&
Willy Tarreau757478e2016-11-03 19:22:19 +01002929 srv_admin_state != SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002930 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
2931 }
2932
2933 /* validating srv_uweight */
2934 p = NULL;
2935 errno = 0;
2936 srv_uweight = strtol(params[3], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002937 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002938 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
2939
2940 /* validating srv_iweight */
2941 p = NULL;
2942 errno = 0;
2943 srv_iweight = strtol(params[4], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002944 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002945 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
2946
2947 /* validating srv_last_time_change */
2948 p = NULL;
2949 errno = 0;
2950 srv_last_time_change = strtol(params[5], &p, 10);
2951 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2952 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
2953
2954 /* validating srv_check_status */
2955 p = NULL;
2956 errno = 0;
2957 srv_check_status = strtol(params[6], &p, 10);
2958 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2959 (srv_check_status >= HCHK_STATUS_SIZE))
2960 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
2961
2962 /* validating srv_check_result */
2963 p = NULL;
2964 errno = 0;
2965 srv_check_result = strtol(params[7], &p, 10);
2966 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2967 (srv_check_result != CHK_RES_UNKNOWN &&
2968 srv_check_result != CHK_RES_NEUTRAL &&
2969 srv_check_result != CHK_RES_FAILED &&
2970 srv_check_result != CHK_RES_PASSED &&
2971 srv_check_result != CHK_RES_CONDPASS)) {
2972 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2973 }
2974
2975 /* validating srv_check_health */
2976 p = NULL;
2977 errno = 0;
2978 srv_check_health = strtol(params[8], &p, 10);
2979 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2980 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
2981
2982 /* validating srv_check_state */
2983 p = NULL;
2984 errno = 0;
2985 srv_check_state = strtol(params[9], &p, 10);
2986 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2987 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2988 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
2989
2990 /* validating srv_agent_state */
2991 p = NULL;
2992 errno = 0;
2993 srv_agent_state = strtol(params[10], &p, 10);
2994 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2995 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2996 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
2997
2998 /* validating bk_f_forced_id */
2999 p = NULL;
3000 errno = 0;
3001 bk_f_forced_id = strtol(params[11], &p, 10);
3002 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
3003 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
3004
3005 /* validating srv_f_forced_id */
3006 p = NULL;
3007 errno = 0;
3008 srv_f_forced_id = strtol(params[12], &p, 10);
3009 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
3010 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
3011
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003012 /* validating srv_fqdn */
3013 fqdn = params[13];
3014 if (fqdn && *fqdn == '-')
3015 fqdn = NULL;
3016 if (fqdn && (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn))) {
3017 chunk_appendf(msg, ", invalid srv_fqdn value '%s'", params[13]);
3018 fqdn = NULL;
3019 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003020
Frédéric Lécaille31694712017-08-01 08:47:19 +02003021 port_str = params[14];
3022 if (port_str) {
3023 port = strl2uic(port_str, strlen(port_str));
3024 if (port > USHRT_MAX) {
3025 chunk_appendf(msg, ", invalid srv_port value '%s'", port_str);
3026 port_str = NULL;
3027 }
3028 }
3029
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02003030 /* SRV record
3031 * NOTE: in HAProxy, SRV records must start with an underscore '_'
3032 */
3033 srvrecord = params[15];
3034 if (srvrecord && *srvrecord != '_')
3035 srvrecord = NULL;
3036
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003037 /* don't apply anything if one error has been detected */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003038 if (msg->data)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003039 goto out;
3040
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003041 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003042 /* recover operational state and apply it to this server
3043 * and all servers tracking this one */
Jérôme Magninf57afa42019-01-20 11:27:40 +01003044 srv->check.health = srv_check_health;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003045 switch (srv_op_state) {
3046 case SRV_ST_STOPPED:
3047 srv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02003048 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003049 break;
3050 case SRV_ST_STARTING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01003051 /* If rise == 1 there is no STARTING state, let's switch to
3052 * RUNNING
3053 */
3054 if (srv->check.rise == 1) {
3055 srv->check.health = srv->check.rise + srv->check.fall - 1;
3056 srv_set_running(srv, "", NULL);
3057 break;
3058 }
3059 if (srv->check.health < 1 || srv->check.health >= srv->check.rise)
3060 srv->check.health = srv->check.rise - 1;
Emeric Brun52a91d32017-08-31 14:41:55 +02003061 srv->next_state = srv_op_state;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003062 break;
3063 case SRV_ST_STOPPING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01003064 /* If fall == 1 there is no STOPPING state, let's switch to
3065 * STOPPED
3066 */
3067 if (srv->check.fall == 1) {
3068 srv->check.health = 0;
3069 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
3070 break;
3071 }
3072 if (srv->check.health < srv->check.rise ||
3073 srv->check.health > srv->check.rise + srv->check.fall - 2)
3074 srv->check.health = srv->check.rise;
Emeric Brun5a133512017-10-19 14:42:30 +02003075 srv_set_stopping(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003076 break;
3077 case SRV_ST_RUNNING:
3078 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02003079 srv_set_running(srv, "", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003080 break;
3081 }
3082
3083 /* When applying server state, the following rules apply:
3084 * - in case of a configuration change, we apply the setting from the new
3085 * configuration, regardless of old running state
3086 * - if no configuration change, we apply old running state only if old running
3087 * state is different from new configuration state
3088 */
3089 /* configuration has changed */
Emeric Brun52a91d32017-08-31 14:41:55 +02003090 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->next_admin & SRV_ADMF_CMAINT)) {
3091 if (srv->next_admin & SRV_ADMF_CMAINT)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003092 srv_adm_set_maint(srv);
3093 else
3094 srv_adm_set_ready(srv);
3095 }
3096 /* configuration is the same, let's compate old running state and new conf state */
3097 else {
Emeric Brun52a91d32017-08-31 14:41:55 +02003098 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003099 srv_adm_set_maint(srv);
Emeric Brun52a91d32017-08-31 14:41:55 +02003100 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003101 srv_adm_set_ready(srv);
3102 }
3103 /* apply drain mode if server is currently enabled */
Emeric Brun52a91d32017-08-31 14:41:55 +02003104 if (!(srv->next_admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003105 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
Willy Tarreau22cace22016-11-03 18:19:49 +01003106 * (srv->iweight is the weight set up in configuration).
3107 * There are two possible reasons for FDRAIN to have been present :
3108 * - previous config weight was zero
3109 * - "set server b/s drain" was sent to the CLI
3110 *
3111 * In the first case, we simply want to drop this drain state
3112 * if the new weight is not zero anymore, meaning the administrator
3113 * has intentionally turned the weight back to a positive value to
3114 * enable the server again after an operation. In the second case,
3115 * the drain state was forced on the CLI regardless of the config's
3116 * weight so we don't want a change to the config weight to lose this
3117 * status. What this means is :
3118 * - if previous weight was 0 and new one is >0, drop the DRAIN state.
3119 * - if the previous weight was >0, keep it.
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003120 */
Willy Tarreau22cace22016-11-03 18:19:49 +01003121 if (srv_iweight > 0 || srv->iweight == 0)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003122 srv_adm_set_drain(srv);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003123 }
3124
3125 srv->last_change = date.tv_sec - srv_last_time_change;
3126 srv->check.status = srv_check_status;
3127 srv->check.result = srv_check_result;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003128
3129 /* Only case we want to apply is removing ENABLED flag which could have been
3130 * done by the "disable health" command over the stats socket
3131 */
3132 if ((srv->check.state & CHK_ST_CONFIGURED) &&
3133 (srv_check_state & CHK_ST_CONFIGURED) &&
3134 !(srv_check_state & CHK_ST_ENABLED))
3135 srv->check.state &= ~CHK_ST_ENABLED;
3136
3137 /* Only case we want to apply is removing ENABLED flag which could have been
3138 * done by the "disable agent" command over the stats socket
3139 */
3140 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
3141 (srv_agent_state & CHK_ST_CONFIGURED) &&
3142 !(srv_agent_state & CHK_ST_ENABLED))
3143 srv->agent.state &= ~CHK_ST_ENABLED;
3144
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02003145 /* We want to apply the previous 'running' weight (srv_uweight) only if there
3146 * was no change in the configuration: both previous and new iweight are equals
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003147 *
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02003148 * It means that a configuration file change has precedence over a unix socket change
3149 * for server's weight
3150 *
3151 * by default, HAProxy applies the following weight when parsing the configuration
3152 * srv->uweight = srv->iweight
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003153 */
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02003154 if (srv_iweight == srv->iweight) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003155 srv->uweight = srv_uweight;
3156 }
Willy Tarreau3ff577e2018-08-02 11:48:52 +02003157 server_recalc_eweight(srv, 1);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003158
Willy Tarreaue5a60682016-11-09 14:54:53 +01003159 /* load server IP address */
Daniel Corbett9215ffa2018-05-19 19:43:24 -04003160 if (strcmp(params[0], "-"))
3161 srv->lastaddr = strdup(params[0]);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003162
3163 if (fqdn && srv->hostname) {
3164 if (!strcmp(srv->hostname, fqdn)) {
3165 /* Here we reset the 'set from stats socket FQDN' flag
3166 * to support such transitions:
3167 * Let's say initial FQDN value is foo1 (in configuration file).
3168 * - FQDN changed from stats socket, from foo1 to foo2 value,
3169 * - FQDN changed again from file configuration (with the same previous value
3170 set from stats socket, from foo1 to foo2 value),
3171 * - reload for any other reason than a FQDN modification,
3172 * the configuration file FQDN matches the fqdn server state file value.
3173 * So we must reset the 'set from stats socket FQDN' flag to be consistent with
Joseph Herlant44466822018-11-15 08:57:51 -08003174 * any further FQDN modification.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003175 */
Emeric Brun52a91d32017-08-31 14:41:55 +02003176 srv->next_admin &= ~SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003177 }
3178 else {
3179 /* If the FDQN has been changed from stats socket,
3180 * apply fqdn state file value (which is the value set
3181 * from stats socket).
3182 */
3183 if (fqdn_set_by_cli) {
Olivier Houchardd16bfe62017-10-31 15:21:19 +01003184 srv_set_fqdn(srv, fqdn, 0);
Emeric Brun52a91d32017-08-31 14:41:55 +02003185 srv->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003186 }
3187 }
3188 }
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02003189 /* If all the conditions below are validated, this means
3190 * we're evaluating a server managed by SRV resolution
3191 */
3192 else if (fqdn && !srv->hostname && srvrecord) {
3193 int res;
3194
3195 /* we can't apply previous state if SRV record has changed */
3196 if (srv->srvrq && strcmp(srv->srvrq->name, srvrecord) != 0) {
3197 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);
3198 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
3199 goto out;
3200 }
3201
3202 /* create or find a SRV resolution for this srv record */
3203 if (srv->srvrq == NULL && (srv->srvrq = find_srvrq_by_name(srvrecord, srv->proxy)) == NULL)
3204 srv->srvrq = new_dns_srvrq(srv, srvrecord);
3205 if (srv->srvrq == NULL) {
3206 chunk_appendf(msg, ", can't create or find SRV resolution '%s' for server '%s'", srvrecord, srv->id);
3207 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
3208 goto out;
3209 }
3210
3211 /* prepare DNS resolution for this server */
3212 res = srv_prepare_for_resolution(srv, fqdn);
3213 if (res == -1) {
3214 chunk_appendf(msg, ", can't allocate memory for DNS resolution for server '%s'", srv->id);
3215 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
3216 goto out;
3217 }
3218
3219 /* configure check.port accordingly */
3220 if ((srv->check.state & CHK_ST_CONFIGURED) &&
3221 !(srv->flags & SRV_F_CHECKPORT))
3222 srv->check.port = port;
3223
3224 /* Unset SRV_F_MAPPORTS for SRV records.
3225 * SRV_F_MAPPORTS is unfortunately set by parse_server()
3226 * because no ports are provided in the configuration file.
3227 * This is because HAProxy will use the port found into the SRV record.
3228 */
3229 srv->flags &= ~SRV_F_MAPPORTS;
3230 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003231
Frédéric Lécaille31694712017-08-01 08:47:19 +02003232 if (port_str)
3233 srv->svc_port = port;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003234 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Frédéric Lécaille31694712017-08-01 08:47:19 +02003235
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003236 break;
3237 default:
3238 chunk_appendf(msg, ", version '%d' not supported", version);
3239 }
3240
3241 out:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003242 if (msg->data) {
Baptiste Assmann0821bb92016-01-21 00:20:50 +01003243 chunk_appendf(msg, "\n");
Christopher Faulet767a84b2017-11-24 16:50:31 +01003244 ha_warning("server-state application failed for server '%s/%s'%s",
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003245 srv->proxy->id, srv->id, msg->area);
Baptiste Assmann0821bb92016-01-21 00:20:50 +01003246 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003247}
3248
3249/* This function parses all the proxies and only take care of the backends (since we're looking for server)
3250 * For each proxy, it does the following:
3251 * - opens its server state file (either one or local one)
3252 * - read whole file, line by line
3253 * - analyse each line to check if it matches our current backend:
3254 * - backend name matches
3255 * - backend id matches if id is forced and name doesn't match
3256 * - if the server pointed by the line is found, then state is applied
3257 *
3258 * If the running backend uuid or id differs from the state file, then HAProxy reports
3259 * a warning.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003260 *
3261 * Grabs the server's lock via srv_update_state().
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003262 */
3263void apply_server_state(void)
3264{
3265 char *cur, *end;
3266 char mybuf[SRV_STATE_LINE_MAXLEN];
3267 int mybuflen;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003268 char *params[SRV_STATE_FILE_MAX_FIELDS] = {0};
3269 char *srv_params[SRV_STATE_FILE_MAX_FIELDS] = {0};
Baptiste Assmann95c2c012019-06-11 14:51:49 +02003270 int arg, srv_arg, version;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003271 FILE *f;
3272 char *filepath;
3273 char globalfilepath[MAXPATHLEN + 1];
3274 char localfilepath[MAXPATHLEN + 1];
3275 int len, fileopenerr, globalfilepathlen, localfilepathlen;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003276 struct proxy *curproxy, *bk;
3277 struct server *srv;
3278
3279 globalfilepathlen = 0;
3280 /* create the globalfilepath variable */
3281 if (global.server_state_file) {
3282 /* absolute path or no base directory provided */
3283 if ((global.server_state_file[0] == '/') || (!global.server_state_base)) {
3284 len = strlen(global.server_state_file);
3285 if (len > MAXPATHLEN) {
3286 globalfilepathlen = 0;
3287 goto globalfileerror;
3288 }
3289 memcpy(globalfilepath, global.server_state_file, len);
3290 globalfilepath[len] = '\0';
3291 globalfilepathlen = len;
3292 }
3293 else if (global.server_state_base) {
3294 len = strlen(global.server_state_base);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003295 if (len > MAXPATHLEN) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003296 globalfilepathlen = 0;
3297 goto globalfileerror;
3298 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003299 memcpy(globalfilepath, global.server_state_base, len);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003300 globalfilepath[len] = 0;
3301 globalfilepathlen = len;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003302
3303 /* append a slash if needed */
3304 if (!globalfilepathlen || globalfilepath[globalfilepathlen - 1] != '/') {
3305 if (globalfilepathlen + 1 > MAXPATHLEN) {
3306 globalfilepathlen = 0;
3307 goto globalfileerror;
3308 }
3309 globalfilepath[globalfilepathlen++] = '/';
3310 }
3311
3312 len = strlen(global.server_state_file);
3313 if (globalfilepathlen + len > MAXPATHLEN) {
3314 globalfilepathlen = 0;
3315 goto globalfileerror;
3316 }
3317 memcpy(globalfilepath + globalfilepathlen, global.server_state_file, len);
3318 globalfilepathlen += len;
3319 globalfilepath[globalfilepathlen++] = 0;
3320 }
3321 }
3322 globalfileerror:
3323 if (globalfilepathlen == 0)
3324 globalfilepath[0] = '\0';
3325
3326 /* read servers state from local file */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003327 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003328 /* servers are only in backends */
3329 if (!(curproxy->cap & PR_CAP_BE))
3330 continue;
3331 fileopenerr = 0;
3332 filepath = NULL;
3333
3334 /* search server state file path and name */
3335 switch (curproxy->load_server_state_from_file) {
3336 /* read servers state from global file */
3337 case PR_SRV_STATE_FILE_GLOBAL:
3338 /* there was an error while generating global server state file path */
3339 if (globalfilepathlen == 0)
3340 continue;
3341 filepath = globalfilepath;
3342 fileopenerr = 1;
3343 break;
3344 /* this backend has its own file */
3345 case PR_SRV_STATE_FILE_LOCAL:
3346 localfilepathlen = 0;
3347 localfilepath[0] = '\0';
3348 len = 0;
3349 /* create the localfilepath variable */
3350 /* absolute path or no base directory provided */
3351 if ((curproxy->server_state_file_name[0] == '/') || (!global.server_state_base)) {
3352 len = strlen(curproxy->server_state_file_name);
3353 if (len > MAXPATHLEN) {
3354 localfilepathlen = 0;
3355 goto localfileerror;
3356 }
3357 memcpy(localfilepath, curproxy->server_state_file_name, len);
3358 localfilepath[len] = '\0';
3359 localfilepathlen = len;
3360 }
3361 else if (global.server_state_base) {
3362 len = strlen(global.server_state_base);
3363 localfilepathlen += len;
3364
3365 if (localfilepathlen > MAXPATHLEN) {
3366 localfilepathlen = 0;
3367 goto localfileerror;
3368 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003369 memcpy(localfilepath, global.server_state_base, len);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003370 localfilepath[localfilepathlen] = 0;
3371
3372 /* append a slash if needed */
3373 if (!localfilepathlen || localfilepath[localfilepathlen - 1] != '/') {
3374 if (localfilepathlen + 1 > MAXPATHLEN) {
3375 localfilepathlen = 0;
3376 goto localfileerror;
3377 }
3378 localfilepath[localfilepathlen++] = '/';
3379 }
3380
3381 len = strlen(curproxy->server_state_file_name);
3382 if (localfilepathlen + len > MAXPATHLEN) {
3383 localfilepathlen = 0;
3384 goto localfileerror;
3385 }
3386 memcpy(localfilepath + localfilepathlen, curproxy->server_state_file_name, len);
3387 localfilepathlen += len;
3388 localfilepath[localfilepathlen++] = 0;
3389 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003390 localfileerror:
3391 if (localfilepathlen == 0)
Christopher Faulet559a6d32021-02-12 16:31:03 +01003392 continue;
3393 filepath = localfilepath;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003394
3395 break;
3396 case PR_SRV_STATE_FILE_NONE:
3397 default:
3398 continue;
3399 }
3400
3401 /* preload global state file */
3402 errno = 0;
3403 f = fopen(filepath, "r");
3404 if (errno && fileopenerr)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003405 ha_warning("Can't open server state file '%s': %s\n", filepath, strerror(errno));
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003406 if (!f)
3407 continue;
3408
3409 mybuf[0] = '\0';
3410 mybuflen = 0;
3411 version = 0;
3412
3413 /* first character of first line of the file must contain the version of the export */
Dragan Dosencf4fb032015-11-04 23:03:26 +01003414 if (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003415 ha_warning("Can't read first line of the server state file '%s'\n", filepath);
Dragan Dosencf4fb032015-11-04 23:03:26 +01003416 goto fileclose;
3417 }
3418
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003419 cur = mybuf;
3420 version = atoi(cur);
3421 if ((version < SRV_STATE_FILE_VERSION_MIN) ||
3422 (version > SRV_STATE_FILE_VERSION_MAX))
Dragan Dosencf4fb032015-11-04 23:03:26 +01003423 goto fileclose;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003424
3425 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3426 int bk_f_forced_id = 0;
3427 int check_id = 0;
3428 int check_name = 0;
3429
3430 mybuflen = strlen(mybuf);
3431 cur = mybuf;
3432 end = cur + mybuflen;
3433
3434 bk = NULL;
3435 srv = NULL;
3436
3437 /* we need at least one character */
3438 if (mybuflen == 0)
3439 continue;
3440
3441 /* ignore blank characters at the beginning of the line */
3442 while (isspace(*cur))
3443 ++cur;
3444
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003445 /* Ignore empty or commented lines */
3446 if (cur == end || *cur == '#')
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003447 continue;
3448
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003449 /* truncated lines */
3450 if (mybuf[mybuflen - 1] != '\n') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003451 ha_warning("server-state file '%s': truncated line\n", filepath);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003452 continue;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003453 }
3454
3455 /* Removes trailing '\n' */
3456 mybuf[mybuflen - 1] = '\0';
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003457
3458 /* we're now ready to move the line into *srv_params[] */
Christopher Faulet66569722021-02-19 16:47:11 +01003459 memset(params, 0, SRV_STATE_FILE_MAX_FIELDS * sizeof(*params));
3460 memset(srv_params, 0, SRV_STATE_FILE_MAX_FIELDS * sizeof(*srv_params));
Christopher Fauletd54cc602021-02-19 16:57:20 +01003461
3462 arg = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003463 srv_arg = 0;
3464 while (*cur && arg < SRV_STATE_FILE_MAX_FIELDS) {
Christopher Fauletd54cc602021-02-19 16:57:20 +01003465 /* Search begining of the current field */
3466 while (isspace((unsigned char)*cur)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003467 ++cur;
Christopher Fauletd54cc602021-02-19 16:57:20 +01003468 if (!*cur)
3469 goto end_loop;
3470 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003471
Christopher Fauletd54cc602021-02-19 16:57:20 +01003472 /*
3473 * v1
3474 * srv_addr: params[4] => srv_params[0]
3475 * srv_op_state: params[5] => srv_params[1]
3476 * srv_admin_state: params[6] => srv_params[2]
3477 * srv_uweight: params[7] => srv_params[3]
3478 * srv_iweight: params[8] => srv_params[4]
3479 * srv_last_time_change: params[9] => srv_params[5]
3480 * srv_check_status: params[10] => srv_params[6]
3481 * srv_check_result: params[11] => srv_params[7]
3482 * srv_check_health: params[12] => srv_params[8]
3483 * srv_check_state: params[13] => srv_params[9]
3484 * srv_agent_state: params[14] => srv_params[10]
3485 * bk_f_forced_id: params[15] => srv_params[11]
3486 * srv_f_forced_id: params[16] => srv_params[12]
3487 * srv_fqdn: params[17] => srv_params[13]
3488 * srv_port: params[18] => srv_params[14]
3489 * srvrecord: params[19] => srv_params[15]
3490 */
3491 if (version == 1 && arg >= 4) {
3492 srv_params[srv_arg] = cur;
3493 ++srv_arg;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003494 }
Christopher Fauletd54cc602021-02-19 16:57:20 +01003495 params[arg] = cur;
3496 ++arg;
3497
3498 /* Search end of the current field: first space or \0 */
3499 /* Search begining of the current field */
3500 while (!isspace((unsigned char)*cur)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003501 ++cur;
Christopher Fauletd54cc602021-02-19 16:57:20 +01003502 if (!*cur)
3503 goto end_loop;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003504 }
Christopher Fauletd54cc602021-02-19 16:57:20 +01003505 *cur++ = '\0';
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003506 }
3507
Christopher Fauletd54cc602021-02-19 16:57:20 +01003508 end_loop:
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003509 /* if line is incomplete line, then ignore it.
3510 * otherwise, update useful flags */
3511 switch (version) {
3512 case 1:
3513 if (arg < SRV_STATE_FILE_NB_FIELDS_VERSION_1)
3514 continue;
3515 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
3516 check_id = (atoi(params[0]) == curproxy->uuid);
3517 check_name = (strcmp(curproxy->id, params[1]) == 0);
3518 break;
3519 }
3520
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003521 bk = curproxy;
3522
3523 /* if backend can't be found, let's continue */
3524 if (!check_id && !check_name)
3525 continue;
3526 else if (!check_id && check_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003527 ha_warning("backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003528 send_log(bk, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3529 }
3530 else if (check_id && !check_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003531 ha_warning("backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003532 send_log(bk, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3533 /* if name doesn't match, we still want to update curproxy if the backend id
3534 * was forced in previous the previous configuration */
3535 if (!bk_f_forced_id)
3536 continue;
3537 }
3538
Baptiste Assmann95c2c012019-06-11 14:51:49 +02003539 /* look for the server by its name: param[3] */
3540 srv = server_find_best_match(bk, params[3], 0, NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003541
3542 if (!srv) {
3543 /* if no server found, then warning and continue with next line */
Baptiste Assmann95c2c012019-06-11 14:51:49 +02003544 ha_warning("can't find server '%s' in backend '%s'\n",
3545 params[3], params[1]);
3546 send_log(bk, LOG_NOTICE, "can't find server '%s' in backend '%s'\n",
3547 params[3], params[1]);
Frédéric Lécaille0bedb8a2017-06-15 14:09:10 +02003548 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003549 }
3550
3551 /* now we can proceed with server's state update */
3552 srv_update_state(srv, version, srv_params);
3553 }
Dragan Dosencf4fb032015-11-04 23:03:26 +01003554fileclose:
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003555 fclose(f);
3556 }
3557}
3558
Simon Horman7d09b9a2013-02-12 10:45:51 +09003559/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003560 * update a server's current IP address.
3561 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3562 * ip is in network format.
3563 * updater is a string which contains an information about the requester of the update.
3564 * updater is used if not NULL.
3565 *
3566 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003567 *
3568 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003569 */
Thierry Fournierd35b7a62016-02-24 08:23:22 +01003570int update_server_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003571{
3572 /* generates a log line and a warning on stderr */
3573 if (1) {
3574 /* book enough space for both IPv4 and IPv6 */
3575 char oldip[INET6_ADDRSTRLEN];
3576 char newip[INET6_ADDRSTRLEN];
3577
3578 memset(oldip, '\0', INET6_ADDRSTRLEN);
3579 memset(newip, '\0', INET6_ADDRSTRLEN);
3580
3581 /* copy old IP address in a string */
3582 switch (s->addr.ss_family) {
3583 case AF_INET:
3584 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3585 break;
3586 case AF_INET6:
3587 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3588 break;
3589 };
3590
3591 /* copy new IP address in a string */
3592 switch (ip_sin_family) {
3593 case AF_INET:
3594 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3595 break;
3596 case AF_INET6:
3597 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3598 break;
3599 };
3600
3601 /* save log line into a buffer */
3602 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3603 s->proxy->id, s->id, oldip, newip, updater);
3604
3605 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003606 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003607
3608 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003609 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003610 }
3611
3612 /* save the new IP family */
3613 s->addr.ss_family = ip_sin_family;
3614 /* save the new IP address */
3615 switch (ip_sin_family) {
3616 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003617 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003618 break;
3619 case AF_INET6:
3620 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3621 break;
3622 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003623 srv_set_dyncookie(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003624
3625 return 0;
3626}
3627
3628/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003629 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3630 *
3631 * Caller can pass its name through <updater> to get it integrated in the response message
3632 * returned by the function.
3633 *
3634 * The function first does the following, in that order:
3635 * - validates the new addr and/or port
3636 * - checks if an update is required (new IP or port is different than current ones)
3637 * - checks the update is allowed:
3638 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3639 * - allow all changes if no CHECKS are configured
3640 * - if CHECK is configured:
3641 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3642 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3643 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003644 *
3645 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003646 */
3647const char *update_server_addr_port(struct server *s, const char *addr, const char *port, char *updater)
3648{
3649 struct sockaddr_storage sa;
3650 int ret, port_change_required;
3651 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003652 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003653 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003654 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003655
3656 msg = get_trash_chunk();
3657 chunk_reset(msg);
3658
3659 if (addr) {
3660 memset(&sa, 0, sizeof(struct sockaddr_storage));
3661 if (str2ip2(addr, &sa, 0) == NULL) {
3662 chunk_printf(msg, "Invalid addr '%s'", addr);
3663 goto out;
3664 }
3665
3666 /* changes are allowed on AF_INET* families only */
3667 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3668 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3669 goto out;
3670 }
3671
3672 /* collecting data currently setup */
3673 memset(current_addr, '\0', sizeof(current_addr));
3674 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3675 /* changes are allowed on AF_INET* families only */
3676 if ((ret != AF_INET) && (ret != AF_INET6)) {
3677 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3678 goto out;
3679 }
3680
3681 /* applying ADDR changes if required and allowed
3682 * ipcmp returns 0 when both ADDR are the same
3683 */
3684 if (ipcmp(&s->addr, &sa) == 0) {
3685 chunk_appendf(msg, "no need to change the addr");
3686 goto port;
3687 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003688 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003689 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003690
3691 /* we also need to update check's ADDR only if it uses the server's one */
3692 if ((s->check.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_CHECKADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003693 ipcpy(&sa, &s->check.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003694 }
3695
3696 /* we also need to update agent ADDR only if it use the server's one */
3697 if ((s->agent.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_AGENTADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003698 ipcpy(&sa, &s->agent.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003699 }
3700
3701 /* update report for caller */
3702 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3703 }
3704
3705 port:
3706 if (port) {
3707 char sign = '\0';
3708 char *endptr;
3709
3710 if (addr)
3711 chunk_appendf(msg, ", ");
3712
3713 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003714 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003715
3716 /* check if PORT change is required */
3717 port_change_required = 0;
3718
3719 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003720 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003721 new_port = strtol(port, &endptr, 10);
3722 if ((errno != 0) || (port == endptr)) {
3723 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3724 goto out;
3725 }
3726
3727 /* check if caller triggers a port mapped or offset */
3728 if (sign == '-' || (sign == '+')) {
3729 /* check if server currently uses port map */
3730 if (!(s->flags & SRV_F_MAPPORTS)) {
3731 /* switch from fixed port to port map mandatorily triggers
3732 * a port change */
3733 port_change_required = 1;
3734 /* check is configured
3735 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3736 * prevent PORT change if check doesn't have it's dedicated port while switching
3737 * to port mapping */
3738 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3739 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.");
3740 goto out;
3741 }
3742 }
3743 /* we're already using port maps */
3744 else {
3745 port_change_required = current_port != new_port;
3746 }
3747 }
3748 /* fixed port */
3749 else {
3750 port_change_required = current_port != new_port;
3751 }
3752
3753 /* applying PORT changes if required and update response message */
3754 if (port_change_required) {
3755 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003756 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003757 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003758
3759 /* prepare message */
3760 chunk_appendf(msg, "port changed from '");
3761 if (s->flags & SRV_F_MAPPORTS)
3762 chunk_appendf(msg, "+");
3763 chunk_appendf(msg, "%d' to '", current_port);
3764
3765 if (sign == '-') {
3766 s->flags |= SRV_F_MAPPORTS;
3767 chunk_appendf(msg, "%c", sign);
3768 /* just use for result output */
3769 new_port = -new_port;
3770 }
3771 else if (sign == '+') {
3772 s->flags |= SRV_F_MAPPORTS;
3773 chunk_appendf(msg, "%c", sign);
3774 }
3775 else {
3776 s->flags &= ~SRV_F_MAPPORTS;
3777 }
3778
3779 chunk_appendf(msg, "%d'", new_port);
3780
3781 /* we also need to update health checks port only if it uses server's realport */
3782 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3783 s->check.port = new_port;
3784 }
3785 }
3786 else {
3787 chunk_appendf(msg, "no need to change the port");
3788 }
3789 }
3790
3791out:
William Dauchy00da86b2020-06-02 16:03:58 +02003792 if (changed)
Olivier Houchard4e694042017-03-14 20:01:29 +01003793 srv_set_dyncookie(s);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003794 if (updater)
3795 chunk_appendf(msg, " by '%s'", updater);
3796 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003797 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003798}
3799
Christopher Fauletdeb03c12021-03-11 18:03:21 +01003800/*
3801 * update server status based on result of SRV resolution
3802 * returns:
3803 * 0 if server status is updated
3804 * 1 if server status has not changed
3805 *
3806 * Must be called with the server lock held.
3807 */
3808int srvrq_update_srv_status(struct server *s, int has_no_ip)
3809{
3810 if (!s->srvrq)
3811 return 1;
3812
3813 /* since this server has an IP, it can go back in production */
3814 if (has_no_ip == 0) {
3815 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3816 return 1;
3817 }
3818
3819 if (s->next_admin & SRV_ADMF_RMAINT)
3820 return 1;
3821
3822 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record");
3823 return 0;
3824}
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003825
3826/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003827 * update server status based on result of name resolution
3828 * returns:
3829 * 0 if server status is updated
3830 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003831 *
3832 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003833 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003834int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003835{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003836 struct dns_resolvers *resolvers = s->resolvers;
3837 struct dns_resolution *resolution = s->dns_requester->resolution;
3838 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003839
Jerome Magnin7cf30242020-07-28 13:38:22 +02003840 /* If resolution is NULL we're dealing with SRV records Additional records */
Christopher Fauletdeb03c12021-03-11 18:03:21 +01003841 if (resolution == NULL)
3842 return srvrq_update_srv_status(s, has_no_ip);
Jerome Magnin7cf30242020-07-28 13:38:22 +02003843
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003844 switch (resolution->status) {
3845 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003846 /* status when HAProxy has just (re)started.
3847 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003848 break;
3849
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003850 case RSLV_STATUS_VALID:
3851 /*
3852 * resume health checks
3853 * server will be turned back on if health check is safe
3854 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003855 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003856 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003857 return 1;
3858 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3859 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003860 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003861 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003862
Emeric Brun52a91d32017-08-31 14:41:55 +02003863 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003864 return 1;
3865 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3866 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3867 s->proxy->id, s->id);
3868
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003869 ha_warning("%s.\n", trash.area);
3870 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003871 return 0;
3872
3873 case RSLV_STATUS_NX:
3874 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003875 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3876 if (!tick_is_expired(exp, now_ms))
3877 break;
3878
3879 if (s->next_admin & SRV_ADMF_RMAINT)
3880 return 1;
3881 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3882 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003883
3884 case RSLV_STATUS_TIMEOUT:
3885 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003886 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3887 if (!tick_is_expired(exp, now_ms))
3888 break;
3889
3890 if (s->next_admin & SRV_ADMF_RMAINT)
3891 return 1;
3892 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3893 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003894
3895 case RSLV_STATUS_REFUSED:
3896 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003897 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3898 if (!tick_is_expired(exp, now_ms))
3899 break;
3900
3901 if (s->next_admin & SRV_ADMF_RMAINT)
3902 return 1;
3903 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3904 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003905
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003906 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003907 /* stop server if resolution failed for a long enough period */
3908 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3909 if (!tick_is_expired(exp, now_ms))
3910 break;
3911
3912 if (s->next_admin & SRV_ADMF_RMAINT)
3913 return 1;
3914 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3915 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003916 }
3917
3918 return 1;
3919}
3920
3921/*
3922 * Server Name Resolution valid response callback
3923 * It expects:
3924 * - <nameserver>: the name server which answered the valid response
3925 * - <response>: buffer containing a valid DNS response
3926 * - <response_len>: size of <response>
3927 * It performs the following actions:
3928 * - ignore response if current ip found and server family not met
3929 * - update with first new ip found if family is met and current IP is not found
3930 * returns:
3931 * 0 on error
3932 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003933 *
3934 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003935 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003936int snr_resolution_cb(struct dns_requester *requester, struct dns_nameserver *nameserver)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003937{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003938 struct server *s = NULL;
3939 struct dns_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003940 void *serverip, *firstip;
3941 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003942 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003943 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003944 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003945
Christopher Faulet67957bd2017-09-27 11:00:59 +02003946 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003947 if (!s)
3948 return 1;
3949
Christopher Faulet67957bd2017-09-27 11:00:59 +02003950 resolution = s->dns_requester->resolution;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003951
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003952 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003953 firstip = NULL; /* pointer to the first valid response found */
3954 /* it will be used as the new IP if a change is required */
3955 firstip_sin_family = AF_UNSPEC;
3956 serverip = NULL; /* current server IP address */
3957
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003958 /* initializing server IP pointer */
3959 server_sin_family = s->addr.ss_family;
3960 switch (server_sin_family) {
3961 case AF_INET:
3962 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3963 break;
3964
3965 case AF_INET6:
3966 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3967 break;
3968
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003969 case AF_UNSPEC:
3970 break;
3971
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003972 default:
3973 goto invalid;
3974 }
3975
Baptiste Assmann729c9012017-05-22 15:13:10 +02003976 ret = dns_get_ip_from_response(&resolution->response, &s->dns_opts,
Thierry Fournierada34842016-02-17 21:25:09 +01003977 serverip, server_sin_family, &firstip,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003978 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003979
3980 switch (ret) {
3981 case DNS_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003982 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003983
3984 case DNS_UPD_SRVIP_NOT_FOUND:
3985 goto save_ip;
3986
3987 case DNS_UPD_CNAME:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003988 goto invalid;
3989
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003990 case DNS_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003991 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003992 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003993
Baptiste Assmannfad03182015-10-28 02:03:32 +01003994 case DNS_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003995 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003996 resolution->status = RSLV_STATUS_OTHER;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003997 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003998
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003999 default:
4000 goto invalid;
4001
4002 }
4003
4004 save_ip:
Christopher Faulet67957bd2017-09-27 11:00:59 +02004005 if (nameserver) {
4006 nameserver->counters.update++;
4007 /* save the first ip we found */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004008 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004009 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004010 else
4011 chunk_printf(chk, "DNS cache");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004012 update_server_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004013
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004014 update_status:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004015 snr_update_srv_status(s, has_no_ip);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004016 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004017
4018 invalid:
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02004019 if (nameserver) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02004020 nameserver->counters.invalid++;
4021 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02004022 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004023 snr_update_srv_status(s, has_no_ip);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004024 return 0;
4025}
4026
4027/*
Baptiste Assmann132d25f2020-11-19 22:38:33 +01004028 * SRV record error management callback
4029 * returns:
4030 * 0 on error
4031 * 1 when no error or safe ignore
4032 *
4033 * Grabs the server's lock.
4034 */
4035int srvrq_resolution_error_cb(struct dns_requester *requester, int error_code)
4036{
4037 struct server *s;
4038 struct dns_srvrq *srvrq;
4039 struct dns_resolution *res;
4040 struct dns_resolvers *resolvers;
4041 int exp;
4042
4043 /* SRV records */
4044 srvrq = objt_dns_srvrq(requester->owner);
4045 if (!srvrq)
4046 return 1;
4047
4048 resolvers = srvrq->resolvers;
4049 res = requester->resolution;
4050
4051 switch (res->status) {
4052
4053 case RSLV_STATUS_NX:
4054 /* stop server if resolution is NX for a long enough period */
4055 exp = tick_add(res->last_valid, resolvers->hold.nx);
4056 if (!tick_is_expired(exp, now_ms))
4057 return 1;
4058 break;
4059
4060 case RSLV_STATUS_TIMEOUT:
4061 /* stop server if resolution is TIMEOUT for a long enough period */
4062 exp = tick_add(res->last_valid, resolvers->hold.timeout);
4063 if (!tick_is_expired(exp, now_ms))
4064 return 1;
4065 break;
4066
4067 case RSLV_STATUS_REFUSED:
4068 /* stop server if resolution is REFUSED for a long enough period */
4069 exp = tick_add(res->last_valid, resolvers->hold.refused);
4070 if (!tick_is_expired(exp, now_ms))
4071 return 1;
4072 break;
4073
4074 default:
4075 /* stop server if resolution failed for a long enough period */
4076 exp = tick_add(res->last_valid, resolvers->hold.other);
4077 if (!tick_is_expired(exp, now_ms))
4078 return 1;
4079 }
4080
4081 /* Remove any associated server */
4082 for (s = srvrq->proxy->srv; s != NULL; s = s->next) {
4083 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
4084 if (s->srvrq == srvrq) {
Christopher Faulet325a4362021-03-11 18:09:53 +01004085 dns_unlink_resolution(s->dns_requester, 1);
Christopher Faulet64ab0282021-03-11 18:06:23 +01004086 srvrq_update_srv_status(s, 1);
Baptiste Assmann132d25f2020-11-19 22:38:33 +01004087 free(s->hostname);
4088 free(s->hostname_dn);
4089 s->hostname = NULL;
4090 s->hostname_dn = NULL;
4091 s->hostname_dn_len = 0;
Christopher Fauletbbb63782021-02-23 12:24:09 +01004092 memset(&s->addr, 0, sizeof(s->addr));
4093 s->svc_port = 0;
Baptiste Assmann132d25f2020-11-19 22:38:33 +01004094 }
4095 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
4096 }
4097
Christopher Faulet738db5b2021-03-10 15:46:46 +01004098 dns_purge_resolution_answer_records(res);
4099
Baptiste Assmann132d25f2020-11-19 22:38:33 +01004100 return 1;
4101}
4102
4103/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004104 * Server Name Resolution error management callback
4105 * returns:
4106 * 0 on error
4107 * 1 when no error or safe ignore
Willy Tarreau46b7f532018-08-21 11:54:26 +02004108 *
4109 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004110 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004111int snr_resolution_error_cb(struct dns_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004112{
Christopher Faulet67957bd2017-09-27 11:00:59 +02004113 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004114
Christopher Faulet67957bd2017-09-27 11:00:59 +02004115 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004116 if (!s)
4117 return 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004118 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Christopher Faulet9469af02021-03-10 20:31:40 +01004119 if (!snr_update_srv_status(s, 1))
4120 memset(&s->addr, 0, sizeof(s->addr));
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004121 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004122 return 1;
4123}
4124
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004125/*
4126 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004127 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004128 * It returns a pointer to the first server found or NULL if <ip> is not yet
4129 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01004130 *
4131 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004132 */
4133struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
4134{
4135 struct server *tmpsrv;
4136 struct proxy *be;
4137
4138 if (!srv)
4139 return NULL;
4140
4141 be = srv->proxy;
4142 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01004143 /* we found the current server is the same, ignore it */
4144 if (srv == tmpsrv)
4145 continue;
4146
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004147 /* We want to compare the IP in the record with the IP of the servers in the
4148 * same backend, only if:
4149 * * DNS resolution is enabled on the server
4150 * * the hostname used for the resolution by our server is the same than the
4151 * one used for the server found in the backend
4152 * * the server found in the backend is not our current server
4153 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004154 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004155 if ((tmpsrv->hostname_dn == NULL) ||
4156 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
Christopher Fauleteb221132021-03-16 11:21:04 +01004157 (strcasecmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01004158 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004159 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004160 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004161 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004162
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004163 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01004164 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004165 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004166 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004167 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004168
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004169 /* At this point, we have 2 different servers using the same DNS hostname
4170 * for their respective resolution.
4171 */
4172 if (*ip_family == tmpsrv->addr.ss_family &&
4173 ((tmpsrv->addr.ss_family == AF_INET &&
4174 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
4175 (tmpsrv->addr.ss_family == AF_INET6 &&
4176 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004177 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004178 return tmpsrv;
4179 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004180 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004181 }
4182
Emeric Brune9fd6b52017-11-02 17:20:39 +01004183
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004184 return NULL;
4185}
4186
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004187/* Sets the server's address (srv->addr) from srv->hostname using the libc's
4188 * resolver. This is suited for initial address configuration. Returns 0 on
4189 * success otherwise a non-zero error code. In case of error, *err_code, if
4190 * not NULL, is filled up.
4191 */
4192int srv_set_addr_via_libc(struct server *srv, int *err_code)
4193{
4194 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004195 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01004196 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004197 return 1;
4198 }
4199 return 0;
4200}
4201
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004202/* Set the server's FDQN (->hostname) from <hostname>.
4203 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004204 *
4205 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004206 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004207int srv_set_fqdn(struct server *srv, const char *hostname, int dns_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004208{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004209 struct dns_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004210 char *hostname_dn;
4211 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004212
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02004213 /* Note that the server lock is already held. */
4214 if (!srv->resolvers)
4215 return -1;
4216
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004217 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004218 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004219 /* run time DNS resolution was not active for this server
4220 * and we can't enable it at run time for now.
4221 */
4222 if (!srv->dns_requester)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004223 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004224
4225 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004226 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004227 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004228 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
4229 hostname_dn, trash.size);
4230 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004231 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004232
Christopher Faulet67957bd2017-09-27 11:00:59 +02004233 resolution = srv->dns_requester->resolution;
4234 if (resolution &&
4235 resolution->hostname_dn &&
Christopher Fauleteb221132021-03-16 11:21:04 +01004236 resolution->hostname_dn_len == hostname_dn_len &&
4237 strcasecmp(resolution->hostname_dn, hostname_dn) == 0)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004238 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004239
Christopher Faulet325a4362021-03-11 18:09:53 +01004240 dns_unlink_resolution(srv->dns_requester, 0);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004241
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004242 free(srv->hostname);
4243 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004244 srv->hostname = strdup(hostname);
4245 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004246 srv->hostname_dn_len = hostname_dn_len;
4247 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004248 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004249
Olivier Houchard55dcdf42017-11-06 15:15:04 +01004250 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004251 goto err;
4252
4253 end:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004254 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004255 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004256 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02004257
4258 err:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004259 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004260 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02004261 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004262}
4263
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004264/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
4265 * from the state file. This is suited for initial address configuration.
4266 * Returns 0 on success otherwise a non-zero error code. In case of error,
4267 * *err_code, if not NULL, is filled up.
4268 */
4269static int srv_apply_lastaddr(struct server *srv, int *err_code)
4270{
4271 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
4272 if (err_code)
4273 *err_code |= ERR_WARN;
4274 return 1;
4275 }
4276 return 0;
4277}
4278
Willy Tarreau25e51522016-11-04 15:10:17 +01004279/* returns 0 if no error, otherwise a combination of ERR_* flags */
4280static int srv_iterate_initaddr(struct server *srv)
4281{
Christopher Fauletf7474aa2020-10-26 10:31:17 +01004282 char *name = srv->hostname;
Willy Tarreau25e51522016-11-04 15:10:17 +01004283 int return_code = 0;
4284 int err_code;
4285 unsigned int methods;
4286
Christopher Fauletf7474aa2020-10-26 10:31:17 +01004287 /* If no addr and no hostname set, get the name from the DNS SRV request */
4288 if (!name && srv->srvrq)
4289 name = srv->srvrq->name;
4290
Willy Tarreau25e51522016-11-04 15:10:17 +01004291 methods = srv->init_addr_methods;
Christopher Fauletf7474aa2020-10-26 10:31:17 +01004292 if (!methods) {
4293 /* otherwise default to "last,libc" */
Willy Tarreau25e51522016-11-04 15:10:17 +01004294 srv_append_initaddr(&methods, SRV_IADDR_LAST);
4295 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
Christopher Fauletf7474aa2020-10-26 10:31:17 +01004296 if (srv->resolvers_id) {
4297 /* dns resolution is configured, add "none" to not fail on startup */
4298 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4299 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004300 }
4301
Willy Tarreau3eed10e2016-11-07 21:03:16 +01004302 /* "-dr" : always append "none" so that server addresses resolution
4303 * failures are silently ignored, this is convenient to validate some
4304 * configs out of their environment.
4305 */
4306 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
4307 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4308
Willy Tarreau25e51522016-11-04 15:10:17 +01004309 while (methods) {
4310 err_code = 0;
4311 switch (srv_get_next_initaddr(&methods)) {
4312 case SRV_IADDR_LAST:
4313 if (!srv->lastaddr)
4314 continue;
4315 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004316 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004317 return_code |= err_code;
4318 break;
4319
4320 case SRV_IADDR_LIBC:
4321 if (!srv->hostname)
4322 continue;
4323 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004324 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004325 return_code |= err_code;
4326 break;
4327
Willy Tarreau37ebe122016-11-04 15:17:58 +01004328 case SRV_IADDR_NONE:
4329 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004330 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004331 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
Christopher Fauletf7474aa2020-10-26 10:31:17 +01004332 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004333 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01004334 return return_code;
4335
Willy Tarreau4310d362016-11-02 15:05:56 +01004336 case SRV_IADDR_IP:
4337 ipcpy(&srv->init_addr, &srv->addr);
4338 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004339 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', falling back to configured address.\n",
Christopher Fauletf7474aa2020-10-26 10:31:17 +01004340 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau4310d362016-11-02 15:05:56 +01004341 }
Olivier Houchard4e694042017-03-14 20:01:29 +01004342 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01004343
Willy Tarreau25e51522016-11-04 15:10:17 +01004344 default: /* unhandled method */
4345 break;
4346 }
4347 }
4348
4349 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004350 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Christopher Fauletf7474aa2020-10-26 10:31:17 +01004351 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau25e51522016-11-04 15:10:17 +01004352 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01004353 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004354 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Christopher Fauletf7474aa2020-10-26 10:31:17 +01004355 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004356 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004357
4358 return_code |= ERR_ALERT | ERR_FATAL;
4359 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01004360out:
4361 srv_set_dyncookie(srv);
4362 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01004363}
4364
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004365/*
4366 * This function parses all backends and all servers within each backend
4367 * and performs servers' addr resolution based on information provided by:
4368 * - configuration file
4369 * - server-state file (states provided by an 'old' haproxy process)
4370 *
4371 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
4372 */
4373int srv_init_addr(void)
4374{
4375 struct proxy *curproxy;
4376 int return_code = 0;
4377
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004378 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004379 while (curproxy) {
4380 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004381
4382 /* servers are in backend only */
Amaury Denoyelle2f55daf2021-01-06 14:28:50 +01004383 if (!(curproxy->cap & PR_CAP_BE) || curproxy->state == PR_STSTOPPED)
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004384 goto srv_init_addr_next;
4385
Willy Tarreau25e51522016-11-04 15:10:17 +01004386 for (srv = curproxy->srv; srv; srv = srv->next)
Christopher Fauletf7474aa2020-10-26 10:31:17 +01004387 if (srv->hostname || srv->srvrq)
Willy Tarreau3d609a72017-09-06 14:22:45 +02004388 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004389
4390 srv_init_addr_next:
4391 curproxy = curproxy->next;
4392 }
4393
4394 return return_code;
4395}
4396
Willy Tarreau46b7f532018-08-21 11:54:26 +02004397/*
4398 * Must be called with the server lock held.
4399 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004400const 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 +02004401{
4402
Willy Tarreau83061a82018-07-13 11:56:34 +02004403 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004404
4405 msg = get_trash_chunk();
4406 chunk_reset(msg);
4407
Olivier Houchard8da5f982017-08-04 18:35:36 +02004408 if (server->hostname && !strcmp(fqdn, server->hostname)) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004409 chunk_appendf(msg, "no need to change the FDQN");
4410 goto out;
4411 }
4412
4413 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4414 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4415 goto out;
4416 }
4417
4418 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4419 server->proxy->id, server->id, server->hostname, fqdn);
4420
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004421 if (srv_set_fqdn(server, fqdn, dns_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004422 chunk_reset(msg);
4423 chunk_appendf(msg, "could not update %s/%s FQDN",
4424 server->proxy->id, server->id);
4425 goto out;
4426 }
4427
4428 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004429 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004430
4431 out:
4432 if (updater)
4433 chunk_appendf(msg, " by '%s'", updater);
4434 chunk_appendf(msg, "\n");
4435
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004436 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004437}
4438
4439
Willy Tarreau21b069d2016-11-23 17:15:08 +01004440/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4441 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004442 * 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 +01004443 * used for CLI commands requiring a server name.
4444 * Important: the <arg> is modified to remove the '/'.
4445 */
4446struct server *cli_find_server(struct appctx *appctx, char *arg)
4447{
4448 struct proxy *px;
4449 struct server *sv;
4450 char *line;
4451
4452 /* split "backend/server" and make <line> point to server */
4453 for (line = arg; *line; line++)
4454 if (*line == '/') {
4455 *line++ = '\0';
4456 break;
4457 }
4458
4459 if (!*line || !*arg) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004460 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004461 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004462 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004463 return NULL;
4464 }
4465
4466 if (!get_backend_server(arg, line, &px, &sv)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004467 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004468 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004469 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004470 return NULL;
4471 }
4472
4473 if (px->state == PR_STSTOPPED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004474 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004475 appctx->ctx.cli.msg = "Proxy is disabled.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004476 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004477 return NULL;
4478 }
4479
4480 return sv;
4481}
4482
William Lallemand222baf22016-11-19 02:00:33 +01004483
Willy Tarreau46b7f532018-08-21 11:54:26 +02004484/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004485static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004486{
4487 struct server *sv;
4488 const char *warning;
4489
4490 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4491 return 1;
4492
4493 sv = cli_find_server(appctx, args[2]);
4494 if (!sv)
4495 return 1;
4496
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004497 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02004498
William Lallemand222baf22016-11-19 02:00:33 +01004499 if (strcmp(args[3], "weight") == 0) {
4500 warning = server_parse_weight_change_request(sv, args[4]);
4501 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004502 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004503 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004504 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004505 }
4506 }
4507 else if (strcmp(args[3], "state") == 0) {
4508 if (strcmp(args[4], "ready") == 0)
4509 srv_adm_set_ready(sv);
4510 else if (strcmp(args[4], "drain") == 0)
4511 srv_adm_set_drain(sv);
4512 else if (strcmp(args[4], "maint") == 0)
4513 srv_adm_set_maint(sv);
4514 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004515 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004516 appctx->ctx.cli.msg = "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004517 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004518 }
4519 }
4520 else if (strcmp(args[3], "health") == 0) {
4521 if (sv->track) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004522 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004523 appctx->ctx.cli.msg = "cannot change health on a tracking server.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004524 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004525 }
4526 else if (strcmp(args[4], "up") == 0) {
4527 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004528 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004529 }
4530 else if (strcmp(args[4], "stopping") == 0) {
4531 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004532 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004533 }
4534 else if (strcmp(args[4], "down") == 0) {
4535 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004536 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004537 }
4538 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004539 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004540 appctx->ctx.cli.msg = "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004541 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004542 }
4543 }
4544 else if (strcmp(args[3], "agent") == 0) {
4545 if (!(sv->agent.state & CHK_ST_ENABLED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004546 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004547 appctx->ctx.cli.msg = "agent checks are not enabled on this server.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004548 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004549 }
4550 else if (strcmp(args[4], "up") == 0) {
4551 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004552 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004553 }
4554 else if (strcmp(args[4], "down") == 0) {
4555 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004556 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004557 }
4558 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004559 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004560 appctx->ctx.cli.msg = "'set server <srv> agent' expects 'up' or 'down'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004561 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004562 }
4563 }
Misiek2da082d2017-01-09 09:40:42 +01004564 else if (strcmp(args[3], "agent-addr") == 0) {
4565 if (!(sv->agent.state & CHK_ST_ENABLED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004566 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004567 appctx->ctx.cli.msg = "agent checks are not enabled on this server.\n";
4568 appctx->st0 = CLI_ST_PRINT;
4569 } else {
4570 if (str2ip(args[4], &sv->agent.addr) == NULL) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004571 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004572 appctx->ctx.cli.msg = "incorrect addr address given for agent.\n";
4573 appctx->st0 = CLI_ST_PRINT;
4574 }
4575 }
4576 }
4577 else if (strcmp(args[3], "agent-send") == 0) {
4578 if (!(sv->agent.state & CHK_ST_ENABLED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004579 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004580 appctx->ctx.cli.msg = "agent checks are not enabled on this server.\n";
4581 appctx->st0 = CLI_ST_PRINT;
4582 } else {
4583 char *nss = strdup(args[4]);
4584 if (!nss) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004585 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004586 appctx->ctx.cli.msg = "cannot allocate memory for new string.\n";
4587 appctx->st0 = CLI_ST_PRINT;
4588 } else {
4589 free(sv->agent.send_string);
4590 sv->agent.send_string = nss;
4591 sv->agent.send_string_len = strlen(args[4]);
4592 }
4593 }
4594 }
William Lallemand222baf22016-11-19 02:00:33 +01004595 else if (strcmp(args[3], "check-port") == 0) {
4596 int i = 0;
4597 if (strl2irc(args[4], strlen(args[4]), &i) != 0) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004598 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004599 appctx->ctx.cli.msg = "'set server <srv> check-port' expects an integer as argument.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004600 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004601 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004602 }
4603 if ((i < 0) || (i > 65535)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004604 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004605 appctx->ctx.cli.msg = "provided port is not valid.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004606 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004607 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004608 }
4609 /* prevent the update of port to 0 if MAPPORTS are in use */
4610 if ((sv->flags & SRV_F_MAPPORTS) && (i == 0)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004611 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004612 appctx->ctx.cli.msg = "can't unset 'port' since MAPPORTS is in use.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004613 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004614 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004615 }
4616 sv->check.port = i;
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004617 appctx->ctx.cli.severity = LOG_NOTICE;
William Lallemand222baf22016-11-19 02:00:33 +01004618 appctx->ctx.cli.msg = "health check port updated.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004619 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004620 }
4621 else if (strcmp(args[3], "addr") == 0) {
4622 char *addr = NULL;
4623 char *port = NULL;
4624 if (strlen(args[4]) == 0) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004625 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004626 appctx->ctx.cli.msg = "set server <b>/<s> addr requires an address and optionally a port.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004627 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004628 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004629 }
4630 else {
4631 addr = args[4];
4632 }
4633 if (strcmp(args[5], "port") == 0) {
4634 port = args[6];
4635 }
4636 warning = update_server_addr_port(sv, addr, port, "stats socket command");
4637 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004638 appctx->ctx.cli.severity = LOG_WARNING;
William Lallemand222baf22016-11-19 02:00:33 +01004639 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004640 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004641 }
4642 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
4643 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004644 else if (strcmp(args[3], "fqdn") == 0) {
4645 if (!*args[4]) {
Willy Tarreaua0752582017-11-05 10:17:49 +01004646 appctx->ctx.cli.severity = LOG_ERR;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004647 appctx->ctx.cli.msg = "set server <b>/<s> fqdn requires a FQDN.\n";
4648 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004649 goto out_unlock;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004650 }
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004651 warning = update_server_fqdn(sv, args[4], "stats socket command", 0);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004652 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004653 appctx->ctx.cli.severity = LOG_WARNING;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004654 appctx->ctx.cli.msg = warning;
4655 appctx->st0 = CLI_ST_PRINT;
4656 }
4657 }
William Lallemand222baf22016-11-19 02:00:33 +01004658 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004659 appctx->ctx.cli.severity = LOG_ERR;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004660 appctx->ctx.cli.msg = "'set server <srv>' only supports 'agent', 'health', 'state', 'weight', 'addr', 'fqdn' and 'check-port'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004661 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004662 }
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004663 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004664 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004665 return 1;
4666}
4667
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004668static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004669{
4670 struct stream_interface *si = appctx->owner;
4671 struct proxy *px;
4672 struct server *sv;
4673 char *line;
4674
4675
4676 /* split "backend/server" and make <line> point to server */
4677 for (line = args[2]; *line; line++)
4678 if (*line == '/') {
4679 *line++ = '\0';
4680 break;
4681 }
4682
4683 if (!*line) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004684 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand6b160942016-11-22 12:34:35 +01004685 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004686 appctx->st0 = CLI_ST_PRINT;
William Lallemand6b160942016-11-22 12:34:35 +01004687 return 1;
4688 }
4689
4690 if (!get_backend_server(args[2], line, &px, &sv)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004691 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand6b160942016-11-22 12:34:35 +01004692 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004693 appctx->st0 = CLI_ST_PRINT;
William Lallemand6b160942016-11-22 12:34:35 +01004694 return 1;
4695 }
4696
4697 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004698 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4699 sv->iweight);
4700 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004701 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004702 return 0;
4703 }
William Lallemand6b160942016-11-22 12:34:35 +01004704 return 1;
4705}
4706
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004707/* Parse a "set weight" command.
4708 *
4709 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004710 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004711static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004712{
4713 struct server *sv;
4714 const char *warning;
4715
4716 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4717 return 1;
4718
4719 sv = cli_find_server(appctx, args[2]);
4720 if (!sv)
4721 return 1;
4722
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004723 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4724
William Lallemand6b160942016-11-22 12:34:35 +01004725 warning = server_parse_weight_change_request(sv, args[3]);
4726 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004727 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand6b160942016-11-22 12:34:35 +01004728 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004729 appctx->st0 = CLI_ST_PRINT;
William Lallemand6b160942016-11-22 12:34:35 +01004730 }
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004731
4732 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4733
William Lallemand6b160942016-11-22 12:34:35 +01004734 return 1;
4735}
4736
Willy Tarreau46b7f532018-08-21 11:54:26 +02004737/* parse a "set maxconn server" command. It always returns 1.
4738 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004739 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004740 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004741static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004742{
4743 struct server *sv;
4744 const char *warning;
4745
4746 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4747 return 1;
4748
4749 sv = cli_find_server(appctx, args[3]);
4750 if (!sv)
4751 return 1;
4752
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004753 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4754
Willy Tarreaub8026272016-11-23 11:26:56 +01004755 warning = server_parse_maxconn_change_request(sv, args[4]);
4756 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004757 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreaub8026272016-11-23 11:26:56 +01004758 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004759 appctx->st0 = CLI_ST_PRINT;
Willy Tarreaub8026272016-11-23 11:26:56 +01004760 }
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004761
4762 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4763
Willy Tarreaub8026272016-11-23 11:26:56 +01004764 return 1;
4765}
William Lallemand6b160942016-11-22 12:34:35 +01004766
Willy Tarreau46b7f532018-08-21 11:54:26 +02004767/* parse a "disable agent" command. It always returns 1.
4768 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004769 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004770 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004771static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004772{
4773 struct server *sv;
4774
4775 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4776 return 1;
4777
4778 sv = cli_find_server(appctx, args[2]);
4779 if (!sv)
4780 return 1;
4781
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004782 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004783 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004784 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004785 return 1;
4786}
4787
Willy Tarreau46b7f532018-08-21 11:54:26 +02004788/* parse a "disable health" command. It always returns 1.
4789 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004790 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004791 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004792static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004793{
4794 struct server *sv;
4795
4796 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4797 return 1;
4798
4799 sv = cli_find_server(appctx, args[2]);
4800 if (!sv)
4801 return 1;
4802
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004803 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004804 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004805 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004806 return 1;
4807}
4808
Willy Tarreau46b7f532018-08-21 11:54:26 +02004809/* parse a "disable server" command. It always returns 1.
4810 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004811 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004812 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004813static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004814{
4815 struct server *sv;
4816
4817 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4818 return 1;
4819
4820 sv = cli_find_server(appctx, args[2]);
4821 if (!sv)
4822 return 1;
4823
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004824 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004825 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004826 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004827 return 1;
4828}
4829
Willy Tarreau46b7f532018-08-21 11:54:26 +02004830/* parse a "enable agent" command. It always returns 1.
4831 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004832 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004833 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004834static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004835{
4836 struct server *sv;
4837
4838 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4839 return 1;
4840
4841 sv = cli_find_server(appctx, args[2]);
4842 if (!sv)
4843 return 1;
4844
4845 if (!(sv->agent.state & CHK_ST_CONFIGURED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004846 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004847 appctx->ctx.cli.msg = "Agent was not configured on this server, cannot enable.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004848 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004849 return 1;
4850 }
4851
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004852 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004853 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004854 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004855 return 1;
4856}
4857
Willy Tarreau46b7f532018-08-21 11:54:26 +02004858/* parse a "enable health" command. It always returns 1.
4859 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004860 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004861 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004862static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004863{
4864 struct server *sv;
4865
4866 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4867 return 1;
4868
4869 sv = cli_find_server(appctx, args[2]);
4870 if (!sv)
4871 return 1;
4872
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004873 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004874 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004875 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004876 return 1;
4877}
4878
Willy Tarreau46b7f532018-08-21 11:54:26 +02004879/* parse a "enable server" command. It always returns 1.
4880 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004881 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004882 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004883static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004884{
4885 struct server *sv;
4886
4887 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4888 return 1;
4889
4890 sv = cli_find_server(appctx, args[2]);
4891 if (!sv)
4892 return 1;
4893
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004894 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004895 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004896 if (!(sv->flags & SRV_F_COOKIESET)
4897 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4898 sv->cookie)
4899 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004900 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004901 return 1;
4902}
4903
William Lallemand222baf22016-11-19 02:00:33 +01004904/* register cli keywords */
4905static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004906 { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004907 { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004908 { { "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 +01004909 { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004910 { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004911 { { "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 +01004912 { { "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 +01004913 { { "set", "server", NULL }, "set server : change a server's state, weight or address", cli_parse_set_server },
William Lallemand6b160942016-11-22 12:34:35 +01004914 { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight },
4915 { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight },
4916
William Lallemand222baf22016-11-19 02:00:33 +01004917 {{},}
4918}};
4919
Willy Tarreau0108d902018-11-25 19:14:37 +01004920INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004921
Emeric Brun64cc49c2017-10-03 14:46:45 +02004922/*
4923 * This function applies server's status changes, it is
4924 * is designed to be called asynchronously.
4925 *
Willy Tarreau228d60e2020-10-22 11:30:59 +02004926 * Must be called with the server lock held. This may also be called at init
4927 * time as the result of parsing the state file, in which case no lock will be
4928 * held, and the server's warmup task can be null.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004929 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004930static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004931{
4932 struct check *check = &s->check;
4933 int xferred;
4934 struct proxy *px = s->proxy;
4935 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4936 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4937 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004938 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004939
Emeric Brun64cc49c2017-10-03 14:46:45 +02004940 /* If currently main is not set we try to apply pending state changes */
4941 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4942 int next_admin;
4943
4944 /* Backup next admin */
4945 next_admin = s->next_admin;
4946
4947 /* restore current admin state */
4948 s->next_admin = s->cur_admin;
4949
4950 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4951 s->last_change = now.tv_sec;
4952 if (s->proxy->lbprm.set_server_status_down)
4953 s->proxy->lbprm.set_server_status_down(s);
4954
4955 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4956 srv_shutdown_streams(s, SF_ERR_DOWN);
4957
4958 /* we might have streams queued on this server and waiting for
4959 * a connection. Those which are redispatchable will be queued
4960 * to another server or to the proxy itself.
4961 */
4962 xferred = pendconn_redistribute(s);
4963
4964 tmptrash = alloc_trash_chunk();
4965 if (tmptrash) {
4966 chunk_printf(tmptrash,
4967 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4968 s->proxy->id, s->id);
4969
Emeric Brun5a133512017-10-19 14:42:30 +02004970 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004971 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004972
4973 /* we don't send an alert if the server was previously paused */
4974 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004975 send_log(s->proxy, log_level, "%s.\n",
4976 tmptrash->area);
4977 send_email_alert(s, log_level, "%s",
4978 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004979 free_trash_chunk(tmptrash);
4980 tmptrash = NULL;
4981 }
4982 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4983 set_backend_down(s->proxy);
4984
4985 s->counters.down_trans++;
4986 }
4987 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4988 s->last_change = now.tv_sec;
4989 if (s->proxy->lbprm.set_server_status_down)
4990 s->proxy->lbprm.set_server_status_down(s);
4991
4992 /* we might have streams queued on this server and waiting for
4993 * a connection. Those which are redispatchable will be queued
4994 * to another server or to the proxy itself.
4995 */
4996 xferred = pendconn_redistribute(s);
4997
4998 tmptrash = alloc_trash_chunk();
4999 if (tmptrash) {
5000 chunk_printf(tmptrash,
5001 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
5002 s->proxy->id, s->id);
5003
Emeric Brun5a133512017-10-19 14:42:30 +02005004 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005005
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005006 ha_warning("%s.\n", tmptrash->area);
5007 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5008 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005009 free_trash_chunk(tmptrash);
5010 tmptrash = NULL;
5011 }
5012
5013 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5014 set_backend_down(s->proxy);
5015 }
5016 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
5017 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
5018 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5019 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5020 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5021 s->proxy->last_change = now.tv_sec;
5022 }
5023
Amaury Denoyellec1bd4bd2020-10-29 15:59:04 +01005024 if (s->cur_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
Emeric Brun64cc49c2017-10-03 14:46:45 +02005025 s->down_time += now.tv_sec - s->last_change;
5026
5027 s->last_change = now.tv_sec;
Willy Tarreau228d60e2020-10-22 11:30:59 +02005028 if (s->next_state == SRV_ST_STARTING && s->warmup)
Emeric Brun64cc49c2017-10-03 14:46:45 +02005029 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5030
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005031 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005032 /* now propagate the status change to any LB algorithms */
5033 if (px->lbprm.update_server_eweight)
5034 px->lbprm.update_server_eweight(s);
5035 else if (srv_willbe_usable(s)) {
5036 if (px->lbprm.set_server_status_up)
5037 px->lbprm.set_server_status_up(s);
5038 }
5039 else {
5040 if (px->lbprm.set_server_status_down)
5041 px->lbprm.set_server_status_down(s);
5042 }
5043
5044 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5045 * and it's not a backup server and its effective weight is > 0,
5046 * then it can accept new connections, so we shut down all streams
5047 * on all backup servers.
5048 */
5049 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5050 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5051 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5052
5053 /* check if we can handle some connections queued at the proxy. We
5054 * will take as many as we can handle.
5055 */
5056 xferred = pendconn_grab_from_px(s);
5057
5058 tmptrash = alloc_trash_chunk();
5059 if (tmptrash) {
5060 chunk_printf(tmptrash,
5061 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
5062 s->proxy->id, s->id);
5063
Emeric Brun5a133512017-10-19 14:42:30 +02005064 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005065 ha_warning("%s.\n", tmptrash->area);
5066 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5067 tmptrash->area);
5068 send_email_alert(s, LOG_NOTICE, "%s",
5069 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005070 free_trash_chunk(tmptrash);
5071 tmptrash = NULL;
5072 }
5073
5074 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5075 set_backend_down(s->proxy);
5076 }
5077 else if (s->cur_eweight != s->next_eweight) {
5078 /* now propagate the status change to any LB algorithms */
5079 if (px->lbprm.update_server_eweight)
5080 px->lbprm.update_server_eweight(s);
5081 else if (srv_willbe_usable(s)) {
5082 if (px->lbprm.set_server_status_up)
5083 px->lbprm.set_server_status_up(s);
5084 }
5085 else {
5086 if (px->lbprm.set_server_status_down)
5087 px->lbprm.set_server_status_down(s);
5088 }
5089
5090 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5091 set_backend_down(s->proxy);
5092 }
5093
5094 s->next_admin = next_admin;
5095 }
5096
Emeric Brun5a133512017-10-19 14:42:30 +02005097 /* reset operational state change */
5098 *s->op_st_chg.reason = 0;
5099 s->op_st_chg.status = s->op_st_chg.code = -1;
5100 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005101
5102 /* Now we try to apply pending admin changes */
5103
5104 /* Maintenance must also disable health checks */
5105 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
5106 if (s->check.state & CHK_ST_ENABLED) {
5107 s->check.state |= CHK_ST_PAUSED;
5108 check->health = 0;
5109 }
5110
5111 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02005112 tmptrash = alloc_trash_chunk();
5113 if (tmptrash) {
5114 chunk_printf(tmptrash,
5115 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
5116 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5117 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02005118
Olivier Houchard796a2b32017-10-24 17:42:47 +02005119 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02005120
Olivier Houchard796a2b32017-10-24 17:42:47 +02005121 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005122 ha_warning("%s.\n", tmptrash->area);
5123 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5124 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02005125 }
5126 free_trash_chunk(tmptrash);
5127 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005128 }
Emeric Brun8f298292017-12-06 16:47:17 +01005129 /* commit new admin status */
5130
5131 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005132 }
5133 else { /* server was still running */
5134 check->health = 0; /* failure */
5135 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01005136
5137 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005138 if (s->proxy->lbprm.set_server_status_down)
5139 s->proxy->lbprm.set_server_status_down(s);
5140
Emeric Brun64cc49c2017-10-03 14:46:45 +02005141 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
5142 srv_shutdown_streams(s, SF_ERR_DOWN);
5143
5144 /* we might have streams queued on this server and waiting for
5145 * a connection. Those which are redispatchable will be queued
5146 * to another server or to the proxy itself.
5147 */
5148 xferred = pendconn_redistribute(s);
5149
5150 tmptrash = alloc_trash_chunk();
5151 if (tmptrash) {
5152 chunk_printf(tmptrash,
5153 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
5154 s->flags & SRV_F_BACKUP ? "Backup " : "",
5155 s->proxy->id, s->id,
5156 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5157
5158 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
5159
5160 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005161 ha_warning("%s.\n", tmptrash->area);
5162 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
5163 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005164 }
5165 free_trash_chunk(tmptrash);
5166 tmptrash = NULL;
5167 }
5168 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5169 set_backend_down(s->proxy);
5170
5171 s->counters.down_trans++;
5172 }
5173 }
5174 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
5175 /* OK here we're leaving maintenance, we have many things to check,
5176 * because the server might possibly be coming back up depending on
5177 * its state. In practice, leaving maintenance means that we should
5178 * immediately turn to UP (more or less the slowstart) under the
5179 * following conditions :
5180 * - server is neither checked nor tracked
5181 * - server tracks another server which is not checked
5182 * - server tracks another server which is already up
5183 * Which sums up as something simpler :
5184 * "either the tracking server is up or the server's checks are disabled
5185 * or up". Otherwise we only re-enable health checks. There's a special
5186 * case associated to the stopping state which can be inherited. Note
5187 * that the server might still be in drain mode, which is naturally dealt
5188 * with by the lower level functions.
5189 */
5190
5191 if (s->check.state & CHK_ST_ENABLED) {
5192 s->check.state &= ~CHK_ST_PAUSED;
5193 check->health = check->rise; /* start OK but check immediately */
5194 }
5195
5196 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
5197 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
5198 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
5199 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
5200 s->next_state = SRV_ST_STOPPING;
5201 }
5202 else {
5203 s->next_state = SRV_ST_STARTING;
Willy Tarreau228d60e2020-10-22 11:30:59 +02005204 if (s->slowstart > 0) {
5205 if (s->warmup)
5206 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5207 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005208 else
5209 s->next_state = SRV_ST_RUNNING;
5210 }
5211
5212 }
5213
5214 tmptrash = alloc_trash_chunk();
5215 if (tmptrash) {
5216 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5217 chunk_printf(tmptrash,
5218 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
5219 s->flags & SRV_F_BACKUP ? "Backup " : "",
5220 s->proxy->id, s->id,
5221 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5222 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5223 }
5224 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5225 chunk_printf(tmptrash,
5226 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
5227 s->flags & SRV_F_BACKUP ? "Backup " : "",
5228 s->proxy->id, s->id, s->hostname,
5229 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5230 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5231 }
5232 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5233 chunk_printf(tmptrash,
5234 "%sServer %s/%s is %s/%s (leaving maintenance)",
5235 s->flags & SRV_F_BACKUP ? "Backup " : "",
5236 s->proxy->id, s->id,
5237 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5238 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5239 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005240 ha_warning("%s.\n", tmptrash->area);
5241 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5242 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005243 free_trash_chunk(tmptrash);
5244 tmptrash = NULL;
5245 }
5246
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005247 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005248 /* now propagate the status change to any LB algorithms */
5249 if (px->lbprm.update_server_eweight)
5250 px->lbprm.update_server_eweight(s);
5251 else if (srv_willbe_usable(s)) {
5252 if (px->lbprm.set_server_status_up)
5253 px->lbprm.set_server_status_up(s);
5254 }
5255 else {
5256 if (px->lbprm.set_server_status_down)
5257 px->lbprm.set_server_status_down(s);
5258 }
5259
5260 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5261 set_backend_down(s->proxy);
5262
Willy Tarreau6a78e612018-08-07 10:14:53 +02005263 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5264 * and it's not a backup server and its effective weight is > 0,
5265 * then it can accept new connections, so we shut down all streams
5266 * on all backup servers.
5267 */
5268 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5269 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5270 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5271
5272 /* check if we can handle some connections queued at the proxy. We
5273 * will take as many as we can handle.
5274 */
5275 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005276 }
5277 else if (s->next_admin & SRV_ADMF_MAINT) {
5278 /* remaining in maintenance mode, let's inform precisely about the
5279 * situation.
5280 */
5281 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5282 tmptrash = alloc_trash_chunk();
5283 if (tmptrash) {
5284 chunk_printf(tmptrash,
5285 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5286 s->flags & SRV_F_BACKUP ? "Backup " : "",
5287 s->proxy->id, s->id);
5288
5289 if (s->track) /* normally it's mandatory here */
5290 chunk_appendf(tmptrash, " via %s/%s",
5291 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005292 ha_warning("%s.\n", tmptrash->area);
5293 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5294 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005295 free_trash_chunk(tmptrash);
5296 tmptrash = NULL;
5297 }
5298 }
5299 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5300 tmptrash = alloc_trash_chunk();
5301 if (tmptrash) {
5302 chunk_printf(tmptrash,
5303 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5304 s->flags & SRV_F_BACKUP ? "Backup " : "",
5305 s->proxy->id, s->id, s->hostname);
5306
5307 if (s->track) /* normally it's mandatory here */
5308 chunk_appendf(tmptrash, " via %s/%s",
5309 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005310 ha_warning("%s.\n", tmptrash->area);
5311 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5312 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005313 free_trash_chunk(tmptrash);
5314 tmptrash = NULL;
5315 }
5316 }
5317 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5318 tmptrash = alloc_trash_chunk();
5319 if (tmptrash) {
5320 chunk_printf(tmptrash,
5321 "%sServer %s/%s remains in forced maintenance",
5322 s->flags & SRV_F_BACKUP ? "Backup " : "",
5323 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005324 ha_warning("%s.\n", tmptrash->area);
5325 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5326 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005327 free_trash_chunk(tmptrash);
5328 tmptrash = NULL;
5329 }
5330 }
5331 /* don't report anything when leaving drain mode and remaining in maintenance */
5332
5333 s->cur_admin = s->next_admin;
5334 }
5335
5336 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5337 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5338 /* drain state is applied only if not yet in maint */
5339
5340 s->last_change = now.tv_sec;
5341 if (px->lbprm.set_server_status_down)
5342 px->lbprm.set_server_status_down(s);
5343
5344 /* we might have streams queued on this server and waiting for
5345 * a connection. Those which are redispatchable will be queued
5346 * to another server or to the proxy itself.
5347 */
5348 xferred = pendconn_redistribute(s);
5349
5350 tmptrash = alloc_trash_chunk();
5351 if (tmptrash) {
5352 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5353 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5354 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5355
5356 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5357
5358 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005359 ha_warning("%s.\n", tmptrash->area);
5360 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5361 tmptrash->area);
5362 send_email_alert(s, LOG_NOTICE, "%s",
5363 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005364 }
5365 free_trash_chunk(tmptrash);
5366 tmptrash = NULL;
5367 }
5368
5369 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5370 set_backend_down(s->proxy);
5371 }
5372 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5373 /* OK completely leaving drain mode */
5374 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5375 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5376 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5377 s->proxy->last_change = now.tv_sec;
5378 }
5379
5380 if (s->last_change < now.tv_sec) // ignore negative times
5381 s->down_time += now.tv_sec - s->last_change;
5382 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005383 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005384
5385 tmptrash = alloc_trash_chunk();
5386 if (tmptrash) {
5387 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5388 chunk_printf(tmptrash,
5389 "%sServer %s/%s is %s (leaving forced drain)",
5390 s->flags & SRV_F_BACKUP ? "Backup " : "",
5391 s->proxy->id, s->id,
5392 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5393 }
5394 else {
5395 chunk_printf(tmptrash,
5396 "%sServer %s/%s is %s (leaving drain)",
5397 s->flags & SRV_F_BACKUP ? "Backup " : "",
5398 s->proxy->id, s->id,
5399 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5400 if (s->track) /* normally it's mandatory here */
5401 chunk_appendf(tmptrash, " via %s/%s",
5402 s->track->proxy->id, s->track->id);
5403 }
5404
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005405 ha_warning("%s.\n", tmptrash->area);
5406 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5407 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005408 free_trash_chunk(tmptrash);
5409 tmptrash = NULL;
5410 }
5411
5412 /* now propagate the status change to any LB algorithms */
5413 if (px->lbprm.update_server_eweight)
5414 px->lbprm.update_server_eweight(s);
5415 else if (srv_willbe_usable(s)) {
5416 if (px->lbprm.set_server_status_up)
5417 px->lbprm.set_server_status_up(s);
5418 }
5419 else {
5420 if (px->lbprm.set_server_status_down)
5421 px->lbprm.set_server_status_down(s);
5422 }
5423 }
5424 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5425 /* remaining in drain mode after removing one of its flags */
5426
5427 tmptrash = alloc_trash_chunk();
5428 if (tmptrash) {
5429 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5430 chunk_printf(tmptrash,
5431 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5432 s->flags & SRV_F_BACKUP ? "Backup " : "",
5433 s->proxy->id, s->id);
5434
5435 if (s->track) /* normally it's mandatory here */
5436 chunk_appendf(tmptrash, " via %s/%s",
5437 s->track->proxy->id, s->track->id);
5438 }
5439 else {
5440 chunk_printf(tmptrash,
5441 "%sServer %s/%s remains in forced drain mode",
5442 s->flags & SRV_F_BACKUP ? "Backup " : "",
5443 s->proxy->id, s->id);
5444 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005445 ha_warning("%s.\n", tmptrash->area);
5446 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5447 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005448 free_trash_chunk(tmptrash);
5449 tmptrash = NULL;
5450 }
5451
5452 /* commit new admin status */
5453
5454 s->cur_admin = s->next_admin;
5455 }
5456 }
5457
5458 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005459 *s->adm_st_chg_cause = 0;
5460}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005461
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005462struct task *srv_cleanup_toremove_connections(struct task *task, void *context, unsigned short state)
5463{
5464 struct connection *conn;
5465
5466 while ((conn = LIST_POP_LOCKED(&toremove_connections[tid],
5467 struct connection *, list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005468 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005469 }
5470
5471 return task;
5472}
5473
Willy Tarreau980855b2019-02-07 14:59:29 +01005474struct task *srv_cleanup_idle_connections(struct task *task, void *context, unsigned short state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005475{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005476 struct server *srv;
5477 struct eb32_node *eb;
5478 int i;
5479 unsigned int next_wakeup;
5480 int need_wakeup = 0;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005481
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005482 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5483 while (1) {
5484 int srv_is_empty = 1;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005485
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005486 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5487 if (!eb) {
5488 /* we might have reached the end of the tree, typically because
5489 * <now_ms> is in the first half and we're first scanning the last
5490 * half. Let's loop back to the beginning of the tree now.
5491 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005492
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005493 eb = eb32_first(&idle_conn_srv);
5494 if (likely(!eb))
5495 break;
5496 }
5497 if (tick_is_lt(now_ms, eb->key)) {
5498 /* timer not expired yet, revisit it later */
5499 next_wakeup = eb->key;
5500 need_wakeup = 1;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005501 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005502 }
5503 srv = eb32_entry(eb, struct server, idle_node);
5504 for (i = 0; i < global.nbthread; i++) {
5505 int max_conn = (srv->curr_idle_thr[i] / 2) +
5506 (srv->curr_idle_thr[i] & 1);
5507 int j;
5508 int did_remove = 0;
5509
Olivier Houchardba936e52019-07-11 15:49:00 +02005510 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[i]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005511 for (j = 0; j < max_conn; j++) {
5512 struct connection *conn = LIST_POP_LOCKED(&srv->idle_orphan_conns[i], struct connection *, list);
5513 if (!conn)
5514 break;
5515 did_remove = 1;
5516 LIST_ADDQ_LOCKED(&toremove_connections[i], &conn->list);
5517 }
Olivier Houchardba936e52019-07-11 15:49:00 +02005518 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[i]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005519 if (did_remove && max_conn < srv->curr_idle_thr[i])
5520 srv_is_empty = 0;
5521 if (did_remove)
5522 task_wakeup(idle_conn_cleanup[i], TASK_WOKEN_OTHER);
5523 }
5524 eb32_delete(&srv->idle_node);
5525 if (!srv_is_empty) {
5526 /* There are still more idle connections, add the
5527 * server back in the tree.
5528 */
5529 srv->idle_node.key = tick_add(srv->pool_purge_delay,
5530 now_ms);
5531 eb32_insert(&idle_conn_srv, &srv->idle_node);
5532 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005533 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005534 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5535
5536 if (need_wakeup)
5537 task->expire = next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005538 else
5539 task->expire = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005540
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005541 return task;
5542}
Olivier Houchard88698d92019-04-16 19:07:22 +02005543
5544/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5545static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
5546 struct proxy *defpx, const char *file, int line,
5547 char **err)
5548{
5549 int arg = -1;
5550
5551 if (too_many_args(1, args, err, NULL))
5552 return -1;
5553
5554 if (*(args[1]) != 0)
5555 arg = atoi(args[1]);
5556
5557 if (arg < 0 || arg > 100) {
5558 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5559 return -1;
5560 }
5561
5562 if (args[0][10] == 'h')
5563 global.tune.pool_high_ratio = arg;
5564 else
5565 global.tune.pool_low_ratio = arg;
5566 return 0;
5567}
5568
5569/* config keyword parsers */
5570static struct cfg_kw_list cfg_kws = {ILH, {
5571 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5572 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5573 { 0, NULL, NULL }
5574}};
5575
5576INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5577
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005578/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005579 * Local variables:
5580 * c-indent-level: 8
5581 * c-basic-offset: 8
5582 * End:
5583 */