blob: e710b4810ce853918abcf1b8090e7340053b5560 [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
Baptiste Assmannda29fe22019-06-13 13:24:29 +020050#include <ebsttree.h>
51
Willy Tarreau3ff577e2018-08-02 11:48:52 +020052static void srv_update_status(struct server *s);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020053static void srv_update_state(struct server *srv, int version, char **params);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +010054static int srv_apply_lastaddr(struct server *srv, int *err_code);
Olivier Houchardd16bfe62017-10-31 15:21:19 +010055static int srv_set_fqdn(struct server *srv, const char *fqdn, int dns_locked);
Baptiste Assmannda29fe22019-06-13 13:24:29 +020056static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params);
57static int srv_state_get_version(FILE *f);
William Dauchy6318d332020-05-02 21:52:36 +020058static void srv_cleanup_connections(struct server *srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +020059
Willy Tarreau21faa912012-10-10 08:27:36 +020060/* List head of all known server keywords */
61static struct srv_kw_list srv_keywords = {
62 .list = LIST_HEAD_INIT(srv_keywords.list)
63};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020064
Olivier Houchard9ea5d362019-02-14 18:29:09 +010065__decl_hathreads(HA_SPINLOCK_T idle_conn_srv_lock);
66struct eb_root idle_conn_srv = EB_ROOT;
67struct task *idle_conn_task = NULL;
68struct task *idle_conn_cleanup[MAX_THREADS] = { NULL };
Olivier Houchard859dc802019-08-08 15:47:21 +020069struct mt_list toremove_connections[MAX_THREADS];
Olivier Houchard4be71902019-07-11 15:49:00 +020070__decl_hathreads(HA_SPINLOCK_T toremove_lock[MAX_THREADS]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010071
Frédéric Lécaille7da71292019-05-20 09:47:07 +020072/* The server names dictionary */
73struct dict server_name_dict = {
74 .name = "server names",
75 .values = EB_ROOT_UNIQUE,
76};
77
Baptiste Assmannda29fe22019-06-13 13:24:29 +020078/* tree where global state_file is loaded */
Willy Tarreaufd1aa012019-12-20 17:23:40 +010079struct eb_root state_file = EB_ROOT_UNIQUE;
Baptiste Assmannda29fe22019-06-13 13:24:29 +020080
Simon Hormana3608442013-11-01 16:46:15 +090081int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020082{
Emeric Brun52a91d32017-08-31 14:41:55 +020083 if ((s->cur_state != SRV_ST_STOPPED) && s->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020084 return s->down_time;
85
86 return now.tv_sec - s->last_change + s->down_time;
87}
Willy Tarreaubaaee002006-06-26 02:48:02 +020088
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050089int srv_lastsession(const struct server *s)
90{
91 if (s->counters.last_sess)
92 return now.tv_sec - s->counters.last_sess;
93
94 return -1;
95}
96
Simon Horman4a741432013-02-23 15:35:38 +090097int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020098{
Simon Horman4a741432013-02-23 15:35:38 +090099 const struct server *s = check->server;
100
Willy Tarreauff5ae352013-12-11 20:36:34 +0100101 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +0900102 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100103
Emeric Brun52a91d32017-08-31 14:41:55 +0200104 if ((s->next_state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +0900105 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100106
Simon Horman4a741432013-02-23 15:35:38 +0900107 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100108}
109
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100110/*
111 * Check that we did not get a hash collision.
112 * Unlikely, but it can happen.
113 */
114static inline void srv_check_for_dup_dyncookie(struct server *s)
Olivier Houchard4e694042017-03-14 20:01:29 +0100115{
116 struct proxy *p = s->proxy;
117 struct server *tmpserv;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100118
119 for (tmpserv = p->srv; tmpserv != NULL;
120 tmpserv = tmpserv->next) {
121 if (tmpserv == s)
122 continue;
123 if (tmpserv->next_admin & SRV_ADMF_FMAINT)
124 continue;
125 if (tmpserv->cookie &&
126 strcmp(tmpserv->cookie, s->cookie) == 0) {
127 ha_warning("We generated two equal cookies for two different servers.\n"
128 "Please change the secret key for '%s'.\n",
129 s->proxy->id);
130 }
131 }
132
133}
134
Willy Tarreau46b7f532018-08-21 11:54:26 +0200135/*
Willy Tarreau5e83d992019-07-30 11:59:34 +0200136 * Must be called with the server lock held, and will grab the proxy lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200137 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100138void srv_set_dyncookie(struct server *s)
139{
140 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100141 char *tmpbuf;
142 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100143 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100144 size_t buffer_len;
145 int addr_len;
146 int port;
147
Willy Tarreau5e83d992019-07-30 11:59:34 +0200148 HA_SPIN_LOCK(PROXY_LOCK, &p->lock);
149
Olivier Houchard4e694042017-03-14 20:01:29 +0100150 if ((s->flags & SRV_F_COOKIESET) ||
151 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
152 s->proxy->dyncookie_key == NULL)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200153 goto out;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100154 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100155
156 if (s->addr.ss_family != AF_INET &&
157 s->addr.ss_family != AF_INET6)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200158 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100159 /*
160 * Buffer to calculate the cookie value.
161 * The buffer contains the secret key + the server IP address
162 * + the TCP port.
163 */
164 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
165 /*
166 * The TCP port should use only 2 bytes, but is stored in
167 * an unsigned int in struct server, so let's use 4, to be
168 * on the safe side.
169 */
170 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200171 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100172 memcpy(tmpbuf, p->dyncookie_key, key_len);
173 memcpy(&(tmpbuf[key_len]),
174 s->addr.ss_family == AF_INET ?
175 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
176 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
177 addr_len);
178 /*
179 * Make sure it's the same across all the load balancers,
180 * no matter their endianness.
181 */
182 port = htonl(s->svc_port);
183 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
184 hash_value = XXH64(tmpbuf, buffer_len, 0);
185 memprintf(&s->cookie, "%016llx", hash_value);
186 if (!s->cookie)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200187 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100188 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100189
190 /* Don't bother checking if the dyncookie is duplicated if
191 * the server is marked as "disabled", maybe it doesn't have
192 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100193 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100194 if (!(s->next_admin & SRV_ADMF_FMAINT))
195 srv_check_for_dup_dyncookie(s);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200196 out:
197 HA_SPIN_UNLOCK(PROXY_LOCK, &p->lock);
Olivier Houchard4e694042017-03-14 20:01:29 +0100198}
199
Willy Tarreau21faa912012-10-10 08:27:36 +0200200/*
201 * Registers the server keyword list <kwl> as a list of valid keywords for next
202 * parsing sessions.
203 */
204void srv_register_keywords(struct srv_kw_list *kwl)
205{
206 LIST_ADDQ(&srv_keywords.list, &kwl->list);
207}
208
209/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
210 * keyword is found with a NULL ->parse() function, then an attempt is made to
211 * find one with a valid ->parse() function. This way it is possible to declare
212 * platform-dependant, known keywords as NULL, then only declare them as valid
213 * if some options are met. Note that if the requested keyword contains an
214 * opening parenthesis, everything from this point is ignored.
215 */
216struct srv_kw *srv_find_kw(const char *kw)
217{
218 int index;
219 const char *kwend;
220 struct srv_kw_list *kwl;
221 struct srv_kw *ret = NULL;
222
223 kwend = strchr(kw, '(');
224 if (!kwend)
225 kwend = kw + strlen(kw);
226
227 list_for_each_entry(kwl, &srv_keywords.list, list) {
228 for (index = 0; kwl->kw[index].kw != NULL; index++) {
229 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
230 kwl->kw[index].kw[kwend-kw] == 0) {
231 if (kwl->kw[index].parse)
232 return &kwl->kw[index]; /* found it !*/
233 else
234 ret = &kwl->kw[index]; /* may be OK */
235 }
236 }
237 }
238 return ret;
239}
240
241/* Dumps all registered "server" keywords to the <out> string pointer. The
242 * unsupported keywords are only dumped if their supported form was not
243 * found.
244 */
245void srv_dump_kws(char **out)
246{
247 struct srv_kw_list *kwl;
248 int index;
249
Christopher Faulet784063e2020-05-18 12:14:18 +0200250 if (!out)
251 return;
252
Willy Tarreau21faa912012-10-10 08:27:36 +0200253 *out = NULL;
254 list_for_each_entry(kwl, &srv_keywords.list, list) {
255 for (index = 0; kwl->kw[index].kw != NULL; index++) {
256 if (kwl->kw[index].parse ||
257 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
258 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
259 kwl->scope,
260 kwl->kw[index].kw,
261 kwl->kw[index].skip ? " <arg>" : "",
262 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
263 kwl->kw[index].parse ? "" : " (not supported)");
264 }
265 }
266 }
267}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100268
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100269/* Parse the "backup" server keyword */
270static int srv_parse_backup(char **args, int *cur_arg,
271 struct proxy *curproxy, struct server *newsrv, char **err)
272{
273 newsrv->flags |= SRV_F_BACKUP;
274 return 0;
275}
276
Alexander Liu2a54bb72019-05-22 19:44:48 +0800277
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100278/* Parse the "cookie" server keyword */
279static int srv_parse_cookie(char **args, int *cur_arg,
280 struct proxy *curproxy, struct server *newsrv, char **err)
281{
282 char *arg;
283
284 arg = args[*cur_arg + 1];
285 if (!*arg) {
286 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
287 return ERR_ALERT | ERR_FATAL;
288 }
289
290 free(newsrv->cookie);
291 newsrv->cookie = strdup(arg);
292 newsrv->cklen = strlen(arg);
293 newsrv->flags |= SRV_F_COOKIESET;
294 return 0;
295}
296
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100297/* Parse the "disabled" server keyword */
298static int srv_parse_disabled(char **args, int *cur_arg,
299 struct proxy *curproxy, struct server *newsrv, char **err)
300{
Emeric Brun52a91d32017-08-31 14:41:55 +0200301 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
302 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100303 newsrv->check.state |= CHK_ST_PAUSED;
304 newsrv->check.health = 0;
305 return 0;
306}
307
308/* Parse the "enabled" server keyword */
309static int srv_parse_enabled(char **args, int *cur_arg,
310 struct proxy *curproxy, struct server *newsrv, char **err)
311{
Emeric Brun52a91d32017-08-31 14:41:55 +0200312 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
313 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100314 newsrv->check.state &= ~CHK_ST_PAUSED;
315 newsrv->check.health = newsrv->check.rise;
316 return 0;
317}
318
Willy Tarreau9c538e02019-01-23 10:21:49 +0100319static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
320{
321 char *arg;
322
323 arg = args[*cur_arg + 1];
324 if (!*arg) {
325 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
326 return ERR_ALERT | ERR_FATAL;
327 }
328 newsrv->max_reuse = atoi(arg);
329
330 return 0;
331}
332
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100333static 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 +0100334{
335 const char *res;
336 char *arg;
337 unsigned int time;
338
339 arg = args[*cur_arg + 1];
340 if (!*arg) {
341 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
342 return ERR_ALERT | ERR_FATAL;
343 }
344 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200345 if (res == PARSE_TIME_OVER) {
346 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
347 args[*cur_arg+1], args[*cur_arg]);
348 return ERR_ALERT | ERR_FATAL;
349 }
350 else if (res == PARSE_TIME_UNDER) {
351 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
352 args[*cur_arg+1], args[*cur_arg]);
353 return ERR_ALERT | ERR_FATAL;
354 }
355 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100356 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
357 *res, args[*cur_arg]);
358 return ERR_ALERT | ERR_FATAL;
359 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100360 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100361
362 return 0;
363}
364
Olivier Houchard006e3102018-12-10 18:30:32 +0100365static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
366{
367 char *arg;
368
369 arg = args[*cur_arg + 1];
370 if (!*arg) {
371 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
372 return ERR_ALERT | ERR_FATAL;
373 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100374
Olivier Houchard006e3102018-12-10 18:30:32 +0100375 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100376 if ((int)newsrv->max_idle_conns < -1) {
377 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
378 return ERR_ALERT | ERR_FATAL;
379 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100380
381 return 0;
382}
383
Willy Tarreaudff55432012-10-10 17:51:05 +0200384/* parse the "id" server keyword */
385static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
386{
387 struct eb32_node *node;
388
389 if (!*args[*cur_arg + 1]) {
390 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
391 return ERR_ALERT | ERR_FATAL;
392 }
393
394 newsrv->puid = atol(args[*cur_arg + 1]);
395 newsrv->conf.id.key = newsrv->puid;
396
397 if (newsrv->puid <= 0) {
398 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
399 return ERR_ALERT | ERR_FATAL;
400 }
401
402 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
403 if (node) {
404 struct server *target = container_of(node, struct server, conf.id);
405 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
406 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
407 target->id);
408 return ERR_ALERT | ERR_FATAL;
409 }
410
411 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200412 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200413 return 0;
414}
415
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100416/* Parse the "namespace" server keyword */
417static int srv_parse_namespace(char **args, int *cur_arg,
418 struct proxy *curproxy, struct server *newsrv, char **err)
419{
Willy Tarreaue5733232019-05-22 19:24:06 +0200420#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100421 char *arg;
422
423 arg = args[*cur_arg + 1];
424 if (!*arg) {
425 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
426 return ERR_ALERT | ERR_FATAL;
427 }
428
429 if (!strcmp(arg, "*")) {
430 /* Use the namespace associated with the connection (if present). */
431 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
432 return 0;
433 }
434
435 /*
436 * As this parser may be called several times for the same 'default-server'
437 * object, or for a new 'server' instance deriving from a 'default-server'
438 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
439 */
440 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
441
442 newsrv->netns = netns_store_lookup(arg, strlen(arg));
443 if (!newsrv->netns)
444 newsrv->netns = netns_store_insert(arg);
445
446 if (!newsrv->netns) {
447 memprintf(err, "Cannot open namespace '%s'", arg);
448 return ERR_ALERT | ERR_FATAL;
449 }
450
451 return 0;
452#else
453 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
454 return ERR_ALERT | ERR_FATAL;
455#endif
456}
457
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100458/* Parse the "no-backup" server keyword */
459static int srv_parse_no_backup(char **args, int *cur_arg,
460 struct proxy *curproxy, struct server *newsrv, char **err)
461{
462 newsrv->flags &= ~SRV_F_BACKUP;
463 return 0;
464}
465
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100466
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100467/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200468static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100469{
470 srv->pp_opts &= ~flags;
471 return 0;
472}
473
474/* Parse the "no-send-proxy" server keyword */
475static int srv_parse_no_send_proxy(char **args, int *cur_arg,
476 struct proxy *curproxy, struct server *newsrv, char **err)
477{
478 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
479}
480
481/* Parse the "no-send-proxy-v2" server keyword */
482static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
483 struct proxy *curproxy, struct server *newsrv, char **err)
484{
485 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
486}
487
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200488/* Parse the "no-tfo" server keyword */
489static int srv_parse_no_tfo(char **args, int *cur_arg,
490 struct proxy *curproxy, struct server *newsrv, char **err)
491{
492 newsrv->flags &= ~SRV_F_FASTOPEN;
493 return 0;
494}
495
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100496/* Parse the "non-stick" server keyword */
497static int srv_parse_non_stick(char **args, int *cur_arg,
498 struct proxy *curproxy, struct server *newsrv, char **err)
499{
500 newsrv->flags |= SRV_F_NON_STICK;
501 return 0;
502}
503
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100504/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200505static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100506{
507 srv->pp_opts |= flags;
508 return 0;
509}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200510/* parse the "proto" server keyword */
511static int srv_parse_proto(char **args, int *cur_arg,
512 struct proxy *px, struct server *newsrv, char **err)
513{
514 struct ist proto;
515
516 if (!*args[*cur_arg + 1]) {
517 memprintf(err, "'%s' : missing value", args[*cur_arg]);
518 return ERR_ALERT | ERR_FATAL;
519 }
520 proto = ist2(args[*cur_arg + 1], strlen(args[*cur_arg + 1]));
521 newsrv->mux_proto = get_mux_proto(proto);
522 if (!newsrv->mux_proto) {
523 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
524 return ERR_ALERT | ERR_FATAL;
525 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200526 return 0;
527}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100528
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100529/* parse the "proxy-v2-options" */
530static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
531 struct proxy *px, struct server *newsrv, char **err)
532{
533 char *p, *n;
534 for (p = args[*cur_arg+1]; p; p = n) {
535 n = strchr(p, ',');
536 if (n)
537 *n++ = '\0';
538 if (!strcmp(p, "ssl")) {
539 newsrv->pp_opts |= SRV_PP_V2_SSL;
540 } else if (!strcmp(p, "cert-cn")) {
541 newsrv->pp_opts |= SRV_PP_V2_SSL;
542 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100543 } else if (!strcmp(p, "cert-key")) {
544 newsrv->pp_opts |= SRV_PP_V2_SSL;
545 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
546 } else if (!strcmp(p, "cert-sig")) {
547 newsrv->pp_opts |= SRV_PP_V2_SSL;
548 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
549 } else if (!strcmp(p, "ssl-cipher")) {
550 newsrv->pp_opts |= SRV_PP_V2_SSL;
551 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100552 } else if (!strcmp(p, "authority")) {
553 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100554 } else if (!strcmp(p, "crc32c")) {
555 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100556 } else if (!strcmp(p, "unique-id")) {
557 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100558 } else
559 goto fail;
560 }
561 return 0;
562 fail:
563 if (err)
564 memprintf(err, "'%s' : proxy v2 option not implemented", p);
565 return ERR_ALERT | ERR_FATAL;
566}
567
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100568/* Parse the "observe" server keyword */
569static int srv_parse_observe(char **args, int *cur_arg,
570 struct proxy *curproxy, struct server *newsrv, char **err)
571{
572 char *arg;
573
574 arg = args[*cur_arg + 1];
575 if (!*arg) {
576 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
577 return ERR_ALERT | ERR_FATAL;
578 }
579
580 if (!strcmp(arg, "none")) {
581 newsrv->observe = HANA_OBS_NONE;
582 }
583 else if (!strcmp(arg, "layer4")) {
584 newsrv->observe = HANA_OBS_LAYER4;
585 }
586 else if (!strcmp(arg, "layer7")) {
587 if (curproxy->mode != PR_MODE_HTTP) {
588 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
589 return ERR_ALERT;
590 }
591 newsrv->observe = HANA_OBS_LAYER7;
592 }
593 else {
594 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
595 "but got '%s'\n", args[*cur_arg], arg);
596 return ERR_ALERT | ERR_FATAL;
597 }
598
599 return 0;
600}
601
Frédéric Lécaille16186232017-03-14 16:42:49 +0100602/* Parse the "redir" server keyword */
603static int srv_parse_redir(char **args, int *cur_arg,
604 struct proxy *curproxy, struct server *newsrv, char **err)
605{
606 char *arg;
607
608 arg = args[*cur_arg + 1];
609 if (!*arg) {
610 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
611 return ERR_ALERT | ERR_FATAL;
612 }
613
614 free(newsrv->rdr_pfx);
615 newsrv->rdr_pfx = strdup(arg);
616 newsrv->rdr_len = strlen(arg);
617
618 return 0;
619}
620
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100621/* Parse the "send-proxy" server keyword */
622static int srv_parse_send_proxy(char **args, int *cur_arg,
623 struct proxy *curproxy, struct server *newsrv, char **err)
624{
625 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
626}
627
628/* Parse the "send-proxy-v2" server keyword */
629static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
630 struct proxy *curproxy, struct server *newsrv, char **err)
631{
632 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
633}
634
Frédéric Lécailledba97072017-03-17 15:33:50 +0100635
636/* Parse the "source" server keyword */
637static int srv_parse_source(char **args, int *cur_arg,
638 struct proxy *curproxy, struct server *newsrv, char **err)
639{
640 char *errmsg;
641 int port_low, port_high;
642 struct sockaddr_storage *sk;
643 struct protocol *proto;
644
645 errmsg = NULL;
646
647 if (!*args[*cur_arg + 1]) {
648 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
649 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
650 goto err;
651 }
652
653 /* 'sk' is statically allocated (no need to be freed). */
654 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, &errmsg, NULL, NULL, 1);
655 if (!sk) {
656 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
657 goto err;
658 }
659
660 proto = protocol_by_family(sk->ss_family);
661 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100662 ha_alert("'%s %s' : connect() not supported for this address family.\n",
663 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100664 goto err;
665 }
666
667 newsrv->conn_src.opts |= CO_SRC_BIND;
668 newsrv->conn_src.source_addr = *sk;
669
670 if (port_low != port_high) {
671 int i;
672
673 if (!port_low || !port_high) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100674 ha_alert("'%s' does not support port offsets (found '%s').\n",
675 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100676 goto err;
677 }
678
679 if (port_low <= 0 || port_low > 65535 ||
680 port_high <= 0 || port_high > 65535 ||
681 port_low > port_high) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100682 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 +0100683 goto err;
684 }
685 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
686 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
687 newsrv->conn_src.sport_range->ports[i] = port_low + i;
688 }
689
690 *cur_arg += 2;
691 while (*(args[*cur_arg])) {
692 if (!strcmp(args[*cur_arg], "usesrc")) { /* address to use outside */
693#if defined(CONFIG_HAP_TRANSPARENT)
694 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100695 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
696 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +0100697 goto err;
698 }
699 if (!strcmp(args[*cur_arg + 1], "client")) {
700 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
701 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
702 }
703 else if (!strcmp(args[*cur_arg + 1], "clientip")) {
704 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
705 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
706 }
707 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
708 char *name, *end;
709
710 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +0100711 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100712 name++;
713
714 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +0100715 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +0100716 end++;
717
718 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
719 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
720 free(newsrv->conn_src.bind_hdr_name);
721 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
722 newsrv->conn_src.bind_hdr_len = end - name;
723 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
724 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
725 newsrv->conn_src.bind_hdr_occ = -1;
726
727 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +0100728 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100729 end++;
730 if (*end == ',') {
731 end++;
732 name = end;
733 if (*end == '-')
734 end++;
Willy Tarreau90807112020-02-25 08:16:33 +0100735 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100736 end++;
737 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
738 }
739
740 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100741 ha_alert("usesrc hdr_ip(name,num) does not support negative"
742 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100743 goto err;
744 }
745 }
746 else {
747 struct sockaddr_storage *sk;
748 int port1, port2;
749
750 /* 'sk' is statically allocated (no need to be freed). */
751 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
752 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100753 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100754 goto err;
755 }
756
757 proto = protocol_by_family(sk->ss_family);
758 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100759 ha_alert("'%s %s' : connect() not supported for this address family.\n",
760 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100761 goto err;
762 }
763
764 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100765 ha_alert("'%s' : port ranges and offsets are not allowed in '%s'\n",
766 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100767 goto err;
768 }
769 newsrv->conn_src.tproxy_addr = *sk;
770 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
771 }
772 global.last_checks |= LSTCHK_NETADM;
773 *cur_arg += 2;
774 continue;
775#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100776 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 +0100777 goto err;
778#endif /* defined(CONFIG_HAP_TRANSPARENT) */
779 } /* "usesrc" */
780
781 if (!strcmp(args[*cur_arg], "interface")) { /* specifically bind to this interface */
782#ifdef SO_BINDTODEVICE
783 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100784 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100785 goto err;
786 }
787 free(newsrv->conn_src.iface_name);
788 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
789 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
790 global.last_checks |= LSTCHK_NETADM;
791#else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100792 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100793 goto err;
794#endif
795 *cur_arg += 2;
796 continue;
797 }
798 /* this keyword in not an option of "source" */
799 break;
800 } /* while */
801
802 return 0;
803
804 err:
805 free(errmsg);
806 return ERR_ALERT | ERR_FATAL;
807}
808
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100809/* Parse the "stick" server keyword */
810static int srv_parse_stick(char **args, int *cur_arg,
811 struct proxy *curproxy, struct server *newsrv, char **err)
812{
813 newsrv->flags &= ~SRV_F_NON_STICK;
814 return 0;
815}
816
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100817/* Parse the "track" server keyword */
818static int srv_parse_track(char **args, int *cur_arg,
819 struct proxy *curproxy, struct server *newsrv, char **err)
820{
821 char *arg;
822
823 arg = args[*cur_arg + 1];
824 if (!*arg) {
825 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
826 return ERR_ALERT | ERR_FATAL;
827 }
828
829 free(newsrv->trackit);
830 newsrv->trackit = strdup(arg);
831
832 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800833}
834
835/* Parse the "socks4" server keyword */
836static int srv_parse_socks4(char **args, int *cur_arg,
837 struct proxy *curproxy, struct server *newsrv, char **err)
838{
839 char *errmsg;
840 int port_low, port_high;
841 struct sockaddr_storage *sk;
842 struct protocol *proto;
843
844 errmsg = NULL;
845
846 if (!*args[*cur_arg + 1]) {
847 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
848 goto err;
849 }
850
851 /* 'sk' is statically allocated (no need to be freed). */
852 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, &errmsg, NULL, NULL, 1);
853 if (!sk) {
854 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
855 goto err;
856 }
857
858 proto = protocol_by_family(sk->ss_family);
859 if (!proto || !proto->connect) {
860 ha_alert("'%s %s' : connect() not supported for this address family.\n", args[*cur_arg], args[*cur_arg + 1]);
861 goto err;
862 }
863
864 newsrv->flags |= SRV_F_SOCKS4_PROXY;
865 newsrv->socks4_addr = *sk;
866
867 if (port_low != port_high) {
868 ha_alert("'%s' does not support port offsets (found '%s').\n", args[*cur_arg], args[*cur_arg + 1]);
869 goto err;
870 }
871
872 if (!port_low) {
873 ha_alert("'%s': invalid port range %d-%d.\n", args[*cur_arg], port_low, port_high);
874 goto err;
875 }
876
877 return 0;
878
879 err:
880 free(errmsg);
881 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100882}
883
Frédéric Lécailledba97072017-03-17 15:33:50 +0100884
Willy Tarreau034c88c2017-01-23 23:36:45 +0100885/* parse the "tfo" server keyword */
886static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
887{
888 newsrv->flags |= SRV_F_FASTOPEN;
889 return 0;
890}
891
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200892/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +0200893 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200894 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200895 *
896 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200897 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200898void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200899{
Willy Tarreau87b09662015-04-03 00:22:06 +0200900 struct stream *stream, *stream_bck;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200901
Willy Tarreau87b09662015-04-03 00:22:06 +0200902 list_for_each_entry_safe(stream, stream_bck, &srv->actconns, by_srv)
903 if (stream->srv_conn == srv)
904 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200905}
906
907/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +0200908 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200909 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200910 *
911 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200912 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200913void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200914{
915 struct server *srv;
916
917 for (srv = px->srv; srv != NULL; srv = srv->next)
918 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +0200919 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200920}
921
Willy Tarreaubda92272014-05-20 21:55:30 +0200922/* Appends some information to a message string related to a server going UP or
923 * DOWN. If both <forced> and <reason> are null and the server tracks another
924 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +0200925 * If <check> is non-null, an entire string describing the check result will be
926 * appended after a comma and a space (eg: to report some information from the
927 * check that changed the state). In the other case, the string will be built
928 * using the check results stored into the struct server if present.
929 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +0200930 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200931 *
932 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200933 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200934void srv_append_status(struct buffer *msg, struct server *s,
935 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200936{
Emeric Brun5a133512017-10-19 14:42:30 +0200937 short status = s->op_st_chg.status;
938 short code = s->op_st_chg.code;
939 long duration = s->op_st_chg.duration;
940 char *desc = s->op_st_chg.reason;
941
942 if (check) {
943 status = check->status;
944 code = check->code;
945 duration = check->duration;
946 desc = check->desc;
947 }
948
949 if (status != -1) {
950 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
951
952 if (status >= HCHK_STATUS_L57DATA)
953 chunk_appendf(msg, ", code: %d", code);
954
955 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +0200956 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +0200957
958 chunk_appendf(msg, ", info: \"");
959
960 chunk_initlen(&src, desc, 0, strlen(desc));
961 chunk_asciiencode(msg, &src, '"');
962
963 chunk_appendf(msg, "\"");
964 }
965
966 if (duration >= 0)
967 chunk_appendf(msg, ", check duration: %ldms", duration);
968 }
969 else if (desc && *desc) {
970 chunk_appendf(msg, ", %s", desc);
971 }
972 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +0200973 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +0200974 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200975
976 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200977 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200978 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
979 " %d sessions active, %d requeued, %d remaining in queue",
980 s->proxy->srv_act, s->proxy->srv_bck,
981 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
982 s->cur_sess, xferred, s->nbpend);
983 else
984 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
985 " %d sessions requeued, %d total in queue",
986 s->proxy->srv_act, s->proxy->srv_bck,
987 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
988 xferred, s->nbpend);
989 }
990}
991
Emeric Brun5a133512017-10-19 14:42:30 +0200992/* Marks server <s> down, regardless of its checks' statuses. The server is
993 * registered in a list to postpone the counting of the remaining servers on
994 * the proxy and transfers queued streams whenever possible to other servers at
995 * a sync point. Maintenance servers are ignored. It stores the <reason> if
996 * non-null as the reason for going down or the available data from the check
997 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200998 *
999 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001000 */
Emeric Brun5a133512017-10-19 14:42:30 +02001001void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001002{
1003 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001004
Emeric Brun64cc49c2017-10-03 14:46:45 +02001005 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001006 return;
1007
Emeric Brun52a91d32017-08-31 14:41:55 +02001008 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +02001009 *s->op_st_chg.reason = 0;
1010 s->op_st_chg.status = -1;
1011 if (reason) {
1012 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1013 }
1014 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001015 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001016 s->op_st_chg.code = check->code;
1017 s->op_st_chg.status = check->status;
1018 s->op_st_chg.duration = check->duration;
1019 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001020
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001021 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001022 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001023
Emeric Brun9f0b4582017-10-23 14:39:51 +02001024 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001025 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001026 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001027 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001028 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001029}
1030
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001031/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001032 * in maintenance. The server is registered in a list to postpone the counting
1033 * of the remaining servers on the proxy and tries to grab requests from the
1034 * proxy at a sync point. Maintenance servers are ignored. It stores the
1035 * <reason> if non-null as the reason for going down or the available data
1036 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001037 *
1038 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001039 */
Emeric Brun5a133512017-10-19 14:42:30 +02001040void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001041{
1042 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001043
Emeric Brun64cc49c2017-10-03 14:46:45 +02001044 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001045 return;
1046
Emeric Brun52a91d32017-08-31 14:41:55 +02001047 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001048 return;
1049
Emeric Brun52a91d32017-08-31 14:41:55 +02001050 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001051 *s->op_st_chg.reason = 0;
1052 s->op_st_chg.status = -1;
1053 if (reason) {
1054 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1055 }
1056 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001057 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001058 s->op_st_chg.code = check->code;
1059 s->op_st_chg.status = check->status;
1060 s->op_st_chg.duration = check->duration;
1061 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001062
Emeric Brun64cc49c2017-10-03 14:46:45 +02001063 if (s->slowstart <= 0)
1064 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001065
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001066 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001067 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001068
Emeric Brun9f0b4582017-10-23 14:39:51 +02001069 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001070 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001071 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001072 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001073 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001074}
1075
Willy Tarreau8eb77842014-05-21 13:54:57 +02001076/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001077 * isn't in maintenance. The server is registered in a list to postpone the
1078 * counting of the remaining servers on the proxy and tries to grab requests
1079 * from the proxy. Maintenance servers are ignored. It stores the
1080 * <reason> if non-null as the reason for going down or the available data
1081 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001082 * up. Note that it makes use of the trash to build the log strings, so <reason>
1083 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001084 *
1085 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001086 */
Emeric Brun5a133512017-10-19 14:42:30 +02001087void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001088{
1089 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001090
Emeric Brun64cc49c2017-10-03 14:46:45 +02001091 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001092 return;
1093
Emeric Brun52a91d32017-08-31 14:41:55 +02001094 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001095 return;
1096
Emeric Brun52a91d32017-08-31 14:41:55 +02001097 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001098 *s->op_st_chg.reason = 0;
1099 s->op_st_chg.status = -1;
1100 if (reason) {
1101 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1102 }
1103 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001104 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001105 s->op_st_chg.code = check->code;
1106 s->op_st_chg.status = check->status;
1107 s->op_st_chg.duration = check->duration;
1108 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001109
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001110 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001111 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001112
Emeric Brun9f0b4582017-10-23 14:39:51 +02001113 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001114 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001115 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001116 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001117 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001118}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001119
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001120/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1121 * enforce either maint mode or drain mode. It is not allowed to set more than
1122 * one flag at once. The equivalent "inherited" flag is propagated to all
1123 * tracking servers. Maintenance mode disables health checks (but not agent
1124 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001125 * is done. If <cause> is non-null, it will be displayed at the end of the log
1126 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001127 *
1128 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001129 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001130void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001131{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001132 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001133
1134 if (!mode)
1135 return;
1136
1137 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001138 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001139 return;
1140
Emeric Brun52a91d32017-08-31 14:41:55 +02001141 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001142 if (cause)
1143 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1144
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001145 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001146 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001147
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001148 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001149 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1150 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001151 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001152
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001153 /* compute the inherited flag to propagate */
1154 if (mode & SRV_ADMF_MAINT)
1155 mode = SRV_ADMF_IMAINT;
1156 else if (mode & SRV_ADMF_DRAIN)
1157 mode = SRV_ADMF_IDRAIN;
1158
Emeric Brun9f0b4582017-10-23 14:39:51 +02001159 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001160 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001161 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001162 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001163 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001164}
1165
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001166/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1167 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1168 * than one flag at once. The equivalent "inherited" flag is propagated to all
1169 * tracking servers. Leaving maintenance mode re-enables health checks. When
1170 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001171 *
1172 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001173 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001174void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001175{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001176 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001177
1178 if (!mode)
1179 return;
1180
1181 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001182 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001183 return;
1184
Emeric Brun52a91d32017-08-31 14:41:55 +02001185 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001186
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001187 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001188 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001189
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001190 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001191 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1192 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001193 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001194
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001195 if (mode & SRV_ADMF_MAINT)
1196 mode = SRV_ADMF_IMAINT;
1197 else if (mode & SRV_ADMF_DRAIN)
1198 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001199
Emeric Brun9f0b4582017-10-23 14:39:51 +02001200 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001201 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001202 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001203 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001204 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001205}
1206
Willy Tarreau757478e2016-11-03 19:22:19 +01001207/* principle: propagate maint and drain to tracking servers. This is useful
1208 * upon startup so that inherited states are correct.
1209 */
1210static void srv_propagate_admin_state(struct server *srv)
1211{
1212 struct server *srv2;
1213
1214 if (!srv->trackers)
1215 return;
1216
1217 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001218 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001219 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001220 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001221
Emeric Brun52a91d32017-08-31 14:41:55 +02001222 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001223 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001224 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001225 }
1226}
1227
1228/* Compute and propagate the admin states for all servers in proxy <px>.
1229 * Only servers *not* tracking another one are considered, because other
1230 * ones will be handled when the server they track is visited.
1231 */
1232void srv_compute_all_admin_states(struct proxy *px)
1233{
1234 struct server *srv;
1235
1236 for (srv = px->srv; srv; srv = srv->next) {
1237 if (srv->track)
1238 continue;
1239 srv_propagate_admin_state(srv);
1240 }
1241}
1242
Willy Tarreaudff55432012-10-10 17:51:05 +02001243/* Note: must not be declared <const> as its list will be overwritten.
1244 * Please take care of keeping this list alphabetically sorted, doing so helps
1245 * all code contributors.
1246 * Optional keywords are also declared with a NULL ->parse() function so that
1247 * the config parser can report an appropriate error when a known keyword was
1248 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001249 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001250 */
1251static struct srv_kw_list srv_kws = { "ALL", { }, {
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001252 { "backup", srv_parse_backup, 0, 1 }, /* Flag as backup server */
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +01001253 { "cookie", srv_parse_cookie, 1, 1 }, /* Assign a cookie to the server */
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +01001254 { "disabled", srv_parse_disabled, 0, 1 }, /* Start the server in 'disabled' state */
1255 { "enabled", srv_parse_enabled, 0, 1 }, /* Start the server in 'enabled' state */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001256 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
Willy Tarreau9c538e02019-01-23 10:21:49 +01001257 { "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 +01001258 { "namespace", srv_parse_namespace, 1, 1 }, /* Namespace the server socket belongs to (if supported) */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001259 { "no-backup", srv_parse_no_backup, 0, 1 }, /* Flag as non-backup server */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001260 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1 }, /* Disable use of PROXY V1 protocol */
1261 { "no-send-proxy-v2", srv_parse_no_send_proxy_v2, 0, 1 }, /* Disable use of PROXY V2 protocol */
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +02001262 { "no-tfo", srv_parse_no_tfo, 0, 1 }, /* Disable use of TCP Fast Open */
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001263 { "non-stick", srv_parse_non_stick, 0, 1 }, /* Disable stick-table persistence */
Frédéric Lécaille547356e2017-03-15 08:55:39 +01001264 { "observe", srv_parse_observe, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
Olivier Houchard006e3102018-12-10 18:30:32 +01001265 { "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 +01001266 { "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 +02001267 { "proto", srv_parse_proto, 1, 1 }, /* Set the proto to use for all outgoing connections */
Emmanuel Hocdetf643b802018-02-01 15:20:32 +01001268 { "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 +01001269 { "redir", srv_parse_redir, 1, 1 }, /* Enable redirection mode */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001270 { "send-proxy", srv_parse_send_proxy, 0, 1 }, /* Enforce use of PROXY V1 protocol */
1271 { "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 +02001272 { "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 +01001273 { "stick", srv_parse_stick, 0, 1 }, /* Enable stick-table persistence */
Olivier Houchard8d82db72019-07-04 13:34:10 +02001274 { "tfo", srv_parse_tfo, 0, 1 }, /* enable TCP Fast Open of server */
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001275 { "track", srv_parse_track, 1, 1 }, /* Set the current state of the server, tracking another one */
Alexander Liu2a54bb72019-05-22 19:44:48 +08001276 { "socks4", srv_parse_socks4, 1, 1 }, /* Set the socks4 proxy of the server*/
Willy Tarreaudff55432012-10-10 17:51:05 +02001277 { NULL, NULL, 0 },
1278}};
1279
Willy Tarreau0108d902018-11-25 19:14:37 +01001280INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001281
Willy Tarreau004e0452013-11-21 11:22:01 +01001282/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001283 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001284 * state is automatically disabled if the time is elapsed. If <must_update> is
1285 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001286 *
1287 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001288 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001289void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001290{
1291 struct proxy *px = sv->proxy;
1292 unsigned w;
1293
1294 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1295 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001296 if (sv->next_state == SRV_ST_STARTING)
1297 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001298 }
1299
1300 /* We must take care of not pushing the server to full throttle during slow starts.
1301 * It must also start immediately, at least at the minimal step when leaving maintenance.
1302 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001303 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001304 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1305 else
1306 w = px->lbprm.wdiv;
1307
Emeric Brun52a91d32017-08-31 14:41:55 +02001308 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001309
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001310 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001311 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001312 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001313}
1314
Willy Tarreaubaaee002006-06-26 02:48:02 +02001315/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001316 * Parses weight_str and configures sv accordingly.
1317 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001318 *
1319 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001320 */
1321const char *server_parse_weight_change_request(struct server *sv,
1322 const char *weight_str)
1323{
1324 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001325 long int w;
1326 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001327
1328 px = sv->proxy;
1329
1330 /* if the weight is terminated with '%', it is set relative to
1331 * the initial weight, otherwise it is absolute.
1332 */
1333 if (!*weight_str)
1334 return "Require <weight> or <weight%>.\n";
1335
Simon Hormanb796afa2013-02-12 10:45:53 +09001336 w = strtol(weight_str, &end, 10);
1337 if (end == weight_str)
1338 return "Empty weight string empty or preceded by garbage";
1339 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001340 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001341 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001342 /* Avoid integer overflow */
1343 if (w > 25600)
1344 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001345 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001346 if (w > 256)
1347 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001348 }
1349 else if (w < 0 || w > 256)
1350 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001351 else if (end[0] != '\0')
1352 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001353
1354 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1355 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1356
1357 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001358 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001359
1360 return NULL;
1361}
1362
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001363/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001364 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1365 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001366 * Returns:
1367 * - error string on error
1368 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001369 *
1370 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001371 */
1372const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001373 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001374{
1375 unsigned char ip[INET6_ADDRSTRLEN];
1376
1377 if (inet_pton(AF_INET6, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001378 update_server_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001379 return NULL;
1380 }
1381 if (inet_pton(AF_INET, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001382 update_server_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001383 return NULL;
1384 }
1385
1386 return "Could not understand IP address format.\n";
1387}
1388
Willy Tarreau46b7f532018-08-21 11:54:26 +02001389/*
1390 * Must be called with the server lock held.
1391 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001392const char *server_parse_maxconn_change_request(struct server *sv,
1393 const char *maxconn_str)
1394{
1395 long int v;
1396 char *end;
1397
1398 if (!*maxconn_str)
1399 return "Require <maxconn>.\n";
1400
1401 v = strtol(maxconn_str, &end, 10);
1402 if (end == maxconn_str)
1403 return "maxconn string empty or preceded by garbage";
1404 else if (end[0] != '\0')
1405 return "Trailing garbage in maxconn string";
1406
1407 if (sv->maxconn == sv->minconn) { // static maxconn
1408 sv->maxconn = sv->minconn = v;
1409 } else { // dynamic maxconn
1410 sv->maxconn = v;
1411 }
1412
1413 if (may_dequeue_tasks(sv, sv->proxy))
1414 process_srv_queue(sv);
1415
1416 return NULL;
1417}
1418
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001419#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001420static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1421 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001422{
1423 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001424 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001425 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001426 NULL,
1427 };
1428
1429 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001430 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001431
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001432 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001433}
1434
1435static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1436{
1437 struct sample_expr *expr;
1438
1439 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 +01001440 if (!expr) {
1441 memprintf(err, "error detected while parsing sni expression : %s", *err);
1442 return ERR_ALERT | ERR_FATAL;
1443 }
1444
1445 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1446 memprintf(err, "error detected while parsing sni expression : "
1447 " fetch method '%s' extracts information from '%s', "
1448 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001449 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001450 return ERR_ALERT | ERR_FATAL;
1451 }
1452
1453 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1454 release_sample_expr(newsrv->ssl_ctx.sni);
1455 newsrv->ssl_ctx.sni = expr;
1456
1457 return 0;
1458}
1459#endif
1460
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001461static void display_parser_err(const char *file, int linenum, char **args, int cur_arg, int err_code, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001462{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001463 char *msg = "error encountered while processing ";
1464 char *quote = "'";
1465 char *token = args[cur_arg];
1466
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001467 if (err && *err) {
1468 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001469 msg = *err;
1470 quote = "";
1471 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001472 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001473
1474 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
1475 ha_warning("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1476 file, linenum, args[0], args[1],
1477 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001478 else
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001479 ha_alert("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1480 file, linenum, args[0], args[1],
1481 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001482}
1483
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001484static void srv_conn_src_sport_range_cpy(struct server *srv,
1485 struct server *src)
1486{
1487 int range_sz;
1488
1489 range_sz = src->conn_src.sport_range->size;
1490 if (range_sz > 0) {
1491 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1492 if (srv->conn_src.sport_range != NULL) {
1493 int i;
1494
1495 for (i = 0; i < range_sz; i++) {
1496 srv->conn_src.sport_range->ports[i] =
1497 src->conn_src.sport_range->ports[i];
1498 }
1499 }
1500 }
1501}
1502
1503/*
1504 * Copy <src> server connection source settings to <srv> server everything needed.
1505 */
1506static void srv_conn_src_cpy(struct server *srv, struct server *src)
1507{
1508 srv->conn_src.opts = src->conn_src.opts;
1509 srv->conn_src.source_addr = src->conn_src.source_addr;
1510
1511 /* Source port range copy. */
1512 if (src->conn_src.sport_range != NULL)
1513 srv_conn_src_sport_range_cpy(srv, src);
1514
1515#ifdef CONFIG_HAP_TRANSPARENT
1516 if (src->conn_src.bind_hdr_name != NULL) {
1517 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1518 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1519 }
1520 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1521 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1522#endif
1523 if (src->conn_src.iface_name != NULL)
1524 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1525}
1526
1527/*
1528 * Copy <src> server SSL settings to <srv> server allocating
1529 * everything needed.
1530 */
1531#if defined(USE_OPENSSL)
1532static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1533{
1534 if (src->ssl_ctx.ca_file != NULL)
1535 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1536 if (src->ssl_ctx.crl_file != NULL)
1537 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
1538 if (src->ssl_ctx.client_crt != NULL)
1539 srv->ssl_ctx.client_crt = strdup(src->ssl_ctx.client_crt);
1540
1541 srv->ssl_ctx.verify = src->ssl_ctx.verify;
1542
1543 if (src->ssl_ctx.verify_host != NULL)
1544 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
1545 if (src->ssl_ctx.ciphers != NULL)
1546 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02001547 if (src->ssl_ctx.options)
1548 srv->ssl_ctx.options = src->ssl_ctx.options;
1549 if (src->ssl_ctx.methods.flags)
1550 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
1551 if (src->ssl_ctx.methods.min)
1552 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
1553 if (src->ssl_ctx.methods.max)
1554 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
1555
Willy Tarreau5db847a2019-05-09 14:13:35 +02001556#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02001557 if (src->ssl_ctx.ciphersuites != NULL)
1558 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
1559#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001560 if (src->sni_expr != NULL)
1561 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01001562
1563#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
1564 if (src->ssl_ctx.alpn_str) {
1565 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
1566 if (srv->ssl_ctx.alpn_str) {
1567 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
1568 src->ssl_ctx.alpn_len);
1569 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
1570 }
1571 }
1572#endif
1573#ifdef OPENSSL_NPN_NEGOTIATED
1574 if (src->ssl_ctx.npn_str) {
1575 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
1576 if (srv->ssl_ctx.npn_str) {
1577 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
1578 src->ssl_ctx.npn_len);
1579 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
1580 }
1581 }
1582#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001583}
1584#endif
1585
1586/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001587 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001588 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001589 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001590 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001591static int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001592{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001593 char *hostname_dn;
1594 int hostname_len, hostname_dn_len;
1595
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001596 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001597 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001598
Christopher Faulet67957bd2017-09-27 11:00:59 +02001599 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001600 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001601 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
1602 hostname_dn, trash.size);
1603 if (hostname_dn_len == -1)
1604 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001605
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001606
Christopher Faulet67957bd2017-09-27 11:00:59 +02001607 free(srv->hostname);
1608 free(srv->hostname_dn);
1609 srv->hostname = strdup(hostname);
1610 srv->hostname_dn = strdup(hostname_dn);
1611 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001612 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001613 goto err;
1614
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001615 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001616
1617 err:
Christopher Faulet67957bd2017-09-27 11:00:59 +02001618 free(srv->hostname); srv->hostname = NULL;
1619 free(srv->hostname_dn); srv->hostname_dn = NULL;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001620 return -1;
1621}
1622
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001623/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001624 * Copy <src> server settings to <srv> server allocating
1625 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001626 * This function is not supposed to be called at any time, but only
1627 * during server settings parsing or during server allocations from
1628 * a server template, and just after having calloc()'ed a new server.
1629 * So, <src> may only be a default server (when parsing server settings)
1630 * or a server template (during server allocations from a server template).
1631 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
1632 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001633 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001634static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001635{
1636 /* Connection source settings copy */
1637 srv_conn_src_cpy(srv, src);
1638
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001639 if (srv_tmpl) {
1640 srv->addr = src->addr;
1641 srv->svc_port = src->svc_port;
1642 }
1643
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001644 srv->pp_opts = src->pp_opts;
1645 if (src->rdr_pfx != NULL) {
1646 srv->rdr_pfx = strdup(src->rdr_pfx);
1647 srv->rdr_len = src->rdr_len;
1648 }
1649 if (src->cookie != NULL) {
1650 srv->cookie = strdup(src->cookie);
1651 srv->cklen = src->cklen;
1652 }
1653 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01001654 srv->check.addr = src->check.addr;
1655 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001656 srv->check.use_ssl = src->check.use_ssl;
1657 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01001658 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01001659 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05001660 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001661 /* Note: 'flags' field has potentially been already initialized. */
1662 srv->flags |= src->flags;
1663 srv->do_check = src->do_check;
1664 srv->do_agent = src->do_agent;
1665 if (srv->check.port)
1666 srv->flags |= SRV_F_CHECKPORT;
1667 srv->check.inter = src->check.inter;
1668 srv->check.fastinter = src->check.fastinter;
1669 srv->check.downinter = src->check.downinter;
1670 srv->agent.use_ssl = src->agent.use_ssl;
1671 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001672
1673 if (src->agent.tcpcheck_rules) {
1674 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
1675 if (srv->agent.tcpcheck_rules) {
1676 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
1677 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
1678 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
1679 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
1680 &src->agent.tcpcheck_rules->preset_vars);
1681 }
1682 }
1683
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001684 srv->agent.inter = src->agent.inter;
1685 srv->agent.fastinter = src->agent.fastinter;
1686 srv->agent.downinter = src->agent.downinter;
1687 srv->maxqueue = src->maxqueue;
1688 srv->minconn = src->minconn;
1689 srv->maxconn = src->maxconn;
1690 srv->slowstart = src->slowstart;
1691 srv->observe = src->observe;
1692 srv->onerror = src->onerror;
1693 srv->onmarkeddown = src->onmarkeddown;
1694 srv->onmarkedup = src->onmarkedup;
1695 if (src->trackit != NULL)
1696 srv->trackit = strdup(src->trackit);
1697 srv->consecutive_errors_limit = src->consecutive_errors_limit;
1698 srv->uweight = srv->iweight = src->iweight;
1699
1700 srv->check.send_proxy = src->check.send_proxy;
1701 /* health: up, but will fall down at first failure */
1702 srv->check.rise = srv->check.health = src->check.rise;
1703 srv->check.fall = src->check.fall;
1704
1705 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001706 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
1707 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
1708 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001709 srv->check.state |= CHK_ST_PAUSED;
1710 srv->check.health = 0;
1711 }
1712
1713 /* health: up but will fall down at first failure */
1714 srv->agent.rise = srv->agent.health = src->agent.rise;
1715 srv->agent.fall = src->agent.fall;
1716
1717 if (src->resolvers_id != NULL)
1718 srv->resolvers_id = strdup(src->resolvers_id);
1719 srv->dns_opts.family_prio = src->dns_opts.family_prio;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001720 srv->dns_opts.accept_duplicate_ip = src->dns_opts.accept_duplicate_ip;
Daniel Corbettf8716912019-11-17 09:48:56 -05001721 srv->dns_opts.ignore_weight = src->dns_opts.ignore_weight;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001722 if (srv->dns_opts.family_prio == AF_UNSPEC)
1723 srv->dns_opts.family_prio = AF_INET6;
1724 memcpy(srv->dns_opts.pref_net,
1725 src->dns_opts.pref_net,
1726 sizeof srv->dns_opts.pref_net);
1727 srv->dns_opts.pref_net_nb = src->dns_opts.pref_net_nb;
1728
1729 srv->init_addr_methods = src->init_addr_methods;
1730 srv->init_addr = src->init_addr;
1731#if defined(USE_OPENSSL)
1732 srv_ssl_settings_cpy(srv, src);
1733#endif
1734#ifdef TCP_USER_TIMEOUT
1735 srv->tcp_ut = src->tcp_ut;
1736#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001737 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001738 srv->pool_purge_delay = src->pool_purge_delay;
Olivier Houchard006e3102018-12-10 18:30:32 +01001739 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01001740 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001741
Olivier Houchard8da5f982017-08-04 18:35:36 +02001742 if (srv_tmpl)
1743 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001744
1745 srv->check.via_socks4 = src->check.via_socks4;
1746 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001747}
1748
William Lallemand313bfd12018-10-26 14:47:32 +02001749struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001750{
1751 struct server *srv;
1752
1753 srv = calloc(1, sizeof *srv);
1754 if (!srv)
1755 return NULL;
1756
1757 srv->obj_type = OBJ_TYPE_SERVER;
1758 srv->proxy = proxy;
1759 LIST_INIT(&srv->actconns);
Patrick Hemmer0355dab2018-05-11 12:52:31 -04001760 srv->pendconns = EB_ROOT;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001761
Emeric Brun52a91d32017-08-31 14:41:55 +02001762 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001763 srv->last_change = now.tv_sec;
1764
Christopher Faulet38290462020-04-21 11:46:40 +02001765 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001766 srv->check.status = HCHK_STATUS_INI;
1767 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01001768 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02001769 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001770
Christopher Faulet38290462020-04-21 11:46:40 +02001771 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001772 srv->agent.status = HCHK_STATUS_INI;
1773 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01001774 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001775 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
1776
Willy Tarreau975b1552019-06-06 16:25:55 +02001777 /* please don't put default server settings here, they are set in
1778 * init_default_instance().
1779 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001780 return srv;
1781}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001782
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001783#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1784static int server_sni_expr_init(const char *file, int linenum, char **args, int cur_arg,
1785 struct server *srv, struct proxy *proxy)
1786{
1787 int ret;
1788 char *err = NULL;
1789
1790 if (!srv->sni_expr)
1791 return 0;
1792
1793 ret = server_parse_sni_expr(srv, proxy, &err);
1794 if (!ret)
1795 return 0;
1796
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001797 display_parser_err(file, linenum, args, cur_arg, ret, &err);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001798 free(err);
1799
1800 return ret;
1801}
1802#endif
1803
1804/*
1805 * Server initializations finalization.
1806 * Initialize health check, agent check and SNI expression if enabled.
1807 * Must not be called for a default server instance.
1808 */
1809static int server_finalize_init(const char *file, int linenum, char **args, int cur_arg,
1810 struct server *srv, struct proxy *px)
1811{
Christopher Fauletb3b53522020-04-27 11:17:10 +02001812#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001813 int ret;
Christopher Fauletb3b53522020-04-27 11:17:10 +02001814#endif
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001815
Christopher Faulet8892e5d2020-03-26 19:48:20 +01001816 if (srv->do_check && srv->trackit) {
1817 ha_alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1818 file, linenum);
1819 return ERR_ALERT | ERR_FATAL;
1820 }
1821
1822 if (srv->do_agent && !srv->agent.port) {
1823 ha_alert("parsing [%s:%d] : server %s does not have agent port. Agent check has been disabled.\n",
1824 file, linenum, srv->id);
1825 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001826 }
1827
1828#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1829 if ((ret = server_sni_expr_init(file, linenum, args, cur_arg, srv, px)) != 0)
1830 return ret;
1831#endif
1832
1833 if (srv->flags & SRV_F_BACKUP)
1834 px->srv_bck++;
1835 else
1836 px->srv_act++;
1837 srv_lb_commit_status(srv);
1838
1839 return 0;
1840}
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001841
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001842/*
1843 * Parse as much as possible such a range string argument: low[-high]
1844 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
1845 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
1846 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
1847 * Returns 0 if succeeded, -1 if not.
1848 */
1849static int srv_tmpl_parse_range(struct server *srv, const char *arg, int *nb_low, int *nb_high)
1850{
1851 char *nb_high_arg;
1852
1853 *nb_high = 0;
1854 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001855 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001856
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001857 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001858 *nb_high_arg++ = '\0';
1859 *nb_high = atoi(nb_high_arg);
1860 }
1861 else {
1862 *nb_high += *nb_low;
1863 *nb_low = 1;
1864 }
1865
1866 if (*nb_low < 0 || *nb_high < *nb_low)
1867 return -1;
1868
1869 return 0;
1870}
1871
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001872static inline void srv_set_id_from_prefix(struct server *srv, const char *prefix, int nb)
1873{
1874 chunk_printf(&trash, "%s%d", prefix, nb);
1875 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001876 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001877}
1878
1879/*
1880 * Initialize as much as possible servers from <srv> server template.
1881 * Note that a server template is a special server with
1882 * a few different parameters than a server which has
1883 * been parsed mostly the same way as a server.
Joseph Herlant44466822018-11-15 08:57:51 -08001884 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001885 * 'srv' template included.
1886 */
1887static int server_template_init(struct server *srv, struct proxy *px)
1888{
1889 int i;
1890 struct server *newsrv;
1891
1892 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 +02001893 newsrv = new_server(px);
1894 if (!newsrv)
1895 goto err;
1896
1897 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001898 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001899#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1900 if (newsrv->sni_expr) {
1901 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
1902 if (!newsrv->ssl_ctx.sni)
1903 goto err;
1904 }
1905#endif
1906 /* Set this new server ID. */
1907 srv_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
1908
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001909 /* Linked backwards first. This will be restablished after parsing. */
1910 newsrv->next = px->srv;
1911 px->srv = newsrv;
1912 }
1913 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1914
1915 return i - srv->tmpl_info.nb_low;
1916
1917 err:
1918 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1919 if (newsrv) {
1920#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1921 release_sample_expr(newsrv->ssl_ctx.sni);
1922#endif
1923 free_check(&newsrv->agent);
1924 free_check(&newsrv->check);
1925 }
1926 free(newsrv);
1927 return i - srv->tmpl_info.nb_low;
1928}
1929
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +02001930int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy, struct proxy *defproxy, int parse_addr, int in_peers_section)
Willy Tarreau272adea2014-03-31 10:39:59 +02001931{
1932 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001933 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001934 char *errmsg = NULL;
1935 int err_code = 0;
1936 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +02001937 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001938
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001939 if (!strcmp(args[0], "server") ||
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02001940 !strcmp(args[0], "peer") ||
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001941 !strcmp(args[0], "default-server") ||
1942 !strcmp(args[0], "server-template")) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001943 int cur_arg;
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001944 int defsrv = (*args[0] == 'd');
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02001945 int srv = !defsrv && (*args[0] == 'p' || !strcmp(args[0], "server"));
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001946 int srv_tmpl = !defsrv && !srv;
1947 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02001948
1949 if (!defsrv && curproxy == defproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001950 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001951 err_code |= ERR_ALERT | ERR_FATAL;
1952 goto out;
1953 }
1954 else if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL))
Olivier Houchard306e6532018-07-24 16:48:59 +02001955 err_code |= ERR_WARN;
Willy Tarreau272adea2014-03-31 10:39:59 +02001956
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001957 /* There is no mandatory first arguments for default server. */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01001958 if (srv && parse_addr) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001959 if (!*args[2]) {
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +02001960 if (in_peers_section) {
1961 return 0;
1962 }
1963 else {
1964 /* 'server' line number of argument check. */
1965 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1966 file, linenum, args[0]);
1967 err_code |= ERR_ALERT | ERR_FATAL;
1968 goto out;
1969 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001970 }
1971
1972 err = invalid_char(args[1]);
1973 }
1974 else if (srv_tmpl) {
1975 if (!*args[3]) {
1976 /* 'server-template' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001977 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 +02001978 file, linenum, args[0]);
1979 err_code |= ERR_ALERT | ERR_FATAL;
1980 goto out;
1981 }
1982
1983 err = invalid_prefix_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001984 }
1985
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001986 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001987 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 +02001988 file, linenum, *err, args[0], srv ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001989 err_code |= ERR_ALERT | ERR_FATAL;
1990 goto out;
1991 }
1992
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001993 cur_arg = 2;
1994 if (srv_tmpl) {
1995 /* Parse server-template <nb | range> arg. */
1996 if (srv_tmpl_parse_range(newsrv, args[cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001997 ha_alert("parsing [%s:%d] : Wrong %s number or range arg '%s'.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001998 file, linenum, args[0], args[cur_arg]);
1999 err_code |= ERR_ALERT | ERR_FATAL;
2000 goto out;
2001 }
2002 cur_arg++;
2003 }
2004
Willy Tarreau272adea2014-03-31 10:39:59 +02002005 if (!defsrv) {
2006 struct sockaddr_storage *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002007 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002008 struct protocol *proto;
2009
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002010 newsrv = new_server(curproxy);
2011 if (!newsrv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002012 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Willy Tarreau272adea2014-03-31 10:39:59 +02002013 err_code |= ERR_ALERT | ERR_ABORT;
2014 goto out;
2015 }
2016
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002017 if (srv_tmpl) {
2018 newsrv->tmpl_info.nb_low = tmpl_range_low;
2019 newsrv->tmpl_info.nb_high = tmpl_range_high;
2020 }
2021
Willy Tarreau272adea2014-03-31 10:39:59 +02002022 /* the servers are linked backwards first */
2023 newsrv->next = curproxy->srv;
2024 curproxy->srv = newsrv;
Willy Tarreau272adea2014-03-31 10:39:59 +02002025 newsrv->conf.file = strdup(file);
2026 newsrv->conf.line = linenum;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002027 /* Note: for a server template, its id is its prefix.
2028 * This is a temporary id which will be used for server allocations to come
2029 * after parsing.
2030 */
2031 if (srv)
2032 newsrv->id = strdup(args[1]);
2033 else
2034 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002035
2036 /* several ways to check the port component :
2037 * - IP => port=+0, relative (IPv4 only)
2038 * - IP: => port=+0, relative
2039 * - IP:N => port=N, absolute
2040 * - IP:+N => port=+N, relative
2041 * - IP:-N => port=-N, relative
2042 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002043 if (!parse_addr)
2044 goto skip_addr;
2045
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002046 sk = str2sa_range(args[cur_arg], &port, &port1, &port2, &errmsg, NULL, &fqdn, 0);
Willy Tarreau272adea2014-03-31 10:39:59 +02002047 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002048 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau272adea2014-03-31 10:39:59 +02002049 err_code |= ERR_ALERT | ERR_FATAL;
2050 goto out;
2051 }
2052
2053 proto = protocol_by_family(sk->ss_family);
Willy Tarreau9698f4b2017-01-06 18:42:57 +01002054 if (!fqdn && (!proto || !proto->connect)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002055 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002056 file, linenum, args[0], args[1]);
2057 err_code |= ERR_ALERT | ERR_FATAL;
2058 goto out;
2059 }
2060
2061 if (!port1 || !port2) {
2062 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +02002063 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +02002064 }
2065 else if (port1 != port2) {
2066 /* port range */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002067 ha_alert("parsing [%s:%d] : '%s %s' : port ranges are not allowed in '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002068 file, linenum, args[0], args[1], args[2]);
2069 err_code |= ERR_ALERT | ERR_FATAL;
2070 goto out;
2071 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002072
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002073 /* save hostname and create associated name resolution */
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002074 if (fqdn) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002075 if (fqdn[0] == '_') { /* SRV record */
Olivier Houchard8da5f982017-08-04 18:35:36 +02002076 /* Check if a SRV request already exists, and if not, create it */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002077 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2078 newsrv->srvrq = new_dns_srvrq(newsrv, fqdn);
2079 if (newsrv->srvrq == NULL) {
Olivier Houchard8da5f982017-08-04 18:35:36 +02002080 err_code |= ERR_ALERT | ERR_FATAL;
2081 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002082 }
2083 }
2084 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002085 ha_alert("parsing [%s:%d] : Can't create DNS resolution for server '%s'\n",
Christopher Faulet67957bd2017-09-27 11:00:59 +02002086 file, linenum, newsrv->id);
2087 err_code |= ERR_ALERT | ERR_FATAL;
2088 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002089 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002090 }
2091
Willy Tarreau272adea2014-03-31 10:39:59 +02002092 newsrv->addr = *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002093 newsrv->svc_port = port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002094
Olivier Houchard8da5f982017-08-04 18:35:36 +02002095 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002096 ha_alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002097 file, linenum, newsrv->addr.ss_family, args[cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002098 err_code |= ERR_ALERT | ERR_FATAL;
2099 goto out;
2100 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002101
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002102 cur_arg++;
2103 skip_addr:
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002104 /* Copy default server settings to new server settings. */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002105 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002106 HA_SPIN_INIT(&newsrv->lock);
Willy Tarreau272adea2014-03-31 10:39:59 +02002107 } else {
2108 newsrv = &curproxy->defsrv;
2109 cur_arg = 1;
Thierry Fournierada34842016-02-17 21:25:09 +01002110 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002111 newsrv->dns_opts.accept_duplicate_ip = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002112 }
2113
2114 while (*args[cur_arg]) {
Christopher Fauletcbba66c2020-04-06 14:26:30 +02002115 if (!strcmp(args[cur_arg], "init-addr")) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002116 char *p, *end;
2117 int done;
Willy Tarreau4310d362016-11-02 15:05:56 +01002118 struct sockaddr_storage sa;
Baptiste Assmann25938272016-09-21 20:26:16 +02002119
2120 newsrv->init_addr_methods = 0;
2121 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
2122
2123 for (p = args[cur_arg + 1]; *p; p = end) {
2124 /* cut on next comma */
2125 for (end = p; *end && *end != ','; end++);
2126 if (*end)
2127 *(end++) = 0;
2128
Willy Tarreau4310d362016-11-02 15:05:56 +01002129 memset(&sa, 0, sizeof(sa));
Baptiste Assmann25938272016-09-21 20:26:16 +02002130 if (!strcmp(p, "libc")) {
2131 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
2132 }
2133 else if (!strcmp(p, "last")) {
2134 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
2135 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01002136 else if (!strcmp(p, "none")) {
2137 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
2138 }
Willy Tarreau4310d362016-11-02 15:05:56 +01002139 else if (str2ip2(p, &sa, 0)) {
2140 if (is_addr(&newsrv->init_addr)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002141 ha_alert("parsing [%s:%d]: '%s' : initial address already specified, cannot add '%s'.\n",
Willy Tarreau4310d362016-11-02 15:05:56 +01002142 file, linenum, args[cur_arg], p);
2143 err_code |= ERR_ALERT | ERR_FATAL;
2144 goto out;
2145 }
2146 newsrv->init_addr = sa;
2147 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
2148 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002149 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002150 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 +02002151 file, linenum, args[cur_arg], p);
2152 err_code |= ERR_ALERT | ERR_FATAL;
2153 goto out;
2154 }
2155 if (!done) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002156 ha_alert("parsing [%s:%d]: '%s' : too many init-addr methods when trying to add '%s'\n",
Baptiste Assmann25938272016-09-21 20:26:16 +02002157 file, linenum, args[cur_arg], p);
2158 err_code |= ERR_ALERT | ERR_FATAL;
2159 goto out;
2160 }
2161 }
2162 cur_arg += 2;
2163 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002164 else if (!strcmp(args[cur_arg], "resolvers")) {
Frédéric Lécailledaa2fe62017-04-20 12:17:50 +02002165 free(newsrv->resolvers_id);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002166 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
2167 cur_arg += 2;
2168 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002169 else if (!strcmp(args[cur_arg], "resolve-opts")) {
2170 char *p, *end;
2171
2172 for (p = args[cur_arg + 1]; *p; p = end) {
2173 /* cut on next comma */
2174 for (end = p; *end && *end != ','; end++);
2175 if (*end)
2176 *(end++) = 0;
2177
2178 if (!strcmp(p, "allow-dup-ip")) {
2179 newsrv->dns_opts.accept_duplicate_ip = 1;
2180 }
Daniel Corbettf8716912019-11-17 09:48:56 -05002181 else if (!strcmp(p, "ignore-weight")) {
2182 newsrv->dns_opts.ignore_weight = 1;
2183 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002184 else if (!strcmp(p, "prevent-dup-ip")) {
2185 newsrv->dns_opts.accept_duplicate_ip = 0;
2186 }
2187 else {
Daniel Corbettf8716912019-11-17 09:48:56 -05002188 ha_alert("parsing [%s:%d]: '%s' : unknown resolve-opts option '%s', supported methods are 'allow-dup-ip', 'ignore-weight', and 'prevent-dup-ip'.\n",
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002189 file, linenum, args[cur_arg], p);
2190 err_code |= ERR_ALERT | ERR_FATAL;
2191 goto out;
2192 }
2193 }
2194
2195 cur_arg += 2;
2196 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002197 else if (!strcmp(args[cur_arg], "resolve-prefer")) {
2198 if (!strcmp(args[cur_arg + 1], "ipv4"))
Thierry Fournierada34842016-02-17 21:25:09 +01002199 newsrv->dns_opts.family_prio = AF_INET;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002200 else if (!strcmp(args[cur_arg + 1], "ipv6"))
Thierry Fournierada34842016-02-17 21:25:09 +01002201 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002202 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002203 ha_alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002204 file, linenum, args[cur_arg]);
2205 err_code |= ERR_ALERT | ERR_FATAL;
2206 goto out;
2207 }
2208 cur_arg += 2;
2209 }
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002210 else if (!strcmp(args[cur_arg], "resolve-net")) {
2211 char *p, *e;
2212 unsigned char mask;
2213 struct dns_options *opt;
2214
2215 if (!args[cur_arg + 1] || args[cur_arg + 1][0] == '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002216 ha_alert("parsing [%s:%d]: '%s' expects a list of networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002217 file, linenum, args[cur_arg]);
2218 err_code |= ERR_ALERT | ERR_FATAL;
2219 goto out;
2220 }
2221
2222 opt = &newsrv->dns_opts;
2223
2224 /* Split arguments by comma, and convert it from ipv4 or ipv6
2225 * string network in in_addr or in6_addr.
2226 */
2227 p = args[cur_arg + 1];
2228 e = p;
2229 while (*p != '\0') {
Joseph Herlant44466822018-11-15 08:57:51 -08002230 /* If no room available, return error. */
David Carlierd10025c2016-04-08 10:26:44 +01002231 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002232 ha_alert("parsing [%s:%d]: '%s' exceed %d networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002233 file, linenum, args[cur_arg], SRV_MAX_PREF_NET);
2234 err_code |= ERR_ALERT | ERR_FATAL;
2235 goto out;
2236 }
2237 /* look for end or comma. */
2238 while (*e != ',' && *e != '\0')
2239 e++;
2240 if (*e == ',') {
2241 *e = '\0';
2242 e++;
2243 }
2244 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
2245 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
2246 /* Try to convert input string from ipv4 or ipv6 network. */
2247 opt->pref_net[opt->pref_net_nb].family = AF_INET;
2248 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
2249 &mask)) {
2250 /* Try to convert input string from ipv6 network. */
2251 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
2252 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
2253 } else {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05002254 /* All network conversions fail, return error. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002255 ha_alert("parsing [%s:%d]: '%s': invalid network '%s'.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002256 file, linenum, args[cur_arg], p);
2257 err_code |= ERR_ALERT | ERR_FATAL;
2258 goto out;
2259 }
2260 opt->pref_net_nb++;
2261 p = e;
2262 }
2263
2264 cur_arg += 2;
2265 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002266 else if (!strcmp(args[cur_arg], "weight")) {
2267 int w;
2268 w = atol(args[cur_arg + 1]);
2269 if (w < 0 || w > SRV_UWGHT_MAX) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002270 ha_alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002271 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
2272 err_code |= ERR_ALERT | ERR_FATAL;
2273 goto out;
2274 }
2275 newsrv->uweight = newsrv->iweight = w;
2276 cur_arg += 2;
2277 }
Emeric Brun97556472020-05-30 01:42:45 +02002278 else if (!strcmp(args[cur_arg], "log-proto")) {
2279 if (!strcmp(args[cur_arg + 1], "legacy"))
2280 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
2281 else if (!strcmp(args[cur_arg + 1], "octet-count"))
2282 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
2283 else {
2284 ha_alert("parsing [%s:%d]: '%s' expects one of 'legacy' or "
2285 "'octet-count' but got '%s'\n",
2286 file, linenum, args[cur_arg], args[cur_arg + 1]);
2287 err_code |= ERR_ALERT | ERR_FATAL;
2288 goto out;
2289 }
2290 cur_arg += 2;
2291 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002292 else if (!strcmp(args[cur_arg], "minconn")) {
2293 newsrv->minconn = atol(args[cur_arg + 1]);
2294 cur_arg += 2;
2295 }
2296 else if (!strcmp(args[cur_arg], "maxconn")) {
2297 newsrv->maxconn = atol(args[cur_arg + 1]);
2298 cur_arg += 2;
2299 }
2300 else if (!strcmp(args[cur_arg], "maxqueue")) {
2301 newsrv->maxqueue = atol(args[cur_arg + 1]);
2302 cur_arg += 2;
2303 }
2304 else if (!strcmp(args[cur_arg], "slowstart")) {
2305 /* slowstart is stored in seconds */
2306 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02002307
2308 if (err == PARSE_TIME_OVER) {
2309 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).\n",
2310 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2311 err_code |= ERR_ALERT | ERR_FATAL;
2312 goto out;
2313 }
2314 else if (err == PARSE_TIME_UNDER) {
2315 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.\n",
2316 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2317 err_code |= ERR_ALERT | ERR_FATAL;
2318 goto out;
2319 }
2320 else if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002321 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002322 file, linenum, *err, newsrv->id);
2323 err_code |= ERR_ALERT | ERR_FATAL;
2324 goto out;
2325 }
2326 newsrv->slowstart = (val + 999) / 1000;
2327 cur_arg += 2;
2328 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002329 else if (!strcmp(args[cur_arg], "on-error")) {
2330 if (!strcmp(args[cur_arg + 1], "fastinter"))
2331 newsrv->onerror = HANA_ONERR_FASTINTER;
2332 else if (!strcmp(args[cur_arg + 1], "fail-check"))
2333 newsrv->onerror = HANA_ONERR_FAILCHK;
2334 else if (!strcmp(args[cur_arg + 1], "sudden-death"))
2335 newsrv->onerror = HANA_ONERR_SUDDTH;
2336 else if (!strcmp(args[cur_arg + 1], "mark-down"))
2337 newsrv->onerror = HANA_ONERR_MARKDWN;
2338 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002339 ha_alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
Willy Tarreau272adea2014-03-31 10:39:59 +02002340 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
2341 file, linenum, args[cur_arg], args[cur_arg + 1]);
2342 err_code |= ERR_ALERT | ERR_FATAL;
2343 goto out;
2344 }
2345
2346 cur_arg += 2;
2347 }
2348 else if (!strcmp(args[cur_arg], "on-marked-down")) {
2349 if (!strcmp(args[cur_arg + 1], "shutdown-sessions"))
2350 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
2351 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002352 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002353 file, linenum, args[cur_arg], args[cur_arg + 1]);
2354 err_code |= ERR_ALERT | ERR_FATAL;
2355 goto out;
2356 }
2357
2358 cur_arg += 2;
2359 }
2360 else if (!strcmp(args[cur_arg], "on-marked-up")) {
2361 if (!strcmp(args[cur_arg + 1], "shutdown-backup-sessions"))
2362 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
2363 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002364 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002365 file, linenum, args[cur_arg], args[cur_arg + 1]);
2366 err_code |= ERR_ALERT | ERR_FATAL;
2367 goto out;
2368 }
2369
2370 cur_arg += 2;
2371 }
2372 else if (!strcmp(args[cur_arg], "error-limit")) {
2373 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002374 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002375 file, linenum, args[cur_arg]);
2376 err_code |= ERR_ALERT | ERR_FATAL;
2377 goto out;
2378 }
2379
2380 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
2381
2382 if (newsrv->consecutive_errors_limit <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002383 ha_alert("parsing [%s:%d]: %s has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002384 file, linenum, args[cur_arg]);
2385 err_code |= ERR_ALERT | ERR_FATAL;
2386 goto out;
2387 }
2388 cur_arg += 2;
2389 }
Frédéric Lécaille8d083ed2017-04-14 15:19:56 +02002390 else if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside: needs "source" first */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002391 ha_alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002392 file, linenum, "usesrc", "source");
2393 err_code |= ERR_ALERT | ERR_FATAL;
2394 goto out;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002395 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002396 else {
2397 static int srv_dumped;
2398 struct srv_kw *kw;
2399 char *err;
2400
2401 kw = srv_find_kw(args[cur_arg]);
2402 if (kw) {
2403 char *err = NULL;
2404 int code;
2405
2406 if (!kw->parse) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002407 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 +02002408 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002409 if (kw->skip != -1)
2410 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002411 err_code |= ERR_ALERT | ERR_FATAL;
2412 goto out;
2413 }
2414
2415 if (defsrv && !kw->default_ok) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002416 ha_alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002417 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002418 if (kw->skip != -1)
2419 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002420 err_code |= ERR_ALERT;
2421 continue;
2422 }
2423
2424 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
2425 err_code |= code;
2426
2427 if (code) {
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002428 display_parser_err(file, linenum, args, cur_arg, code, &err);
Willy Tarreau272adea2014-03-31 10:39:59 +02002429 if (code & ERR_FATAL) {
2430 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002431 if (kw->skip != -1)
2432 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002433 goto out;
2434 }
2435 }
2436 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002437 if (kw->skip != -1)
2438 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002439 continue;
2440 }
2441
2442 err = NULL;
2443 if (!srv_dumped) {
2444 srv_dump_kws(&err);
2445 indent_msg(&err, 4);
2446 srv_dumped = 1;
2447 }
2448
Christopher Faulet767a84b2017-11-24 16:50:31 +01002449 ha_alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002450 file, linenum, args[0], args[1], args[cur_arg],
2451 err ? " Registered keywords :" : "", err ? err : "");
2452 free(err);
2453
2454 err_code |= ERR_ALERT | ERR_FATAL;
2455 goto out;
2456 }
2457 }
2458
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002459 if (!defsrv)
2460 err_code |= server_finalize_init(file, linenum, args, cur_arg, newsrv, curproxy);
2461 if (err_code & ERR_FATAL)
2462 goto out;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002463 if (srv_tmpl)
2464 server_template_init(newsrv, curproxy);
Willy Tarreau272adea2014-03-31 10:39:59 +02002465 }
Willy Tarreau07101d52015-09-08 16:16:35 +02002466 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002467 return 0;
2468
2469 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02002470 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002471 free(errmsg);
2472 return err_code;
2473}
2474
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002475/* Returns a pointer to the first server matching either id <id>.
2476 * NULL is returned if no match is found.
2477 * the lookup is performed in the backend <bk>
2478 */
2479struct server *server_find_by_id(struct proxy *bk, int id)
2480{
2481 struct eb32_node *eb32;
2482 struct server *curserver;
2483
2484 if (!bk || (id ==0))
2485 return NULL;
2486
2487 /* <bk> has no backend capabilities, so it can't have a server */
2488 if (!(bk->cap & PR_CAP_BE))
2489 return NULL;
2490
2491 curserver = NULL;
2492
2493 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2494 if (eb32)
2495 curserver = container_of(eb32, struct server, conf.id);
2496
2497 return curserver;
2498}
2499
2500/* Returns a pointer to the first server matching either name <name>, or id
2501 * if <name> starts with a '#'. NULL is returned if no match is found.
2502 * the lookup is performed in the backend <bk>
2503 */
2504struct server *server_find_by_name(struct proxy *bk, const char *name)
2505{
2506 struct server *curserver;
2507
2508 if (!bk || !name)
2509 return NULL;
2510
2511 /* <bk> has no backend capabilities, so it can't have a server */
2512 if (!(bk->cap & PR_CAP_BE))
2513 return NULL;
2514
2515 curserver = NULL;
2516 if (*name == '#') {
2517 curserver = server_find_by_id(bk, atoi(name + 1));
2518 if (curserver)
2519 return curserver;
2520 }
2521 else {
2522 curserver = bk->srv;
2523
2524 while (curserver && (strcmp(curserver->id, name) != 0))
2525 curserver = curserver->next;
2526
2527 if (curserver)
2528 return curserver;
2529 }
2530
2531 return NULL;
2532}
2533
2534struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2535{
2536 struct server *byname;
2537 struct server *byid;
2538
2539 if (!name && !id)
2540 return NULL;
2541
2542 if (diff)
2543 *diff = 0;
2544
2545 byname = byid = NULL;
2546
2547 if (name) {
2548 byname = server_find_by_name(bk, name);
2549 if (byname && (!id || byname->puid == id))
2550 return byname;
2551 }
2552
2553 /* remaining possibilities :
2554 * - name not set
2555 * - name set but not found
2556 * - name found but ID doesn't match
2557 */
2558 if (id) {
2559 byid = server_find_by_id(bk, id);
2560 if (byid) {
2561 if (byname) {
2562 /* use id only if forced by configuration */
2563 if (byid->flags & SRV_F_FORCED_ID) {
2564 if (diff)
2565 *diff |= 2;
2566 return byid;
2567 }
2568 else {
2569 if (diff)
2570 *diff |= 1;
2571 return byname;
2572 }
2573 }
2574
2575 /* remaining possibilities:
2576 * - name not set
2577 * - name set but not found
2578 */
2579 if (name && diff)
2580 *diff |= 2;
2581 return byid;
2582 }
2583
2584 /* id bot found */
2585 if (byname) {
2586 if (diff)
2587 *diff |= 1;
2588 return byname;
2589 }
2590 }
2591
2592 return NULL;
2593}
2594
Willy Tarreau46b7f532018-08-21 11:54:26 +02002595/* Update a server state using the parameters available in the params list.
2596 *
2597 * Grabs the server lock during operation.
2598 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002599static void srv_update_state(struct server *srv, int version, char **params)
2600{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002601 char *p;
Willy Tarreau83061a82018-07-13 11:56:34 +02002602 struct buffer *msg;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002603
2604 /* fields since version 1
2605 * and common to all other upcoming versions
2606 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002607 enum srv_state srv_op_state;
2608 enum srv_admin srv_admin_state;
2609 unsigned srv_uweight, srv_iweight;
2610 unsigned long srv_last_time_change;
2611 short srv_check_status;
2612 enum chk_result srv_check_result;
2613 int srv_check_health;
2614 int srv_check_state, srv_agent_state;
2615 int bk_f_forced_id;
2616 int srv_f_forced_id;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002617 int fqdn_set_by_cli;
2618 const char *fqdn;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002619 const char *port_str;
2620 unsigned int port;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002621 char *srvrecord;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002622
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002623 fqdn = NULL;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002624 port = 0;
Willy Tarreau31138fa2015-09-29 18:38:47 +02002625 msg = get_trash_chunk();
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002626 switch (version) {
2627 case 1:
2628 /*
2629 * now we can proceed with server's state update:
2630 * srv_addr: params[0]
2631 * srv_op_state: params[1]
2632 * srv_admin_state: params[2]
2633 * srv_uweight: params[3]
2634 * srv_iweight: params[4]
2635 * srv_last_time_change: params[5]
2636 * srv_check_status: params[6]
2637 * srv_check_result: params[7]
2638 * srv_check_health: params[8]
2639 * srv_check_state: params[9]
2640 * srv_agent_state: params[10]
2641 * bk_f_forced_id: params[11]
2642 * srv_f_forced_id: params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002643 * srv_fqdn: params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02002644 * srv_port: params[14]
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002645 * srvrecord: params[15]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002646 */
2647
2648 /* validating srv_op_state */
2649 p = NULL;
2650 errno = 0;
2651 srv_op_state = strtol(params[1], &p, 10);
2652 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
2653 (srv_op_state != SRV_ST_STOPPED &&
2654 srv_op_state != SRV_ST_STARTING &&
2655 srv_op_state != SRV_ST_RUNNING &&
2656 srv_op_state != SRV_ST_STOPPING)) {
2657 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
2658 }
2659
2660 /* validating srv_admin_state */
2661 p = NULL;
2662 errno = 0;
2663 srv_admin_state = strtol(params[2], &p, 10);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002664 fqdn_set_by_cli = !!(srv_admin_state & SRV_ADMF_HMAINT);
Willy Tarreau757478e2016-11-03 19:22:19 +01002665
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002666 /* inherited statuses will be recomputed later.
2667 * Also disable SRV_ADMF_HMAINT flag (set from stats socket fqdn).
2668 */
2669 srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_HMAINT;
Willy Tarreau757478e2016-11-03 19:22:19 +01002670
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002671 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
2672 (srv_admin_state != 0 &&
2673 srv_admin_state != SRV_ADMF_FMAINT &&
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002674 srv_admin_state != SRV_ADMF_CMAINT &&
2675 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
Willy Tarreaue1bde142016-11-03 18:33:25 +01002676 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FDRAIN) &&
Willy Tarreau757478e2016-11-03 19:22:19 +01002677 srv_admin_state != SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002678 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
2679 }
2680
2681 /* validating srv_uweight */
2682 p = NULL;
2683 errno = 0;
2684 srv_uweight = strtol(params[3], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002685 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002686 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
2687
2688 /* validating srv_iweight */
2689 p = NULL;
2690 errno = 0;
2691 srv_iweight = strtol(params[4], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002692 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002693 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
2694
2695 /* validating srv_last_time_change */
2696 p = NULL;
2697 errno = 0;
2698 srv_last_time_change = strtol(params[5], &p, 10);
2699 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2700 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
2701
2702 /* validating srv_check_status */
2703 p = NULL;
2704 errno = 0;
2705 srv_check_status = strtol(params[6], &p, 10);
2706 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2707 (srv_check_status >= HCHK_STATUS_SIZE))
2708 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
2709
2710 /* validating srv_check_result */
2711 p = NULL;
2712 errno = 0;
2713 srv_check_result = strtol(params[7], &p, 10);
2714 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2715 (srv_check_result != CHK_RES_UNKNOWN &&
2716 srv_check_result != CHK_RES_NEUTRAL &&
2717 srv_check_result != CHK_RES_FAILED &&
2718 srv_check_result != CHK_RES_PASSED &&
2719 srv_check_result != CHK_RES_CONDPASS)) {
2720 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2721 }
2722
2723 /* validating srv_check_health */
2724 p = NULL;
2725 errno = 0;
2726 srv_check_health = strtol(params[8], &p, 10);
2727 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2728 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
2729
2730 /* validating srv_check_state */
2731 p = NULL;
2732 errno = 0;
2733 srv_check_state = strtol(params[9], &p, 10);
2734 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2735 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2736 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
2737
2738 /* validating srv_agent_state */
2739 p = NULL;
2740 errno = 0;
2741 srv_agent_state = strtol(params[10], &p, 10);
2742 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2743 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2744 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
2745
2746 /* validating bk_f_forced_id */
2747 p = NULL;
2748 errno = 0;
2749 bk_f_forced_id = strtol(params[11], &p, 10);
2750 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
2751 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
2752
2753 /* validating srv_f_forced_id */
2754 p = NULL;
2755 errno = 0;
2756 srv_f_forced_id = strtol(params[12], &p, 10);
2757 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
2758 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
2759
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002760 /* validating srv_fqdn */
2761 fqdn = params[13];
2762 if (fqdn && *fqdn == '-')
2763 fqdn = NULL;
2764 if (fqdn && (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn))) {
2765 chunk_appendf(msg, ", invalid srv_fqdn value '%s'", params[13]);
2766 fqdn = NULL;
2767 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002768
Frédéric Lécaille31694712017-08-01 08:47:19 +02002769 port_str = params[14];
2770 if (port_str) {
2771 port = strl2uic(port_str, strlen(port_str));
2772 if (port > USHRT_MAX) {
2773 chunk_appendf(msg, ", invalid srv_port value '%s'", port_str);
2774 port_str = NULL;
2775 }
2776 }
2777
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002778 /* SRV record
2779 * NOTE: in HAProxy, SRV records must start with an underscore '_'
2780 */
2781 srvrecord = params[15];
2782 if (srvrecord && *srvrecord != '_')
2783 srvrecord = NULL;
2784
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002785 /* don't apply anything if one error has been detected */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002786 if (msg->data)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002787 goto out;
2788
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002789 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002790 /* recover operational state and apply it to this server
2791 * and all servers tracking this one */
Jérôme Magninf57afa42019-01-20 11:27:40 +01002792 srv->check.health = srv_check_health;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002793 switch (srv_op_state) {
2794 case SRV_ST_STOPPED:
2795 srv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02002796 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002797 break;
2798 case SRV_ST_STARTING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002799 /* If rise == 1 there is no STARTING state, let's switch to
2800 * RUNNING
2801 */
2802 if (srv->check.rise == 1) {
2803 srv->check.health = srv->check.rise + srv->check.fall - 1;
2804 srv_set_running(srv, "", NULL);
2805 break;
2806 }
2807 if (srv->check.health < 1 || srv->check.health >= srv->check.rise)
2808 srv->check.health = srv->check.rise - 1;
Emeric Brun52a91d32017-08-31 14:41:55 +02002809 srv->next_state = srv_op_state;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002810 break;
2811 case SRV_ST_STOPPING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002812 /* If fall == 1 there is no STOPPING state, let's switch to
2813 * STOPPED
2814 */
2815 if (srv->check.fall == 1) {
2816 srv->check.health = 0;
2817 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
2818 break;
2819 }
2820 if (srv->check.health < srv->check.rise ||
2821 srv->check.health > srv->check.rise + srv->check.fall - 2)
2822 srv->check.health = srv->check.rise;
Emeric Brun5a133512017-10-19 14:42:30 +02002823 srv_set_stopping(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002824 break;
2825 case SRV_ST_RUNNING:
2826 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02002827 srv_set_running(srv, "", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002828 break;
2829 }
2830
2831 /* When applying server state, the following rules apply:
2832 * - in case of a configuration change, we apply the setting from the new
2833 * configuration, regardless of old running state
2834 * - if no configuration change, we apply old running state only if old running
2835 * state is different from new configuration state
2836 */
2837 /* configuration has changed */
Emeric Brun52a91d32017-08-31 14:41:55 +02002838 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->next_admin & SRV_ADMF_CMAINT)) {
2839 if (srv->next_admin & SRV_ADMF_CMAINT)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002840 srv_adm_set_maint(srv);
2841 else
2842 srv_adm_set_ready(srv);
2843 }
2844 /* configuration is the same, let's compate old running state and new conf state */
2845 else {
Emeric Brun52a91d32017-08-31 14:41:55 +02002846 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002847 srv_adm_set_maint(srv);
Emeric Brun52a91d32017-08-31 14:41:55 +02002848 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002849 srv_adm_set_ready(srv);
2850 }
2851 /* apply drain mode if server is currently enabled */
Emeric Brun52a91d32017-08-31 14:41:55 +02002852 if (!(srv->next_admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002853 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
Willy Tarreau22cace22016-11-03 18:19:49 +01002854 * (srv->iweight is the weight set up in configuration).
2855 * There are two possible reasons for FDRAIN to have been present :
2856 * - previous config weight was zero
2857 * - "set server b/s drain" was sent to the CLI
2858 *
2859 * In the first case, we simply want to drop this drain state
2860 * if the new weight is not zero anymore, meaning the administrator
2861 * has intentionally turned the weight back to a positive value to
2862 * enable the server again after an operation. In the second case,
2863 * the drain state was forced on the CLI regardless of the config's
2864 * weight so we don't want a change to the config weight to lose this
2865 * status. What this means is :
2866 * - if previous weight was 0 and new one is >0, drop the DRAIN state.
2867 * - if the previous weight was >0, keep it.
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002868 */
Willy Tarreau22cace22016-11-03 18:19:49 +01002869 if (srv_iweight > 0 || srv->iweight == 0)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002870 srv_adm_set_drain(srv);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002871 }
2872
2873 srv->last_change = date.tv_sec - srv_last_time_change;
2874 srv->check.status = srv_check_status;
2875 srv->check.result = srv_check_result;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002876
2877 /* Only case we want to apply is removing ENABLED flag which could have been
2878 * done by the "disable health" command over the stats socket
2879 */
2880 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2881 (srv_check_state & CHK_ST_CONFIGURED) &&
2882 !(srv_check_state & CHK_ST_ENABLED))
2883 srv->check.state &= ~CHK_ST_ENABLED;
2884
2885 /* Only case we want to apply is removing ENABLED flag which could have been
2886 * done by the "disable agent" command over the stats socket
2887 */
2888 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
2889 (srv_agent_state & CHK_ST_CONFIGURED) &&
2890 !(srv_agent_state & CHK_ST_ENABLED))
2891 srv->agent.state &= ~CHK_ST_ENABLED;
2892
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002893 /* We want to apply the previous 'running' weight (srv_uweight) only if there
2894 * was no change in the configuration: both previous and new iweight are equals
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002895 *
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002896 * It means that a configuration file change has precedence over a unix socket change
2897 * for server's weight
2898 *
2899 * by default, HAProxy applies the following weight when parsing the configuration
2900 * srv->uweight = srv->iweight
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002901 */
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002902 if (srv_iweight == srv->iweight) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002903 srv->uweight = srv_uweight;
2904 }
Willy Tarreau3ff577e2018-08-02 11:48:52 +02002905 server_recalc_eweight(srv, 1);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002906
Willy Tarreaue5a60682016-11-09 14:54:53 +01002907 /* load server IP address */
Daniel Corbett9215ffa2018-05-19 19:43:24 -04002908 if (strcmp(params[0], "-"))
2909 srv->lastaddr = strdup(params[0]);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002910
2911 if (fqdn && srv->hostname) {
2912 if (!strcmp(srv->hostname, fqdn)) {
2913 /* Here we reset the 'set from stats socket FQDN' flag
2914 * to support such transitions:
2915 * Let's say initial FQDN value is foo1 (in configuration file).
2916 * - FQDN changed from stats socket, from foo1 to foo2 value,
2917 * - FQDN changed again from file configuration (with the same previous value
2918 set from stats socket, from foo1 to foo2 value),
2919 * - reload for any other reason than a FQDN modification,
2920 * the configuration file FQDN matches the fqdn server state file value.
2921 * So we must reset the 'set from stats socket FQDN' flag to be consistent with
Joseph Herlant44466822018-11-15 08:57:51 -08002922 * any further FQDN modification.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002923 */
Emeric Brun52a91d32017-08-31 14:41:55 +02002924 srv->next_admin &= ~SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002925 }
2926 else {
2927 /* If the FDQN has been changed from stats socket,
2928 * apply fqdn state file value (which is the value set
2929 * from stats socket).
Baptiste Assmann13a92322019-06-07 09:40:55 +02002930 * Also ensure the runtime resolver will process this resolution.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002931 */
2932 if (fqdn_set_by_cli) {
Olivier Houchardd16bfe62017-10-31 15:21:19 +01002933 srv_set_fqdn(srv, fqdn, 0);
Baptiste Assmann13a92322019-06-07 09:40:55 +02002934 srv->flags &= ~SRV_F_NO_RESOLUTION;
Emeric Brun52a91d32017-08-31 14:41:55 +02002935 srv->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002936 }
2937 }
2938 }
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002939 /* If all the conditions below are validated, this means
2940 * we're evaluating a server managed by SRV resolution
2941 */
2942 else if (fqdn && !srv->hostname && srvrecord) {
2943 int res;
2944
2945 /* we can't apply previous state if SRV record has changed */
2946 if (srv->srvrq && strcmp(srv->srvrq->name, srvrecord) != 0) {
2947 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);
2948 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2949 goto out;
2950 }
2951
2952 /* create or find a SRV resolution for this srv record */
2953 if (srv->srvrq == NULL && (srv->srvrq = find_srvrq_by_name(srvrecord, srv->proxy)) == NULL)
2954 srv->srvrq = new_dns_srvrq(srv, srvrecord);
2955 if (srv->srvrq == NULL) {
2956 chunk_appendf(msg, ", can't create or find SRV resolution '%s' for server '%s'", srvrecord, srv->id);
2957 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2958 goto out;
2959 }
2960
2961 /* prepare DNS resolution for this server */
2962 res = srv_prepare_for_resolution(srv, fqdn);
2963 if (res == -1) {
2964 chunk_appendf(msg, ", can't allocate memory for DNS resolution for server '%s'", srv->id);
2965 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2966 goto out;
2967 }
2968
2969 /* configure check.port accordingly */
2970 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2971 !(srv->flags & SRV_F_CHECKPORT))
2972 srv->check.port = port;
2973
2974 /* Unset SRV_F_MAPPORTS for SRV records.
2975 * SRV_F_MAPPORTS is unfortunately set by parse_server()
2976 * because no ports are provided in the configuration file.
2977 * This is because HAProxy will use the port found into the SRV record.
2978 */
2979 srv->flags &= ~SRV_F_MAPPORTS;
2980 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002981
Frédéric Lécaille31694712017-08-01 08:47:19 +02002982 if (port_str)
2983 srv->svc_port = port;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002984 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Frédéric Lécaille31694712017-08-01 08:47:19 +02002985
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002986 break;
2987 default:
2988 chunk_appendf(msg, ", version '%d' not supported", version);
2989 }
2990
2991 out:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002992 if (msg->data) {
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002993 chunk_appendf(msg, "\n");
Christopher Faulet767a84b2017-11-24 16:50:31 +01002994 ha_warning("server-state application failed for server '%s/%s'%s",
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002995 srv->proxy->id, srv->id, msg->area);
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002996 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002997}
2998
Baptiste Assmannda29fe22019-06-13 13:24:29 +02002999
3000/*
3001 * read next line from file <f> and return the server state version if one found.
3002 * If no version is found, then 0 is returned
3003 * Note that this should be the first read on <f>
3004 */
3005static int srv_state_get_version(FILE *f) {
3006 char buf[2];
3007 int ret;
3008
3009 /* first character of first line of the file must contain the version of the export */
3010 if (fgets(buf, 2, f) == NULL) {
3011 return 0;
3012 }
3013
3014 ret = atoi(buf);
3015 if ((ret < SRV_STATE_FILE_VERSION_MIN) ||
3016 (ret > SRV_STATE_FILE_VERSION_MAX))
3017 return 0;
3018
3019 return ret;
3020}
3021
3022
3023/*
3024 * parses server state line stored in <buf> and supposedly in version <version>.
3025 * Set <params> and <srv_params> accordingly.
3026 * In case of error, params[0] is set to NULL.
3027 */
3028static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params)
3029{
3030 int buflen, arg, srv_arg;
3031 char *cur, *end;
3032
3033 buflen = strlen(buf);
3034 cur = buf;
3035 end = cur + buflen;
3036
3037 /* we need at least one character */
3038 if (buflen == 0) {
3039 params[0] = NULL;
3040 return;
3041 }
3042
3043 /* ignore blank characters at the beginning of the line */
Willy Tarreau90807112020-02-25 08:16:33 +01003044 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003045 ++cur;
3046
3047 /* Ignore empty or commented lines */
3048 if (cur == end || *cur == '#') {
3049 params[0] = NULL;
3050 return;
3051 }
3052
3053 /* truncated lines */
3054 if (buf[buflen - 1] != '\n') {
3055 //ha_warning("server-state file '%s': truncated line\n", filepath);
3056 params[0] = NULL;
3057 return;
3058 }
3059
3060 /* Removes trailing '\n' */
3061 buf[buflen - 1] = '\0';
3062
3063 /* we're now ready to move the line into *srv_params[] */
3064 params[0] = cur;
3065 arg = 1;
3066 srv_arg = 0;
3067 while (*cur && arg < SRV_STATE_FILE_MAX_FIELDS) {
Willy Tarreau90807112020-02-25 08:16:33 +01003068 if (isspace((unsigned char)*cur)) {
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003069 *cur = '\0';
3070 ++cur;
Willy Tarreau90807112020-02-25 08:16:33 +01003071 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003072 ++cur;
3073 switch (version) {
3074 case 1:
3075 /*
3076 * srv_addr: params[4] => srv_params[0]
3077 * srv_op_state: params[5] => srv_params[1]
3078 * srv_admin_state: params[6] => srv_params[2]
3079 * srv_uweight: params[7] => srv_params[3]
3080 * srv_iweight: params[8] => srv_params[4]
3081 * srv_last_time_change: params[9] => srv_params[5]
3082 * srv_check_status: params[10] => srv_params[6]
3083 * srv_check_result: params[11] => srv_params[7]
3084 * srv_check_health: params[12] => srv_params[8]
3085 * srv_check_state: params[13] => srv_params[9]
3086 * srv_agent_state: params[14] => srv_params[10]
3087 * bk_f_forced_id: params[15] => srv_params[11]
3088 * srv_f_forced_id: params[16] => srv_params[12]
3089 * srv_fqdn: params[17] => srv_params[13]
3090 * srv_port: params[18] => srv_params[14]
3091 * srvrecord: params[19] => srv_params[15]
3092 */
3093 if (arg >= 4) {
3094 srv_params[srv_arg] = cur;
3095 ++srv_arg;
3096 }
3097 break;
3098 }
3099
3100 params[arg] = cur;
3101 ++arg;
3102 }
3103 else {
3104 ++cur;
3105 }
3106 }
3107
3108 /* if line is incomplete line, then ignore it.
3109 * otherwise, update useful flags */
3110 switch (version) {
3111 case 1:
3112 if (arg < SRV_STATE_FILE_NB_FIELDS_VERSION_1) {
3113 params[0] = NULL;
3114 return;
3115 }
3116 break;
3117 }
3118
3119 return;
3120}
3121
3122
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003123/* This function parses all the proxies and only take care of the backends (since we're looking for server)
3124 * For each proxy, it does the following:
3125 * - opens its server state file (either one or local one)
3126 * - read whole file, line by line
3127 * - analyse each line to check if it matches our current backend:
3128 * - backend name matches
3129 * - backend id matches if id is forced and name doesn't match
3130 * - if the server pointed by the line is found, then state is applied
3131 *
3132 * If the running backend uuid or id differs from the state file, then HAProxy reports
3133 * a warning.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003134 *
3135 * Grabs the server's lock via srv_update_state().
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003136 */
3137void apply_server_state(void)
3138{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003139 char mybuf[SRV_STATE_LINE_MAXLEN];
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003140 char *params[SRV_STATE_FILE_MAX_FIELDS] = {0};
3141 char *srv_params[SRV_STATE_FILE_MAX_FIELDS] = {0};
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003142 int version, global_file_version;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003143 FILE *f;
3144 char *filepath;
3145 char globalfilepath[MAXPATHLEN + 1];
3146 char localfilepath[MAXPATHLEN + 1];
3147 int len, fileopenerr, globalfilepathlen, localfilepathlen;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003148 struct proxy *curproxy, *bk;
3149 struct server *srv;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003150 char *line;
3151 char *bkname, *srvname;
3152 struct state_line *st;
3153 struct ebmb_node *node, *next_node;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003154
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003155
3156 global_file_version = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003157 globalfilepathlen = 0;
3158 /* create the globalfilepath variable */
3159 if (global.server_state_file) {
3160 /* absolute path or no base directory provided */
3161 if ((global.server_state_file[0] == '/') || (!global.server_state_base)) {
3162 len = strlen(global.server_state_file);
3163 if (len > MAXPATHLEN) {
3164 globalfilepathlen = 0;
3165 goto globalfileerror;
3166 }
3167 memcpy(globalfilepath, global.server_state_file, len);
3168 globalfilepath[len] = '\0';
3169 globalfilepathlen = len;
3170 }
3171 else if (global.server_state_base) {
3172 len = strlen(global.server_state_base);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003173 if (len > MAXPATHLEN) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003174 globalfilepathlen = 0;
3175 goto globalfileerror;
3176 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003177 memcpy(globalfilepath, global.server_state_base, len);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003178 globalfilepath[len] = 0;
3179 globalfilepathlen = len;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003180
3181 /* append a slash if needed */
3182 if (!globalfilepathlen || globalfilepath[globalfilepathlen - 1] != '/') {
3183 if (globalfilepathlen + 1 > MAXPATHLEN) {
3184 globalfilepathlen = 0;
3185 goto globalfileerror;
3186 }
3187 globalfilepath[globalfilepathlen++] = '/';
3188 }
3189
3190 len = strlen(global.server_state_file);
3191 if (globalfilepathlen + len > MAXPATHLEN) {
3192 globalfilepathlen = 0;
3193 goto globalfileerror;
3194 }
3195 memcpy(globalfilepath + globalfilepathlen, global.server_state_file, len);
3196 globalfilepathlen += len;
3197 globalfilepath[globalfilepathlen++] = 0;
3198 }
3199 }
3200 globalfileerror:
3201 if (globalfilepathlen == 0)
3202 globalfilepath[0] = '\0';
3203
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003204 /* Load global server state in a tree */
3205 if (globalfilepathlen > 0) {
3206 errno = 0;
3207 f = fopen(globalfilepath, "r");
3208 if (errno)
3209 ha_warning("Can't open global server state file '%s': %s\n", globalfilepath, strerror(errno));
Vedran Furac5d486272019-10-16 14:49:38 +02003210 if (!f)
3211 goto out_load_server_state_in_tree;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003212
3213 global_file_version = srv_state_get_version(f);
3214 if (global_file_version == 0)
3215 goto out_load_server_state_in_tree;
3216
3217 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3218 line = NULL;
3219
3220 line = strdup(mybuf);
3221 if (line == NULL)
3222 continue;
3223
3224 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3225 if (params[0] == NULL)
Willy Tarreauca7a5af2019-12-20 17:26:27 +01003226 goto nextline;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003227
3228 /* bkname */
3229 bkname = params[1];
3230 /* srvname */
3231 srvname = params[3];
3232
3233 /* key */
3234 chunk_printf(&trash, "%s %s", bkname, srvname);
3235
3236 /* store line in tree */
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003237 st = calloc(1, sizeof(*st) + trash.data + 1);
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003238 if (st == NULL) {
3239 goto nextline;
3240 }
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003241 memcpy(st->name_name.key, trash.area, trash.data + 1);
Willy Tarreaufd1aa012019-12-20 17:23:40 +01003242 if (ebst_insert(&state_file, &st->name_name) != &st->name_name) {
3243 /* this is a duplicate key, probably a hand-crafted file,
3244 * drop it!
3245 */
3246 goto nextline;
3247 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003248
3249 /* save line */
3250 st->line = line;
3251
3252 continue;
3253
3254 nextline:
3255 /* free up memory in case of error during the processing of the line */
3256 free(line);
3257 }
3258 }
3259 out_load_server_state_in_tree:
3260
3261 /* parse all proxies and load states form tree (global file) or from local file */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003262 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003263 /* servers are only in backends */
3264 if (!(curproxy->cap & PR_CAP_BE))
3265 continue;
3266 fileopenerr = 0;
3267 filepath = NULL;
3268
3269 /* search server state file path and name */
3270 switch (curproxy->load_server_state_from_file) {
3271 /* read servers state from global file */
3272 case PR_SRV_STATE_FILE_GLOBAL:
3273 /* there was an error while generating global server state file path */
3274 if (globalfilepathlen == 0)
3275 continue;
3276 filepath = globalfilepath;
3277 fileopenerr = 1;
3278 break;
3279 /* this backend has its own file */
3280 case PR_SRV_STATE_FILE_LOCAL:
3281 localfilepathlen = 0;
3282 localfilepath[0] = '\0';
3283 len = 0;
3284 /* create the localfilepath variable */
3285 /* absolute path or no base directory provided */
3286 if ((curproxy->server_state_file_name[0] == '/') || (!global.server_state_base)) {
3287 len = strlen(curproxy->server_state_file_name);
3288 if (len > MAXPATHLEN) {
3289 localfilepathlen = 0;
3290 goto localfileerror;
3291 }
3292 memcpy(localfilepath, curproxy->server_state_file_name, len);
3293 localfilepath[len] = '\0';
3294 localfilepathlen = len;
3295 }
3296 else if (global.server_state_base) {
3297 len = strlen(global.server_state_base);
3298 localfilepathlen += len;
3299
3300 if (localfilepathlen > MAXPATHLEN) {
3301 localfilepathlen = 0;
3302 goto localfileerror;
3303 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003304 memcpy(localfilepath, global.server_state_base, len);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003305 localfilepath[localfilepathlen] = 0;
3306
3307 /* append a slash if needed */
3308 if (!localfilepathlen || localfilepath[localfilepathlen - 1] != '/') {
3309 if (localfilepathlen + 1 > MAXPATHLEN) {
3310 localfilepathlen = 0;
3311 goto localfileerror;
3312 }
3313 localfilepath[localfilepathlen++] = '/';
3314 }
3315
3316 len = strlen(curproxy->server_state_file_name);
3317 if (localfilepathlen + len > MAXPATHLEN) {
3318 localfilepathlen = 0;
3319 goto localfileerror;
3320 }
3321 memcpy(localfilepath + localfilepathlen, curproxy->server_state_file_name, len);
3322 localfilepathlen += len;
3323 localfilepath[localfilepathlen++] = 0;
3324 }
3325 filepath = localfilepath;
3326 localfileerror:
3327 if (localfilepathlen == 0)
3328 localfilepath[0] = '\0';
3329
3330 break;
3331 case PR_SRV_STATE_FILE_NONE:
3332 default:
3333 continue;
3334 }
3335
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003336 /* when global file is used, we get data from the tree
3337 * Note that in such case we don't check backend name neither uuid.
3338 * Backend name can't be wrong since it's used as a key to retrieve the server state
3339 * line from the tree.
3340 */
3341 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_GLOBAL) {
3342 struct server *srv = curproxy->srv;
3343 while (srv) {
3344 struct ebmb_node *node;
3345 struct state_line *st;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003346
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003347 chunk_printf(&trash, "%s %s", curproxy->id, srv->id);
3348 node = ebst_lookup(&state_file, trash.area);
3349 if (!node)
3350 goto next;
Dragan Dosencf4fb032015-11-04 23:03:26 +01003351
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003352 st = container_of(node, struct state_line, name_name);
3353 memcpy(mybuf, st->line, strlen(st->line));
3354 mybuf[strlen(st->line)] = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003355
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003356 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3357 if (params[0] == NULL)
3358 goto next;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003359
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003360 srv_update_state(srv, global_file_version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003361
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003362 next:
3363 srv = srv->next;
3364 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003365
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003366 continue; /* next proxy in list */
3367 }
3368 else {
3369 /* load 'local' state file */
3370 errno = 0;
3371 f = fopen(filepath, "r");
3372 if (errno && fileopenerr)
3373 ha_warning("Can't open server state file '%s': %s\n", filepath, strerror(errno));
3374 if (!f)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003375 continue;
3376
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003377 mybuf[0] = '\0';
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003378
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003379 /* first character of first line of the file must contain the version of the export */
3380 version = srv_state_get_version(f);
3381 if (version == 0) {
3382 ha_warning("Can't get version of the server state file '%s'\n", filepath);
3383 goto fileclose;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003384 }
3385
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003386 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3387 int bk_f_forced_id = 0;
3388 int check_id = 0;
3389 int check_name = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003390
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003391 srv_state_parse_line(mybuf, version, params, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003392
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003393 if (params[0] == NULL) {
3394 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003395 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003396
3397 /* if line is incomplete line, then ignore it.
3398 * otherwise, update useful flags */
3399 switch (version) {
3400 case 1:
3401 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
3402 check_id = (atoi(params[0]) == curproxy->uuid);
3403 check_name = (strcmp(curproxy->id, params[1]) == 0);
3404 break;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003405 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003406
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003407 bk = curproxy;
3408
3409 /* if backend can't be found, let's continue */
3410 if (!check_id && !check_name)
3411 continue;
3412 else if (!check_id && check_name) {
3413 ha_warning("backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3414 send_log(bk, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3415 }
3416 else if (check_id && !check_name) {
3417 ha_warning("backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3418 send_log(bk, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3419 /* if name doesn't match, we still want to update curproxy if the backend id
3420 * was forced in previous the previous configuration */
3421 if (!bk_f_forced_id)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003422 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003423 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003424
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003425 /* look for the server by its name: param[3] */
3426 srv = server_find_best_match(bk, params[3], 0, NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003427
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003428 if (!srv) {
3429 /* if no server found, then warning and continue with next line */
3430 ha_warning("can't find server '%s' in backend '%s'\n",
3431 params[3], params[1]);
3432 send_log(bk, LOG_NOTICE, "can't find server '%s' in backend '%s'\n",
3433 params[3], params[1]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003434 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003435 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003436
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003437 /* now we can proceed with server's state update */
3438 srv_update_state(srv, version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003439 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003440 }
Dragan Dosencf4fb032015-11-04 23:03:26 +01003441fileclose:
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003442 fclose(f);
3443 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003444
3445 /* now free memory allocated for the tree */
3446 for (node = ebmb_first(&state_file), next_node = node ? ebmb_next(node) : NULL;
3447 node;
3448 node = next_node, next_node = node ? ebmb_next(node) : NULL) {
3449 st = container_of(node, struct state_line, name_name);
3450 ebmb_delete(&st->name_name);
3451 free(st->line);
3452 free(st);
3453 }
3454
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003455}
3456
Simon Horman7d09b9a2013-02-12 10:45:51 +09003457/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003458 * update a server's current IP address.
3459 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3460 * ip is in network format.
3461 * updater is a string which contains an information about the requester of the update.
3462 * updater is used if not NULL.
3463 *
3464 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003465 *
3466 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003467 */
Thierry Fournierd35b7a62016-02-24 08:23:22 +01003468int update_server_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003469{
3470 /* generates a log line and a warning on stderr */
3471 if (1) {
3472 /* book enough space for both IPv4 and IPv6 */
3473 char oldip[INET6_ADDRSTRLEN];
3474 char newip[INET6_ADDRSTRLEN];
3475
3476 memset(oldip, '\0', INET6_ADDRSTRLEN);
3477 memset(newip, '\0', INET6_ADDRSTRLEN);
3478
3479 /* copy old IP address in a string */
3480 switch (s->addr.ss_family) {
3481 case AF_INET:
3482 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3483 break;
3484 case AF_INET6:
3485 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3486 break;
3487 };
3488
3489 /* copy new IP address in a string */
3490 switch (ip_sin_family) {
3491 case AF_INET:
3492 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3493 break;
3494 case AF_INET6:
3495 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3496 break;
3497 };
3498
3499 /* save log line into a buffer */
3500 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3501 s->proxy->id, s->id, oldip, newip, updater);
3502
3503 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003504 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003505
3506 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003507 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003508 }
3509
3510 /* save the new IP family */
3511 s->addr.ss_family = ip_sin_family;
3512 /* save the new IP address */
3513 switch (ip_sin_family) {
3514 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003515 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003516 break;
3517 case AF_INET6:
3518 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3519 break;
3520 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003521 srv_set_dyncookie(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003522
3523 return 0;
3524}
3525
3526/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003527 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3528 *
3529 * Caller can pass its name through <updater> to get it integrated in the response message
3530 * returned by the function.
3531 *
3532 * The function first does the following, in that order:
3533 * - validates the new addr and/or port
3534 * - checks if an update is required (new IP or port is different than current ones)
3535 * - checks the update is allowed:
3536 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3537 * - allow all changes if no CHECKS are configured
3538 * - if CHECK is configured:
3539 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3540 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3541 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003542 *
3543 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003544 */
3545const char *update_server_addr_port(struct server *s, const char *addr, const char *port, char *updater)
3546{
3547 struct sockaddr_storage sa;
3548 int ret, port_change_required;
3549 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003550 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003551 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003552 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003553
3554 msg = get_trash_chunk();
3555 chunk_reset(msg);
3556
3557 if (addr) {
3558 memset(&sa, 0, sizeof(struct sockaddr_storage));
3559 if (str2ip2(addr, &sa, 0) == NULL) {
3560 chunk_printf(msg, "Invalid addr '%s'", addr);
3561 goto out;
3562 }
3563
3564 /* changes are allowed on AF_INET* families only */
3565 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3566 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3567 goto out;
3568 }
3569
3570 /* collecting data currently setup */
3571 memset(current_addr, '\0', sizeof(current_addr));
3572 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3573 /* changes are allowed on AF_INET* families only */
3574 if ((ret != AF_INET) && (ret != AF_INET6)) {
3575 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3576 goto out;
3577 }
3578
3579 /* applying ADDR changes if required and allowed
3580 * ipcmp returns 0 when both ADDR are the same
3581 */
3582 if (ipcmp(&s->addr, &sa) == 0) {
3583 chunk_appendf(msg, "no need to change the addr");
3584 goto port;
3585 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003586 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003587 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003588
3589 /* we also need to update check's ADDR only if it uses the server's one */
3590 if ((s->check.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_CHECKADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003591 ipcpy(&sa, &s->check.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003592 }
3593
3594 /* we also need to update agent ADDR only if it use the server's one */
3595 if ((s->agent.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_AGENTADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003596 ipcpy(&sa, &s->agent.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003597 }
3598
3599 /* update report for caller */
3600 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3601 }
3602
3603 port:
3604 if (port) {
3605 char sign = '\0';
3606 char *endptr;
3607
3608 if (addr)
3609 chunk_appendf(msg, ", ");
3610
3611 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003612 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003613
3614 /* check if PORT change is required */
3615 port_change_required = 0;
3616
3617 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003618 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003619 new_port = strtol(port, &endptr, 10);
3620 if ((errno != 0) || (port == endptr)) {
3621 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3622 goto out;
3623 }
3624
3625 /* check if caller triggers a port mapped or offset */
3626 if (sign == '-' || (sign == '+')) {
3627 /* check if server currently uses port map */
3628 if (!(s->flags & SRV_F_MAPPORTS)) {
3629 /* switch from fixed port to port map mandatorily triggers
3630 * a port change */
3631 port_change_required = 1;
3632 /* check is configured
3633 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3634 * prevent PORT change if check doesn't have it's dedicated port while switching
3635 * to port mapping */
3636 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3637 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.");
3638 goto out;
3639 }
3640 }
3641 /* we're already using port maps */
3642 else {
3643 port_change_required = current_port != new_port;
3644 }
3645 }
3646 /* fixed port */
3647 else {
3648 port_change_required = current_port != new_port;
3649 }
3650
3651 /* applying PORT changes if required and update response message */
3652 if (port_change_required) {
3653 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003654 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003655 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003656
3657 /* prepare message */
3658 chunk_appendf(msg, "port changed from '");
3659 if (s->flags & SRV_F_MAPPORTS)
3660 chunk_appendf(msg, "+");
3661 chunk_appendf(msg, "%d' to '", current_port);
3662
3663 if (sign == '-') {
3664 s->flags |= SRV_F_MAPPORTS;
3665 chunk_appendf(msg, "%c", sign);
3666 /* just use for result output */
3667 new_port = -new_port;
3668 }
3669 else if (sign == '+') {
3670 s->flags |= SRV_F_MAPPORTS;
3671 chunk_appendf(msg, "%c", sign);
3672 }
3673 else {
3674 s->flags &= ~SRV_F_MAPPORTS;
3675 }
3676
3677 chunk_appendf(msg, "%d'", new_port);
3678
3679 /* we also need to update health checks port only if it uses server's realport */
3680 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3681 s->check.port = new_port;
3682 }
3683 }
3684 else {
3685 chunk_appendf(msg, "no need to change the port");
3686 }
3687 }
3688
3689out:
William Dauchy6318d332020-05-02 21:52:36 +02003690 if (changed) {
3691 /* force connection cleanup on the given server */
3692 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003693 srv_set_dyncookie(s);
William Dauchy6318d332020-05-02 21:52:36 +02003694 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003695 if (updater)
3696 chunk_appendf(msg, " by '%s'", updater);
3697 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003698 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003699}
3700
3701
3702/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003703 * update server status based on result of name resolution
3704 * returns:
3705 * 0 if server status is updated
3706 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003707 *
3708 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003709 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003710int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003711{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003712 struct dns_resolvers *resolvers = s->resolvers;
3713 struct dns_resolution *resolution = s->dns_requester->resolution;
3714 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003715
3716 switch (resolution->status) {
3717 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003718 /* status when HAProxy has just (re)started.
3719 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003720 break;
3721
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003722 case RSLV_STATUS_VALID:
3723 /*
3724 * resume health checks
3725 * server will be turned back on if health check is safe
3726 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003727 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003728 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003729 return 1;
3730 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3731 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003732 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003733 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003734
Emeric Brun52a91d32017-08-31 14:41:55 +02003735 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003736 return 1;
3737 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3738 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3739 s->proxy->id, s->id);
3740
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003741 ha_warning("%s.\n", trash.area);
3742 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003743 return 0;
3744
3745 case RSLV_STATUS_NX:
3746 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003747 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3748 if (!tick_is_expired(exp, now_ms))
3749 break;
3750
3751 if (s->next_admin & SRV_ADMF_RMAINT)
3752 return 1;
3753 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3754 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003755
3756 case RSLV_STATUS_TIMEOUT:
3757 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003758 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3759 if (!tick_is_expired(exp, now_ms))
3760 break;
3761
3762 if (s->next_admin & SRV_ADMF_RMAINT)
3763 return 1;
3764 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3765 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003766
3767 case RSLV_STATUS_REFUSED:
3768 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003769 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3770 if (!tick_is_expired(exp, now_ms))
3771 break;
3772
3773 if (s->next_admin & SRV_ADMF_RMAINT)
3774 return 1;
3775 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3776 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003777
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003778 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003779 /* stop server if resolution failed for a long enough period */
3780 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3781 if (!tick_is_expired(exp, now_ms))
3782 break;
3783
3784 if (s->next_admin & SRV_ADMF_RMAINT)
3785 return 1;
3786 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3787 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003788 }
3789
3790 return 1;
3791}
3792
3793/*
3794 * Server Name Resolution valid response callback
3795 * It expects:
3796 * - <nameserver>: the name server which answered the valid response
3797 * - <response>: buffer containing a valid DNS response
3798 * - <response_len>: size of <response>
3799 * It performs the following actions:
3800 * - ignore response if current ip found and server family not met
3801 * - update with first new ip found if family is met and current IP is not found
3802 * returns:
3803 * 0 on error
3804 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003805 *
3806 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003807 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003808int snr_resolution_cb(struct dns_requester *requester, struct dns_nameserver *nameserver)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003809{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003810 struct server *s = NULL;
3811 struct dns_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003812 void *serverip, *firstip;
3813 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003814 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003815 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003816 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003817
Christopher Faulet67957bd2017-09-27 11:00:59 +02003818 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003819 if (!s)
3820 return 1;
3821
Christopher Faulet67957bd2017-09-27 11:00:59 +02003822 resolution = s->dns_requester->resolution;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003823
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003824 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003825 firstip = NULL; /* pointer to the first valid response found */
3826 /* it will be used as the new IP if a change is required */
3827 firstip_sin_family = AF_UNSPEC;
3828 serverip = NULL; /* current server IP address */
3829
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003830 /* initializing server IP pointer */
3831 server_sin_family = s->addr.ss_family;
3832 switch (server_sin_family) {
3833 case AF_INET:
3834 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3835 break;
3836
3837 case AF_INET6:
3838 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3839 break;
3840
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003841 case AF_UNSPEC:
3842 break;
3843
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003844 default:
3845 goto invalid;
3846 }
3847
Baptiste Assmann729c9012017-05-22 15:13:10 +02003848 ret = dns_get_ip_from_response(&resolution->response, &s->dns_opts,
Thierry Fournierada34842016-02-17 21:25:09 +01003849 serverip, server_sin_family, &firstip,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003850 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003851
3852 switch (ret) {
3853 case DNS_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003854 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003855
3856 case DNS_UPD_SRVIP_NOT_FOUND:
3857 goto save_ip;
3858
3859 case DNS_UPD_CNAME:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003860 goto invalid;
3861
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003862 case DNS_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003863 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003864 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003865
Baptiste Assmannfad03182015-10-28 02:03:32 +01003866 case DNS_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003867 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003868 resolution->status = RSLV_STATUS_OTHER;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003869 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003870
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003871 default:
3872 goto invalid;
3873
3874 }
3875
3876 save_ip:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003877 if (nameserver) {
3878 nameserver->counters.update++;
3879 /* save the first ip we found */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003880 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003881 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003882 else
3883 chunk_printf(chk, "DNS cache");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003884 update_server_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003885
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003886 update_status:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003887 snr_update_srv_status(s, has_no_ip);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003888 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003889
3890 invalid:
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003891 if (nameserver) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02003892 nameserver->counters.invalid++;
3893 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003894 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003895 snr_update_srv_status(s, has_no_ip);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003896 return 0;
3897}
3898
3899/*
3900 * Server Name Resolution error management callback
3901 * returns:
3902 * 0 on error
3903 * 1 when no error or safe ignore
Willy Tarreau46b7f532018-08-21 11:54:26 +02003904 *
3905 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003906 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003907int snr_resolution_error_cb(struct dns_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003908{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003909 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003910
Christopher Faulet67957bd2017-09-27 11:00:59 +02003911 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003912 if (!s)
3913 return 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003914 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003915 snr_update_srv_status(s, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003916 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003917 return 1;
3918}
3919
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003920/*
3921 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003922 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003923 * It returns a pointer to the first server found or NULL if <ip> is not yet
3924 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003925 *
3926 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003927 */
3928struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3929{
3930 struct server *tmpsrv;
3931 struct proxy *be;
3932
3933 if (!srv)
3934 return NULL;
3935
3936 be = srv->proxy;
3937 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003938 /* we found the current server is the same, ignore it */
3939 if (srv == tmpsrv)
3940 continue;
3941
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003942 /* We want to compare the IP in the record with the IP of the servers in the
3943 * same backend, only if:
3944 * * DNS resolution is enabled on the server
3945 * * the hostname used for the resolution by our server is the same than the
3946 * one used for the server found in the backend
3947 * * the server found in the backend is not our current server
3948 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003949 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003950 if ((tmpsrv->hostname_dn == NULL) ||
3951 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
3952 (strcmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01003953 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003954 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003955 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003956 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003957
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003958 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01003959 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003960 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003961 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003962 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003963
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003964 /* At this point, we have 2 different servers using the same DNS hostname
3965 * for their respective resolution.
3966 */
3967 if (*ip_family == tmpsrv->addr.ss_family &&
3968 ((tmpsrv->addr.ss_family == AF_INET &&
3969 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
3970 (tmpsrv->addr.ss_family == AF_INET6 &&
3971 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003972 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003973 return tmpsrv;
3974 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003975 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003976 }
3977
Emeric Brune9fd6b52017-11-02 17:20:39 +01003978
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003979 return NULL;
3980}
3981
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003982/* Sets the server's address (srv->addr) from srv->hostname using the libc's
3983 * resolver. This is suited for initial address configuration. Returns 0 on
3984 * success otherwise a non-zero error code. In case of error, *err_code, if
3985 * not NULL, is filled up.
3986 */
3987int srv_set_addr_via_libc(struct server *srv, int *err_code)
3988{
3989 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003990 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01003991 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003992 return 1;
3993 }
3994 return 0;
3995}
3996
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003997/* Set the server's FDQN (->hostname) from <hostname>.
3998 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003999 *
4000 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004001 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004002int srv_set_fqdn(struct server *srv, const char *hostname, int dns_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004003{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004004 struct dns_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004005 char *hostname_dn;
4006 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004007
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02004008 /* Note that the server lock is already held. */
4009 if (!srv->resolvers)
4010 return -1;
4011
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004012 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004013 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004014 /* run time DNS resolution was not active for this server
4015 * and we can't enable it at run time for now.
4016 */
4017 if (!srv->dns_requester)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004018 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004019
4020 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004021 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004022 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004023 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
4024 hostname_dn, trash.size);
4025 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004026 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004027
Christopher Faulet67957bd2017-09-27 11:00:59 +02004028 resolution = srv->dns_requester->resolution;
4029 if (resolution &&
4030 resolution->hostname_dn &&
4031 !strcmp(resolution->hostname_dn, hostname_dn))
Christopher Fauletb2812a62017-10-04 16:17:58 +02004032 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004033
Christopher Faulet67957bd2017-09-27 11:00:59 +02004034 dns_unlink_resolution(srv->dns_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004035
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004036 free(srv->hostname);
4037 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004038 srv->hostname = strdup(hostname);
4039 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004040 srv->hostname_dn_len = hostname_dn_len;
4041 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004042 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004043
Baptiste Assmann13a92322019-06-07 09:40:55 +02004044 if (srv->flags & SRV_F_NO_RESOLUTION)
4045 goto end;
4046
Olivier Houchard55dcdf42017-11-06 15:15:04 +01004047 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004048 goto err;
4049
4050 end:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004051 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004052 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004053 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02004054
4055 err:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004056 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004057 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02004058 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004059}
4060
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004061/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
4062 * from the state file. This is suited for initial address configuration.
4063 * Returns 0 on success otherwise a non-zero error code. In case of error,
4064 * *err_code, if not NULL, is filled up.
4065 */
4066static int srv_apply_lastaddr(struct server *srv, int *err_code)
4067{
4068 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
4069 if (err_code)
4070 *err_code |= ERR_WARN;
4071 return 1;
4072 }
4073 return 0;
4074}
4075
Willy Tarreau25e51522016-11-04 15:10:17 +01004076/* returns 0 if no error, otherwise a combination of ERR_* flags */
4077static int srv_iterate_initaddr(struct server *srv)
4078{
4079 int return_code = 0;
4080 int err_code;
4081 unsigned int methods;
4082
4083 methods = srv->init_addr_methods;
4084 if (!methods) { // default to "last,libc"
4085 srv_append_initaddr(&methods, SRV_IADDR_LAST);
4086 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
4087 }
4088
Willy Tarreau3eed10e2016-11-07 21:03:16 +01004089 /* "-dr" : always append "none" so that server addresses resolution
4090 * failures are silently ignored, this is convenient to validate some
4091 * configs out of their environment.
4092 */
4093 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
4094 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4095
Willy Tarreau25e51522016-11-04 15:10:17 +01004096 while (methods) {
4097 err_code = 0;
4098 switch (srv_get_next_initaddr(&methods)) {
4099 case SRV_IADDR_LAST:
4100 if (!srv->lastaddr)
4101 continue;
4102 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004103 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004104 return_code |= err_code;
4105 break;
4106
4107 case SRV_IADDR_LIBC:
4108 if (!srv->hostname)
4109 continue;
4110 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004111 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004112 return_code |= err_code;
4113 break;
4114
Willy Tarreau37ebe122016-11-04 15:17:58 +01004115 case SRV_IADDR_NONE:
4116 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004117 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004118 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
4119 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004120 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01004121 return return_code;
4122
Willy Tarreau4310d362016-11-02 15:05:56 +01004123 case SRV_IADDR_IP:
4124 ipcpy(&srv->init_addr, &srv->addr);
4125 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004126 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', falling back to configured address.\n",
4127 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
Willy Tarreau4310d362016-11-02 15:05:56 +01004128 }
Olivier Houchard4e694042017-03-14 20:01:29 +01004129 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01004130
Willy Tarreau25e51522016-11-04 15:10:17 +01004131 default: /* unhandled method */
4132 break;
4133 }
4134 }
4135
4136 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004137 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Willy Tarreau25e51522016-11-04 15:10:17 +01004138 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
4139 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01004140 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004141 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Willy Tarreau465b6e52016-11-07 19:19:22 +01004142 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
4143 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004144
4145 return_code |= ERR_ALERT | ERR_FATAL;
4146 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01004147out:
4148 srv_set_dyncookie(srv);
4149 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01004150}
4151
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004152/*
4153 * This function parses all backends and all servers within each backend
4154 * and performs servers' addr resolution based on information provided by:
4155 * - configuration file
4156 * - server-state file (states provided by an 'old' haproxy process)
4157 *
4158 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
4159 */
4160int srv_init_addr(void)
4161{
4162 struct proxy *curproxy;
4163 int return_code = 0;
4164
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004165 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004166 while (curproxy) {
4167 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004168
4169 /* servers are in backend only */
4170 if (!(curproxy->cap & PR_CAP_BE))
4171 goto srv_init_addr_next;
4172
Willy Tarreau25e51522016-11-04 15:10:17 +01004173 for (srv = curproxy->srv; srv; srv = srv->next)
Willy Tarreau3d609a72017-09-06 14:22:45 +02004174 if (srv->hostname)
4175 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004176
4177 srv_init_addr_next:
4178 curproxy = curproxy->next;
4179 }
4180
4181 return return_code;
4182}
4183
Willy Tarreau46b7f532018-08-21 11:54:26 +02004184/*
4185 * Must be called with the server lock held.
4186 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004187const 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 +02004188{
4189
Willy Tarreau83061a82018-07-13 11:56:34 +02004190 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004191
4192 msg = get_trash_chunk();
4193 chunk_reset(msg);
4194
Olivier Houchard8da5f982017-08-04 18:35:36 +02004195 if (server->hostname && !strcmp(fqdn, server->hostname)) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004196 chunk_appendf(msg, "no need to change the FDQN");
4197 goto out;
4198 }
4199
4200 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4201 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4202 goto out;
4203 }
4204
4205 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4206 server->proxy->id, server->id, server->hostname, fqdn);
4207
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004208 if (srv_set_fqdn(server, fqdn, dns_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004209 chunk_reset(msg);
4210 chunk_appendf(msg, "could not update %s/%s FQDN",
4211 server->proxy->id, server->id);
4212 goto out;
4213 }
4214
4215 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004216 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004217
4218 out:
4219 if (updater)
4220 chunk_appendf(msg, " by '%s'", updater);
4221 chunk_appendf(msg, "\n");
4222
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004223 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004224}
4225
4226
Willy Tarreau21b069d2016-11-23 17:15:08 +01004227/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4228 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004229 * 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 +01004230 * used for CLI commands requiring a server name.
4231 * Important: the <arg> is modified to remove the '/'.
4232 */
4233struct server *cli_find_server(struct appctx *appctx, char *arg)
4234{
4235 struct proxy *px;
4236 struct server *sv;
4237 char *line;
4238
4239 /* split "backend/server" and make <line> point to server */
4240 for (line = arg; *line; line++)
4241 if (*line == '/') {
4242 *line++ = '\0';
4243 break;
4244 }
4245
4246 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004247 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004248 return NULL;
4249 }
4250
4251 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004252 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004253 return NULL;
4254 }
4255
4256 if (px->state == PR_STSTOPPED) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004257 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004258 return NULL;
4259 }
4260
4261 return sv;
4262}
4263
William Lallemand222baf22016-11-19 02:00:33 +01004264
Willy Tarreau46b7f532018-08-21 11:54:26 +02004265/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004266static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004267{
4268 struct server *sv;
4269 const char *warning;
4270
4271 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4272 return 1;
4273
4274 sv = cli_find_server(appctx, args[2]);
4275 if (!sv)
4276 return 1;
4277
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004278 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02004279
William Lallemand222baf22016-11-19 02:00:33 +01004280 if (strcmp(args[3], "weight") == 0) {
4281 warning = server_parse_weight_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004282 if (warning)
4283 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004284 }
4285 else if (strcmp(args[3], "state") == 0) {
4286 if (strcmp(args[4], "ready") == 0)
4287 srv_adm_set_ready(sv);
4288 else if (strcmp(args[4], "drain") == 0)
4289 srv_adm_set_drain(sv);
4290 else if (strcmp(args[4], "maint") == 0)
4291 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02004292 else
4293 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004294 }
4295 else if (strcmp(args[3], "health") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004296 if (sv->track)
4297 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004298 else if (strcmp(args[4], "up") == 0) {
4299 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004300 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004301 }
4302 else if (strcmp(args[4], "stopping") == 0) {
4303 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004304 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004305 }
4306 else if (strcmp(args[4], "down") == 0) {
4307 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004308 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004309 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004310 else
4311 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004312 }
4313 else if (strcmp(args[3], "agent") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004314 if (!(sv->agent.state & CHK_ST_ENABLED))
4315 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004316 else if (strcmp(args[4], "up") == 0) {
4317 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004318 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004319 }
4320 else if (strcmp(args[4], "down") == 0) {
4321 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004322 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004323 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004324 else
4325 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004326 }
Misiek2da082d2017-01-09 09:40:42 +01004327 else if (strcmp(args[3], "agent-addr") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004328 if (!(sv->agent.state & CHK_ST_ENABLED))
4329 cli_err(appctx, "agent checks are not enabled on this server.\n");
4330 else if (str2ip(args[4], &sv->agent.addr) == NULL)
4331 cli_err(appctx, "incorrect addr address given for agent.\n");
Misiek2da082d2017-01-09 09:40:42 +01004332 }
4333 else if (strcmp(args[3], "agent-send") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004334 if (!(sv->agent.state & CHK_ST_ENABLED))
4335 cli_err(appctx, "agent checks are not enabled on this server.\n");
4336 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004337 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004338 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004339 }
4340 }
William Lallemand222baf22016-11-19 02:00:33 +01004341 else if (strcmp(args[3], "check-port") == 0) {
4342 int i = 0;
4343 if (strl2irc(args[4], strlen(args[4]), &i) != 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004344 cli_err(appctx, "'set server <srv> check-port' expects an integer as argument.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004345 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004346 }
4347 if ((i < 0) || (i > 65535)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004348 cli_err(appctx, "provided port is not valid.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004349 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004350 }
4351 /* prevent the update of port to 0 if MAPPORTS are in use */
4352 if ((sv->flags & SRV_F_MAPPORTS) && (i == 0)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004353 cli_err(appctx, "can't unset 'port' since MAPPORTS is in use.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004354 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004355 }
4356 sv->check.port = i;
Willy Tarreau9d008692019-08-09 11:21:01 +02004357 cli_msg(appctx, LOG_NOTICE, "health check port updated.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004358 }
4359 else if (strcmp(args[3], "addr") == 0) {
4360 char *addr = NULL;
4361 char *port = NULL;
4362 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004363 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004364 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004365 }
4366 else {
4367 addr = args[4];
4368 }
4369 if (strcmp(args[5], "port") == 0) {
4370 port = args[6];
4371 }
4372 warning = update_server_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004373 if (warning)
4374 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004375 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
4376 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004377 else if (strcmp(args[3], "fqdn") == 0) {
4378 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004379 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004380 goto out_unlock;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004381 }
Baptiste Assmann13a92322019-06-07 09:40:55 +02004382 /* ensure runtime resolver will process this new fqdn */
4383 if (sv->flags & SRV_F_NO_RESOLUTION) {
4384 sv->flags &= ~SRV_F_NO_RESOLUTION;
4385 }
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004386 warning = update_server_fqdn(sv, args[4], "stats socket command", 0);
Willy Tarreau9d008692019-08-09 11:21:01 +02004387 if (warning)
4388 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004389 }
William Lallemand222baf22016-11-19 02:00:33 +01004390 else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004391 cli_err(appctx,
4392 "'set server <srv>' only supports 'agent', 'health', 'state',"
4393 " 'weight', 'addr', 'fqdn' and 'check-port'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004394 }
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004395 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004396 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004397 return 1;
4398}
4399
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004400static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004401{
4402 struct stream_interface *si = appctx->owner;
4403 struct proxy *px;
4404 struct server *sv;
4405 char *line;
4406
4407
4408 /* split "backend/server" and make <line> point to server */
4409 for (line = args[2]; *line; line++)
4410 if (*line == '/') {
4411 *line++ = '\0';
4412 break;
4413 }
4414
Willy Tarreau9d008692019-08-09 11:21:01 +02004415 if (!*line)
4416 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004417
Willy Tarreau9d008692019-08-09 11:21:01 +02004418 if (!get_backend_server(args[2], line, &px, &sv))
4419 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004420
4421 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004422 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4423 sv->iweight);
4424 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004425 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004426 return 0;
4427 }
William Lallemand6b160942016-11-22 12:34:35 +01004428 return 1;
4429}
4430
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004431/* Parse a "set weight" command.
4432 *
4433 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004434 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004435static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004436{
4437 struct server *sv;
4438 const char *warning;
4439
4440 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4441 return 1;
4442
4443 sv = cli_find_server(appctx, args[2]);
4444 if (!sv)
4445 return 1;
4446
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004447 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4448
William Lallemand6b160942016-11-22 12:34:35 +01004449 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004450 if (warning)
4451 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004452
4453 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4454
William Lallemand6b160942016-11-22 12:34:35 +01004455 return 1;
4456}
4457
Willy Tarreau46b7f532018-08-21 11:54:26 +02004458/* parse a "set maxconn server" command. It always returns 1.
4459 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004460 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004461 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004462static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004463{
4464 struct server *sv;
4465 const char *warning;
4466
4467 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4468 return 1;
4469
4470 sv = cli_find_server(appctx, args[3]);
4471 if (!sv)
4472 return 1;
4473
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004474 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4475
Willy Tarreaub8026272016-11-23 11:26:56 +01004476 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004477 if (warning)
4478 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004479
4480 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4481
Willy Tarreaub8026272016-11-23 11:26:56 +01004482 return 1;
4483}
William Lallemand6b160942016-11-22 12:34:35 +01004484
Willy Tarreau46b7f532018-08-21 11:54:26 +02004485/* parse a "disable agent" command. It always returns 1.
4486 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004487 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004488 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004489static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004490{
4491 struct server *sv;
4492
4493 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4494 return 1;
4495
4496 sv = cli_find_server(appctx, args[2]);
4497 if (!sv)
4498 return 1;
4499
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004500 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004501 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004502 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004503 return 1;
4504}
4505
Willy Tarreau46b7f532018-08-21 11:54:26 +02004506/* parse a "disable health" command. It always returns 1.
4507 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004508 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004509 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004510static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004511{
4512 struct server *sv;
4513
4514 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4515 return 1;
4516
4517 sv = cli_find_server(appctx, args[2]);
4518 if (!sv)
4519 return 1;
4520
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004521 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004522 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004523 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004524 return 1;
4525}
4526
Willy Tarreau46b7f532018-08-21 11:54:26 +02004527/* parse a "disable server" command. It always returns 1.
4528 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004529 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004530 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004531static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004532{
4533 struct server *sv;
4534
4535 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4536 return 1;
4537
4538 sv = cli_find_server(appctx, args[2]);
4539 if (!sv)
4540 return 1;
4541
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004542 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004543 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004544 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004545 return 1;
4546}
4547
Willy Tarreau46b7f532018-08-21 11:54:26 +02004548/* parse a "enable agent" command. It always returns 1.
4549 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004550 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004551 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004552static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004553{
4554 struct server *sv;
4555
4556 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4557 return 1;
4558
4559 sv = cli_find_server(appctx, args[2]);
4560 if (!sv)
4561 return 1;
4562
Willy Tarreau9d008692019-08-09 11:21:01 +02004563 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4564 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004565
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004566 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004567 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004568 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004569 return 1;
4570}
4571
Willy Tarreau46b7f532018-08-21 11:54:26 +02004572/* parse a "enable health" command. It always returns 1.
4573 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004574 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004575 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004576static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004577{
4578 struct server *sv;
4579
4580 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4581 return 1;
4582
4583 sv = cli_find_server(appctx, args[2]);
4584 if (!sv)
4585 return 1;
4586
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004587 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004588 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004589 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004590 return 1;
4591}
4592
Willy Tarreau46b7f532018-08-21 11:54:26 +02004593/* parse a "enable server" command. It always returns 1.
4594 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004595 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004596 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004597static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004598{
4599 struct server *sv;
4600
4601 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4602 return 1;
4603
4604 sv = cli_find_server(appctx, args[2]);
4605 if (!sv)
4606 return 1;
4607
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004608 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004609 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004610 if (!(sv->flags & SRV_F_COOKIESET)
4611 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4612 sv->cookie)
4613 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004614 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004615 return 1;
4616}
4617
William Lallemand222baf22016-11-19 02:00:33 +01004618/* register cli keywords */
4619static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004620 { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004621 { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004622 { { "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 +01004623 { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004624 { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004625 { { "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 +01004626 { { "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 +01004627 { { "set", "server", NULL }, "set server : change a server's state, weight or address", cli_parse_set_server },
William Lallemand6b160942016-11-22 12:34:35 +01004628 { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight },
4629 { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight },
4630
William Lallemand222baf22016-11-19 02:00:33 +01004631 {{},}
4632}};
4633
Willy Tarreau0108d902018-11-25 19:14:37 +01004634INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004635
Emeric Brun64cc49c2017-10-03 14:46:45 +02004636/*
4637 * This function applies server's status changes, it is
4638 * is designed to be called asynchronously.
4639 *
Willy Tarreau46b7f532018-08-21 11:54:26 +02004640 * Must be called with the server lock held.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004641 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004642static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004643{
4644 struct check *check = &s->check;
4645 int xferred;
4646 struct proxy *px = s->proxy;
4647 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4648 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4649 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004650 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004651
Emeric Brun64cc49c2017-10-03 14:46:45 +02004652 /* If currently main is not set we try to apply pending state changes */
4653 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4654 int next_admin;
4655
4656 /* Backup next admin */
4657 next_admin = s->next_admin;
4658
4659 /* restore current admin state */
4660 s->next_admin = s->cur_admin;
4661
4662 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4663 s->last_change = now.tv_sec;
4664 if (s->proxy->lbprm.set_server_status_down)
4665 s->proxy->lbprm.set_server_status_down(s);
4666
4667 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4668 srv_shutdown_streams(s, SF_ERR_DOWN);
4669
4670 /* we might have streams queued on this server and waiting for
4671 * a connection. Those which are redispatchable will be queued
4672 * to another server or to the proxy itself.
4673 */
4674 xferred = pendconn_redistribute(s);
4675
4676 tmptrash = alloc_trash_chunk();
4677 if (tmptrash) {
4678 chunk_printf(tmptrash,
4679 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4680 s->proxy->id, s->id);
4681
Emeric Brun5a133512017-10-19 14:42:30 +02004682 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004683 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004684
4685 /* we don't send an alert if the server was previously paused */
4686 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004687 send_log(s->proxy, log_level, "%s.\n",
4688 tmptrash->area);
4689 send_email_alert(s, log_level, "%s",
4690 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004691 free_trash_chunk(tmptrash);
4692 tmptrash = NULL;
4693 }
4694 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4695 set_backend_down(s->proxy);
4696
4697 s->counters.down_trans++;
4698 }
4699 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4700 s->last_change = now.tv_sec;
4701 if (s->proxy->lbprm.set_server_status_down)
4702 s->proxy->lbprm.set_server_status_down(s);
4703
4704 /* we might have streams queued on this server and waiting for
4705 * a connection. Those which are redispatchable will be queued
4706 * to another server or to the proxy itself.
4707 */
4708 xferred = pendconn_redistribute(s);
4709
4710 tmptrash = alloc_trash_chunk();
4711 if (tmptrash) {
4712 chunk_printf(tmptrash,
4713 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4714 s->proxy->id, s->id);
4715
Emeric Brun5a133512017-10-19 14:42:30 +02004716 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004717
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004718 ha_warning("%s.\n", tmptrash->area);
4719 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4720 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004721 free_trash_chunk(tmptrash);
4722 tmptrash = NULL;
4723 }
4724
4725 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4726 set_backend_down(s->proxy);
4727 }
4728 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4729 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4730 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4731 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4732 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4733 s->proxy->last_change = now.tv_sec;
4734 }
4735
4736 if (s->next_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
4737 s->down_time += now.tv_sec - s->last_change;
4738
4739 s->last_change = now.tv_sec;
4740 if (s->next_state == SRV_ST_STARTING)
4741 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4742
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004743 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004744 /* now propagate the status change to any LB algorithms */
4745 if (px->lbprm.update_server_eweight)
4746 px->lbprm.update_server_eweight(s);
4747 else if (srv_willbe_usable(s)) {
4748 if (px->lbprm.set_server_status_up)
4749 px->lbprm.set_server_status_up(s);
4750 }
4751 else {
4752 if (px->lbprm.set_server_status_down)
4753 px->lbprm.set_server_status_down(s);
4754 }
4755
4756 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4757 * and it's not a backup server and its effective weight is > 0,
4758 * then it can accept new connections, so we shut down all streams
4759 * on all backup servers.
4760 */
4761 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4762 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4763 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4764
4765 /* check if we can handle some connections queued at the proxy. We
4766 * will take as many as we can handle.
4767 */
4768 xferred = pendconn_grab_from_px(s);
4769
4770 tmptrash = alloc_trash_chunk();
4771 if (tmptrash) {
4772 chunk_printf(tmptrash,
4773 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
4774 s->proxy->id, s->id);
4775
Emeric Brun5a133512017-10-19 14:42:30 +02004776 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004777 ha_warning("%s.\n", tmptrash->area);
4778 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4779 tmptrash->area);
4780 send_email_alert(s, LOG_NOTICE, "%s",
4781 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004782 free_trash_chunk(tmptrash);
4783 tmptrash = NULL;
4784 }
4785
4786 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4787 set_backend_down(s->proxy);
4788 }
4789 else if (s->cur_eweight != s->next_eweight) {
4790 /* now propagate the status change to any LB algorithms */
4791 if (px->lbprm.update_server_eweight)
4792 px->lbprm.update_server_eweight(s);
4793 else if (srv_willbe_usable(s)) {
4794 if (px->lbprm.set_server_status_up)
4795 px->lbprm.set_server_status_up(s);
4796 }
4797 else {
4798 if (px->lbprm.set_server_status_down)
4799 px->lbprm.set_server_status_down(s);
4800 }
4801
4802 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4803 set_backend_down(s->proxy);
4804 }
4805
4806 s->next_admin = next_admin;
4807 }
4808
Emeric Brun5a133512017-10-19 14:42:30 +02004809 /* reset operational state change */
4810 *s->op_st_chg.reason = 0;
4811 s->op_st_chg.status = s->op_st_chg.code = -1;
4812 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004813
4814 /* Now we try to apply pending admin changes */
4815
4816 /* Maintenance must also disable health checks */
4817 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
4818 if (s->check.state & CHK_ST_ENABLED) {
4819 s->check.state |= CHK_ST_PAUSED;
4820 check->health = 0;
4821 }
4822
4823 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02004824 tmptrash = alloc_trash_chunk();
4825 if (tmptrash) {
4826 chunk_printf(tmptrash,
4827 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
4828 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4829 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02004830
Olivier Houchard796a2b32017-10-24 17:42:47 +02004831 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02004832
Olivier Houchard796a2b32017-10-24 17:42:47 +02004833 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004834 ha_warning("%s.\n", tmptrash->area);
4835 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4836 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02004837 }
4838 free_trash_chunk(tmptrash);
4839 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004840 }
Emeric Brun8f298292017-12-06 16:47:17 +01004841 /* commit new admin status */
4842
4843 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004844 }
4845 else { /* server was still running */
4846 check->health = 0; /* failure */
4847 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01004848
4849 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004850 if (s->proxy->lbprm.set_server_status_down)
4851 s->proxy->lbprm.set_server_status_down(s);
4852
Emeric Brun64cc49c2017-10-03 14:46:45 +02004853 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4854 srv_shutdown_streams(s, SF_ERR_DOWN);
4855
William Dauchy6318d332020-05-02 21:52:36 +02004856 /* force connection cleanup on the given server */
4857 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004858 /* we might have streams queued on this server and waiting for
4859 * a connection. Those which are redispatchable will be queued
4860 * to another server or to the proxy itself.
4861 */
4862 xferred = pendconn_redistribute(s);
4863
4864 tmptrash = alloc_trash_chunk();
4865 if (tmptrash) {
4866 chunk_printf(tmptrash,
4867 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
4868 s->flags & SRV_F_BACKUP ? "Backup " : "",
4869 s->proxy->id, s->id,
4870 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
4871
4872 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
4873
4874 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004875 ha_warning("%s.\n", tmptrash->area);
4876 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
4877 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004878 }
4879 free_trash_chunk(tmptrash);
4880 tmptrash = NULL;
4881 }
4882 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4883 set_backend_down(s->proxy);
4884
4885 s->counters.down_trans++;
4886 }
4887 }
4888 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
4889 /* OK here we're leaving maintenance, we have many things to check,
4890 * because the server might possibly be coming back up depending on
4891 * its state. In practice, leaving maintenance means that we should
4892 * immediately turn to UP (more or less the slowstart) under the
4893 * following conditions :
4894 * - server is neither checked nor tracked
4895 * - server tracks another server which is not checked
4896 * - server tracks another server which is already up
4897 * Which sums up as something simpler :
4898 * "either the tracking server is up or the server's checks are disabled
4899 * or up". Otherwise we only re-enable health checks. There's a special
4900 * case associated to the stopping state which can be inherited. Note
4901 * that the server might still be in drain mode, which is naturally dealt
4902 * with by the lower level functions.
4903 */
4904
4905 if (s->check.state & CHK_ST_ENABLED) {
4906 s->check.state &= ~CHK_ST_PAUSED;
4907 check->health = check->rise; /* start OK but check immediately */
4908 }
4909
4910 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
4911 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
4912 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
4913 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
4914 s->next_state = SRV_ST_STOPPING;
4915 }
4916 else {
4917 s->next_state = SRV_ST_STARTING;
4918 if (s->slowstart > 0)
4919 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4920 else
4921 s->next_state = SRV_ST_RUNNING;
4922 }
4923
4924 }
4925
4926 tmptrash = alloc_trash_chunk();
4927 if (tmptrash) {
4928 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
4929 chunk_printf(tmptrash,
4930 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
4931 s->flags & SRV_F_BACKUP ? "Backup " : "",
4932 s->proxy->id, s->id,
4933 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4934 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4935 }
4936 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
4937 chunk_printf(tmptrash,
4938 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
4939 s->flags & SRV_F_BACKUP ? "Backup " : "",
4940 s->proxy->id, s->id, s->hostname,
4941 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4942 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4943 }
4944 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
4945 chunk_printf(tmptrash,
4946 "%sServer %s/%s is %s/%s (leaving maintenance)",
4947 s->flags & SRV_F_BACKUP ? "Backup " : "",
4948 s->proxy->id, s->id,
4949 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4950 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4951 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004952 ha_warning("%s.\n", tmptrash->area);
4953 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4954 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004955 free_trash_chunk(tmptrash);
4956 tmptrash = NULL;
4957 }
4958
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004959 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004960 /* now propagate the status change to any LB algorithms */
4961 if (px->lbprm.update_server_eweight)
4962 px->lbprm.update_server_eweight(s);
4963 else if (srv_willbe_usable(s)) {
4964 if (px->lbprm.set_server_status_up)
4965 px->lbprm.set_server_status_up(s);
4966 }
4967 else {
4968 if (px->lbprm.set_server_status_down)
4969 px->lbprm.set_server_status_down(s);
4970 }
4971
4972 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4973 set_backend_down(s->proxy);
4974
Willy Tarreau6a78e612018-08-07 10:14:53 +02004975 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4976 * and it's not a backup server and its effective weight is > 0,
4977 * then it can accept new connections, so we shut down all streams
4978 * on all backup servers.
4979 */
4980 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4981 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4982 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4983
4984 /* check if we can handle some connections queued at the proxy. We
4985 * will take as many as we can handle.
4986 */
4987 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004988 }
4989 else if (s->next_admin & SRV_ADMF_MAINT) {
4990 /* remaining in maintenance mode, let's inform precisely about the
4991 * situation.
4992 */
4993 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
4994 tmptrash = alloc_trash_chunk();
4995 if (tmptrash) {
4996 chunk_printf(tmptrash,
4997 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
4998 s->flags & SRV_F_BACKUP ? "Backup " : "",
4999 s->proxy->id, s->id);
5000
5001 if (s->track) /* normally it's mandatory here */
5002 chunk_appendf(tmptrash, " via %s/%s",
5003 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005004 ha_warning("%s.\n", tmptrash->area);
5005 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5006 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005007 free_trash_chunk(tmptrash);
5008 tmptrash = NULL;
5009 }
5010 }
5011 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5012 tmptrash = alloc_trash_chunk();
5013 if (tmptrash) {
5014 chunk_printf(tmptrash,
5015 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5016 s->flags & SRV_F_BACKUP ? "Backup " : "",
5017 s->proxy->id, s->id, s->hostname);
5018
5019 if (s->track) /* normally it's mandatory here */
5020 chunk_appendf(tmptrash, " via %s/%s",
5021 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005022 ha_warning("%s.\n", tmptrash->area);
5023 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5024 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005025 free_trash_chunk(tmptrash);
5026 tmptrash = NULL;
5027 }
5028 }
5029 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5030 tmptrash = alloc_trash_chunk();
5031 if (tmptrash) {
5032 chunk_printf(tmptrash,
5033 "%sServer %s/%s remains in forced maintenance",
5034 s->flags & SRV_F_BACKUP ? "Backup " : "",
5035 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005036 ha_warning("%s.\n", tmptrash->area);
5037 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5038 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005039 free_trash_chunk(tmptrash);
5040 tmptrash = NULL;
5041 }
5042 }
5043 /* don't report anything when leaving drain mode and remaining in maintenance */
5044
5045 s->cur_admin = s->next_admin;
5046 }
5047
5048 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5049 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5050 /* drain state is applied only if not yet in maint */
5051
5052 s->last_change = now.tv_sec;
5053 if (px->lbprm.set_server_status_down)
5054 px->lbprm.set_server_status_down(s);
5055
5056 /* we might have streams queued on this server and waiting for
5057 * a connection. Those which are redispatchable will be queued
5058 * to another server or to the proxy itself.
5059 */
5060 xferred = pendconn_redistribute(s);
5061
5062 tmptrash = alloc_trash_chunk();
5063 if (tmptrash) {
5064 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5065 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5066 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5067
5068 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5069
5070 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005071 ha_warning("%s.\n", tmptrash->area);
5072 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5073 tmptrash->area);
5074 send_email_alert(s, LOG_NOTICE, "%s",
5075 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005076 }
5077 free_trash_chunk(tmptrash);
5078 tmptrash = NULL;
5079 }
5080
5081 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5082 set_backend_down(s->proxy);
5083 }
5084 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5085 /* OK completely leaving drain mode */
5086 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5087 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5088 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5089 s->proxy->last_change = now.tv_sec;
5090 }
5091
5092 if (s->last_change < now.tv_sec) // ignore negative times
5093 s->down_time += now.tv_sec - s->last_change;
5094 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005095 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005096
5097 tmptrash = alloc_trash_chunk();
5098 if (tmptrash) {
5099 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5100 chunk_printf(tmptrash,
5101 "%sServer %s/%s is %s (leaving forced drain)",
5102 s->flags & SRV_F_BACKUP ? "Backup " : "",
5103 s->proxy->id, s->id,
5104 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5105 }
5106 else {
5107 chunk_printf(tmptrash,
5108 "%sServer %s/%s is %s (leaving drain)",
5109 s->flags & SRV_F_BACKUP ? "Backup " : "",
5110 s->proxy->id, s->id,
5111 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5112 if (s->track) /* normally it's mandatory here */
5113 chunk_appendf(tmptrash, " via %s/%s",
5114 s->track->proxy->id, s->track->id);
5115 }
5116
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005117 ha_warning("%s.\n", tmptrash->area);
5118 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5119 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005120 free_trash_chunk(tmptrash);
5121 tmptrash = NULL;
5122 }
5123
5124 /* now propagate the status change to any LB algorithms */
5125 if (px->lbprm.update_server_eweight)
5126 px->lbprm.update_server_eweight(s);
5127 else if (srv_willbe_usable(s)) {
5128 if (px->lbprm.set_server_status_up)
5129 px->lbprm.set_server_status_up(s);
5130 }
5131 else {
5132 if (px->lbprm.set_server_status_down)
5133 px->lbprm.set_server_status_down(s);
5134 }
5135 }
5136 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5137 /* remaining in drain mode after removing one of its flags */
5138
5139 tmptrash = alloc_trash_chunk();
5140 if (tmptrash) {
5141 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5142 chunk_printf(tmptrash,
5143 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5144 s->flags & SRV_F_BACKUP ? "Backup " : "",
5145 s->proxy->id, s->id);
5146
5147 if (s->track) /* normally it's mandatory here */
5148 chunk_appendf(tmptrash, " via %s/%s",
5149 s->track->proxy->id, s->track->id);
5150 }
5151 else {
5152 chunk_printf(tmptrash,
5153 "%sServer %s/%s remains in forced drain mode",
5154 s->flags & SRV_F_BACKUP ? "Backup " : "",
5155 s->proxy->id, s->id);
5156 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005157 ha_warning("%s.\n", tmptrash->area);
5158 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5159 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005160 free_trash_chunk(tmptrash);
5161 tmptrash = NULL;
5162 }
5163
5164 /* commit new admin status */
5165
5166 s->cur_admin = s->next_admin;
5167 }
5168 }
5169
5170 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005171 *s->adm_st_chg_cause = 0;
5172}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005173
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005174struct task *srv_cleanup_toremove_connections(struct task *task, void *context, unsigned short state)
5175{
5176 struct connection *conn;
5177
Olivier Houchard859dc802019-08-08 15:47:21 +02005178 while ((conn = MT_LIST_POP(&toremove_connections[tid],
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005179 struct connection *, list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005180 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005181 }
5182
5183 return task;
5184}
5185
William Dauchy6318d332020-05-02 21:52:36 +02005186/* cleanup connections for a given server
5187 * might be useful when going on forced maintenance or live changing ip/port
5188 */
William Dauchy707ad322020-05-04 13:52:40 +02005189static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005190{
5191 struct connection *conn;
5192 int did_remove;
5193 int i;
5194 int j;
5195
5196 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5197 for (i = 0; i < global.nbthread; i++) {
5198 did_remove = 0;
5199 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[i]);
5200 for (j = 0; j < srv->curr_idle_conns; j++) {
5201 conn = MT_LIST_POP(&srv->idle_conns[i], struct connection *, list);
5202 if (!conn)
5203 conn = MT_LIST_POP(&srv->safe_conns[i],
5204 struct connection *, list);
5205 if (!conn)
5206 break;
5207 did_remove = 1;
5208 MT_LIST_ADDQ(&toremove_connections[i], (struct mt_list *)&conn->list);
5209 }
5210 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[i]);
5211 if (did_remove)
5212 task_wakeup(idle_conn_cleanup[i], TASK_WOKEN_OTHER);
5213 }
5214 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5215}
5216
Willy Tarreau980855b2019-02-07 14:59:29 +01005217struct task *srv_cleanup_idle_connections(struct task *task, void *context, unsigned short state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005218{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005219 struct server *srv;
5220 struct eb32_node *eb;
5221 int i;
5222 unsigned int next_wakeup;
5223 int need_wakeup = 0;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005224
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005225 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5226 while (1) {
5227 int srv_is_empty = 1;
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005228 int exceed_conns;
5229 int to_kill;
5230 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005231
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005232 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5233 if (!eb) {
5234 /* we might have reached the end of the tree, typically because
5235 * <now_ms> is in the first half and we're first scanning the last
5236 * half. Let's loop back to the beginning of the tree now.
5237 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005238
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005239 eb = eb32_first(&idle_conn_srv);
5240 if (likely(!eb))
5241 break;
5242 }
5243 if (tick_is_lt(now_ms, eb->key)) {
5244 /* timer not expired yet, revisit it later */
5245 next_wakeup = eb->key;
5246 need_wakeup = 1;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005247 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005248 }
5249 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005250
5251 /* Calculate how many idle connections we want to kill :
5252 * we want to remove half the difference between the total
5253 * of established connections (used or idle) and the max
5254 * number of used connections.
5255 */
5256 curr_idle = srv->curr_idle_conns;
5257 if (curr_idle == 0)
5258 goto remove;
5259 exceed_conns = srv->curr_used_conns + curr_idle -
5260 srv->max_used_conns;
5261 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
5262 srv->max_used_conns = srv->curr_used_conns;
5263
5264 for (i = 0; i < global.nbthread && to_kill > 0; i++) {
5265 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005266 int j;
5267 int did_remove = 0;
5268
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005269 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5270 curr_idle + 1;
Olivier Houchard4be71902019-07-11 15:49:00 +02005271 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[i]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005272 for (j = 0; j < max_conn; j++) {
Olivier Houcharddc2f2752020-02-13 19:12:07 +01005273 struct connection *conn = MT_LIST_POP(&srv->idle_conns[i], struct connection *, list);
5274 if (!conn)
5275 conn = MT_LIST_POP(&srv->safe_conns[i],
5276 struct connection *, list);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005277 if (!conn)
5278 break;
5279 did_remove = 1;
Olivier Houchard859dc802019-08-08 15:47:21 +02005280 MT_LIST_ADDQ(&toremove_connections[i], (struct mt_list *)&conn->list);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005281 }
Olivier Houchard4be71902019-07-11 15:49:00 +02005282 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[i]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005283 if (did_remove && max_conn < srv->curr_idle_thr[i])
5284 srv_is_empty = 0;
5285 if (did_remove)
5286 task_wakeup(idle_conn_cleanup[i], TASK_WOKEN_OTHER);
5287 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005288remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005289 eb32_delete(&srv->idle_node);
5290 if (!srv_is_empty) {
5291 /* There are still more idle connections, add the
5292 * server back in the tree.
5293 */
5294 srv->idle_node.key = tick_add(srv->pool_purge_delay,
5295 now_ms);
5296 eb32_insert(&idle_conn_srv, &srv->idle_node);
5297 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005298 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005299 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5300
5301 if (need_wakeup)
5302 task->expire = next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005303 else
5304 task->expire = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005305
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005306 return task;
5307}
Olivier Houchard88698d92019-04-16 19:07:22 +02005308
5309/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5310static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
5311 struct proxy *defpx, const char *file, int line,
5312 char **err)
5313{
5314 int arg = -1;
5315
5316 if (too_many_args(1, args, err, NULL))
5317 return -1;
5318
5319 if (*(args[1]) != 0)
5320 arg = atoi(args[1]);
5321
5322 if (arg < 0 || arg > 100) {
5323 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5324 return -1;
5325 }
5326
5327 if (args[0][10] == 'h')
5328 global.tune.pool_high_ratio = arg;
5329 else
5330 global.tune.pool_low_ratio = arg;
5331 return 0;
5332}
5333
5334/* config keyword parsers */
5335static struct cfg_kw_list cfg_kws = {ILH, {
5336 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5337 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5338 { 0, NULL, NULL }
5339}};
5340
5341INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5342
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005343/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005344 * Local variables:
5345 * c-indent-level: 8
5346 * c-basic-offset: 8
5347 * End:
5348 */