blob: 911085eb46d41886c454b466d2a4d96ce8fed955 [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);
Remi Tricot-Le Bretonaf821672021-05-12 09:44:06 +0200677 if (!newsrv->conn_src.sport_range) {
678 ha_alert("Server '%s': Out of memory (sport_range)\n", args[0]);
679 goto err;
680 }
Frédéric Lécailledba97072017-03-17 15:33:50 +0100681 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
682 newsrv->conn_src.sport_range->ports[i] = port_low + i;
683 }
684
685 *cur_arg += 2;
686 while (*(args[*cur_arg])) {
687 if (!strcmp(args[*cur_arg], "usesrc")) { /* address to use outside */
688#if defined(CONFIG_HAP_TRANSPARENT)
689 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100690 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
691 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +0100692 goto err;
693 }
694 if (!strcmp(args[*cur_arg + 1], "client")) {
695 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
696 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
697 }
698 else if (!strcmp(args[*cur_arg + 1], "clientip")) {
699 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
700 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
701 }
702 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
703 char *name, *end;
704
705 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +0100706 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100707 name++;
708
709 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +0100710 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +0100711 end++;
712
713 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
714 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
715 free(newsrv->conn_src.bind_hdr_name);
716 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
Remi Tricot-Le Bretonaf821672021-05-12 09:44:06 +0200717 if (!newsrv->conn_src.bind_hdr_name) {
718 ha_alert("Server '%s': Out of memory (bind_hdr_name)\n", args[0]);
719 goto err;
720 }
Frédéric Lécailledba97072017-03-17 15:33:50 +0100721 newsrv->conn_src.bind_hdr_len = end - name;
722 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
723 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
724 newsrv->conn_src.bind_hdr_occ = -1;
725
726 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +0100727 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100728 end++;
729 if (*end == ',') {
730 end++;
731 name = end;
732 if (*end == '-')
733 end++;
Willy Tarreau90807112020-02-25 08:16:33 +0100734 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100735 end++;
736 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
737 }
738
739 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100740 ha_alert("usesrc hdr_ip(name,num) does not support negative"
741 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100742 goto err;
743 }
744 }
745 else {
746 struct sockaddr_storage *sk;
747 int port1, port2;
748
749 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200750 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL,
751 &errmsg, NULL, NULL,
752 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100753 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100754 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100755 goto err;
756 }
757
Frédéric Lécailledba97072017-03-17 15:33:50 +0100758 newsrv->conn_src.tproxy_addr = *sk;
759 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
760 }
761 global.last_checks |= LSTCHK_NETADM;
762 *cur_arg += 2;
763 continue;
764#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100765 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 +0100766 goto err;
767#endif /* defined(CONFIG_HAP_TRANSPARENT) */
768 } /* "usesrc" */
769
770 if (!strcmp(args[*cur_arg], "interface")) { /* specifically bind to this interface */
771#ifdef SO_BINDTODEVICE
772 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100773 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100774 goto err;
775 }
776 free(newsrv->conn_src.iface_name);
777 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
778 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
779 global.last_checks |= LSTCHK_NETADM;
780#else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100781 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100782 goto err;
783#endif
784 *cur_arg += 2;
785 continue;
786 }
787 /* this keyword in not an option of "source" */
788 break;
789 } /* while */
790
791 return 0;
792
793 err:
794 free(errmsg);
795 return ERR_ALERT | ERR_FATAL;
796}
797
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100798/* Parse the "stick" server keyword */
799static int srv_parse_stick(char **args, int *cur_arg,
800 struct proxy *curproxy, struct server *newsrv, char **err)
801{
802 newsrv->flags &= ~SRV_F_NON_STICK;
803 return 0;
804}
805
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100806/* Parse the "track" server keyword */
807static int srv_parse_track(char **args, int *cur_arg,
808 struct proxy *curproxy, struct server *newsrv, char **err)
809{
810 char *arg;
811
812 arg = args[*cur_arg + 1];
813 if (!*arg) {
814 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
815 return ERR_ALERT | ERR_FATAL;
816 }
817
818 free(newsrv->trackit);
819 newsrv->trackit = strdup(arg);
820
821 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800822}
823
824/* Parse the "socks4" server keyword */
825static int srv_parse_socks4(char **args, int *cur_arg,
826 struct proxy *curproxy, struct server *newsrv, char **err)
827{
828 char *errmsg;
829 int port_low, port_high;
830 struct sockaddr_storage *sk;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800831
832 errmsg = NULL;
833
834 if (!*args[*cur_arg + 1]) {
835 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
836 goto err;
837 }
838
839 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200840 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
841 &errmsg, NULL, NULL,
842 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT);
Alexander Liu2a54bb72019-05-22 19:44:48 +0800843 if (!sk) {
844 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
845 goto err;
846 }
847
Alexander Liu2a54bb72019-05-22 19:44:48 +0800848 newsrv->flags |= SRV_F_SOCKS4_PROXY;
849 newsrv->socks4_addr = *sk;
850
Alexander Liu2a54bb72019-05-22 19:44:48 +0800851 return 0;
852
853 err:
854 free(errmsg);
855 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100856}
857
Frédéric Lécailledba97072017-03-17 15:33:50 +0100858
Willy Tarreau034c88c2017-01-23 23:36:45 +0100859/* parse the "tfo" server keyword */
860static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
861{
862 newsrv->flags |= SRV_F_FASTOPEN;
863 return 0;
864}
865
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200866/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +0200867 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200868 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200869 *
870 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200871 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200872void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200873{
Willy Tarreau49e10802021-02-17 13:33:24 +0100874 struct stream *stream;
875 struct mt_list *elt1, elt2;
Willy Tarreau72653c52021-03-04 10:47:54 +0100876 int thr;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200877
Willy Tarreau72653c52021-03-04 10:47:54 +0100878 for (thr = 0; thr < global.nbthread; thr++)
879 mt_list_for_each_entry_safe(stream, &srv->actconns[thr], by_srv, elt1, elt2)
880 if (stream->srv_conn == srv)
881 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200882}
883
884/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +0200885 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200886 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200887 *
888 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200889 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200890void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200891{
892 struct server *srv;
893
894 for (srv = px->srv; srv != NULL; srv = srv->next)
895 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +0200896 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200897}
898
Willy Tarreaubda92272014-05-20 21:55:30 +0200899/* Appends some information to a message string related to a server going UP or
900 * DOWN. If both <forced> and <reason> are null and the server tracks another
901 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +0200902 * If <check> is non-null, an entire string describing the check result will be
903 * appended after a comma and a space (eg: to report some information from the
904 * check that changed the state). In the other case, the string will be built
905 * using the check results stored into the struct server if present.
906 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +0200907 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200908 *
909 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200910 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200911void srv_append_status(struct buffer *msg, struct server *s,
912 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200913{
Emeric Brun5a133512017-10-19 14:42:30 +0200914 short status = s->op_st_chg.status;
915 short code = s->op_st_chg.code;
916 long duration = s->op_st_chg.duration;
917 char *desc = s->op_st_chg.reason;
918
919 if (check) {
920 status = check->status;
921 code = check->code;
922 duration = check->duration;
923 desc = check->desc;
924 }
925
926 if (status != -1) {
927 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
928
929 if (status >= HCHK_STATUS_L57DATA)
930 chunk_appendf(msg, ", code: %d", code);
931
932 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +0200933 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +0200934
935 chunk_appendf(msg, ", info: \"");
936
937 chunk_initlen(&src, desc, 0, strlen(desc));
938 chunk_asciiencode(msg, &src, '"');
939
940 chunk_appendf(msg, "\"");
941 }
942
943 if (duration >= 0)
944 chunk_appendf(msg, ", check duration: %ldms", duration);
945 }
946 else if (desc && *desc) {
947 chunk_appendf(msg, ", %s", desc);
948 }
949 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +0200950 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +0200951 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200952
953 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200954 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200955 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
956 " %d sessions active, %d requeued, %d remaining in queue",
957 s->proxy->srv_act, s->proxy->srv_bck,
958 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
959 s->cur_sess, xferred, s->nbpend);
960 else
961 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
962 " %d sessions requeued, %d total in queue",
963 s->proxy->srv_act, s->proxy->srv_bck,
964 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
965 xferred, s->nbpend);
966 }
967}
968
Emeric Brun5a133512017-10-19 14:42:30 +0200969/* Marks server <s> down, regardless of its checks' statuses. The server is
970 * registered in a list to postpone the counting of the remaining servers on
971 * the proxy and transfers queued streams whenever possible to other servers at
972 * a sync point. Maintenance servers are ignored. It stores the <reason> if
973 * non-null as the reason for going down or the available data from the check
974 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200975 *
976 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200977 */
Emeric Brun5a133512017-10-19 14:42:30 +0200978void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200979{
980 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200981
Emeric Brun64cc49c2017-10-03 14:46:45 +0200982 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200983 return;
984
Emeric Brun52a91d32017-08-31 14:41:55 +0200985 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +0200986 *s->op_st_chg.reason = 0;
987 s->op_st_chg.status = -1;
988 if (reason) {
989 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
990 }
991 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +0100992 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +0200993 s->op_st_chg.code = check->code;
994 s->op_st_chg.status = check->status;
995 s->op_st_chg.duration = check->duration;
996 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200997
Willy Tarreaueeba36b2018-08-21 08:22:26 +0200998 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +0200999 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001000
Emeric Brun9f0b4582017-10-23 14:39:51 +02001001 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001002 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001003 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001004 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001005 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001006}
1007
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001008/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001009 * in maintenance. The server is registered in a list to postpone the counting
1010 * of the remaining servers on the proxy and tries to grab requests from the
1011 * proxy at a sync point. Maintenance servers are ignored. It stores the
1012 * <reason> if non-null as the reason for going down or the available data
1013 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001014 *
1015 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001016 */
Emeric Brun5a133512017-10-19 14:42:30 +02001017void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001018{
1019 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001020
Emeric Brun64cc49c2017-10-03 14:46:45 +02001021 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001022 return;
1023
Emeric Brun52a91d32017-08-31 14:41:55 +02001024 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001025 return;
1026
Emeric Brun52a91d32017-08-31 14:41:55 +02001027 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001028 *s->op_st_chg.reason = 0;
1029 s->op_st_chg.status = -1;
1030 if (reason) {
1031 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1032 }
1033 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001034 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001035 s->op_st_chg.code = check->code;
1036 s->op_st_chg.status = check->status;
1037 s->op_st_chg.duration = check->duration;
1038 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001039
Emeric Brun64cc49c2017-10-03 14:46:45 +02001040 if (s->slowstart <= 0)
1041 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001042
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001043 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001044 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001045
Emeric Brun9f0b4582017-10-23 14:39:51 +02001046 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001047 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001048 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001049 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001050 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001051}
1052
Willy Tarreau8eb77842014-05-21 13:54:57 +02001053/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001054 * isn't in maintenance. The server is registered in a list to postpone the
1055 * counting of the remaining servers on the proxy and tries to grab requests
1056 * from the proxy. Maintenance servers are ignored. It stores the
1057 * <reason> if non-null as the reason for going down or the available data
1058 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001059 * up. Note that it makes use of the trash to build the log strings, so <reason>
1060 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001061 *
1062 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001063 */
Emeric Brun5a133512017-10-19 14:42:30 +02001064void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001065{
1066 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001067
Emeric Brun64cc49c2017-10-03 14:46:45 +02001068 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001069 return;
1070
Emeric Brun52a91d32017-08-31 14:41:55 +02001071 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001072 return;
1073
Emeric Brun52a91d32017-08-31 14:41:55 +02001074 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001075 *s->op_st_chg.reason = 0;
1076 s->op_st_chg.status = -1;
1077 if (reason) {
1078 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1079 }
1080 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001081 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001082 s->op_st_chg.code = check->code;
1083 s->op_st_chg.status = check->status;
1084 s->op_st_chg.duration = check->duration;
1085 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001086
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001087 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001088 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001089
Emeric Brun9f0b4582017-10-23 14:39:51 +02001090 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001091 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001092 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001093 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001094 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001095}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001096
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001097/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1098 * enforce either maint mode or drain mode. It is not allowed to set more than
1099 * one flag at once. The equivalent "inherited" flag is propagated to all
1100 * tracking servers. Maintenance mode disables health checks (but not agent
1101 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001102 * is done. If <cause> is non-null, it will be displayed at the end of the log
1103 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001104 *
1105 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001106 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001107void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001108{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001109 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001110
1111 if (!mode)
1112 return;
1113
1114 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001115 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001116 return;
1117
Emeric Brun52a91d32017-08-31 14:41:55 +02001118 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001119 if (cause)
1120 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1121
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001122 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001123 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001124
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001125 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001126 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1127 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001128 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001129
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001130 /* compute the inherited flag to propagate */
1131 if (mode & SRV_ADMF_MAINT)
1132 mode = SRV_ADMF_IMAINT;
1133 else if (mode & SRV_ADMF_DRAIN)
1134 mode = SRV_ADMF_IDRAIN;
1135
Emeric Brun9f0b4582017-10-23 14:39:51 +02001136 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001137 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001138 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001139 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001140 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001141}
1142
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001143/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1144 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1145 * than one flag at once. The equivalent "inherited" flag is propagated to all
1146 * tracking servers. Leaving maintenance mode re-enables health checks. When
1147 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001148 *
1149 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001150 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001151void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001152{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001153 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001154
1155 if (!mode)
1156 return;
1157
1158 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001159 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001160 return;
1161
Emeric Brun52a91d32017-08-31 14:41:55 +02001162 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001163
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001164 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001165 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001166
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001167 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001168 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1169 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001170 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001171
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001172 if (mode & SRV_ADMF_MAINT)
1173 mode = SRV_ADMF_IMAINT;
1174 else if (mode & SRV_ADMF_DRAIN)
1175 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001176
Emeric Brun9f0b4582017-10-23 14:39:51 +02001177 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001178 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001179 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001180 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001181 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001182}
1183
Willy Tarreau757478e2016-11-03 19:22:19 +01001184/* principle: propagate maint and drain to tracking servers. This is useful
1185 * upon startup so that inherited states are correct.
1186 */
1187static void srv_propagate_admin_state(struct server *srv)
1188{
1189 struct server *srv2;
1190
1191 if (!srv->trackers)
1192 return;
1193
1194 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001195 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001196 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001197 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001198
Emeric Brun52a91d32017-08-31 14:41:55 +02001199 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001200 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001201 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001202 }
1203}
1204
1205/* Compute and propagate the admin states for all servers in proxy <px>.
1206 * Only servers *not* tracking another one are considered, because other
1207 * ones will be handled when the server they track is visited.
1208 */
1209void srv_compute_all_admin_states(struct proxy *px)
1210{
1211 struct server *srv;
1212
1213 for (srv = px->srv; srv; srv = srv->next) {
1214 if (srv->track)
1215 continue;
1216 srv_propagate_admin_state(srv);
1217 }
1218}
1219
Willy Tarreaudff55432012-10-10 17:51:05 +02001220/* Note: must not be declared <const> as its list will be overwritten.
1221 * Please take care of keeping this list alphabetically sorted, doing so helps
1222 * all code contributors.
1223 * Optional keywords are also declared with a NULL ->parse() function so that
1224 * the config parser can report an appropriate error when a known keyword was
1225 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001226 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001227 */
1228static struct srv_kw_list srv_kws = { "ALL", { }, {
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001229 { "backup", srv_parse_backup, 0, 1 }, /* Flag as backup server */
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +01001230 { "cookie", srv_parse_cookie, 1, 1 }, /* Assign a cookie to the server */
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +01001231 { "disabled", srv_parse_disabled, 0, 1 }, /* Start the server in 'disabled' state */
1232 { "enabled", srv_parse_enabled, 0, 1 }, /* Start the server in 'enabled' state */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001233 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
Willy Tarreau9c538e02019-01-23 10:21:49 +01001234 { "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 +01001235 { "namespace", srv_parse_namespace, 1, 1 }, /* Namespace the server socket belongs to (if supported) */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001236 { "no-backup", srv_parse_no_backup, 0, 1 }, /* Flag as non-backup server */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001237 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1 }, /* Disable use of PROXY V1 protocol */
1238 { "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 +02001239 { "no-tfo", srv_parse_no_tfo, 0, 1 }, /* Disable use of TCP Fast Open */
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001240 { "non-stick", srv_parse_non_stick, 0, 1 }, /* Disable stick-table persistence */
Frédéric Lécaille547356e2017-03-15 08:55:39 +01001241 { "observe", srv_parse_observe, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001242 { "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 +01001243 { "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 +01001244 { "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 +02001245 { "proto", srv_parse_proto, 1, 1 }, /* Set the proto to use for all outgoing connections */
Emmanuel Hocdetf643b802018-02-01 15:20:32 +01001246 { "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 +01001247 { "redir", srv_parse_redir, 1, 1 }, /* Enable redirection mode */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001248 { "send-proxy", srv_parse_send_proxy, 0, 1 }, /* Enforce use of PROXY V1 protocol */
1249 { "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 +02001250 { "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 +01001251 { "stick", srv_parse_stick, 0, 1 }, /* Enable stick-table persistence */
Olivier Houchard8d82db72019-07-04 13:34:10 +02001252 { "tfo", srv_parse_tfo, 0, 1 }, /* enable TCP Fast Open of server */
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001253 { "track", srv_parse_track, 1, 1 }, /* Set the current state of the server, tracking another one */
Alexander Liu2a54bb72019-05-22 19:44:48 +08001254 { "socks4", srv_parse_socks4, 1, 1 }, /* Set the socks4 proxy of the server*/
Willy Tarreaudff55432012-10-10 17:51:05 +02001255 { NULL, NULL, 0 },
1256}};
1257
Willy Tarreau0108d902018-11-25 19:14:37 +01001258INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001259
Willy Tarreau004e0452013-11-21 11:22:01 +01001260/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001261 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001262 * state is automatically disabled if the time is elapsed. If <must_update> is
1263 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001264 *
1265 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001266 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001267void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001268{
1269 struct proxy *px = sv->proxy;
1270 unsigned w;
1271
1272 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1273 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001274 if (sv->next_state == SRV_ST_STARTING)
1275 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001276 }
1277
1278 /* We must take care of not pushing the server to full throttle during slow starts.
1279 * It must also start immediately, at least at the minimal step when leaving maintenance.
1280 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001281 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001282 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1283 else
1284 w = px->lbprm.wdiv;
1285
Emeric Brun52a91d32017-08-31 14:41:55 +02001286 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001287
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001288 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001289 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001290 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001291}
1292
Willy Tarreaubaaee002006-06-26 02:48:02 +02001293/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001294 * Parses weight_str and configures sv accordingly.
1295 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001296 *
1297 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001298 */
1299const char *server_parse_weight_change_request(struct server *sv,
1300 const char *weight_str)
1301{
1302 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001303 long int w;
1304 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001305
1306 px = sv->proxy;
1307
1308 /* if the weight is terminated with '%', it is set relative to
1309 * the initial weight, otherwise it is absolute.
1310 */
1311 if (!*weight_str)
1312 return "Require <weight> or <weight%>.\n";
1313
Simon Hormanb796afa2013-02-12 10:45:53 +09001314 w = strtol(weight_str, &end, 10);
1315 if (end == weight_str)
1316 return "Empty weight string empty or preceded by garbage";
1317 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001318 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001319 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001320 /* Avoid integer overflow */
1321 if (w > 25600)
1322 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001323 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001324 if (w > 256)
1325 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001326 }
1327 else if (w < 0 || w > 256)
1328 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001329 else if (end[0] != '\0')
1330 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001331
1332 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1333 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1334
1335 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001336 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001337
1338 return NULL;
1339}
1340
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001341/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001342 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1343 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001344 * Returns:
1345 * - error string on error
1346 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001347 *
1348 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001349 */
1350const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001351 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001352{
1353 unsigned char ip[INET6_ADDRSTRLEN];
1354
1355 if (inet_pton(AF_INET6, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001356 update_server_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001357 return NULL;
1358 }
1359 if (inet_pton(AF_INET, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001360 update_server_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001361 return NULL;
1362 }
1363
1364 return "Could not understand IP address format.\n";
1365}
1366
Willy Tarreau46b7f532018-08-21 11:54:26 +02001367/*
1368 * Must be called with the server lock held.
1369 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001370const char *server_parse_maxconn_change_request(struct server *sv,
1371 const char *maxconn_str)
1372{
1373 long int v;
1374 char *end;
1375
1376 if (!*maxconn_str)
1377 return "Require <maxconn>.\n";
1378
1379 v = strtol(maxconn_str, &end, 10);
1380 if (end == maxconn_str)
1381 return "maxconn string empty or preceded by garbage";
1382 else if (end[0] != '\0')
1383 return "Trailing garbage in maxconn string";
1384
1385 if (sv->maxconn == sv->minconn) { // static maxconn
1386 sv->maxconn = sv->minconn = v;
1387 } else { // dynamic maxconn
1388 sv->maxconn = v;
1389 }
1390
Amaury Denoyelle43b0c622021-06-18 11:11:36 +02001391 /* server_parse_maxconn_change_request requires the server lock held.
1392 * Specify it to process_srv_queue to prevent a deadlock.
1393 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001394 if (may_dequeue_tasks(sv, sv->proxy))
Amaury Denoyelle43b0c622021-06-18 11:11:36 +02001395 process_srv_queue(sv, 1);
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001396
1397 return NULL;
1398}
1399
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001400#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001401static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1402 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001403{
1404 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001405 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001406 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001407 NULL,
1408 };
1409
1410 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001411 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001412
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001413 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001414}
1415
1416static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1417{
1418 struct sample_expr *expr;
1419
1420 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 +01001421 if (!expr) {
1422 memprintf(err, "error detected while parsing sni expression : %s", *err);
1423 return ERR_ALERT | ERR_FATAL;
1424 }
1425
1426 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1427 memprintf(err, "error detected while parsing sni expression : "
1428 " fetch method '%s' extracts information from '%s', "
1429 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001430 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001431 return ERR_ALERT | ERR_FATAL;
1432 }
1433
1434 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1435 release_sample_expr(newsrv->ssl_ctx.sni);
1436 newsrv->ssl_ctx.sni = expr;
1437
1438 return 0;
1439}
1440#endif
1441
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001442static 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 +01001443{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001444 char *msg = "error encountered while processing ";
1445 char *quote = "'";
1446 char *token = args[cur_arg];
1447
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001448 if (err && *err) {
1449 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001450 msg = *err;
1451 quote = "";
1452 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001453 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001454
1455 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
1456 ha_warning("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1457 file, linenum, args[0], args[1],
1458 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001459 else
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001460 ha_alert("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1461 file, linenum, args[0], args[1],
1462 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001463}
1464
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001465static void srv_conn_src_sport_range_cpy(struct server *srv,
1466 struct server *src)
1467{
1468 int range_sz;
1469
1470 range_sz = src->conn_src.sport_range->size;
1471 if (range_sz > 0) {
1472 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1473 if (srv->conn_src.sport_range != NULL) {
1474 int i;
1475
1476 for (i = 0; i < range_sz; i++) {
1477 srv->conn_src.sport_range->ports[i] =
1478 src->conn_src.sport_range->ports[i];
1479 }
1480 }
1481 }
1482}
1483
1484/*
1485 * Copy <src> server connection source settings to <srv> server everything needed.
1486 */
1487static void srv_conn_src_cpy(struct server *srv, struct server *src)
1488{
1489 srv->conn_src.opts = src->conn_src.opts;
1490 srv->conn_src.source_addr = src->conn_src.source_addr;
1491
1492 /* Source port range copy. */
1493 if (src->conn_src.sport_range != NULL)
1494 srv_conn_src_sport_range_cpy(srv, src);
1495
1496#ifdef CONFIG_HAP_TRANSPARENT
1497 if (src->conn_src.bind_hdr_name != NULL) {
1498 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1499 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1500 }
1501 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1502 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1503#endif
1504 if (src->conn_src.iface_name != NULL)
1505 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1506}
1507
1508/*
1509 * Copy <src> server SSL settings to <srv> server allocating
1510 * everything needed.
1511 */
1512#if defined(USE_OPENSSL)
1513static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1514{
1515 if (src->ssl_ctx.ca_file != NULL)
1516 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1517 if (src->ssl_ctx.crl_file != NULL)
1518 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
1519 if (src->ssl_ctx.client_crt != NULL)
1520 srv->ssl_ctx.client_crt = strdup(src->ssl_ctx.client_crt);
1521
1522 srv->ssl_ctx.verify = src->ssl_ctx.verify;
1523
1524 if (src->ssl_ctx.verify_host != NULL)
1525 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
1526 if (src->ssl_ctx.ciphers != NULL)
1527 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02001528 if (src->ssl_ctx.options)
1529 srv->ssl_ctx.options = src->ssl_ctx.options;
1530 if (src->ssl_ctx.methods.flags)
1531 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
1532 if (src->ssl_ctx.methods.min)
1533 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
1534 if (src->ssl_ctx.methods.max)
1535 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
1536
Willy Tarreau5db847a2019-05-09 14:13:35 +02001537#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02001538 if (src->ssl_ctx.ciphersuites != NULL)
1539 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
1540#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001541 if (src->sni_expr != NULL)
1542 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01001543
1544#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
1545 if (src->ssl_ctx.alpn_str) {
1546 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
1547 if (srv->ssl_ctx.alpn_str) {
1548 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
1549 src->ssl_ctx.alpn_len);
1550 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
1551 }
1552 }
1553#endif
1554#ifdef OPENSSL_NPN_NEGOTIATED
1555 if (src->ssl_ctx.npn_str) {
1556 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
1557 if (srv->ssl_ctx.npn_str) {
1558 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
1559 src->ssl_ctx.npn_len);
1560 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
1561 }
1562 }
1563#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001564}
1565#endif
1566
1567/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001568 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001569 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001570 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001571 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001572static int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001573{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001574 char *hostname_dn;
1575 int hostname_len, hostname_dn_len;
1576
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001577 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001578 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001579
Christopher Faulet67957bd2017-09-27 11:00:59 +02001580 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001581 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001582 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
1583 hostname_dn, trash.size);
1584 if (hostname_dn_len == -1)
1585 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001586
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001587
Christopher Faulet67957bd2017-09-27 11:00:59 +02001588 free(srv->hostname);
1589 free(srv->hostname_dn);
1590 srv->hostname = strdup(hostname);
1591 srv->hostname_dn = strdup(hostname_dn);
1592 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001593 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001594 goto err;
1595
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001596 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001597
1598 err:
Christopher Faulet67957bd2017-09-27 11:00:59 +02001599 free(srv->hostname); srv->hostname = NULL;
1600 free(srv->hostname_dn); srv->hostname_dn = NULL;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001601 return -1;
1602}
1603
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001604/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001605 * Copy <src> server settings to <srv> server allocating
1606 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001607 * This function is not supposed to be called at any time, but only
1608 * during server settings parsing or during server allocations from
1609 * a server template, and just after having calloc()'ed a new server.
1610 * So, <src> may only be a default server (when parsing server settings)
1611 * or a server template (during server allocations from a server template).
1612 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
1613 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001614 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001615static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001616{
1617 /* Connection source settings copy */
1618 srv_conn_src_cpy(srv, src);
1619
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001620 if (srv_tmpl) {
1621 srv->addr = src->addr;
1622 srv->svc_port = src->svc_port;
1623 }
1624
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001625 srv->pp_opts = src->pp_opts;
1626 if (src->rdr_pfx != NULL) {
1627 srv->rdr_pfx = strdup(src->rdr_pfx);
1628 srv->rdr_len = src->rdr_len;
1629 }
1630 if (src->cookie != NULL) {
1631 srv->cookie = strdup(src->cookie);
1632 srv->cklen = src->cklen;
1633 }
1634 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01001635 srv->check.addr = src->check.addr;
1636 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001637 srv->check.use_ssl = src->check.use_ssl;
1638 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01001639 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01001640 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05001641 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001642 /* Note: 'flags' field has potentially been already initialized. */
1643 srv->flags |= src->flags;
1644 srv->do_check = src->do_check;
1645 srv->do_agent = src->do_agent;
1646 if (srv->check.port)
1647 srv->flags |= SRV_F_CHECKPORT;
1648 srv->check.inter = src->check.inter;
1649 srv->check.fastinter = src->check.fastinter;
1650 srv->check.downinter = src->check.downinter;
1651 srv->agent.use_ssl = src->agent.use_ssl;
1652 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001653
1654 if (src->agent.tcpcheck_rules) {
1655 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
1656 if (srv->agent.tcpcheck_rules) {
1657 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
1658 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
1659 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
1660 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
1661 &src->agent.tcpcheck_rules->preset_vars);
1662 }
1663 }
1664
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001665 srv->agent.inter = src->agent.inter;
1666 srv->agent.fastinter = src->agent.fastinter;
1667 srv->agent.downinter = src->agent.downinter;
1668 srv->maxqueue = src->maxqueue;
1669 srv->minconn = src->minconn;
1670 srv->maxconn = src->maxconn;
1671 srv->slowstart = src->slowstart;
1672 srv->observe = src->observe;
1673 srv->onerror = src->onerror;
1674 srv->onmarkeddown = src->onmarkeddown;
1675 srv->onmarkedup = src->onmarkedup;
1676 if (src->trackit != NULL)
1677 srv->trackit = strdup(src->trackit);
1678 srv->consecutive_errors_limit = src->consecutive_errors_limit;
1679 srv->uweight = srv->iweight = src->iweight;
1680
1681 srv->check.send_proxy = src->check.send_proxy;
1682 /* health: up, but will fall down at first failure */
1683 srv->check.rise = srv->check.health = src->check.rise;
1684 srv->check.fall = src->check.fall;
1685
1686 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001687 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
1688 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
1689 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001690 srv->check.state |= CHK_ST_PAUSED;
1691 srv->check.health = 0;
1692 }
1693
1694 /* health: up but will fall down at first failure */
1695 srv->agent.rise = srv->agent.health = src->agent.rise;
1696 srv->agent.fall = src->agent.fall;
1697
1698 if (src->resolvers_id != NULL)
1699 srv->resolvers_id = strdup(src->resolvers_id);
1700 srv->dns_opts.family_prio = src->dns_opts.family_prio;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001701 srv->dns_opts.accept_duplicate_ip = src->dns_opts.accept_duplicate_ip;
Daniel Corbettf8716912019-11-17 09:48:56 -05001702 srv->dns_opts.ignore_weight = src->dns_opts.ignore_weight;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001703 if (srv->dns_opts.family_prio == AF_UNSPEC)
1704 srv->dns_opts.family_prio = AF_INET6;
1705 memcpy(srv->dns_opts.pref_net,
1706 src->dns_opts.pref_net,
1707 sizeof srv->dns_opts.pref_net);
1708 srv->dns_opts.pref_net_nb = src->dns_opts.pref_net_nb;
1709
1710 srv->init_addr_methods = src->init_addr_methods;
1711 srv->init_addr = src->init_addr;
1712#if defined(USE_OPENSSL)
1713 srv_ssl_settings_cpy(srv, src);
1714#endif
1715#ifdef TCP_USER_TIMEOUT
1716 srv->tcp_ut = src->tcp_ut;
1717#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001718 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001719 srv->pool_purge_delay = src->pool_purge_delay;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001720 srv->low_idle_conns = src->low_idle_conns;
Olivier Houchard006e3102018-12-10 18:30:32 +01001721 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01001722 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001723
Olivier Houchard8da5f982017-08-04 18:35:36 +02001724 if (srv_tmpl)
1725 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001726
1727 srv->check.via_socks4 = src->check.via_socks4;
1728 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001729}
1730
William Lallemand313bfd12018-10-26 14:47:32 +02001731struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001732{
1733 struct server *srv;
Willy Tarreau72653c52021-03-04 10:47:54 +01001734 int i;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001735
1736 srv = calloc(1, sizeof *srv);
1737 if (!srv)
1738 return NULL;
1739
1740 srv->obj_type = OBJ_TYPE_SERVER;
1741 srv->proxy = proxy;
Willy Tarreau72653c52021-03-04 10:47:54 +01001742 for (i = 0; i < MAX_THREADS; i++)
1743 MT_LIST_INIT(&srv->actconns[i]);
Patrick Hemmer0355dab2018-05-11 12:52:31 -04001744 srv->pendconns = EB_ROOT;
Emeric Brun32131d42021-06-11 10:48:45 +02001745 LIST_INIT(&srv->srv_rec_item);
Emeric Brunca8e3552021-06-11 10:08:05 +02001746 LIST_INIT(&srv->ip_rec_item);
Christopher Faulet40a007c2017-07-03 15:41:01 +02001747
Emeric Brun52a91d32017-08-31 14:41:55 +02001748 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001749 srv->last_change = now.tv_sec;
1750
Christopher Faulet38290462020-04-21 11:46:40 +02001751 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001752 srv->check.status = HCHK_STATUS_INI;
1753 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01001754 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02001755 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001756
Christopher Faulet38290462020-04-21 11:46:40 +02001757 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001758 srv->agent.status = HCHK_STATUS_INI;
1759 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01001760 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001761 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
1762
Willy Tarreau975b1552019-06-06 16:25:55 +02001763 /* please don't put default server settings here, they are set in
1764 * init_default_instance().
1765 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001766 return srv;
1767}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001768
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001769#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1770static int server_sni_expr_init(const char *file, int linenum, char **args, int cur_arg,
1771 struct server *srv, struct proxy *proxy)
1772{
1773 int ret;
1774 char *err = NULL;
1775
1776 if (!srv->sni_expr)
1777 return 0;
1778
1779 ret = server_parse_sni_expr(srv, proxy, &err);
1780 if (!ret)
1781 return 0;
1782
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001783 display_parser_err(file, linenum, args, cur_arg, ret, &err);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001784 free(err);
1785
1786 return ret;
1787}
1788#endif
1789
1790/*
1791 * Server initializations finalization.
1792 * Initialize health check, agent check and SNI expression if enabled.
1793 * Must not be called for a default server instance.
1794 */
1795static int server_finalize_init(const char *file, int linenum, char **args, int cur_arg,
1796 struct server *srv, struct proxy *px)
1797{
Christopher Fauletb3b53522020-04-27 11:17:10 +02001798#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001799 int ret;
Christopher Fauletb3b53522020-04-27 11:17:10 +02001800#endif
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001801
Christopher Faulet8892e5d2020-03-26 19:48:20 +01001802 if (srv->do_check && srv->trackit) {
1803 ha_alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1804 file, linenum);
1805 return ERR_ALERT | ERR_FATAL;
1806 }
1807
1808 if (srv->do_agent && !srv->agent.port) {
1809 ha_alert("parsing [%s:%d] : server %s does not have agent port. Agent check has been disabled.\n",
1810 file, linenum, srv->id);
1811 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001812 }
1813
1814#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1815 if ((ret = server_sni_expr_init(file, linenum, args, cur_arg, srv, px)) != 0)
1816 return ret;
1817#endif
1818
1819 if (srv->flags & SRV_F_BACKUP)
1820 px->srv_bck++;
1821 else
1822 px->srv_act++;
1823 srv_lb_commit_status(srv);
1824
1825 return 0;
1826}
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001827
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001828/*
1829 * Parse as much as possible such a range string argument: low[-high]
1830 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
1831 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
1832 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
1833 * Returns 0 if succeeded, -1 if not.
1834 */
1835static int srv_tmpl_parse_range(struct server *srv, const char *arg, int *nb_low, int *nb_high)
1836{
1837 char *nb_high_arg;
1838
1839 *nb_high = 0;
1840 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001841 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001842
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001843 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001844 *nb_high_arg++ = '\0';
1845 *nb_high = atoi(nb_high_arg);
1846 }
1847 else {
1848 *nb_high += *nb_low;
1849 *nb_low = 1;
1850 }
1851
1852 if (*nb_low < 0 || *nb_high < *nb_low)
1853 return -1;
1854
1855 return 0;
1856}
1857
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001858static inline void srv_set_id_from_prefix(struct server *srv, const char *prefix, int nb)
1859{
1860 chunk_printf(&trash, "%s%d", prefix, nb);
1861 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001862 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001863}
1864
1865/*
1866 * Initialize as much as possible servers from <srv> server template.
1867 * Note that a server template is a special server with
1868 * a few different parameters than a server which has
1869 * been parsed mostly the same way as a server.
Joseph Herlant44466822018-11-15 08:57:51 -08001870 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001871 * 'srv' template included.
1872 */
1873static int server_template_init(struct server *srv, struct proxy *px)
1874{
1875 int i;
1876 struct server *newsrv;
1877
1878 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 +02001879 newsrv = new_server(px);
1880 if (!newsrv)
1881 goto err;
1882
Christopher Faulet75bef002020-11-02 22:04:55 +01001883 newsrv->conf.file = strdup(srv->conf.file);
1884 newsrv->conf.line = srv->conf.line;
1885
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001886 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001887 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001888#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1889 if (newsrv->sni_expr) {
1890 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
1891 if (!newsrv->ssl_ctx.sni)
1892 goto err;
1893 }
1894#endif
Emeric Brun32131d42021-06-11 10:48:45 +02001895 /* append to list of servers available to receive an hostname */
Emeric Brund671e9f2021-06-14 10:02:18 +02001896 if (newsrv->srvrq)
1897 LIST_ADDQ(&newsrv->srvrq->attached_servers, &newsrv->srv_rec_item);
Emeric Brun32131d42021-06-11 10:48:45 +02001898
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001899 /* Set this new server ID. */
1900 srv_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
1901
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001902 /* Linked backwards first. This will be restablished after parsing. */
1903 newsrv->next = px->srv;
1904 px->srv = newsrv;
1905 }
1906 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1907
1908 return i - srv->tmpl_info.nb_low;
1909
1910 err:
1911 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1912 if (newsrv) {
1913#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1914 release_sample_expr(newsrv->ssl_ctx.sni);
1915#endif
1916 free_check(&newsrv->agent);
1917 free_check(&newsrv->check);
1918 }
1919 free(newsrv);
1920 return i - srv->tmpl_info.nb_low;
1921}
1922
Emeric Brund3db3842020-07-21 16:54:36 +02001923int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy,
1924 struct proxy *defproxy, int parse_addr, int in_peers_section, int initial_resolve)
Willy Tarreau272adea2014-03-31 10:39:59 +02001925{
1926 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001927 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001928 char *errmsg = NULL;
1929 int err_code = 0;
1930 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +02001931 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001932
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001933 if (!strcmp(args[0], "server") ||
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02001934 !strcmp(args[0], "peer") ||
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001935 !strcmp(args[0], "default-server") ||
1936 !strcmp(args[0], "server-template")) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001937 int cur_arg;
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001938 int defsrv = (*args[0] == 'd');
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02001939 int srv = !defsrv && (*args[0] == 'p' || !strcmp(args[0], "server"));
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001940 int srv_tmpl = !defsrv && !srv;
1941 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02001942
1943 if (!defsrv && curproxy == defproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001944 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001945 err_code |= ERR_ALERT | ERR_FATAL;
1946 goto out;
1947 }
Christopher Faulet75ffbf92021-01-13 13:14:13 +01001948 else if (failifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) {
1949 err_code |= ERR_ALERT | ERR_FATAL;
1950 goto out;
1951 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001952
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001953 /* There is no mandatory first arguments for default server. */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01001954 if (srv && parse_addr) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001955 if (!*args[2]) {
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +02001956 if (in_peers_section) {
1957 return 0;
1958 }
1959 else {
1960 /* 'server' line number of argument check. */
1961 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1962 file, linenum, args[0]);
1963 err_code |= ERR_ALERT | ERR_FATAL;
1964 goto out;
1965 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001966 }
1967
1968 err = invalid_char(args[1]);
1969 }
1970 else if (srv_tmpl) {
1971 if (!*args[3]) {
1972 /* 'server-template' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001973 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 +02001974 file, linenum, args[0]);
1975 err_code |= ERR_ALERT | ERR_FATAL;
1976 goto out;
1977 }
1978
1979 err = invalid_prefix_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001980 }
1981
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001982 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001983 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 +02001984 file, linenum, *err, args[0], srv ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001985 err_code |= ERR_ALERT | ERR_FATAL;
1986 goto out;
1987 }
1988
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001989 cur_arg = 2;
1990 if (srv_tmpl) {
1991 /* Parse server-template <nb | range> arg. */
1992 if (srv_tmpl_parse_range(newsrv, args[cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001993 ha_alert("parsing [%s:%d] : Wrong %s number or range arg '%s'.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001994 file, linenum, args[0], args[cur_arg]);
1995 err_code |= ERR_ALERT | ERR_FATAL;
1996 goto out;
1997 }
1998 cur_arg++;
1999 }
2000
Willy Tarreau272adea2014-03-31 10:39:59 +02002001 if (!defsrv) {
2002 struct sockaddr_storage *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002003 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002004
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002005 newsrv = new_server(curproxy);
2006 if (!newsrv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002007 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Willy Tarreau272adea2014-03-31 10:39:59 +02002008 err_code |= ERR_ALERT | ERR_ABORT;
2009 goto out;
2010 }
2011
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002012 if (srv_tmpl) {
2013 newsrv->tmpl_info.nb_low = tmpl_range_low;
2014 newsrv->tmpl_info.nb_high = tmpl_range_high;
2015 }
2016
Willy Tarreau272adea2014-03-31 10:39:59 +02002017 /* the servers are linked backwards first */
2018 newsrv->next = curproxy->srv;
2019 curproxy->srv = newsrv;
Willy Tarreau272adea2014-03-31 10:39:59 +02002020 newsrv->conf.file = strdup(file);
2021 newsrv->conf.line = linenum;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002022 /* Note: for a server template, its id is its prefix.
2023 * This is a temporary id which will be used for server allocations to come
2024 * after parsing.
2025 */
2026 if (srv)
2027 newsrv->id = strdup(args[1]);
2028 else
2029 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002030
2031 /* several ways to check the port component :
2032 * - IP => port=+0, relative (IPv4 only)
2033 * - IP: => port=+0, relative
2034 * - IP:N => port=N, absolute
2035 * - IP:+N => port=+N, relative
2036 * - IP:-N => port=-N, relative
2037 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002038 if (!parse_addr)
2039 goto skip_addr;
2040
Willy Tarreau65ec4e32020-09-16 19:17:08 +02002041 sk = str2sa_range(args[cur_arg], &port, &port1, &port2, NULL, NULL,
2042 &errmsg, NULL, &fqdn,
2043 (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 +02002044 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002045 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau272adea2014-03-31 10:39:59 +02002046 err_code |= ERR_ALERT | ERR_FATAL;
2047 goto out;
2048 }
2049
Willy Tarreau272adea2014-03-31 10:39:59 +02002050 if (!port1 || !port2) {
2051 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +02002052 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +02002053 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002054
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002055 /* save hostname and create associated name resolution */
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002056 if (fqdn) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002057 if (fqdn[0] == '_') { /* SRV record */
Olivier Houchard8da5f982017-08-04 18:35:36 +02002058 /* Check if a SRV request already exists, and if not, create it */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002059 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2060 newsrv->srvrq = new_dns_srvrq(newsrv, fqdn);
2061 if (newsrv->srvrq == NULL) {
Olivier Houchard8da5f982017-08-04 18:35:36 +02002062 err_code |= ERR_ALERT | ERR_FATAL;
2063 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002064 }
Christopher Faulet31f5ed62021-06-29 20:52:35 +02002065 LIST_ADDQ(&newsrv->srvrq->attached_servers, &newsrv->srv_rec_item);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002066 }
2067 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002068 ha_alert("parsing [%s:%d] : Can't create DNS resolution for server '%s'\n",
Christopher Faulet67957bd2017-09-27 11:00:59 +02002069 file, linenum, newsrv->id);
2070 err_code |= ERR_ALERT | ERR_FATAL;
2071 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002072 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002073 }
2074
Willy Tarreau272adea2014-03-31 10:39:59 +02002075 newsrv->addr = *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002076 newsrv->svc_port = port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002077
Olivier Houchard8da5f982017-08-04 18:35:36 +02002078 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002079 ha_alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002080 file, linenum, newsrv->addr.ss_family, args[cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002081 err_code |= ERR_ALERT | ERR_FATAL;
2082 goto out;
2083 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002084
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002085 cur_arg++;
2086 skip_addr:
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002087 /* Copy default server settings to new server settings. */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002088 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002089 HA_SPIN_INIT(&newsrv->lock);
Willy Tarreau272adea2014-03-31 10:39:59 +02002090 } else {
2091 newsrv = &curproxy->defsrv;
2092 cur_arg = 1;
Thierry Fournierada34842016-02-17 21:25:09 +01002093 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002094 newsrv->dns_opts.accept_duplicate_ip = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002095 }
2096
2097 while (*args[cur_arg]) {
Christopher Fauletcbba66c2020-04-06 14:26:30 +02002098 if (!strcmp(args[cur_arg], "init-addr")) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002099 char *p, *end;
2100 int done;
Willy Tarreau4310d362016-11-02 15:05:56 +01002101 struct sockaddr_storage sa;
Baptiste Assmann25938272016-09-21 20:26:16 +02002102
2103 newsrv->init_addr_methods = 0;
2104 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
2105
2106 for (p = args[cur_arg + 1]; *p; p = end) {
2107 /* cut on next comma */
2108 for (end = p; *end && *end != ','; end++);
2109 if (*end)
2110 *(end++) = 0;
2111
Willy Tarreau4310d362016-11-02 15:05:56 +01002112 memset(&sa, 0, sizeof(sa));
Baptiste Assmann25938272016-09-21 20:26:16 +02002113 if (!strcmp(p, "libc")) {
2114 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
2115 }
2116 else if (!strcmp(p, "last")) {
2117 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
2118 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01002119 else if (!strcmp(p, "none")) {
2120 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
2121 }
Willy Tarreau4310d362016-11-02 15:05:56 +01002122 else if (str2ip2(p, &sa, 0)) {
2123 if (is_addr(&newsrv->init_addr)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002124 ha_alert("parsing [%s:%d]: '%s' : initial address already specified, cannot add '%s'.\n",
Willy Tarreau4310d362016-11-02 15:05:56 +01002125 file, linenum, args[cur_arg], p);
2126 err_code |= ERR_ALERT | ERR_FATAL;
2127 goto out;
2128 }
2129 newsrv->init_addr = sa;
2130 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
2131 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002132 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002133 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 +02002134 file, linenum, args[cur_arg], p);
2135 err_code |= ERR_ALERT | ERR_FATAL;
2136 goto out;
2137 }
2138 if (!done) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002139 ha_alert("parsing [%s:%d]: '%s' : too many init-addr methods when trying to add '%s'\n",
Baptiste Assmann25938272016-09-21 20:26:16 +02002140 file, linenum, args[cur_arg], p);
2141 err_code |= ERR_ALERT | ERR_FATAL;
2142 goto out;
2143 }
2144 }
2145 cur_arg += 2;
2146 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002147 else if (!strcmp(args[cur_arg], "resolvers")) {
Frédéric Lécailledaa2fe62017-04-20 12:17:50 +02002148 free(newsrv->resolvers_id);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002149 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
2150 cur_arg += 2;
2151 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002152 else if (!strcmp(args[cur_arg], "resolve-opts")) {
2153 char *p, *end;
2154
2155 for (p = args[cur_arg + 1]; *p; p = end) {
2156 /* cut on next comma */
2157 for (end = p; *end && *end != ','; end++);
2158 if (*end)
2159 *(end++) = 0;
2160
2161 if (!strcmp(p, "allow-dup-ip")) {
2162 newsrv->dns_opts.accept_duplicate_ip = 1;
2163 }
Daniel Corbettf8716912019-11-17 09:48:56 -05002164 else if (!strcmp(p, "ignore-weight")) {
2165 newsrv->dns_opts.ignore_weight = 1;
2166 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002167 else if (!strcmp(p, "prevent-dup-ip")) {
2168 newsrv->dns_opts.accept_duplicate_ip = 0;
2169 }
2170 else {
Daniel Corbettf8716912019-11-17 09:48:56 -05002171 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 +02002172 file, linenum, args[cur_arg], p);
2173 err_code |= ERR_ALERT | ERR_FATAL;
2174 goto out;
2175 }
2176 }
2177
2178 cur_arg += 2;
2179 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002180 else if (!strcmp(args[cur_arg], "resolve-prefer")) {
2181 if (!strcmp(args[cur_arg + 1], "ipv4"))
Thierry Fournierada34842016-02-17 21:25:09 +01002182 newsrv->dns_opts.family_prio = AF_INET;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002183 else if (!strcmp(args[cur_arg + 1], "ipv6"))
Thierry Fournierada34842016-02-17 21:25:09 +01002184 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002185 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002186 ha_alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002187 file, linenum, args[cur_arg]);
2188 err_code |= ERR_ALERT | ERR_FATAL;
2189 goto out;
2190 }
2191 cur_arg += 2;
2192 }
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002193 else if (!strcmp(args[cur_arg], "resolve-net")) {
2194 char *p, *e;
2195 unsigned char mask;
2196 struct dns_options *opt;
2197
2198 if (!args[cur_arg + 1] || args[cur_arg + 1][0] == '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002199 ha_alert("parsing [%s:%d]: '%s' expects a list of networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002200 file, linenum, args[cur_arg]);
2201 err_code |= ERR_ALERT | ERR_FATAL;
2202 goto out;
2203 }
2204
2205 opt = &newsrv->dns_opts;
2206
2207 /* Split arguments by comma, and convert it from ipv4 or ipv6
2208 * string network in in_addr or in6_addr.
2209 */
2210 p = args[cur_arg + 1];
2211 e = p;
2212 while (*p != '\0') {
Joseph Herlant44466822018-11-15 08:57:51 -08002213 /* If no room available, return error. */
David Carlierd10025c2016-04-08 10:26:44 +01002214 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002215 ha_alert("parsing [%s:%d]: '%s' exceed %d networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002216 file, linenum, args[cur_arg], SRV_MAX_PREF_NET);
2217 err_code |= ERR_ALERT | ERR_FATAL;
2218 goto out;
2219 }
2220 /* look for end or comma. */
2221 while (*e != ',' && *e != '\0')
2222 e++;
2223 if (*e == ',') {
2224 *e = '\0';
2225 e++;
2226 }
2227 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
2228 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
2229 /* Try to convert input string from ipv4 or ipv6 network. */
2230 opt->pref_net[opt->pref_net_nb].family = AF_INET;
2231 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
2232 &mask)) {
2233 /* Try to convert input string from ipv6 network. */
2234 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
2235 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
2236 } else {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05002237 /* All network conversions fail, return error. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002238 ha_alert("parsing [%s:%d]: '%s': invalid network '%s'.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002239 file, linenum, args[cur_arg], p);
2240 err_code |= ERR_ALERT | ERR_FATAL;
2241 goto out;
2242 }
2243 opt->pref_net_nb++;
2244 p = e;
2245 }
2246
2247 cur_arg += 2;
2248 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002249 else if (!strcmp(args[cur_arg], "weight")) {
2250 int w;
2251 w = atol(args[cur_arg + 1]);
2252 if (w < 0 || w > SRV_UWGHT_MAX) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002253 ha_alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002254 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
2255 err_code |= ERR_ALERT | ERR_FATAL;
2256 goto out;
2257 }
2258 newsrv->uweight = newsrv->iweight = w;
2259 cur_arg += 2;
2260 }
Emeric Brun97556472020-05-30 01:42:45 +02002261 else if (!strcmp(args[cur_arg], "log-proto")) {
2262 if (!strcmp(args[cur_arg + 1], "legacy"))
2263 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
2264 else if (!strcmp(args[cur_arg + 1], "octet-count"))
2265 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
2266 else {
2267 ha_alert("parsing [%s:%d]: '%s' expects one of 'legacy' or "
2268 "'octet-count' but got '%s'\n",
2269 file, linenum, args[cur_arg], args[cur_arg + 1]);
2270 err_code |= ERR_ALERT | ERR_FATAL;
2271 goto out;
2272 }
2273 cur_arg += 2;
2274 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002275 else if (!strcmp(args[cur_arg], "minconn")) {
2276 newsrv->minconn = atol(args[cur_arg + 1]);
2277 cur_arg += 2;
2278 }
2279 else if (!strcmp(args[cur_arg], "maxconn")) {
2280 newsrv->maxconn = atol(args[cur_arg + 1]);
2281 cur_arg += 2;
2282 }
2283 else if (!strcmp(args[cur_arg], "maxqueue")) {
2284 newsrv->maxqueue = atol(args[cur_arg + 1]);
2285 cur_arg += 2;
2286 }
2287 else if (!strcmp(args[cur_arg], "slowstart")) {
2288 /* slowstart is stored in seconds */
2289 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02002290
2291 if (err == PARSE_TIME_OVER) {
2292 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).\n",
2293 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2294 err_code |= ERR_ALERT | ERR_FATAL;
2295 goto out;
2296 }
2297 else if (err == PARSE_TIME_UNDER) {
2298 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.\n",
2299 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2300 err_code |= ERR_ALERT | ERR_FATAL;
2301 goto out;
2302 }
2303 else if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002304 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002305 file, linenum, *err, newsrv->id);
2306 err_code |= ERR_ALERT | ERR_FATAL;
2307 goto out;
2308 }
2309 newsrv->slowstart = (val + 999) / 1000;
2310 cur_arg += 2;
2311 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002312 else if (!strcmp(args[cur_arg], "on-error")) {
2313 if (!strcmp(args[cur_arg + 1], "fastinter"))
2314 newsrv->onerror = HANA_ONERR_FASTINTER;
2315 else if (!strcmp(args[cur_arg + 1], "fail-check"))
2316 newsrv->onerror = HANA_ONERR_FAILCHK;
2317 else if (!strcmp(args[cur_arg + 1], "sudden-death"))
2318 newsrv->onerror = HANA_ONERR_SUDDTH;
2319 else if (!strcmp(args[cur_arg + 1], "mark-down"))
2320 newsrv->onerror = HANA_ONERR_MARKDWN;
2321 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002322 ha_alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
Willy Tarreau272adea2014-03-31 10:39:59 +02002323 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
2324 file, linenum, args[cur_arg], args[cur_arg + 1]);
2325 err_code |= ERR_ALERT | ERR_FATAL;
2326 goto out;
2327 }
2328
2329 cur_arg += 2;
2330 }
2331 else if (!strcmp(args[cur_arg], "on-marked-down")) {
2332 if (!strcmp(args[cur_arg + 1], "shutdown-sessions"))
2333 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
2334 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002335 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002336 file, linenum, args[cur_arg], args[cur_arg + 1]);
2337 err_code |= ERR_ALERT | ERR_FATAL;
2338 goto out;
2339 }
2340
2341 cur_arg += 2;
2342 }
2343 else if (!strcmp(args[cur_arg], "on-marked-up")) {
2344 if (!strcmp(args[cur_arg + 1], "shutdown-backup-sessions"))
2345 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
2346 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002347 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002348 file, linenum, args[cur_arg], args[cur_arg + 1]);
2349 err_code |= ERR_ALERT | ERR_FATAL;
2350 goto out;
2351 }
2352
2353 cur_arg += 2;
2354 }
2355 else if (!strcmp(args[cur_arg], "error-limit")) {
2356 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002357 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002358 file, linenum, args[cur_arg]);
2359 err_code |= ERR_ALERT | ERR_FATAL;
2360 goto out;
2361 }
2362
2363 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
2364
2365 if (newsrv->consecutive_errors_limit <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002366 ha_alert("parsing [%s:%d]: %s has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002367 file, linenum, args[cur_arg]);
2368 err_code |= ERR_ALERT | ERR_FATAL;
2369 goto out;
2370 }
2371 cur_arg += 2;
2372 }
Frédéric Lécaille8d083ed2017-04-14 15:19:56 +02002373 else if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside: needs "source" first */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002374 ha_alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002375 file, linenum, "usesrc", "source");
2376 err_code |= ERR_ALERT | ERR_FATAL;
2377 goto out;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002378 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002379 else {
2380 static int srv_dumped;
2381 struct srv_kw *kw;
2382 char *err;
2383
2384 kw = srv_find_kw(args[cur_arg]);
2385 if (kw) {
2386 char *err = NULL;
2387 int code;
2388
2389 if (!kw->parse) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002390 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 +02002391 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002392 if (kw->skip != -1)
2393 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002394 err_code |= ERR_ALERT | ERR_FATAL;
2395 goto out;
2396 }
2397
2398 if (defsrv && !kw->default_ok) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002399 ha_alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002400 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002401 if (kw->skip != -1)
2402 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002403 err_code |= ERR_ALERT;
2404 continue;
2405 }
2406
2407 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
2408 err_code |= code;
2409
2410 if (code) {
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002411 display_parser_err(file, linenum, args, cur_arg, code, &err);
Willy Tarreau272adea2014-03-31 10:39:59 +02002412 if (code & ERR_FATAL) {
2413 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002414 if (kw->skip != -1)
2415 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002416 goto out;
2417 }
2418 }
2419 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002420 if (kw->skip != -1)
2421 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002422 continue;
2423 }
2424
2425 err = NULL;
2426 if (!srv_dumped) {
2427 srv_dump_kws(&err);
2428 indent_msg(&err, 4);
2429 srv_dumped = 1;
2430 }
2431
Christopher Faulet767a84b2017-11-24 16:50:31 +01002432 ha_alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002433 file, linenum, args[0], args[1], args[cur_arg],
2434 err ? " Registered keywords :" : "", err ? err : "");
2435 free(err);
2436
2437 err_code |= ERR_ALERT | ERR_FATAL;
2438 goto out;
2439 }
2440 }
2441
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002442 if (!defsrv)
2443 err_code |= server_finalize_init(file, linenum, args, cur_arg, newsrv, curproxy);
2444 if (err_code & ERR_FATAL)
2445 goto out;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002446 if (srv_tmpl)
2447 server_template_init(newsrv, curproxy);
Willy Tarreau272adea2014-03-31 10:39:59 +02002448 }
Willy Tarreau07101d52015-09-08 16:16:35 +02002449 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002450 return 0;
2451
2452 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02002453 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002454 free(errmsg);
2455 return err_code;
2456}
2457
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002458/* Returns a pointer to the first server matching either id <id>.
2459 * NULL is returned if no match is found.
2460 * the lookup is performed in the backend <bk>
2461 */
2462struct server *server_find_by_id(struct proxy *bk, int id)
2463{
2464 struct eb32_node *eb32;
2465 struct server *curserver;
2466
2467 if (!bk || (id ==0))
2468 return NULL;
2469
2470 /* <bk> has no backend capabilities, so it can't have a server */
2471 if (!(bk->cap & PR_CAP_BE))
2472 return NULL;
2473
2474 curserver = NULL;
2475
2476 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2477 if (eb32)
2478 curserver = container_of(eb32, struct server, conf.id);
2479
2480 return curserver;
2481}
2482
2483/* Returns a pointer to the first server matching either name <name>, or id
2484 * if <name> starts with a '#'. NULL is returned if no match is found.
2485 * the lookup is performed in the backend <bk>
2486 */
2487struct server *server_find_by_name(struct proxy *bk, const char *name)
2488{
2489 struct server *curserver;
2490
2491 if (!bk || !name)
2492 return NULL;
2493
2494 /* <bk> has no backend capabilities, so it can't have a server */
2495 if (!(bk->cap & PR_CAP_BE))
2496 return NULL;
2497
2498 curserver = NULL;
2499 if (*name == '#') {
2500 curserver = server_find_by_id(bk, atoi(name + 1));
2501 if (curserver)
2502 return curserver;
2503 }
2504 else {
2505 curserver = bk->srv;
2506
2507 while (curserver && (strcmp(curserver->id, name) != 0))
2508 curserver = curserver->next;
2509
2510 if (curserver)
2511 return curserver;
2512 }
2513
2514 return NULL;
2515}
2516
2517struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2518{
2519 struct server *byname;
2520 struct server *byid;
2521
2522 if (!name && !id)
2523 return NULL;
2524
2525 if (diff)
2526 *diff = 0;
2527
2528 byname = byid = NULL;
2529
2530 if (name) {
2531 byname = server_find_by_name(bk, name);
2532 if (byname && (!id || byname->puid == id))
2533 return byname;
2534 }
2535
2536 /* remaining possibilities :
2537 * - name not set
2538 * - name set but not found
2539 * - name found but ID doesn't match
2540 */
2541 if (id) {
2542 byid = server_find_by_id(bk, id);
2543 if (byid) {
2544 if (byname) {
2545 /* use id only if forced by configuration */
2546 if (byid->flags & SRV_F_FORCED_ID) {
2547 if (diff)
2548 *diff |= 2;
2549 return byid;
2550 }
2551 else {
2552 if (diff)
2553 *diff |= 1;
2554 return byname;
2555 }
2556 }
2557
2558 /* remaining possibilities:
2559 * - name not set
2560 * - name set but not found
2561 */
2562 if (name && diff)
2563 *diff |= 2;
2564 return byid;
2565 }
2566
2567 /* id bot found */
2568 if (byname) {
2569 if (diff)
2570 *diff |= 1;
2571 return byname;
2572 }
2573 }
2574
2575 return NULL;
2576}
2577
Willy Tarreau46b7f532018-08-21 11:54:26 +02002578/* Update a server state using the parameters available in the params list.
2579 *
2580 * Grabs the server lock during operation.
2581 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002582static void srv_update_state(struct server *srv, int version, char **params)
2583{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002584 char *p;
Willy Tarreau83061a82018-07-13 11:56:34 +02002585 struct buffer *msg;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002586
2587 /* fields since version 1
2588 * and common to all other upcoming versions
2589 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002590 enum srv_state srv_op_state;
2591 enum srv_admin srv_admin_state;
2592 unsigned srv_uweight, srv_iweight;
2593 unsigned long srv_last_time_change;
2594 short srv_check_status;
2595 enum chk_result srv_check_result;
2596 int srv_check_health;
2597 int srv_check_state, srv_agent_state;
2598 int bk_f_forced_id;
2599 int srv_f_forced_id;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002600 int fqdn_set_by_cli;
2601 const char *fqdn;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002602 const char *port_str;
2603 unsigned int port;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002604 char *srvrecord;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002605
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002606 fqdn = NULL;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002607 port = 0;
Willy Tarreau31138fa2015-09-29 18:38:47 +02002608 msg = get_trash_chunk();
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002609 switch (version) {
2610 case 1:
2611 /*
2612 * now we can proceed with server's state update:
2613 * srv_addr: params[0]
2614 * srv_op_state: params[1]
2615 * srv_admin_state: params[2]
2616 * srv_uweight: params[3]
2617 * srv_iweight: params[4]
2618 * srv_last_time_change: params[5]
2619 * srv_check_status: params[6]
2620 * srv_check_result: params[7]
2621 * srv_check_health: params[8]
2622 * srv_check_state: params[9]
2623 * srv_agent_state: params[10]
2624 * bk_f_forced_id: params[11]
2625 * srv_f_forced_id: params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002626 * srv_fqdn: params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02002627 * srv_port: params[14]
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002628 * srvrecord: params[15]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002629 */
2630
2631 /* validating srv_op_state */
2632 p = NULL;
2633 errno = 0;
2634 srv_op_state = strtol(params[1], &p, 10);
2635 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
2636 (srv_op_state != SRV_ST_STOPPED &&
2637 srv_op_state != SRV_ST_STARTING &&
2638 srv_op_state != SRV_ST_RUNNING &&
2639 srv_op_state != SRV_ST_STOPPING)) {
2640 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
2641 }
2642
2643 /* validating srv_admin_state */
2644 p = NULL;
2645 errno = 0;
2646 srv_admin_state = strtol(params[2], &p, 10);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002647 fqdn_set_by_cli = !!(srv_admin_state & SRV_ADMF_HMAINT);
Willy Tarreau757478e2016-11-03 19:22:19 +01002648
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002649 /* inherited statuses will be recomputed later.
2650 * Also disable SRV_ADMF_HMAINT flag (set from stats socket fqdn).
2651 */
Christopher Fauletc6111032021-02-12 17:36:08 +01002652 srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_HMAINT & ~SRV_ADMF_RMAINT;
Willy Tarreau757478e2016-11-03 19:22:19 +01002653
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002654 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
2655 (srv_admin_state != 0 &&
2656 srv_admin_state != SRV_ADMF_FMAINT &&
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002657 srv_admin_state != SRV_ADMF_CMAINT &&
2658 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
Willy Tarreaue1bde142016-11-03 18:33:25 +01002659 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FDRAIN) &&
Willy Tarreau757478e2016-11-03 19:22:19 +01002660 srv_admin_state != SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002661 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
2662 }
2663
2664 /* validating srv_uweight */
2665 p = NULL;
2666 errno = 0;
2667 srv_uweight = strtol(params[3], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002668 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002669 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
2670
2671 /* validating srv_iweight */
2672 p = NULL;
2673 errno = 0;
2674 srv_iweight = strtol(params[4], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002675 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002676 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
2677
2678 /* validating srv_last_time_change */
2679 p = NULL;
2680 errno = 0;
2681 srv_last_time_change = strtol(params[5], &p, 10);
2682 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2683 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
2684
2685 /* validating srv_check_status */
2686 p = NULL;
2687 errno = 0;
2688 srv_check_status = strtol(params[6], &p, 10);
2689 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2690 (srv_check_status >= HCHK_STATUS_SIZE))
2691 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
2692
2693 /* validating srv_check_result */
2694 p = NULL;
2695 errno = 0;
2696 srv_check_result = strtol(params[7], &p, 10);
2697 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2698 (srv_check_result != CHK_RES_UNKNOWN &&
2699 srv_check_result != CHK_RES_NEUTRAL &&
2700 srv_check_result != CHK_RES_FAILED &&
2701 srv_check_result != CHK_RES_PASSED &&
2702 srv_check_result != CHK_RES_CONDPASS)) {
2703 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2704 }
2705
2706 /* validating srv_check_health */
2707 p = NULL;
2708 errno = 0;
2709 srv_check_health = strtol(params[8], &p, 10);
2710 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2711 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
2712
2713 /* validating srv_check_state */
2714 p = NULL;
2715 errno = 0;
2716 srv_check_state = strtol(params[9], &p, 10);
2717 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2718 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2719 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
2720
2721 /* validating srv_agent_state */
2722 p = NULL;
2723 errno = 0;
2724 srv_agent_state = strtol(params[10], &p, 10);
2725 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2726 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2727 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
2728
2729 /* validating bk_f_forced_id */
2730 p = NULL;
2731 errno = 0;
2732 bk_f_forced_id = strtol(params[11], &p, 10);
2733 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
2734 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
2735
2736 /* validating srv_f_forced_id */
2737 p = NULL;
2738 errno = 0;
2739 srv_f_forced_id = strtol(params[12], &p, 10);
2740 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
2741 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
2742
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002743 /* validating srv_fqdn */
2744 fqdn = params[13];
2745 if (fqdn && *fqdn == '-')
2746 fqdn = NULL;
2747 if (fqdn && (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn))) {
2748 chunk_appendf(msg, ", invalid srv_fqdn value '%s'", params[13]);
2749 fqdn = NULL;
2750 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002751
Frédéric Lécaille31694712017-08-01 08:47:19 +02002752 port_str = params[14];
2753 if (port_str) {
2754 port = strl2uic(port_str, strlen(port_str));
2755 if (port > USHRT_MAX) {
2756 chunk_appendf(msg, ", invalid srv_port value '%s'", port_str);
2757 port_str = NULL;
2758 }
2759 }
2760
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002761 /* SRV record
2762 * NOTE: in HAProxy, SRV records must start with an underscore '_'
2763 */
2764 srvrecord = params[15];
2765 if (srvrecord && *srvrecord != '_')
2766 srvrecord = NULL;
2767
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002768 /* don't apply anything if one error has been detected */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002769 if (msg->data)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002770 goto out;
2771
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002772 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002773 /* recover operational state and apply it to this server
2774 * and all servers tracking this one */
Jérôme Magninf57afa42019-01-20 11:27:40 +01002775 srv->check.health = srv_check_health;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002776 switch (srv_op_state) {
2777 case SRV_ST_STOPPED:
2778 srv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02002779 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002780 break;
2781 case SRV_ST_STARTING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002782 /* If rise == 1 there is no STARTING state, let's switch to
2783 * RUNNING
2784 */
2785 if (srv->check.rise == 1) {
2786 srv->check.health = srv->check.rise + srv->check.fall - 1;
2787 srv_set_running(srv, "", NULL);
2788 break;
2789 }
2790 if (srv->check.health < 1 || srv->check.health >= srv->check.rise)
2791 srv->check.health = srv->check.rise - 1;
Emeric Brun52a91d32017-08-31 14:41:55 +02002792 srv->next_state = srv_op_state;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002793 break;
2794 case SRV_ST_STOPPING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002795 /* If fall == 1 there is no STOPPING state, let's switch to
2796 * STOPPED
2797 */
2798 if (srv->check.fall == 1) {
2799 srv->check.health = 0;
2800 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
2801 break;
2802 }
2803 if (srv->check.health < srv->check.rise ||
2804 srv->check.health > srv->check.rise + srv->check.fall - 2)
2805 srv->check.health = srv->check.rise;
Emeric Brun5a133512017-10-19 14:42:30 +02002806 srv_set_stopping(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002807 break;
2808 case SRV_ST_RUNNING:
2809 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02002810 srv_set_running(srv, "", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002811 break;
2812 }
2813
2814 /* When applying server state, the following rules apply:
2815 * - in case of a configuration change, we apply the setting from the new
2816 * configuration, regardless of old running state
2817 * - if no configuration change, we apply old running state only if old running
2818 * state is different from new configuration state
2819 */
2820 /* configuration has changed */
Emeric Brun52a91d32017-08-31 14:41:55 +02002821 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->next_admin & SRV_ADMF_CMAINT)) {
2822 if (srv->next_admin & SRV_ADMF_CMAINT)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002823 srv_adm_set_maint(srv);
2824 else
2825 srv_adm_set_ready(srv);
2826 }
2827 /* configuration is the same, let's compate old running state and new conf state */
2828 else {
Emeric Brun52a91d32017-08-31 14:41:55 +02002829 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002830 srv_adm_set_maint(srv);
Emeric Brun52a91d32017-08-31 14:41:55 +02002831 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002832 srv_adm_set_ready(srv);
2833 }
2834 /* apply drain mode if server is currently enabled */
Emeric Brun52a91d32017-08-31 14:41:55 +02002835 if (!(srv->next_admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002836 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
Willy Tarreau22cace22016-11-03 18:19:49 +01002837 * (srv->iweight is the weight set up in configuration).
2838 * There are two possible reasons for FDRAIN to have been present :
2839 * - previous config weight was zero
2840 * - "set server b/s drain" was sent to the CLI
2841 *
2842 * In the first case, we simply want to drop this drain state
2843 * if the new weight is not zero anymore, meaning the administrator
2844 * has intentionally turned the weight back to a positive value to
2845 * enable the server again after an operation. In the second case,
2846 * the drain state was forced on the CLI regardless of the config's
2847 * weight so we don't want a change to the config weight to lose this
2848 * status. What this means is :
2849 * - if previous weight was 0 and new one is >0, drop the DRAIN state.
2850 * - if the previous weight was >0, keep it.
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002851 */
Willy Tarreau22cace22016-11-03 18:19:49 +01002852 if (srv_iweight > 0 || srv->iweight == 0)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002853 srv_adm_set_drain(srv);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002854 }
2855
2856 srv->last_change = date.tv_sec - srv_last_time_change;
2857 srv->check.status = srv_check_status;
2858 srv->check.result = srv_check_result;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002859
2860 /* Only case we want to apply is removing ENABLED flag which could have been
2861 * done by the "disable health" command over the stats socket
2862 */
2863 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2864 (srv_check_state & CHK_ST_CONFIGURED) &&
2865 !(srv_check_state & CHK_ST_ENABLED))
2866 srv->check.state &= ~CHK_ST_ENABLED;
2867
2868 /* Only case we want to apply is removing ENABLED flag which could have been
2869 * done by the "disable agent" command over the stats socket
2870 */
2871 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
2872 (srv_agent_state & CHK_ST_CONFIGURED) &&
2873 !(srv_agent_state & CHK_ST_ENABLED))
2874 srv->agent.state &= ~CHK_ST_ENABLED;
2875
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002876 /* We want to apply the previous 'running' weight (srv_uweight) only if there
2877 * was no change in the configuration: both previous and new iweight are equals
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002878 *
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002879 * It means that a configuration file change has precedence over a unix socket change
2880 * for server's weight
2881 *
2882 * by default, HAProxy applies the following weight when parsing the configuration
2883 * srv->uweight = srv->iweight
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002884 */
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002885 if (srv_iweight == srv->iweight) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002886 srv->uweight = srv_uweight;
2887 }
Willy Tarreau3ff577e2018-08-02 11:48:52 +02002888 server_recalc_eweight(srv, 1);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002889
Willy Tarreaue5a60682016-11-09 14:54:53 +01002890 /* load server IP address */
Daniel Corbett9215ffa2018-05-19 19:43:24 -04002891 if (strcmp(params[0], "-"))
2892 srv->lastaddr = strdup(params[0]);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002893
2894 if (fqdn && srv->hostname) {
2895 if (!strcmp(srv->hostname, fqdn)) {
2896 /* Here we reset the 'set from stats socket FQDN' flag
2897 * to support such transitions:
2898 * Let's say initial FQDN value is foo1 (in configuration file).
2899 * - FQDN changed from stats socket, from foo1 to foo2 value,
2900 * - FQDN changed again from file configuration (with the same previous value
2901 set from stats socket, from foo1 to foo2 value),
2902 * - reload for any other reason than a FQDN modification,
2903 * the configuration file FQDN matches the fqdn server state file value.
2904 * So we must reset the 'set from stats socket FQDN' flag to be consistent with
Joseph Herlant44466822018-11-15 08:57:51 -08002905 * any further FQDN modification.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002906 */
Emeric Brun52a91d32017-08-31 14:41:55 +02002907 srv->next_admin &= ~SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002908 }
2909 else {
2910 /* If the FDQN has been changed from stats socket,
2911 * apply fqdn state file value (which is the value set
2912 * from stats socket).
Baptiste Assmann13a92322019-06-07 09:40:55 +02002913 * Also ensure the runtime resolver will process this resolution.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002914 */
2915 if (fqdn_set_by_cli) {
Olivier Houchardd16bfe62017-10-31 15:21:19 +01002916 srv_set_fqdn(srv, fqdn, 0);
Baptiste Assmann13a92322019-06-07 09:40:55 +02002917 srv->flags &= ~SRV_F_NO_RESOLUTION;
Emeric Brun52a91d32017-08-31 14:41:55 +02002918 srv->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002919 }
2920 }
2921 }
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002922 /* If all the conditions below are validated, this means
2923 * we're evaluating a server managed by SRV resolution
2924 */
2925 else if (fqdn && !srv->hostname && srvrecord) {
2926 int res;
Emeric Brun32131d42021-06-11 10:48:45 +02002927 int i;
2928 char *tmp;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002929
2930 /* we can't apply previous state if SRV record has changed */
Christopher Fauletcc1fc1b2021-06-10 16:59:53 +02002931 if (!srv->srvrq) {
2932 chunk_appendf(msg, ", no SRV resolution for server '%s'. Previous state not applied", srv->id);
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002933 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2934 goto out;
2935 }
2936
Christopher Fauletcc1fc1b2021-06-10 16:59:53 +02002937 if (strcmp(srv->srvrq->name, srvrecord) != 0) {
2938 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);
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002939 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2940 goto out;
2941 }
2942
2943 /* prepare DNS resolution for this server */
2944 res = srv_prepare_for_resolution(srv, fqdn);
2945 if (res == -1) {
2946 chunk_appendf(msg, ", can't allocate memory for DNS resolution for server '%s'", srv->id);
2947 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2948 goto out;
2949 }
2950
2951 /* configure check.port accordingly */
2952 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2953 !(srv->flags & SRV_F_CHECKPORT))
2954 srv->check.port = port;
2955
Emeric Brun32131d42021-06-11 10:48:45 +02002956 /* Remove from available list and insert in tree
2957 * since this server has an hostname
2958 */
2959 LIST_DEL_INIT(&srv->srv_rec_item);
2960 srv->host_dn.key = tmp = strdup(srv->hostname_dn);
2961
2962 /* convert the key in lowercase because tree
2963 * lookup is case sensitive but we don't care
2964 */
2965 for (i = 0; tmp[i]; i++)
2966 tmp[i] = tolower(tmp[i]);
2967
Christopher Faulet25fbca42021-06-15 16:17:17 +02002968 /* insert in tree and set the srvrq expiration date */
Emeric Brun32131d42021-06-11 10:48:45 +02002969 ebis_insert(&srv->srvrq->named_servers, &srv->host_dn);
Christopher Faulet25fbca42021-06-15 16:17:17 +02002970 task_schedule(srv->srvrq_check, tick_add(now_ms, srv->srvrq->resolvers->hold.timeout));
Emeric Brun32131d42021-06-11 10:48:45 +02002971
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002972 /* Unset SRV_F_MAPPORTS for SRV records.
2973 * SRV_F_MAPPORTS is unfortunately set by parse_server()
2974 * because no ports are provided in the configuration file.
2975 * This is because HAProxy will use the port found into the SRV record.
2976 */
2977 srv->flags &= ~SRV_F_MAPPORTS;
2978 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002979
Frédéric Lécaille31694712017-08-01 08:47:19 +02002980 if (port_str)
2981 srv->svc_port = port;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002982 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Frédéric Lécaille31694712017-08-01 08:47:19 +02002983
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002984 break;
2985 default:
2986 chunk_appendf(msg, ", version '%d' not supported", version);
2987 }
2988
2989 out:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002990 if (msg->data) {
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002991 chunk_appendf(msg, "\n");
Christopher Faulet767a84b2017-11-24 16:50:31 +01002992 ha_warning("server-state application failed for server '%s/%s'%s",
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002993 srv->proxy->id, srv->id, msg->area);
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002994 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002995}
2996
Baptiste Assmannda29fe22019-06-13 13:24:29 +02002997
2998/*
2999 * read next line from file <f> and return the server state version if one found.
3000 * If no version is found, then 0 is returned
3001 * Note that this should be the first read on <f>
3002 */
3003static int srv_state_get_version(FILE *f) {
3004 char buf[2];
3005 int ret;
3006
3007 /* first character of first line of the file must contain the version of the export */
3008 if (fgets(buf, 2, f) == NULL) {
3009 return 0;
3010 }
3011
3012 ret = atoi(buf);
3013 if ((ret < SRV_STATE_FILE_VERSION_MIN) ||
3014 (ret > SRV_STATE_FILE_VERSION_MAX))
3015 return 0;
3016
3017 return ret;
3018}
3019
3020
3021/*
3022 * parses server state line stored in <buf> and supposedly in version <version>.
3023 * Set <params> and <srv_params> accordingly.
3024 * In case of error, params[0] is set to NULL.
3025 */
3026static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params)
3027{
3028 int buflen, arg, srv_arg;
3029 char *cur, *end;
3030
3031 buflen = strlen(buf);
3032 cur = buf;
3033 end = cur + buflen;
3034
3035 /* we need at least one character */
3036 if (buflen == 0) {
3037 params[0] = NULL;
3038 return;
3039 }
3040
3041 /* ignore blank characters at the beginning of the line */
Willy Tarreau90807112020-02-25 08:16:33 +01003042 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003043 ++cur;
3044
3045 /* Ignore empty or commented lines */
3046 if (cur == end || *cur == '#') {
3047 params[0] = NULL;
3048 return;
3049 }
3050
3051 /* truncated lines */
3052 if (buf[buflen - 1] != '\n') {
3053 //ha_warning("server-state file '%s': truncated line\n", filepath);
3054 params[0] = NULL;
3055 return;
3056 }
3057
3058 /* Removes trailing '\n' */
3059 buf[buflen - 1] = '\0';
3060
3061 /* we're now ready to move the line into *srv_params[] */
Christopher Fauletd119e562021-02-19 16:47:11 +01003062 memset(params, 0, SRV_STATE_FILE_MAX_FIELDS * sizeof(*params));
3063 memset(srv_params, 0, SRV_STATE_FILE_MAX_FIELDS * sizeof(*srv_params));
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003064
3065 arg = 0;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003066 srv_arg = 0;
3067 while (*cur && arg < SRV_STATE_FILE_MAX_FIELDS) {
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003068 /* 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;
3073 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003074
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003075 /* v1
3076 * srv_addr: params[4] => srv_params[0]
3077 * srv_op_state: params[5] => srv_params[1]
3078 * srv_admin_state: params[6] => srv_params[2]
3079 * srv_uweight: params[7] => srv_params[3]
3080 * srv_iweight: params[8] => srv_params[4]
3081 * srv_last_time_change: params[9] => srv_params[5]
3082 * srv_check_status: params[10] => srv_params[6]
3083 * srv_check_result: params[11] => srv_params[7]
3084 * srv_check_health: params[12] => srv_params[8]
3085 * srv_check_state: params[13] => srv_params[9]
3086 * srv_agent_state: params[14] => srv_params[10]
3087 * bk_f_forced_id: params[15] => srv_params[11]
3088 * srv_f_forced_id: params[16] => srv_params[12]
3089 * srv_fqdn: params[17] => srv_params[13]
3090 * srv_port: params[18] => srv_params[14]
3091 * srvrecord: params[19] => srv_params[15]
3092 */
3093 if (version == 1 && arg >= 4) {
3094 srv_params[srv_arg] = cur;
3095 ++srv_arg;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003096 }
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003097 params[arg] = cur;
3098 ++arg;
3099
3100 /* Search end of the current field: first space or \0 */
3101 /* Search begining of the current field */
3102 while (!isspace((unsigned char)*cur)) {
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003103 ++cur;
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003104 if (!*cur)
3105 goto end;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003106 }
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003107 *cur++ = '\0';
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003108 }
3109
Christopher Faulet8c5b9742021-02-19 16:57:20 +01003110 end:
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003111 /* if line is incomplete line, then ignore it.
3112 * otherwise, update useful flags */
3113 switch (version) {
3114 case 1:
3115 if (arg < SRV_STATE_FILE_NB_FIELDS_VERSION_1) {
3116 params[0] = NULL;
3117 return;
3118 }
3119 break;
3120 }
3121
3122 return;
3123}
3124
3125
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003126/* This function parses all the proxies and only take care of the backends (since we're looking for server)
3127 * For each proxy, it does the following:
3128 * - opens its server state file (either one or local one)
3129 * - read whole file, line by line
3130 * - analyse each line to check if it matches our current backend:
3131 * - backend name matches
3132 * - backend id matches if id is forced and name doesn't match
3133 * - if the server pointed by the line is found, then state is applied
3134 *
3135 * If the running backend uuid or id differs from the state file, then HAProxy reports
3136 * a warning.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003137 *
3138 * Grabs the server's lock via srv_update_state().
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003139 */
3140void apply_server_state(void)
3141{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003142 char mybuf[SRV_STATE_LINE_MAXLEN];
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003143 char *params[SRV_STATE_FILE_MAX_FIELDS] = {0};
3144 char *srv_params[SRV_STATE_FILE_MAX_FIELDS] = {0};
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003145 int version, global_file_version;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003146 FILE *f;
3147 char *filepath;
3148 char globalfilepath[MAXPATHLEN + 1];
3149 char localfilepath[MAXPATHLEN + 1];
3150 int len, fileopenerr, globalfilepathlen, localfilepathlen;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003151 struct proxy *curproxy, *bk;
3152 struct server *srv;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003153 char *line;
3154 char *bkname, *srvname;
3155 struct state_line *st;
3156 struct ebmb_node *node, *next_node;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003157
Willy Tarreau2d067f92020-07-16 06:40:27 +02003158 f = NULL;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003159 global_file_version = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003160 globalfilepathlen = 0;
3161 /* create the globalfilepath variable */
3162 if (global.server_state_file) {
3163 /* absolute path or no base directory provided */
3164 if ((global.server_state_file[0] == '/') || (!global.server_state_base)) {
3165 len = strlen(global.server_state_file);
3166 if (len > MAXPATHLEN) {
3167 globalfilepathlen = 0;
3168 goto globalfileerror;
3169 }
3170 memcpy(globalfilepath, global.server_state_file, len);
3171 globalfilepath[len] = '\0';
3172 globalfilepathlen = len;
3173 }
3174 else if (global.server_state_base) {
3175 len = strlen(global.server_state_base);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003176 if (len > MAXPATHLEN) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003177 globalfilepathlen = 0;
3178 goto globalfileerror;
3179 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003180 memcpy(globalfilepath, global.server_state_base, len);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003181 globalfilepath[len] = 0;
3182 globalfilepathlen = len;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003183
3184 /* append a slash if needed */
3185 if (!globalfilepathlen || globalfilepath[globalfilepathlen - 1] != '/') {
3186 if (globalfilepathlen + 1 > MAXPATHLEN) {
3187 globalfilepathlen = 0;
3188 goto globalfileerror;
3189 }
3190 globalfilepath[globalfilepathlen++] = '/';
3191 }
3192
3193 len = strlen(global.server_state_file);
3194 if (globalfilepathlen + len > MAXPATHLEN) {
3195 globalfilepathlen = 0;
3196 goto globalfileerror;
3197 }
3198 memcpy(globalfilepath + globalfilepathlen, global.server_state_file, len);
3199 globalfilepathlen += len;
3200 globalfilepath[globalfilepathlen++] = 0;
3201 }
3202 }
3203 globalfileerror:
3204 if (globalfilepathlen == 0)
3205 globalfilepath[0] = '\0';
3206
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003207 /* Load global server state in a tree */
3208 if (globalfilepathlen > 0) {
3209 errno = 0;
3210 f = fopen(globalfilepath, "r");
3211 if (errno)
3212 ha_warning("Can't open global server state file '%s': %s\n", globalfilepath, strerror(errno));
Vedran Furac5d486272019-10-16 14:49:38 +02003213 if (!f)
3214 goto out_load_server_state_in_tree;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003215
3216 global_file_version = srv_state_get_version(f);
3217 if (global_file_version == 0)
3218 goto out_load_server_state_in_tree;
3219
3220 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3221 line = NULL;
3222
3223 line = strdup(mybuf);
3224 if (line == NULL)
3225 continue;
3226
3227 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3228 if (params[0] == NULL)
Willy Tarreauca7a5af2019-12-20 17:26:27 +01003229 goto nextline;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003230
3231 /* bkname */
3232 bkname = params[1];
3233 /* srvname */
3234 srvname = params[3];
3235
3236 /* key */
3237 chunk_printf(&trash, "%s %s", bkname, srvname);
3238
3239 /* store line in tree */
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003240 st = calloc(1, sizeof(*st) + trash.data + 1);
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003241 if (st == NULL) {
3242 goto nextline;
3243 }
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003244 memcpy(st->name_name.key, trash.area, trash.data + 1);
Willy Tarreaufd1aa012019-12-20 17:23:40 +01003245 if (ebst_insert(&state_file, &st->name_name) != &st->name_name) {
3246 /* this is a duplicate key, probably a hand-crafted file,
3247 * drop it!
3248 */
3249 goto nextline;
3250 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003251
3252 /* save line */
3253 st->line = line;
3254
3255 continue;
3256
3257 nextline:
3258 /* free up memory in case of error during the processing of the line */
3259 free(line);
3260 }
3261 }
3262 out_load_server_state_in_tree:
3263
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003264 if (f) {
3265 fclose(f);
3266 f = NULL;
3267 }
3268
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003269 /* parse all proxies and load states form tree (global file) or from local file */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003270 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003271 /* servers are only in backends */
3272 if (!(curproxy->cap & PR_CAP_BE))
3273 continue;
3274 fileopenerr = 0;
3275 filepath = NULL;
3276
3277 /* search server state file path and name */
3278 switch (curproxy->load_server_state_from_file) {
3279 /* read servers state from global file */
3280 case PR_SRV_STATE_FILE_GLOBAL:
3281 /* there was an error while generating global server state file path */
3282 if (globalfilepathlen == 0)
3283 continue;
3284 filepath = globalfilepath;
3285 fileopenerr = 1;
3286 break;
3287 /* this backend has its own file */
3288 case PR_SRV_STATE_FILE_LOCAL:
3289 localfilepathlen = 0;
3290 localfilepath[0] = '\0';
3291 len = 0;
3292 /* create the localfilepath variable */
3293 /* absolute path or no base directory provided */
3294 if ((curproxy->server_state_file_name[0] == '/') || (!global.server_state_base)) {
3295 len = strlen(curproxy->server_state_file_name);
3296 if (len > MAXPATHLEN) {
3297 localfilepathlen = 0;
3298 goto localfileerror;
3299 }
3300 memcpy(localfilepath, curproxy->server_state_file_name, len);
3301 localfilepath[len] = '\0';
3302 localfilepathlen = len;
3303 }
3304 else if (global.server_state_base) {
3305 len = strlen(global.server_state_base);
3306 localfilepathlen += len;
3307
3308 if (localfilepathlen > MAXPATHLEN) {
3309 localfilepathlen = 0;
3310 goto localfileerror;
3311 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003312 memcpy(localfilepath, global.server_state_base, len);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003313 localfilepath[localfilepathlen] = 0;
3314
3315 /* append a slash if needed */
3316 if (!localfilepathlen || localfilepath[localfilepathlen - 1] != '/') {
3317 if (localfilepathlen + 1 > MAXPATHLEN) {
3318 localfilepathlen = 0;
3319 goto localfileerror;
3320 }
3321 localfilepath[localfilepathlen++] = '/';
3322 }
3323
3324 len = strlen(curproxy->server_state_file_name);
3325 if (localfilepathlen + len > MAXPATHLEN) {
3326 localfilepathlen = 0;
3327 goto localfileerror;
3328 }
3329 memcpy(localfilepath + localfilepathlen, curproxy->server_state_file_name, len);
3330 localfilepathlen += len;
3331 localfilepath[localfilepathlen++] = 0;
3332 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003333 localfileerror:
3334 if (localfilepathlen == 0)
Christopher Fauletacef6b92021-02-12 16:31:03 +01003335 continue;
3336 filepath = localfilepath;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003337
3338 break;
3339 case PR_SRV_STATE_FILE_NONE:
3340 default:
3341 continue;
3342 }
3343
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003344 /* when global file is used, we get data from the tree
3345 * Note that in such case we don't check backend name neither uuid.
3346 * Backend name can't be wrong since it's used as a key to retrieve the server state
3347 * line from the tree.
3348 */
3349 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_GLOBAL) {
3350 struct server *srv = curproxy->srv;
3351 while (srv) {
3352 struct ebmb_node *node;
3353 struct state_line *st;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003354
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003355 chunk_printf(&trash, "%s %s", curproxy->id, srv->id);
3356 node = ebst_lookup(&state_file, trash.area);
3357 if (!node)
3358 goto next;
Dragan Dosencf4fb032015-11-04 23:03:26 +01003359
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003360 st = container_of(node, struct state_line, name_name);
3361 memcpy(mybuf, st->line, strlen(st->line));
3362 mybuf[strlen(st->line)] = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003363
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003364 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3365 if (params[0] == NULL)
3366 goto next;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003367
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003368 srv_update_state(srv, global_file_version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003369
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003370 next:
3371 srv = srv->next;
3372 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003373
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003374 continue; /* next proxy in list */
3375 }
3376 else {
3377 /* load 'local' state file */
3378 errno = 0;
3379 f = fopen(filepath, "r");
3380 if (errno && fileopenerr)
3381 ha_warning("Can't open server state file '%s': %s\n", filepath, strerror(errno));
3382 if (!f)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003383 continue;
3384
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003385 mybuf[0] = '\0';
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003386
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003387 /* first character of first line of the file must contain the version of the export */
3388 version = srv_state_get_version(f);
3389 if (version == 0) {
3390 ha_warning("Can't get version of the server state file '%s'\n", filepath);
3391 goto fileclose;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003392 }
3393
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003394 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3395 int bk_f_forced_id = 0;
3396 int check_id = 0;
3397 int check_name = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003398
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003399 srv_state_parse_line(mybuf, version, params, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003400
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003401 if (params[0] == NULL) {
3402 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003403 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003404
3405 /* if line is incomplete line, then ignore it.
3406 * otherwise, update useful flags */
3407 switch (version) {
3408 case 1:
3409 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
3410 check_id = (atoi(params[0]) == curproxy->uuid);
3411 check_name = (strcmp(curproxy->id, params[1]) == 0);
3412 break;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003413 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003414
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003415 bk = curproxy;
3416
3417 /* if backend can't be found, let's continue */
3418 if (!check_id && !check_name)
3419 continue;
3420 else if (!check_id && check_name) {
3421 ha_warning("backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3422 send_log(bk, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3423 }
3424 else if (check_id && !check_name) {
3425 ha_warning("backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3426 send_log(bk, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3427 /* if name doesn't match, we still want to update curproxy if the backend id
3428 * was forced in previous the previous configuration */
3429 if (!bk_f_forced_id)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003430 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003431 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003432
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003433 /* look for the server by its name: param[3] */
3434 srv = server_find_best_match(bk, params[3], 0, NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003435
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003436 if (!srv) {
3437 /* if no server found, then warning and continue with next line */
3438 ha_warning("can't find server '%s' in backend '%s'\n",
3439 params[3], params[1]);
3440 send_log(bk, LOG_NOTICE, "can't find server '%s' in backend '%s'\n",
3441 params[3], params[1]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003442 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003443 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003444
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003445 /* now we can proceed with server's state update */
3446 srv_update_state(srv, version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003447 }
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003448
3449 fileclose:
3450 fclose(f);
3451
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003452 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003453 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003454
3455 /* now free memory allocated for the tree */
3456 for (node = ebmb_first(&state_file), next_node = node ? ebmb_next(node) : NULL;
3457 node;
3458 node = next_node, next_node = node ? ebmb_next(node) : NULL) {
3459 st = container_of(node, struct state_line, name_name);
3460 ebmb_delete(&st->name_name);
3461 free(st->line);
3462 free(st);
3463 }
3464
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003465}
3466
Simon Horman7d09b9a2013-02-12 10:45:51 +09003467/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003468 * update a server's current IP address.
3469 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3470 * ip is in network format.
3471 * updater is a string which contains an information about the requester of the update.
3472 * updater is used if not NULL.
3473 *
3474 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003475 *
3476 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003477 */
Thierry Fournierd35b7a62016-02-24 08:23:22 +01003478int update_server_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003479{
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +02003480 /* save the new IP family & address if necessary */
3481 switch (ip_sin_family) {
3482 case AF_INET:
3483 if (s->addr.ss_family == ip_sin_family &&
3484 !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4))
3485 return 0;
3486 break;
3487 case AF_INET6:
3488 if (s->addr.ss_family == ip_sin_family &&
3489 !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16))
3490 return 0;
3491 break;
3492 };
3493
Baptiste Assmann14e40142015-04-14 01:13:07 +02003494 /* generates a log line and a warning on stderr */
3495 if (1) {
3496 /* book enough space for both IPv4 and IPv6 */
3497 char oldip[INET6_ADDRSTRLEN];
3498 char newip[INET6_ADDRSTRLEN];
3499
3500 memset(oldip, '\0', INET6_ADDRSTRLEN);
3501 memset(newip, '\0', INET6_ADDRSTRLEN);
3502
3503 /* copy old IP address in a string */
3504 switch (s->addr.ss_family) {
3505 case AF_INET:
3506 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3507 break;
3508 case AF_INET6:
3509 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3510 break;
Christopher Fauletb0b76072020-09-08 10:38:40 +02003511 default:
3512 strcpy(oldip, "(none)");
3513 break;
Baptiste Assmann14e40142015-04-14 01:13:07 +02003514 };
3515
3516 /* copy new IP address in a string */
3517 switch (ip_sin_family) {
3518 case AF_INET:
3519 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3520 break;
3521 case AF_INET6:
3522 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3523 break;
3524 };
3525
3526 /* save log line into a buffer */
3527 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3528 s->proxy->id, s->id, oldip, newip, updater);
3529
3530 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003531 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003532
3533 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003534 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003535 }
3536
3537 /* save the new IP family */
3538 s->addr.ss_family = ip_sin_family;
3539 /* save the new IP address */
3540 switch (ip_sin_family) {
3541 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003542 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003543 break;
3544 case AF_INET6:
3545 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3546 break;
3547 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003548 srv_set_dyncookie(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003549
3550 return 0;
3551}
3552
3553/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003554 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3555 *
3556 * Caller can pass its name through <updater> to get it integrated in the response message
3557 * returned by the function.
3558 *
3559 * The function first does the following, in that order:
3560 * - validates the new addr and/or port
3561 * - checks if an update is required (new IP or port is different than current ones)
3562 * - checks the update is allowed:
3563 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3564 * - allow all changes if no CHECKS are configured
3565 * - if CHECK is configured:
3566 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3567 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3568 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003569 *
3570 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003571 */
3572const char *update_server_addr_port(struct server *s, const char *addr, const char *port, char *updater)
3573{
3574 struct sockaddr_storage sa;
3575 int ret, port_change_required;
3576 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003577 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003578 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003579 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003580
3581 msg = get_trash_chunk();
3582 chunk_reset(msg);
3583
3584 if (addr) {
3585 memset(&sa, 0, sizeof(struct sockaddr_storage));
3586 if (str2ip2(addr, &sa, 0) == NULL) {
3587 chunk_printf(msg, "Invalid addr '%s'", addr);
3588 goto out;
3589 }
3590
3591 /* changes are allowed on AF_INET* families only */
3592 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3593 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3594 goto out;
3595 }
3596
3597 /* collecting data currently setup */
3598 memset(current_addr, '\0', sizeof(current_addr));
3599 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3600 /* changes are allowed on AF_INET* families only */
3601 if ((ret != AF_INET) && (ret != AF_INET6)) {
3602 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3603 goto out;
3604 }
3605
3606 /* applying ADDR changes if required and allowed
3607 * ipcmp returns 0 when both ADDR are the same
3608 */
3609 if (ipcmp(&s->addr, &sa) == 0) {
3610 chunk_appendf(msg, "no need to change the addr");
3611 goto port;
3612 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003613 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003614 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003615
3616 /* we also need to update check's ADDR only if it uses the server's one */
3617 if ((s->check.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_CHECKADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003618 ipcpy(&sa, &s->check.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003619 }
3620
3621 /* we also need to update agent ADDR only if it use the server's one */
3622 if ((s->agent.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_AGENTADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003623 ipcpy(&sa, &s->agent.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003624 }
3625
3626 /* update report for caller */
3627 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3628 }
3629
3630 port:
3631 if (port) {
3632 char sign = '\0';
3633 char *endptr;
3634
3635 if (addr)
3636 chunk_appendf(msg, ", ");
3637
3638 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003639 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003640
3641 /* check if PORT change is required */
3642 port_change_required = 0;
3643
3644 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003645 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003646 new_port = strtol(port, &endptr, 10);
3647 if ((errno != 0) || (port == endptr)) {
3648 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3649 goto out;
3650 }
3651
3652 /* check if caller triggers a port mapped or offset */
3653 if (sign == '-' || (sign == '+')) {
3654 /* check if server currently uses port map */
3655 if (!(s->flags & SRV_F_MAPPORTS)) {
3656 /* switch from fixed port to port map mandatorily triggers
3657 * a port change */
3658 port_change_required = 1;
3659 /* check is configured
3660 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3661 * prevent PORT change if check doesn't have it's dedicated port while switching
3662 * to port mapping */
3663 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3664 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.");
3665 goto out;
3666 }
3667 }
3668 /* we're already using port maps */
3669 else {
3670 port_change_required = current_port != new_port;
3671 }
3672 }
3673 /* fixed port */
3674 else {
3675 port_change_required = current_port != new_port;
3676 }
3677
3678 /* applying PORT changes if required and update response message */
3679 if (port_change_required) {
3680 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003681 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003682 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003683
3684 /* prepare message */
3685 chunk_appendf(msg, "port changed from '");
3686 if (s->flags & SRV_F_MAPPORTS)
3687 chunk_appendf(msg, "+");
3688 chunk_appendf(msg, "%d' to '", current_port);
3689
3690 if (sign == '-') {
3691 s->flags |= SRV_F_MAPPORTS;
3692 chunk_appendf(msg, "%c", sign);
3693 /* just use for result output */
3694 new_port = -new_port;
3695 }
3696 else if (sign == '+') {
3697 s->flags |= SRV_F_MAPPORTS;
3698 chunk_appendf(msg, "%c", sign);
3699 }
3700 else {
3701 s->flags &= ~SRV_F_MAPPORTS;
3702 }
3703
3704 chunk_appendf(msg, "%d'", new_port);
3705
3706 /* we also need to update health checks port only if it uses server's realport */
3707 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3708 s->check.port = new_port;
3709 }
3710 }
3711 else {
3712 chunk_appendf(msg, "no need to change the port");
3713 }
3714 }
3715
3716out:
William Dauchy6318d332020-05-02 21:52:36 +02003717 if (changed) {
3718 /* force connection cleanup on the given server */
3719 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003720 srv_set_dyncookie(s);
William Dauchy6318d332020-05-02 21:52:36 +02003721 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003722 if (updater)
3723 chunk_appendf(msg, " by '%s'", updater);
3724 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003725 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003726}
3727
Christopher Faulet6d703682021-03-11 18:03:21 +01003728/*
3729 * update server status based on result of SRV resolution
3730 * returns:
3731 * 0 if server status is updated
3732 * 1 if server status has not changed
3733 *
3734 * Must be called with the server lock held.
3735 */
3736int srvrq_update_srv_status(struct server *s, int has_no_ip)
3737{
3738 if (!s->srvrq)
3739 return 1;
3740
3741 /* since this server has an IP, it can go back in production */
3742 if (has_no_ip == 0) {
3743 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3744 return 1;
3745 }
3746
3747 if (s->next_admin & SRV_ADMF_RMAINT)
3748 return 1;
3749
3750 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record");
3751 return 0;
3752}
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003753
3754/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003755 * update server status based on result of name resolution
3756 * returns:
3757 * 0 if server status is updated
3758 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003759 *
3760 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003761 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003762int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003763{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003764 struct dns_resolvers *resolvers = s->resolvers;
Christopher Faulet55810262021-03-12 10:23:05 +01003765 struct dns_resolution *resolution = (s->dns_requester ? s->dns_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003766 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003767
Jerome Magnin012261a2020-07-28 13:38:22 +02003768 /* If resolution is NULL we're dealing with SRV records Additional records */
Christopher Faulet6d703682021-03-11 18:03:21 +01003769 if (resolution == NULL)
3770 return srvrq_update_srv_status(s, has_no_ip);
Jerome Magnin012261a2020-07-28 13:38:22 +02003771
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003772 switch (resolution->status) {
3773 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003774 /* status when HAProxy has just (re)started.
3775 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003776 break;
3777
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003778 case RSLV_STATUS_VALID:
3779 /*
3780 * resume health checks
3781 * server will be turned back on if health check is safe
3782 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003783 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003784 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003785 return 1;
3786 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3787 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003788 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003789 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003790
Emeric Brun52a91d32017-08-31 14:41:55 +02003791 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003792 return 1;
3793 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3794 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3795 s->proxy->id, s->id);
3796
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003797 ha_warning("%s.\n", trash.area);
3798 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003799 return 0;
3800
3801 case RSLV_STATUS_NX:
3802 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003803 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
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, "DNS NX status");
3810 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003811
3812 case RSLV_STATUS_TIMEOUT:
3813 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003814 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3815 if (!tick_is_expired(exp, now_ms))
3816 break;
3817
3818 if (s->next_admin & SRV_ADMF_RMAINT)
3819 return 1;
3820 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3821 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003822
3823 case RSLV_STATUS_REFUSED:
3824 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003825 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3826 if (!tick_is_expired(exp, now_ms))
3827 break;
3828
3829 if (s->next_admin & SRV_ADMF_RMAINT)
3830 return 1;
3831 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3832 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003833
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003834 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003835 /* stop server if resolution failed for a long enough period */
3836 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3837 if (!tick_is_expired(exp, now_ms))
3838 break;
3839
3840 if (s->next_admin & SRV_ADMF_RMAINT)
3841 return 1;
3842 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3843 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003844 }
3845
3846 return 1;
3847}
3848
3849/*
3850 * Server Name Resolution valid response callback
3851 * It expects:
3852 * - <nameserver>: the name server which answered the valid response
3853 * - <response>: buffer containing a valid DNS response
3854 * - <response_len>: size of <response>
3855 * It performs the following actions:
3856 * - ignore response if current ip found and server family not met
3857 * - update with first new ip found if family is met and current IP is not found
3858 * returns:
3859 * 0 on error
3860 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003861 *
3862 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003863 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003864int snr_resolution_cb(struct dns_requester *requester, struct dns_nameserver *nameserver)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003865{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003866 struct server *s = NULL;
3867 struct dns_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003868 void *serverip, *firstip;
3869 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003870 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003871 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003872 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003873
Christopher Faulet67957bd2017-09-27 11:00:59 +02003874 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003875 if (!s)
3876 return 1;
3877
Christopher Fauletdb001942021-03-10 15:07:27 +01003878 if (s->srvrq) {
Emeric Brun32131d42021-06-11 10:48:45 +02003879 /* If DNS resolution is disabled ignore it.
3880 * This is the case if the server was associated to
3881 * a SRV record and this record is now expired.
Christopher Fauletdb001942021-03-10 15:07:27 +01003882 */
Emeric Brun32131d42021-06-11 10:48:45 +02003883 if (s->flags & SRV_F_NO_RESOLUTION)
Christopher Fauletdb001942021-03-10 15:07:27 +01003884 return 1;
3885 }
3886
Christopher Faulet55810262021-03-12 10:23:05 +01003887 resolution = (s->dns_requester ? s->dns_requester->resolution : NULL);
Christopher Fauletdb001942021-03-10 15:07:27 +01003888 if (!resolution)
3889 return 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003890
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003891 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003892 firstip = NULL; /* pointer to the first valid response found */
3893 /* it will be used as the new IP if a change is required */
3894 firstip_sin_family = AF_UNSPEC;
3895 serverip = NULL; /* current server IP address */
3896
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003897 /* initializing server IP pointer */
3898 server_sin_family = s->addr.ss_family;
3899 switch (server_sin_family) {
3900 case AF_INET:
3901 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3902 break;
3903
3904 case AF_INET6:
3905 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3906 break;
3907
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003908 case AF_UNSPEC:
3909 break;
3910
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003911 default:
3912 goto invalid;
3913 }
3914
Baptiste Assmann729c9012017-05-22 15:13:10 +02003915 ret = dns_get_ip_from_response(&resolution->response, &s->dns_opts,
Thierry Fournierada34842016-02-17 21:25:09 +01003916 serverip, server_sin_family, &firstip,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003917 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003918
3919 switch (ret) {
3920 case DNS_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003921 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003922
3923 case DNS_UPD_SRVIP_NOT_FOUND:
3924 goto save_ip;
3925
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003926 case DNS_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003927 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003928 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003929
Baptiste Assmannfad03182015-10-28 02:03:32 +01003930 case DNS_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003931 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003932 resolution->status = RSLV_STATUS_OTHER;
Christopher Faulet315e1102021-06-24 15:33:52 +02003933 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003934 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003935
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003936 default:
Christopher Faulet315e1102021-06-24 15:33:52 +02003937 has_no_ip = 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003938 goto invalid;
3939
3940 }
3941
3942 save_ip:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003943 if (nameserver) {
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003944 nameserver->counters->update++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003945 /* save the first ip we found */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003946 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003947 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003948 else
3949 chunk_printf(chk, "DNS cache");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003950 update_server_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003951
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003952 update_status:
Christopher Fauletca12ca72021-06-24 15:26:03 +02003953 if (!snr_update_srv_status(s, has_no_ip) && has_no_ip)
3954 memset(&s->addr, 0, sizeof(s->addr));
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003955 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003956
3957 invalid:
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003958 if (nameserver) {
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003959 nameserver->counters->invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003960 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003961 }
Christopher Faulet315e1102021-06-24 15:33:52 +02003962 if (!snr_update_srv_status(s, has_no_ip) && has_no_ip)
3963 memset(&s->addr, 0, sizeof(s->addr));
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003964 return 0;
3965}
3966
3967/*
Baptiste Assmann826060e2020-11-19 22:38:33 +01003968 * SRV record error management callback
3969 * returns:
Emeric Bruna8b60f22021-06-10 15:25:25 +02003970 * 0 if we can trash answser items.
3971 * 1 when safely ignored and we must kept answer items
Baptiste Assmann826060e2020-11-19 22:38:33 +01003972 *
3973 * Grabs the server's lock.
3974 */
3975int srvrq_resolution_error_cb(struct dns_requester *requester, int error_code)
3976{
Baptiste Assmann826060e2020-11-19 22:38:33 +01003977 struct dns_srvrq *srvrq;
3978 struct dns_resolution *res;
3979 struct dns_resolvers *resolvers;
3980 int exp;
3981
3982 /* SRV records */
3983 srvrq = objt_dns_srvrq(requester->owner);
3984 if (!srvrq)
Emeric Bruna8b60f22021-06-10 15:25:25 +02003985 return 0;
Baptiste Assmann826060e2020-11-19 22:38:33 +01003986
3987 resolvers = srvrq->resolvers;
3988 res = requester->resolution;
3989
3990 switch (res->status) {
3991
3992 case RSLV_STATUS_NX:
3993 /* stop server if resolution is NX for a long enough period */
3994 exp = tick_add(res->last_valid, resolvers->hold.nx);
3995 if (!tick_is_expired(exp, now_ms))
3996 return 1;
3997 break;
3998
3999 case RSLV_STATUS_TIMEOUT:
4000 /* stop server if resolution is TIMEOUT for a long enough period */
4001 exp = tick_add(res->last_valid, resolvers->hold.timeout);
4002 if (!tick_is_expired(exp, now_ms))
4003 return 1;
4004 break;
4005
4006 case RSLV_STATUS_REFUSED:
4007 /* stop server if resolution is REFUSED for a long enough period */
4008 exp = tick_add(res->last_valid, resolvers->hold.refused);
4009 if (!tick_is_expired(exp, now_ms))
4010 return 1;
4011 break;
4012
4013 default:
4014 /* stop server if resolution failed for a long enough period */
4015 exp = tick_add(res->last_valid, resolvers->hold.other);
4016 if (!tick_is_expired(exp, now_ms))
4017 return 1;
4018 }
4019
Emeric Brun32131d42021-06-11 10:48:45 +02004020 /* Remove any associated server ref */
4021 dns_detach_from_resolution_answer_items(res, requester, 1);
Baptiste Assmann826060e2020-11-19 22:38:33 +01004022
Emeric Bruna8b60f22021-06-10 15:25:25 +02004023 return 0;
Baptiste Assmann826060e2020-11-19 22:38:33 +01004024}
4025
4026/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004027 * Server Name Resolution error management callback
4028 * returns:
Emeric Bruna8b60f22021-06-10 15:25:25 +02004029 * 0 if we can trash answser items.
4030 * 1 when safely ignored and we must kept answer items
Willy Tarreau46b7f532018-08-21 11:54:26 +02004031 *
4032 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004033 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004034int snr_resolution_error_cb(struct dns_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004035{
Christopher Faulet67957bd2017-09-27 11:00:59 +02004036 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004037
Christopher Faulet67957bd2017-09-27 11:00:59 +02004038 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004039 if (!s)
Emeric Bruna8b60f22021-06-10 15:25:25 +02004040 return 0;
4041
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004042 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Emeric Bruna8b60f22021-06-10 15:25:25 +02004043 if (!snr_update_srv_status(s, 1)) {
Christopher Faulet7c9201e2021-03-10 20:31:40 +01004044 memset(&s->addr, 0, sizeof(s->addr));
Emeric Bruna8b60f22021-06-10 15:25:25 +02004045 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Emeric Brun32131d42021-06-11 10:48:45 +02004046 dns_detach_from_resolution_answer_items(requester->resolution, requester, 1);
Emeric Bruna8b60f22021-06-10 15:25:25 +02004047 return 0;
4048 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004049 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Emeric Bruna8b60f22021-06-10 15:25:25 +02004050
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004051 return 1;
4052}
4053
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004054/*
4055 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004056 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004057 * It returns a pointer to the first server found or NULL if <ip> is not yet
4058 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01004059 *
4060 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004061 */
4062struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
4063{
4064 struct server *tmpsrv;
4065 struct proxy *be;
4066
4067 if (!srv)
4068 return NULL;
4069
4070 be = srv->proxy;
4071 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01004072 /* we found the current server is the same, ignore it */
4073 if (srv == tmpsrv)
4074 continue;
4075
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004076 /* We want to compare the IP in the record with the IP of the servers in the
4077 * same backend, only if:
4078 * * DNS resolution is enabled on the server
4079 * * the hostname used for the resolution by our server is the same than the
4080 * one used for the server found in the backend
4081 * * the server found in the backend is not our current server
4082 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004083 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004084 if ((tmpsrv->hostname_dn == NULL) ||
4085 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
Christopher Fauletd31f6942021-03-16 11:21:04 +01004086 (strcasecmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01004087 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004088 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004089 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004090 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004091
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004092 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01004093 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004094 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004095 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004096 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004097
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004098 /* At this point, we have 2 different servers using the same DNS hostname
4099 * for their respective resolution.
4100 */
4101 if (*ip_family == tmpsrv->addr.ss_family &&
4102 ((tmpsrv->addr.ss_family == AF_INET &&
4103 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
4104 (tmpsrv->addr.ss_family == AF_INET6 &&
4105 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004106 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004107 return tmpsrv;
4108 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004109 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004110 }
4111
Emeric Brune9fd6b52017-11-02 17:20:39 +01004112
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004113 return NULL;
4114}
4115
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004116/* Sets the server's address (srv->addr) from srv->hostname using the libc's
4117 * resolver. This is suited for initial address configuration. Returns 0 on
4118 * success otherwise a non-zero error code. In case of error, *err_code, if
4119 * not NULL, is filled up.
4120 */
4121int srv_set_addr_via_libc(struct server *srv, int *err_code)
4122{
4123 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004124 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01004125 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004126 return 1;
4127 }
4128 return 0;
4129}
4130
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004131/* Set the server's FDQN (->hostname) from <hostname>.
4132 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004133 *
4134 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004135 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004136int srv_set_fqdn(struct server *srv, const char *hostname, int dns_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004137{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004138 struct dns_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004139 char *hostname_dn;
4140 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004141
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02004142 /* Note that the server lock is already held. */
4143 if (!srv->resolvers)
4144 return -1;
4145
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004146 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004147 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Faulet55810262021-03-12 10:23:05 +01004148 /* run time DNS/SRV resolution was not active for this server
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004149 * and we can't enable it at run time for now.
4150 */
Christopher Faulet55810262021-03-12 10:23:05 +01004151 if (!srv->dns_requester && !srv->srvrq)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004152 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004153
4154 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004155 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004156 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004157 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
4158 hostname_dn, trash.size);
4159 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004160 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004161
Christopher Faulet55810262021-03-12 10:23:05 +01004162 resolution = (srv->dns_requester ? srv->dns_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004163 if (resolution &&
4164 resolution->hostname_dn &&
Christopher Fauletd31f6942021-03-16 11:21:04 +01004165 resolution->hostname_dn_len == hostname_dn_len &&
4166 strcasecmp(resolution->hostname_dn, hostname_dn) == 0)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004167 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004168
Christopher Faulet119ec522021-03-11 18:09:53 +01004169 dns_unlink_resolution(srv->dns_requester, 0);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004170
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004171 free(srv->hostname);
4172 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004173 srv->hostname = strdup(hostname);
4174 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004175 srv->hostname_dn_len = hostname_dn_len;
4176 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004177 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004178
Baptiste Assmann13a92322019-06-07 09:40:55 +02004179 if (srv->flags & SRV_F_NO_RESOLUTION)
4180 goto end;
4181
Olivier Houchard55dcdf42017-11-06 15:15:04 +01004182 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004183 goto err;
4184
4185 end:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004186 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004187 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004188 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02004189
4190 err:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004191 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004192 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02004193 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004194}
4195
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004196/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
4197 * from the state file. This is suited for initial address configuration.
4198 * Returns 0 on success otherwise a non-zero error code. In case of error,
4199 * *err_code, if not NULL, is filled up.
4200 */
4201static int srv_apply_lastaddr(struct server *srv, int *err_code)
4202{
4203 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
4204 if (err_code)
4205 *err_code |= ERR_WARN;
4206 return 1;
4207 }
4208 return 0;
4209}
4210
Willy Tarreau25e51522016-11-04 15:10:17 +01004211/* returns 0 if no error, otherwise a combination of ERR_* flags */
4212static int srv_iterate_initaddr(struct server *srv)
4213{
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004214 char *name = srv->hostname;
Willy Tarreau25e51522016-11-04 15:10:17 +01004215 int return_code = 0;
4216 int err_code;
4217 unsigned int methods;
4218
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004219 /* If no addr and no hostname set, get the name from the DNS SRV request */
4220 if (!name && srv->srvrq)
4221 name = srv->srvrq->name;
4222
Willy Tarreau25e51522016-11-04 15:10:17 +01004223 methods = srv->init_addr_methods;
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004224 if (!methods) {
4225 /* otherwise default to "last,libc" */
Willy Tarreau25e51522016-11-04 15:10:17 +01004226 srv_append_initaddr(&methods, SRV_IADDR_LAST);
4227 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004228 if (srv->resolvers_id) {
4229 /* dns resolution is configured, add "none" to not fail on startup */
4230 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4231 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004232 }
4233
Willy Tarreau3eed10e2016-11-07 21:03:16 +01004234 /* "-dr" : always append "none" so that server addresses resolution
4235 * failures are silently ignored, this is convenient to validate some
4236 * configs out of their environment.
4237 */
4238 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
4239 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4240
Willy Tarreau25e51522016-11-04 15:10:17 +01004241 while (methods) {
4242 err_code = 0;
4243 switch (srv_get_next_initaddr(&methods)) {
4244 case SRV_IADDR_LAST:
4245 if (!srv->lastaddr)
4246 continue;
4247 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004248 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004249 return_code |= err_code;
4250 break;
4251
4252 case SRV_IADDR_LIBC:
4253 if (!srv->hostname)
4254 continue;
4255 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004256 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004257 return_code |= err_code;
4258 break;
4259
Willy Tarreau37ebe122016-11-04 15:17:58 +01004260 case SRV_IADDR_NONE:
4261 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004262 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004263 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004264 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004265 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01004266 return return_code;
4267
Willy Tarreau4310d362016-11-02 15:05:56 +01004268 case SRV_IADDR_IP:
4269 ipcpy(&srv->init_addr, &srv->addr);
4270 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004271 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 +01004272 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau4310d362016-11-02 15:05:56 +01004273 }
Olivier Houchard4e694042017-03-14 20:01:29 +01004274 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01004275
Willy Tarreau25e51522016-11-04 15:10:17 +01004276 default: /* unhandled method */
4277 break;
4278 }
4279 }
4280
4281 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004282 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004283 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau25e51522016-11-04 15:10:17 +01004284 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01004285 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004286 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004287 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004288 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004289
4290 return_code |= ERR_ALERT | ERR_FATAL;
4291 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01004292out:
4293 srv_set_dyncookie(srv);
4294 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01004295}
4296
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004297/*
4298 * This function parses all backends and all servers within each backend
4299 * and performs servers' addr resolution based on information provided by:
4300 * - configuration file
4301 * - server-state file (states provided by an 'old' haproxy process)
4302 *
4303 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
4304 */
4305int srv_init_addr(void)
4306{
4307 struct proxy *curproxy;
4308 int return_code = 0;
4309
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004310 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004311 while (curproxy) {
4312 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004313
4314 /* servers are in backend only */
Amaury Denoyelle96a4ff12021-01-06 14:28:50 +01004315 if (!(curproxy->cap & PR_CAP_BE) || curproxy->disabled)
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004316 goto srv_init_addr_next;
4317
Willy Tarreau25e51522016-11-04 15:10:17 +01004318 for (srv = curproxy->srv; srv; srv = srv->next)
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004319 if (srv->hostname || srv->srvrq)
Willy Tarreau3d609a72017-09-06 14:22:45 +02004320 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004321
4322 srv_init_addr_next:
4323 curproxy = curproxy->next;
4324 }
4325
4326 return return_code;
4327}
4328
Willy Tarreau46b7f532018-08-21 11:54:26 +02004329/*
4330 * Must be called with the server lock held.
4331 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004332const 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 +02004333{
4334
Willy Tarreau83061a82018-07-13 11:56:34 +02004335 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004336
4337 msg = get_trash_chunk();
4338 chunk_reset(msg);
4339
Olivier Houchard8da5f982017-08-04 18:35:36 +02004340 if (server->hostname && !strcmp(fqdn, server->hostname)) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004341 chunk_appendf(msg, "no need to change the FDQN");
4342 goto out;
4343 }
4344
4345 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4346 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4347 goto out;
4348 }
4349
4350 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4351 server->proxy->id, server->id, server->hostname, fqdn);
4352
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004353 if (srv_set_fqdn(server, fqdn, dns_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004354 chunk_reset(msg);
4355 chunk_appendf(msg, "could not update %s/%s FQDN",
4356 server->proxy->id, server->id);
4357 goto out;
4358 }
4359
4360 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004361 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004362
4363 out:
4364 if (updater)
4365 chunk_appendf(msg, " by '%s'", updater);
4366 chunk_appendf(msg, "\n");
4367
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004368 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004369}
4370
4371
Willy Tarreau21b069d2016-11-23 17:15:08 +01004372/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4373 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004374 * 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 +01004375 * used for CLI commands requiring a server name.
4376 * Important: the <arg> is modified to remove the '/'.
4377 */
4378struct server *cli_find_server(struct appctx *appctx, char *arg)
4379{
4380 struct proxy *px;
4381 struct server *sv;
4382 char *line;
4383
4384 /* split "backend/server" and make <line> point to server */
4385 for (line = arg; *line; line++)
4386 if (*line == '/') {
4387 *line++ = '\0';
4388 break;
4389 }
4390
4391 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004392 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004393 return NULL;
4394 }
4395
4396 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004397 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004398 return NULL;
4399 }
4400
Willy Tarreauc3914d42020-09-24 08:39:22 +02004401 if (px->disabled) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004402 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004403 return NULL;
4404 }
4405
4406 return sv;
4407}
4408
William Lallemand222baf22016-11-19 02:00:33 +01004409
Willy Tarreau46b7f532018-08-21 11:54:26 +02004410/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004411static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004412{
4413 struct server *sv;
4414 const char *warning;
4415
4416 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4417 return 1;
4418
4419 sv = cli_find_server(appctx, args[2]);
4420 if (!sv)
4421 return 1;
4422
4423 if (strcmp(args[3], "weight") == 0) {
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004424 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004425 warning = server_parse_weight_change_request(sv, args[4]);
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004426 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004427 if (warning)
4428 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004429 }
4430 else if (strcmp(args[3], "state") == 0) {
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004431 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004432 if (strcmp(args[4], "ready") == 0)
4433 srv_adm_set_ready(sv);
4434 else if (strcmp(args[4], "drain") == 0)
4435 srv_adm_set_drain(sv);
4436 else if (strcmp(args[4], "maint") == 0)
4437 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02004438 else
4439 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004440 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004441 }
4442 else if (strcmp(args[3], "health") == 0) {
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004443 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004444 if (sv->track)
4445 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004446 else if (strcmp(args[4], "up") == 0) {
4447 sv->check.health = sv->check.rise + sv->check.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], "stopping") == 0) {
4451 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004452 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004453 }
4454 else if (strcmp(args[4], "down") == 0) {
4455 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004456 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004457 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004458 else
4459 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004460 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004461 }
4462 else if (strcmp(args[3], "agent") == 0) {
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004463 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
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");
William Lallemand222baf22016-11-19 02:00:33 +01004466 else if (strcmp(args[4], "up") == 0) {
4467 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004468 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004469 }
4470 else if (strcmp(args[4], "down") == 0) {
4471 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004472 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004473 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004474 else
4475 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004476 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004477 }
Misiek2da082d2017-01-09 09:40:42 +01004478 else if (strcmp(args[3], "agent-addr") == 0) {
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004479 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004480 if (!(sv->agent.state & CHK_ST_ENABLED))
4481 cli_err(appctx, "agent checks are not enabled on this server.\n");
4482 else if (str2ip(args[4], &sv->agent.addr) == NULL)
4483 cli_err(appctx, "incorrect addr address given for agent.\n");
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004484 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Misiek2da082d2017-01-09 09:40:42 +01004485 }
4486 else if (strcmp(args[3], "agent-send") == 0) {
Christopher Fauletb123e2b2021-06-18 08:47:14 +02004487 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004488 if (!(sv->agent.state & CHK_ST_ENABLED))
4489 cli_err(appctx, "agent checks are not enabled on this server.\n");
4490 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004491 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004492 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004493 }
Christopher Fauletb123e2b2021-06-18 08:47:14 +02004494 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Misiek2da082d2017-01-09 09:40:42 +01004495 }
William Lallemand222baf22016-11-19 02:00:33 +01004496 else if (strcmp(args[3], "check-port") == 0) {
4497 int i = 0;
4498 if (strl2irc(args[4], strlen(args[4]), &i) != 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004499 cli_err(appctx, "'set server <srv> check-port' expects an integer as argument.\n");
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004500 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004501 }
4502 if ((i < 0) || (i > 65535)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004503 cli_err(appctx, "provided port is not valid.\n");
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004504 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004505 }
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004506 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004507 /* prevent the update of port to 0 if MAPPORTS are in use */
4508 if ((sv->flags & SRV_F_MAPPORTS) && (i == 0)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004509 cli_err(appctx, "can't unset 'port' since MAPPORTS is in use.\n");
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004510 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4511 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004512 }
4513 sv->check.port = i;
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004514 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004515 cli_msg(appctx, LOG_NOTICE, "health check port updated.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004516 }
4517 else if (strcmp(args[3], "addr") == 0) {
4518 char *addr = NULL;
4519 char *port = NULL;
4520 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004521 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004522 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004523 }
4524 else {
4525 addr = args[4];
4526 }
4527 if (strcmp(args[5], "port") == 0) {
4528 port = args[6];
4529 }
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004530 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004531 warning = update_server_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004532 if (warning)
4533 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004534 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004535 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004536 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004537 else if (strcmp(args[3], "fqdn") == 0) {
4538 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004539 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004540 goto out;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004541 }
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004542 if (!sv->resolvers) {
4543 cli_err(appctx, "set server <b>/<s> fqdn failed because no resolution is configured.\n");
4544 goto out;
4545 }
Christopher Fauleted13e2e2021-06-15 11:37:40 +02004546 if (sv->srvrq) {
4547 cli_err(appctx, "set server <b>/<s> fqdn failed because SRV resolution is configured.\n");
4548 goto out;
4549 }
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004550 HA_SPIN_LOCK(DNS_LOCK, &sv->resolvers->lock);
4551 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Baptiste Assmann13a92322019-06-07 09:40:55 +02004552 /* ensure runtime resolver will process this new fqdn */
4553 if (sv->flags & SRV_F_NO_RESOLUTION) {
4554 sv->flags &= ~SRV_F_NO_RESOLUTION;
4555 }
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004556 warning = update_server_fqdn(sv, args[4], "stats socket command", 1);
Christopher Fauletb123e2b2021-06-18 08:47:14 +02004557 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004558 HA_SPIN_UNLOCK(DNS_LOCK, &sv->resolvers->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004559 if (warning)
4560 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004561 }
William Lallemand222baf22016-11-19 02:00:33 +01004562 else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004563 cli_err(appctx,
4564 "'set server <srv>' only supports 'agent', 'health', 'state',"
4565 " 'weight', 'addr', 'fqdn' and 'check-port'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004566 }
Christopher Faulet0139e0a2021-06-15 12:01:29 +02004567 out:
William Lallemand222baf22016-11-19 02:00:33 +01004568 return 1;
4569}
4570
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004571static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004572{
4573 struct stream_interface *si = appctx->owner;
4574 struct proxy *px;
4575 struct server *sv;
4576 char *line;
4577
4578
4579 /* split "backend/server" and make <line> point to server */
4580 for (line = args[2]; *line; line++)
4581 if (*line == '/') {
4582 *line++ = '\0';
4583 break;
4584 }
4585
Willy Tarreau9d008692019-08-09 11:21:01 +02004586 if (!*line)
4587 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004588
Willy Tarreau9d008692019-08-09 11:21:01 +02004589 if (!get_backend_server(args[2], line, &px, &sv))
4590 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004591
4592 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004593 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4594 sv->iweight);
4595 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004596 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004597 return 0;
4598 }
William Lallemand6b160942016-11-22 12:34:35 +01004599 return 1;
4600}
4601
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004602/* Parse a "set weight" command.
4603 *
4604 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004605 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004606static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004607{
4608 struct server *sv;
4609 const char *warning;
4610
4611 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4612 return 1;
4613
4614 sv = cli_find_server(appctx, args[2]);
4615 if (!sv)
4616 return 1;
4617
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004618 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4619
William Lallemand6b160942016-11-22 12:34:35 +01004620 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004621 if (warning)
4622 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004623
4624 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4625
William Lallemand6b160942016-11-22 12:34:35 +01004626 return 1;
4627}
4628
Willy Tarreau46b7f532018-08-21 11:54:26 +02004629/* parse a "set maxconn server" command. It always returns 1.
4630 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004631 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004632 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004633static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004634{
4635 struct server *sv;
4636 const char *warning;
4637
4638 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4639 return 1;
4640
4641 sv = cli_find_server(appctx, args[3]);
4642 if (!sv)
4643 return 1;
4644
Amaury Denoyelle43b0c622021-06-18 11:11:36 +02004645 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4646
Willy Tarreaub8026272016-11-23 11:26:56 +01004647 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004648 if (warning)
4649 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004650
Amaury Denoyelle43b0c622021-06-18 11:11:36 +02004651 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4652
Willy Tarreaub8026272016-11-23 11:26:56 +01004653 return 1;
4654}
William Lallemand6b160942016-11-22 12:34:35 +01004655
Willy Tarreau46b7f532018-08-21 11:54:26 +02004656/* parse a "disable agent" command. It always returns 1.
4657 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004658 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004659 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004660static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004661{
4662 struct server *sv;
4663
4664 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4665 return 1;
4666
4667 sv = cli_find_server(appctx, args[2]);
4668 if (!sv)
4669 return 1;
4670
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004671 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004672 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004673 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004674 return 1;
4675}
4676
Willy Tarreau46b7f532018-08-21 11:54:26 +02004677/* parse a "disable health" command. It always returns 1.
4678 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004679 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004680 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004681static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004682{
4683 struct server *sv;
4684
4685 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4686 return 1;
4687
4688 sv = cli_find_server(appctx, args[2]);
4689 if (!sv)
4690 return 1;
4691
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004692 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004693 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004694 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004695 return 1;
4696}
4697
Willy Tarreau46b7f532018-08-21 11:54:26 +02004698/* parse a "disable server" command. It always returns 1.
4699 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004700 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004701 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004702static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004703{
4704 struct server *sv;
4705
4706 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4707 return 1;
4708
4709 sv = cli_find_server(appctx, args[2]);
4710 if (!sv)
4711 return 1;
4712
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004713 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004714 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004715 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004716 return 1;
4717}
4718
Willy Tarreau46b7f532018-08-21 11:54:26 +02004719/* parse a "enable agent" command. It always returns 1.
4720 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004721 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004722 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004723static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004724{
4725 struct server *sv;
4726
4727 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4728 return 1;
4729
4730 sv = cli_find_server(appctx, args[2]);
4731 if (!sv)
4732 return 1;
4733
Willy Tarreau9d008692019-08-09 11:21:01 +02004734 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4735 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004736
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004737 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004738 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004739 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004740 return 1;
4741}
4742
Willy Tarreau46b7f532018-08-21 11:54:26 +02004743/* parse a "enable health" command. It always returns 1.
4744 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004745 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004746 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004747static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004748{
4749 struct server *sv;
4750
4751 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4752 return 1;
4753
4754 sv = cli_find_server(appctx, args[2]);
4755 if (!sv)
4756 return 1;
4757
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004758 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004759 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004760 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004761 return 1;
4762}
4763
Willy Tarreau46b7f532018-08-21 11:54:26 +02004764/* parse a "enable server" command. It always returns 1.
4765 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004766 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004767 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004768static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004769{
4770 struct server *sv;
4771
4772 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4773 return 1;
4774
4775 sv = cli_find_server(appctx, args[2]);
4776 if (!sv)
4777 return 1;
4778
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004779 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004780 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004781 if (!(sv->flags & SRV_F_COOKIESET)
4782 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4783 sv->cookie)
4784 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004785 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004786 return 1;
4787}
4788
William Lallemand222baf22016-11-19 02:00:33 +01004789/* register cli keywords */
4790static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004791 { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004792 { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004793 { { "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 +01004794 { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004795 { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004796 { { "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 +01004797 { { "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 +01004798 { { "set", "server", NULL }, "set server : change a server's state, weight or address", cli_parse_set_server },
William Lallemand6b160942016-11-22 12:34:35 +01004799 { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight },
4800 { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight },
4801
William Lallemand222baf22016-11-19 02:00:33 +01004802 {{},}
4803}};
4804
Willy Tarreau0108d902018-11-25 19:14:37 +01004805INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004806
Emeric Brun64cc49c2017-10-03 14:46:45 +02004807/*
4808 * This function applies server's status changes, it is
4809 * is designed to be called asynchronously.
4810 *
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004811 * Must be called with the server lock held. This may also be called at init
4812 * time as the result of parsing the state file, in which case no lock will be
4813 * held, and the server's warmup task can be null.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004814 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004815static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004816{
4817 struct check *check = &s->check;
4818 int xferred;
4819 struct proxy *px = s->proxy;
4820 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4821 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4822 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004823 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004824
Emeric Brun64cc49c2017-10-03 14:46:45 +02004825 /* If currently main is not set we try to apply pending state changes */
4826 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4827 int next_admin;
4828
4829 /* Backup next admin */
4830 next_admin = s->next_admin;
4831
4832 /* restore current admin state */
4833 s->next_admin = s->cur_admin;
4834
4835 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4836 s->last_change = now.tv_sec;
4837 if (s->proxy->lbprm.set_server_status_down)
4838 s->proxy->lbprm.set_server_status_down(s);
4839
4840 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4841 srv_shutdown_streams(s, SF_ERR_DOWN);
4842
4843 /* we might have streams queued on this server and waiting for
4844 * a connection. Those which are redispatchable will be queued
4845 * to another server or to the proxy itself.
4846 */
4847 xferred = pendconn_redistribute(s);
4848
4849 tmptrash = alloc_trash_chunk();
4850 if (tmptrash) {
4851 chunk_printf(tmptrash,
4852 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4853 s->proxy->id, s->id);
4854
Emeric Brun5a133512017-10-19 14:42:30 +02004855 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004856 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004857
4858 /* we don't send an alert if the server was previously paused */
4859 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004860 send_log(s->proxy, log_level, "%s.\n",
4861 tmptrash->area);
4862 send_email_alert(s, log_level, "%s",
4863 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004864 free_trash_chunk(tmptrash);
4865 tmptrash = NULL;
4866 }
4867 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4868 set_backend_down(s->proxy);
4869
4870 s->counters.down_trans++;
4871 }
4872 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4873 s->last_change = now.tv_sec;
4874 if (s->proxy->lbprm.set_server_status_down)
4875 s->proxy->lbprm.set_server_status_down(s);
4876
4877 /* we might have streams queued on this server and waiting for
4878 * a connection. Those which are redispatchable will be queued
4879 * to another server or to the proxy itself.
4880 */
4881 xferred = pendconn_redistribute(s);
4882
4883 tmptrash = alloc_trash_chunk();
4884 if (tmptrash) {
4885 chunk_printf(tmptrash,
4886 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4887 s->proxy->id, s->id);
4888
Emeric Brun5a133512017-10-19 14:42:30 +02004889 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004890
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004891 ha_warning("%s.\n", tmptrash->area);
4892 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4893 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004894 free_trash_chunk(tmptrash);
4895 tmptrash = NULL;
4896 }
4897
4898 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4899 set_backend_down(s->proxy);
4900 }
4901 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4902 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4903 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4904 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4905 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4906 s->proxy->last_change = now.tv_sec;
4907 }
4908
Amaury Denoyellefe2bf092020-10-29 15:59:04 +01004909 if (s->cur_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
Emeric Brun64cc49c2017-10-03 14:46:45 +02004910 s->down_time += now.tv_sec - s->last_change;
4911
4912 s->last_change = now.tv_sec;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004913 if (s->next_state == SRV_ST_STARTING && s->warmup)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004914 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4915
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004916 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004917 /* now propagate the status change to any LB algorithms */
4918 if (px->lbprm.update_server_eweight)
4919 px->lbprm.update_server_eweight(s);
4920 else if (srv_willbe_usable(s)) {
4921 if (px->lbprm.set_server_status_up)
4922 px->lbprm.set_server_status_up(s);
4923 }
4924 else {
4925 if (px->lbprm.set_server_status_down)
4926 px->lbprm.set_server_status_down(s);
4927 }
4928
4929 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4930 * and it's not a backup server and its effective weight is > 0,
4931 * then it can accept new connections, so we shut down all streams
4932 * on all backup servers.
4933 */
4934 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4935 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4936 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4937
4938 /* check if we can handle some connections queued at the proxy. We
4939 * will take as many as we can handle.
4940 */
4941 xferred = pendconn_grab_from_px(s);
4942
4943 tmptrash = alloc_trash_chunk();
4944 if (tmptrash) {
4945 chunk_printf(tmptrash,
4946 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
4947 s->proxy->id, s->id);
4948
Emeric Brun5a133512017-10-19 14:42:30 +02004949 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004950 ha_warning("%s.\n", tmptrash->area);
4951 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4952 tmptrash->area);
4953 send_email_alert(s, LOG_NOTICE, "%s",
4954 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004955 free_trash_chunk(tmptrash);
4956 tmptrash = NULL;
4957 }
4958
4959 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4960 set_backend_down(s->proxy);
4961 }
4962 else if (s->cur_eweight != s->next_eweight) {
4963 /* now propagate the status change to any LB algorithms */
4964 if (px->lbprm.update_server_eweight)
4965 px->lbprm.update_server_eweight(s);
4966 else if (srv_willbe_usable(s)) {
4967 if (px->lbprm.set_server_status_up)
4968 px->lbprm.set_server_status_up(s);
4969 }
4970 else {
4971 if (px->lbprm.set_server_status_down)
4972 px->lbprm.set_server_status_down(s);
4973 }
4974
4975 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4976 set_backend_down(s->proxy);
4977 }
4978
4979 s->next_admin = next_admin;
4980 }
4981
Emeric Brun5a133512017-10-19 14:42:30 +02004982 /* reset operational state change */
4983 *s->op_st_chg.reason = 0;
4984 s->op_st_chg.status = s->op_st_chg.code = -1;
4985 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004986
4987 /* Now we try to apply pending admin changes */
4988
4989 /* Maintenance must also disable health checks */
4990 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
4991 if (s->check.state & CHK_ST_ENABLED) {
4992 s->check.state |= CHK_ST_PAUSED;
4993 check->health = 0;
4994 }
4995
4996 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02004997 tmptrash = alloc_trash_chunk();
4998 if (tmptrash) {
4999 chunk_printf(tmptrash,
5000 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
5001 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5002 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02005003
Olivier Houchard796a2b32017-10-24 17:42:47 +02005004 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02005005
Olivier Houchard796a2b32017-10-24 17:42:47 +02005006 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005007 ha_warning("%s.\n", tmptrash->area);
5008 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5009 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02005010 }
5011 free_trash_chunk(tmptrash);
5012 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005013 }
Emeric Brun8f298292017-12-06 16:47:17 +01005014 /* commit new admin status */
5015
5016 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005017 }
5018 else { /* server was still running */
5019 check->health = 0; /* failure */
5020 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01005021
5022 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005023 if (s->proxy->lbprm.set_server_status_down)
5024 s->proxy->lbprm.set_server_status_down(s);
5025
Emeric Brun64cc49c2017-10-03 14:46:45 +02005026 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
5027 srv_shutdown_streams(s, SF_ERR_DOWN);
5028
William Dauchy6318d332020-05-02 21:52:36 +02005029 /* force connection cleanup on the given server */
5030 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005031 /* we might have streams queued on this server and waiting for
5032 * a connection. Those which are redispatchable will be queued
5033 * to another server or to the proxy itself.
5034 */
5035 xferred = pendconn_redistribute(s);
5036
5037 tmptrash = alloc_trash_chunk();
5038 if (tmptrash) {
5039 chunk_printf(tmptrash,
5040 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
5041 s->flags & SRV_F_BACKUP ? "Backup " : "",
5042 s->proxy->id, s->id,
5043 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5044
5045 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
5046
5047 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005048 ha_warning("%s.\n", tmptrash->area);
5049 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
5050 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005051 }
5052 free_trash_chunk(tmptrash);
5053 tmptrash = NULL;
5054 }
5055 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5056 set_backend_down(s->proxy);
5057
5058 s->counters.down_trans++;
5059 }
5060 }
5061 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
5062 /* OK here we're leaving maintenance, we have many things to check,
5063 * because the server might possibly be coming back up depending on
5064 * its state. In practice, leaving maintenance means that we should
5065 * immediately turn to UP (more or less the slowstart) under the
5066 * following conditions :
5067 * - server is neither checked nor tracked
5068 * - server tracks another server which is not checked
5069 * - server tracks another server which is already up
5070 * Which sums up as something simpler :
5071 * "either the tracking server is up or the server's checks are disabled
5072 * or up". Otherwise we only re-enable health checks. There's a special
5073 * case associated to the stopping state which can be inherited. Note
5074 * that the server might still be in drain mode, which is naturally dealt
5075 * with by the lower level functions.
5076 */
5077
5078 if (s->check.state & CHK_ST_ENABLED) {
5079 s->check.state &= ~CHK_ST_PAUSED;
5080 check->health = check->rise; /* start OK but check immediately */
5081 }
5082
5083 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
5084 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
5085 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
5086 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
5087 s->next_state = SRV_ST_STOPPING;
5088 }
5089 else {
Willy Tarreauc6c8cd92021-08-04 19:35:13 +02005090 s->last_change = now.tv_sec;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005091 s->next_state = SRV_ST_STARTING;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005092 if (s->slowstart > 0) {
5093 if (s->warmup)
5094 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5095 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005096 else
5097 s->next_state = SRV_ST_RUNNING;
5098 }
5099
5100 }
5101
5102 tmptrash = alloc_trash_chunk();
5103 if (tmptrash) {
5104 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5105 chunk_printf(tmptrash,
5106 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
5107 s->flags & SRV_F_BACKUP ? "Backup " : "",
5108 s->proxy->id, s->id,
5109 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5110 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5111 }
5112 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5113 chunk_printf(tmptrash,
5114 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
5115 s->flags & SRV_F_BACKUP ? "Backup " : "",
5116 s->proxy->id, s->id, s->hostname,
5117 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5118 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5119 }
5120 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5121 chunk_printf(tmptrash,
5122 "%sServer %s/%s is %s/%s (leaving maintenance)",
5123 s->flags & SRV_F_BACKUP ? "Backup " : "",
5124 s->proxy->id, s->id,
5125 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5126 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5127 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005128 ha_warning("%s.\n", tmptrash->area);
5129 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5130 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005131 free_trash_chunk(tmptrash);
5132 tmptrash = NULL;
5133 }
5134
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005135 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005136 /* now propagate the status change to any LB algorithms */
5137 if (px->lbprm.update_server_eweight)
5138 px->lbprm.update_server_eweight(s);
5139 else if (srv_willbe_usable(s)) {
5140 if (px->lbprm.set_server_status_up)
5141 px->lbprm.set_server_status_up(s);
5142 }
5143 else {
5144 if (px->lbprm.set_server_status_down)
5145 px->lbprm.set_server_status_down(s);
5146 }
5147
5148 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5149 set_backend_down(s->proxy);
Willy Tarreauc6c8cd92021-08-04 19:35:13 +02005150 else if (!prev_srv_count && (s->proxy->srv_bck || s->proxy->srv_act))
5151 s->proxy->last_change = now.tv_sec;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005152
Willy Tarreau6a78e612018-08-07 10:14:53 +02005153 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5154 * and it's not a backup server and its effective weight is > 0,
5155 * then it can accept new connections, so we shut down all streams
5156 * on all backup servers.
5157 */
5158 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5159 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5160 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5161
5162 /* check if we can handle some connections queued at the proxy. We
5163 * will take as many as we can handle.
5164 */
5165 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005166 }
5167 else if (s->next_admin & SRV_ADMF_MAINT) {
5168 /* remaining in maintenance mode, let's inform precisely about the
5169 * situation.
5170 */
5171 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5172 tmptrash = alloc_trash_chunk();
5173 if (tmptrash) {
5174 chunk_printf(tmptrash,
5175 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5176 s->flags & SRV_F_BACKUP ? "Backup " : "",
5177 s->proxy->id, s->id);
5178
5179 if (s->track) /* normally it's mandatory here */
5180 chunk_appendf(tmptrash, " via %s/%s",
5181 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005182 ha_warning("%s.\n", tmptrash->area);
5183 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5184 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005185 free_trash_chunk(tmptrash);
5186 tmptrash = NULL;
5187 }
5188 }
5189 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5190 tmptrash = alloc_trash_chunk();
5191 if (tmptrash) {
5192 chunk_printf(tmptrash,
5193 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5194 s->flags & SRV_F_BACKUP ? "Backup " : "",
5195 s->proxy->id, s->id, s->hostname);
5196
5197 if (s->track) /* normally it's mandatory here */
5198 chunk_appendf(tmptrash, " via %s/%s",
5199 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005200 ha_warning("%s.\n", tmptrash->area);
5201 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5202 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005203 free_trash_chunk(tmptrash);
5204 tmptrash = NULL;
5205 }
5206 }
5207 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5208 tmptrash = alloc_trash_chunk();
5209 if (tmptrash) {
5210 chunk_printf(tmptrash,
5211 "%sServer %s/%s remains in forced maintenance",
5212 s->flags & SRV_F_BACKUP ? "Backup " : "",
5213 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005214 ha_warning("%s.\n", tmptrash->area);
5215 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5216 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005217 free_trash_chunk(tmptrash);
5218 tmptrash = NULL;
5219 }
5220 }
5221 /* don't report anything when leaving drain mode and remaining in maintenance */
5222
5223 s->cur_admin = s->next_admin;
5224 }
5225
5226 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5227 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5228 /* drain state is applied only if not yet in maint */
5229
5230 s->last_change = now.tv_sec;
5231 if (px->lbprm.set_server_status_down)
5232 px->lbprm.set_server_status_down(s);
5233
5234 /* we might have streams queued on this server and waiting for
5235 * a connection. Those which are redispatchable will be queued
5236 * to another server or to the proxy itself.
5237 */
5238 xferred = pendconn_redistribute(s);
5239
5240 tmptrash = alloc_trash_chunk();
5241 if (tmptrash) {
5242 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5243 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5244 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5245
5246 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5247
5248 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005249 ha_warning("%s.\n", tmptrash->area);
5250 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5251 tmptrash->area);
5252 send_email_alert(s, LOG_NOTICE, "%s",
5253 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005254 }
5255 free_trash_chunk(tmptrash);
5256 tmptrash = NULL;
5257 }
5258
5259 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5260 set_backend_down(s->proxy);
5261 }
5262 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5263 /* OK completely leaving drain mode */
5264 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5265 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5266 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5267 s->proxy->last_change = now.tv_sec;
5268 }
5269
5270 if (s->last_change < now.tv_sec) // ignore negative times
5271 s->down_time += now.tv_sec - s->last_change;
5272 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005273 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005274
5275 tmptrash = alloc_trash_chunk();
5276 if (tmptrash) {
5277 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5278 chunk_printf(tmptrash,
5279 "%sServer %s/%s is %s (leaving forced drain)",
5280 s->flags & SRV_F_BACKUP ? "Backup " : "",
5281 s->proxy->id, s->id,
5282 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5283 }
5284 else {
5285 chunk_printf(tmptrash,
5286 "%sServer %s/%s is %s (leaving drain)",
5287 s->flags & SRV_F_BACKUP ? "Backup " : "",
5288 s->proxy->id, s->id,
5289 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5290 if (s->track) /* normally it's mandatory here */
5291 chunk_appendf(tmptrash, " via %s/%s",
5292 s->track->proxy->id, s->track->id);
5293 }
5294
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005295 ha_warning("%s.\n", tmptrash->area);
5296 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5297 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005298 free_trash_chunk(tmptrash);
5299 tmptrash = NULL;
5300 }
5301
5302 /* now propagate the status change to any LB algorithms */
5303 if (px->lbprm.update_server_eweight)
5304 px->lbprm.update_server_eweight(s);
5305 else if (srv_willbe_usable(s)) {
5306 if (px->lbprm.set_server_status_up)
5307 px->lbprm.set_server_status_up(s);
5308 }
5309 else {
5310 if (px->lbprm.set_server_status_down)
5311 px->lbprm.set_server_status_down(s);
5312 }
5313 }
5314 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5315 /* remaining in drain mode after removing one of its flags */
5316
5317 tmptrash = alloc_trash_chunk();
5318 if (tmptrash) {
5319 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5320 chunk_printf(tmptrash,
5321 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5322 s->flags & SRV_F_BACKUP ? "Backup " : "",
5323 s->proxy->id, s->id);
5324
5325 if (s->track) /* normally it's mandatory here */
5326 chunk_appendf(tmptrash, " via %s/%s",
5327 s->track->proxy->id, s->track->id);
5328 }
5329 else {
5330 chunk_printf(tmptrash,
5331 "%sServer %s/%s remains in forced drain mode",
5332 s->flags & SRV_F_BACKUP ? "Backup " : "",
5333 s->proxy->id, s->id);
5334 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005335 ha_warning("%s.\n", tmptrash->area);
5336 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5337 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005338 free_trash_chunk(tmptrash);
5339 tmptrash = NULL;
5340 }
5341
5342 /* commit new admin status */
5343
5344 s->cur_admin = s->next_admin;
5345 }
5346 }
5347
5348 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005349 *s->adm_st_chg_cause = 0;
5350}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005351
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005352struct task *srv_cleanup_toremove_connections(struct task *task, void *context, unsigned short state)
5353{
5354 struct connection *conn;
5355
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005356 while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns,
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005357 struct connection *, list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005358 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005359 }
5360
5361 return task;
5362}
5363
Olivier Houchardff1d0922020-06-29 20:15:59 +02005364/* Move toremove_nb connections from idle_list to toremove_list, -1 means
5365 * moving them all.
5366 * Returns the number of connections moved.
5367 */
5368static int srv_migrate_conns_to_remove(struct mt_list *idle_list, struct mt_list *toremove_list, int toremove_nb)
5369{
5370 struct mt_list *elt1, elt2;
5371 struct connection *conn;
5372 int i = 0;
5373
5374 mt_list_for_each_entry_safe(conn, idle_list, list, elt1, elt2) {
5375 if (toremove_nb != -1 && i >= toremove_nb)
5376 break;
5377 MT_LIST_DEL_SAFE_NOINIT(elt1);
Willy Tarreaude4db172020-07-10 08:10:29 +02005378 MT_LIST_ADDQ(toremove_list, &conn->list);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005379 i++;
5380 }
5381 return i;
5382}
William Dauchy6318d332020-05-02 21:52:36 +02005383/* cleanup connections for a given server
5384 * might be useful when going on forced maintenance or live changing ip/port
5385 */
William Dauchy707ad322020-05-04 13:52:40 +02005386static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005387{
William Dauchy6318d332020-05-02 21:52:36 +02005388 int did_remove;
5389 int i;
William Dauchy6318d332020-05-02 21:52:36 +02005390
Amaury Denoyellec0a2ace2021-01-06 14:28:51 +01005391 /* nothing to do if pool-max-conn is null */
5392 if (!srv->max_idle_conns)
5393 return;
5394
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005395 /* check all threads starting with ours */
William Dauchy6318d332020-05-02 21:52:36 +02005396 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005397 for (i = tid;;) {
William Dauchy6318d332020-05-02 21:52:36 +02005398 did_remove = 0;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005399 if (srv_migrate_conns_to_remove(&srv->idle_conns[i], &idle_conns[i].toremove_conns, -1) > 0)
William Dauchy6318d332020-05-02 21:52:36 +02005400 did_remove = 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005401 if (srv_migrate_conns_to_remove(&srv->safe_conns[i], &idle_conns[i].toremove_conns, -1) > 0)
5402 did_remove = 1;
William Dauchy6318d332020-05-02 21:52:36 +02005403 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005404 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005405
5406 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5407 break;
William Dauchy6318d332020-05-02 21:52:36 +02005408 }
5409 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5410}
5411
Willy Tarreau980855b2019-02-07 14:59:29 +01005412struct task *srv_cleanup_idle_connections(struct task *task, void *context, unsigned short state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005413{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005414 struct server *srv;
5415 struct eb32_node *eb;
5416 int i;
5417 unsigned int next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005418
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005419 next_wakeup = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005420 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5421 while (1) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005422 int exceed_conns;
5423 int to_kill;
5424 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005425
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005426 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5427 if (!eb) {
5428 /* we might have reached the end of the tree, typically because
5429 * <now_ms> is in the first half and we're first scanning the last
5430 * half. Let's loop back to the beginning of the tree now.
5431 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005432
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005433 eb = eb32_first(&idle_conn_srv);
5434 if (likely(!eb))
5435 break;
5436 }
5437 if (tick_is_lt(now_ms, eb->key)) {
5438 /* timer not expired yet, revisit it later */
5439 next_wakeup = eb->key;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005440 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005441 }
5442 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005443
5444 /* Calculate how many idle connections we want to kill :
5445 * we want to remove half the difference between the total
5446 * of established connections (used or idle) and the max
5447 * number of used connections.
5448 */
5449 curr_idle = srv->curr_idle_conns;
5450 if (curr_idle == 0)
5451 goto remove;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005452 exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005453 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005454
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005455 srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns) / 2;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005456 if (srv->est_need_conns < srv->max_used_conns)
5457 srv->est_need_conns = srv->max_used_conns;
5458
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005459 srv->max_used_conns = srv->curr_used_conns;
5460
Willy Tarreau18ed7892020-07-02 19:05:30 +02005461 if (exceed_conns <= 0)
5462 goto remove;
5463
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005464 /* check all threads starting with ours */
5465 for (i = tid;;) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005466 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005467 int j;
5468 int did_remove = 0;
5469
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005470 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5471 curr_idle + 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005472
5473 j = srv_migrate_conns_to_remove(&srv->idle_conns[i], &idle_conns[i].toremove_conns, max_conn);
5474 if (j > 0)
5475 did_remove = 1;
5476 if (max_conn - j > 0 &&
5477 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 +01005478 did_remove = 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005479
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005480 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005481 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005482
5483 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5484 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005485 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005486remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005487 eb32_delete(&srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005488
5489 if (srv->curr_idle_conns) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005490 /* There are still more idle connections, add the
5491 * server back in the tree.
5492 */
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005493 srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005494 eb32_insert(&idle_conn_srv, &srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005495 next_wakeup = tick_first(next_wakeup, srv->idle_node.key);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005496 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005497 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005498 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5499
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005500 task->expire = next_wakeup;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005501 return task;
5502}
Olivier Houchard88698d92019-04-16 19:07:22 +02005503
Willy Tarreau76cc6992020-07-01 18:49:24 +02005504/* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */
5505static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx,
5506 struct proxy *defpx, const char *file, int line,
5507 char **err)
5508{
5509 if (too_many_args(1, args, err, NULL))
5510 return -1;
5511
5512 if (strcmp(args[1], "on") == 0)
5513 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
5514 else if (strcmp(args[1], "off") == 0)
5515 global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
5516 else {
5517 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
5518 return -1;
5519 }
5520 return 0;
5521}
5522
Olivier Houchard88698d92019-04-16 19:07:22 +02005523/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5524static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
5525 struct proxy *defpx, const char *file, int line,
5526 char **err)
5527{
5528 int arg = -1;
5529
5530 if (too_many_args(1, args, err, NULL))
5531 return -1;
5532
5533 if (*(args[1]) != 0)
5534 arg = atoi(args[1]);
5535
5536 if (arg < 0 || arg > 100) {
5537 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5538 return -1;
5539 }
5540
5541 if (args[0][10] == 'h')
5542 global.tune.pool_high_ratio = arg;
5543 else
5544 global.tune.pool_low_ratio = arg;
5545 return 0;
5546}
5547
5548/* config keyword parsers */
5549static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau76cc6992020-07-01 18:49:24 +02005550 { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared },
Olivier Houchard88698d92019-04-16 19:07:22 +02005551 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5552 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5553 { 0, NULL, NULL }
5554}};
5555
5556INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5557
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005558/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005559 * Local variables:
5560 * c-indent-level: 8
5561 * c-basic-offset: 8
5562 * End:
5563 */