blob: 0c340d38ae547c3d67ef86d95e54318114c7d64b [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Server management functions.
3 *
Willy Tarreau21faa912012-10-10 08:27:36 +02004 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01005 * Copyright 2007-2008 Krzysztof Piotr Oledzki <ole@ans.pl>
Willy Tarreaubaaee002006-06-26 02:48:02 +02006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
Willy Tarreau0a4b0ab2020-06-11 11:22:44 +020014#include <sys/types.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020015#include <netinet/tcp.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020016#include <ctype.h>
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020017#include <errno.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020018
Willy Tarreaub2551052020-06-09 09:07:15 +020019#include <import/ebsttree.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020020#include <import/xxhash.h>
21
Willy Tarreaub2551052020-06-09 09:07:15 +020022#include <haproxy/api.h>
Willy Tarreau3f0f82e2020-06-04 19:42:41 +020023#include <haproxy/applet-t.h>
Willy Tarreau49801602020-06-04 22:50:02 +020024#include <haproxy/backend.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020025#include <haproxy/cfgparse.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020026#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020027#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020028#include <haproxy/connection.h>
Willy Tarreau3afc4c42020-06-03 18:23:19 +020029#include <haproxy/dict-t.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020030#include <haproxy/dns.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020031#include <haproxy/errors.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020032#include <haproxy/global.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020033#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020034#include <haproxy/mailers.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +020035#include <haproxy/namespace.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020036#include <haproxy/port_range.h>
37#include <haproxy/protocol.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020038#include <haproxy/queue.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020039#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020040#include <haproxy/server.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020041#include <haproxy/stats-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020042#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020043#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020044#include <haproxy/task.h>
Willy Tarreau51cd5952020-06-05 12:25:38 +020045#include <haproxy/tcpcheck.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020046#include <haproxy/time.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020047
Baptiste Assmannda29fe22019-06-13 13:24:29 +020048
Willy Tarreau3ff577e2018-08-02 11:48:52 +020049static void srv_update_status(struct server *s);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020050static void srv_update_state(struct server *srv, int version, char **params);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +010051static int srv_apply_lastaddr(struct server *srv, int *err_code);
Olivier Houchardd16bfe62017-10-31 15:21:19 +010052static int srv_set_fqdn(struct server *srv, const char *fqdn, int dns_locked);
Baptiste Assmannda29fe22019-06-13 13:24:29 +020053static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params);
54static int srv_state_get_version(FILE *f);
William Dauchy6318d332020-05-02 21:52:36 +020055static void srv_cleanup_connections(struct server *srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +020056
Willy Tarreau21faa912012-10-10 08:27:36 +020057/* List head of all known server keywords */
58static struct srv_kw_list srv_keywords = {
59 .list = LIST_HEAD_INIT(srv_keywords.list)
60};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020061
Willy Tarreauaf613e82020-06-05 08:40:51 +020062__decl_thread(HA_SPINLOCK_T idle_conn_srv_lock);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010063struct eb_root idle_conn_srv = EB_ROOT;
64struct task *idle_conn_task = NULL;
Olivier Houchard9ea5d362019-02-14 18:29:09 +010065
Frédéric Lécaille7da71292019-05-20 09:47:07 +020066/* The server names dictionary */
67struct dict server_name_dict = {
68 .name = "server names",
69 .values = EB_ROOT_UNIQUE,
70};
71
Baptiste Assmannda29fe22019-06-13 13:24:29 +020072/* tree where global state_file is loaded */
Willy Tarreaufd1aa012019-12-20 17:23:40 +010073struct eb_root state_file = EB_ROOT_UNIQUE;
Baptiste Assmannda29fe22019-06-13 13:24:29 +020074
Simon Hormana3608442013-11-01 16:46:15 +090075int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020076{
Amaury Denoyellee6ba7912020-10-29 15:59:05 +010077 if ((s->cur_state != SRV_ST_STOPPED) || s->last_change >= now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020078 return s->down_time;
79
80 return now.tv_sec - s->last_change + s->down_time;
81}
Willy Tarreaubaaee002006-06-26 02:48:02 +020082
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050083int srv_lastsession(const struct server *s)
84{
85 if (s->counters.last_sess)
86 return now.tv_sec - s->counters.last_sess;
87
88 return -1;
89}
90
Simon Horman4a741432013-02-23 15:35:38 +090091int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020092{
Simon Horman4a741432013-02-23 15:35:38 +090093 const struct server *s = check->server;
94
Willy Tarreauff5ae352013-12-11 20:36:34 +010095 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +090096 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010097
Emeric Brun52a91d32017-08-31 14:41:55 +020098 if ((s->next_state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +090099 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100100
Simon Horman4a741432013-02-23 15:35:38 +0900101 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100102}
103
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100104/*
105 * Check that we did not get a hash collision.
Willy Tarreau595e7672020-10-20 17:30:08 +0200106 * Unlikely, but it can happen. The server's proxy must be at least
107 * read-locked.
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100108 */
109static inline void srv_check_for_dup_dyncookie(struct server *s)
Olivier Houchard4e694042017-03-14 20:01:29 +0100110{
111 struct proxy *p = s->proxy;
112 struct server *tmpserv;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100113
114 for (tmpserv = p->srv; tmpserv != NULL;
115 tmpserv = tmpserv->next) {
116 if (tmpserv == s)
117 continue;
118 if (tmpserv->next_admin & SRV_ADMF_FMAINT)
119 continue;
120 if (tmpserv->cookie &&
121 strcmp(tmpserv->cookie, s->cookie) == 0) {
122 ha_warning("We generated two equal cookies for two different servers.\n"
123 "Please change the secret key for '%s'.\n",
124 s->proxy->id);
125 }
126 }
127
128}
129
Willy Tarreau46b7f532018-08-21 11:54:26 +0200130/*
Willy Tarreau595e7672020-10-20 17:30:08 +0200131 * Must be called with the server lock held, and will read-lock the proxy.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200132 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100133void srv_set_dyncookie(struct server *s)
134{
135 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100136 char *tmpbuf;
137 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100138 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100139 size_t buffer_len;
140 int addr_len;
141 int port;
142
Willy Tarreau595e7672020-10-20 17:30:08 +0200143 HA_RWLOCK_RDLOCK(PROXY_LOCK, &p->lock);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200144
Olivier Houchard4e694042017-03-14 20:01:29 +0100145 if ((s->flags & SRV_F_COOKIESET) ||
146 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
147 s->proxy->dyncookie_key == NULL)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200148 goto out;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100149 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100150
151 if (s->addr.ss_family != AF_INET &&
152 s->addr.ss_family != AF_INET6)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200153 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100154 /*
155 * Buffer to calculate the cookie value.
156 * The buffer contains the secret key + the server IP address
157 * + the TCP port.
158 */
159 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
160 /*
161 * The TCP port should use only 2 bytes, but is stored in
162 * an unsigned int in struct server, so let's use 4, to be
163 * on the safe side.
164 */
165 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200166 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100167 memcpy(tmpbuf, p->dyncookie_key, key_len);
168 memcpy(&(tmpbuf[key_len]),
169 s->addr.ss_family == AF_INET ?
170 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
171 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
172 addr_len);
173 /*
174 * Make sure it's the same across all the load balancers,
175 * no matter their endianness.
176 */
177 port = htonl(s->svc_port);
178 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
179 hash_value = XXH64(tmpbuf, buffer_len, 0);
180 memprintf(&s->cookie, "%016llx", hash_value);
181 if (!s->cookie)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200182 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100183 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100184
185 /* Don't bother checking if the dyncookie is duplicated if
186 * the server is marked as "disabled", maybe it doesn't have
187 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100188 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100189 if (!(s->next_admin & SRV_ADMF_FMAINT))
190 srv_check_for_dup_dyncookie(s);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200191 out:
Willy Tarreau595e7672020-10-20 17:30:08 +0200192 HA_RWLOCK_RDUNLOCK(PROXY_LOCK, &p->lock);
Olivier Houchard4e694042017-03-14 20:01:29 +0100193}
194
Willy Tarreau21faa912012-10-10 08:27:36 +0200195/*
196 * Registers the server keyword list <kwl> as a list of valid keywords for next
197 * parsing sessions.
198 */
199void srv_register_keywords(struct srv_kw_list *kwl)
200{
201 LIST_ADDQ(&srv_keywords.list, &kwl->list);
202}
203
204/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
205 * keyword is found with a NULL ->parse() function, then an attempt is made to
206 * find one with a valid ->parse() function. This way it is possible to declare
207 * platform-dependant, known keywords as NULL, then only declare them as valid
208 * if some options are met. Note that if the requested keyword contains an
209 * opening parenthesis, everything from this point is ignored.
210 */
211struct srv_kw *srv_find_kw(const char *kw)
212{
213 int index;
214 const char *kwend;
215 struct srv_kw_list *kwl;
216 struct srv_kw *ret = NULL;
217
218 kwend = strchr(kw, '(');
219 if (!kwend)
220 kwend = kw + strlen(kw);
221
222 list_for_each_entry(kwl, &srv_keywords.list, list) {
223 for (index = 0; kwl->kw[index].kw != NULL; index++) {
224 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
225 kwl->kw[index].kw[kwend-kw] == 0) {
226 if (kwl->kw[index].parse)
227 return &kwl->kw[index]; /* found it !*/
228 else
229 ret = &kwl->kw[index]; /* may be OK */
230 }
231 }
232 }
233 return ret;
234}
235
236/* Dumps all registered "server" keywords to the <out> string pointer. The
237 * unsupported keywords are only dumped if their supported form was not
238 * found.
239 */
240void srv_dump_kws(char **out)
241{
242 struct srv_kw_list *kwl;
243 int index;
244
Christopher Faulet784063e2020-05-18 12:14:18 +0200245 if (!out)
246 return;
247
Willy Tarreau21faa912012-10-10 08:27:36 +0200248 *out = NULL;
249 list_for_each_entry(kwl, &srv_keywords.list, list) {
250 for (index = 0; kwl->kw[index].kw != NULL; index++) {
251 if (kwl->kw[index].parse ||
252 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
253 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
254 kwl->scope,
255 kwl->kw[index].kw,
256 kwl->kw[index].skip ? " <arg>" : "",
257 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
258 kwl->kw[index].parse ? "" : " (not supported)");
259 }
260 }
261 }
262}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100263
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100264/* Parse the "backup" server keyword */
265static int srv_parse_backup(char **args, int *cur_arg,
266 struct proxy *curproxy, struct server *newsrv, char **err)
267{
268 newsrv->flags |= SRV_F_BACKUP;
269 return 0;
270}
271
Alexander Liu2a54bb72019-05-22 19:44:48 +0800272
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100273/* Parse the "cookie" server keyword */
274static int srv_parse_cookie(char **args, int *cur_arg,
275 struct proxy *curproxy, struct server *newsrv, char **err)
276{
277 char *arg;
278
279 arg = args[*cur_arg + 1];
280 if (!*arg) {
281 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
282 return ERR_ALERT | ERR_FATAL;
283 }
284
285 free(newsrv->cookie);
286 newsrv->cookie = strdup(arg);
287 newsrv->cklen = strlen(arg);
288 newsrv->flags |= SRV_F_COOKIESET;
289 return 0;
290}
291
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100292/* Parse the "disabled" server keyword */
293static int srv_parse_disabled(char **args, int *cur_arg,
294 struct proxy *curproxy, struct server *newsrv, char **err)
295{
Emeric Brun52a91d32017-08-31 14:41:55 +0200296 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
297 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100298 newsrv->check.state |= CHK_ST_PAUSED;
299 newsrv->check.health = 0;
300 return 0;
301}
302
303/* Parse the "enabled" server keyword */
304static int srv_parse_enabled(char **args, int *cur_arg,
305 struct proxy *curproxy, struct server *newsrv, char **err)
306{
Emeric Brun52a91d32017-08-31 14:41:55 +0200307 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
308 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100309 newsrv->check.state &= ~CHK_ST_PAUSED;
310 newsrv->check.health = newsrv->check.rise;
311 return 0;
312}
313
Willy Tarreau9c538e02019-01-23 10:21:49 +0100314static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
315{
316 char *arg;
317
318 arg = args[*cur_arg + 1];
319 if (!*arg) {
320 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
321 return ERR_ALERT | ERR_FATAL;
322 }
323 newsrv->max_reuse = atoi(arg);
324
325 return 0;
326}
327
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100328static int srv_parse_pool_purge_delay(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100329{
330 const char *res;
331 char *arg;
332 unsigned int time;
333
334 arg = args[*cur_arg + 1];
335 if (!*arg) {
336 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
337 return ERR_ALERT | ERR_FATAL;
338 }
339 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200340 if (res == PARSE_TIME_OVER) {
341 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
342 args[*cur_arg+1], args[*cur_arg]);
343 return ERR_ALERT | ERR_FATAL;
344 }
345 else if (res == PARSE_TIME_UNDER) {
346 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
347 args[*cur_arg+1], args[*cur_arg]);
348 return ERR_ALERT | ERR_FATAL;
349 }
350 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100351 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
352 *res, args[*cur_arg]);
353 return ERR_ALERT | ERR_FATAL;
354 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100355 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100356
357 return 0;
358}
359
Willy Tarreau2f3f4d32020-07-01 07:43:51 +0200360static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
361{
362 char *arg;
363
364 arg = args[*cur_arg + 1];
365 if (!*arg) {
366 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
367 return ERR_ALERT | ERR_FATAL;
368 }
369
370 newsrv->low_idle_conns = atoi(arg);
371 return 0;
372}
373
Olivier Houchard006e3102018-12-10 18:30:32 +0100374static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
375{
376 char *arg;
377
378 arg = args[*cur_arg + 1];
379 if (!*arg) {
380 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
381 return ERR_ALERT | ERR_FATAL;
382 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100383
Olivier Houchard006e3102018-12-10 18:30:32 +0100384 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100385 if ((int)newsrv->max_idle_conns < -1) {
386 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
387 return ERR_ALERT | ERR_FATAL;
388 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100389
390 return 0;
391}
392
Willy Tarreaudff55432012-10-10 17:51:05 +0200393/* parse the "id" server keyword */
394static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
395{
396 struct eb32_node *node;
397
398 if (!*args[*cur_arg + 1]) {
399 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
400 return ERR_ALERT | ERR_FATAL;
401 }
402
403 newsrv->puid = atol(args[*cur_arg + 1]);
404 newsrv->conf.id.key = newsrv->puid;
405
406 if (newsrv->puid <= 0) {
407 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
408 return ERR_ALERT | ERR_FATAL;
409 }
410
411 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
412 if (node) {
413 struct server *target = container_of(node, struct server, conf.id);
414 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
415 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
416 target->id);
417 return ERR_ALERT | ERR_FATAL;
418 }
419
420 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200421 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200422 return 0;
423}
424
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100425/* Parse the "namespace" server keyword */
426static int srv_parse_namespace(char **args, int *cur_arg,
427 struct proxy *curproxy, struct server *newsrv, char **err)
428{
Willy Tarreaue5733232019-05-22 19:24:06 +0200429#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100430 char *arg;
431
432 arg = args[*cur_arg + 1];
433 if (!*arg) {
434 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
435 return ERR_ALERT | ERR_FATAL;
436 }
437
438 if (!strcmp(arg, "*")) {
439 /* Use the namespace associated with the connection (if present). */
440 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
441 return 0;
442 }
443
444 /*
445 * As this parser may be called several times for the same 'default-server'
446 * object, or for a new 'server' instance deriving from a 'default-server'
447 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
448 */
449 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
450
451 newsrv->netns = netns_store_lookup(arg, strlen(arg));
452 if (!newsrv->netns)
453 newsrv->netns = netns_store_insert(arg);
454
455 if (!newsrv->netns) {
456 memprintf(err, "Cannot open namespace '%s'", arg);
457 return ERR_ALERT | ERR_FATAL;
458 }
459
460 return 0;
461#else
462 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
463 return ERR_ALERT | ERR_FATAL;
464#endif
465}
466
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100467/* Parse the "no-backup" server keyword */
468static int srv_parse_no_backup(char **args, int *cur_arg,
469 struct proxy *curproxy, struct server *newsrv, char **err)
470{
471 newsrv->flags &= ~SRV_F_BACKUP;
472 return 0;
473}
474
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100475
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100476/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200477static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100478{
479 srv->pp_opts &= ~flags;
480 return 0;
481}
482
483/* Parse the "no-send-proxy" server keyword */
484static int srv_parse_no_send_proxy(char **args, int *cur_arg,
485 struct proxy *curproxy, struct server *newsrv, char **err)
486{
487 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
488}
489
490/* Parse the "no-send-proxy-v2" server keyword */
491static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
492 struct proxy *curproxy, struct server *newsrv, char **err)
493{
494 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
495}
496
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200497/* Parse the "no-tfo" server keyword */
498static int srv_parse_no_tfo(char **args, int *cur_arg,
499 struct proxy *curproxy, struct server *newsrv, char **err)
500{
501 newsrv->flags &= ~SRV_F_FASTOPEN;
502 return 0;
503}
504
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100505/* Parse the "non-stick" server keyword */
506static int srv_parse_non_stick(char **args, int *cur_arg,
507 struct proxy *curproxy, struct server *newsrv, char **err)
508{
509 newsrv->flags |= SRV_F_NON_STICK;
510 return 0;
511}
512
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100513/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200514static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100515{
516 srv->pp_opts |= flags;
517 return 0;
518}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200519/* parse the "proto" server keyword */
520static int srv_parse_proto(char **args, int *cur_arg,
521 struct proxy *px, struct server *newsrv, char **err)
522{
523 struct ist proto;
524
525 if (!*args[*cur_arg + 1]) {
526 memprintf(err, "'%s' : missing value", args[*cur_arg]);
527 return ERR_ALERT | ERR_FATAL;
528 }
529 proto = ist2(args[*cur_arg + 1], strlen(args[*cur_arg + 1]));
530 newsrv->mux_proto = get_mux_proto(proto);
531 if (!newsrv->mux_proto) {
532 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
533 return ERR_ALERT | ERR_FATAL;
534 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200535 return 0;
536}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100537
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100538/* parse the "proxy-v2-options" */
539static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
540 struct proxy *px, struct server *newsrv, char **err)
541{
542 char *p, *n;
543 for (p = args[*cur_arg+1]; p; p = n) {
544 n = strchr(p, ',');
545 if (n)
546 *n++ = '\0';
547 if (!strcmp(p, "ssl")) {
548 newsrv->pp_opts |= SRV_PP_V2_SSL;
549 } else if (!strcmp(p, "cert-cn")) {
550 newsrv->pp_opts |= SRV_PP_V2_SSL;
551 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100552 } else if (!strcmp(p, "cert-key")) {
553 newsrv->pp_opts |= SRV_PP_V2_SSL;
554 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
555 } else if (!strcmp(p, "cert-sig")) {
556 newsrv->pp_opts |= SRV_PP_V2_SSL;
557 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
558 } else if (!strcmp(p, "ssl-cipher")) {
559 newsrv->pp_opts |= SRV_PP_V2_SSL;
560 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100561 } else if (!strcmp(p, "authority")) {
562 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100563 } else if (!strcmp(p, "crc32c")) {
564 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100565 } else if (!strcmp(p, "unique-id")) {
566 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100567 } else
568 goto fail;
569 }
570 return 0;
571 fail:
572 if (err)
573 memprintf(err, "'%s' : proxy v2 option not implemented", p);
574 return ERR_ALERT | ERR_FATAL;
575}
576
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100577/* Parse the "observe" server keyword */
578static int srv_parse_observe(char **args, int *cur_arg,
579 struct proxy *curproxy, struct server *newsrv, char **err)
580{
581 char *arg;
582
583 arg = args[*cur_arg + 1];
584 if (!*arg) {
585 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
586 return ERR_ALERT | ERR_FATAL;
587 }
588
589 if (!strcmp(arg, "none")) {
590 newsrv->observe = HANA_OBS_NONE;
591 }
592 else if (!strcmp(arg, "layer4")) {
593 newsrv->observe = HANA_OBS_LAYER4;
594 }
595 else if (!strcmp(arg, "layer7")) {
596 if (curproxy->mode != PR_MODE_HTTP) {
597 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
598 return ERR_ALERT;
599 }
600 newsrv->observe = HANA_OBS_LAYER7;
601 }
602 else {
603 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
604 "but got '%s'\n", args[*cur_arg], arg);
605 return ERR_ALERT | ERR_FATAL;
606 }
607
608 return 0;
609}
610
Frédéric Lécaille16186232017-03-14 16:42:49 +0100611/* Parse the "redir" server keyword */
612static int srv_parse_redir(char **args, int *cur_arg,
613 struct proxy *curproxy, struct server *newsrv, char **err)
614{
615 char *arg;
616
617 arg = args[*cur_arg + 1];
618 if (!*arg) {
619 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
620 return ERR_ALERT | ERR_FATAL;
621 }
622
623 free(newsrv->rdr_pfx);
624 newsrv->rdr_pfx = strdup(arg);
625 newsrv->rdr_len = strlen(arg);
626
627 return 0;
628}
629
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100630/* Parse the "send-proxy" server keyword */
631static int srv_parse_send_proxy(char **args, int *cur_arg,
632 struct proxy *curproxy, struct server *newsrv, char **err)
633{
634 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
635}
636
637/* Parse the "send-proxy-v2" server keyword */
638static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
639 struct proxy *curproxy, struct server *newsrv, char **err)
640{
641 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
642}
643
Frédéric Lécailledba97072017-03-17 15:33:50 +0100644
645/* Parse the "source" server keyword */
646static int srv_parse_source(char **args, int *cur_arg,
647 struct proxy *curproxy, struct server *newsrv, char **err)
648{
649 char *errmsg;
650 int port_low, port_high;
651 struct sockaddr_storage *sk;
Frédéric Lécailledba97072017-03-17 15:33:50 +0100652
653 errmsg = NULL;
654
655 if (!*args[*cur_arg + 1]) {
656 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
657 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
658 goto err;
659 }
660
661 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200662 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
663 &errmsg, NULL, NULL,
664 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_RANGE | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100665 if (!sk) {
666 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
667 goto err;
668 }
669
Frédéric Lécailledba97072017-03-17 15:33:50 +0100670 newsrv->conn_src.opts |= CO_SRC_BIND;
671 newsrv->conn_src.source_addr = *sk;
672
673 if (port_low != port_high) {
674 int i;
675
Frédéric Lécailledba97072017-03-17 15:33:50 +0100676 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
677 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
678 newsrv->conn_src.sport_range->ports[i] = port_low + i;
679 }
680
681 *cur_arg += 2;
682 while (*(args[*cur_arg])) {
683 if (!strcmp(args[*cur_arg], "usesrc")) { /* address to use outside */
684#if defined(CONFIG_HAP_TRANSPARENT)
685 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100686 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
687 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +0100688 goto err;
689 }
690 if (!strcmp(args[*cur_arg + 1], "client")) {
691 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
692 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
693 }
694 else if (!strcmp(args[*cur_arg + 1], "clientip")) {
695 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
696 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
697 }
698 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
699 char *name, *end;
700
701 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +0100702 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100703 name++;
704
705 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +0100706 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +0100707 end++;
708
709 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
710 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
711 free(newsrv->conn_src.bind_hdr_name);
712 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
713 newsrv->conn_src.bind_hdr_len = end - name;
714 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
715 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
716 newsrv->conn_src.bind_hdr_occ = -1;
717
718 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +0100719 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100720 end++;
721 if (*end == ',') {
722 end++;
723 name = end;
724 if (*end == '-')
725 end++;
Willy Tarreau90807112020-02-25 08:16:33 +0100726 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100727 end++;
728 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
729 }
730
731 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100732 ha_alert("usesrc hdr_ip(name,num) does not support negative"
733 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100734 goto err;
735 }
736 }
737 else {
738 struct sockaddr_storage *sk;
739 int port1, port2;
740
741 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200742 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL,
743 &errmsg, NULL, NULL,
744 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100745 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100746 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100747 goto err;
748 }
749
Frédéric Lécailledba97072017-03-17 15:33:50 +0100750 newsrv->conn_src.tproxy_addr = *sk;
751 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
752 }
753 global.last_checks |= LSTCHK_NETADM;
754 *cur_arg += 2;
755 continue;
756#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100757 ha_alert("'usesrc' not allowed here because support for TPROXY was not compiled in.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +0100758 goto err;
759#endif /* defined(CONFIG_HAP_TRANSPARENT) */
760 } /* "usesrc" */
761
762 if (!strcmp(args[*cur_arg], "interface")) { /* specifically bind to this interface */
763#ifdef SO_BINDTODEVICE
764 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100765 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100766 goto err;
767 }
768 free(newsrv->conn_src.iface_name);
769 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
770 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
771 global.last_checks |= LSTCHK_NETADM;
772#else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100773 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100774 goto err;
775#endif
776 *cur_arg += 2;
777 continue;
778 }
779 /* this keyword in not an option of "source" */
780 break;
781 } /* while */
782
783 return 0;
784
785 err:
786 free(errmsg);
787 return ERR_ALERT | ERR_FATAL;
788}
789
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100790/* Parse the "stick" server keyword */
791static int srv_parse_stick(char **args, int *cur_arg,
792 struct proxy *curproxy, struct server *newsrv, char **err)
793{
794 newsrv->flags &= ~SRV_F_NON_STICK;
795 return 0;
796}
797
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100798/* Parse the "track" server keyword */
799static int srv_parse_track(char **args, int *cur_arg,
800 struct proxy *curproxy, struct server *newsrv, char **err)
801{
802 char *arg;
803
804 arg = args[*cur_arg + 1];
805 if (!*arg) {
806 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
807 return ERR_ALERT | ERR_FATAL;
808 }
809
810 free(newsrv->trackit);
811 newsrv->trackit = strdup(arg);
812
813 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800814}
815
816/* Parse the "socks4" server keyword */
817static int srv_parse_socks4(char **args, int *cur_arg,
818 struct proxy *curproxy, struct server *newsrv, char **err)
819{
820 char *errmsg;
821 int port_low, port_high;
822 struct sockaddr_storage *sk;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800823
824 errmsg = NULL;
825
826 if (!*args[*cur_arg + 1]) {
827 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
828 goto err;
829 }
830
831 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200832 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
833 &errmsg, NULL, NULL,
834 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT);
Alexander Liu2a54bb72019-05-22 19:44:48 +0800835 if (!sk) {
836 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
837 goto err;
838 }
839
Alexander Liu2a54bb72019-05-22 19:44:48 +0800840 newsrv->flags |= SRV_F_SOCKS4_PROXY;
841 newsrv->socks4_addr = *sk;
842
Alexander Liu2a54bb72019-05-22 19:44:48 +0800843 return 0;
844
845 err:
846 free(errmsg);
847 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100848}
849
Frédéric Lécailledba97072017-03-17 15:33:50 +0100850
Willy Tarreau034c88c2017-01-23 23:36:45 +0100851/* parse the "tfo" server keyword */
852static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
853{
854 newsrv->flags |= SRV_F_FASTOPEN;
855 return 0;
856}
857
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200858/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +0200859 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200860 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200861 *
862 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200863 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200864void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200865{
Willy Tarreau49e10802021-02-17 13:33:24 +0100866 struct stream *stream;
867 struct mt_list *elt1, elt2;
Willy Tarreau72653c52021-03-04 10:47:54 +0100868 int thr;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200869
Willy Tarreau72653c52021-03-04 10:47:54 +0100870 for (thr = 0; thr < global.nbthread; thr++)
871 mt_list_for_each_entry_safe(stream, &srv->actconns[thr], by_srv, elt1, elt2)
872 if (stream->srv_conn == srv)
873 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200874}
875
876/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +0200877 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200878 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200879 *
880 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200881 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200882void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200883{
884 struct server *srv;
885
886 for (srv = px->srv; srv != NULL; srv = srv->next)
887 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +0200888 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200889}
890
Willy Tarreaubda92272014-05-20 21:55:30 +0200891/* Appends some information to a message string related to a server going UP or
892 * DOWN. If both <forced> and <reason> are null and the server tracks another
893 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +0200894 * If <check> is non-null, an entire string describing the check result will be
895 * appended after a comma and a space (eg: to report some information from the
896 * check that changed the state). In the other case, the string will be built
897 * using the check results stored into the struct server if present.
898 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +0200899 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200900 *
901 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200902 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200903void srv_append_status(struct buffer *msg, struct server *s,
904 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200905{
Emeric Brun5a133512017-10-19 14:42:30 +0200906 short status = s->op_st_chg.status;
907 short code = s->op_st_chg.code;
908 long duration = s->op_st_chg.duration;
909 char *desc = s->op_st_chg.reason;
910
911 if (check) {
912 status = check->status;
913 code = check->code;
914 duration = check->duration;
915 desc = check->desc;
916 }
917
918 if (status != -1) {
919 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
920
921 if (status >= HCHK_STATUS_L57DATA)
922 chunk_appendf(msg, ", code: %d", code);
923
924 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +0200925 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +0200926
927 chunk_appendf(msg, ", info: \"");
928
929 chunk_initlen(&src, desc, 0, strlen(desc));
930 chunk_asciiencode(msg, &src, '"');
931
932 chunk_appendf(msg, "\"");
933 }
934
935 if (duration >= 0)
936 chunk_appendf(msg, ", check duration: %ldms", duration);
937 }
938 else if (desc && *desc) {
939 chunk_appendf(msg, ", %s", desc);
940 }
941 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +0200942 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +0200943 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200944
945 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200946 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200947 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
948 " %d sessions active, %d requeued, %d remaining in queue",
949 s->proxy->srv_act, s->proxy->srv_bck,
950 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
951 s->cur_sess, xferred, s->nbpend);
952 else
953 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
954 " %d sessions requeued, %d total in queue",
955 s->proxy->srv_act, s->proxy->srv_bck,
956 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
957 xferred, s->nbpend);
958 }
959}
960
Emeric Brun5a133512017-10-19 14:42:30 +0200961/* Marks server <s> down, regardless of its checks' statuses. The server is
962 * registered in a list to postpone the counting of the remaining servers on
963 * the proxy and transfers queued streams whenever possible to other servers at
964 * a sync point. Maintenance servers are ignored. It stores the <reason> if
965 * non-null as the reason for going down or the available data from the check
966 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200967 *
968 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200969 */
Emeric Brun5a133512017-10-19 14:42:30 +0200970void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200971{
972 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200973
Emeric Brun64cc49c2017-10-03 14:46:45 +0200974 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200975 return;
976
Emeric Brun52a91d32017-08-31 14:41:55 +0200977 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +0200978 *s->op_st_chg.reason = 0;
979 s->op_st_chg.status = -1;
980 if (reason) {
981 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
982 }
983 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +0100984 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +0200985 s->op_st_chg.code = check->code;
986 s->op_st_chg.status = check->status;
987 s->op_st_chg.duration = check->duration;
988 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200989
Willy Tarreaueeba36b2018-08-21 08:22:26 +0200990 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +0200991 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +0200992
Emeric Brun9f0b4582017-10-23 14:39:51 +0200993 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100994 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +0200995 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100996 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +0200997 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200998}
999
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001000/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001001 * in maintenance. The server is registered in a list to postpone the counting
1002 * of the remaining servers on the proxy and tries to grab requests from the
1003 * proxy at a sync point. Maintenance servers are ignored. It stores the
1004 * <reason> if non-null as the reason for going down or the available data
1005 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001006 *
1007 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001008 */
Emeric Brun5a133512017-10-19 14:42:30 +02001009void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001010{
1011 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001012
Emeric Brun64cc49c2017-10-03 14:46:45 +02001013 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001014 return;
1015
Emeric Brun52a91d32017-08-31 14:41:55 +02001016 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001017 return;
1018
Emeric Brun52a91d32017-08-31 14:41:55 +02001019 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001020 *s->op_st_chg.reason = 0;
1021 s->op_st_chg.status = -1;
1022 if (reason) {
1023 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1024 }
1025 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001026 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001027 s->op_st_chg.code = check->code;
1028 s->op_st_chg.status = check->status;
1029 s->op_st_chg.duration = check->duration;
1030 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001031
Emeric Brun64cc49c2017-10-03 14:46:45 +02001032 if (s->slowstart <= 0)
1033 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001034
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001035 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001036 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001037
Emeric Brun9f0b4582017-10-23 14:39:51 +02001038 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001039 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001040 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001041 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001042 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001043}
1044
Willy Tarreau8eb77842014-05-21 13:54:57 +02001045/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001046 * isn't in maintenance. The server is registered in a list to postpone the
1047 * counting of the remaining servers on the proxy and tries to grab requests
1048 * from the proxy. Maintenance servers are ignored. It stores the
1049 * <reason> if non-null as the reason for going down or the available data
1050 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001051 * up. Note that it makes use of the trash to build the log strings, so <reason>
1052 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001053 *
1054 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001055 */
Emeric Brun5a133512017-10-19 14:42:30 +02001056void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001057{
1058 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001059
Emeric Brun64cc49c2017-10-03 14:46:45 +02001060 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001061 return;
1062
Emeric Brun52a91d32017-08-31 14:41:55 +02001063 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001064 return;
1065
Emeric Brun52a91d32017-08-31 14:41:55 +02001066 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001067 *s->op_st_chg.reason = 0;
1068 s->op_st_chg.status = -1;
1069 if (reason) {
1070 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1071 }
1072 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001073 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001074 s->op_st_chg.code = check->code;
1075 s->op_st_chg.status = check->status;
1076 s->op_st_chg.duration = check->duration;
1077 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001078
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001079 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001080 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001081
Emeric Brun9f0b4582017-10-23 14:39:51 +02001082 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001083 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001084 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001085 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001086 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001087}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001088
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001089/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1090 * enforce either maint mode or drain mode. It is not allowed to set more than
1091 * one flag at once. The equivalent "inherited" flag is propagated to all
1092 * tracking servers. Maintenance mode disables health checks (but not agent
1093 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001094 * is done. If <cause> is non-null, it will be displayed at the end of the log
1095 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001096 *
1097 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001098 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001099void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001100{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001101 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001102
1103 if (!mode)
1104 return;
1105
1106 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001107 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001108 return;
1109
Emeric Brun52a91d32017-08-31 14:41:55 +02001110 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001111 if (cause)
1112 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1113
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001114 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001115 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001116
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001117 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001118 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1119 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001120 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001121
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001122 /* compute the inherited flag to propagate */
1123 if (mode & SRV_ADMF_MAINT)
1124 mode = SRV_ADMF_IMAINT;
1125 else if (mode & SRV_ADMF_DRAIN)
1126 mode = SRV_ADMF_IDRAIN;
1127
Emeric Brun9f0b4582017-10-23 14:39:51 +02001128 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001129 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001130 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001131 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001132 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001133}
1134
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001135/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1136 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1137 * than one flag at once. The equivalent "inherited" flag is propagated to all
1138 * tracking servers. Leaving maintenance mode re-enables health checks. When
1139 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001140 *
1141 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001142 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001143void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001144{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001145 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001146
1147 if (!mode)
1148 return;
1149
1150 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001151 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001152 return;
1153
Emeric Brun52a91d32017-08-31 14:41:55 +02001154 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001155
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001156 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001157 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001158
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001159 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001160 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1161 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001162 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001163
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001164 if (mode & SRV_ADMF_MAINT)
1165 mode = SRV_ADMF_IMAINT;
1166 else if (mode & SRV_ADMF_DRAIN)
1167 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001168
Emeric Brun9f0b4582017-10-23 14:39:51 +02001169 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001170 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001171 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001172 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001173 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001174}
1175
Willy Tarreau757478e2016-11-03 19:22:19 +01001176/* principle: propagate maint and drain to tracking servers. This is useful
1177 * upon startup so that inherited states are correct.
1178 */
1179static void srv_propagate_admin_state(struct server *srv)
1180{
1181 struct server *srv2;
1182
1183 if (!srv->trackers)
1184 return;
1185
1186 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001187 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001188 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001189 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001190
Emeric Brun52a91d32017-08-31 14:41:55 +02001191 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001192 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001193 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001194 }
1195}
1196
1197/* Compute and propagate the admin states for all servers in proxy <px>.
1198 * Only servers *not* tracking another one are considered, because other
1199 * ones will be handled when the server they track is visited.
1200 */
1201void srv_compute_all_admin_states(struct proxy *px)
1202{
1203 struct server *srv;
1204
1205 for (srv = px->srv; srv; srv = srv->next) {
1206 if (srv->track)
1207 continue;
1208 srv_propagate_admin_state(srv);
1209 }
1210}
1211
Willy Tarreaudff55432012-10-10 17:51:05 +02001212/* Note: must not be declared <const> as its list will be overwritten.
1213 * Please take care of keeping this list alphabetically sorted, doing so helps
1214 * all code contributors.
1215 * Optional keywords are also declared with a NULL ->parse() function so that
1216 * the config parser can report an appropriate error when a known keyword was
1217 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001218 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001219 */
1220static struct srv_kw_list srv_kws = { "ALL", { }, {
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001221 { "backup", srv_parse_backup, 0, 1 }, /* Flag as backup server */
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +01001222 { "cookie", srv_parse_cookie, 1, 1 }, /* Assign a cookie to the server */
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +01001223 { "disabled", srv_parse_disabled, 0, 1 }, /* Start the server in 'disabled' state */
1224 { "enabled", srv_parse_enabled, 0, 1 }, /* Start the server in 'enabled' state */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001225 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
Willy Tarreau9c538e02019-01-23 10:21:49 +01001226 { "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 +01001227 { "namespace", srv_parse_namespace, 1, 1 }, /* Namespace the server socket belongs to (if supported) */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001228 { "no-backup", srv_parse_no_backup, 0, 1 }, /* Flag as non-backup server */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001229 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1 }, /* Disable use of PROXY V1 protocol */
1230 { "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 +02001231 { "no-tfo", srv_parse_no_tfo, 0, 1 }, /* Disable use of TCP Fast Open */
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001232 { "non-stick", srv_parse_non_stick, 0, 1 }, /* Disable stick-table persistence */
Frédéric Lécaille547356e2017-03-15 08:55:39 +01001233 { "observe", srv_parse_observe, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001234 { "pool-low-conn", srv_parse_pool_low_conn, 1, 1 }, /* Set the min number of orphan idle connecbefore being allowed to pick from other threads */
Olivier Houchard006e3102018-12-10 18:30:32 +01001235 { "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 +01001236 { "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 +02001237 { "proto", srv_parse_proto, 1, 1 }, /* Set the proto to use for all outgoing connections */
Emmanuel Hocdetf643b802018-02-01 15:20:32 +01001238 { "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 +01001239 { "redir", srv_parse_redir, 1, 1 }, /* Enable redirection mode */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001240 { "send-proxy", srv_parse_send_proxy, 0, 1 }, /* Enforce use of PROXY V1 protocol */
1241 { "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 +02001242 { "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 +01001243 { "stick", srv_parse_stick, 0, 1 }, /* Enable stick-table persistence */
Olivier Houchard8d82db72019-07-04 13:34:10 +02001244 { "tfo", srv_parse_tfo, 0, 1 }, /* enable TCP Fast Open of server */
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001245 { "track", srv_parse_track, 1, 1 }, /* Set the current state of the server, tracking another one */
Alexander Liu2a54bb72019-05-22 19:44:48 +08001246 { "socks4", srv_parse_socks4, 1, 1 }, /* Set the socks4 proxy of the server*/
Willy Tarreaudff55432012-10-10 17:51:05 +02001247 { NULL, NULL, 0 },
1248}};
1249
Willy Tarreau0108d902018-11-25 19:14:37 +01001250INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001251
Willy Tarreau004e0452013-11-21 11:22:01 +01001252/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001253 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001254 * state is automatically disabled if the time is elapsed. If <must_update> is
1255 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001256 *
1257 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001258 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001259void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001260{
1261 struct proxy *px = sv->proxy;
1262 unsigned w;
1263
1264 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1265 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001266 if (sv->next_state == SRV_ST_STARTING)
1267 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001268 }
1269
1270 /* We must take care of not pushing the server to full throttle during slow starts.
1271 * It must also start immediately, at least at the minimal step when leaving maintenance.
1272 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001273 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001274 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1275 else
1276 w = px->lbprm.wdiv;
1277
Emeric Brun52a91d32017-08-31 14:41:55 +02001278 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001279
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001280 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001281 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001282 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001283}
1284
Willy Tarreaubaaee002006-06-26 02:48:02 +02001285/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001286 * Parses weight_str and configures sv accordingly.
1287 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001288 *
1289 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001290 */
1291const char *server_parse_weight_change_request(struct server *sv,
1292 const char *weight_str)
1293{
1294 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001295 long int w;
1296 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001297
1298 px = sv->proxy;
1299
1300 /* if the weight is terminated with '%', it is set relative to
1301 * the initial weight, otherwise it is absolute.
1302 */
1303 if (!*weight_str)
1304 return "Require <weight> or <weight%>.\n";
1305
Simon Hormanb796afa2013-02-12 10:45:53 +09001306 w = strtol(weight_str, &end, 10);
1307 if (end == weight_str)
1308 return "Empty weight string empty or preceded by garbage";
1309 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001310 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001311 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001312 /* Avoid integer overflow */
1313 if (w > 25600)
1314 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001315 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001316 if (w > 256)
1317 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001318 }
1319 else if (w < 0 || w > 256)
1320 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001321 else if (end[0] != '\0')
1322 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001323
1324 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1325 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1326
1327 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001328 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001329
1330 return NULL;
1331}
1332
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001333/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001334 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1335 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001336 * Returns:
1337 * - error string on error
1338 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001339 *
1340 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001341 */
1342const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001343 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001344{
1345 unsigned char ip[INET6_ADDRSTRLEN];
1346
1347 if (inet_pton(AF_INET6, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001348 update_server_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001349 return NULL;
1350 }
1351 if (inet_pton(AF_INET, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001352 update_server_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001353 return NULL;
1354 }
1355
1356 return "Could not understand IP address format.\n";
1357}
1358
Willy Tarreau46b7f532018-08-21 11:54:26 +02001359/*
1360 * Must be called with the server lock held.
1361 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001362const char *server_parse_maxconn_change_request(struct server *sv,
1363 const char *maxconn_str)
1364{
1365 long int v;
1366 char *end;
1367
1368 if (!*maxconn_str)
1369 return "Require <maxconn>.\n";
1370
1371 v = strtol(maxconn_str, &end, 10);
1372 if (end == maxconn_str)
1373 return "maxconn string empty or preceded by garbage";
1374 else if (end[0] != '\0')
1375 return "Trailing garbage in maxconn string";
1376
1377 if (sv->maxconn == sv->minconn) { // static maxconn
1378 sv->maxconn = sv->minconn = v;
1379 } else { // dynamic maxconn
1380 sv->maxconn = v;
1381 }
1382
1383 if (may_dequeue_tasks(sv, sv->proxy))
1384 process_srv_queue(sv);
1385
1386 return NULL;
1387}
1388
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001389#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001390static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1391 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001392{
1393 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001394 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001395 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001396 NULL,
1397 };
1398
1399 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001400 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001401
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001402 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001403}
1404
1405static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1406{
1407 struct sample_expr *expr;
1408
1409 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 +01001410 if (!expr) {
1411 memprintf(err, "error detected while parsing sni expression : %s", *err);
1412 return ERR_ALERT | ERR_FATAL;
1413 }
1414
1415 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1416 memprintf(err, "error detected while parsing sni expression : "
1417 " fetch method '%s' extracts information from '%s', "
1418 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001419 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001420 return ERR_ALERT | ERR_FATAL;
1421 }
1422
1423 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1424 release_sample_expr(newsrv->ssl_ctx.sni);
1425 newsrv->ssl_ctx.sni = expr;
1426
1427 return 0;
1428}
1429#endif
1430
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001431static 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 +01001432{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001433 char *msg = "error encountered while processing ";
1434 char *quote = "'";
1435 char *token = args[cur_arg];
1436
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001437 if (err && *err) {
1438 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001439 msg = *err;
1440 quote = "";
1441 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001442 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001443
1444 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
1445 ha_warning("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1446 file, linenum, args[0], args[1],
1447 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001448 else
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001449 ha_alert("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1450 file, linenum, args[0], args[1],
1451 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001452}
1453
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001454static void srv_conn_src_sport_range_cpy(struct server *srv,
1455 struct server *src)
1456{
1457 int range_sz;
1458
1459 range_sz = src->conn_src.sport_range->size;
1460 if (range_sz > 0) {
1461 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1462 if (srv->conn_src.sport_range != NULL) {
1463 int i;
1464
1465 for (i = 0; i < range_sz; i++) {
1466 srv->conn_src.sport_range->ports[i] =
1467 src->conn_src.sport_range->ports[i];
1468 }
1469 }
1470 }
1471}
1472
1473/*
1474 * Copy <src> server connection source settings to <srv> server everything needed.
1475 */
1476static void srv_conn_src_cpy(struct server *srv, struct server *src)
1477{
1478 srv->conn_src.opts = src->conn_src.opts;
1479 srv->conn_src.source_addr = src->conn_src.source_addr;
1480
1481 /* Source port range copy. */
1482 if (src->conn_src.sport_range != NULL)
1483 srv_conn_src_sport_range_cpy(srv, src);
1484
1485#ifdef CONFIG_HAP_TRANSPARENT
1486 if (src->conn_src.bind_hdr_name != NULL) {
1487 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1488 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1489 }
1490 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1491 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1492#endif
1493 if (src->conn_src.iface_name != NULL)
1494 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1495}
1496
1497/*
1498 * Copy <src> server SSL settings to <srv> server allocating
1499 * everything needed.
1500 */
1501#if defined(USE_OPENSSL)
1502static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1503{
1504 if (src->ssl_ctx.ca_file != NULL)
1505 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1506 if (src->ssl_ctx.crl_file != NULL)
1507 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
1508 if (src->ssl_ctx.client_crt != NULL)
1509 srv->ssl_ctx.client_crt = strdup(src->ssl_ctx.client_crt);
1510
1511 srv->ssl_ctx.verify = src->ssl_ctx.verify;
1512
1513 if (src->ssl_ctx.verify_host != NULL)
1514 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
1515 if (src->ssl_ctx.ciphers != NULL)
1516 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02001517 if (src->ssl_ctx.options)
1518 srv->ssl_ctx.options = src->ssl_ctx.options;
1519 if (src->ssl_ctx.methods.flags)
1520 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
1521 if (src->ssl_ctx.methods.min)
1522 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
1523 if (src->ssl_ctx.methods.max)
1524 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
1525
Willy Tarreau5db847a2019-05-09 14:13:35 +02001526#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02001527 if (src->ssl_ctx.ciphersuites != NULL)
1528 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
1529#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001530 if (src->sni_expr != NULL)
1531 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01001532
1533#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
1534 if (src->ssl_ctx.alpn_str) {
1535 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
1536 if (srv->ssl_ctx.alpn_str) {
1537 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
1538 src->ssl_ctx.alpn_len);
1539 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
1540 }
1541 }
1542#endif
1543#ifdef OPENSSL_NPN_NEGOTIATED
1544 if (src->ssl_ctx.npn_str) {
1545 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
1546 if (srv->ssl_ctx.npn_str) {
1547 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
1548 src->ssl_ctx.npn_len);
1549 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
1550 }
1551 }
1552#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001553}
1554#endif
1555
1556/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001557 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001558 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001559 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001560 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001561static int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001562{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001563 char *hostname_dn;
1564 int hostname_len, hostname_dn_len;
1565
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001566 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001567 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001568
Christopher Faulet67957bd2017-09-27 11:00:59 +02001569 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001570 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001571 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
1572 hostname_dn, trash.size);
1573 if (hostname_dn_len == -1)
1574 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001575
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001576
Christopher Faulet67957bd2017-09-27 11:00:59 +02001577 free(srv->hostname);
1578 free(srv->hostname_dn);
1579 srv->hostname = strdup(hostname);
1580 srv->hostname_dn = strdup(hostname_dn);
1581 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001582 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001583 goto err;
1584
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001585 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001586
1587 err:
Christopher Faulet67957bd2017-09-27 11:00:59 +02001588 free(srv->hostname); srv->hostname = NULL;
1589 free(srv->hostname_dn); srv->hostname_dn = NULL;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001590 return -1;
1591}
1592
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001593/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001594 * Copy <src> server settings to <srv> server allocating
1595 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001596 * This function is not supposed to be called at any time, but only
1597 * during server settings parsing or during server allocations from
1598 * a server template, and just after having calloc()'ed a new server.
1599 * So, <src> may only be a default server (when parsing server settings)
1600 * or a server template (during server allocations from a server template).
1601 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
1602 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001603 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001604static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001605{
1606 /* Connection source settings copy */
1607 srv_conn_src_cpy(srv, src);
1608
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001609 if (srv_tmpl) {
1610 srv->addr = src->addr;
1611 srv->svc_port = src->svc_port;
1612 }
1613
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001614 srv->pp_opts = src->pp_opts;
1615 if (src->rdr_pfx != NULL) {
1616 srv->rdr_pfx = strdup(src->rdr_pfx);
1617 srv->rdr_len = src->rdr_len;
1618 }
1619 if (src->cookie != NULL) {
1620 srv->cookie = strdup(src->cookie);
1621 srv->cklen = src->cklen;
1622 }
1623 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01001624 srv->check.addr = src->check.addr;
1625 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001626 srv->check.use_ssl = src->check.use_ssl;
1627 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01001628 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01001629 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05001630 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001631 /* Note: 'flags' field has potentially been already initialized. */
1632 srv->flags |= src->flags;
1633 srv->do_check = src->do_check;
1634 srv->do_agent = src->do_agent;
1635 if (srv->check.port)
1636 srv->flags |= SRV_F_CHECKPORT;
1637 srv->check.inter = src->check.inter;
1638 srv->check.fastinter = src->check.fastinter;
1639 srv->check.downinter = src->check.downinter;
1640 srv->agent.use_ssl = src->agent.use_ssl;
1641 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001642
1643 if (src->agent.tcpcheck_rules) {
1644 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
1645 if (srv->agent.tcpcheck_rules) {
1646 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
1647 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
1648 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
1649 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
1650 &src->agent.tcpcheck_rules->preset_vars);
1651 }
1652 }
1653
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001654 srv->agent.inter = src->agent.inter;
1655 srv->agent.fastinter = src->agent.fastinter;
1656 srv->agent.downinter = src->agent.downinter;
1657 srv->maxqueue = src->maxqueue;
1658 srv->minconn = src->minconn;
1659 srv->maxconn = src->maxconn;
1660 srv->slowstart = src->slowstart;
1661 srv->observe = src->observe;
1662 srv->onerror = src->onerror;
1663 srv->onmarkeddown = src->onmarkeddown;
1664 srv->onmarkedup = src->onmarkedup;
1665 if (src->trackit != NULL)
1666 srv->trackit = strdup(src->trackit);
1667 srv->consecutive_errors_limit = src->consecutive_errors_limit;
1668 srv->uweight = srv->iweight = src->iweight;
1669
1670 srv->check.send_proxy = src->check.send_proxy;
1671 /* health: up, but will fall down at first failure */
1672 srv->check.rise = srv->check.health = src->check.rise;
1673 srv->check.fall = src->check.fall;
1674
1675 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001676 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
1677 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
1678 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001679 srv->check.state |= CHK_ST_PAUSED;
1680 srv->check.health = 0;
1681 }
1682
1683 /* health: up but will fall down at first failure */
1684 srv->agent.rise = srv->agent.health = src->agent.rise;
1685 srv->agent.fall = src->agent.fall;
1686
1687 if (src->resolvers_id != NULL)
1688 srv->resolvers_id = strdup(src->resolvers_id);
1689 srv->dns_opts.family_prio = src->dns_opts.family_prio;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001690 srv->dns_opts.accept_duplicate_ip = src->dns_opts.accept_duplicate_ip;
Daniel Corbettf8716912019-11-17 09:48:56 -05001691 srv->dns_opts.ignore_weight = src->dns_opts.ignore_weight;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001692 if (srv->dns_opts.family_prio == AF_UNSPEC)
1693 srv->dns_opts.family_prio = AF_INET6;
1694 memcpy(srv->dns_opts.pref_net,
1695 src->dns_opts.pref_net,
1696 sizeof srv->dns_opts.pref_net);
1697 srv->dns_opts.pref_net_nb = src->dns_opts.pref_net_nb;
1698
1699 srv->init_addr_methods = src->init_addr_methods;
1700 srv->init_addr = src->init_addr;
1701#if defined(USE_OPENSSL)
1702 srv_ssl_settings_cpy(srv, src);
1703#endif
1704#ifdef TCP_USER_TIMEOUT
1705 srv->tcp_ut = src->tcp_ut;
1706#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001707 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001708 srv->pool_purge_delay = src->pool_purge_delay;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001709 srv->low_idle_conns = src->low_idle_conns;
Olivier Houchard006e3102018-12-10 18:30:32 +01001710 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01001711 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001712
Olivier Houchard8da5f982017-08-04 18:35:36 +02001713 if (srv_tmpl)
1714 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001715
1716 srv->check.via_socks4 = src->check.via_socks4;
1717 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001718}
1719
William Lallemand313bfd12018-10-26 14:47:32 +02001720struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001721{
1722 struct server *srv;
Willy Tarreau72653c52021-03-04 10:47:54 +01001723 int i;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001724
1725 srv = calloc(1, sizeof *srv);
1726 if (!srv)
1727 return NULL;
1728
1729 srv->obj_type = OBJ_TYPE_SERVER;
1730 srv->proxy = proxy;
Willy Tarreau72653c52021-03-04 10:47:54 +01001731 for (i = 0; i < MAX_THREADS; i++)
1732 MT_LIST_INIT(&srv->actconns[i]);
Patrick Hemmer0355dab2018-05-11 12:52:31 -04001733 srv->pendconns = EB_ROOT;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001734
Emeric Brun52a91d32017-08-31 14:41:55 +02001735 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001736 srv->last_change = now.tv_sec;
1737
Christopher Faulet38290462020-04-21 11:46:40 +02001738 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001739 srv->check.status = HCHK_STATUS_INI;
1740 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01001741 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02001742 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001743
Christopher Faulet38290462020-04-21 11:46:40 +02001744 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001745 srv->agent.status = HCHK_STATUS_INI;
1746 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01001747 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001748 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
1749
Willy Tarreau975b1552019-06-06 16:25:55 +02001750 /* please don't put default server settings here, they are set in
1751 * init_default_instance().
1752 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001753 return srv;
1754}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001755
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001756#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1757static int server_sni_expr_init(const char *file, int linenum, char **args, int cur_arg,
1758 struct server *srv, struct proxy *proxy)
1759{
1760 int ret;
1761 char *err = NULL;
1762
1763 if (!srv->sni_expr)
1764 return 0;
1765
1766 ret = server_parse_sni_expr(srv, proxy, &err);
1767 if (!ret)
1768 return 0;
1769
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001770 display_parser_err(file, linenum, args, cur_arg, ret, &err);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001771 free(err);
1772
1773 return ret;
1774}
1775#endif
1776
1777/*
1778 * Server initializations finalization.
1779 * Initialize health check, agent check and SNI expression if enabled.
1780 * Must not be called for a default server instance.
1781 */
1782static int server_finalize_init(const char *file, int linenum, char **args, int cur_arg,
1783 struct server *srv, struct proxy *px)
1784{
Christopher Fauletb3b53522020-04-27 11:17:10 +02001785#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001786 int ret;
Christopher Fauletb3b53522020-04-27 11:17:10 +02001787#endif
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001788
Christopher Faulet8892e5d2020-03-26 19:48:20 +01001789 if (srv->do_check && srv->trackit) {
1790 ha_alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1791 file, linenum);
1792 return ERR_ALERT | ERR_FATAL;
1793 }
1794
1795 if (srv->do_agent && !srv->agent.port) {
1796 ha_alert("parsing [%s:%d] : server %s does not have agent port. Agent check has been disabled.\n",
1797 file, linenum, srv->id);
1798 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001799 }
1800
1801#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1802 if ((ret = server_sni_expr_init(file, linenum, args, cur_arg, srv, px)) != 0)
1803 return ret;
1804#endif
1805
1806 if (srv->flags & SRV_F_BACKUP)
1807 px->srv_bck++;
1808 else
1809 px->srv_act++;
1810 srv_lb_commit_status(srv);
1811
1812 return 0;
1813}
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001814
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001815/*
1816 * Parse as much as possible such a range string argument: low[-high]
1817 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
1818 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
1819 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
1820 * Returns 0 if succeeded, -1 if not.
1821 */
1822static int srv_tmpl_parse_range(struct server *srv, const char *arg, int *nb_low, int *nb_high)
1823{
1824 char *nb_high_arg;
1825
1826 *nb_high = 0;
1827 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001828 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001829
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001830 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001831 *nb_high_arg++ = '\0';
1832 *nb_high = atoi(nb_high_arg);
1833 }
1834 else {
1835 *nb_high += *nb_low;
1836 *nb_low = 1;
1837 }
1838
1839 if (*nb_low < 0 || *nb_high < *nb_low)
1840 return -1;
1841
1842 return 0;
1843}
1844
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001845static inline void srv_set_id_from_prefix(struct server *srv, const char *prefix, int nb)
1846{
1847 chunk_printf(&trash, "%s%d", prefix, nb);
1848 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001849 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001850}
1851
1852/*
1853 * Initialize as much as possible servers from <srv> server template.
1854 * Note that a server template is a special server with
1855 * a few different parameters than a server which has
1856 * been parsed mostly the same way as a server.
Joseph Herlant44466822018-11-15 08:57:51 -08001857 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001858 * 'srv' template included.
1859 */
1860static int server_template_init(struct server *srv, struct proxy *px)
1861{
1862 int i;
1863 struct server *newsrv;
1864
1865 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 +02001866 newsrv = new_server(px);
1867 if (!newsrv)
1868 goto err;
1869
Christopher Faulet75bef002020-11-02 22:04:55 +01001870 newsrv->conf.file = strdup(srv->conf.file);
1871 newsrv->conf.line = srv->conf.line;
1872
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001873 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001874 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001875#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1876 if (newsrv->sni_expr) {
1877 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
1878 if (!newsrv->ssl_ctx.sni)
1879 goto err;
1880 }
1881#endif
1882 /* Set this new server ID. */
1883 srv_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
1884
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001885 /* Linked backwards first. This will be restablished after parsing. */
1886 newsrv->next = px->srv;
1887 px->srv = newsrv;
1888 }
1889 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1890
1891 return i - srv->tmpl_info.nb_low;
1892
1893 err:
1894 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1895 if (newsrv) {
1896#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1897 release_sample_expr(newsrv->ssl_ctx.sni);
1898#endif
1899 free_check(&newsrv->agent);
1900 free_check(&newsrv->check);
1901 }
1902 free(newsrv);
1903 return i - srv->tmpl_info.nb_low;
1904}
1905
Emeric Brund3db3842020-07-21 16:54:36 +02001906int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy,
1907 struct proxy *defproxy, int parse_addr, int in_peers_section, int initial_resolve)
Willy Tarreau272adea2014-03-31 10:39:59 +02001908{
1909 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001910 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001911 char *errmsg = NULL;
1912 int err_code = 0;
1913 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +02001914 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001915
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001916 if (!strcmp(args[0], "server") ||
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02001917 !strcmp(args[0], "peer") ||
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001918 !strcmp(args[0], "default-server") ||
1919 !strcmp(args[0], "server-template")) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001920 int cur_arg;
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001921 int defsrv = (*args[0] == 'd');
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02001922 int srv = !defsrv && (*args[0] == 'p' || !strcmp(args[0], "server"));
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001923 int srv_tmpl = !defsrv && !srv;
1924 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02001925
1926 if (!defsrv && curproxy == defproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001927 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001928 err_code |= ERR_ALERT | ERR_FATAL;
1929 goto out;
1930 }
Christopher Faulet75ffbf92021-01-13 13:14:13 +01001931 else if (failifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) {
1932 err_code |= ERR_ALERT | ERR_FATAL;
1933 goto out;
1934 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001935
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001936 /* There is no mandatory first arguments for default server. */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01001937 if (srv && parse_addr) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001938 if (!*args[2]) {
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +02001939 if (in_peers_section) {
1940 return 0;
1941 }
1942 else {
1943 /* 'server' line number of argument check. */
1944 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1945 file, linenum, args[0]);
1946 err_code |= ERR_ALERT | ERR_FATAL;
1947 goto out;
1948 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001949 }
1950
1951 err = invalid_char(args[1]);
1952 }
1953 else if (srv_tmpl) {
1954 if (!*args[3]) {
1955 /* 'server-template' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001956 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 +02001957 file, linenum, args[0]);
1958 err_code |= ERR_ALERT | ERR_FATAL;
1959 goto out;
1960 }
1961
1962 err = invalid_prefix_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001963 }
1964
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001965 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001966 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 +02001967 file, linenum, *err, args[0], srv ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001968 err_code |= ERR_ALERT | ERR_FATAL;
1969 goto out;
1970 }
1971
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001972 cur_arg = 2;
1973 if (srv_tmpl) {
1974 /* Parse server-template <nb | range> arg. */
1975 if (srv_tmpl_parse_range(newsrv, args[cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001976 ha_alert("parsing [%s:%d] : Wrong %s number or range arg '%s'.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001977 file, linenum, args[0], args[cur_arg]);
1978 err_code |= ERR_ALERT | ERR_FATAL;
1979 goto out;
1980 }
1981 cur_arg++;
1982 }
1983
Willy Tarreau272adea2014-03-31 10:39:59 +02001984 if (!defsrv) {
1985 struct sockaddr_storage *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01001986 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02001987
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001988 newsrv = new_server(curproxy);
1989 if (!newsrv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001990 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Willy Tarreau272adea2014-03-31 10:39:59 +02001991 err_code |= ERR_ALERT | ERR_ABORT;
1992 goto out;
1993 }
1994
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001995 if (srv_tmpl) {
1996 newsrv->tmpl_info.nb_low = tmpl_range_low;
1997 newsrv->tmpl_info.nb_high = tmpl_range_high;
1998 }
1999
Willy Tarreau272adea2014-03-31 10:39:59 +02002000 /* the servers are linked backwards first */
2001 newsrv->next = curproxy->srv;
2002 curproxy->srv = newsrv;
Willy Tarreau272adea2014-03-31 10:39:59 +02002003 newsrv->conf.file = strdup(file);
2004 newsrv->conf.line = linenum;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002005 /* Note: for a server template, its id is its prefix.
2006 * This is a temporary id which will be used for server allocations to come
2007 * after parsing.
2008 */
2009 if (srv)
2010 newsrv->id = strdup(args[1]);
2011 else
2012 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002013
2014 /* several ways to check the port component :
2015 * - IP => port=+0, relative (IPv4 only)
2016 * - IP: => port=+0, relative
2017 * - IP:N => port=N, absolute
2018 * - IP:+N => port=+N, relative
2019 * - IP:-N => port=-N, relative
2020 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002021 if (!parse_addr)
2022 goto skip_addr;
2023
Willy Tarreau65ec4e32020-09-16 19:17:08 +02002024 sk = str2sa_range(args[cur_arg], &port, &port1, &port2, NULL, NULL,
2025 &errmsg, NULL, &fqdn,
2026 (initial_resolve ? PA_O_RESOLVE : 0) | PA_O_PORT_OK | PA_O_PORT_OFS | PA_O_STREAM | PA_O_XPRT | PA_O_CONNECT);
Willy Tarreau272adea2014-03-31 10:39:59 +02002027 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002028 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau272adea2014-03-31 10:39:59 +02002029 err_code |= ERR_ALERT | ERR_FATAL;
2030 goto out;
2031 }
2032
Willy Tarreau272adea2014-03-31 10:39:59 +02002033 if (!port1 || !port2) {
2034 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +02002035 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +02002036 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002037
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002038 /* save hostname and create associated name resolution */
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002039 if (fqdn) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002040 if (fqdn[0] == '_') { /* SRV record */
Olivier Houchard8da5f982017-08-04 18:35:36 +02002041 /* Check if a SRV request already exists, and if not, create it */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002042 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2043 newsrv->srvrq = new_dns_srvrq(newsrv, fqdn);
2044 if (newsrv->srvrq == NULL) {
Olivier Houchard8da5f982017-08-04 18:35:36 +02002045 err_code |= ERR_ALERT | ERR_FATAL;
2046 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002047 }
2048 }
2049 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002050 ha_alert("parsing [%s:%d] : Can't create DNS resolution for server '%s'\n",
Christopher Faulet67957bd2017-09-27 11:00:59 +02002051 file, linenum, newsrv->id);
2052 err_code |= ERR_ALERT | ERR_FATAL;
2053 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002054 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002055 }
2056
Willy Tarreau272adea2014-03-31 10:39:59 +02002057 newsrv->addr = *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002058 newsrv->svc_port = port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002059
Olivier Houchard8da5f982017-08-04 18:35:36 +02002060 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002061 ha_alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002062 file, linenum, newsrv->addr.ss_family, args[cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002063 err_code |= ERR_ALERT | ERR_FATAL;
2064 goto out;
2065 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002066
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002067 cur_arg++;
2068 skip_addr:
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002069 /* Copy default server settings to new server settings. */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002070 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002071 HA_SPIN_INIT(&newsrv->lock);
Willy Tarreau272adea2014-03-31 10:39:59 +02002072 } else {
2073 newsrv = &curproxy->defsrv;
2074 cur_arg = 1;
Thierry Fournierada34842016-02-17 21:25:09 +01002075 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002076 newsrv->dns_opts.accept_duplicate_ip = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002077 }
2078
2079 while (*args[cur_arg]) {
Christopher Fauletcbba66c2020-04-06 14:26:30 +02002080 if (!strcmp(args[cur_arg], "init-addr")) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002081 char *p, *end;
2082 int done;
Willy Tarreau4310d362016-11-02 15:05:56 +01002083 struct sockaddr_storage sa;
Baptiste Assmann25938272016-09-21 20:26:16 +02002084
2085 newsrv->init_addr_methods = 0;
2086 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
2087
2088 for (p = args[cur_arg + 1]; *p; p = end) {
2089 /* cut on next comma */
2090 for (end = p; *end && *end != ','; end++);
2091 if (*end)
2092 *(end++) = 0;
2093
Willy Tarreau4310d362016-11-02 15:05:56 +01002094 memset(&sa, 0, sizeof(sa));
Baptiste Assmann25938272016-09-21 20:26:16 +02002095 if (!strcmp(p, "libc")) {
2096 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
2097 }
2098 else if (!strcmp(p, "last")) {
2099 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
2100 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01002101 else if (!strcmp(p, "none")) {
2102 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
2103 }
Willy Tarreau4310d362016-11-02 15:05:56 +01002104 else if (str2ip2(p, &sa, 0)) {
2105 if (is_addr(&newsrv->init_addr)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002106 ha_alert("parsing [%s:%d]: '%s' : initial address already specified, cannot add '%s'.\n",
Willy Tarreau4310d362016-11-02 15:05:56 +01002107 file, linenum, args[cur_arg], p);
2108 err_code |= ERR_ALERT | ERR_FATAL;
2109 goto out;
2110 }
2111 newsrv->init_addr = sa;
2112 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
2113 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002114 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002115 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 +02002116 file, linenum, args[cur_arg], p);
2117 err_code |= ERR_ALERT | ERR_FATAL;
2118 goto out;
2119 }
2120 if (!done) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002121 ha_alert("parsing [%s:%d]: '%s' : too many init-addr methods when trying to add '%s'\n",
Baptiste Assmann25938272016-09-21 20:26:16 +02002122 file, linenum, args[cur_arg], p);
2123 err_code |= ERR_ALERT | ERR_FATAL;
2124 goto out;
2125 }
2126 }
2127 cur_arg += 2;
2128 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002129 else if (!strcmp(args[cur_arg], "resolvers")) {
Frédéric Lécailledaa2fe62017-04-20 12:17:50 +02002130 free(newsrv->resolvers_id);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002131 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
2132 cur_arg += 2;
2133 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002134 else if (!strcmp(args[cur_arg], "resolve-opts")) {
2135 char *p, *end;
2136
2137 for (p = args[cur_arg + 1]; *p; p = end) {
2138 /* cut on next comma */
2139 for (end = p; *end && *end != ','; end++);
2140 if (*end)
2141 *(end++) = 0;
2142
2143 if (!strcmp(p, "allow-dup-ip")) {
2144 newsrv->dns_opts.accept_duplicate_ip = 1;
2145 }
Daniel Corbettf8716912019-11-17 09:48:56 -05002146 else if (!strcmp(p, "ignore-weight")) {
2147 newsrv->dns_opts.ignore_weight = 1;
2148 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002149 else if (!strcmp(p, "prevent-dup-ip")) {
2150 newsrv->dns_opts.accept_duplicate_ip = 0;
2151 }
2152 else {
Daniel Corbettf8716912019-11-17 09:48:56 -05002153 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 +02002154 file, linenum, args[cur_arg], p);
2155 err_code |= ERR_ALERT | ERR_FATAL;
2156 goto out;
2157 }
2158 }
2159
2160 cur_arg += 2;
2161 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002162 else if (!strcmp(args[cur_arg], "resolve-prefer")) {
2163 if (!strcmp(args[cur_arg + 1], "ipv4"))
Thierry Fournierada34842016-02-17 21:25:09 +01002164 newsrv->dns_opts.family_prio = AF_INET;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002165 else if (!strcmp(args[cur_arg + 1], "ipv6"))
Thierry Fournierada34842016-02-17 21:25:09 +01002166 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002167 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002168 ha_alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002169 file, linenum, args[cur_arg]);
2170 err_code |= ERR_ALERT | ERR_FATAL;
2171 goto out;
2172 }
2173 cur_arg += 2;
2174 }
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002175 else if (!strcmp(args[cur_arg], "resolve-net")) {
2176 char *p, *e;
2177 unsigned char mask;
2178 struct dns_options *opt;
2179
2180 if (!args[cur_arg + 1] || args[cur_arg + 1][0] == '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002181 ha_alert("parsing [%s:%d]: '%s' expects a list of networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002182 file, linenum, args[cur_arg]);
2183 err_code |= ERR_ALERT | ERR_FATAL;
2184 goto out;
2185 }
2186
2187 opt = &newsrv->dns_opts;
2188
2189 /* Split arguments by comma, and convert it from ipv4 or ipv6
2190 * string network in in_addr or in6_addr.
2191 */
2192 p = args[cur_arg + 1];
2193 e = p;
2194 while (*p != '\0') {
Joseph Herlant44466822018-11-15 08:57:51 -08002195 /* If no room available, return error. */
David Carlierd10025c2016-04-08 10:26:44 +01002196 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002197 ha_alert("parsing [%s:%d]: '%s' exceed %d networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002198 file, linenum, args[cur_arg], SRV_MAX_PREF_NET);
2199 err_code |= ERR_ALERT | ERR_FATAL;
2200 goto out;
2201 }
2202 /* look for end or comma. */
2203 while (*e != ',' && *e != '\0')
2204 e++;
2205 if (*e == ',') {
2206 *e = '\0';
2207 e++;
2208 }
2209 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
2210 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
2211 /* Try to convert input string from ipv4 or ipv6 network. */
2212 opt->pref_net[opt->pref_net_nb].family = AF_INET;
2213 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
2214 &mask)) {
2215 /* Try to convert input string from ipv6 network. */
2216 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
2217 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
2218 } else {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05002219 /* All network conversions fail, return error. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002220 ha_alert("parsing [%s:%d]: '%s': invalid network '%s'.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002221 file, linenum, args[cur_arg], p);
2222 err_code |= ERR_ALERT | ERR_FATAL;
2223 goto out;
2224 }
2225 opt->pref_net_nb++;
2226 p = e;
2227 }
2228
2229 cur_arg += 2;
2230 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002231 else if (!strcmp(args[cur_arg], "weight")) {
2232 int w;
2233 w = atol(args[cur_arg + 1]);
2234 if (w < 0 || w > SRV_UWGHT_MAX) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002235 ha_alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002236 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
2237 err_code |= ERR_ALERT | ERR_FATAL;
2238 goto out;
2239 }
2240 newsrv->uweight = newsrv->iweight = w;
2241 cur_arg += 2;
2242 }
Emeric Brun97556472020-05-30 01:42:45 +02002243 else if (!strcmp(args[cur_arg], "log-proto")) {
2244 if (!strcmp(args[cur_arg + 1], "legacy"))
2245 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
2246 else if (!strcmp(args[cur_arg + 1], "octet-count"))
2247 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
2248 else {
2249 ha_alert("parsing [%s:%d]: '%s' expects one of 'legacy' or "
2250 "'octet-count' but got '%s'\n",
2251 file, linenum, args[cur_arg], args[cur_arg + 1]);
2252 err_code |= ERR_ALERT | ERR_FATAL;
2253 goto out;
2254 }
2255 cur_arg += 2;
2256 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002257 else if (!strcmp(args[cur_arg], "minconn")) {
2258 newsrv->minconn = atol(args[cur_arg + 1]);
2259 cur_arg += 2;
2260 }
2261 else if (!strcmp(args[cur_arg], "maxconn")) {
2262 newsrv->maxconn = atol(args[cur_arg + 1]);
2263 cur_arg += 2;
2264 }
2265 else if (!strcmp(args[cur_arg], "maxqueue")) {
2266 newsrv->maxqueue = atol(args[cur_arg + 1]);
2267 cur_arg += 2;
2268 }
2269 else if (!strcmp(args[cur_arg], "slowstart")) {
2270 /* slowstart is stored in seconds */
2271 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02002272
2273 if (err == PARSE_TIME_OVER) {
2274 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).\n",
2275 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2276 err_code |= ERR_ALERT | ERR_FATAL;
2277 goto out;
2278 }
2279 else if (err == PARSE_TIME_UNDER) {
2280 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.\n",
2281 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2282 err_code |= ERR_ALERT | ERR_FATAL;
2283 goto out;
2284 }
2285 else if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002286 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002287 file, linenum, *err, newsrv->id);
2288 err_code |= ERR_ALERT | ERR_FATAL;
2289 goto out;
2290 }
2291 newsrv->slowstart = (val + 999) / 1000;
2292 cur_arg += 2;
2293 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002294 else if (!strcmp(args[cur_arg], "on-error")) {
2295 if (!strcmp(args[cur_arg + 1], "fastinter"))
2296 newsrv->onerror = HANA_ONERR_FASTINTER;
2297 else if (!strcmp(args[cur_arg + 1], "fail-check"))
2298 newsrv->onerror = HANA_ONERR_FAILCHK;
2299 else if (!strcmp(args[cur_arg + 1], "sudden-death"))
2300 newsrv->onerror = HANA_ONERR_SUDDTH;
2301 else if (!strcmp(args[cur_arg + 1], "mark-down"))
2302 newsrv->onerror = HANA_ONERR_MARKDWN;
2303 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002304 ha_alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
Willy Tarreau272adea2014-03-31 10:39:59 +02002305 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
2306 file, linenum, args[cur_arg], args[cur_arg + 1]);
2307 err_code |= ERR_ALERT | ERR_FATAL;
2308 goto out;
2309 }
2310
2311 cur_arg += 2;
2312 }
2313 else if (!strcmp(args[cur_arg], "on-marked-down")) {
2314 if (!strcmp(args[cur_arg + 1], "shutdown-sessions"))
2315 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
2316 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002317 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002318 file, linenum, args[cur_arg], args[cur_arg + 1]);
2319 err_code |= ERR_ALERT | ERR_FATAL;
2320 goto out;
2321 }
2322
2323 cur_arg += 2;
2324 }
2325 else if (!strcmp(args[cur_arg], "on-marked-up")) {
2326 if (!strcmp(args[cur_arg + 1], "shutdown-backup-sessions"))
2327 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
2328 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002329 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002330 file, linenum, args[cur_arg], args[cur_arg + 1]);
2331 err_code |= ERR_ALERT | ERR_FATAL;
2332 goto out;
2333 }
2334
2335 cur_arg += 2;
2336 }
2337 else if (!strcmp(args[cur_arg], "error-limit")) {
2338 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002339 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002340 file, linenum, args[cur_arg]);
2341 err_code |= ERR_ALERT | ERR_FATAL;
2342 goto out;
2343 }
2344
2345 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
2346
2347 if (newsrv->consecutive_errors_limit <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002348 ha_alert("parsing [%s:%d]: %s has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002349 file, linenum, args[cur_arg]);
2350 err_code |= ERR_ALERT | ERR_FATAL;
2351 goto out;
2352 }
2353 cur_arg += 2;
2354 }
Frédéric Lécaille8d083ed2017-04-14 15:19:56 +02002355 else if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside: needs "source" first */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002356 ha_alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002357 file, linenum, "usesrc", "source");
2358 err_code |= ERR_ALERT | ERR_FATAL;
2359 goto out;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002360 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002361 else {
2362 static int srv_dumped;
2363 struct srv_kw *kw;
2364 char *err;
2365
2366 kw = srv_find_kw(args[cur_arg]);
2367 if (kw) {
2368 char *err = NULL;
2369 int code;
2370
2371 if (!kw->parse) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002372 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 +02002373 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002374 if (kw->skip != -1)
2375 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002376 err_code |= ERR_ALERT | ERR_FATAL;
2377 goto out;
2378 }
2379
2380 if (defsrv && !kw->default_ok) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002381 ha_alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002382 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002383 if (kw->skip != -1)
2384 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002385 err_code |= ERR_ALERT;
2386 continue;
2387 }
2388
2389 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
2390 err_code |= code;
2391
2392 if (code) {
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002393 display_parser_err(file, linenum, args, cur_arg, code, &err);
Willy Tarreau272adea2014-03-31 10:39:59 +02002394 if (code & ERR_FATAL) {
2395 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002396 if (kw->skip != -1)
2397 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002398 goto out;
2399 }
2400 }
2401 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002402 if (kw->skip != -1)
2403 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002404 continue;
2405 }
2406
2407 err = NULL;
2408 if (!srv_dumped) {
2409 srv_dump_kws(&err);
2410 indent_msg(&err, 4);
2411 srv_dumped = 1;
2412 }
2413
Christopher Faulet767a84b2017-11-24 16:50:31 +01002414 ha_alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002415 file, linenum, args[0], args[1], args[cur_arg],
2416 err ? " Registered keywords :" : "", err ? err : "");
2417 free(err);
2418
2419 err_code |= ERR_ALERT | ERR_FATAL;
2420 goto out;
2421 }
2422 }
2423
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002424 if (!defsrv)
2425 err_code |= server_finalize_init(file, linenum, args, cur_arg, newsrv, curproxy);
2426 if (err_code & ERR_FATAL)
2427 goto out;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002428 if (srv_tmpl)
2429 server_template_init(newsrv, curproxy);
Willy Tarreau272adea2014-03-31 10:39:59 +02002430 }
Willy Tarreau07101d52015-09-08 16:16:35 +02002431 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002432 return 0;
2433
2434 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02002435 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002436 free(errmsg);
2437 return err_code;
2438}
2439
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002440/* Returns a pointer to the first server matching either id <id>.
2441 * NULL is returned if no match is found.
2442 * the lookup is performed in the backend <bk>
2443 */
2444struct server *server_find_by_id(struct proxy *bk, int id)
2445{
2446 struct eb32_node *eb32;
2447 struct server *curserver;
2448
2449 if (!bk || (id ==0))
2450 return NULL;
2451
2452 /* <bk> has no backend capabilities, so it can't have a server */
2453 if (!(bk->cap & PR_CAP_BE))
2454 return NULL;
2455
2456 curserver = NULL;
2457
2458 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2459 if (eb32)
2460 curserver = container_of(eb32, struct server, conf.id);
2461
2462 return curserver;
2463}
2464
2465/* Returns a pointer to the first server matching either name <name>, or id
2466 * if <name> starts with a '#'. NULL is returned if no match is found.
2467 * the lookup is performed in the backend <bk>
2468 */
2469struct server *server_find_by_name(struct proxy *bk, const char *name)
2470{
2471 struct server *curserver;
2472
2473 if (!bk || !name)
2474 return NULL;
2475
2476 /* <bk> has no backend capabilities, so it can't have a server */
2477 if (!(bk->cap & PR_CAP_BE))
2478 return NULL;
2479
2480 curserver = NULL;
2481 if (*name == '#') {
2482 curserver = server_find_by_id(bk, atoi(name + 1));
2483 if (curserver)
2484 return curserver;
2485 }
2486 else {
2487 curserver = bk->srv;
2488
2489 while (curserver && (strcmp(curserver->id, name) != 0))
2490 curserver = curserver->next;
2491
2492 if (curserver)
2493 return curserver;
2494 }
2495
2496 return NULL;
2497}
2498
2499struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2500{
2501 struct server *byname;
2502 struct server *byid;
2503
2504 if (!name && !id)
2505 return NULL;
2506
2507 if (diff)
2508 *diff = 0;
2509
2510 byname = byid = NULL;
2511
2512 if (name) {
2513 byname = server_find_by_name(bk, name);
2514 if (byname && (!id || byname->puid == id))
2515 return byname;
2516 }
2517
2518 /* remaining possibilities :
2519 * - name not set
2520 * - name set but not found
2521 * - name found but ID doesn't match
2522 */
2523 if (id) {
2524 byid = server_find_by_id(bk, id);
2525 if (byid) {
2526 if (byname) {
2527 /* use id only if forced by configuration */
2528 if (byid->flags & SRV_F_FORCED_ID) {
2529 if (diff)
2530 *diff |= 2;
2531 return byid;
2532 }
2533 else {
2534 if (diff)
2535 *diff |= 1;
2536 return byname;
2537 }
2538 }
2539
2540 /* remaining possibilities:
2541 * - name not set
2542 * - name set but not found
2543 */
2544 if (name && diff)
2545 *diff |= 2;
2546 return byid;
2547 }
2548
2549 /* id bot found */
2550 if (byname) {
2551 if (diff)
2552 *diff |= 1;
2553 return byname;
2554 }
2555 }
2556
2557 return NULL;
2558}
2559
Willy Tarreau46b7f532018-08-21 11:54:26 +02002560/* Update a server state using the parameters available in the params list.
2561 *
2562 * Grabs the server lock during operation.
2563 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002564static void srv_update_state(struct server *srv, int version, char **params)
2565{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002566 char *p;
Willy Tarreau83061a82018-07-13 11:56:34 +02002567 struct buffer *msg;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002568
2569 /* fields since version 1
2570 * and common to all other upcoming versions
2571 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002572 enum srv_state srv_op_state;
2573 enum srv_admin srv_admin_state;
2574 unsigned srv_uweight, srv_iweight;
2575 unsigned long srv_last_time_change;
2576 short srv_check_status;
2577 enum chk_result srv_check_result;
2578 int srv_check_health;
2579 int srv_check_state, srv_agent_state;
2580 int bk_f_forced_id;
2581 int srv_f_forced_id;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002582 int fqdn_set_by_cli;
2583 const char *fqdn;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002584 const char *port_str;
2585 unsigned int port;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002586 char *srvrecord;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002587
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002588 fqdn = NULL;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002589 port = 0;
Willy Tarreau31138fa2015-09-29 18:38:47 +02002590 msg = get_trash_chunk();
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002591 switch (version) {
2592 case 1:
2593 /*
2594 * now we can proceed with server's state update:
2595 * srv_addr: params[0]
2596 * srv_op_state: params[1]
2597 * srv_admin_state: params[2]
2598 * srv_uweight: params[3]
2599 * srv_iweight: params[4]
2600 * srv_last_time_change: params[5]
2601 * srv_check_status: params[6]
2602 * srv_check_result: params[7]
2603 * srv_check_health: params[8]
2604 * srv_check_state: params[9]
2605 * srv_agent_state: params[10]
2606 * bk_f_forced_id: params[11]
2607 * srv_f_forced_id: params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002608 * srv_fqdn: params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02002609 * srv_port: params[14]
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002610 * srvrecord: params[15]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002611 */
2612
2613 /* validating srv_op_state */
2614 p = NULL;
2615 errno = 0;
2616 srv_op_state = strtol(params[1], &p, 10);
2617 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
2618 (srv_op_state != SRV_ST_STOPPED &&
2619 srv_op_state != SRV_ST_STARTING &&
2620 srv_op_state != SRV_ST_RUNNING &&
2621 srv_op_state != SRV_ST_STOPPING)) {
2622 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
2623 }
2624
2625 /* validating srv_admin_state */
2626 p = NULL;
2627 errno = 0;
2628 srv_admin_state = strtol(params[2], &p, 10);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002629 fqdn_set_by_cli = !!(srv_admin_state & SRV_ADMF_HMAINT);
Willy Tarreau757478e2016-11-03 19:22:19 +01002630
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002631 /* inherited statuses will be recomputed later.
2632 * Also disable SRV_ADMF_HMAINT flag (set from stats socket fqdn).
2633 */
Christopher Fauletc6111032021-02-12 17:36:08 +01002634 srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_HMAINT & ~SRV_ADMF_RMAINT;
Willy Tarreau757478e2016-11-03 19:22:19 +01002635
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002636 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
2637 (srv_admin_state != 0 &&
2638 srv_admin_state != SRV_ADMF_FMAINT &&
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002639 srv_admin_state != SRV_ADMF_CMAINT &&
2640 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
Willy Tarreaue1bde142016-11-03 18:33:25 +01002641 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FDRAIN) &&
Willy Tarreau757478e2016-11-03 19:22:19 +01002642 srv_admin_state != SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002643 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
2644 }
2645
2646 /* validating srv_uweight */
2647 p = NULL;
2648 errno = 0;
2649 srv_uweight = strtol(params[3], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002650 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002651 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
2652
2653 /* validating srv_iweight */
2654 p = NULL;
2655 errno = 0;
2656 srv_iweight = strtol(params[4], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002657 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002658 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
2659
2660 /* validating srv_last_time_change */
2661 p = NULL;
2662 errno = 0;
2663 srv_last_time_change = strtol(params[5], &p, 10);
2664 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2665 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
2666
2667 /* validating srv_check_status */
2668 p = NULL;
2669 errno = 0;
2670 srv_check_status = strtol(params[6], &p, 10);
2671 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2672 (srv_check_status >= HCHK_STATUS_SIZE))
2673 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
2674
2675 /* validating srv_check_result */
2676 p = NULL;
2677 errno = 0;
2678 srv_check_result = strtol(params[7], &p, 10);
2679 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2680 (srv_check_result != CHK_RES_UNKNOWN &&
2681 srv_check_result != CHK_RES_NEUTRAL &&
2682 srv_check_result != CHK_RES_FAILED &&
2683 srv_check_result != CHK_RES_PASSED &&
2684 srv_check_result != CHK_RES_CONDPASS)) {
2685 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2686 }
2687
2688 /* validating srv_check_health */
2689 p = NULL;
2690 errno = 0;
2691 srv_check_health = strtol(params[8], &p, 10);
2692 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2693 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
2694
2695 /* validating srv_check_state */
2696 p = NULL;
2697 errno = 0;
2698 srv_check_state = strtol(params[9], &p, 10);
2699 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2700 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2701 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
2702
2703 /* validating srv_agent_state */
2704 p = NULL;
2705 errno = 0;
2706 srv_agent_state = strtol(params[10], &p, 10);
2707 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2708 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2709 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
2710
2711 /* validating bk_f_forced_id */
2712 p = NULL;
2713 errno = 0;
2714 bk_f_forced_id = strtol(params[11], &p, 10);
2715 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
2716 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
2717
2718 /* validating srv_f_forced_id */
2719 p = NULL;
2720 errno = 0;
2721 srv_f_forced_id = strtol(params[12], &p, 10);
2722 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
2723 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
2724
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002725 /* validating srv_fqdn */
2726 fqdn = params[13];
2727 if (fqdn && *fqdn == '-')
2728 fqdn = NULL;
2729 if (fqdn && (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn))) {
2730 chunk_appendf(msg, ", invalid srv_fqdn value '%s'", params[13]);
2731 fqdn = NULL;
2732 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002733
Frédéric Lécaille31694712017-08-01 08:47:19 +02002734 port_str = params[14];
2735 if (port_str) {
2736 port = strl2uic(port_str, strlen(port_str));
2737 if (port > USHRT_MAX) {
2738 chunk_appendf(msg, ", invalid srv_port value '%s'", port_str);
2739 port_str = NULL;
2740 }
2741 }
2742
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002743 /* SRV record
2744 * NOTE: in HAProxy, SRV records must start with an underscore '_'
2745 */
2746 srvrecord = params[15];
2747 if (srvrecord && *srvrecord != '_')
2748 srvrecord = NULL;
2749
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002750 /* don't apply anything if one error has been detected */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002751 if (msg->data)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002752 goto out;
2753
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002754 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002755 /* recover operational state and apply it to this server
2756 * and all servers tracking this one */
Jérôme Magninf57afa42019-01-20 11:27:40 +01002757 srv->check.health = srv_check_health;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002758 switch (srv_op_state) {
2759 case SRV_ST_STOPPED:
2760 srv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02002761 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002762 break;
2763 case SRV_ST_STARTING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002764 /* If rise == 1 there is no STARTING state, let's switch to
2765 * RUNNING
2766 */
2767 if (srv->check.rise == 1) {
2768 srv->check.health = srv->check.rise + srv->check.fall - 1;
2769 srv_set_running(srv, "", NULL);
2770 break;
2771 }
2772 if (srv->check.health < 1 || srv->check.health >= srv->check.rise)
2773 srv->check.health = srv->check.rise - 1;
Emeric Brun52a91d32017-08-31 14:41:55 +02002774 srv->next_state = srv_op_state;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002775 break;
2776 case SRV_ST_STOPPING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002777 /* If fall == 1 there is no STOPPING state, let's switch to
2778 * STOPPED
2779 */
2780 if (srv->check.fall == 1) {
2781 srv->check.health = 0;
2782 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
2783 break;
2784 }
2785 if (srv->check.health < srv->check.rise ||
2786 srv->check.health > srv->check.rise + srv->check.fall - 2)
2787 srv->check.health = srv->check.rise;
Emeric Brun5a133512017-10-19 14:42:30 +02002788 srv_set_stopping(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002789 break;
2790 case SRV_ST_RUNNING:
2791 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02002792 srv_set_running(srv, "", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002793 break;
2794 }
2795
2796 /* When applying server state, the following rules apply:
2797 * - in case of a configuration change, we apply the setting from the new
2798 * configuration, regardless of old running state
2799 * - if no configuration change, we apply old running state only if old running
2800 * state is different from new configuration state
2801 */
2802 /* configuration has changed */
Emeric Brun52a91d32017-08-31 14:41:55 +02002803 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->next_admin & SRV_ADMF_CMAINT)) {
2804 if (srv->next_admin & SRV_ADMF_CMAINT)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002805 srv_adm_set_maint(srv);
2806 else
2807 srv_adm_set_ready(srv);
2808 }
2809 /* configuration is the same, let's compate old running state and new conf state */
2810 else {
Emeric Brun52a91d32017-08-31 14:41:55 +02002811 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002812 srv_adm_set_maint(srv);
Emeric Brun52a91d32017-08-31 14:41:55 +02002813 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002814 srv_adm_set_ready(srv);
2815 }
2816 /* apply drain mode if server is currently enabled */
Emeric Brun52a91d32017-08-31 14:41:55 +02002817 if (!(srv->next_admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002818 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
Willy Tarreau22cace22016-11-03 18:19:49 +01002819 * (srv->iweight is the weight set up in configuration).
2820 * There are two possible reasons for FDRAIN to have been present :
2821 * - previous config weight was zero
2822 * - "set server b/s drain" was sent to the CLI
2823 *
2824 * In the first case, we simply want to drop this drain state
2825 * if the new weight is not zero anymore, meaning the administrator
2826 * has intentionally turned the weight back to a positive value to
2827 * enable the server again after an operation. In the second case,
2828 * the drain state was forced on the CLI regardless of the config's
2829 * weight so we don't want a change to the config weight to lose this
2830 * status. What this means is :
2831 * - if previous weight was 0 and new one is >0, drop the DRAIN state.
2832 * - if the previous weight was >0, keep it.
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002833 */
Willy Tarreau22cace22016-11-03 18:19:49 +01002834 if (srv_iweight > 0 || srv->iweight == 0)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002835 srv_adm_set_drain(srv);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002836 }
2837
2838 srv->last_change = date.tv_sec - srv_last_time_change;
2839 srv->check.status = srv_check_status;
2840 srv->check.result = srv_check_result;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002841
2842 /* Only case we want to apply is removing ENABLED flag which could have been
2843 * done by the "disable health" command over the stats socket
2844 */
2845 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2846 (srv_check_state & CHK_ST_CONFIGURED) &&
2847 !(srv_check_state & CHK_ST_ENABLED))
2848 srv->check.state &= ~CHK_ST_ENABLED;
2849
2850 /* Only case we want to apply is removing ENABLED flag which could have been
2851 * done by the "disable agent" command over the stats socket
2852 */
2853 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
2854 (srv_agent_state & CHK_ST_CONFIGURED) &&
2855 !(srv_agent_state & CHK_ST_ENABLED))
2856 srv->agent.state &= ~CHK_ST_ENABLED;
2857
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002858 /* We want to apply the previous 'running' weight (srv_uweight) only if there
2859 * was no change in the configuration: both previous and new iweight are equals
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002860 *
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002861 * It means that a configuration file change has precedence over a unix socket change
2862 * for server's weight
2863 *
2864 * by default, HAProxy applies the following weight when parsing the configuration
2865 * srv->uweight = srv->iweight
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002866 */
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002867 if (srv_iweight == srv->iweight) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002868 srv->uweight = srv_uweight;
2869 }
Willy Tarreau3ff577e2018-08-02 11:48:52 +02002870 server_recalc_eweight(srv, 1);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002871
Willy Tarreaue5a60682016-11-09 14:54:53 +01002872 /* load server IP address */
Daniel Corbett9215ffa2018-05-19 19:43:24 -04002873 if (strcmp(params[0], "-"))
2874 srv->lastaddr = strdup(params[0]);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002875
2876 if (fqdn && srv->hostname) {
2877 if (!strcmp(srv->hostname, fqdn)) {
2878 /* Here we reset the 'set from stats socket FQDN' flag
2879 * to support such transitions:
2880 * Let's say initial FQDN value is foo1 (in configuration file).
2881 * - FQDN changed from stats socket, from foo1 to foo2 value,
2882 * - FQDN changed again from file configuration (with the same previous value
2883 set from stats socket, from foo1 to foo2 value),
2884 * - reload for any other reason than a FQDN modification,
2885 * the configuration file FQDN matches the fqdn server state file value.
2886 * So we must reset the 'set from stats socket FQDN' flag to be consistent with
Joseph Herlant44466822018-11-15 08:57:51 -08002887 * any further FQDN modification.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002888 */
Emeric Brun52a91d32017-08-31 14:41:55 +02002889 srv->next_admin &= ~SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002890 }
2891 else {
2892 /* If the FDQN has been changed from stats socket,
2893 * apply fqdn state file value (which is the value set
2894 * from stats socket).
Baptiste Assmann13a92322019-06-07 09:40:55 +02002895 * Also ensure the runtime resolver will process this resolution.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002896 */
2897 if (fqdn_set_by_cli) {
Olivier Houchardd16bfe62017-10-31 15:21:19 +01002898 srv_set_fqdn(srv, fqdn, 0);
Baptiste Assmann13a92322019-06-07 09:40:55 +02002899 srv->flags &= ~SRV_F_NO_RESOLUTION;
Emeric Brun52a91d32017-08-31 14:41:55 +02002900 srv->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002901 }
2902 }
2903 }
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002904 /* If all the conditions below are validated, this means
2905 * we're evaluating a server managed by SRV resolution
2906 */
2907 else if (fqdn && !srv->hostname && srvrecord) {
2908 int res;
2909
2910 /* we can't apply previous state if SRV record has changed */
2911 if (srv->srvrq && strcmp(srv->srvrq->name, srvrecord) != 0) {
2912 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);
2913 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2914 goto out;
2915 }
2916
2917 /* create or find a SRV resolution for this srv record */
2918 if (srv->srvrq == NULL && (srv->srvrq = find_srvrq_by_name(srvrecord, srv->proxy)) == NULL)
2919 srv->srvrq = new_dns_srvrq(srv, srvrecord);
2920 if (srv->srvrq == NULL) {
2921 chunk_appendf(msg, ", can't create or find SRV resolution '%s' for server '%s'", srvrecord, srv->id);
2922 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2923 goto out;
2924 }
2925
2926 /* prepare DNS resolution for this server */
2927 res = srv_prepare_for_resolution(srv, fqdn);
2928 if (res == -1) {
2929 chunk_appendf(msg, ", can't allocate memory for DNS resolution for server '%s'", srv->id);
2930 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2931 goto out;
2932 }
2933
2934 /* configure check.port accordingly */
2935 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2936 !(srv->flags & SRV_F_CHECKPORT))
2937 srv->check.port = port;
2938
2939 /* Unset SRV_F_MAPPORTS for SRV records.
2940 * SRV_F_MAPPORTS is unfortunately set by parse_server()
2941 * because no ports are provided in the configuration file.
2942 * This is because HAProxy will use the port found into the SRV record.
2943 */
2944 srv->flags &= ~SRV_F_MAPPORTS;
2945 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002946
Frédéric Lécaille31694712017-08-01 08:47:19 +02002947 if (port_str)
2948 srv->svc_port = port;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002949 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Frédéric Lécaille31694712017-08-01 08:47:19 +02002950
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002951 break;
2952 default:
2953 chunk_appendf(msg, ", version '%d' not supported", version);
2954 }
2955
2956 out:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002957 if (msg->data) {
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002958 chunk_appendf(msg, "\n");
Christopher Faulet767a84b2017-11-24 16:50:31 +01002959 ha_warning("server-state application failed for server '%s/%s'%s",
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002960 srv->proxy->id, srv->id, msg->area);
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002961 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002962}
2963
Baptiste Assmannda29fe22019-06-13 13:24:29 +02002964
2965/*
2966 * read next line from file <f> and return the server state version if one found.
2967 * If no version is found, then 0 is returned
2968 * Note that this should be the first read on <f>
2969 */
2970static int srv_state_get_version(FILE *f) {
2971 char buf[2];
2972 int ret;
2973
2974 /* first character of first line of the file must contain the version of the export */
2975 if (fgets(buf, 2, f) == NULL) {
2976 return 0;
2977 }
2978
2979 ret = atoi(buf);
2980 if ((ret < SRV_STATE_FILE_VERSION_MIN) ||
2981 (ret > SRV_STATE_FILE_VERSION_MAX))
2982 return 0;
2983
2984 return ret;
2985}
2986
2987
2988/*
2989 * parses server state line stored in <buf> and supposedly in version <version>.
2990 * Set <params> and <srv_params> accordingly.
2991 * In case of error, params[0] is set to NULL.
2992 */
2993static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params)
2994{
2995 int buflen, arg, srv_arg;
2996 char *cur, *end;
2997
2998 buflen = strlen(buf);
2999 cur = buf;
3000 end = cur + buflen;
3001
3002 /* we need at least one character */
3003 if (buflen == 0) {
3004 params[0] = NULL;
3005 return;
3006 }
3007
3008 /* ignore blank characters at the beginning of the line */
Willy Tarreau90807112020-02-25 08:16:33 +01003009 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003010 ++cur;
3011
3012 /* Ignore empty or commented lines */
3013 if (cur == end || *cur == '#') {
3014 params[0] = NULL;
3015 return;
3016 }
3017
3018 /* truncated lines */
3019 if (buf[buflen - 1] != '\n') {
3020 //ha_warning("server-state file '%s': truncated line\n", filepath);
3021 params[0] = NULL;
3022 return;
3023 }
3024
3025 /* Removes trailing '\n' */
3026 buf[buflen - 1] = '\0';
3027
3028 /* we're now ready to move the line into *srv_params[] */
Christopher Fauletd119e562021-02-19 16:47:11 +01003029 memset(params, 0, SRV_STATE_FILE_MAX_FIELDS * sizeof(*params));
3030 memset(srv_params, 0, SRV_STATE_FILE_MAX_FIELDS * sizeof(*srv_params));
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003031
3032 arg = 0;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003033 srv_arg = 0;
3034 while (*cur && arg < SRV_STATE_FILE_MAX_FIELDS) {
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003035 /* Search begining of the current field */
3036 while (isspace((unsigned char)*cur)) {
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003037 ++cur;
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003038 if (!*cur)
3039 goto end;
3040 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003041
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003042 /* v1
3043 * srv_addr: params[4] => srv_params[0]
3044 * srv_op_state: params[5] => srv_params[1]
3045 * srv_admin_state: params[6] => srv_params[2]
3046 * srv_uweight: params[7] => srv_params[3]
3047 * srv_iweight: params[8] => srv_params[4]
3048 * srv_last_time_change: params[9] => srv_params[5]
3049 * srv_check_status: params[10] => srv_params[6]
3050 * srv_check_result: params[11] => srv_params[7]
3051 * srv_check_health: params[12] => srv_params[8]
3052 * srv_check_state: params[13] => srv_params[9]
3053 * srv_agent_state: params[14] => srv_params[10]
3054 * bk_f_forced_id: params[15] => srv_params[11]
3055 * srv_f_forced_id: params[16] => srv_params[12]
3056 * srv_fqdn: params[17] => srv_params[13]
3057 * srv_port: params[18] => srv_params[14]
3058 * srvrecord: params[19] => srv_params[15]
3059 */
3060 if (version == 1 && arg >= 4) {
3061 srv_params[srv_arg] = cur;
3062 ++srv_arg;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003063 }
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003064 params[arg] = cur;
3065 ++arg;
3066
3067 /* Search end of the current field: first space or \0 */
3068 /* Search begining of the current field */
3069 while (!isspace((unsigned char)*cur)) {
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003070 ++cur;
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003071 if (!*cur)
3072 goto end;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003073 }
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003074 *cur++ = '\0';
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003075 }
3076
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003077 end:
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003078 /* if line is incomplete line, then ignore it.
3079 * otherwise, update useful flags */
3080 switch (version) {
3081 case 1:
3082 if (arg < SRV_STATE_FILE_NB_FIELDS_VERSION_1) {
3083 params[0] = NULL;
3084 return;
3085 }
3086 break;
3087 }
3088
3089 return;
3090}
3091
3092
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003093/* This function parses all the proxies and only take care of the backends (since we're looking for server)
3094 * For each proxy, it does the following:
3095 * - opens its server state file (either one or local one)
3096 * - read whole file, line by line
3097 * - analyse each line to check if it matches our current backend:
3098 * - backend name matches
3099 * - backend id matches if id is forced and name doesn't match
3100 * - if the server pointed by the line is found, then state is applied
3101 *
3102 * If the running backend uuid or id differs from the state file, then HAProxy reports
3103 * a warning.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003104 *
3105 * Grabs the server's lock via srv_update_state().
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003106 */
3107void apply_server_state(void)
3108{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003109 char mybuf[SRV_STATE_LINE_MAXLEN];
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003110 char *params[SRV_STATE_FILE_MAX_FIELDS] = {0};
3111 char *srv_params[SRV_STATE_FILE_MAX_FIELDS] = {0};
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003112 int version, global_file_version;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003113 FILE *f;
3114 char *filepath;
3115 char globalfilepath[MAXPATHLEN + 1];
3116 char localfilepath[MAXPATHLEN + 1];
3117 int len, fileopenerr, globalfilepathlen, localfilepathlen;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003118 struct proxy *curproxy, *bk;
3119 struct server *srv;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003120 char *line;
3121 char *bkname, *srvname;
3122 struct state_line *st;
3123 struct ebmb_node *node, *next_node;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003124
Willy Tarreau2d067f92020-07-16 06:40:27 +02003125 f = NULL;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003126 global_file_version = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003127 globalfilepathlen = 0;
3128 /* create the globalfilepath variable */
3129 if (global.server_state_file) {
3130 /* absolute path or no base directory provided */
3131 if ((global.server_state_file[0] == '/') || (!global.server_state_base)) {
3132 len = strlen(global.server_state_file);
3133 if (len > MAXPATHLEN) {
3134 globalfilepathlen = 0;
3135 goto globalfileerror;
3136 }
3137 memcpy(globalfilepath, global.server_state_file, len);
3138 globalfilepath[len] = '\0';
3139 globalfilepathlen = len;
3140 }
3141 else if (global.server_state_base) {
3142 len = strlen(global.server_state_base);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003143 if (len > MAXPATHLEN) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003144 globalfilepathlen = 0;
3145 goto globalfileerror;
3146 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003147 memcpy(globalfilepath, global.server_state_base, len);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003148 globalfilepath[len] = 0;
3149 globalfilepathlen = len;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003150
3151 /* append a slash if needed */
3152 if (!globalfilepathlen || globalfilepath[globalfilepathlen - 1] != '/') {
3153 if (globalfilepathlen + 1 > MAXPATHLEN) {
3154 globalfilepathlen = 0;
3155 goto globalfileerror;
3156 }
3157 globalfilepath[globalfilepathlen++] = '/';
3158 }
3159
3160 len = strlen(global.server_state_file);
3161 if (globalfilepathlen + len > MAXPATHLEN) {
3162 globalfilepathlen = 0;
3163 goto globalfileerror;
3164 }
3165 memcpy(globalfilepath + globalfilepathlen, global.server_state_file, len);
3166 globalfilepathlen += len;
3167 globalfilepath[globalfilepathlen++] = 0;
3168 }
3169 }
3170 globalfileerror:
3171 if (globalfilepathlen == 0)
3172 globalfilepath[0] = '\0';
3173
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003174 /* Load global server state in a tree */
3175 if (globalfilepathlen > 0) {
3176 errno = 0;
3177 f = fopen(globalfilepath, "r");
3178 if (errno)
3179 ha_warning("Can't open global server state file '%s': %s\n", globalfilepath, strerror(errno));
Vedran Furac5d486272019-10-16 14:49:38 +02003180 if (!f)
3181 goto out_load_server_state_in_tree;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003182
3183 global_file_version = srv_state_get_version(f);
3184 if (global_file_version == 0)
3185 goto out_load_server_state_in_tree;
3186
3187 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3188 line = NULL;
3189
3190 line = strdup(mybuf);
3191 if (line == NULL)
3192 continue;
3193
3194 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3195 if (params[0] == NULL)
Willy Tarreauca7a5af2019-12-20 17:26:27 +01003196 goto nextline;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003197
3198 /* bkname */
3199 bkname = params[1];
3200 /* srvname */
3201 srvname = params[3];
3202
3203 /* key */
3204 chunk_printf(&trash, "%s %s", bkname, srvname);
3205
3206 /* store line in tree */
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003207 st = calloc(1, sizeof(*st) + trash.data + 1);
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003208 if (st == NULL) {
3209 goto nextline;
3210 }
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003211 memcpy(st->name_name.key, trash.area, trash.data + 1);
Willy Tarreaufd1aa012019-12-20 17:23:40 +01003212 if (ebst_insert(&state_file, &st->name_name) != &st->name_name) {
3213 /* this is a duplicate key, probably a hand-crafted file,
3214 * drop it!
3215 */
3216 goto nextline;
3217 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003218
3219 /* save line */
3220 st->line = line;
3221
3222 continue;
3223
3224 nextline:
3225 /* free up memory in case of error during the processing of the line */
3226 free(line);
3227 }
3228 }
3229 out_load_server_state_in_tree:
3230
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003231 if (f) {
3232 fclose(f);
3233 f = NULL;
3234 }
3235
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003236 /* parse all proxies and load states form tree (global file) or from local file */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003237 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003238 /* servers are only in backends */
3239 if (!(curproxy->cap & PR_CAP_BE))
3240 continue;
3241 fileopenerr = 0;
3242 filepath = NULL;
3243
3244 /* search server state file path and name */
3245 switch (curproxy->load_server_state_from_file) {
3246 /* read servers state from global file */
3247 case PR_SRV_STATE_FILE_GLOBAL:
3248 /* there was an error while generating global server state file path */
3249 if (globalfilepathlen == 0)
3250 continue;
3251 filepath = globalfilepath;
3252 fileopenerr = 1;
3253 break;
3254 /* this backend has its own file */
3255 case PR_SRV_STATE_FILE_LOCAL:
3256 localfilepathlen = 0;
3257 localfilepath[0] = '\0';
3258 len = 0;
3259 /* create the localfilepath variable */
3260 /* absolute path or no base directory provided */
3261 if ((curproxy->server_state_file_name[0] == '/') || (!global.server_state_base)) {
3262 len = strlen(curproxy->server_state_file_name);
3263 if (len > MAXPATHLEN) {
3264 localfilepathlen = 0;
3265 goto localfileerror;
3266 }
3267 memcpy(localfilepath, curproxy->server_state_file_name, len);
3268 localfilepath[len] = '\0';
3269 localfilepathlen = len;
3270 }
3271 else if (global.server_state_base) {
3272 len = strlen(global.server_state_base);
3273 localfilepathlen += len;
3274
3275 if (localfilepathlen > MAXPATHLEN) {
3276 localfilepathlen = 0;
3277 goto localfileerror;
3278 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003279 memcpy(localfilepath, global.server_state_base, len);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003280 localfilepath[localfilepathlen] = 0;
3281
3282 /* append a slash if needed */
3283 if (!localfilepathlen || localfilepath[localfilepathlen - 1] != '/') {
3284 if (localfilepathlen + 1 > MAXPATHLEN) {
3285 localfilepathlen = 0;
3286 goto localfileerror;
3287 }
3288 localfilepath[localfilepathlen++] = '/';
3289 }
3290
3291 len = strlen(curproxy->server_state_file_name);
3292 if (localfilepathlen + len > MAXPATHLEN) {
3293 localfilepathlen = 0;
3294 goto localfileerror;
3295 }
3296 memcpy(localfilepath + localfilepathlen, curproxy->server_state_file_name, len);
3297 localfilepathlen += len;
3298 localfilepath[localfilepathlen++] = 0;
3299 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003300 localfileerror:
3301 if (localfilepathlen == 0)
Christopher Fauletacef6b92021-02-12 16:31:03 +01003302 continue;
3303 filepath = localfilepath;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003304
3305 break;
3306 case PR_SRV_STATE_FILE_NONE:
3307 default:
3308 continue;
3309 }
3310
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003311 /* when global file is used, we get data from the tree
3312 * Note that in such case we don't check backend name neither uuid.
3313 * Backend name can't be wrong since it's used as a key to retrieve the server state
3314 * line from the tree.
3315 */
3316 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_GLOBAL) {
3317 struct server *srv = curproxy->srv;
3318 while (srv) {
3319 struct ebmb_node *node;
3320 struct state_line *st;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003321
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003322 chunk_printf(&trash, "%s %s", curproxy->id, srv->id);
3323 node = ebst_lookup(&state_file, trash.area);
3324 if (!node)
3325 goto next;
Dragan Dosencf4fb032015-11-04 23:03:26 +01003326
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003327 st = container_of(node, struct state_line, name_name);
3328 memcpy(mybuf, st->line, strlen(st->line));
3329 mybuf[strlen(st->line)] = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003330
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003331 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3332 if (params[0] == NULL)
3333 goto next;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003334
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003335 srv_update_state(srv, global_file_version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003336
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003337 next:
3338 srv = srv->next;
3339 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003340
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003341 continue; /* next proxy in list */
3342 }
3343 else {
3344 /* load 'local' state file */
3345 errno = 0;
3346 f = fopen(filepath, "r");
3347 if (errno && fileopenerr)
3348 ha_warning("Can't open server state file '%s': %s\n", filepath, strerror(errno));
3349 if (!f)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003350 continue;
3351
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003352 mybuf[0] = '\0';
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003353
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003354 /* first character of first line of the file must contain the version of the export */
3355 version = srv_state_get_version(f);
3356 if (version == 0) {
3357 ha_warning("Can't get version of the server state file '%s'\n", filepath);
3358 goto fileclose;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003359 }
3360
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003361 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3362 int bk_f_forced_id = 0;
3363 int check_id = 0;
3364 int check_name = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003365
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003366 srv_state_parse_line(mybuf, version, params, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003367
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003368 if (params[0] == NULL) {
3369 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003370 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003371
3372 /* if line is incomplete line, then ignore it.
3373 * otherwise, update useful flags */
3374 switch (version) {
3375 case 1:
3376 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
3377 check_id = (atoi(params[0]) == curproxy->uuid);
3378 check_name = (strcmp(curproxy->id, params[1]) == 0);
3379 break;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003380 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003381
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003382 bk = curproxy;
3383
3384 /* if backend can't be found, let's continue */
3385 if (!check_id && !check_name)
3386 continue;
3387 else if (!check_id && check_name) {
3388 ha_warning("backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3389 send_log(bk, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3390 }
3391 else if (check_id && !check_name) {
3392 ha_warning("backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3393 send_log(bk, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3394 /* if name doesn't match, we still want to update curproxy if the backend id
3395 * was forced in previous the previous configuration */
3396 if (!bk_f_forced_id)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003397 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003398 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003399
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003400 /* look for the server by its name: param[3] */
3401 srv = server_find_best_match(bk, params[3], 0, NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003402
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003403 if (!srv) {
3404 /* if no server found, then warning and continue with next line */
3405 ha_warning("can't find server '%s' in backend '%s'\n",
3406 params[3], params[1]);
3407 send_log(bk, LOG_NOTICE, "can't find server '%s' in backend '%s'\n",
3408 params[3], params[1]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003409 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003410 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003411
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003412 /* now we can proceed with server's state update */
3413 srv_update_state(srv, version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003414 }
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003415
3416 fileclose:
3417 fclose(f);
3418
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003419 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003420 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003421
3422 /* now free memory allocated for the tree */
3423 for (node = ebmb_first(&state_file), next_node = node ? ebmb_next(node) : NULL;
3424 node;
3425 node = next_node, next_node = node ? ebmb_next(node) : NULL) {
3426 st = container_of(node, struct state_line, name_name);
3427 ebmb_delete(&st->name_name);
3428 free(st->line);
3429 free(st);
3430 }
3431
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003432}
3433
Simon Horman7d09b9a2013-02-12 10:45:51 +09003434/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003435 * update a server's current IP address.
3436 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3437 * ip is in network format.
3438 * updater is a string which contains an information about the requester of the update.
3439 * updater is used if not NULL.
3440 *
3441 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003442 *
3443 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003444 */
Thierry Fournierd35b7a62016-02-24 08:23:22 +01003445int update_server_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003446{
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +02003447 /* save the new IP family & address if necessary */
3448 switch (ip_sin_family) {
3449 case AF_INET:
3450 if (s->addr.ss_family == ip_sin_family &&
3451 !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4))
3452 return 0;
3453 break;
3454 case AF_INET6:
3455 if (s->addr.ss_family == ip_sin_family &&
3456 !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16))
3457 return 0;
3458 break;
3459 };
3460
Baptiste Assmann14e40142015-04-14 01:13:07 +02003461 /* generates a log line and a warning on stderr */
3462 if (1) {
3463 /* book enough space for both IPv4 and IPv6 */
3464 char oldip[INET6_ADDRSTRLEN];
3465 char newip[INET6_ADDRSTRLEN];
3466
3467 memset(oldip, '\0', INET6_ADDRSTRLEN);
3468 memset(newip, '\0', INET6_ADDRSTRLEN);
3469
3470 /* copy old IP address in a string */
3471 switch (s->addr.ss_family) {
3472 case AF_INET:
3473 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3474 break;
3475 case AF_INET6:
3476 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3477 break;
Christopher Fauletb0b76072020-09-08 10:38:40 +02003478 default:
3479 strcpy(oldip, "(none)");
3480 break;
Baptiste Assmann14e40142015-04-14 01:13:07 +02003481 };
3482
3483 /* copy new IP address in a string */
3484 switch (ip_sin_family) {
3485 case AF_INET:
3486 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3487 break;
3488 case AF_INET6:
3489 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3490 break;
3491 };
3492
3493 /* save log line into a buffer */
3494 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3495 s->proxy->id, s->id, oldip, newip, updater);
3496
3497 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003498 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003499
3500 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003501 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003502 }
3503
3504 /* save the new IP family */
3505 s->addr.ss_family = ip_sin_family;
3506 /* save the new IP address */
3507 switch (ip_sin_family) {
3508 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003509 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003510 break;
3511 case AF_INET6:
3512 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3513 break;
3514 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003515 srv_set_dyncookie(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003516
3517 return 0;
3518}
3519
3520/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003521 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3522 *
3523 * Caller can pass its name through <updater> to get it integrated in the response message
3524 * returned by the function.
3525 *
3526 * The function first does the following, in that order:
3527 * - validates the new addr and/or port
3528 * - checks if an update is required (new IP or port is different than current ones)
3529 * - checks the update is allowed:
3530 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3531 * - allow all changes if no CHECKS are configured
3532 * - if CHECK is configured:
3533 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3534 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3535 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003536 *
3537 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003538 */
3539const char *update_server_addr_port(struct server *s, const char *addr, const char *port, char *updater)
3540{
3541 struct sockaddr_storage sa;
3542 int ret, port_change_required;
3543 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003544 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003545 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003546 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003547
3548 msg = get_trash_chunk();
3549 chunk_reset(msg);
3550
3551 if (addr) {
3552 memset(&sa, 0, sizeof(struct sockaddr_storage));
3553 if (str2ip2(addr, &sa, 0) == NULL) {
3554 chunk_printf(msg, "Invalid addr '%s'", addr);
3555 goto out;
3556 }
3557
3558 /* changes are allowed on AF_INET* families only */
3559 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3560 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3561 goto out;
3562 }
3563
3564 /* collecting data currently setup */
3565 memset(current_addr, '\0', sizeof(current_addr));
3566 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3567 /* changes are allowed on AF_INET* families only */
3568 if ((ret != AF_INET) && (ret != AF_INET6)) {
3569 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3570 goto out;
3571 }
3572
3573 /* applying ADDR changes if required and allowed
3574 * ipcmp returns 0 when both ADDR are the same
3575 */
3576 if (ipcmp(&s->addr, &sa) == 0) {
3577 chunk_appendf(msg, "no need to change the addr");
3578 goto port;
3579 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003580 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003581 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003582
3583 /* we also need to update check's ADDR only if it uses the server's one */
3584 if ((s->check.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_CHECKADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003585 ipcpy(&sa, &s->check.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003586 }
3587
3588 /* we also need to update agent ADDR only if it use the server's one */
3589 if ((s->agent.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_AGENTADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003590 ipcpy(&sa, &s->agent.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003591 }
3592
3593 /* update report for caller */
3594 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3595 }
3596
3597 port:
3598 if (port) {
3599 char sign = '\0';
3600 char *endptr;
3601
3602 if (addr)
3603 chunk_appendf(msg, ", ");
3604
3605 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003606 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003607
3608 /* check if PORT change is required */
3609 port_change_required = 0;
3610
3611 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003612 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003613 new_port = strtol(port, &endptr, 10);
3614 if ((errno != 0) || (port == endptr)) {
3615 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3616 goto out;
3617 }
3618
3619 /* check if caller triggers a port mapped or offset */
3620 if (sign == '-' || (sign == '+')) {
3621 /* check if server currently uses port map */
3622 if (!(s->flags & SRV_F_MAPPORTS)) {
3623 /* switch from fixed port to port map mandatorily triggers
3624 * a port change */
3625 port_change_required = 1;
3626 /* check is configured
3627 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3628 * prevent PORT change if check doesn't have it's dedicated port while switching
3629 * to port mapping */
3630 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3631 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.");
3632 goto out;
3633 }
3634 }
3635 /* we're already using port maps */
3636 else {
3637 port_change_required = current_port != new_port;
3638 }
3639 }
3640 /* fixed port */
3641 else {
3642 port_change_required = current_port != new_port;
3643 }
3644
3645 /* applying PORT changes if required and update response message */
3646 if (port_change_required) {
3647 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003648 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003649 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003650
3651 /* prepare message */
3652 chunk_appendf(msg, "port changed from '");
3653 if (s->flags & SRV_F_MAPPORTS)
3654 chunk_appendf(msg, "+");
3655 chunk_appendf(msg, "%d' to '", current_port);
3656
3657 if (sign == '-') {
3658 s->flags |= SRV_F_MAPPORTS;
3659 chunk_appendf(msg, "%c", sign);
3660 /* just use for result output */
3661 new_port = -new_port;
3662 }
3663 else if (sign == '+') {
3664 s->flags |= SRV_F_MAPPORTS;
3665 chunk_appendf(msg, "%c", sign);
3666 }
3667 else {
3668 s->flags &= ~SRV_F_MAPPORTS;
3669 }
3670
3671 chunk_appendf(msg, "%d'", new_port);
3672
3673 /* we also need to update health checks port only if it uses server's realport */
3674 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3675 s->check.port = new_port;
3676 }
3677 }
3678 else {
3679 chunk_appendf(msg, "no need to change the port");
3680 }
3681 }
3682
3683out:
William Dauchy6318d332020-05-02 21:52:36 +02003684 if (changed) {
3685 /* force connection cleanup on the given server */
3686 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003687 srv_set_dyncookie(s);
William Dauchy6318d332020-05-02 21:52:36 +02003688 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003689 if (updater)
3690 chunk_appendf(msg, " by '%s'", updater);
3691 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003692 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003693}
3694
Christopher Faulet6d703682021-03-11 18:03:21 +01003695/*
3696 * update server status based on result of SRV resolution
3697 * returns:
3698 * 0 if server status is updated
3699 * 1 if server status has not changed
3700 *
3701 * Must be called with the server lock held.
3702 */
3703int srvrq_update_srv_status(struct server *s, int has_no_ip)
3704{
3705 if (!s->srvrq)
3706 return 1;
3707
3708 /* since this server has an IP, it can go back in production */
3709 if (has_no_ip == 0) {
3710 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3711 return 1;
3712 }
3713
3714 if (s->next_admin & SRV_ADMF_RMAINT)
3715 return 1;
3716
3717 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record");
3718 return 0;
3719}
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003720
3721/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003722 * update server status based on result of name resolution
3723 * returns:
3724 * 0 if server status is updated
3725 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003726 *
3727 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003728 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003729int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003730{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003731 struct dns_resolvers *resolvers = s->resolvers;
Christopher Faulet55810262021-03-12 10:23:05 +01003732 struct dns_resolution *resolution = (s->dns_requester ? s->dns_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003733 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003734
Jerome Magnin012261a2020-07-28 13:38:22 +02003735 /* If resolution is NULL we're dealing with SRV records Additional records */
Christopher Faulet6d703682021-03-11 18:03:21 +01003736 if (resolution == NULL)
3737 return srvrq_update_srv_status(s, has_no_ip);
Jerome Magnin012261a2020-07-28 13:38:22 +02003738
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003739 switch (resolution->status) {
3740 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003741 /* status when HAProxy has just (re)started.
3742 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003743 break;
3744
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003745 case RSLV_STATUS_VALID:
3746 /*
3747 * resume health checks
3748 * server will be turned back on if health check is safe
3749 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003750 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003751 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003752 return 1;
3753 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3754 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003755 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003756 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003757
Emeric Brun52a91d32017-08-31 14:41:55 +02003758 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003759 return 1;
3760 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3761 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3762 s->proxy->id, s->id);
3763
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003764 ha_warning("%s.\n", trash.area);
3765 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003766 return 0;
3767
3768 case RSLV_STATUS_NX:
3769 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003770 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3771 if (!tick_is_expired(exp, now_ms))
3772 break;
3773
3774 if (s->next_admin & SRV_ADMF_RMAINT)
3775 return 1;
3776 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3777 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003778
3779 case RSLV_STATUS_TIMEOUT:
3780 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003781 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3782 if (!tick_is_expired(exp, now_ms))
3783 break;
3784
3785 if (s->next_admin & SRV_ADMF_RMAINT)
3786 return 1;
3787 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3788 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003789
3790 case RSLV_STATUS_REFUSED:
3791 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003792 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3793 if (!tick_is_expired(exp, now_ms))
3794 break;
3795
3796 if (s->next_admin & SRV_ADMF_RMAINT)
3797 return 1;
3798 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3799 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003800
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003801 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003802 /* stop server if resolution failed for a long enough period */
3803 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3804 if (!tick_is_expired(exp, now_ms))
3805 break;
3806
3807 if (s->next_admin & SRV_ADMF_RMAINT)
3808 return 1;
3809 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3810 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003811 }
3812
3813 return 1;
3814}
3815
3816/*
3817 * Server Name Resolution valid response callback
3818 * It expects:
3819 * - <nameserver>: the name server which answered the valid response
3820 * - <response>: buffer containing a valid DNS response
3821 * - <response_len>: size of <response>
3822 * It performs the following actions:
3823 * - ignore response if current ip found and server family not met
3824 * - update with first new ip found if family is met and current IP is not found
3825 * returns:
3826 * 0 on error
3827 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003828 *
3829 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003830 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003831int snr_resolution_cb(struct dns_requester *requester, struct dns_nameserver *nameserver)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003832{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003833 struct server *s = NULL;
3834 struct dns_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003835 void *serverip, *firstip;
3836 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003837 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003838 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003839 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003840
Christopher Faulet67957bd2017-09-27 11:00:59 +02003841 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003842 if (!s)
3843 return 1;
3844
Christopher Fauletdb001942021-03-10 15:07:27 +01003845 if (s->srvrq) {
3846 struct dns_answer_item *srv_item;
3847
3848 /* If DNS resolution is disabled ignore it. */
3849 if (s->flags & SRV_F_NO_RESOLUTION)
3850 return 1;
3851
3852 /* The server is based on a SRV record, thus, find the
3853 * associated answer record. If not found, it means the SRV item
3854 * has expired and this resolution must be ignored.
3855 */
3856 srv_item = find_srvrq_answer_record(requester);
3857 if (!srv_item)
3858 return 1;
3859 }
3860
Christopher Faulet55810262021-03-12 10:23:05 +01003861 resolution = (s->dns_requester ? s->dns_requester->resolution : NULL);
Christopher Fauletdb001942021-03-10 15:07:27 +01003862 if (!resolution)
3863 return 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003864
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003865 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003866 firstip = NULL; /* pointer to the first valid response found */
3867 /* it will be used as the new IP if a change is required */
3868 firstip_sin_family = AF_UNSPEC;
3869 serverip = NULL; /* current server IP address */
3870
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003871 /* initializing server IP pointer */
3872 server_sin_family = s->addr.ss_family;
3873 switch (server_sin_family) {
3874 case AF_INET:
3875 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3876 break;
3877
3878 case AF_INET6:
3879 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3880 break;
3881
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003882 case AF_UNSPEC:
3883 break;
3884
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003885 default:
3886 goto invalid;
3887 }
3888
Baptiste Assmann729c9012017-05-22 15:13:10 +02003889 ret = dns_get_ip_from_response(&resolution->response, &s->dns_opts,
Thierry Fournierada34842016-02-17 21:25:09 +01003890 serverip, server_sin_family, &firstip,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003891 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003892
3893 switch (ret) {
3894 case DNS_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003895 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003896
3897 case DNS_UPD_SRVIP_NOT_FOUND:
3898 goto save_ip;
3899
3900 case DNS_UPD_CNAME:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003901 goto invalid;
3902
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003903 case DNS_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003904 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003905 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003906
Baptiste Assmannfad03182015-10-28 02:03:32 +01003907 case DNS_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003908 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003909 resolution->status = RSLV_STATUS_OTHER;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003910 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003911
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003912 default:
3913 goto invalid;
3914
3915 }
3916
3917 save_ip:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003918 if (nameserver) {
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003919 nameserver->counters->update++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003920 /* save the first ip we found */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003921 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003922 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003923 else
3924 chunk_printf(chk, "DNS cache");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003925 update_server_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003926
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003927 update_status:
Christopher Fauletdb001942021-03-10 15:07:27 +01003928
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003929 snr_update_srv_status(s, has_no_ip);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003930 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003931
3932 invalid:
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003933 if (nameserver) {
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003934 nameserver->counters->invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003935 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003936 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003937 snr_update_srv_status(s, has_no_ip);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003938 return 0;
3939}
3940
3941/*
Baptiste Assmann826060e2020-11-19 22:38:33 +01003942 * SRV record error management callback
3943 * returns:
3944 * 0 on error
3945 * 1 when no error or safe ignore
3946 *
3947 * Grabs the server's lock.
3948 */
3949int srvrq_resolution_error_cb(struct dns_requester *requester, int error_code)
3950{
3951 struct server *s;
3952 struct dns_srvrq *srvrq;
3953 struct dns_resolution *res;
3954 struct dns_resolvers *resolvers;
3955 int exp;
3956
3957 /* SRV records */
3958 srvrq = objt_dns_srvrq(requester->owner);
3959 if (!srvrq)
3960 return 1;
3961
3962 resolvers = srvrq->resolvers;
3963 res = requester->resolution;
3964
3965 switch (res->status) {
3966
3967 case RSLV_STATUS_NX:
3968 /* stop server if resolution is NX for a long enough period */
3969 exp = tick_add(res->last_valid, resolvers->hold.nx);
3970 if (!tick_is_expired(exp, now_ms))
3971 return 1;
3972 break;
3973
3974 case RSLV_STATUS_TIMEOUT:
3975 /* stop server if resolution is TIMEOUT for a long enough period */
3976 exp = tick_add(res->last_valid, resolvers->hold.timeout);
3977 if (!tick_is_expired(exp, now_ms))
3978 return 1;
3979 break;
3980
3981 case RSLV_STATUS_REFUSED:
3982 /* stop server if resolution is REFUSED for a long enough period */
3983 exp = tick_add(res->last_valid, resolvers->hold.refused);
3984 if (!tick_is_expired(exp, now_ms))
3985 return 1;
3986 break;
3987
3988 default:
3989 /* stop server if resolution failed for a long enough period */
3990 exp = tick_add(res->last_valid, resolvers->hold.other);
3991 if (!tick_is_expired(exp, now_ms))
3992 return 1;
3993 }
3994
3995 /* Remove any associated server */
3996 for (s = srvrq->proxy->srv; s != NULL; s = s->next) {
3997 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
3998 if (s->srvrq == srvrq) {
Christopher Faulet119ec522021-03-11 18:09:53 +01003999 dns_unlink_resolution(s->dns_requester, 1);
Christopher Faulet07cb0e12021-03-11 18:06:23 +01004000 srvrq_update_srv_status(s, 1);
Baptiste Assmann826060e2020-11-19 22:38:33 +01004001 free(s->hostname);
4002 free(s->hostname_dn);
4003 s->hostname = NULL;
4004 s->hostname_dn = NULL;
4005 s->hostname_dn_len = 0;
Christopher Faulet8427aa62021-02-23 12:24:09 +01004006 memset(&s->addr, 0, sizeof(s->addr));
4007 s->svc_port = 0;
Baptiste Assmann826060e2020-11-19 22:38:33 +01004008 }
4009 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
4010 }
4011
Christopher Faulet720ed092021-03-10 15:46:46 +01004012 dns_purge_resolution_answer_records(res);
4013
Baptiste Assmann826060e2020-11-19 22:38:33 +01004014 return 1;
4015}
4016
4017/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004018 * Server Name Resolution error management callback
4019 * returns:
4020 * 0 on error
4021 * 1 when no error or safe ignore
Willy Tarreau46b7f532018-08-21 11:54:26 +02004022 *
4023 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004024 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004025int snr_resolution_error_cb(struct dns_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004026{
Christopher Faulet67957bd2017-09-27 11:00:59 +02004027 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004028
Christopher Faulet67957bd2017-09-27 11:00:59 +02004029 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004030 if (!s)
4031 return 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004032 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Christopher Faulet7c9201e2021-03-10 20:31:40 +01004033 if (!snr_update_srv_status(s, 1))
4034 memset(&s->addr, 0, sizeof(s->addr));
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004035 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004036 return 1;
4037}
4038
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004039/*
4040 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004041 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004042 * It returns a pointer to the first server found or NULL if <ip> is not yet
4043 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01004044 *
4045 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004046 */
4047struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
4048{
4049 struct server *tmpsrv;
4050 struct proxy *be;
4051
4052 if (!srv)
4053 return NULL;
4054
4055 be = srv->proxy;
4056 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01004057 /* we found the current server is the same, ignore it */
4058 if (srv == tmpsrv)
4059 continue;
4060
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004061 /* We want to compare the IP in the record with the IP of the servers in the
4062 * same backend, only if:
4063 * * DNS resolution is enabled on the server
4064 * * the hostname used for the resolution by our server is the same than the
4065 * one used for the server found in the backend
4066 * * the server found in the backend is not our current server
4067 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004068 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004069 if ((tmpsrv->hostname_dn == NULL) ||
4070 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
Christopher Fauletd31f6942021-03-16 11:21:04 +01004071 (strcasecmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01004072 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004073 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004074 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004075 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004076
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004077 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01004078 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004079 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004080 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004081 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004082
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004083 /* At this point, we have 2 different servers using the same DNS hostname
4084 * for their respective resolution.
4085 */
4086 if (*ip_family == tmpsrv->addr.ss_family &&
4087 ((tmpsrv->addr.ss_family == AF_INET &&
4088 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
4089 (tmpsrv->addr.ss_family == AF_INET6 &&
4090 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004091 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004092 return tmpsrv;
4093 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004094 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004095 }
4096
Emeric Brune9fd6b52017-11-02 17:20:39 +01004097
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004098 return NULL;
4099}
4100
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004101/* Sets the server's address (srv->addr) from srv->hostname using the libc's
4102 * resolver. This is suited for initial address configuration. Returns 0 on
4103 * success otherwise a non-zero error code. In case of error, *err_code, if
4104 * not NULL, is filled up.
4105 */
4106int srv_set_addr_via_libc(struct server *srv, int *err_code)
4107{
4108 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004109 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01004110 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004111 return 1;
4112 }
4113 return 0;
4114}
4115
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004116/* Set the server's FDQN (->hostname) from <hostname>.
4117 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004118 *
4119 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004120 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004121int srv_set_fqdn(struct server *srv, const char *hostname, int dns_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004122{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004123 struct dns_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004124 char *hostname_dn;
4125 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004126
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02004127 /* Note that the server lock is already held. */
4128 if (!srv->resolvers)
4129 return -1;
4130
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004131 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004132 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Faulet55810262021-03-12 10:23:05 +01004133 /* run time DNS/SRV resolution was not active for this server
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004134 * and we can't enable it at run time for now.
4135 */
Christopher Faulet55810262021-03-12 10:23:05 +01004136 if (!srv->dns_requester && !srv->srvrq)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004137 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004138
4139 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004140 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004141 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004142 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
4143 hostname_dn, trash.size);
4144 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004145 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004146
Christopher Faulet55810262021-03-12 10:23:05 +01004147 resolution = (srv->dns_requester ? srv->dns_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004148 if (resolution &&
4149 resolution->hostname_dn &&
Christopher Fauletd31f6942021-03-16 11:21:04 +01004150 resolution->hostname_dn_len == hostname_dn_len &&
4151 strcasecmp(resolution->hostname_dn, hostname_dn) == 0)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004152 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004153
Christopher Faulet119ec522021-03-11 18:09:53 +01004154 dns_unlink_resolution(srv->dns_requester, 0);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004155
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004156 free(srv->hostname);
4157 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004158 srv->hostname = strdup(hostname);
4159 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004160 srv->hostname_dn_len = hostname_dn_len;
4161 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004162 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004163
Baptiste Assmann13a92322019-06-07 09:40:55 +02004164 if (srv->flags & SRV_F_NO_RESOLUTION)
4165 goto end;
4166
Olivier Houchard55dcdf42017-11-06 15:15:04 +01004167 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004168 goto err;
4169
4170 end:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004171 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004172 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004173 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02004174
4175 err:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004176 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004177 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02004178 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004179}
4180
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004181/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
4182 * from the state file. This is suited for initial address configuration.
4183 * Returns 0 on success otherwise a non-zero error code. In case of error,
4184 * *err_code, if not NULL, is filled up.
4185 */
4186static int srv_apply_lastaddr(struct server *srv, int *err_code)
4187{
4188 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
4189 if (err_code)
4190 *err_code |= ERR_WARN;
4191 return 1;
4192 }
4193 return 0;
4194}
4195
Willy Tarreau25e51522016-11-04 15:10:17 +01004196/* returns 0 if no error, otherwise a combination of ERR_* flags */
4197static int srv_iterate_initaddr(struct server *srv)
4198{
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004199 char *name = srv->hostname;
Willy Tarreau25e51522016-11-04 15:10:17 +01004200 int return_code = 0;
4201 int err_code;
4202 unsigned int methods;
4203
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004204 /* If no addr and no hostname set, get the name from the DNS SRV request */
4205 if (!name && srv->srvrq)
4206 name = srv->srvrq->name;
4207
Willy Tarreau25e51522016-11-04 15:10:17 +01004208 methods = srv->init_addr_methods;
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004209 if (!methods) {
4210 /* otherwise default to "last,libc" */
Willy Tarreau25e51522016-11-04 15:10:17 +01004211 srv_append_initaddr(&methods, SRV_IADDR_LAST);
4212 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004213 if (srv->resolvers_id) {
4214 /* dns resolution is configured, add "none" to not fail on startup */
4215 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4216 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004217 }
4218
Willy Tarreau3eed10e2016-11-07 21:03:16 +01004219 /* "-dr" : always append "none" so that server addresses resolution
4220 * failures are silently ignored, this is convenient to validate some
4221 * configs out of their environment.
4222 */
4223 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
4224 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4225
Willy Tarreau25e51522016-11-04 15:10:17 +01004226 while (methods) {
4227 err_code = 0;
4228 switch (srv_get_next_initaddr(&methods)) {
4229 case SRV_IADDR_LAST:
4230 if (!srv->lastaddr)
4231 continue;
4232 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004233 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004234 return_code |= err_code;
4235 break;
4236
4237 case SRV_IADDR_LIBC:
4238 if (!srv->hostname)
4239 continue;
4240 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004241 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004242 return_code |= err_code;
4243 break;
4244
Willy Tarreau37ebe122016-11-04 15:17:58 +01004245 case SRV_IADDR_NONE:
4246 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004247 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004248 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004249 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004250 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01004251 return return_code;
4252
Willy Tarreau4310d362016-11-02 15:05:56 +01004253 case SRV_IADDR_IP:
4254 ipcpy(&srv->init_addr, &srv->addr);
4255 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004256 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', falling back to configured address.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004257 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau4310d362016-11-02 15:05:56 +01004258 }
Olivier Houchard4e694042017-03-14 20:01:29 +01004259 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01004260
Willy Tarreau25e51522016-11-04 15:10:17 +01004261 default: /* unhandled method */
4262 break;
4263 }
4264 }
4265
4266 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004267 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004268 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau25e51522016-11-04 15:10:17 +01004269 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01004270 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004271 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004272 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004273 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004274
4275 return_code |= ERR_ALERT | ERR_FATAL;
4276 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01004277out:
4278 srv_set_dyncookie(srv);
4279 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01004280}
4281
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004282/*
4283 * This function parses all backends and all servers within each backend
4284 * and performs servers' addr resolution based on information provided by:
4285 * - configuration file
4286 * - server-state file (states provided by an 'old' haproxy process)
4287 *
4288 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
4289 */
4290int srv_init_addr(void)
4291{
4292 struct proxy *curproxy;
4293 int return_code = 0;
4294
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004295 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004296 while (curproxy) {
4297 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004298
4299 /* servers are in backend only */
Amaury Denoyelle96a4ff12021-01-06 14:28:50 +01004300 if (!(curproxy->cap & PR_CAP_BE) || curproxy->disabled)
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004301 goto srv_init_addr_next;
4302
Willy Tarreau25e51522016-11-04 15:10:17 +01004303 for (srv = curproxy->srv; srv; srv = srv->next)
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004304 if (srv->hostname || srv->srvrq)
Willy Tarreau3d609a72017-09-06 14:22:45 +02004305 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004306
4307 srv_init_addr_next:
4308 curproxy = curproxy->next;
4309 }
4310
4311 return return_code;
4312}
4313
Willy Tarreau46b7f532018-08-21 11:54:26 +02004314/*
4315 * Must be called with the server lock held.
4316 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004317const 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 +02004318{
4319
Willy Tarreau83061a82018-07-13 11:56:34 +02004320 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004321
4322 msg = get_trash_chunk();
4323 chunk_reset(msg);
4324
Olivier Houchard8da5f982017-08-04 18:35:36 +02004325 if (server->hostname && !strcmp(fqdn, server->hostname)) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004326 chunk_appendf(msg, "no need to change the FDQN");
4327 goto out;
4328 }
4329
4330 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4331 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4332 goto out;
4333 }
4334
4335 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4336 server->proxy->id, server->id, server->hostname, fqdn);
4337
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004338 if (srv_set_fqdn(server, fqdn, dns_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004339 chunk_reset(msg);
4340 chunk_appendf(msg, "could not update %s/%s FQDN",
4341 server->proxy->id, server->id);
4342 goto out;
4343 }
4344
4345 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004346 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004347
4348 out:
4349 if (updater)
4350 chunk_appendf(msg, " by '%s'", updater);
4351 chunk_appendf(msg, "\n");
4352
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004353 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004354}
4355
4356
Willy Tarreau21b069d2016-11-23 17:15:08 +01004357/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4358 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004359 * 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 +01004360 * used for CLI commands requiring a server name.
4361 * Important: the <arg> is modified to remove the '/'.
4362 */
4363struct server *cli_find_server(struct appctx *appctx, char *arg)
4364{
4365 struct proxy *px;
4366 struct server *sv;
4367 char *line;
4368
4369 /* split "backend/server" and make <line> point to server */
4370 for (line = arg; *line; line++)
4371 if (*line == '/') {
4372 *line++ = '\0';
4373 break;
4374 }
4375
4376 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004377 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004378 return NULL;
4379 }
4380
4381 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004382 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004383 return NULL;
4384 }
4385
Willy Tarreauc3914d42020-09-24 08:39:22 +02004386 if (px->disabled) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004387 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004388 return NULL;
4389 }
4390
4391 return sv;
4392}
4393
William Lallemand222baf22016-11-19 02:00:33 +01004394
Willy Tarreau46b7f532018-08-21 11:54:26 +02004395/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004396static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004397{
4398 struct server *sv;
4399 const char *warning;
4400
4401 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4402 return 1;
4403
4404 sv = cli_find_server(appctx, args[2]);
4405 if (!sv)
4406 return 1;
4407
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004408 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02004409
William Lallemand222baf22016-11-19 02:00:33 +01004410 if (strcmp(args[3], "weight") == 0) {
4411 warning = server_parse_weight_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004412 if (warning)
4413 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004414 }
4415 else if (strcmp(args[3], "state") == 0) {
4416 if (strcmp(args[4], "ready") == 0)
4417 srv_adm_set_ready(sv);
4418 else if (strcmp(args[4], "drain") == 0)
4419 srv_adm_set_drain(sv);
4420 else if (strcmp(args[4], "maint") == 0)
4421 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02004422 else
4423 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004424 }
4425 else if (strcmp(args[3], "health") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004426 if (sv->track)
4427 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004428 else if (strcmp(args[4], "up") == 0) {
4429 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004430 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004431 }
4432 else if (strcmp(args[4], "stopping") == 0) {
4433 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004434 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004435 }
4436 else if (strcmp(args[4], "down") == 0) {
4437 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004438 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004439 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004440 else
4441 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004442 }
4443 else if (strcmp(args[3], "agent") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004444 if (!(sv->agent.state & CHK_ST_ENABLED))
4445 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004446 else if (strcmp(args[4], "up") == 0) {
4447 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004448 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004449 }
4450 else if (strcmp(args[4], "down") == 0) {
4451 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004452 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004453 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004454 else
4455 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004456 }
Misiek2da082d2017-01-09 09:40:42 +01004457 else if (strcmp(args[3], "agent-addr") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004458 if (!(sv->agent.state & CHK_ST_ENABLED))
4459 cli_err(appctx, "agent checks are not enabled on this server.\n");
4460 else if (str2ip(args[4], &sv->agent.addr) == NULL)
4461 cli_err(appctx, "incorrect addr address given for agent.\n");
Misiek2da082d2017-01-09 09:40:42 +01004462 }
4463 else if (strcmp(args[3], "agent-send") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004464 if (!(sv->agent.state & CHK_ST_ENABLED))
4465 cli_err(appctx, "agent checks are not enabled on this server.\n");
4466 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004467 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004468 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004469 }
4470 }
William Lallemand222baf22016-11-19 02:00:33 +01004471 else if (strcmp(args[3], "check-port") == 0) {
4472 int i = 0;
4473 if (strl2irc(args[4], strlen(args[4]), &i) != 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004474 cli_err(appctx, "'set server <srv> check-port' expects an integer as argument.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004475 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004476 }
4477 if ((i < 0) || (i > 65535)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004478 cli_err(appctx, "provided port is not valid.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004479 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004480 }
4481 /* prevent the update of port to 0 if MAPPORTS are in use */
4482 if ((sv->flags & SRV_F_MAPPORTS) && (i == 0)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004483 cli_err(appctx, "can't unset 'port' since MAPPORTS is in use.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004484 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004485 }
4486 sv->check.port = i;
Willy Tarreau9d008692019-08-09 11:21:01 +02004487 cli_msg(appctx, LOG_NOTICE, "health check port updated.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004488 }
4489 else if (strcmp(args[3], "addr") == 0) {
4490 char *addr = NULL;
4491 char *port = NULL;
4492 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004493 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004494 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004495 }
4496 else {
4497 addr = args[4];
4498 }
4499 if (strcmp(args[5], "port") == 0) {
4500 port = args[6];
4501 }
4502 warning = update_server_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004503 if (warning)
4504 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004505 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
4506 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004507 else if (strcmp(args[3], "fqdn") == 0) {
4508 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004509 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004510 goto out_unlock;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004511 }
Baptiste Assmann13a92322019-06-07 09:40:55 +02004512 /* ensure runtime resolver will process this new fqdn */
4513 if (sv->flags & SRV_F_NO_RESOLUTION) {
4514 sv->flags &= ~SRV_F_NO_RESOLUTION;
4515 }
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004516 warning = update_server_fqdn(sv, args[4], "stats socket command", 0);
Willy Tarreau9d008692019-08-09 11:21:01 +02004517 if (warning)
4518 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004519 }
William Lallemand222baf22016-11-19 02:00:33 +01004520 else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004521 cli_err(appctx,
4522 "'set server <srv>' only supports 'agent', 'health', 'state',"
4523 " 'weight', 'addr', 'fqdn' and 'check-port'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004524 }
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004525 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004526 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004527 return 1;
4528}
4529
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004530static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004531{
4532 struct stream_interface *si = appctx->owner;
4533 struct proxy *px;
4534 struct server *sv;
4535 char *line;
4536
4537
4538 /* split "backend/server" and make <line> point to server */
4539 for (line = args[2]; *line; line++)
4540 if (*line == '/') {
4541 *line++ = '\0';
4542 break;
4543 }
4544
Willy Tarreau9d008692019-08-09 11:21:01 +02004545 if (!*line)
4546 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004547
Willy Tarreau9d008692019-08-09 11:21:01 +02004548 if (!get_backend_server(args[2], line, &px, &sv))
4549 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004550
4551 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004552 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4553 sv->iweight);
4554 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004555 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004556 return 0;
4557 }
William Lallemand6b160942016-11-22 12:34:35 +01004558 return 1;
4559}
4560
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004561/* Parse a "set weight" command.
4562 *
4563 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004564 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004565static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004566{
4567 struct server *sv;
4568 const char *warning;
4569
4570 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4571 return 1;
4572
4573 sv = cli_find_server(appctx, args[2]);
4574 if (!sv)
4575 return 1;
4576
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004577 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4578
William Lallemand6b160942016-11-22 12:34:35 +01004579 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004580 if (warning)
4581 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004582
4583 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4584
William Lallemand6b160942016-11-22 12:34:35 +01004585 return 1;
4586}
4587
Willy Tarreau46b7f532018-08-21 11:54:26 +02004588/* parse a "set maxconn server" command. It always returns 1.
4589 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004590 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004591 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004592static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004593{
4594 struct server *sv;
4595 const char *warning;
4596
4597 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4598 return 1;
4599
4600 sv = cli_find_server(appctx, args[3]);
4601 if (!sv)
4602 return 1;
4603
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004604 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4605
Willy Tarreaub8026272016-11-23 11:26:56 +01004606 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004607 if (warning)
4608 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004609
4610 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4611
Willy Tarreaub8026272016-11-23 11:26:56 +01004612 return 1;
4613}
William Lallemand6b160942016-11-22 12:34:35 +01004614
Willy Tarreau46b7f532018-08-21 11:54:26 +02004615/* parse a "disable agent" command. It always returns 1.
4616 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004617 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004618 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004619static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004620{
4621 struct server *sv;
4622
4623 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4624 return 1;
4625
4626 sv = cli_find_server(appctx, args[2]);
4627 if (!sv)
4628 return 1;
4629
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004630 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004631 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004632 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004633 return 1;
4634}
4635
Willy Tarreau46b7f532018-08-21 11:54:26 +02004636/* parse a "disable health" command. It always returns 1.
4637 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004638 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004639 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004640static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004641{
4642 struct server *sv;
4643
4644 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4645 return 1;
4646
4647 sv = cli_find_server(appctx, args[2]);
4648 if (!sv)
4649 return 1;
4650
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004651 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004652 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004653 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004654 return 1;
4655}
4656
Willy Tarreau46b7f532018-08-21 11:54:26 +02004657/* parse a "disable server" command. It always returns 1.
4658 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004659 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004660 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004661static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004662{
4663 struct server *sv;
4664
4665 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4666 return 1;
4667
4668 sv = cli_find_server(appctx, args[2]);
4669 if (!sv)
4670 return 1;
4671
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004672 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004673 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004674 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004675 return 1;
4676}
4677
Willy Tarreau46b7f532018-08-21 11:54:26 +02004678/* parse a "enable agent" command. It always returns 1.
4679 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004680 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004681 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004682static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004683{
4684 struct server *sv;
4685
4686 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4687 return 1;
4688
4689 sv = cli_find_server(appctx, args[2]);
4690 if (!sv)
4691 return 1;
4692
Willy Tarreau9d008692019-08-09 11:21:01 +02004693 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4694 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004695
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004696 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004697 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004698 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004699 return 1;
4700}
4701
Willy Tarreau46b7f532018-08-21 11:54:26 +02004702/* parse a "enable health" command. It always returns 1.
4703 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004704 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004705 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004706static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004707{
4708 struct server *sv;
4709
4710 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4711 return 1;
4712
4713 sv = cli_find_server(appctx, args[2]);
4714 if (!sv)
4715 return 1;
4716
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004717 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004718 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004719 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004720 return 1;
4721}
4722
Willy Tarreau46b7f532018-08-21 11:54:26 +02004723/* parse a "enable server" command. It always returns 1.
4724 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004725 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004726 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004727static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004728{
4729 struct server *sv;
4730
4731 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4732 return 1;
4733
4734 sv = cli_find_server(appctx, args[2]);
4735 if (!sv)
4736 return 1;
4737
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004738 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004739 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004740 if (!(sv->flags & SRV_F_COOKIESET)
4741 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4742 sv->cookie)
4743 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004744 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004745 return 1;
4746}
4747
William Lallemand222baf22016-11-19 02:00:33 +01004748/* register cli keywords */
4749static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004750 { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004751 { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004752 { { "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 +01004753 { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004754 { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004755 { { "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 +01004756 { { "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 +01004757 { { "set", "server", NULL }, "set server : change a server's state, weight or address", cli_parse_set_server },
William Lallemand6b160942016-11-22 12:34:35 +01004758 { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight },
4759 { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight },
4760
William Lallemand222baf22016-11-19 02:00:33 +01004761 {{},}
4762}};
4763
Willy Tarreau0108d902018-11-25 19:14:37 +01004764INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004765
Emeric Brun64cc49c2017-10-03 14:46:45 +02004766/*
4767 * This function applies server's status changes, it is
4768 * is designed to be called asynchronously.
4769 *
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004770 * Must be called with the server lock held. This may also be called at init
4771 * time as the result of parsing the state file, in which case no lock will be
4772 * held, and the server's warmup task can be null.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004773 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004774static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004775{
4776 struct check *check = &s->check;
4777 int xferred;
4778 struct proxy *px = s->proxy;
4779 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4780 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4781 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004782 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004783
Emeric Brun64cc49c2017-10-03 14:46:45 +02004784 /* If currently main is not set we try to apply pending state changes */
4785 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4786 int next_admin;
4787
4788 /* Backup next admin */
4789 next_admin = s->next_admin;
4790
4791 /* restore current admin state */
4792 s->next_admin = s->cur_admin;
4793
4794 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4795 s->last_change = now.tv_sec;
4796 if (s->proxy->lbprm.set_server_status_down)
4797 s->proxy->lbprm.set_server_status_down(s);
4798
4799 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4800 srv_shutdown_streams(s, SF_ERR_DOWN);
4801
4802 /* we might have streams queued on this server and waiting for
4803 * a connection. Those which are redispatchable will be queued
4804 * to another server or to the proxy itself.
4805 */
4806 xferred = pendconn_redistribute(s);
4807
4808 tmptrash = alloc_trash_chunk();
4809 if (tmptrash) {
4810 chunk_printf(tmptrash,
4811 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4812 s->proxy->id, s->id);
4813
Emeric Brun5a133512017-10-19 14:42:30 +02004814 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004815 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004816
4817 /* we don't send an alert if the server was previously paused */
4818 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004819 send_log(s->proxy, log_level, "%s.\n",
4820 tmptrash->area);
4821 send_email_alert(s, log_level, "%s",
4822 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004823 free_trash_chunk(tmptrash);
4824 tmptrash = NULL;
4825 }
4826 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4827 set_backend_down(s->proxy);
4828
4829 s->counters.down_trans++;
4830 }
4831 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4832 s->last_change = now.tv_sec;
4833 if (s->proxy->lbprm.set_server_status_down)
4834 s->proxy->lbprm.set_server_status_down(s);
4835
4836 /* we might have streams queued on this server and waiting for
4837 * a connection. Those which are redispatchable will be queued
4838 * to another server or to the proxy itself.
4839 */
4840 xferred = pendconn_redistribute(s);
4841
4842 tmptrash = alloc_trash_chunk();
4843 if (tmptrash) {
4844 chunk_printf(tmptrash,
4845 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4846 s->proxy->id, s->id);
4847
Emeric Brun5a133512017-10-19 14:42:30 +02004848 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004849
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004850 ha_warning("%s.\n", tmptrash->area);
4851 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4852 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004853 free_trash_chunk(tmptrash);
4854 tmptrash = NULL;
4855 }
4856
4857 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4858 set_backend_down(s->proxy);
4859 }
4860 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4861 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4862 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4863 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4864 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4865 s->proxy->last_change = now.tv_sec;
4866 }
4867
Amaury Denoyellefe2bf092020-10-29 15:59:04 +01004868 if (s->cur_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
Emeric Brun64cc49c2017-10-03 14:46:45 +02004869 s->down_time += now.tv_sec - s->last_change;
4870
4871 s->last_change = now.tv_sec;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004872 if (s->next_state == SRV_ST_STARTING && s->warmup)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004873 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4874
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004875 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004876 /* now propagate the status change to any LB algorithms */
4877 if (px->lbprm.update_server_eweight)
4878 px->lbprm.update_server_eweight(s);
4879 else if (srv_willbe_usable(s)) {
4880 if (px->lbprm.set_server_status_up)
4881 px->lbprm.set_server_status_up(s);
4882 }
4883 else {
4884 if (px->lbprm.set_server_status_down)
4885 px->lbprm.set_server_status_down(s);
4886 }
4887
4888 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4889 * and it's not a backup server and its effective weight is > 0,
4890 * then it can accept new connections, so we shut down all streams
4891 * on all backup servers.
4892 */
4893 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4894 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4895 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4896
4897 /* check if we can handle some connections queued at the proxy. We
4898 * will take as many as we can handle.
4899 */
4900 xferred = pendconn_grab_from_px(s);
4901
4902 tmptrash = alloc_trash_chunk();
4903 if (tmptrash) {
4904 chunk_printf(tmptrash,
4905 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
4906 s->proxy->id, s->id);
4907
Emeric Brun5a133512017-10-19 14:42:30 +02004908 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004909 ha_warning("%s.\n", tmptrash->area);
4910 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4911 tmptrash->area);
4912 send_email_alert(s, LOG_NOTICE, "%s",
4913 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004914 free_trash_chunk(tmptrash);
4915 tmptrash = NULL;
4916 }
4917
4918 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4919 set_backend_down(s->proxy);
4920 }
4921 else if (s->cur_eweight != s->next_eweight) {
4922 /* now propagate the status change to any LB algorithms */
4923 if (px->lbprm.update_server_eweight)
4924 px->lbprm.update_server_eweight(s);
4925 else if (srv_willbe_usable(s)) {
4926 if (px->lbprm.set_server_status_up)
4927 px->lbprm.set_server_status_up(s);
4928 }
4929 else {
4930 if (px->lbprm.set_server_status_down)
4931 px->lbprm.set_server_status_down(s);
4932 }
4933
4934 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4935 set_backend_down(s->proxy);
4936 }
4937
4938 s->next_admin = next_admin;
4939 }
4940
Emeric Brun5a133512017-10-19 14:42:30 +02004941 /* reset operational state change */
4942 *s->op_st_chg.reason = 0;
4943 s->op_st_chg.status = s->op_st_chg.code = -1;
4944 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004945
4946 /* Now we try to apply pending admin changes */
4947
4948 /* Maintenance must also disable health checks */
4949 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
4950 if (s->check.state & CHK_ST_ENABLED) {
4951 s->check.state |= CHK_ST_PAUSED;
4952 check->health = 0;
4953 }
4954
4955 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02004956 tmptrash = alloc_trash_chunk();
4957 if (tmptrash) {
4958 chunk_printf(tmptrash,
4959 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
4960 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4961 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02004962
Olivier Houchard796a2b32017-10-24 17:42:47 +02004963 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02004964
Olivier Houchard796a2b32017-10-24 17:42:47 +02004965 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004966 ha_warning("%s.\n", tmptrash->area);
4967 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4968 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02004969 }
4970 free_trash_chunk(tmptrash);
4971 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004972 }
Emeric Brun8f298292017-12-06 16:47:17 +01004973 /* commit new admin status */
4974
4975 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004976 }
4977 else { /* server was still running */
4978 check->health = 0; /* failure */
4979 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01004980
4981 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004982 if (s->proxy->lbprm.set_server_status_down)
4983 s->proxy->lbprm.set_server_status_down(s);
4984
Emeric Brun64cc49c2017-10-03 14:46:45 +02004985 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4986 srv_shutdown_streams(s, SF_ERR_DOWN);
4987
William Dauchy6318d332020-05-02 21:52:36 +02004988 /* force connection cleanup on the given server */
4989 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004990 /* we might have streams queued on this server and waiting for
4991 * a connection. Those which are redispatchable will be queued
4992 * to another server or to the proxy itself.
4993 */
4994 xferred = pendconn_redistribute(s);
4995
4996 tmptrash = alloc_trash_chunk();
4997 if (tmptrash) {
4998 chunk_printf(tmptrash,
4999 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
5000 s->flags & SRV_F_BACKUP ? "Backup " : "",
5001 s->proxy->id, s->id,
5002 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5003
5004 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
5005
5006 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005007 ha_warning("%s.\n", tmptrash->area);
5008 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
5009 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005010 }
5011 free_trash_chunk(tmptrash);
5012 tmptrash = NULL;
5013 }
5014 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5015 set_backend_down(s->proxy);
5016
5017 s->counters.down_trans++;
5018 }
5019 }
5020 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
5021 /* OK here we're leaving maintenance, we have many things to check,
5022 * because the server might possibly be coming back up depending on
5023 * its state. In practice, leaving maintenance means that we should
5024 * immediately turn to UP (more or less the slowstart) under the
5025 * following conditions :
5026 * - server is neither checked nor tracked
5027 * - server tracks another server which is not checked
5028 * - server tracks another server which is already up
5029 * Which sums up as something simpler :
5030 * "either the tracking server is up or the server's checks are disabled
5031 * or up". Otherwise we only re-enable health checks. There's a special
5032 * case associated to the stopping state which can be inherited. Note
5033 * that the server might still be in drain mode, which is naturally dealt
5034 * with by the lower level functions.
5035 */
5036
5037 if (s->check.state & CHK_ST_ENABLED) {
5038 s->check.state &= ~CHK_ST_PAUSED;
5039 check->health = check->rise; /* start OK but check immediately */
5040 }
5041
5042 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
5043 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
5044 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
5045 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
5046 s->next_state = SRV_ST_STOPPING;
5047 }
5048 else {
5049 s->next_state = SRV_ST_STARTING;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005050 if (s->slowstart > 0) {
5051 if (s->warmup)
5052 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5053 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005054 else
5055 s->next_state = SRV_ST_RUNNING;
5056 }
5057
5058 }
5059
5060 tmptrash = alloc_trash_chunk();
5061 if (tmptrash) {
5062 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5063 chunk_printf(tmptrash,
5064 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
5065 s->flags & SRV_F_BACKUP ? "Backup " : "",
5066 s->proxy->id, s->id,
5067 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5068 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5069 }
5070 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5071 chunk_printf(tmptrash,
5072 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
5073 s->flags & SRV_F_BACKUP ? "Backup " : "",
5074 s->proxy->id, s->id, s->hostname,
5075 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5076 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5077 }
5078 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5079 chunk_printf(tmptrash,
5080 "%sServer %s/%s is %s/%s (leaving maintenance)",
5081 s->flags & SRV_F_BACKUP ? "Backup " : "",
5082 s->proxy->id, s->id,
5083 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5084 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5085 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005086 ha_warning("%s.\n", tmptrash->area);
5087 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5088 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005089 free_trash_chunk(tmptrash);
5090 tmptrash = NULL;
5091 }
5092
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005093 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005094 /* now propagate the status change to any LB algorithms */
5095 if (px->lbprm.update_server_eweight)
5096 px->lbprm.update_server_eweight(s);
5097 else if (srv_willbe_usable(s)) {
5098 if (px->lbprm.set_server_status_up)
5099 px->lbprm.set_server_status_up(s);
5100 }
5101 else {
5102 if (px->lbprm.set_server_status_down)
5103 px->lbprm.set_server_status_down(s);
5104 }
5105
5106 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5107 set_backend_down(s->proxy);
5108
Willy Tarreau6a78e612018-08-07 10:14:53 +02005109 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5110 * and it's not a backup server and its effective weight is > 0,
5111 * then it can accept new connections, so we shut down all streams
5112 * on all backup servers.
5113 */
5114 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5115 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5116 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5117
5118 /* check if we can handle some connections queued at the proxy. We
5119 * will take as many as we can handle.
5120 */
5121 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005122 }
5123 else if (s->next_admin & SRV_ADMF_MAINT) {
5124 /* remaining in maintenance mode, let's inform precisely about the
5125 * situation.
5126 */
5127 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5128 tmptrash = alloc_trash_chunk();
5129 if (tmptrash) {
5130 chunk_printf(tmptrash,
5131 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5132 s->flags & SRV_F_BACKUP ? "Backup " : "",
5133 s->proxy->id, s->id);
5134
5135 if (s->track) /* normally it's mandatory here */
5136 chunk_appendf(tmptrash, " via %s/%s",
5137 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005138 ha_warning("%s.\n", tmptrash->area);
5139 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5140 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005141 free_trash_chunk(tmptrash);
5142 tmptrash = NULL;
5143 }
5144 }
5145 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5146 tmptrash = alloc_trash_chunk();
5147 if (tmptrash) {
5148 chunk_printf(tmptrash,
5149 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5150 s->flags & SRV_F_BACKUP ? "Backup " : "",
5151 s->proxy->id, s->id, s->hostname);
5152
5153 if (s->track) /* normally it's mandatory here */
5154 chunk_appendf(tmptrash, " via %s/%s",
5155 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005156 ha_warning("%s.\n", tmptrash->area);
5157 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5158 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005159 free_trash_chunk(tmptrash);
5160 tmptrash = NULL;
5161 }
5162 }
5163 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5164 tmptrash = alloc_trash_chunk();
5165 if (tmptrash) {
5166 chunk_printf(tmptrash,
5167 "%sServer %s/%s remains in forced maintenance",
5168 s->flags & SRV_F_BACKUP ? "Backup " : "",
5169 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005170 ha_warning("%s.\n", tmptrash->area);
5171 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5172 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005173 free_trash_chunk(tmptrash);
5174 tmptrash = NULL;
5175 }
5176 }
5177 /* don't report anything when leaving drain mode and remaining in maintenance */
5178
5179 s->cur_admin = s->next_admin;
5180 }
5181
5182 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5183 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5184 /* drain state is applied only if not yet in maint */
5185
5186 s->last_change = now.tv_sec;
5187 if (px->lbprm.set_server_status_down)
5188 px->lbprm.set_server_status_down(s);
5189
5190 /* we might have streams queued on this server and waiting for
5191 * a connection. Those which are redispatchable will be queued
5192 * to another server or to the proxy itself.
5193 */
5194 xferred = pendconn_redistribute(s);
5195
5196 tmptrash = alloc_trash_chunk();
5197 if (tmptrash) {
5198 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5199 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5200 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5201
5202 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5203
5204 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005205 ha_warning("%s.\n", tmptrash->area);
5206 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5207 tmptrash->area);
5208 send_email_alert(s, LOG_NOTICE, "%s",
5209 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005210 }
5211 free_trash_chunk(tmptrash);
5212 tmptrash = NULL;
5213 }
5214
5215 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5216 set_backend_down(s->proxy);
5217 }
5218 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5219 /* OK completely leaving drain mode */
5220 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5221 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5222 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5223 s->proxy->last_change = now.tv_sec;
5224 }
5225
5226 if (s->last_change < now.tv_sec) // ignore negative times
5227 s->down_time += now.tv_sec - s->last_change;
5228 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005229 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005230
5231 tmptrash = alloc_trash_chunk();
5232 if (tmptrash) {
5233 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5234 chunk_printf(tmptrash,
5235 "%sServer %s/%s is %s (leaving forced drain)",
5236 s->flags & SRV_F_BACKUP ? "Backup " : "",
5237 s->proxy->id, s->id,
5238 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5239 }
5240 else {
5241 chunk_printf(tmptrash,
5242 "%sServer %s/%s is %s (leaving drain)",
5243 s->flags & SRV_F_BACKUP ? "Backup " : "",
5244 s->proxy->id, s->id,
5245 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5246 if (s->track) /* normally it's mandatory here */
5247 chunk_appendf(tmptrash, " via %s/%s",
5248 s->track->proxy->id, s->track->id);
5249 }
5250
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005251 ha_warning("%s.\n", tmptrash->area);
5252 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5253 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005254 free_trash_chunk(tmptrash);
5255 tmptrash = NULL;
5256 }
5257
5258 /* now propagate the status change to any LB algorithms */
5259 if (px->lbprm.update_server_eweight)
5260 px->lbprm.update_server_eweight(s);
5261 else if (srv_willbe_usable(s)) {
5262 if (px->lbprm.set_server_status_up)
5263 px->lbprm.set_server_status_up(s);
5264 }
5265 else {
5266 if (px->lbprm.set_server_status_down)
5267 px->lbprm.set_server_status_down(s);
5268 }
5269 }
5270 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5271 /* remaining in drain mode after removing one of its flags */
5272
5273 tmptrash = alloc_trash_chunk();
5274 if (tmptrash) {
5275 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5276 chunk_printf(tmptrash,
5277 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5278 s->flags & SRV_F_BACKUP ? "Backup " : "",
5279 s->proxy->id, s->id);
5280
5281 if (s->track) /* normally it's mandatory here */
5282 chunk_appendf(tmptrash, " via %s/%s",
5283 s->track->proxy->id, s->track->id);
5284 }
5285 else {
5286 chunk_printf(tmptrash,
5287 "%sServer %s/%s remains in forced drain mode",
5288 s->flags & SRV_F_BACKUP ? "Backup " : "",
5289 s->proxy->id, s->id);
5290 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005291 ha_warning("%s.\n", tmptrash->area);
5292 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5293 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005294 free_trash_chunk(tmptrash);
5295 tmptrash = NULL;
5296 }
5297
5298 /* commit new admin status */
5299
5300 s->cur_admin = s->next_admin;
5301 }
5302 }
5303
5304 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005305 *s->adm_st_chg_cause = 0;
5306}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005307
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005308struct task *srv_cleanup_toremove_connections(struct task *task, void *context, unsigned short state)
5309{
5310 struct connection *conn;
5311
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005312 while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns,
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005313 struct connection *, list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005314 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005315 }
5316
5317 return task;
5318}
5319
Olivier Houchardff1d0922020-06-29 20:15:59 +02005320/* Move toremove_nb connections from idle_list to toremove_list, -1 means
5321 * moving them all.
5322 * Returns the number of connections moved.
5323 */
5324static int srv_migrate_conns_to_remove(struct mt_list *idle_list, struct mt_list *toremove_list, int toremove_nb)
5325{
5326 struct mt_list *elt1, elt2;
5327 struct connection *conn;
5328 int i = 0;
5329
5330 mt_list_for_each_entry_safe(conn, idle_list, list, elt1, elt2) {
5331 if (toremove_nb != -1 && i >= toremove_nb)
5332 break;
5333 MT_LIST_DEL_SAFE_NOINIT(elt1);
Willy Tarreaude4db172020-07-10 08:10:29 +02005334 MT_LIST_ADDQ(toremove_list, &conn->list);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005335 i++;
5336 }
5337 return i;
5338}
William Dauchy6318d332020-05-02 21:52:36 +02005339/* cleanup connections for a given server
5340 * might be useful when going on forced maintenance or live changing ip/port
5341 */
William Dauchy707ad322020-05-04 13:52:40 +02005342static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005343{
William Dauchy6318d332020-05-02 21:52:36 +02005344 int did_remove;
5345 int i;
William Dauchy6318d332020-05-02 21:52:36 +02005346
Amaury Denoyellec0a2ace2021-01-06 14:28:51 +01005347 /* nothing to do if pool-max-conn is null */
5348 if (!srv->max_idle_conns)
5349 return;
5350
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005351 /* check all threads starting with ours */
William Dauchy6318d332020-05-02 21:52:36 +02005352 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005353 for (i = tid;;) {
William Dauchy6318d332020-05-02 21:52:36 +02005354 did_remove = 0;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005355 if (srv_migrate_conns_to_remove(&srv->idle_conns[i], &idle_conns[i].toremove_conns, -1) > 0)
William Dauchy6318d332020-05-02 21:52:36 +02005356 did_remove = 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005357 if (srv_migrate_conns_to_remove(&srv->safe_conns[i], &idle_conns[i].toremove_conns, -1) > 0)
5358 did_remove = 1;
William Dauchy6318d332020-05-02 21:52:36 +02005359 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005360 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005361
5362 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5363 break;
William Dauchy6318d332020-05-02 21:52:36 +02005364 }
5365 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5366}
5367
Willy Tarreau980855b2019-02-07 14:59:29 +01005368struct task *srv_cleanup_idle_connections(struct task *task, void *context, unsigned short state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005369{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005370 struct server *srv;
5371 struct eb32_node *eb;
5372 int i;
5373 unsigned int next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005374
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005375 next_wakeup = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005376 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5377 while (1) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005378 int exceed_conns;
5379 int to_kill;
5380 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005381
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005382 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5383 if (!eb) {
5384 /* we might have reached the end of the tree, typically because
5385 * <now_ms> is in the first half and we're first scanning the last
5386 * half. Let's loop back to the beginning of the tree now.
5387 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005388
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005389 eb = eb32_first(&idle_conn_srv);
5390 if (likely(!eb))
5391 break;
5392 }
5393 if (tick_is_lt(now_ms, eb->key)) {
5394 /* timer not expired yet, revisit it later */
5395 next_wakeup = eb->key;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005396 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005397 }
5398 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005399
5400 /* Calculate how many idle connections we want to kill :
5401 * we want to remove half the difference between the total
5402 * of established connections (used or idle) and the max
5403 * number of used connections.
5404 */
5405 curr_idle = srv->curr_idle_conns;
5406 if (curr_idle == 0)
5407 goto remove;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005408 exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005409 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005410
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005411 srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns) / 2;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005412 if (srv->est_need_conns < srv->max_used_conns)
5413 srv->est_need_conns = srv->max_used_conns;
5414
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005415 srv->max_used_conns = srv->curr_used_conns;
5416
Willy Tarreau18ed7892020-07-02 19:05:30 +02005417 if (exceed_conns <= 0)
5418 goto remove;
5419
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005420 /* check all threads starting with ours */
5421 for (i = tid;;) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005422 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005423 int j;
5424 int did_remove = 0;
5425
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005426 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5427 curr_idle + 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005428
5429 j = srv_migrate_conns_to_remove(&srv->idle_conns[i], &idle_conns[i].toremove_conns, max_conn);
5430 if (j > 0)
5431 did_remove = 1;
5432 if (max_conn - j > 0 &&
5433 srv_migrate_conns_to_remove(&srv->safe_conns[i], &idle_conns[i].toremove_conns, max_conn - j) > 0)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005434 did_remove = 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005435
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005436 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005437 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005438
5439 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5440 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005441 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005442remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005443 eb32_delete(&srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005444
5445 if (srv->curr_idle_conns) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005446 /* There are still more idle connections, add the
5447 * server back in the tree.
5448 */
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005449 srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005450 eb32_insert(&idle_conn_srv, &srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005451 next_wakeup = tick_first(next_wakeup, srv->idle_node.key);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005452 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005453 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005454 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5455
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005456 task->expire = next_wakeup;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005457 return task;
5458}
Olivier Houchard88698d92019-04-16 19:07:22 +02005459
Willy Tarreau76cc6992020-07-01 18:49:24 +02005460/* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */
5461static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx,
5462 struct proxy *defpx, const char *file, int line,
5463 char **err)
5464{
5465 if (too_many_args(1, args, err, NULL))
5466 return -1;
5467
5468 if (strcmp(args[1], "on") == 0)
5469 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
5470 else if (strcmp(args[1], "off") == 0)
5471 global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
5472 else {
5473 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
5474 return -1;
5475 }
5476 return 0;
5477}
5478
Olivier Houchard88698d92019-04-16 19:07:22 +02005479/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5480static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
5481 struct proxy *defpx, const char *file, int line,
5482 char **err)
5483{
5484 int arg = -1;
5485
5486 if (too_many_args(1, args, err, NULL))
5487 return -1;
5488
5489 if (*(args[1]) != 0)
5490 arg = atoi(args[1]);
5491
5492 if (arg < 0 || arg > 100) {
5493 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5494 return -1;
5495 }
5496
5497 if (args[0][10] == 'h')
5498 global.tune.pool_high_ratio = arg;
5499 else
5500 global.tune.pool_low_ratio = arg;
5501 return 0;
5502}
5503
5504/* config keyword parsers */
5505static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau76cc6992020-07-01 18:49:24 +02005506 { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared },
Olivier Houchard88698d92019-04-16 19:07:22 +02005507 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5508 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5509 { 0, NULL, NULL }
5510}};
5511
5512INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5513
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005514/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005515 * Local variables:
5516 * c-indent-level: 8
5517 * c-basic-offset: 8
5518 * End:
5519 */