blob: 6be20e2c883b3c6990d26a67c69e1875b2968f9c [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 Tarreau8d366972020-05-27 16:10:29 +020030#include <haproxy/errors.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020031#include <haproxy/global.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020032#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020033#include <haproxy/mailers.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +020034#include <haproxy/namespace.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020035#include <haproxy/port_range.h>
36#include <haproxy/protocol.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020037#include <haproxy/queue.h>
Emeric Brunc9437992021-02-12 19:42:55 +010038#include <haproxy/resolvers.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>
William Dauchyf6370442020-11-14 19:25:33 +010041#include <haproxy/ssl_sock.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020042#include <haproxy/stats-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020043#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020044#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020045#include <haproxy/task.h>
Willy Tarreau51cd5952020-06-05 12:25:38 +020046#include <haproxy/tcpcheck.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020047#include <haproxy/time.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020048
Baptiste Assmannda29fe22019-06-13 13:24:29 +020049
Willy Tarreau3ff577e2018-08-02 11:48:52 +020050static void srv_update_status(struct server *s);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020051static void srv_update_state(struct server *srv, int version, char **params);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +010052static int srv_apply_lastaddr(struct server *srv, int *err_code);
Emeric Brun08622d32020-12-23 17:41:43 +010053static int srv_set_fqdn(struct server *srv, const char *fqdn, int resolv_locked);
Baptiste Assmannda29fe22019-06-13 13:24:29 +020054static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params);
55static int srv_state_get_version(FILE *f);
William Dauchy6318d332020-05-02 21:52:36 +020056static void srv_cleanup_connections(struct server *srv);
William Dauchyb456e1f2021-02-11 22:51:23 +010057static const char *update_server_check_addr_port(struct server *s, const char *addr,
58 const char *port);
William Dauchy7cabc062021-02-11 22:51:24 +010059static const char *update_server_agent_addr_port(struct server *s, const char *addr,
60 const char *port);
Willy Tarreaubaaee002006-06-26 02:48:02 +020061
Willy Tarreau21faa912012-10-10 08:27:36 +020062/* List head of all known server keywords */
63static struct srv_kw_list srv_keywords = {
64 .list = LIST_HEAD_INIT(srv_keywords.list)
65};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020066
Willy Tarreauaf613e82020-06-05 08:40:51 +020067__decl_thread(HA_SPINLOCK_T idle_conn_srv_lock);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010068struct eb_root idle_conn_srv = EB_ROOT;
69struct task *idle_conn_task = NULL;
Olivier Houchard9ea5d362019-02-14 18:29:09 +010070
Frédéric Lécaille7da71292019-05-20 09:47:07 +020071/* The server names dictionary */
Thayne McCombs92149f92020-11-20 01:28:26 -070072struct dict server_key_dict = {
73 .name = "server keys",
Frédéric Lécaille7da71292019-05-20 09:47:07 +020074 .values = EB_ROOT_UNIQUE,
75};
76
Baptiste Assmannda29fe22019-06-13 13:24:29 +020077/* tree where global state_file is loaded */
Willy Tarreaufd1aa012019-12-20 17:23:40 +010078struct eb_root state_file = EB_ROOT_UNIQUE;
Baptiste Assmannda29fe22019-06-13 13:24:29 +020079
Simon Hormana3608442013-11-01 16:46:15 +090080int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020081{
Amaury Denoyellee6ba7912020-10-29 15:59:05 +010082 if ((s->cur_state != SRV_ST_STOPPED) || s->last_change >= now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020083 return s->down_time;
84
85 return now.tv_sec - s->last_change + s->down_time;
86}
Willy Tarreaubaaee002006-06-26 02:48:02 +020087
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050088int srv_lastsession(const struct server *s)
89{
90 if (s->counters.last_sess)
91 return now.tv_sec - s->counters.last_sess;
92
93 return -1;
94}
95
Simon Horman4a741432013-02-23 15:35:38 +090096int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020097{
Simon Horman4a741432013-02-23 15:35:38 +090098 const struct server *s = check->server;
99
Willy Tarreauff5ae352013-12-11 20:36:34 +0100100 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +0900101 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100102
Emeric Brun52a91d32017-08-31 14:41:55 +0200103 if ((s->next_state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +0900104 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100105
Simon Horman4a741432013-02-23 15:35:38 +0900106 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100107}
108
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100109/*
110 * Check that we did not get a hash collision.
Willy Tarreau595e7672020-10-20 17:30:08 +0200111 * Unlikely, but it can happen. The server's proxy must be at least
112 * read-locked.
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100113 */
114static inline void srv_check_for_dup_dyncookie(struct server *s)
Olivier Houchard4e694042017-03-14 20:01:29 +0100115{
116 struct proxy *p = s->proxy;
117 struct server *tmpserv;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100118
119 for (tmpserv = p->srv; tmpserv != NULL;
120 tmpserv = tmpserv->next) {
121 if (tmpserv == s)
122 continue;
123 if (tmpserv->next_admin & SRV_ADMF_FMAINT)
124 continue;
125 if (tmpserv->cookie &&
126 strcmp(tmpserv->cookie, s->cookie) == 0) {
127 ha_warning("We generated two equal cookies for two different servers.\n"
128 "Please change the secret key for '%s'.\n",
129 s->proxy->id);
130 }
131 }
132
133}
134
Willy Tarreau46b7f532018-08-21 11:54:26 +0200135/*
Willy Tarreau595e7672020-10-20 17:30:08 +0200136 * Must be called with the server lock held, and will read-lock the proxy.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200137 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100138void srv_set_dyncookie(struct server *s)
139{
140 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100141 char *tmpbuf;
142 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100143 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100144 size_t buffer_len;
145 int addr_len;
146 int port;
147
Willy Tarreau595e7672020-10-20 17:30:08 +0200148 HA_RWLOCK_RDLOCK(PROXY_LOCK, &p->lock);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200149
Olivier Houchard4e694042017-03-14 20:01:29 +0100150 if ((s->flags & SRV_F_COOKIESET) ||
151 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
152 s->proxy->dyncookie_key == NULL)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200153 goto out;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100154 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100155
156 if (s->addr.ss_family != AF_INET &&
157 s->addr.ss_family != AF_INET6)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200158 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100159 /*
160 * Buffer to calculate the cookie value.
161 * The buffer contains the secret key + the server IP address
162 * + the TCP port.
163 */
164 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
165 /*
166 * The TCP port should use only 2 bytes, but is stored in
167 * an unsigned int in struct server, so let's use 4, to be
168 * on the safe side.
169 */
170 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200171 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100172 memcpy(tmpbuf, p->dyncookie_key, key_len);
173 memcpy(&(tmpbuf[key_len]),
174 s->addr.ss_family == AF_INET ?
175 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
176 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
177 addr_len);
178 /*
179 * Make sure it's the same across all the load balancers,
180 * no matter their endianness.
181 */
182 port = htonl(s->svc_port);
183 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
184 hash_value = XXH64(tmpbuf, buffer_len, 0);
185 memprintf(&s->cookie, "%016llx", hash_value);
186 if (!s->cookie)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200187 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100188 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100189
190 /* Don't bother checking if the dyncookie is duplicated if
191 * the server is marked as "disabled", maybe it doesn't have
192 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100193 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100194 if (!(s->next_admin & SRV_ADMF_FMAINT))
195 srv_check_for_dup_dyncookie(s);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200196 out:
Willy Tarreau595e7672020-10-20 17:30:08 +0200197 HA_RWLOCK_RDUNLOCK(PROXY_LOCK, &p->lock);
Olivier Houchard4e694042017-03-14 20:01:29 +0100198}
199
Willy Tarreau21faa912012-10-10 08:27:36 +0200200/*
Thayne McCombs92149f92020-11-20 01:28:26 -0700201 * Must be called with the server lock held, and will write-lock the proxy.
202 */
203static void srv_set_addr_desc(struct server *s)
204{
205 struct proxy *p = s->proxy;
206 char *key;
207
208 key = sa2str(&s->addr, s->svc_port, s->flags & SRV_F_MAPPORTS);
209
210 if (s->addr_node.key) {
Thayne McCombs24da7e12021-01-05 23:10:09 -0700211 if (key && strcmp(key, s->addr_node.key) == 0) {
Thayne McCombs92149f92020-11-20 01:28:26 -0700212 free(key);
213 return;
214 }
215
216 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
217 ebpt_delete(&s->addr_node);
218 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
219
220 free(s->addr_node.key);
221 }
222
223 s->addr_node.key = key;
224
Thayne McCombs24da7e12021-01-05 23:10:09 -0700225 if (s->addr_node.key) {
226 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
227 ebis_insert(&p->used_server_addr, &s->addr_node);
228 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
229 }
Thayne McCombs92149f92020-11-20 01:28:26 -0700230}
231
232/*
Willy Tarreau21faa912012-10-10 08:27:36 +0200233 * Registers the server keyword list <kwl> as a list of valid keywords for next
234 * parsing sessions.
235 */
236void srv_register_keywords(struct srv_kw_list *kwl)
237{
238 LIST_ADDQ(&srv_keywords.list, &kwl->list);
239}
240
241/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
242 * keyword is found with a NULL ->parse() function, then an attempt is made to
243 * find one with a valid ->parse() function. This way it is possible to declare
244 * platform-dependant, known keywords as NULL, then only declare them as valid
245 * if some options are met. Note that if the requested keyword contains an
246 * opening parenthesis, everything from this point is ignored.
247 */
248struct srv_kw *srv_find_kw(const char *kw)
249{
250 int index;
251 const char *kwend;
252 struct srv_kw_list *kwl;
253 struct srv_kw *ret = NULL;
254
255 kwend = strchr(kw, '(');
256 if (!kwend)
257 kwend = kw + strlen(kw);
258
259 list_for_each_entry(kwl, &srv_keywords.list, list) {
260 for (index = 0; kwl->kw[index].kw != NULL; index++) {
261 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
262 kwl->kw[index].kw[kwend-kw] == 0) {
263 if (kwl->kw[index].parse)
264 return &kwl->kw[index]; /* found it !*/
265 else
266 ret = &kwl->kw[index]; /* may be OK */
267 }
268 }
269 }
270 return ret;
271}
272
273/* Dumps all registered "server" keywords to the <out> string pointer. The
274 * unsupported keywords are only dumped if their supported form was not
275 * found.
276 */
277void srv_dump_kws(char **out)
278{
279 struct srv_kw_list *kwl;
280 int index;
281
Christopher Faulet784063e2020-05-18 12:14:18 +0200282 if (!out)
283 return;
284
Willy Tarreau21faa912012-10-10 08:27:36 +0200285 *out = NULL;
286 list_for_each_entry(kwl, &srv_keywords.list, list) {
287 for (index = 0; kwl->kw[index].kw != NULL; index++) {
288 if (kwl->kw[index].parse ||
289 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
290 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
291 kwl->scope,
292 kwl->kw[index].kw,
293 kwl->kw[index].skip ? " <arg>" : "",
294 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
295 kwl->kw[index].parse ? "" : " (not supported)");
296 }
297 }
298 }
299}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100300
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100301/* Parse the "backup" server keyword */
302static int srv_parse_backup(char **args, int *cur_arg,
303 struct proxy *curproxy, struct server *newsrv, char **err)
304{
305 newsrv->flags |= SRV_F_BACKUP;
306 return 0;
307}
308
Alexander Liu2a54bb72019-05-22 19:44:48 +0800309
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100310/* Parse the "cookie" server keyword */
311static int srv_parse_cookie(char **args, int *cur_arg,
312 struct proxy *curproxy, struct server *newsrv, char **err)
313{
314 char *arg;
315
316 arg = args[*cur_arg + 1];
317 if (!*arg) {
318 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
319 return ERR_ALERT | ERR_FATAL;
320 }
321
322 free(newsrv->cookie);
323 newsrv->cookie = strdup(arg);
324 newsrv->cklen = strlen(arg);
325 newsrv->flags |= SRV_F_COOKIESET;
326 return 0;
327}
328
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100329/* Parse the "disabled" server keyword */
330static int srv_parse_disabled(char **args, int *cur_arg,
331 struct proxy *curproxy, struct server *newsrv, char **err)
332{
Emeric Brun52a91d32017-08-31 14:41:55 +0200333 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
334 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100335 newsrv->check.state |= CHK_ST_PAUSED;
336 newsrv->check.health = 0;
337 return 0;
338}
339
340/* Parse the "enabled" server keyword */
341static int srv_parse_enabled(char **args, int *cur_arg,
342 struct proxy *curproxy, struct server *newsrv, char **err)
343{
Emeric Brun52a91d32017-08-31 14:41:55 +0200344 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
345 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100346 newsrv->check.state &= ~CHK_ST_PAUSED;
347 newsrv->check.health = newsrv->check.rise;
348 return 0;
349}
350
Willy Tarreau9c538e02019-01-23 10:21:49 +0100351static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
352{
353 char *arg;
354
355 arg = args[*cur_arg + 1];
356 if (!*arg) {
357 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
358 return ERR_ALERT | ERR_FATAL;
359 }
360 newsrv->max_reuse = atoi(arg);
361
362 return 0;
363}
364
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100365static 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 +0100366{
367 const char *res;
368 char *arg;
369 unsigned int time;
370
371 arg = args[*cur_arg + 1];
372 if (!*arg) {
373 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
374 return ERR_ALERT | ERR_FATAL;
375 }
376 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200377 if (res == PARSE_TIME_OVER) {
378 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
379 args[*cur_arg+1], args[*cur_arg]);
380 return ERR_ALERT | ERR_FATAL;
381 }
382 else if (res == PARSE_TIME_UNDER) {
383 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
384 args[*cur_arg+1], args[*cur_arg]);
385 return ERR_ALERT | ERR_FATAL;
386 }
387 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100388 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
389 *res, args[*cur_arg]);
390 return ERR_ALERT | ERR_FATAL;
391 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100392 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100393
394 return 0;
395}
396
Willy Tarreau2f3f4d32020-07-01 07:43:51 +0200397static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
398{
399 char *arg;
400
401 arg = args[*cur_arg + 1];
402 if (!*arg) {
403 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
404 return ERR_ALERT | ERR_FATAL;
405 }
406
407 newsrv->low_idle_conns = atoi(arg);
408 return 0;
409}
410
Olivier Houchard006e3102018-12-10 18:30:32 +0100411static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
412{
413 char *arg;
414
415 arg = args[*cur_arg + 1];
416 if (!*arg) {
417 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
418 return ERR_ALERT | ERR_FATAL;
419 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100420
Olivier Houchard006e3102018-12-10 18:30:32 +0100421 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100422 if ((int)newsrv->max_idle_conns < -1) {
423 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
424 return ERR_ALERT | ERR_FATAL;
425 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100426
427 return 0;
428}
429
Willy Tarreaudff55432012-10-10 17:51:05 +0200430/* parse the "id" server keyword */
431static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
432{
433 struct eb32_node *node;
434
435 if (!*args[*cur_arg + 1]) {
436 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
437 return ERR_ALERT | ERR_FATAL;
438 }
439
440 newsrv->puid = atol(args[*cur_arg + 1]);
441 newsrv->conf.id.key = newsrv->puid;
442
443 if (newsrv->puid <= 0) {
444 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
445 return ERR_ALERT | ERR_FATAL;
446 }
447
448 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
449 if (node) {
450 struct server *target = container_of(node, struct server, conf.id);
451 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
452 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
453 target->id);
454 return ERR_ALERT | ERR_FATAL;
455 }
456
457 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200458 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200459 return 0;
460}
461
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100462/* Parse the "namespace" server keyword */
463static int srv_parse_namespace(char **args, int *cur_arg,
464 struct proxy *curproxy, struct server *newsrv, char **err)
465{
Willy Tarreaue5733232019-05-22 19:24:06 +0200466#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100467 char *arg;
468
469 arg = args[*cur_arg + 1];
470 if (!*arg) {
471 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
472 return ERR_ALERT | ERR_FATAL;
473 }
474
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100475 if (strcmp(arg, "*") == 0) {
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100476 /* Use the namespace associated with the connection (if present). */
477 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
478 return 0;
479 }
480
481 /*
482 * As this parser may be called several times for the same 'default-server'
483 * object, or for a new 'server' instance deriving from a 'default-server'
484 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
485 */
486 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
487
488 newsrv->netns = netns_store_lookup(arg, strlen(arg));
489 if (!newsrv->netns)
490 newsrv->netns = netns_store_insert(arg);
491
492 if (!newsrv->netns) {
493 memprintf(err, "Cannot open namespace '%s'", arg);
494 return ERR_ALERT | ERR_FATAL;
495 }
496
497 return 0;
498#else
499 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
500 return ERR_ALERT | ERR_FATAL;
501#endif
502}
503
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100504/* Parse the "no-backup" server keyword */
505static int srv_parse_no_backup(char **args, int *cur_arg,
506 struct proxy *curproxy, struct server *newsrv, char **err)
507{
508 newsrv->flags &= ~SRV_F_BACKUP;
509 return 0;
510}
511
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100512
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100513/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200514static inline int srv_disable_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}
519
520/* Parse the "no-send-proxy" server keyword */
521static int srv_parse_no_send_proxy(char **args, int *cur_arg,
522 struct proxy *curproxy, struct server *newsrv, char **err)
523{
524 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
525}
526
527/* Parse the "no-send-proxy-v2" server keyword */
528static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
529 struct proxy *curproxy, struct server *newsrv, char **err)
530{
531 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
532}
533
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200534/* Parse the "no-tfo" server keyword */
535static int srv_parse_no_tfo(char **args, int *cur_arg,
536 struct proxy *curproxy, struct server *newsrv, char **err)
537{
538 newsrv->flags &= ~SRV_F_FASTOPEN;
539 return 0;
540}
541
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100542/* Parse the "non-stick" server keyword */
543static int srv_parse_non_stick(char **args, int *cur_arg,
544 struct proxy *curproxy, struct server *newsrv, char **err)
545{
546 newsrv->flags |= SRV_F_NON_STICK;
547 return 0;
548}
549
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100550/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200551static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100552{
553 srv->pp_opts |= flags;
554 return 0;
555}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200556/* parse the "proto" server keyword */
557static int srv_parse_proto(char **args, int *cur_arg,
558 struct proxy *px, struct server *newsrv, char **err)
559{
560 struct ist proto;
561
562 if (!*args[*cur_arg + 1]) {
563 memprintf(err, "'%s' : missing value", args[*cur_arg]);
564 return ERR_ALERT | ERR_FATAL;
565 }
566 proto = ist2(args[*cur_arg + 1], strlen(args[*cur_arg + 1]));
567 newsrv->mux_proto = get_mux_proto(proto);
568 if (!newsrv->mux_proto) {
569 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
570 return ERR_ALERT | ERR_FATAL;
571 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200572 return 0;
573}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100574
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100575/* parse the "proxy-v2-options" */
576static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
577 struct proxy *px, struct server *newsrv, char **err)
578{
579 char *p, *n;
580 for (p = args[*cur_arg+1]; p; p = n) {
581 n = strchr(p, ',');
582 if (n)
583 *n++ = '\0';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100584 if (strcmp(p, "ssl") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100585 newsrv->pp_opts |= SRV_PP_V2_SSL;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100586 } else if (strcmp(p, "cert-cn") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100587 newsrv->pp_opts |= SRV_PP_V2_SSL;
588 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100589 } else if (strcmp(p, "cert-key") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100590 newsrv->pp_opts |= SRV_PP_V2_SSL;
591 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100592 } else if (strcmp(p, "cert-sig") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100593 newsrv->pp_opts |= SRV_PP_V2_SSL;
594 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100595 } else if (strcmp(p, "ssl-cipher") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100596 newsrv->pp_opts |= SRV_PP_V2_SSL;
597 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100598 } else if (strcmp(p, "authority") == 0) {
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100599 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100600 } else if (strcmp(p, "crc32c") == 0) {
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100601 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100602 } else if (strcmp(p, "unique-id") == 0) {
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100603 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100604 } else
605 goto fail;
606 }
607 return 0;
608 fail:
609 if (err)
610 memprintf(err, "'%s' : proxy v2 option not implemented", p);
611 return ERR_ALERT | ERR_FATAL;
612}
613
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100614/* Parse the "observe" server keyword */
615static int srv_parse_observe(char **args, int *cur_arg,
616 struct proxy *curproxy, struct server *newsrv, char **err)
617{
618 char *arg;
619
620 arg = args[*cur_arg + 1];
621 if (!*arg) {
622 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
623 return ERR_ALERT | ERR_FATAL;
624 }
625
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100626 if (strcmp(arg, "none") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100627 newsrv->observe = HANA_OBS_NONE;
628 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100629 else if (strcmp(arg, "layer4") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100630 newsrv->observe = HANA_OBS_LAYER4;
631 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100632 else if (strcmp(arg, "layer7") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100633 if (curproxy->mode != PR_MODE_HTTP) {
634 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
635 return ERR_ALERT;
636 }
637 newsrv->observe = HANA_OBS_LAYER7;
638 }
639 else {
640 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
641 "but got '%s'\n", args[*cur_arg], arg);
642 return ERR_ALERT | ERR_FATAL;
643 }
644
645 return 0;
646}
647
Frédéric Lécaille16186232017-03-14 16:42:49 +0100648/* Parse the "redir" server keyword */
649static int srv_parse_redir(char **args, int *cur_arg,
650 struct proxy *curproxy, struct server *newsrv, char **err)
651{
652 char *arg;
653
654 arg = args[*cur_arg + 1];
655 if (!*arg) {
656 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
657 return ERR_ALERT | ERR_FATAL;
658 }
659
660 free(newsrv->rdr_pfx);
661 newsrv->rdr_pfx = strdup(arg);
662 newsrv->rdr_len = strlen(arg);
663
664 return 0;
665}
666
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100667/* Parse the "send-proxy" server keyword */
668static int srv_parse_send_proxy(char **args, int *cur_arg,
669 struct proxy *curproxy, struct server *newsrv, char **err)
670{
671 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
672}
673
674/* Parse the "send-proxy-v2" server keyword */
675static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
676 struct proxy *curproxy, struct server *newsrv, char **err)
677{
678 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
679}
680
Frédéric Lécailledba97072017-03-17 15:33:50 +0100681
682/* Parse the "source" server keyword */
683static int srv_parse_source(char **args, int *cur_arg,
684 struct proxy *curproxy, struct server *newsrv, char **err)
685{
686 char *errmsg;
687 int port_low, port_high;
688 struct sockaddr_storage *sk;
Frédéric Lécailledba97072017-03-17 15:33:50 +0100689
690 errmsg = NULL;
691
692 if (!*args[*cur_arg + 1]) {
693 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
694 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
695 goto err;
696 }
697
698 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200699 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
700 &errmsg, NULL, NULL,
701 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 +0100702 if (!sk) {
703 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
704 goto err;
705 }
706
Frédéric Lécailledba97072017-03-17 15:33:50 +0100707 newsrv->conn_src.opts |= CO_SRC_BIND;
708 newsrv->conn_src.source_addr = *sk;
709
710 if (port_low != port_high) {
711 int i;
712
Frédéric Lécailledba97072017-03-17 15:33:50 +0100713 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
714 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
715 newsrv->conn_src.sport_range->ports[i] = port_low + i;
716 }
717
718 *cur_arg += 2;
719 while (*(args[*cur_arg])) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100720 if (strcmp(args[*cur_arg], "usesrc") == 0) { /* address to use outside */
Frédéric Lécailledba97072017-03-17 15:33:50 +0100721#if defined(CONFIG_HAP_TRANSPARENT)
722 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100723 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
724 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +0100725 goto err;
726 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100727 if (strcmp(args[*cur_arg + 1], "client") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +0100728 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
729 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
730 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100731 else if (strcmp(args[*cur_arg + 1], "clientip") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +0100732 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
733 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
734 }
735 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
736 char *name, *end;
737
738 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +0100739 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100740 name++;
741
742 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +0100743 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +0100744 end++;
745
746 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
747 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
748 free(newsrv->conn_src.bind_hdr_name);
749 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
750 newsrv->conn_src.bind_hdr_len = end - name;
751 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
752 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
753 newsrv->conn_src.bind_hdr_occ = -1;
754
755 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +0100756 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100757 end++;
758 if (*end == ',') {
759 end++;
760 name = end;
761 if (*end == '-')
762 end++;
Willy Tarreau90807112020-02-25 08:16:33 +0100763 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100764 end++;
765 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
766 }
767
768 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100769 ha_alert("usesrc hdr_ip(name,num) does not support negative"
770 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100771 goto err;
772 }
773 }
774 else {
775 struct sockaddr_storage *sk;
776 int port1, port2;
777
778 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200779 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL,
780 &errmsg, NULL, NULL,
781 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100782 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100783 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100784 goto err;
785 }
786
Frédéric Lécailledba97072017-03-17 15:33:50 +0100787 newsrv->conn_src.tproxy_addr = *sk;
788 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
789 }
790 global.last_checks |= LSTCHK_NETADM;
791 *cur_arg += 2;
792 continue;
793#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100794 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 +0100795 goto err;
796#endif /* defined(CONFIG_HAP_TRANSPARENT) */
797 } /* "usesrc" */
798
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100799 if (strcmp(args[*cur_arg], "interface") == 0) { /* specifically bind to this interface */
Frédéric Lécailledba97072017-03-17 15:33:50 +0100800#ifdef SO_BINDTODEVICE
801 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100802 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100803 goto err;
804 }
805 free(newsrv->conn_src.iface_name);
806 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
807 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
808 global.last_checks |= LSTCHK_NETADM;
809#else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100810 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100811 goto err;
812#endif
813 *cur_arg += 2;
814 continue;
815 }
816 /* this keyword in not an option of "source" */
817 break;
818 } /* while */
819
820 return 0;
821
822 err:
823 free(errmsg);
824 return ERR_ALERT | ERR_FATAL;
825}
826
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100827/* Parse the "stick" server keyword */
828static int srv_parse_stick(char **args, int *cur_arg,
829 struct proxy *curproxy, struct server *newsrv, char **err)
830{
831 newsrv->flags &= ~SRV_F_NON_STICK;
832 return 0;
833}
834
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100835/* Parse the "track" server keyword */
836static int srv_parse_track(char **args, int *cur_arg,
837 struct proxy *curproxy, struct server *newsrv, char **err)
838{
839 char *arg;
840
841 arg = args[*cur_arg + 1];
842 if (!*arg) {
843 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
844 return ERR_ALERT | ERR_FATAL;
845 }
846
847 free(newsrv->trackit);
848 newsrv->trackit = strdup(arg);
849
850 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800851}
852
853/* Parse the "socks4" server keyword */
854static int srv_parse_socks4(char **args, int *cur_arg,
855 struct proxy *curproxy, struct server *newsrv, char **err)
856{
857 char *errmsg;
858 int port_low, port_high;
859 struct sockaddr_storage *sk;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800860
861 errmsg = NULL;
862
863 if (!*args[*cur_arg + 1]) {
864 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
865 goto err;
866 }
867
868 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200869 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
870 &errmsg, NULL, NULL,
871 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT);
Alexander Liu2a54bb72019-05-22 19:44:48 +0800872 if (!sk) {
873 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
874 goto err;
875 }
876
Alexander Liu2a54bb72019-05-22 19:44:48 +0800877 newsrv->flags |= SRV_F_SOCKS4_PROXY;
878 newsrv->socks4_addr = *sk;
879
Alexander Liu2a54bb72019-05-22 19:44:48 +0800880 return 0;
881
882 err:
883 free(errmsg);
884 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100885}
886
Frédéric Lécailledba97072017-03-17 15:33:50 +0100887
Willy Tarreau034c88c2017-01-23 23:36:45 +0100888/* parse the "tfo" server keyword */
889static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
890{
891 newsrv->flags |= SRV_F_FASTOPEN;
892 return 0;
893}
894
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200895/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +0200896 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200897 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200898 *
899 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200900 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200901void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200902{
Willy Tarreau751153e2021-02-17 13:33:24 +0100903 struct stream *stream;
904 struct mt_list *elt1, elt2;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200905
Willy Tarreau751153e2021-02-17 13:33:24 +0100906 mt_list_for_each_entry_safe(stream, &srv->actconns, by_srv, elt1, elt2)
Willy Tarreau87b09662015-04-03 00:22:06 +0200907 if (stream->srv_conn == srv)
908 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200909}
910
911/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +0200912 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200913 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200914 *
915 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200916 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200917void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200918{
919 struct server *srv;
920
921 for (srv = px->srv; srv != NULL; srv = srv->next)
922 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +0200923 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200924}
925
Willy Tarreaubda92272014-05-20 21:55:30 +0200926/* Appends some information to a message string related to a server going UP or
927 * DOWN. If both <forced> and <reason> are null and the server tracks another
928 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +0200929 * If <check> is non-null, an entire string describing the check result will be
930 * appended after a comma and a space (eg: to report some information from the
931 * check that changed the state). In the other case, the string will be built
932 * using the check results stored into the struct server if present.
933 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +0200934 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200935 *
936 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200937 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200938void srv_append_status(struct buffer *msg, struct server *s,
939 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200940{
Emeric Brun5a133512017-10-19 14:42:30 +0200941 short status = s->op_st_chg.status;
942 short code = s->op_st_chg.code;
943 long duration = s->op_st_chg.duration;
944 char *desc = s->op_st_chg.reason;
945
946 if (check) {
947 status = check->status;
948 code = check->code;
949 duration = check->duration;
950 desc = check->desc;
951 }
952
953 if (status != -1) {
954 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
955
956 if (status >= HCHK_STATUS_L57DATA)
957 chunk_appendf(msg, ", code: %d", code);
958
959 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +0200960 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +0200961
962 chunk_appendf(msg, ", info: \"");
963
964 chunk_initlen(&src, desc, 0, strlen(desc));
965 chunk_asciiencode(msg, &src, '"');
966
967 chunk_appendf(msg, "\"");
968 }
969
970 if (duration >= 0)
971 chunk_appendf(msg, ", check duration: %ldms", duration);
972 }
973 else if (desc && *desc) {
974 chunk_appendf(msg, ", %s", desc);
975 }
976 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +0200977 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +0200978 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200979
980 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200981 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200982 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
983 " %d sessions active, %d requeued, %d remaining in queue",
984 s->proxy->srv_act, s->proxy->srv_bck,
985 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
986 s->cur_sess, xferred, s->nbpend);
987 else
988 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
989 " %d sessions requeued, %d total in queue",
990 s->proxy->srv_act, s->proxy->srv_bck,
991 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
992 xferred, s->nbpend);
993 }
994}
995
Emeric Brun5a133512017-10-19 14:42:30 +0200996/* Marks server <s> down, regardless of its checks' statuses. The server is
997 * registered in a list to postpone the counting of the remaining servers on
998 * the proxy and transfers queued streams whenever possible to other servers at
999 * a sync point. Maintenance servers are ignored. It stores the <reason> if
1000 * non-null as the reason for going down or the available data from the check
1001 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001002 *
1003 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001004 */
Emeric Brun5a133512017-10-19 14:42:30 +02001005void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001006{
1007 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001008
Emeric Brun64cc49c2017-10-03 14:46:45 +02001009 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001010 return;
1011
Emeric Brun52a91d32017-08-31 14:41:55 +02001012 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +02001013 *s->op_st_chg.reason = 0;
1014 s->op_st_chg.status = -1;
1015 if (reason) {
1016 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1017 }
1018 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001019 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001020 s->op_st_chg.code = check->code;
1021 s->op_st_chg.status = check->status;
1022 s->op_st_chg.duration = check->duration;
1023 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001024
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001025 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001026 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001027
Emeric Brun9f0b4582017-10-23 14:39:51 +02001028 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001029 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001030 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001031 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001032 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001033}
1034
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001035/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001036 * in maintenance. The server is registered in a list to postpone the counting
1037 * of the remaining servers on the proxy and tries to grab requests from the
1038 * proxy at a sync point. Maintenance servers are ignored. It stores the
1039 * <reason> if non-null as the reason for going down or the available data
1040 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001041 *
1042 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001043 */
Emeric Brun5a133512017-10-19 14:42:30 +02001044void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001045{
1046 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001047
Emeric Brun64cc49c2017-10-03 14:46:45 +02001048 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001049 return;
1050
Emeric Brun52a91d32017-08-31 14:41:55 +02001051 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001052 return;
1053
Emeric Brun52a91d32017-08-31 14:41:55 +02001054 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001055 *s->op_st_chg.reason = 0;
1056 s->op_st_chg.status = -1;
1057 if (reason) {
1058 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1059 }
1060 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001061 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001062 s->op_st_chg.code = check->code;
1063 s->op_st_chg.status = check->status;
1064 s->op_st_chg.duration = check->duration;
1065 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001066
Emeric Brun64cc49c2017-10-03 14:46:45 +02001067 if (s->slowstart <= 0)
1068 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001069
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001070 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001071 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001072
Emeric Brun9f0b4582017-10-23 14:39:51 +02001073 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001074 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001075 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001076 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001077 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001078}
1079
Willy Tarreau8eb77842014-05-21 13:54:57 +02001080/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001081 * isn't in maintenance. The server is registered in a list to postpone the
1082 * counting of the remaining servers on the proxy and tries to grab requests
1083 * from the proxy. Maintenance servers are ignored. It stores the
1084 * <reason> if non-null as the reason for going down or the available data
1085 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001086 * up. Note that it makes use of the trash to build the log strings, so <reason>
1087 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001088 *
1089 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001090 */
Emeric Brun5a133512017-10-19 14:42:30 +02001091void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001092{
1093 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001094
Emeric Brun64cc49c2017-10-03 14:46:45 +02001095 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001096 return;
1097
Emeric Brun52a91d32017-08-31 14:41:55 +02001098 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001099 return;
1100
Emeric Brun52a91d32017-08-31 14:41:55 +02001101 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001102 *s->op_st_chg.reason = 0;
1103 s->op_st_chg.status = -1;
1104 if (reason) {
1105 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1106 }
1107 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001108 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001109 s->op_st_chg.code = check->code;
1110 s->op_st_chg.status = check->status;
1111 s->op_st_chg.duration = check->duration;
1112 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001113
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001114 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001115 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001116
Emeric Brun9f0b4582017-10-23 14:39:51 +02001117 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001118 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001119 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001120 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001121 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001122}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001123
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001124/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1125 * enforce either maint mode or drain mode. It is not allowed to set more than
1126 * one flag at once. The equivalent "inherited" flag is propagated to all
1127 * tracking servers. Maintenance mode disables health checks (but not agent
1128 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001129 * is done. If <cause> is non-null, it will be displayed at the end of the log
1130 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001131 *
1132 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001133 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001134void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001135{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001136 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001137
1138 if (!mode)
1139 return;
1140
1141 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001142 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001143 return;
1144
Emeric Brun52a91d32017-08-31 14:41:55 +02001145 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001146 if (cause)
1147 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1148
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001149 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001150 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001151
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001152 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001153 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1154 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001155 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001156
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001157 /* compute the inherited flag to propagate */
1158 if (mode & SRV_ADMF_MAINT)
1159 mode = SRV_ADMF_IMAINT;
1160 else if (mode & SRV_ADMF_DRAIN)
1161 mode = SRV_ADMF_IDRAIN;
1162
Emeric Brun9f0b4582017-10-23 14:39:51 +02001163 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001164 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001165 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001166 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001167 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001168}
1169
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001170/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1171 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1172 * than one flag at once. The equivalent "inherited" flag is propagated to all
1173 * tracking servers. Leaving maintenance mode re-enables health checks. When
1174 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001175 *
1176 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001177 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001178void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001179{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001180 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001181
1182 if (!mode)
1183 return;
1184
1185 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001186 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001187 return;
1188
Emeric Brun52a91d32017-08-31 14:41:55 +02001189 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001190
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001191 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001192 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001193
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001194 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001195 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1196 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001197 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001198
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001199 if (mode & SRV_ADMF_MAINT)
1200 mode = SRV_ADMF_IMAINT;
1201 else if (mode & SRV_ADMF_DRAIN)
1202 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001203
Emeric Brun9f0b4582017-10-23 14:39:51 +02001204 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001205 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001206 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001207 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001208 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001209}
1210
Willy Tarreau757478e2016-11-03 19:22:19 +01001211/* principle: propagate maint and drain to tracking servers. This is useful
1212 * upon startup so that inherited states are correct.
1213 */
1214static void srv_propagate_admin_state(struct server *srv)
1215{
1216 struct server *srv2;
1217
1218 if (!srv->trackers)
1219 return;
1220
1221 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001222 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001223 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001224 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001225
Emeric Brun52a91d32017-08-31 14:41:55 +02001226 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001227 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001228 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001229 }
1230}
1231
1232/* Compute and propagate the admin states for all servers in proxy <px>.
1233 * Only servers *not* tracking another one are considered, because other
1234 * ones will be handled when the server they track is visited.
1235 */
1236void srv_compute_all_admin_states(struct proxy *px)
1237{
1238 struct server *srv;
1239
1240 for (srv = px->srv; srv; srv = srv->next) {
1241 if (srv->track)
1242 continue;
1243 srv_propagate_admin_state(srv);
1244 }
1245}
1246
Willy Tarreaudff55432012-10-10 17:51:05 +02001247/* Note: must not be declared <const> as its list will be overwritten.
1248 * Please take care of keeping this list alphabetically sorted, doing so helps
1249 * all code contributors.
1250 * Optional keywords are also declared with a NULL ->parse() function so that
1251 * the config parser can report an appropriate error when a known keyword was
1252 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001253 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001254 */
1255static struct srv_kw_list srv_kws = { "ALL", { }, {
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001256 { "backup", srv_parse_backup, 0, 1 }, /* Flag as backup server */
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +01001257 { "cookie", srv_parse_cookie, 1, 1 }, /* Assign a cookie to the server */
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +01001258 { "disabled", srv_parse_disabled, 0, 1 }, /* Start the server in 'disabled' state */
1259 { "enabled", srv_parse_enabled, 0, 1 }, /* Start the server in 'enabled' state */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001260 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
Willy Tarreau9c538e02019-01-23 10:21:49 +01001261 { "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 +01001262 { "namespace", srv_parse_namespace, 1, 1 }, /* Namespace the server socket belongs to (if supported) */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001263 { "no-backup", srv_parse_no_backup, 0, 1 }, /* Flag as non-backup server */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001264 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1 }, /* Disable use of PROXY V1 protocol */
1265 { "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 +02001266 { "no-tfo", srv_parse_no_tfo, 0, 1 }, /* Disable use of TCP Fast Open */
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001267 { "non-stick", srv_parse_non_stick, 0, 1 }, /* Disable stick-table persistence */
Frédéric Lécaille547356e2017-03-15 08:55:39 +01001268 { "observe", srv_parse_observe, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001269 { "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 */
Amaury Denoyelle18c68df2021-01-26 14:35:24 +01001270 { "pool-max-conn", srv_parse_pool_max_conn, 1, 1 }, /* Set the max number of orphan idle connections, -1 means unlimited */
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001271 { "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 +02001272 { "proto", srv_parse_proto, 1, 1 }, /* Set the proto to use for all outgoing connections */
Emmanuel Hocdetf643b802018-02-01 15:20:32 +01001273 { "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 +01001274 { "redir", srv_parse_redir, 1, 1 }, /* Enable redirection mode */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001275 { "send-proxy", srv_parse_send_proxy, 0, 1 }, /* Enforce use of PROXY V1 protocol */
1276 { "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 +02001277 { "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 +01001278 { "stick", srv_parse_stick, 0, 1 }, /* Enable stick-table persistence */
Olivier Houchard8d82db72019-07-04 13:34:10 +02001279 { "tfo", srv_parse_tfo, 0, 1 }, /* enable TCP Fast Open of server */
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001280 { "track", srv_parse_track, 1, 1 }, /* Set the current state of the server, tracking another one */
Alexander Liu2a54bb72019-05-22 19:44:48 +08001281 { "socks4", srv_parse_socks4, 1, 1 }, /* Set the socks4 proxy of the server*/
Willy Tarreaudff55432012-10-10 17:51:05 +02001282 { NULL, NULL, 0 },
1283}};
1284
Willy Tarreau0108d902018-11-25 19:14:37 +01001285INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001286
Willy Tarreau004e0452013-11-21 11:22:01 +01001287/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001288 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001289 * state is automatically disabled if the time is elapsed. If <must_update> is
1290 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001291 *
1292 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001293 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001294void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001295{
1296 struct proxy *px = sv->proxy;
1297 unsigned w;
1298
1299 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1300 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001301 if (sv->next_state == SRV_ST_STARTING)
1302 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001303 }
1304
1305 /* We must take care of not pushing the server to full throttle during slow starts.
1306 * It must also start immediately, at least at the minimal step when leaving maintenance.
1307 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001308 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001309 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1310 else
1311 w = px->lbprm.wdiv;
1312
Emeric Brun52a91d32017-08-31 14:41:55 +02001313 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001314
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001315 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001316 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001317 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001318}
1319
Willy Tarreaubaaee002006-06-26 02:48:02 +02001320/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001321 * Parses weight_str and configures sv accordingly.
1322 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001323 *
1324 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001325 */
1326const char *server_parse_weight_change_request(struct server *sv,
1327 const char *weight_str)
1328{
1329 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001330 long int w;
1331 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001332
1333 px = sv->proxy;
1334
1335 /* if the weight is terminated with '%', it is set relative to
1336 * the initial weight, otherwise it is absolute.
1337 */
1338 if (!*weight_str)
1339 return "Require <weight> or <weight%>.\n";
1340
Simon Hormanb796afa2013-02-12 10:45:53 +09001341 w = strtol(weight_str, &end, 10);
1342 if (end == weight_str)
1343 return "Empty weight string empty or preceded by garbage";
1344 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001345 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001346 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001347 /* Avoid integer overflow */
1348 if (w > 25600)
1349 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001350 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001351 if (w > 256)
1352 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001353 }
1354 else if (w < 0 || w > 256)
1355 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001356 else if (end[0] != '\0')
1357 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001358
1359 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1360 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1361
1362 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001363 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001364
1365 return NULL;
1366}
1367
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001368/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001369 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1370 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001371 * Returns:
1372 * - error string on error
1373 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001374 *
1375 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001376 */
1377const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001378 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001379{
1380 unsigned char ip[INET6_ADDRSTRLEN];
1381
1382 if (inet_pton(AF_INET6, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001383 update_server_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001384 return NULL;
1385 }
1386 if (inet_pton(AF_INET, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001387 update_server_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001388 return NULL;
1389 }
1390
1391 return "Could not understand IP address format.\n";
1392}
1393
Willy Tarreau46b7f532018-08-21 11:54:26 +02001394/*
1395 * Must be called with the server lock held.
1396 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001397const char *server_parse_maxconn_change_request(struct server *sv,
1398 const char *maxconn_str)
1399{
1400 long int v;
1401 char *end;
1402
1403 if (!*maxconn_str)
1404 return "Require <maxconn>.\n";
1405
1406 v = strtol(maxconn_str, &end, 10);
1407 if (end == maxconn_str)
1408 return "maxconn string empty or preceded by garbage";
1409 else if (end[0] != '\0')
1410 return "Trailing garbage in maxconn string";
1411
1412 if (sv->maxconn == sv->minconn) { // static maxconn
1413 sv->maxconn = sv->minconn = v;
1414 } else { // dynamic maxconn
1415 sv->maxconn = v;
1416 }
1417
1418 if (may_dequeue_tasks(sv, sv->proxy))
1419 process_srv_queue(sv);
1420
1421 return NULL;
1422}
1423
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001424#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001425static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1426 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001427{
1428 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001429 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001430 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001431 NULL,
1432 };
1433
1434 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001435 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001436
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001437 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001438}
1439
1440static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1441{
1442 struct sample_expr *expr;
1443
1444 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 +01001445 if (!expr) {
1446 memprintf(err, "error detected while parsing sni expression : %s", *err);
1447 return ERR_ALERT | ERR_FATAL;
1448 }
1449
1450 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1451 memprintf(err, "error detected while parsing sni expression : "
1452 " fetch method '%s' extracts information from '%s', "
1453 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001454 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001455 return ERR_ALERT | ERR_FATAL;
1456 }
1457
1458 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1459 release_sample_expr(newsrv->ssl_ctx.sni);
1460 newsrv->ssl_ctx.sni = expr;
1461
1462 return 0;
1463}
1464#endif
1465
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001466static 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 +01001467{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001468 char *msg = "error encountered while processing ";
1469 char *quote = "'";
1470 char *token = args[cur_arg];
1471
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001472 if (err && *err) {
1473 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001474 msg = *err;
1475 quote = "";
1476 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001477 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001478
1479 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
1480 ha_warning("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1481 file, linenum, args[0], args[1],
1482 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001483 else
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001484 ha_alert("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1485 file, linenum, args[0], args[1],
1486 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001487}
1488
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001489static void srv_conn_src_sport_range_cpy(struct server *srv,
1490 struct server *src)
1491{
1492 int range_sz;
1493
1494 range_sz = src->conn_src.sport_range->size;
1495 if (range_sz > 0) {
1496 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1497 if (srv->conn_src.sport_range != NULL) {
1498 int i;
1499
1500 for (i = 0; i < range_sz; i++) {
1501 srv->conn_src.sport_range->ports[i] =
1502 src->conn_src.sport_range->ports[i];
1503 }
1504 }
1505 }
1506}
1507
1508/*
1509 * Copy <src> server connection source settings to <srv> server everything needed.
1510 */
1511static void srv_conn_src_cpy(struct server *srv, struct server *src)
1512{
1513 srv->conn_src.opts = src->conn_src.opts;
1514 srv->conn_src.source_addr = src->conn_src.source_addr;
1515
1516 /* Source port range copy. */
1517 if (src->conn_src.sport_range != NULL)
1518 srv_conn_src_sport_range_cpy(srv, src);
1519
1520#ifdef CONFIG_HAP_TRANSPARENT
1521 if (src->conn_src.bind_hdr_name != NULL) {
1522 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1523 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1524 }
1525 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1526 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1527#endif
1528 if (src->conn_src.iface_name != NULL)
1529 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1530}
1531
1532/*
1533 * Copy <src> server SSL settings to <srv> server allocating
1534 * everything needed.
1535 */
1536#if defined(USE_OPENSSL)
1537static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1538{
1539 if (src->ssl_ctx.ca_file != NULL)
1540 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1541 if (src->ssl_ctx.crl_file != NULL)
1542 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001543
1544 srv->ssl_ctx.verify = src->ssl_ctx.verify;
1545
1546 if (src->ssl_ctx.verify_host != NULL)
1547 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
1548 if (src->ssl_ctx.ciphers != NULL)
1549 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02001550 if (src->ssl_ctx.options)
1551 srv->ssl_ctx.options = src->ssl_ctx.options;
1552 if (src->ssl_ctx.methods.flags)
1553 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
1554 if (src->ssl_ctx.methods.min)
1555 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
1556 if (src->ssl_ctx.methods.max)
1557 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
1558
Ilya Shipitsin2aa4b3a2021-01-07 11:55:45 +05001559#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02001560 if (src->ssl_ctx.ciphersuites != NULL)
1561 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
1562#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001563 if (src->sni_expr != NULL)
1564 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01001565
1566#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
1567 if (src->ssl_ctx.alpn_str) {
1568 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
1569 if (srv->ssl_ctx.alpn_str) {
1570 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
1571 src->ssl_ctx.alpn_len);
1572 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
1573 }
1574 }
1575#endif
1576#ifdef OPENSSL_NPN_NEGOTIATED
1577 if (src->ssl_ctx.npn_str) {
1578 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
1579 if (srv->ssl_ctx.npn_str) {
1580 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
1581 src->ssl_ctx.npn_len);
1582 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
1583 }
1584 }
1585#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001586}
1587#endif
1588
1589/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001590 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001591 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001592 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001593 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001594static int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001595{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001596 char *hostname_dn;
1597 int hostname_len, hostname_dn_len;
1598
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001599 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001600 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001601
Christopher Faulet67957bd2017-09-27 11:00:59 +02001602 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001603 hostname_dn = trash.area;
Emeric Brund30e9a12020-12-23 18:49:16 +01001604 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len + 1,
1605 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001606 if (hostname_dn_len == -1)
1607 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001608
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001609
Christopher Faulet67957bd2017-09-27 11:00:59 +02001610 free(srv->hostname);
1611 free(srv->hostname_dn);
1612 srv->hostname = strdup(hostname);
1613 srv->hostname_dn = strdup(hostname_dn);
1614 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001615 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001616 goto err;
1617
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001618 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001619
1620 err:
Christopher Faulet67957bd2017-09-27 11:00:59 +02001621 free(srv->hostname); srv->hostname = NULL;
1622 free(srv->hostname_dn); srv->hostname_dn = NULL;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001623 return -1;
1624}
1625
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001626/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001627 * Copy <src> server settings to <srv> server allocating
1628 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001629 * This function is not supposed to be called at any time, but only
1630 * during server settings parsing or during server allocations from
1631 * a server template, and just after having calloc()'ed a new server.
1632 * So, <src> may only be a default server (when parsing server settings)
1633 * or a server template (during server allocations from a server template).
1634 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
1635 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001636 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001637static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001638{
1639 /* Connection source settings copy */
1640 srv_conn_src_cpy(srv, src);
1641
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001642 if (srv_tmpl) {
1643 srv->addr = src->addr;
1644 srv->svc_port = src->svc_port;
1645 }
1646
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001647 srv->pp_opts = src->pp_opts;
1648 if (src->rdr_pfx != NULL) {
1649 srv->rdr_pfx = strdup(src->rdr_pfx);
1650 srv->rdr_len = src->rdr_len;
1651 }
1652 if (src->cookie != NULL) {
1653 srv->cookie = strdup(src->cookie);
1654 srv->cklen = src->cklen;
1655 }
1656 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01001657 srv->check.addr = src->check.addr;
1658 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001659 srv->check.use_ssl = src->check.use_ssl;
1660 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01001661 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01001662 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05001663 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001664 /* Note: 'flags' field has potentially been already initialized. */
1665 srv->flags |= src->flags;
1666 srv->do_check = src->do_check;
1667 srv->do_agent = src->do_agent;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001668 srv->check.inter = src->check.inter;
1669 srv->check.fastinter = src->check.fastinter;
1670 srv->check.downinter = src->check.downinter;
1671 srv->agent.use_ssl = src->agent.use_ssl;
1672 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001673
1674 if (src->agent.tcpcheck_rules) {
1675 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
1676 if (srv->agent.tcpcheck_rules) {
1677 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
1678 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
1679 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
1680 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
1681 &src->agent.tcpcheck_rules->preset_vars);
1682 }
1683 }
1684
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001685 srv->agent.inter = src->agent.inter;
1686 srv->agent.fastinter = src->agent.fastinter;
1687 srv->agent.downinter = src->agent.downinter;
1688 srv->maxqueue = src->maxqueue;
1689 srv->minconn = src->minconn;
1690 srv->maxconn = src->maxconn;
1691 srv->slowstart = src->slowstart;
1692 srv->observe = src->observe;
1693 srv->onerror = src->onerror;
1694 srv->onmarkeddown = src->onmarkeddown;
1695 srv->onmarkedup = src->onmarkedup;
1696 if (src->trackit != NULL)
1697 srv->trackit = strdup(src->trackit);
1698 srv->consecutive_errors_limit = src->consecutive_errors_limit;
1699 srv->uweight = srv->iweight = src->iweight;
1700
1701 srv->check.send_proxy = src->check.send_proxy;
1702 /* health: up, but will fall down at first failure */
1703 srv->check.rise = srv->check.health = src->check.rise;
1704 srv->check.fall = src->check.fall;
1705
1706 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001707 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
1708 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
1709 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001710 srv->check.state |= CHK_ST_PAUSED;
1711 srv->check.health = 0;
1712 }
1713
1714 /* health: up but will fall down at first failure */
1715 srv->agent.rise = srv->agent.health = src->agent.rise;
1716 srv->agent.fall = src->agent.fall;
1717
1718 if (src->resolvers_id != NULL)
1719 srv->resolvers_id = strdup(src->resolvers_id);
Emeric Brun21fbeed2020-12-23 18:01:04 +01001720 srv->resolv_opts.family_prio = src->resolv_opts.family_prio;
1721 srv->resolv_opts.accept_duplicate_ip = src->resolv_opts.accept_duplicate_ip;
1722 srv->resolv_opts.ignore_weight = src->resolv_opts.ignore_weight;
1723 if (srv->resolv_opts.family_prio == AF_UNSPEC)
1724 srv->resolv_opts.family_prio = AF_INET6;
1725 memcpy(srv->resolv_opts.pref_net,
1726 src->resolv_opts.pref_net,
1727 sizeof srv->resolv_opts.pref_net);
1728 srv->resolv_opts.pref_net_nb = src->resolv_opts.pref_net_nb;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001729
1730 srv->init_addr_methods = src->init_addr_methods;
1731 srv->init_addr = src->init_addr;
1732#if defined(USE_OPENSSL)
1733 srv_ssl_settings_cpy(srv, src);
1734#endif
1735#ifdef TCP_USER_TIMEOUT
1736 srv->tcp_ut = src->tcp_ut;
1737#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001738 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001739 srv->pool_purge_delay = src->pool_purge_delay;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001740 srv->low_idle_conns = src->low_idle_conns;
Olivier Houchard006e3102018-12-10 18:30:32 +01001741 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01001742 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001743
Olivier Houchard8da5f982017-08-04 18:35:36 +02001744 if (srv_tmpl)
1745 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001746
1747 srv->check.via_socks4 = src->check.via_socks4;
1748 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001749}
1750
William Lallemand313bfd12018-10-26 14:47:32 +02001751struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001752{
1753 struct server *srv;
1754
1755 srv = calloc(1, sizeof *srv);
1756 if (!srv)
1757 return NULL;
1758
1759 srv->obj_type = OBJ_TYPE_SERVER;
1760 srv->proxy = proxy;
Willy Tarreau751153e2021-02-17 13:33:24 +01001761 MT_LIST_INIT(&srv->actconns);
Patrick Hemmer0355dab2018-05-11 12:52:31 -04001762 srv->pendconns = EB_ROOT;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001763
Emeric Brun52a91d32017-08-31 14:41:55 +02001764 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001765 srv->last_change = now.tv_sec;
1766
Christopher Faulet38290462020-04-21 11:46:40 +02001767 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001768 srv->check.status = HCHK_STATUS_INI;
1769 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01001770 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02001771 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001772
Christopher Faulet38290462020-04-21 11:46:40 +02001773 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001774 srv->agent.status = HCHK_STATUS_INI;
1775 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01001776 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001777 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
Frédéric Lécaillef46c10c2020-11-23 14:29:28 +01001778#if defined(USE_QUIC)
1779 srv->cids = EB_ROOT_UNIQUE;
1780#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001781
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01001782 srv->extra_counters = NULL;
William Lallemand3ce6eed2021-02-08 10:43:44 +01001783#ifdef USE_OPENSSL
1784 HA_RWLOCK_INIT(&srv->ssl_ctx.lock);
1785#endif
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01001786
Willy Tarreau975b1552019-06-06 16:25:55 +02001787 /* please don't put default server settings here, they are set in
Willy Tarreau144289b2021-02-12 08:19:01 +01001788 * proxy_preset_defaults().
Willy Tarreau975b1552019-06-06 16:25:55 +02001789 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001790 return srv;
1791}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001792
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001793#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1794static int server_sni_expr_init(const char *file, int linenum, char **args, int cur_arg,
1795 struct server *srv, struct proxy *proxy)
1796{
1797 int ret;
1798 char *err = NULL;
1799
1800 if (!srv->sni_expr)
1801 return 0;
1802
1803 ret = server_parse_sni_expr(srv, proxy, &err);
1804 if (!ret)
1805 return 0;
1806
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001807 display_parser_err(file, linenum, args, cur_arg, ret, &err);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001808 free(err);
1809
1810 return ret;
1811}
1812#endif
1813
1814/*
1815 * Server initializations finalization.
1816 * Initialize health check, agent check and SNI expression if enabled.
1817 * Must not be called for a default server instance.
1818 */
1819static int server_finalize_init(const char *file, int linenum, char **args, int cur_arg,
1820 struct server *srv, struct proxy *px)
1821{
Christopher Fauletb3b53522020-04-27 11:17:10 +02001822#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001823 int ret;
Christopher Fauletb3b53522020-04-27 11:17:10 +02001824#endif
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001825
Christopher Faulet8892e5d2020-03-26 19:48:20 +01001826 if (srv->do_check && srv->trackit) {
1827 ha_alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1828 file, linenum);
1829 return ERR_ALERT | ERR_FATAL;
1830 }
1831
1832 if (srv->do_agent && !srv->agent.port) {
1833 ha_alert("parsing [%s:%d] : server %s does not have agent port. Agent check has been disabled.\n",
1834 file, linenum, srv->id);
1835 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001836 }
1837
1838#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1839 if ((ret = server_sni_expr_init(file, linenum, args, cur_arg, srv, px)) != 0)
1840 return ret;
1841#endif
1842
1843 if (srv->flags & SRV_F_BACKUP)
1844 px->srv_bck++;
1845 else
1846 px->srv_act++;
1847 srv_lb_commit_status(srv);
1848
1849 return 0;
1850}
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001851
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001852/*
1853 * Parse as much as possible such a range string argument: low[-high]
1854 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
1855 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
1856 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
1857 * Returns 0 if succeeded, -1 if not.
1858 */
1859static int srv_tmpl_parse_range(struct server *srv, const char *arg, int *nb_low, int *nb_high)
1860{
1861 char *nb_high_arg;
1862
1863 *nb_high = 0;
1864 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001865 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001866
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001867 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001868 *nb_high_arg++ = '\0';
1869 *nb_high = atoi(nb_high_arg);
1870 }
1871 else {
1872 *nb_high += *nb_low;
1873 *nb_low = 1;
1874 }
1875
1876 if (*nb_low < 0 || *nb_high < *nb_low)
1877 return -1;
1878
1879 return 0;
1880}
1881
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001882static inline void srv_set_id_from_prefix(struct server *srv, const char *prefix, int nb)
1883{
1884 chunk_printf(&trash, "%s%d", prefix, nb);
1885 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001886 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001887}
1888
1889/*
1890 * Initialize as much as possible servers from <srv> server template.
1891 * Note that a server template is a special server with
1892 * a few different parameters than a server which has
1893 * been parsed mostly the same way as a server.
Joseph Herlant44466822018-11-15 08:57:51 -08001894 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001895 * 'srv' template included.
1896 */
1897static int server_template_init(struct server *srv, struct proxy *px)
1898{
1899 int i;
1900 struct server *newsrv;
1901
1902 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 +02001903 newsrv = new_server(px);
1904 if (!newsrv)
1905 goto err;
1906
Christopher Faulet75bef002020-11-02 22:04:55 +01001907 newsrv->conf.file = strdup(srv->conf.file);
1908 newsrv->conf.line = srv->conf.line;
1909
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001910 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001911 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001912#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1913 if (newsrv->sni_expr) {
1914 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
1915 if (!newsrv->ssl_ctx.sni)
1916 goto err;
1917 }
1918#endif
1919 /* Set this new server ID. */
1920 srv_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
1921
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001922 /* Linked backwards first. This will be restablished after parsing. */
1923 newsrv->next = px->srv;
1924 px->srv = newsrv;
1925 }
1926 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1927
1928 return i - srv->tmpl_info.nb_low;
1929
1930 err:
1931 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1932 if (newsrv) {
1933#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1934 release_sample_expr(newsrv->ssl_ctx.sni);
1935#endif
1936 free_check(&newsrv->agent);
1937 free_check(&newsrv->check);
1938 }
1939 free(newsrv);
1940 return i - srv->tmpl_info.nb_low;
1941}
1942
Emeric Brund3db3842020-07-21 16:54:36 +02001943int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy,
Willy Tarreaubb8669a2021-02-12 12:15:05 +01001944 const struct proxy *defproxy, int parse_addr, int in_peers_section, int initial_resolve)
Willy Tarreau272adea2014-03-31 10:39:59 +02001945{
1946 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001947 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001948 char *errmsg = NULL;
1949 int err_code = 0;
1950 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +02001951 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001952
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001953 if (strcmp(args[0], "server") == 0 ||
1954 strcmp(args[0], "peer") == 0 ||
1955 strcmp(args[0], "default-server") == 0 ||
1956 strcmp(args[0], "server-template") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001957 int cur_arg;
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001958 int defsrv = (*args[0] == 'd');
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001959 int srv = !defsrv && (*args[0] == 'p' || strcmp(args[0], "server") == 0);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001960 int srv_tmpl = !defsrv && !srv;
1961 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02001962
1963 if (!defsrv && curproxy == defproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001964 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001965 err_code |= ERR_ALERT | ERR_FATAL;
1966 goto out;
1967 }
Christopher Faulete3bdc812021-01-13 13:14:13 +01001968 else if (failifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) {
1969 err_code |= ERR_ALERT | ERR_FATAL;
1970 goto out;
1971 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001972
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001973 /* There is no mandatory first arguments for default server. */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01001974 if (srv && parse_addr) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001975 if (!*args[2]) {
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +02001976 if (in_peers_section) {
1977 return 0;
1978 }
1979 else {
1980 /* 'server' line number of argument check. */
1981 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1982 file, linenum, args[0]);
1983 err_code |= ERR_ALERT | ERR_FATAL;
1984 goto out;
1985 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001986 }
1987
1988 err = invalid_char(args[1]);
1989 }
1990 else if (srv_tmpl) {
1991 if (!*args[3]) {
1992 /* 'server-template' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001993 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 +02001994 file, linenum, args[0]);
1995 err_code |= ERR_ALERT | ERR_FATAL;
1996 goto out;
1997 }
1998
1999 err = invalid_prefix_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002000 }
2001
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002002 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002003 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 +02002004 file, linenum, *err, args[0], srv ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002005 err_code |= ERR_ALERT | ERR_FATAL;
2006 goto out;
2007 }
2008
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002009 cur_arg = 2;
2010 if (srv_tmpl) {
2011 /* Parse server-template <nb | range> arg. */
2012 if (srv_tmpl_parse_range(newsrv, args[cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002013 ha_alert("parsing [%s:%d] : Wrong %s number or range arg '%s'.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002014 file, linenum, args[0], args[cur_arg]);
2015 err_code |= ERR_ALERT | ERR_FATAL;
2016 goto out;
2017 }
2018 cur_arg++;
2019 }
2020
Willy Tarreau272adea2014-03-31 10:39:59 +02002021 if (!defsrv) {
2022 struct sockaddr_storage *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002023 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002024
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002025 newsrv = new_server(curproxy);
2026 if (!newsrv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002027 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Willy Tarreau272adea2014-03-31 10:39:59 +02002028 err_code |= ERR_ALERT | ERR_ABORT;
2029 goto out;
2030 }
2031
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002032 if (srv_tmpl) {
2033 newsrv->tmpl_info.nb_low = tmpl_range_low;
2034 newsrv->tmpl_info.nb_high = tmpl_range_high;
2035 }
2036
Willy Tarreau272adea2014-03-31 10:39:59 +02002037 /* the servers are linked backwards first */
2038 newsrv->next = curproxy->srv;
2039 curproxy->srv = newsrv;
Willy Tarreau272adea2014-03-31 10:39:59 +02002040 newsrv->conf.file = strdup(file);
2041 newsrv->conf.line = linenum;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002042 /* Note: for a server template, its id is its prefix.
2043 * This is a temporary id which will be used for server allocations to come
2044 * after parsing.
2045 */
2046 if (srv)
2047 newsrv->id = strdup(args[1]);
2048 else
2049 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002050
2051 /* several ways to check the port component :
2052 * - IP => port=+0, relative (IPv4 only)
2053 * - IP: => port=+0, relative
2054 * - IP:N => port=N, absolute
2055 * - IP:+N => port=+N, relative
2056 * - IP:-N => port=-N, relative
2057 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002058 if (!parse_addr)
2059 goto skip_addr;
2060
Willy Tarreau65ec4e32020-09-16 19:17:08 +02002061 sk = str2sa_range(args[cur_arg], &port, &port1, &port2, NULL, NULL,
2062 &errmsg, NULL, &fqdn,
2063 (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 +02002064 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002065 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau272adea2014-03-31 10:39:59 +02002066 err_code |= ERR_ALERT | ERR_FATAL;
2067 goto out;
2068 }
2069
Willy Tarreau272adea2014-03-31 10:39:59 +02002070 if (!port1 || !port2) {
2071 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +02002072 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +02002073 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002074
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002075 /* save hostname and create associated name resolution */
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002076 if (fqdn) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002077 if (fqdn[0] == '_') { /* SRV record */
Olivier Houchard8da5f982017-08-04 18:35:36 +02002078 /* Check if a SRV request already exists, and if not, create it */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002079 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
Emeric Brun08622d32020-12-23 17:41:43 +01002080 newsrv->srvrq = new_resolv_srvrq(newsrv, fqdn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002081 if (newsrv->srvrq == NULL) {
Olivier Houchard8da5f982017-08-04 18:35:36 +02002082 err_code |= ERR_ALERT | ERR_FATAL;
2083 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002084 }
2085 }
2086 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002087 ha_alert("parsing [%s:%d] : Can't create DNS resolution for server '%s'\n",
Christopher Faulet67957bd2017-09-27 11:00:59 +02002088 file, linenum, newsrv->id);
2089 err_code |= ERR_ALERT | ERR_FATAL;
2090 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002091 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002092 }
2093
Willy Tarreau272adea2014-03-31 10:39:59 +02002094 newsrv->addr = *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002095 newsrv->svc_port = port;
Thayne McCombs92149f92020-11-20 01:28:26 -07002096 // we don't need to lock the server here, because
2097 // we are in the process of initializing
2098 srv_set_addr_desc(newsrv);
Willy Tarreau272adea2014-03-31 10:39:59 +02002099
Olivier Houchard8da5f982017-08-04 18:35:36 +02002100 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002101 ha_alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002102 file, linenum, newsrv->addr.ss_family, args[cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002103 err_code |= ERR_ALERT | ERR_FATAL;
2104 goto out;
2105 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002106
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002107 cur_arg++;
2108 skip_addr:
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002109 /* Copy default server settings to new server settings. */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002110 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002111 HA_SPIN_INIT(&newsrv->lock);
Willy Tarreau272adea2014-03-31 10:39:59 +02002112 } else {
2113 newsrv = &curproxy->defsrv;
2114 cur_arg = 1;
Emeric Brun21fbeed2020-12-23 18:01:04 +01002115 newsrv->resolv_opts.family_prio = AF_INET6;
2116 newsrv->resolv_opts.accept_duplicate_ip = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002117 }
2118
2119 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002120 if (strcmp(args[cur_arg], "init-addr") == 0) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002121 char *p, *end;
2122 int done;
Willy Tarreau4310d362016-11-02 15:05:56 +01002123 struct sockaddr_storage sa;
Baptiste Assmann25938272016-09-21 20:26:16 +02002124
2125 newsrv->init_addr_methods = 0;
2126 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
2127
2128 for (p = args[cur_arg + 1]; *p; p = end) {
2129 /* cut on next comma */
2130 for (end = p; *end && *end != ','; end++);
2131 if (*end)
2132 *(end++) = 0;
2133
Willy Tarreau4310d362016-11-02 15:05:56 +01002134 memset(&sa, 0, sizeof(sa));
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002135 if (strcmp(p, "libc") == 0) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002136 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
2137 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002138 else if (strcmp(p, "last") == 0) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002139 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
2140 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002141 else if (strcmp(p, "none") == 0) {
Willy Tarreau37ebe122016-11-04 15:17:58 +01002142 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
2143 }
Willy Tarreau4310d362016-11-02 15:05:56 +01002144 else if (str2ip2(p, &sa, 0)) {
2145 if (is_addr(&newsrv->init_addr)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002146 ha_alert("parsing [%s:%d]: '%s' : initial address already specified, cannot add '%s'.\n",
Willy Tarreau4310d362016-11-02 15:05:56 +01002147 file, linenum, args[cur_arg], p);
2148 err_code |= ERR_ALERT | ERR_FATAL;
2149 goto out;
2150 }
2151 newsrv->init_addr = sa;
2152 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
2153 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002154 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002155 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 +02002156 file, linenum, args[cur_arg], p);
2157 err_code |= ERR_ALERT | ERR_FATAL;
2158 goto out;
2159 }
2160 if (!done) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002161 ha_alert("parsing [%s:%d]: '%s' : too many init-addr methods when trying to add '%s'\n",
Baptiste Assmann25938272016-09-21 20:26:16 +02002162 file, linenum, args[cur_arg], p);
2163 err_code |= ERR_ALERT | ERR_FATAL;
2164 goto out;
2165 }
2166 }
2167 cur_arg += 2;
2168 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002169 else if (strcmp(args[cur_arg], "resolvers") == 0) {
Frédéric Lécailledaa2fe62017-04-20 12:17:50 +02002170 free(newsrv->resolvers_id);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002171 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
2172 cur_arg += 2;
2173 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002174 else if (strcmp(args[cur_arg], "resolve-opts") == 0) {
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002175 char *p, *end;
2176
2177 for (p = args[cur_arg + 1]; *p; p = end) {
2178 /* cut on next comma */
2179 for (end = p; *end && *end != ','; end++);
2180 if (*end)
2181 *(end++) = 0;
2182
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002183 if (strcmp(p, "allow-dup-ip") == 0) {
Emeric Brun21fbeed2020-12-23 18:01:04 +01002184 newsrv->resolv_opts.accept_duplicate_ip = 1;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002185 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002186 else if (strcmp(p, "ignore-weight") == 0) {
Emeric Brun21fbeed2020-12-23 18:01:04 +01002187 newsrv->resolv_opts.ignore_weight = 1;
Daniel Corbettf8716912019-11-17 09:48:56 -05002188 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002189 else if (strcmp(p, "prevent-dup-ip") == 0) {
Emeric Brun21fbeed2020-12-23 18:01:04 +01002190 newsrv->resolv_opts.accept_duplicate_ip = 0;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002191 }
2192 else {
Daniel Corbettf8716912019-11-17 09:48:56 -05002193 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 +02002194 file, linenum, args[cur_arg], p);
2195 err_code |= ERR_ALERT | ERR_FATAL;
2196 goto out;
2197 }
2198 }
2199
2200 cur_arg += 2;
2201 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002202 else if (strcmp(args[cur_arg], "resolve-prefer") == 0) {
2203 if (strcmp(args[cur_arg + 1], "ipv4") == 0)
Emeric Brun21fbeed2020-12-23 18:01:04 +01002204 newsrv->resolv_opts.family_prio = AF_INET;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002205 else if (strcmp(args[cur_arg + 1], "ipv6") == 0)
Emeric Brun21fbeed2020-12-23 18:01:04 +01002206 newsrv->resolv_opts.family_prio = AF_INET6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002207 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002208 ha_alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002209 file, linenum, args[cur_arg]);
2210 err_code |= ERR_ALERT | ERR_FATAL;
2211 goto out;
2212 }
2213 cur_arg += 2;
2214 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002215 else if (strcmp(args[cur_arg], "resolve-net") == 0) {
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002216 char *p, *e;
2217 unsigned char mask;
Emeric Brun21fbeed2020-12-23 18:01:04 +01002218 struct resolv_options *opt;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002219
2220 if (!args[cur_arg + 1] || args[cur_arg + 1][0] == '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002221 ha_alert("parsing [%s:%d]: '%s' expects a list of networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002222 file, linenum, args[cur_arg]);
2223 err_code |= ERR_ALERT | ERR_FATAL;
2224 goto out;
2225 }
2226
Emeric Brun21fbeed2020-12-23 18:01:04 +01002227 opt = &newsrv->resolv_opts;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002228
2229 /* Split arguments by comma, and convert it from ipv4 or ipv6
2230 * string network in in_addr or in6_addr.
2231 */
2232 p = args[cur_arg + 1];
2233 e = p;
2234 while (*p != '\0') {
Joseph Herlant44466822018-11-15 08:57:51 -08002235 /* If no room available, return error. */
David Carlierd10025c2016-04-08 10:26:44 +01002236 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002237 ha_alert("parsing [%s:%d]: '%s' exceed %d networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002238 file, linenum, args[cur_arg], SRV_MAX_PREF_NET);
2239 err_code |= ERR_ALERT | ERR_FATAL;
2240 goto out;
2241 }
2242 /* look for end or comma. */
2243 while (*e != ',' && *e != '\0')
2244 e++;
2245 if (*e == ',') {
2246 *e = '\0';
2247 e++;
2248 }
2249 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
2250 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
2251 /* Try to convert input string from ipv4 or ipv6 network. */
2252 opt->pref_net[opt->pref_net_nb].family = AF_INET;
2253 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
2254 &mask)) {
2255 /* Try to convert input string from ipv6 network. */
2256 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
2257 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
2258 } else {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05002259 /* All network conversions fail, return error. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002260 ha_alert("parsing [%s:%d]: '%s': invalid network '%s'.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002261 file, linenum, args[cur_arg], p);
2262 err_code |= ERR_ALERT | ERR_FATAL;
2263 goto out;
2264 }
2265 opt->pref_net_nb++;
2266 p = e;
2267 }
2268
2269 cur_arg += 2;
2270 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002271 else if (strcmp(args[cur_arg], "weight") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002272 int w;
2273 w = atol(args[cur_arg + 1]);
2274 if (w < 0 || w > SRV_UWGHT_MAX) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002275 ha_alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002276 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
2277 err_code |= ERR_ALERT | ERR_FATAL;
2278 goto out;
2279 }
2280 newsrv->uweight = newsrv->iweight = w;
2281 cur_arg += 2;
2282 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002283 else if (strcmp(args[cur_arg], "log-proto") == 0) {
2284 if (strcmp(args[cur_arg + 1], "legacy") == 0)
Emeric Brun97556472020-05-30 01:42:45 +02002285 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002286 else if (strcmp(args[cur_arg + 1], "octet-count") == 0)
Emeric Brun97556472020-05-30 01:42:45 +02002287 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
2288 else {
2289 ha_alert("parsing [%s:%d]: '%s' expects one of 'legacy' or "
2290 "'octet-count' but got '%s'\n",
2291 file, linenum, args[cur_arg], args[cur_arg + 1]);
2292 err_code |= ERR_ALERT | ERR_FATAL;
2293 goto out;
2294 }
2295 cur_arg += 2;
2296 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002297 else if (strcmp(args[cur_arg], "minconn") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002298 newsrv->minconn = atol(args[cur_arg + 1]);
2299 cur_arg += 2;
2300 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002301 else if (strcmp(args[cur_arg], "maxconn") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002302 newsrv->maxconn = atol(args[cur_arg + 1]);
2303 cur_arg += 2;
2304 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002305 else if (strcmp(args[cur_arg], "maxqueue") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002306 newsrv->maxqueue = atol(args[cur_arg + 1]);
2307 cur_arg += 2;
2308 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002309 else if (strcmp(args[cur_arg], "slowstart") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002310 /* slowstart is stored in seconds */
2311 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02002312
2313 if (err == PARSE_TIME_OVER) {
2314 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).\n",
2315 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2316 err_code |= ERR_ALERT | ERR_FATAL;
2317 goto out;
2318 }
2319 else if (err == PARSE_TIME_UNDER) {
2320 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.\n",
2321 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2322 err_code |= ERR_ALERT | ERR_FATAL;
2323 goto out;
2324 }
2325 else if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002326 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002327 file, linenum, *err, newsrv->id);
2328 err_code |= ERR_ALERT | ERR_FATAL;
2329 goto out;
2330 }
2331 newsrv->slowstart = (val + 999) / 1000;
2332 cur_arg += 2;
2333 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002334 else if (strcmp(args[cur_arg], "on-error") == 0) {
2335 if (strcmp(args[cur_arg + 1], "fastinter") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002336 newsrv->onerror = HANA_ONERR_FASTINTER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002337 else if (strcmp(args[cur_arg + 1], "fail-check") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002338 newsrv->onerror = HANA_ONERR_FAILCHK;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002339 else if (strcmp(args[cur_arg + 1], "sudden-death") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002340 newsrv->onerror = HANA_ONERR_SUDDTH;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002341 else if (strcmp(args[cur_arg + 1], "mark-down") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002342 newsrv->onerror = HANA_ONERR_MARKDWN;
2343 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002344 ha_alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
Willy Tarreau272adea2014-03-31 10:39:59 +02002345 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
2346 file, linenum, args[cur_arg], args[cur_arg + 1]);
2347 err_code |= ERR_ALERT | ERR_FATAL;
2348 goto out;
2349 }
2350
2351 cur_arg += 2;
2352 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002353 else if (strcmp(args[cur_arg], "on-marked-down") == 0) {
2354 if (strcmp(args[cur_arg + 1], "shutdown-sessions") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002355 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
2356 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002357 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002358 file, linenum, args[cur_arg], args[cur_arg + 1]);
2359 err_code |= ERR_ALERT | ERR_FATAL;
2360 goto out;
2361 }
2362
2363 cur_arg += 2;
2364 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002365 else if (strcmp(args[cur_arg], "on-marked-up") == 0) {
2366 if (strcmp(args[cur_arg + 1], "shutdown-backup-sessions") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002367 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
2368 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002369 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002370 file, linenum, args[cur_arg], args[cur_arg + 1]);
2371 err_code |= ERR_ALERT | ERR_FATAL;
2372 goto out;
2373 }
2374
2375 cur_arg += 2;
2376 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002377 else if (strcmp(args[cur_arg], "error-limit") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002378 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002379 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002380 file, linenum, args[cur_arg]);
2381 err_code |= ERR_ALERT | ERR_FATAL;
2382 goto out;
2383 }
2384
2385 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
2386
2387 if (newsrv->consecutive_errors_limit <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002388 ha_alert("parsing [%s:%d]: %s has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002389 file, linenum, args[cur_arg]);
2390 err_code |= ERR_ALERT | ERR_FATAL;
2391 goto out;
2392 }
2393 cur_arg += 2;
2394 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002395 else if (strcmp(args[cur_arg], "usesrc") == 0) { /* address to use outside: needs "source" first */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002396 ha_alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002397 file, linenum, "usesrc", "source");
2398 err_code |= ERR_ALERT | ERR_FATAL;
2399 goto out;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002400 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002401 else {
2402 static int srv_dumped;
2403 struct srv_kw *kw;
2404 char *err;
2405
2406 kw = srv_find_kw(args[cur_arg]);
2407 if (kw) {
2408 char *err = NULL;
2409 int code;
2410
2411 if (!kw->parse) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002412 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 +02002413 file, linenum, args[0], args[1], args[cur_arg]);
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 err_code |= ERR_ALERT | ERR_FATAL;
2417 goto out;
2418 }
2419
2420 if (defsrv && !kw->default_ok) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002421 ha_alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002422 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002423 if (kw->skip != -1)
2424 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002425 err_code |= ERR_ALERT;
2426 continue;
2427 }
2428
2429 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
2430 err_code |= code;
2431
2432 if (code) {
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002433 display_parser_err(file, linenum, args, cur_arg, code, &err);
Willy Tarreau272adea2014-03-31 10:39:59 +02002434 if (code & ERR_FATAL) {
2435 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002436 if (kw->skip != -1)
2437 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002438 goto out;
2439 }
2440 }
2441 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002442 if (kw->skip != -1)
2443 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002444 continue;
2445 }
2446
2447 err = NULL;
2448 if (!srv_dumped) {
2449 srv_dump_kws(&err);
2450 indent_msg(&err, 4);
2451 srv_dumped = 1;
2452 }
2453
Christopher Faulet767a84b2017-11-24 16:50:31 +01002454 ha_alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002455 file, linenum, args[0], args[1], args[cur_arg],
2456 err ? " Registered keywords :" : "", err ? err : "");
2457 free(err);
2458
2459 err_code |= ERR_ALERT | ERR_FATAL;
2460 goto out;
2461 }
2462 }
2463
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002464 if (!defsrv)
2465 err_code |= server_finalize_init(file, linenum, args, cur_arg, newsrv, curproxy);
2466 if (err_code & ERR_FATAL)
2467 goto out;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002468 if (srv_tmpl)
2469 server_template_init(newsrv, curproxy);
Willy Tarreau272adea2014-03-31 10:39:59 +02002470 }
Willy Tarreau07101d52015-09-08 16:16:35 +02002471 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002472 return 0;
2473
2474 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02002475 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002476 free(errmsg);
2477 return err_code;
2478}
2479
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002480/* Returns a pointer to the first server matching either id <id>.
2481 * NULL is returned if no match is found.
2482 * the lookup is performed in the backend <bk>
2483 */
2484struct server *server_find_by_id(struct proxy *bk, int id)
2485{
2486 struct eb32_node *eb32;
2487 struct server *curserver;
2488
2489 if (!bk || (id ==0))
2490 return NULL;
2491
2492 /* <bk> has no backend capabilities, so it can't have a server */
2493 if (!(bk->cap & PR_CAP_BE))
2494 return NULL;
2495
2496 curserver = NULL;
2497
2498 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2499 if (eb32)
2500 curserver = container_of(eb32, struct server, conf.id);
2501
2502 return curserver;
2503}
2504
2505/* Returns a pointer to the first server matching either name <name>, or id
2506 * if <name> starts with a '#'. NULL is returned if no match is found.
2507 * the lookup is performed in the backend <bk>
2508 */
2509struct server *server_find_by_name(struct proxy *bk, const char *name)
2510{
2511 struct server *curserver;
2512
2513 if (!bk || !name)
2514 return NULL;
2515
2516 /* <bk> has no backend capabilities, so it can't have a server */
2517 if (!(bk->cap & PR_CAP_BE))
2518 return NULL;
2519
2520 curserver = NULL;
2521 if (*name == '#') {
2522 curserver = server_find_by_id(bk, atoi(name + 1));
2523 if (curserver)
2524 return curserver;
2525 }
2526 else {
2527 curserver = bk->srv;
2528
2529 while (curserver && (strcmp(curserver->id, name) != 0))
2530 curserver = curserver->next;
2531
2532 if (curserver)
2533 return curserver;
2534 }
2535
2536 return NULL;
2537}
2538
2539struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2540{
2541 struct server *byname;
2542 struct server *byid;
2543
2544 if (!name && !id)
2545 return NULL;
2546
2547 if (diff)
2548 *diff = 0;
2549
2550 byname = byid = NULL;
2551
2552 if (name) {
2553 byname = server_find_by_name(bk, name);
2554 if (byname && (!id || byname->puid == id))
2555 return byname;
2556 }
2557
2558 /* remaining possibilities :
2559 * - name not set
2560 * - name set but not found
2561 * - name found but ID doesn't match
2562 */
2563 if (id) {
2564 byid = server_find_by_id(bk, id);
2565 if (byid) {
2566 if (byname) {
2567 /* use id only if forced by configuration */
2568 if (byid->flags & SRV_F_FORCED_ID) {
2569 if (diff)
2570 *diff |= 2;
2571 return byid;
2572 }
2573 else {
2574 if (diff)
2575 *diff |= 1;
2576 return byname;
2577 }
2578 }
2579
2580 /* remaining possibilities:
2581 * - name not set
2582 * - name set but not found
2583 */
2584 if (name && diff)
2585 *diff |= 2;
2586 return byid;
2587 }
2588
2589 /* id bot found */
2590 if (byname) {
2591 if (diff)
2592 *diff |= 1;
2593 return byname;
2594 }
2595 }
2596
2597 return NULL;
2598}
2599
Willy Tarreau46b7f532018-08-21 11:54:26 +02002600/* Update a server state using the parameters available in the params list.
2601 *
2602 * Grabs the server lock during operation.
2603 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002604static void srv_update_state(struct server *srv, int version, char **params)
2605{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002606 char *p;
Willy Tarreau83061a82018-07-13 11:56:34 +02002607 struct buffer *msg;
William Dauchyd1a7b852021-02-11 22:51:26 +01002608 const char *warning;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002609
2610 /* fields since version 1
2611 * and common to all other upcoming versions
2612 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002613 enum srv_state srv_op_state;
2614 enum srv_admin srv_admin_state;
2615 unsigned srv_uweight, srv_iweight;
2616 unsigned long srv_last_time_change;
2617 short srv_check_status;
2618 enum chk_result srv_check_result;
2619 int srv_check_health;
2620 int srv_check_state, srv_agent_state;
2621 int bk_f_forced_id;
2622 int srv_f_forced_id;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002623 int fqdn_set_by_cli;
2624 const char *fqdn;
William Dauchyd1a7b852021-02-11 22:51:26 +01002625 const char *port_st;
William Dauchyfe03e7d2021-02-03 22:30:06 +01002626 unsigned int port_svc;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002627 char *srvrecord;
William Dauchyd1a7b852021-02-11 22:51:26 +01002628 char *addr;
William Dauchyddc7ce92021-02-11 22:51:27 +01002629 int partial_apply = 0;
William Dauchyf6370442020-11-14 19:25:33 +01002630#ifdef USE_OPENSSL
2631 int use_ssl;
2632#endif
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002633
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002634 fqdn = NULL;
William Dauchyd1a7b852021-02-11 22:51:26 +01002635 port_svc = 0;
2636 msg = alloc_trash_chunk();
2637 if (!msg)
2638 goto end;
William Dauchy63e6cba2021-02-11 22:51:25 +01002639 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002640
William Dauchy63e6cba2021-02-11 22:51:25 +01002641 if (version >= 1) {
2642 /* srv_addr: params[0]
2643 * srv_op_state: params[1]
2644 * srv_admin_state: params[2]
2645 * srv_uweight: params[3]
2646 * srv_iweight: params[4]
2647 * srv_last_time_change: params[5]
2648 * srv_check_status: params[6]
2649 * srv_check_result: params[7]
2650 * srv_check_health: params[8]
2651 * srv_check_state: params[9]
2652 * srv_agent_state: params[10]
2653 * bk_f_forced_id: params[11]
2654 * srv_f_forced_id: params[12]
2655 * srv_fqdn: params[13]
2656 * srv_port: params[14]
2657 * srvrecord: params[15]
2658 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002659
William Dauchy63e6cba2021-02-11 22:51:25 +01002660 /* validating srv_op_state */
2661 p = NULL;
2662 errno = 0;
2663 srv_op_state = strtol(params[1], &p, 10);
2664 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
2665 (srv_op_state != SRV_ST_STOPPED &&
2666 srv_op_state != SRV_ST_STARTING &&
2667 srv_op_state != SRV_ST_RUNNING &&
2668 srv_op_state != SRV_ST_STOPPING)) {
2669 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
2670 }
Willy Tarreau757478e2016-11-03 19:22:19 +01002671
William Dauchy63e6cba2021-02-11 22:51:25 +01002672 /* validating srv_admin_state */
2673 p = NULL;
2674 errno = 0;
2675 srv_admin_state = strtol(params[2], &p, 10);
2676 fqdn_set_by_cli = !!(srv_admin_state & SRV_ADMF_HMAINT);
Willy Tarreau757478e2016-11-03 19:22:19 +01002677
William Dauchy63e6cba2021-02-11 22:51:25 +01002678 /* inherited statuses will be recomputed later.
2679 * Also disable SRV_ADMF_HMAINT flag (set from stats socket fqdn).
2680 */
Christopher Fauleteaab7322021-02-12 17:36:08 +01002681 srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_HMAINT & ~SRV_ADMF_RMAINT;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002682
William Dauchy63e6cba2021-02-11 22:51:25 +01002683 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
2684 (srv_admin_state != 0 &&
2685 srv_admin_state != SRV_ADMF_FMAINT &&
2686 srv_admin_state != SRV_ADMF_CMAINT &&
2687 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
2688 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FDRAIN) &&
2689 srv_admin_state != SRV_ADMF_FDRAIN)) {
2690 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
2691 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002692
William Dauchy63e6cba2021-02-11 22:51:25 +01002693 /* validating srv_uweight */
2694 p = NULL;
2695 errno = 0;
2696 srv_uweight = strtol(params[3], &p, 10);
2697 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
2698 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002699
William Dauchy63e6cba2021-02-11 22:51:25 +01002700 /* validating srv_iweight */
2701 p = NULL;
2702 errno = 0;
2703 srv_iweight = strtol(params[4], &p, 10);
2704 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
2705 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002706
William Dauchy63e6cba2021-02-11 22:51:25 +01002707 /* validating srv_last_time_change */
2708 p = NULL;
2709 errno = 0;
2710 srv_last_time_change = strtol(params[5], &p, 10);
2711 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2712 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002713
William Dauchy63e6cba2021-02-11 22:51:25 +01002714 /* validating srv_check_status */
2715 p = NULL;
2716 errno = 0;
2717 srv_check_status = strtol(params[6], &p, 10);
2718 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2719 (srv_check_status >= HCHK_STATUS_SIZE))
2720 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002721
William Dauchy63e6cba2021-02-11 22:51:25 +01002722 /* validating srv_check_result */
2723 p = NULL;
2724 errno = 0;
2725 srv_check_result = strtol(params[7], &p, 10);
2726 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2727 (srv_check_result != CHK_RES_UNKNOWN &&
2728 srv_check_result != CHK_RES_NEUTRAL &&
2729 srv_check_result != CHK_RES_FAILED &&
2730 srv_check_result != CHK_RES_PASSED &&
2731 srv_check_result != CHK_RES_CONDPASS)) {
2732 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2733 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002734
William Dauchy63e6cba2021-02-11 22:51:25 +01002735 /* validating srv_check_health */
2736 p = NULL;
2737 errno = 0;
2738 srv_check_health = strtol(params[8], &p, 10);
2739 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2740 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002741
William Dauchy63e6cba2021-02-11 22:51:25 +01002742 /* validating srv_check_state */
2743 p = NULL;
2744 errno = 0;
2745 srv_check_state = strtol(params[9], &p, 10);
2746 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2747 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2748 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002749
William Dauchy63e6cba2021-02-11 22:51:25 +01002750 /* validating srv_agent_state */
2751 p = NULL;
2752 errno = 0;
2753 srv_agent_state = strtol(params[10], &p, 10);
2754 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2755 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2756 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002757
William Dauchy63e6cba2021-02-11 22:51:25 +01002758 /* validating bk_f_forced_id */
2759 p = NULL;
2760 errno = 0;
2761 bk_f_forced_id = strtol(params[11], &p, 10);
2762 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
2763 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002764
William Dauchy63e6cba2021-02-11 22:51:25 +01002765 /* validating srv_f_forced_id */
2766 p = NULL;
2767 errno = 0;
2768 srv_f_forced_id = strtol(params[12], &p, 10);
2769 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
2770 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002771
William Dauchy63e6cba2021-02-11 22:51:25 +01002772 /* validating srv_fqdn */
2773 fqdn = params[13];
2774 if (fqdn && *fqdn == '-')
2775 fqdn = NULL;
2776 if (fqdn && (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn))) {
2777 chunk_appendf(msg, ", invalid srv_fqdn value '%s'", params[13]);
2778 fqdn = NULL;
2779 }
Frédéric Lécaille31694712017-08-01 08:47:19 +02002780
William Dauchyd1a7b852021-02-11 22:51:26 +01002781 port_st = params[14];
2782 if (port_st) {
2783 port_svc = strl2uic(port_st, strlen(port_st));
William Dauchy63e6cba2021-02-11 22:51:25 +01002784 if (port_svc > USHRT_MAX) {
William Dauchyd1a7b852021-02-11 22:51:26 +01002785 chunk_appendf(msg, ", invalid srv_port value '%s'", port_st);
2786 port_st = NULL;
William Dauchy63e6cba2021-02-11 22:51:25 +01002787 }
2788 }
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002789
William Dauchy63e6cba2021-02-11 22:51:25 +01002790 /* SRV record
2791 * NOTE: in HAProxy, SRV records must start with an underscore '_'
2792 */
2793 srvrecord = params[15];
2794 if (srvrecord && *srvrecord != '_')
2795 srvrecord = NULL;
William Dauchyf6370442020-11-14 19:25:33 +01002796
William Dauchy63e6cba2021-02-11 22:51:25 +01002797 /* don't apply anything if one error has been detected */
2798 if (msg->data)
2799 goto out;
William Dauchyddc7ce92021-02-11 22:51:27 +01002800 partial_apply = 1;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002801
William Dauchy63e6cba2021-02-11 22:51:25 +01002802 /* recover operational state and apply it to this server
2803 * and all servers tracking this one */
2804 srv->check.health = srv_check_health;
2805 switch (srv_op_state) {
2806 case SRV_ST_STOPPED:
2807 srv->check.health = 0;
2808 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
2809 break;
2810 case SRV_ST_STARTING:
2811 /* If rise == 1 there is no STARTING state, let's switch to
2812 * RUNNING
2813 */
2814 if (srv->check.rise == 1) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002815 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02002816 srv_set_running(srv, "", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002817 break;
William Dauchy63e6cba2021-02-11 22:51:25 +01002818 }
2819 if (srv->check.health < 1 || srv->check.health >= srv->check.rise)
2820 srv->check.health = srv->check.rise - 1;
2821 srv->next_state = srv_op_state;
2822 break;
2823 case SRV_ST_STOPPING:
2824 /* If fall == 1 there is no STOPPING state, let's switch to
2825 * STOPPED
2826 */
2827 if (srv->check.fall == 1) {
2828 srv->check.health = 0;
2829 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
2830 break;
2831 }
2832 if (srv->check.health < srv->check.rise ||
2833 srv->check.health > srv->check.rise + srv->check.fall - 2)
2834 srv->check.health = srv->check.rise;
2835 srv_set_stopping(srv, "changed from server-state after a reload", NULL);
2836 break;
2837 case SRV_ST_RUNNING:
2838 srv->check.health = srv->check.rise + srv->check.fall - 1;
2839 srv_set_running(srv, "", NULL);
2840 break;
2841 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002842
William Dauchy63e6cba2021-02-11 22:51:25 +01002843 /* When applying server state, the following rules apply:
2844 * - in case of a configuration change, we apply the setting from the new
2845 * configuration, regardless of old running state
2846 * - if no configuration change, we apply old running state only if old running
2847 * state is different from new configuration state
2848 */
2849 /* configuration has changed */
2850 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->next_admin & SRV_ADMF_CMAINT)) {
2851 if (srv->next_admin & SRV_ADMF_CMAINT)
2852 srv_adm_set_maint(srv);
2853 else
2854 srv_adm_set_ready(srv);
2855 }
2856 /* configuration is the same, let's compate old running state and new conf state */
2857 else {
2858 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->next_admin & SRV_ADMF_CMAINT))
2859 srv_adm_set_maint(srv);
2860 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->next_admin & SRV_ADMF_CMAINT))
2861 srv_adm_set_ready(srv);
2862 }
2863 /* apply drain mode if server is currently enabled */
2864 if (!(srv->next_admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
2865 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
2866 * (srv->iweight is the weight set up in configuration).
2867 * There are two possible reasons for FDRAIN to have been present :
2868 * - previous config weight was zero
2869 * - "set server b/s drain" was sent to the CLI
2870 *
2871 * In the first case, we simply want to drop this drain state
2872 * if the new weight is not zero anymore, meaning the administrator
2873 * has intentionally turned the weight back to a positive value to
2874 * enable the server again after an operation. In the second case,
2875 * the drain state was forced on the CLI regardless of the config's
2876 * weight so we don't want a change to the config weight to lose this
2877 * status. What this means is :
2878 * - if previous weight was 0 and new one is >0, drop the DRAIN state.
2879 * - if the previous weight was >0, keep it.
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002880 */
William Dauchy63e6cba2021-02-11 22:51:25 +01002881 if (srv_iweight > 0 || srv->iweight == 0)
2882 srv_adm_set_drain(srv);
2883 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002884
William Dauchy63e6cba2021-02-11 22:51:25 +01002885 srv->last_change = date.tv_sec - srv_last_time_change;
2886 srv->check.status = srv_check_status;
2887 srv->check.result = srv_check_result;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002888
William Dauchy63e6cba2021-02-11 22:51:25 +01002889 /* Only case we want to apply is removing ENABLED flag which could have been
2890 * done by the "disable health" command over the stats socket
2891 */
2892 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2893 (srv_check_state & CHK_ST_CONFIGURED) &&
2894 !(srv_check_state & CHK_ST_ENABLED))
2895 srv->check.state &= ~CHK_ST_ENABLED;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002896
William Dauchy63e6cba2021-02-11 22:51:25 +01002897 /* Only case we want to apply is removing ENABLED flag which could have been
2898 * done by the "disable agent" command over the stats socket
2899 */
2900 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
2901 (srv_agent_state & CHK_ST_CONFIGURED) &&
2902 !(srv_agent_state & CHK_ST_ENABLED))
2903 srv->agent.state &= ~CHK_ST_ENABLED;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002904
William Dauchy63e6cba2021-02-11 22:51:25 +01002905 /* We want to apply the previous 'running' weight (srv_uweight) only if there
2906 * was no change in the configuration: both previous and new iweight are equals
2907 *
2908 * It means that a configuration file change has precedence over a unix socket change
2909 * for server's weight
2910 *
2911 * by default, HAProxy applies the following weight when parsing the configuration
2912 * srv->uweight = srv->iweight
2913 */
2914 if (srv_iweight == srv->iweight) {
2915 srv->uweight = srv_uweight;
2916 }
2917 server_recalc_eweight(srv, 1);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002918
William Dauchy63e6cba2021-02-11 22:51:25 +01002919 /* load server IP address */
2920 if (strcmp(params[0], "-") != 0)
2921 srv->lastaddr = strdup(params[0]);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002922
William Dauchy63e6cba2021-02-11 22:51:25 +01002923 if (fqdn && srv->hostname) {
2924 if (strcmp(srv->hostname, fqdn) == 0) {
2925 /* Here we reset the 'set from stats socket FQDN' flag
2926 * to support such transitions:
2927 * Let's say initial FQDN value is foo1 (in configuration file).
2928 * - FQDN changed from stats socket, from foo1 to foo2 value,
2929 * - FQDN changed again from file configuration (with the same previous value
2930 set from stats socket, from foo1 to foo2 value),
2931 * - reload for any other reason than a FQDN modification,
2932 * the configuration file FQDN matches the fqdn server state file value.
2933 * So we must reset the 'set from stats socket FQDN' flag to be consistent with
2934 * any further FQDN modification.
2935 */
2936 srv->next_admin &= ~SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002937 }
William Dauchy63e6cba2021-02-11 22:51:25 +01002938 else {
2939 /* If the FDQN has been changed from stats socket,
2940 * apply fqdn state file value (which is the value set
2941 * from stats socket).
2942 * Also ensure the runtime resolver will process this resolution.
2943 */
2944 if (fqdn_set_by_cli) {
2945 srv_set_fqdn(srv, fqdn, 0);
2946 srv->flags &= ~SRV_F_NO_RESOLUTION;
2947 srv->next_admin |= SRV_ADMF_HMAINT;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002948 }
William Dauchy63e6cba2021-02-11 22:51:25 +01002949 }
2950 }
2951 /* If all the conditions below are validated, this means
2952 * we're evaluating a server managed by SRV resolution
2953 */
2954 else if (fqdn && !srv->hostname && srvrecord) {
2955 int res;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002956
William Dauchy63e6cba2021-02-11 22:51:25 +01002957 /* we can't apply previous state if SRV record has changed */
2958 if (srv->srvrq && strcmp(srv->srvrq->name, srvrecord) != 0) {
2959 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);
2960 goto out;
2961 }
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002962
William Dauchy63e6cba2021-02-11 22:51:25 +01002963 /* create or find a SRV resolution for this srv record */
2964 if (srv->srvrq == NULL && (srv->srvrq = find_srvrq_by_name(srvrecord, srv->proxy)) == NULL)
Emeric Brun08622d32020-12-23 17:41:43 +01002965 srv->srvrq = new_resolv_srvrq(srv, srvrecord);
William Dauchy63e6cba2021-02-11 22:51:25 +01002966 if (srv->srvrq == NULL) {
2967 chunk_appendf(msg, ", can't create or find SRV resolution '%s' for server '%s'", srvrecord, srv->id);
2968 goto out;
2969 }
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002970
William Dauchy63e6cba2021-02-11 22:51:25 +01002971 /* prepare DNS resolution for this server */
2972 res = srv_prepare_for_resolution(srv, fqdn);
2973 if (res == -1) {
2974 chunk_appendf(msg, ", can't allocate memory for DNS resolution for server '%s'", srv->id);
2975 goto out;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002976 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002977
William Dauchy63e6cba2021-02-11 22:51:25 +01002978 /* Unset SRV_F_MAPPORTS for SRV records.
2979 * SRV_F_MAPPORTS is unfortunately set by parse_server()
2980 * because no ports are provided in the configuration file.
2981 * This is because HAProxy will use the port found into the SRV record.
2982 */
2983 srv->flags &= ~SRV_F_MAPPORTS;
2984 }
2985
William Dauchyd1a7b852021-02-11 22:51:26 +01002986 if (port_st)
William Dauchy63e6cba2021-02-11 22:51:25 +01002987 srv->svc_port = port_svc;
William Dauchyfe03e7d2021-02-03 22:30:06 +01002988
William Dauchy63e6cba2021-02-11 22:51:25 +01002989 }
2990 if (version >= 2) {
2991 /* srv_use_ssl: params[16]
2992 * srv_check_port: params[17]
William Dauchyd1a7b852021-02-11 22:51:26 +01002993 * srv_check_addr: params[18]
2994 * srv_agent_addr: params[19]
2995 * srv_agent_port: params[20]
William Dauchy63e6cba2021-02-11 22:51:25 +01002996 */
William Dauchyf6370442020-11-14 19:25:33 +01002997
2998#ifdef USE_OPENSSL
William Dauchy63e6cba2021-02-11 22:51:25 +01002999 use_ssl = strtol(params[16], &p, 10);
William Dauchyf6370442020-11-14 19:25:33 +01003000
William Dauchy63e6cba2021-02-11 22:51:25 +01003001 /* configure ssl if connection has been initiated at startup */
3002 if (srv->ssl_ctx.ctx != NULL)
3003 ssl_sock_set_srv(srv, use_ssl);
3004#endif
William Dauchyd1a7b852021-02-11 22:51:26 +01003005 port_st = NULL;
3006 if (strcmp(params[17], "0") != 0)
3007 port_st = params[17];
3008 addr = NULL;
3009 if (strcmp(params[18], "-") != 0)
3010 addr = params[18];
3011 if (addr || port_st) {
3012 warning = update_server_check_addr_port(srv, addr, port_st);
3013 if (warning) {
3014 chunk_appendf(msg, ", %s", warning);
3015 goto out;
3016 }
3017 }
Frédéric Lécaille31694712017-08-01 08:47:19 +02003018
William Dauchyd1a7b852021-02-11 22:51:26 +01003019 port_st = NULL;
3020 if (strcmp(params[17], "0") != 0)
3021 port_st = params[20];
3022 addr = NULL;
3023 if (strcmp(params[19], "-") != 0)
3024 addr = params[19];
3025 if (addr || port_st) {
3026 warning = update_server_agent_addr_port(srv, addr, port_st);
3027 if (warning) {
3028 chunk_appendf(msg, ", %s", warning);
3029 goto out;
3030 }
3031 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003032 }
3033
3034 out:
William Dauchy63e6cba2021-02-11 22:51:25 +01003035 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003036 if (msg->data) {
William Dauchyddc7ce92021-02-11 22:51:27 +01003037 if (partial_apply == 1)
3038 ha_warning("server-state partially applied for server '%s/%s'%s\n",
3039 srv->proxy->id, srv->id, msg->area);
3040 else
3041 ha_warning("server-state application failed for server '%s/%s'%s\n",
3042 srv->proxy->id, srv->id, msg->area);
Baptiste Assmann0821bb92016-01-21 00:20:50 +01003043 }
William Dauchyd1a7b852021-02-11 22:51:26 +01003044 end:
3045 free_trash_chunk(msg);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003046}
3047
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003048
3049/*
3050 * read next line from file <f> and return the server state version if one found.
3051 * If no version is found, then 0 is returned
3052 * Note that this should be the first read on <f>
3053 */
3054static int srv_state_get_version(FILE *f) {
3055 char buf[2];
3056 int ret;
3057
3058 /* first character of first line of the file must contain the version of the export */
3059 if (fgets(buf, 2, f) == NULL) {
3060 return 0;
3061 }
3062
3063 ret = atoi(buf);
3064 if ((ret < SRV_STATE_FILE_VERSION_MIN) ||
3065 (ret > SRV_STATE_FILE_VERSION_MAX))
3066 return 0;
3067
3068 return ret;
3069}
3070
3071
3072/*
3073 * parses server state line stored in <buf> and supposedly in version <version>.
3074 * Set <params> and <srv_params> accordingly.
3075 * In case of error, params[0] is set to NULL.
3076 */
3077static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params)
3078{
3079 int buflen, arg, srv_arg;
3080 char *cur, *end;
3081
3082 buflen = strlen(buf);
3083 cur = buf;
3084 end = cur + buflen;
3085
3086 /* we need at least one character */
3087 if (buflen == 0) {
3088 params[0] = NULL;
3089 return;
3090 }
3091
3092 /* ignore blank characters at the beginning of the line */
Willy Tarreau90807112020-02-25 08:16:33 +01003093 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003094 ++cur;
3095
3096 /* Ignore empty or commented lines */
3097 if (cur == end || *cur == '#') {
3098 params[0] = NULL;
3099 return;
3100 }
3101
3102 /* truncated lines */
3103 if (buf[buflen - 1] != '\n') {
3104 //ha_warning("server-state file '%s': truncated line\n", filepath);
3105 params[0] = NULL;
3106 return;
3107 }
3108
3109 /* Removes trailing '\n' */
3110 buf[buflen - 1] = '\0';
3111
3112 /* we're now ready to move the line into *srv_params[] */
Christopher Faulet06cd2562021-02-19 16:47:11 +01003113 memset(params, 0, SRV_STATE_FILE_MAX_FIELDS * sizeof(*params));
3114 memset(srv_params, 0, SRV_STATE_FILE_MAX_FIELDS * sizeof(*srv_params));
Christopher Faulet868a5752021-02-19 16:57:20 +01003115
3116 arg = 0;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003117 srv_arg = 0;
3118 while (*cur && arg < SRV_STATE_FILE_MAX_FIELDS) {
Christopher Faulet868a5752021-02-19 16:57:20 +01003119 /* Search begining of the current field */
3120 while (isspace((unsigned char)*cur)) {
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003121 ++cur;
Christopher Faulet868a5752021-02-19 16:57:20 +01003122 if (!*cur)
3123 goto end;
3124 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003125
Christopher Faulet868a5752021-02-19 16:57:20 +01003126 /* v1
3127 * srv_addr: params[4] => srv_params[0]
3128 * srv_op_state: params[5] => srv_params[1]
3129 * srv_admin_state: params[6] => srv_params[2]
3130 * srv_uweight: params[7] => srv_params[3]
3131 * srv_iweight: params[8] => srv_params[4]
3132 * srv_last_time_change: params[9] => srv_params[5]
3133 * srv_check_status: params[10] => srv_params[6]
3134 * srv_check_result: params[11] => srv_params[7]
3135 * srv_check_health: params[12] => srv_params[8]
3136 * srv_check_state: params[13] => srv_params[9]
3137 * srv_agent_state: params[14] => srv_params[10]
3138 * bk_f_forced_id: params[15] => srv_params[11]
3139 * srv_f_forced_id: params[16] => srv_params[12]
3140 * srv_fqdn: params[17] => srv_params[13]
3141 * srv_port: params[18] => srv_params[14]
3142 * srvrecord: params[19] => srv_params[15]
3143 * v2
3144 * srv_use_ssl: params[20] => srv_params[16]
3145 * srv_check_port: params[21] => srv_params[17]
3146 * srv_check_addr: params[22] => srv_params[18]
3147 * srv_agent_addr: params[23] => srv_params[19]
3148 * srv_agent_port: params[24] => srv_params[20]
3149 */
3150 if ((version == 1 && arg >= 4 && arg <= 19) ||
3151 (version == 2 && arg >= 4)) {
3152 srv_params[srv_arg] = cur;
3153 ++srv_arg;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003154 }
Christopher Faulet868a5752021-02-19 16:57:20 +01003155 params[arg] = cur;
3156 ++arg;
3157
3158 /* Search end of the current field: first space or \0 */
3159 /* Search begining of the current field */
3160 while (!isspace((unsigned char)*cur)) {
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003161 ++cur;
Christopher Faulet868a5752021-02-19 16:57:20 +01003162 if (!*cur)
3163 goto end;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003164 }
Christopher Faulet868a5752021-02-19 16:57:20 +01003165 *cur++ = '\0';
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003166 }
3167
Christopher Faulet868a5752021-02-19 16:57:20 +01003168 end:
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003169 /* if line is incomplete line, then ignore it.
3170 * otherwise, update useful flags */
William Dauchy63e6cba2021-02-11 22:51:25 +01003171 if ((version == 1 && arg < SRV_STATE_FILE_NB_FIELDS_VERSION_1) ||
3172 (version == 2 && arg < SRV_STATE_FILE_NB_FIELDS_VERSION_2))
3173 params[0] = NULL;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003174}
3175
3176
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003177/* This function parses all the proxies and only take care of the backends (since we're looking for server)
3178 * For each proxy, it does the following:
3179 * - opens its server state file (either one or local one)
3180 * - read whole file, line by line
3181 * - analyse each line to check if it matches our current backend:
3182 * - backend name matches
3183 * - backend id matches if id is forced and name doesn't match
3184 * - if the server pointed by the line is found, then state is applied
3185 *
3186 * If the running backend uuid or id differs from the state file, then HAProxy reports
3187 * a warning.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003188 *
3189 * Grabs the server's lock via srv_update_state().
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003190 */
3191void apply_server_state(void)
3192{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003193 char mybuf[SRV_STATE_LINE_MAXLEN];
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003194 char *params[SRV_STATE_FILE_MAX_FIELDS] = {0};
3195 char *srv_params[SRV_STATE_FILE_MAX_FIELDS] = {0};
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003196 int version, global_file_version;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003197 FILE *f;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003198 char globalfilepath[MAXPATHLEN + 1];
3199 char localfilepath[MAXPATHLEN + 1];
3200 int len, fileopenerr, globalfilepathlen, localfilepathlen;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003201 struct proxy *curproxy, *bk;
3202 struct server *srv;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003203 char *line;
3204 char *bkname, *srvname;
3205 struct state_line *st;
3206 struct ebmb_node *node, *next_node;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003207
Willy Tarreau2d067f92020-07-16 06:40:27 +02003208 f = NULL;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003209 global_file_version = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003210 globalfilepathlen = 0;
3211 /* create the globalfilepath variable */
3212 if (global.server_state_file) {
3213 /* absolute path or no base directory provided */
3214 if ((global.server_state_file[0] == '/') || (!global.server_state_base)) {
3215 len = strlen(global.server_state_file);
3216 if (len > MAXPATHLEN) {
3217 globalfilepathlen = 0;
3218 goto globalfileerror;
3219 }
3220 memcpy(globalfilepath, global.server_state_file, len);
3221 globalfilepath[len] = '\0';
3222 globalfilepathlen = len;
3223 }
3224 else if (global.server_state_base) {
3225 len = strlen(global.server_state_base);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003226 if (len > MAXPATHLEN) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003227 globalfilepathlen = 0;
3228 goto globalfileerror;
3229 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003230 memcpy(globalfilepath, global.server_state_base, len);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003231 globalfilepath[len] = 0;
3232 globalfilepathlen = len;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003233
3234 /* append a slash if needed */
3235 if (!globalfilepathlen || globalfilepath[globalfilepathlen - 1] != '/') {
3236 if (globalfilepathlen + 1 > MAXPATHLEN) {
3237 globalfilepathlen = 0;
3238 goto globalfileerror;
3239 }
3240 globalfilepath[globalfilepathlen++] = '/';
3241 }
3242
3243 len = strlen(global.server_state_file);
3244 if (globalfilepathlen + len > MAXPATHLEN) {
3245 globalfilepathlen = 0;
3246 goto globalfileerror;
3247 }
3248 memcpy(globalfilepath + globalfilepathlen, global.server_state_file, len);
3249 globalfilepathlen += len;
3250 globalfilepath[globalfilepathlen++] = 0;
3251 }
3252 }
3253 globalfileerror:
3254 if (globalfilepathlen == 0)
3255 globalfilepath[0] = '\0';
3256
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003257 /* Load global server state in a tree */
3258 if (globalfilepathlen > 0) {
3259 errno = 0;
3260 f = fopen(globalfilepath, "r");
3261 if (errno)
3262 ha_warning("Can't open global server state file '%s': %s\n", globalfilepath, strerror(errno));
Vedran Furac5d486272019-10-16 14:49:38 +02003263 if (!f)
3264 goto out_load_server_state_in_tree;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003265
3266 global_file_version = srv_state_get_version(f);
3267 if (global_file_version == 0)
3268 goto out_load_server_state_in_tree;
3269
3270 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3271 line = NULL;
3272
3273 line = strdup(mybuf);
3274 if (line == NULL)
3275 continue;
3276
3277 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3278 if (params[0] == NULL)
Willy Tarreauca7a5af2019-12-20 17:26:27 +01003279 goto nextline;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003280
3281 /* bkname */
3282 bkname = params[1];
3283 /* srvname */
3284 srvname = params[3];
3285
3286 /* key */
3287 chunk_printf(&trash, "%s %s", bkname, srvname);
3288
3289 /* store line in tree */
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003290 st = calloc(1, sizeof(*st) + trash.data + 1);
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003291 if (st == NULL) {
3292 goto nextline;
3293 }
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003294 memcpy(st->name_name.key, trash.area, trash.data + 1);
Willy Tarreaufd1aa012019-12-20 17:23:40 +01003295 if (ebst_insert(&state_file, &st->name_name) != &st->name_name) {
3296 /* this is a duplicate key, probably a hand-crafted file,
3297 * drop it!
3298 */
3299 goto nextline;
3300 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003301
3302 /* save line */
3303 st->line = line;
3304
3305 continue;
3306
3307 nextline:
3308 /* free up memory in case of error during the processing of the line */
3309 free(line);
3310 }
3311 }
3312 out_load_server_state_in_tree:
3313
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003314 if (f) {
3315 fclose(f);
3316 f = NULL;
3317 }
3318
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003319 /* parse all proxies and load states form tree (global file) or from local file */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003320 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003321 /* servers are only in backends */
3322 if (!(curproxy->cap & PR_CAP_BE))
3323 continue;
3324 fileopenerr = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003325
3326 /* search server state file path and name */
3327 switch (curproxy->load_server_state_from_file) {
3328 /* read servers state from global file */
3329 case PR_SRV_STATE_FILE_GLOBAL:
3330 /* there was an error while generating global server state file path */
3331 if (globalfilepathlen == 0)
3332 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003333 fileopenerr = 1;
3334 break;
3335 /* this backend has its own file */
3336 case PR_SRV_STATE_FILE_LOCAL:
3337 localfilepathlen = 0;
3338 localfilepath[0] = '\0';
3339 len = 0;
3340 /* create the localfilepath variable */
3341 /* absolute path or no base directory provided */
3342 if ((curproxy->server_state_file_name[0] == '/') || (!global.server_state_base)) {
3343 len = strlen(curproxy->server_state_file_name);
3344 if (len > MAXPATHLEN) {
3345 localfilepathlen = 0;
3346 goto localfileerror;
3347 }
3348 memcpy(localfilepath, curproxy->server_state_file_name, len);
3349 localfilepath[len] = '\0';
3350 localfilepathlen = len;
3351 }
3352 else if (global.server_state_base) {
3353 len = strlen(global.server_state_base);
3354 localfilepathlen += len;
3355
3356 if (localfilepathlen > MAXPATHLEN) {
3357 localfilepathlen = 0;
3358 goto localfileerror;
3359 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003360 memcpy(localfilepath, global.server_state_base, len);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003361 localfilepath[localfilepathlen] = 0;
3362
3363 /* append a slash if needed */
3364 if (!localfilepathlen || localfilepath[localfilepathlen - 1] != '/') {
3365 if (localfilepathlen + 1 > MAXPATHLEN) {
3366 localfilepathlen = 0;
3367 goto localfileerror;
3368 }
3369 localfilepath[localfilepathlen++] = '/';
3370 }
3371
3372 len = strlen(curproxy->server_state_file_name);
3373 if (localfilepathlen + len > MAXPATHLEN) {
3374 localfilepathlen = 0;
3375 goto localfileerror;
3376 }
3377 memcpy(localfilepath + localfilepathlen, curproxy->server_state_file_name, len);
3378 localfilepathlen += len;
3379 localfilepath[localfilepathlen++] = 0;
3380 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003381 localfileerror:
3382 if (localfilepathlen == 0)
Christopher Faulet8952ea62021-02-12 16:31:03 +01003383 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003384
3385 break;
3386 case PR_SRV_STATE_FILE_NONE:
3387 default:
3388 continue;
3389 }
3390
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003391 /* when global file is used, we get data from the tree
3392 * Note that in such case we don't check backend name neither uuid.
3393 * Backend name can't be wrong since it's used as a key to retrieve the server state
3394 * line from the tree.
3395 */
3396 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_GLOBAL) {
3397 struct server *srv = curproxy->srv;
3398 while (srv) {
3399 struct ebmb_node *node;
3400 struct state_line *st;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003401
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003402 chunk_printf(&trash, "%s %s", curproxy->id, srv->id);
3403 node = ebst_lookup(&state_file, trash.area);
3404 if (!node)
3405 goto next;
Dragan Dosencf4fb032015-11-04 23:03:26 +01003406
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003407 st = container_of(node, struct state_line, name_name);
3408 memcpy(mybuf, st->line, strlen(st->line));
3409 mybuf[strlen(st->line)] = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003410
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003411 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3412 if (params[0] == NULL)
3413 goto next;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003414
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003415 srv_update_state(srv, global_file_version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003416
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003417 next:
3418 srv = srv->next;
3419 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003420
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003421 continue; /* next proxy in list */
3422 }
3423 else {
3424 /* load 'local' state file */
3425 errno = 0;
Christopher Faulet46967642021-02-12 16:38:14 +01003426 f = fopen(localfilepath, "r");
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003427 if (errno && fileopenerr)
Christopher Faulet46967642021-02-12 16:38:14 +01003428 ha_warning("Can't open server state file '%s': %s\n", localfilepath, strerror(errno));
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003429 if (!f)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003430 continue;
3431
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003432 mybuf[0] = '\0';
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003433
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003434 /* first character of first line of the file must contain the version of the export */
3435 version = srv_state_get_version(f);
3436 if (version == 0) {
Christopher Faulet46967642021-02-12 16:38:14 +01003437 ha_warning("Can't get version of the server state file '%s'\n", localfilepath);
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003438 goto fileclose;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003439 }
3440
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003441 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3442 int bk_f_forced_id = 0;
3443 int check_id = 0;
3444 int check_name = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003445
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003446 srv_state_parse_line(mybuf, version, params, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003447
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003448 if (params[0] == NULL) {
3449 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003450 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003451
3452 /* if line is incomplete line, then ignore it.
3453 * otherwise, update useful flags */
3454 switch (version) {
3455 case 1:
William Dauchy63e6cba2021-02-11 22:51:25 +01003456 case 2:
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003457 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
3458 check_id = (atoi(params[0]) == curproxy->uuid);
3459 check_name = (strcmp(curproxy->id, params[1]) == 0);
3460 break;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003461 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003462
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003463 bk = curproxy;
3464
3465 /* if backend can't be found, let's continue */
3466 if (!check_id && !check_name)
3467 continue;
3468 else if (!check_id && check_name) {
3469 ha_warning("backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3470 send_log(bk, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3471 }
3472 else if (check_id && !check_name) {
3473 ha_warning("backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3474 send_log(bk, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3475 /* if name doesn't match, we still want to update curproxy if the backend id
3476 * was forced in previous the previous configuration */
3477 if (!bk_f_forced_id)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003478 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003479 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003480
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003481 /* look for the server by its name: param[3] */
3482 srv = server_find_best_match(bk, params[3], 0, NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003483
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003484 if (!srv) {
3485 /* if no server found, then warning and continue with next line */
3486 ha_warning("can't find server '%s' in backend '%s'\n",
3487 params[3], params[1]);
3488 send_log(bk, LOG_NOTICE, "can't find server '%s' in backend '%s'\n",
3489 params[3], params[1]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003490 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003491 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003492
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003493 /* now we can proceed with server's state update */
3494 srv_update_state(srv, version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003495 }
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003496
3497 fileclose:
3498 fclose(f);
3499
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003500 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003501 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003502
3503 /* now free memory allocated for the tree */
3504 for (node = ebmb_first(&state_file), next_node = node ? ebmb_next(node) : NULL;
3505 node;
3506 node = next_node, next_node = node ? ebmb_next(node) : NULL) {
3507 st = container_of(node, struct state_line, name_name);
3508 ebmb_delete(&st->name_name);
3509 free(st->line);
3510 free(st);
3511 }
3512
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003513}
3514
Simon Horman7d09b9a2013-02-12 10:45:51 +09003515/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003516 * update a server's current IP address.
3517 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3518 * ip is in network format.
3519 * updater is a string which contains an information about the requester of the update.
3520 * updater is used if not NULL.
3521 *
3522 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003523 *
3524 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003525 */
Thierry Fournierd35b7a62016-02-24 08:23:22 +01003526int update_server_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003527{
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +02003528 /* save the new IP family & address if necessary */
3529 switch (ip_sin_family) {
3530 case AF_INET:
3531 if (s->addr.ss_family == ip_sin_family &&
3532 !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4))
3533 return 0;
3534 break;
3535 case AF_INET6:
3536 if (s->addr.ss_family == ip_sin_family &&
3537 !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16))
3538 return 0;
3539 break;
3540 };
3541
Baptiste Assmann14e40142015-04-14 01:13:07 +02003542 /* generates a log line and a warning on stderr */
3543 if (1) {
3544 /* book enough space for both IPv4 and IPv6 */
3545 char oldip[INET6_ADDRSTRLEN];
3546 char newip[INET6_ADDRSTRLEN];
3547
3548 memset(oldip, '\0', INET6_ADDRSTRLEN);
3549 memset(newip, '\0', INET6_ADDRSTRLEN);
3550
3551 /* copy old IP address in a string */
3552 switch (s->addr.ss_family) {
3553 case AF_INET:
3554 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3555 break;
3556 case AF_INET6:
3557 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3558 break;
Christopher Fauletb0b76072020-09-08 10:38:40 +02003559 default:
3560 strcpy(oldip, "(none)");
3561 break;
Baptiste Assmann14e40142015-04-14 01:13:07 +02003562 };
3563
3564 /* copy new IP address in a string */
3565 switch (ip_sin_family) {
3566 case AF_INET:
3567 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3568 break;
3569 case AF_INET6:
3570 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3571 break;
3572 };
3573
3574 /* save log line into a buffer */
3575 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3576 s->proxy->id, s->id, oldip, newip, updater);
3577
3578 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003579 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003580
3581 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003582 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003583 }
3584
3585 /* save the new IP family */
3586 s->addr.ss_family = ip_sin_family;
3587 /* save the new IP address */
3588 switch (ip_sin_family) {
3589 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003590 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003591 break;
3592 case AF_INET6:
3593 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3594 break;
3595 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003596 srv_set_dyncookie(s);
Thayne McCombs92149f92020-11-20 01:28:26 -07003597 srv_set_addr_desc(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003598
3599 return 0;
3600}
3601
William Dauchy7cabc062021-02-11 22:51:24 +01003602/* update agent health check address and port
3603 * addr can be ip4/ip6 or a hostname
3604 * if one error occurs, don't apply anything
3605 * must be called with the server lock held.
3606 */
3607static const char *update_server_agent_addr_port(struct server *s, const char *addr,
3608 const char *port)
3609{
3610 struct sockaddr_storage sk;
3611 struct buffer *msg;
3612 int new_port;
3613
3614 msg = get_trash_chunk();
3615 chunk_reset(msg);
3616
3617 if (!(s->agent.state & CHK_ST_ENABLED)) {
3618 chunk_strcat(msg, "agent checks are not enabled on this server");
3619 goto out;
3620 }
3621 if (addr) {
3622 memset(&sk, 0, sizeof(struct sockaddr_storage));
3623 if (str2ip(addr, &sk) == NULL) {
3624 chunk_appendf(msg, "invalid addr '%s'", addr);
3625 goto out;
3626 }
3627 }
3628 if (port) {
3629 if (strl2irc(port, strlen(port), &new_port) != 0) {
3630 chunk_appendf(msg, "provided port is not an integer");
3631 goto out;
3632 }
3633 if (new_port < 0 || new_port > 65535) {
3634 chunk_appendf(msg, "provided port is invalid");
3635 goto out;
3636 }
3637 }
3638out:
3639 if (msg->data)
3640 return msg->area;
3641 else {
3642 if (addr)
3643 set_srv_agent_addr(s, &sk);
3644 if (port)
3645 set_srv_agent_port(s, new_port);
3646 }
3647 return NULL;
3648}
3649
William Dauchyb456e1f2021-02-11 22:51:23 +01003650/* update server health check address and port
3651 * addr must be ip4 or ip6, it won't be resolved
3652 * if one error occurs, don't apply anything
3653 * must be called with the server lock held.
3654 */
3655static const char *update_server_check_addr_port(struct server *s, const char *addr,
3656 const char *port)
3657{
3658 struct sockaddr_storage sk;
3659 struct buffer *msg;
3660 int new_port;
3661
3662 msg = get_trash_chunk();
3663 chunk_reset(msg);
3664
3665 if (!(s->check.state & CHK_ST_ENABLED)) {
3666 chunk_strcat(msg, "health checks are not enabled on this server");
3667 goto out;
3668 }
3669 if (addr) {
3670 memset(&sk, 0, sizeof(struct sockaddr_storage));
3671 if (str2ip2(addr, &sk, 0) == NULL) {
3672 chunk_appendf(msg, "invalid addr '%s'", addr);
3673 goto out;
3674 }
3675 }
3676 if (port) {
3677 if (strl2irc(port, strlen(port), &new_port) != 0) {
3678 chunk_appendf(msg, "provided port is not an integer");
3679 goto out;
3680 }
3681 if (new_port < 0 || new_port > 65535) {
3682 chunk_appendf(msg, "provided port is invalid");
3683 goto out;
3684 }
3685 /* prevent the update of port to 0 if MAPPORTS are in use */
3686 if ((s->flags & SRV_F_MAPPORTS) && new_port == 0) {
3687 chunk_appendf(msg, "can't unset 'port' since MAPPORTS is in use");
3688 goto out;
3689 }
3690 }
3691out:
3692 if (msg->data)
3693 return msg->area;
3694 else {
3695 if (addr)
3696 s->check.addr = sk;
3697 if (port)
3698 s->check.port = new_port;
3699 }
3700 return NULL;
3701}
3702
Baptiste Assmann14e40142015-04-14 01:13:07 +02003703/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003704 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3705 *
3706 * Caller can pass its name through <updater> to get it integrated in the response message
3707 * returned by the function.
3708 *
3709 * The function first does the following, in that order:
3710 * - validates the new addr and/or port
3711 * - checks if an update is required (new IP or port is different than current ones)
3712 * - checks the update is allowed:
3713 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3714 * - allow all changes if no CHECKS are configured
3715 * - if CHECK is configured:
3716 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3717 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3718 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003719 *
3720 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003721 */
3722const char *update_server_addr_port(struct server *s, const char *addr, const char *port, char *updater)
3723{
3724 struct sockaddr_storage sa;
3725 int ret, port_change_required;
3726 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003727 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003728 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003729 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003730
3731 msg = get_trash_chunk();
3732 chunk_reset(msg);
3733
3734 if (addr) {
3735 memset(&sa, 0, sizeof(struct sockaddr_storage));
3736 if (str2ip2(addr, &sa, 0) == NULL) {
3737 chunk_printf(msg, "Invalid addr '%s'", addr);
3738 goto out;
3739 }
3740
3741 /* changes are allowed on AF_INET* families only */
3742 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3743 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3744 goto out;
3745 }
3746
3747 /* collecting data currently setup */
3748 memset(current_addr, '\0', sizeof(current_addr));
3749 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3750 /* changes are allowed on AF_INET* families only */
3751 if ((ret != AF_INET) && (ret != AF_INET6)) {
3752 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3753 goto out;
3754 }
3755
3756 /* applying ADDR changes if required and allowed
3757 * ipcmp returns 0 when both ADDR are the same
3758 */
3759 if (ipcmp(&s->addr, &sa) == 0) {
3760 chunk_appendf(msg, "no need to change the addr");
3761 goto port;
3762 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003763 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003764 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003765
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003766 /* update report for caller */
3767 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3768 }
3769
3770 port:
3771 if (port) {
3772 char sign = '\0';
3773 char *endptr;
3774
3775 if (addr)
3776 chunk_appendf(msg, ", ");
3777
3778 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003779 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003780
3781 /* check if PORT change is required */
3782 port_change_required = 0;
3783
3784 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003785 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003786 new_port = strtol(port, &endptr, 10);
3787 if ((errno != 0) || (port == endptr)) {
3788 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3789 goto out;
3790 }
3791
3792 /* check if caller triggers a port mapped or offset */
3793 if (sign == '-' || (sign == '+')) {
3794 /* check if server currently uses port map */
3795 if (!(s->flags & SRV_F_MAPPORTS)) {
3796 /* switch from fixed port to port map mandatorily triggers
3797 * a port change */
3798 port_change_required = 1;
3799 /* check is configured
3800 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3801 * prevent PORT change if check doesn't have it's dedicated port while switching
3802 * to port mapping */
William Dauchy69f118d2021-02-03 22:30:07 +01003803 if (!s->check.port) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003804 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.");
3805 goto out;
3806 }
3807 }
3808 /* we're already using port maps */
3809 else {
3810 port_change_required = current_port != new_port;
3811 }
3812 }
3813 /* fixed port */
3814 else {
3815 port_change_required = current_port != new_port;
3816 }
3817
3818 /* applying PORT changes if required and update response message */
3819 if (port_change_required) {
3820 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003821 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003822 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003823
3824 /* prepare message */
3825 chunk_appendf(msg, "port changed from '");
3826 if (s->flags & SRV_F_MAPPORTS)
3827 chunk_appendf(msg, "+");
3828 chunk_appendf(msg, "%d' to '", current_port);
3829
3830 if (sign == '-') {
3831 s->flags |= SRV_F_MAPPORTS;
3832 chunk_appendf(msg, "%c", sign);
3833 /* just use for result output */
3834 new_port = -new_port;
3835 }
3836 else if (sign == '+') {
3837 s->flags |= SRV_F_MAPPORTS;
3838 chunk_appendf(msg, "%c", sign);
3839 }
3840 else {
3841 s->flags &= ~SRV_F_MAPPORTS;
3842 }
3843
3844 chunk_appendf(msg, "%d'", new_port);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003845 }
3846 else {
3847 chunk_appendf(msg, "no need to change the port");
3848 }
3849 }
3850
3851out:
William Dauchy6318d332020-05-02 21:52:36 +02003852 if (changed) {
3853 /* force connection cleanup on the given server */
3854 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003855 srv_set_dyncookie(s);
Thayne McCombs92149f92020-11-20 01:28:26 -07003856 srv_set_addr_desc(s);
William Dauchy6318d332020-05-02 21:52:36 +02003857 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003858 if (updater)
3859 chunk_appendf(msg, " by '%s'", updater);
3860 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003861 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003862}
3863
3864
3865/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003866 * update server status based on result of name resolution
3867 * returns:
3868 * 0 if server status is updated
3869 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003870 *
3871 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003872 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003873int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003874{
Emeric Brun750fe792020-12-23 16:51:12 +01003875 struct resolvers *resolvers = s->resolvers;
Emeric Brun08622d32020-12-23 17:41:43 +01003876 struct resolv_resolution *resolution = s->resolv_requester->resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003877 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003878
Jerome Magnin012261a2020-07-28 13:38:22 +02003879 /* If resolution is NULL we're dealing with SRV records Additional records */
3880 if (resolution == NULL) {
Baptiste Assmann87138c32020-08-04 10:57:21 +02003881 /* since this server has an IP, it can go back in production */
3882 if (has_no_ip == 0) {
3883 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3884 return 1;
3885 }
3886
Jerome Magnin012261a2020-07-28 13:38:22 +02003887 if (s->next_admin & SRV_ADMF_RMAINT)
3888 return 1;
3889
3890 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record");
3891 return 0;
3892 }
3893
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003894 switch (resolution->status) {
3895 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003896 /* status when HAProxy has just (re)started.
3897 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003898 break;
3899
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003900 case RSLV_STATUS_VALID:
3901 /*
3902 * resume health checks
3903 * server will be turned back on if health check is safe
3904 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003905 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003906 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003907 return 1;
3908 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3909 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003910 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003911 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003912
Emeric Brun52a91d32017-08-31 14:41:55 +02003913 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003914 return 1;
3915 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3916 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3917 s->proxy->id, s->id);
3918
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003919 ha_warning("%s.\n", trash.area);
3920 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003921 return 0;
3922
3923 case RSLV_STATUS_NX:
3924 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003925 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3926 if (!tick_is_expired(exp, now_ms))
3927 break;
3928
3929 if (s->next_admin & SRV_ADMF_RMAINT)
3930 return 1;
3931 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3932 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003933
3934 case RSLV_STATUS_TIMEOUT:
3935 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003936 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3937 if (!tick_is_expired(exp, now_ms))
3938 break;
3939
3940 if (s->next_admin & SRV_ADMF_RMAINT)
3941 return 1;
3942 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3943 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003944
3945 case RSLV_STATUS_REFUSED:
3946 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003947 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3948 if (!tick_is_expired(exp, now_ms))
3949 break;
3950
3951 if (s->next_admin & SRV_ADMF_RMAINT)
3952 return 1;
3953 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3954 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003955
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003956 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003957 /* stop server if resolution failed for a long enough period */
3958 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3959 if (!tick_is_expired(exp, now_ms))
3960 break;
3961
3962 if (s->next_admin & SRV_ADMF_RMAINT)
3963 return 1;
3964 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3965 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003966 }
3967
3968 return 1;
3969}
3970
3971/*
3972 * Server Name Resolution valid response callback
3973 * It expects:
3974 * - <nameserver>: the name server which answered the valid response
3975 * - <response>: buffer containing a valid DNS response
3976 * - <response_len>: size of <response>
3977 * It performs the following actions:
3978 * - ignore response if current ip found and server family not met
3979 * - update with first new ip found if family is met and current IP is not found
3980 * returns:
3981 * 0 on error
3982 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003983 *
3984 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003985 */
Emeric Brun08622d32020-12-23 17:41:43 +01003986int snr_resolution_cb(struct resolv_requester *requester, struct dns_counters *counters)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003987{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003988 struct server *s = NULL;
Emeric Brun08622d32020-12-23 17:41:43 +01003989 struct resolv_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003990 void *serverip, *firstip;
3991 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003992 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003993 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003994 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003995
Christopher Faulet67957bd2017-09-27 11:00:59 +02003996 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003997 if (!s)
3998 return 1;
3999
Emeric Brun08622d32020-12-23 17:41:43 +01004000 resolution = s->resolv_requester->resolution;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004001
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004002 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004003 firstip = NULL; /* pointer to the first valid response found */
4004 /* it will be used as the new IP if a change is required */
4005 firstip_sin_family = AF_UNSPEC;
4006 serverip = NULL; /* current server IP address */
4007
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004008 /* initializing server IP pointer */
4009 server_sin_family = s->addr.ss_family;
4010 switch (server_sin_family) {
4011 case AF_INET:
4012 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
4013 break;
4014
4015 case AF_INET6:
4016 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
4017 break;
4018
Willy Tarreau3acfcd12017-01-06 19:18:32 +01004019 case AF_UNSPEC:
4020 break;
4021
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004022 default:
4023 goto invalid;
4024 }
4025
Emeric Brund30e9a12020-12-23 18:49:16 +01004026 ret = resolv_get_ip_from_response(&resolution->response, &s->resolv_opts,
4027 serverip, server_sin_family, &firstip,
4028 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004029
4030 switch (ret) {
Emeric Brun456de772020-12-23 18:17:31 +01004031 case RSLV_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004032 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004033
Emeric Brun456de772020-12-23 18:17:31 +01004034 case RSLV_UPD_SRVIP_NOT_FOUND:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004035 goto save_ip;
4036
Emeric Brun456de772020-12-23 18:17:31 +01004037 case RSLV_UPD_CNAME:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004038 goto invalid;
4039
Emeric Brun456de772020-12-23 18:17:31 +01004040 case RSLV_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004041 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004042 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02004043
Emeric Brun456de772020-12-23 18:17:31 +01004044 case RSLV_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01004045 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02004046 resolution->status = RSLV_STATUS_OTHER;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004047 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01004048
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004049 default:
4050 goto invalid;
4051
4052 }
4053
4054 save_ip:
Emeric Brun50c870e2021-01-04 10:40:46 +01004055 if (counters) {
4056 counters->update++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004057 /* save the first ip we found */
Emeric Brun50c870e2021-01-04 10:40:46 +01004058 chunk_printf(chk, "%s/%s", counters->pid, counters->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004059 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004060 else
4061 chunk_printf(chk, "DNS cache");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004062 update_server_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004063
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004064 update_status:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004065 snr_update_srv_status(s, has_no_ip);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004066 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004067
4068 invalid:
Emeric Brun50c870e2021-01-04 10:40:46 +01004069 if (counters) {
4070 counters->invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004071 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02004072 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004073 snr_update_srv_status(s, has_no_ip);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004074 return 0;
4075}
4076
4077/*
4078 * Server Name Resolution error management callback
4079 * returns:
4080 * 0 on error
4081 * 1 when no error or safe ignore
Willy Tarreau46b7f532018-08-21 11:54:26 +02004082 *
4083 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004084 */
Emeric Brun08622d32020-12-23 17:41:43 +01004085int snr_resolution_error_cb(struct resolv_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004086{
Christopher Faulet67957bd2017-09-27 11:00:59 +02004087 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004088
Christopher Faulet67957bd2017-09-27 11:00:59 +02004089 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004090 if (!s)
4091 return 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004092 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004093 snr_update_srv_status(s, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004094 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004095 return 1;
4096}
4097
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004098/*
4099 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004100 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004101 * It returns a pointer to the first server found or NULL if <ip> is not yet
4102 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01004103 *
4104 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004105 */
4106struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
4107{
4108 struct server *tmpsrv;
4109 struct proxy *be;
4110
4111 if (!srv)
4112 return NULL;
4113
4114 be = srv->proxy;
4115 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01004116 /* we found the current server is the same, ignore it */
4117 if (srv == tmpsrv)
4118 continue;
4119
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004120 /* We want to compare the IP in the record with the IP of the servers in the
4121 * same backend, only if:
4122 * * DNS resolution is enabled on the server
4123 * * the hostname used for the resolution by our server is the same than the
4124 * one used for the server found in the backend
4125 * * the server found in the backend is not our current server
4126 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004127 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004128 if ((tmpsrv->hostname_dn == NULL) ||
4129 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
4130 (strcmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01004131 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004132 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004133 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004134 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004135
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004136 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01004137 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004138 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004139 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004140 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004141
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004142 /* At this point, we have 2 different servers using the same DNS hostname
4143 * for their respective resolution.
4144 */
4145 if (*ip_family == tmpsrv->addr.ss_family &&
4146 ((tmpsrv->addr.ss_family == AF_INET &&
4147 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
4148 (tmpsrv->addr.ss_family == AF_INET6 &&
4149 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004150 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004151 return tmpsrv;
4152 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004153 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004154 }
4155
Emeric Brune9fd6b52017-11-02 17:20:39 +01004156
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004157 return NULL;
4158}
4159
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004160/* Sets the server's address (srv->addr) from srv->hostname using the libc's
4161 * resolver. This is suited for initial address configuration. Returns 0 on
4162 * success otherwise a non-zero error code. In case of error, *err_code, if
4163 * not NULL, is filled up.
4164 */
4165int srv_set_addr_via_libc(struct server *srv, int *err_code)
4166{
4167 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004168 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01004169 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004170 return 1;
4171 }
4172 return 0;
4173}
4174
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004175/* Set the server's FDQN (->hostname) from <hostname>.
4176 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004177 *
4178 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004179 */
Emeric Brun08622d32020-12-23 17:41:43 +01004180int srv_set_fqdn(struct server *srv, const char *hostname, int resolv_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004181{
Emeric Brun08622d32020-12-23 17:41:43 +01004182 struct resolv_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004183 char *hostname_dn;
4184 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004185
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02004186 /* Note that the server lock is already held. */
4187 if (!srv->resolvers)
4188 return -1;
4189
Emeric Brun08622d32020-12-23 17:41:43 +01004190 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004191 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004192 /* run time DNS resolution was not active for this server
4193 * and we can't enable it at run time for now.
4194 */
Emeric Brun08622d32020-12-23 17:41:43 +01004195 if (!srv->resolv_requester)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004196 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004197
4198 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004199 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004200 hostname_dn = trash.area;
Emeric Brund30e9a12020-12-23 18:49:16 +01004201 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len + 1,
4202 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004203 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004204 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004205
Emeric Brun08622d32020-12-23 17:41:43 +01004206 resolution = srv->resolv_requester->resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004207 if (resolution &&
4208 resolution->hostname_dn &&
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004209 strcmp(resolution->hostname_dn, hostname_dn) == 0)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004210 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004211
Emeric Brund30e9a12020-12-23 18:49:16 +01004212 resolv_unlink_resolution(srv->resolv_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004213
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004214 free(srv->hostname);
4215 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004216 srv->hostname = strdup(hostname);
4217 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004218 srv->hostname_dn_len = hostname_dn_len;
4219 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004220 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004221
Baptiste Assmann13a92322019-06-07 09:40:55 +02004222 if (srv->flags & SRV_F_NO_RESOLUTION)
4223 goto end;
4224
Emeric Brund30e9a12020-12-23 18:49:16 +01004225 if (resolv_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004226 goto err;
4227
4228 end:
Emeric Brun08622d32020-12-23 17:41:43 +01004229 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004230 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004231 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02004232
4233 err:
Emeric Brun08622d32020-12-23 17:41:43 +01004234 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004235 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02004236 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004237}
4238
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004239/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
4240 * from the state file. This is suited for initial address configuration.
4241 * Returns 0 on success otherwise a non-zero error code. In case of error,
4242 * *err_code, if not NULL, is filled up.
4243 */
4244static int srv_apply_lastaddr(struct server *srv, int *err_code)
4245{
4246 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
4247 if (err_code)
4248 *err_code |= ERR_WARN;
4249 return 1;
4250 }
4251 return 0;
4252}
4253
Willy Tarreau25e51522016-11-04 15:10:17 +01004254/* returns 0 if no error, otherwise a combination of ERR_* flags */
4255static int srv_iterate_initaddr(struct server *srv)
4256{
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004257 char *name = srv->hostname;
Willy Tarreau25e51522016-11-04 15:10:17 +01004258 int return_code = 0;
4259 int err_code;
4260 unsigned int methods;
4261
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004262 /* If no addr and no hostname set, get the name from the DNS SRV request */
4263 if (!name && srv->srvrq)
4264 name = srv->srvrq->name;
4265
Willy Tarreau25e51522016-11-04 15:10:17 +01004266 methods = srv->init_addr_methods;
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004267 if (!methods) {
4268 /* otherwise default to "last,libc" */
Willy Tarreau25e51522016-11-04 15:10:17 +01004269 srv_append_initaddr(&methods, SRV_IADDR_LAST);
4270 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004271 if (srv->resolvers_id) {
4272 /* dns resolution is configured, add "none" to not fail on startup */
4273 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4274 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004275 }
4276
Willy Tarreau3eed10e2016-11-07 21:03:16 +01004277 /* "-dr" : always append "none" so that server addresses resolution
4278 * failures are silently ignored, this is convenient to validate some
4279 * configs out of their environment.
4280 */
4281 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
4282 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4283
Willy Tarreau25e51522016-11-04 15:10:17 +01004284 while (methods) {
4285 err_code = 0;
4286 switch (srv_get_next_initaddr(&methods)) {
4287 case SRV_IADDR_LAST:
4288 if (!srv->lastaddr)
4289 continue;
4290 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004291 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004292 return_code |= err_code;
4293 break;
4294
4295 case SRV_IADDR_LIBC:
4296 if (!srv->hostname)
4297 continue;
4298 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004299 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004300 return_code |= err_code;
4301 break;
4302
Willy Tarreau37ebe122016-11-04 15:17:58 +01004303 case SRV_IADDR_NONE:
4304 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004305 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004306 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004307 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004308 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01004309 return return_code;
4310
Willy Tarreau4310d362016-11-02 15:05:56 +01004311 case SRV_IADDR_IP:
4312 ipcpy(&srv->init_addr, &srv->addr);
4313 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004314 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 +01004315 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau4310d362016-11-02 15:05:56 +01004316 }
Olivier Houchard4e694042017-03-14 20:01:29 +01004317 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01004318
Willy Tarreau25e51522016-11-04 15:10:17 +01004319 default: /* unhandled method */
4320 break;
4321 }
4322 }
4323
4324 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004325 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004326 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau25e51522016-11-04 15:10:17 +01004327 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01004328 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004329 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004330 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004331 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004332
4333 return_code |= ERR_ALERT | ERR_FATAL;
4334 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01004335out:
4336 srv_set_dyncookie(srv);
Thayne McCombs92149f92020-11-20 01:28:26 -07004337 srv_set_addr_desc(srv);
Olivier Houchard4e694042017-03-14 20:01:29 +01004338 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01004339}
4340
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004341/*
4342 * This function parses all backends and all servers within each backend
4343 * and performs servers' addr resolution based on information provided by:
4344 * - configuration file
4345 * - server-state file (states provided by an 'old' haproxy process)
4346 *
4347 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
4348 */
4349int srv_init_addr(void)
4350{
4351 struct proxy *curproxy;
4352 int return_code = 0;
4353
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004354 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004355 while (curproxy) {
4356 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004357
4358 /* servers are in backend only */
Amaury Denoyellee3c41922021-01-06 14:28:50 +01004359 if (!(curproxy->cap & PR_CAP_BE) || curproxy->disabled)
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004360 goto srv_init_addr_next;
4361
Willy Tarreau25e51522016-11-04 15:10:17 +01004362 for (srv = curproxy->srv; srv; srv = srv->next)
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004363 if (srv->hostname || srv->srvrq)
Willy Tarreau3d609a72017-09-06 14:22:45 +02004364 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004365
4366 srv_init_addr_next:
4367 curproxy = curproxy->next;
4368 }
4369
4370 return return_code;
4371}
4372
Willy Tarreau46b7f532018-08-21 11:54:26 +02004373/*
4374 * Must be called with the server lock held.
4375 */
Emeric Brun08622d32020-12-23 17:41:43 +01004376const char *update_server_fqdn(struct server *server, const char *fqdn, const char *updater, int resolv_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004377{
4378
Willy Tarreau83061a82018-07-13 11:56:34 +02004379 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004380
4381 msg = get_trash_chunk();
4382 chunk_reset(msg);
4383
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004384 if (server->hostname && strcmp(fqdn, server->hostname) == 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004385 chunk_appendf(msg, "no need to change the FDQN");
4386 goto out;
4387 }
4388
4389 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4390 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4391 goto out;
4392 }
4393
4394 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4395 server->proxy->id, server->id, server->hostname, fqdn);
4396
Emeric Brun08622d32020-12-23 17:41:43 +01004397 if (srv_set_fqdn(server, fqdn, resolv_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004398 chunk_reset(msg);
4399 chunk_appendf(msg, "could not update %s/%s FQDN",
4400 server->proxy->id, server->id);
4401 goto out;
4402 }
4403
4404 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004405 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004406
4407 out:
4408 if (updater)
4409 chunk_appendf(msg, " by '%s'", updater);
4410 chunk_appendf(msg, "\n");
4411
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004412 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004413}
4414
4415
Willy Tarreau21b069d2016-11-23 17:15:08 +01004416/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4417 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004418 * 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 +01004419 * used for CLI commands requiring a server name.
4420 * Important: the <arg> is modified to remove the '/'.
4421 */
4422struct server *cli_find_server(struct appctx *appctx, char *arg)
4423{
4424 struct proxy *px;
4425 struct server *sv;
4426 char *line;
4427
4428 /* split "backend/server" and make <line> point to server */
4429 for (line = arg; *line; line++)
4430 if (*line == '/') {
4431 *line++ = '\0';
4432 break;
4433 }
4434
4435 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004436 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004437 return NULL;
4438 }
4439
4440 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004441 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004442 return NULL;
4443 }
4444
Willy Tarreauc3914d42020-09-24 08:39:22 +02004445 if (px->disabled) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004446 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004447 return NULL;
4448 }
4449
4450 return sv;
4451}
4452
William Lallemand222baf22016-11-19 02:00:33 +01004453
Willy Tarreau46b7f532018-08-21 11:54:26 +02004454/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004455static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004456{
4457 struct server *sv;
4458 const char *warning;
4459
4460 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4461 return 1;
4462
4463 sv = cli_find_server(appctx, args[2]);
4464 if (!sv)
4465 return 1;
4466
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004467 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02004468
William Lallemand222baf22016-11-19 02:00:33 +01004469 if (strcmp(args[3], "weight") == 0) {
4470 warning = server_parse_weight_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004471 if (warning)
4472 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004473 }
4474 else if (strcmp(args[3], "state") == 0) {
4475 if (strcmp(args[4], "ready") == 0)
4476 srv_adm_set_ready(sv);
4477 else if (strcmp(args[4], "drain") == 0)
4478 srv_adm_set_drain(sv);
4479 else if (strcmp(args[4], "maint") == 0)
4480 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02004481 else
4482 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004483 }
4484 else if (strcmp(args[3], "health") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004485 if (sv->track)
4486 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004487 else if (strcmp(args[4], "up") == 0) {
4488 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004489 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004490 }
4491 else if (strcmp(args[4], "stopping") == 0) {
4492 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004493 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004494 }
4495 else if (strcmp(args[4], "down") == 0) {
4496 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004497 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004498 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004499 else
4500 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004501 }
4502 else if (strcmp(args[3], "agent") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004503 if (!(sv->agent.state & CHK_ST_ENABLED))
4504 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004505 else if (strcmp(args[4], "up") == 0) {
4506 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004507 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004508 }
4509 else if (strcmp(args[4], "down") == 0) {
4510 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004511 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004512 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004513 else
4514 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004515 }
Misiek2da082d2017-01-09 09:40:42 +01004516 else if (strcmp(args[3], "agent-addr") == 0) {
William Dauchy7cabc062021-02-11 22:51:24 +01004517 char *addr = NULL;
4518 char *port = NULL;
4519 if (strlen(args[4]) == 0) {
4520 cli_err(appctx, "set server <b>/<s> agent-addr requires"
4521 " an address and optionally a port.\n");
4522 goto out_unlock;
4523 }
4524 addr = args[4];
4525 if (strcmp(args[5], "port") == 0)
4526 port = args[6];
4527 warning = update_server_agent_addr_port(sv, addr, port);
4528 if (warning)
4529 cli_msg(appctx, LOG_WARNING, warning);
4530 }
4531 else if (strcmp(args[3], "agent-port") == 0) {
4532 char *port = NULL;
4533 if (strlen(args[4]) == 0) {
4534 cli_err(appctx, "set server <b>/<s> agent-port requires"
4535 " a port.\n");
4536 goto out_unlock;
4537 }
4538 port = args[4];
4539 warning = update_server_agent_addr_port(sv, NULL, port);
4540 if (warning)
4541 cli_msg(appctx, LOG_WARNING, warning);
Misiek2da082d2017-01-09 09:40:42 +01004542 }
4543 else if (strcmp(args[3], "agent-send") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004544 if (!(sv->agent.state & CHK_ST_ENABLED))
4545 cli_err(appctx, "agent checks are not enabled on this server.\n");
4546 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004547 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004548 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004549 }
4550 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004551 else if (strcmp(args[3], "check-addr") == 0) {
4552 char *addr = NULL;
4553 char *port = NULL;
4554 if (strlen(args[4]) == 0) {
4555 cli_err(appctx, "set server <b>/<s> check-addr requires"
4556 " an address and optionally a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004557 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004558 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004559 addr = args[4];
4560 if (strcmp(args[5], "port") == 0)
4561 port = args[6];
4562 warning = update_server_check_addr_port(sv, addr, port);
4563 if (warning)
4564 cli_msg(appctx, LOG_WARNING, warning);
4565 }
4566 else if (strcmp(args[3], "check-port") == 0) {
4567 char *port = NULL;
4568 if (strlen(args[4]) == 0) {
4569 cli_err(appctx, "set server <b>/<s> check-port requires"
4570 " a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004571 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004572 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004573 port = args[4];
4574 warning = update_server_check_addr_port(sv, NULL, port);
4575 if (warning)
4576 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004577 }
4578 else if (strcmp(args[3], "addr") == 0) {
4579 char *addr = NULL;
4580 char *port = NULL;
4581 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004582 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004583 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004584 }
4585 else {
4586 addr = args[4];
4587 }
4588 if (strcmp(args[5], "port") == 0) {
4589 port = args[6];
4590 }
4591 warning = update_server_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004592 if (warning)
4593 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004594 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
4595 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004596 else if (strcmp(args[3], "fqdn") == 0) {
4597 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004598 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004599 goto out_unlock;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004600 }
Baptiste Assmann13a92322019-06-07 09:40:55 +02004601 /* ensure runtime resolver will process this new fqdn */
4602 if (sv->flags & SRV_F_NO_RESOLUTION) {
4603 sv->flags &= ~SRV_F_NO_RESOLUTION;
4604 }
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004605 warning = update_server_fqdn(sv, args[4], "stats socket command", 0);
Willy Tarreau9d008692019-08-09 11:21:01 +02004606 if (warning)
4607 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004608 }
William Dauchyf6370442020-11-14 19:25:33 +01004609 else if (strcmp(args[3], "ssl") == 0) {
4610#ifdef USE_OPENSSL
4611 if (sv->ssl_ctx.ctx == NULL) {
4612 cli_err(appctx, "'set server <srv> ssl' cannot be set. "
4613 " default-server should define ssl settings\n");
4614 goto out_unlock;
4615 } else if (strcmp(args[4], "on") == 0) {
4616 ssl_sock_set_srv(sv, 1);
4617 } else if (strcmp(args[4], "off") == 0) {
4618 ssl_sock_set_srv(sv, 0);
4619 } else {
4620 cli_err(appctx, "'set server <srv> ssl' expects 'on' or 'off'.\n");
4621 goto out_unlock;
4622 }
4623 srv_cleanup_connections(sv);
4624 cli_msg(appctx, LOG_NOTICE, "server ssl setting updated.\n");
4625#else
4626 cli_msg(appctx, LOG_NOTICE, "server ssl setting not supported.\n");
4627#endif
4628 } else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004629 cli_err(appctx,
William Dauchy3f4ec7d2021-02-15 17:22:16 +01004630 "usage: set server <backend>/<server> "
4631 "addr | agent | agent-addr | agent-port | agent-send | "
4632 "check-addr | check-port | fqdn | health | ssl | "
4633 "state | weight\n");
William Lallemand222baf22016-11-19 02:00:33 +01004634 }
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004635 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004636 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004637 return 1;
4638}
4639
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004640static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004641{
4642 struct stream_interface *si = appctx->owner;
4643 struct proxy *px;
4644 struct server *sv;
4645 char *line;
4646
4647
4648 /* split "backend/server" and make <line> point to server */
4649 for (line = args[2]; *line; line++)
4650 if (*line == '/') {
4651 *line++ = '\0';
4652 break;
4653 }
4654
Willy Tarreau9d008692019-08-09 11:21:01 +02004655 if (!*line)
4656 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004657
Willy Tarreau9d008692019-08-09 11:21:01 +02004658 if (!get_backend_server(args[2], line, &px, &sv))
4659 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004660
4661 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004662 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4663 sv->iweight);
4664 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004665 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004666 return 0;
4667 }
William Lallemand6b160942016-11-22 12:34:35 +01004668 return 1;
4669}
4670
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004671/* Parse a "set weight" command.
4672 *
4673 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004674 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004675static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004676{
4677 struct server *sv;
4678 const char *warning;
4679
4680 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4681 return 1;
4682
4683 sv = cli_find_server(appctx, args[2]);
4684 if (!sv)
4685 return 1;
4686
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004687 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4688
William Lallemand6b160942016-11-22 12:34:35 +01004689 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004690 if (warning)
4691 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004692
4693 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4694
William Lallemand6b160942016-11-22 12:34:35 +01004695 return 1;
4696}
4697
Willy Tarreau46b7f532018-08-21 11:54:26 +02004698/* parse a "set maxconn 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_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004703{
4704 struct server *sv;
4705 const char *warning;
4706
4707 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4708 return 1;
4709
4710 sv = cli_find_server(appctx, args[3]);
4711 if (!sv)
4712 return 1;
4713
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004714 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4715
Willy Tarreaub8026272016-11-23 11:26:56 +01004716 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004717 if (warning)
4718 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004719
4720 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4721
Willy Tarreaub8026272016-11-23 11:26:56 +01004722 return 1;
4723}
William Lallemand6b160942016-11-22 12:34:35 +01004724
Willy Tarreau46b7f532018-08-21 11:54:26 +02004725/* parse a "disable agent" command. It always returns 1.
4726 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004727 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004728 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004729static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004730{
4731 struct server *sv;
4732
4733 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4734 return 1;
4735
4736 sv = cli_find_server(appctx, args[2]);
4737 if (!sv)
4738 return 1;
4739
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004740 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004741 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004742 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004743 return 1;
4744}
4745
Willy Tarreau46b7f532018-08-21 11:54:26 +02004746/* parse a "disable health" command. It always returns 1.
4747 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004748 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004749 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004750static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004751{
4752 struct server *sv;
4753
4754 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4755 return 1;
4756
4757 sv = cli_find_server(appctx, args[2]);
4758 if (!sv)
4759 return 1;
4760
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004761 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004762 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004763 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004764 return 1;
4765}
4766
Willy Tarreau46b7f532018-08-21 11:54:26 +02004767/* parse a "disable server" command. It always returns 1.
4768 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004769 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004770 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004771static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004772{
4773 struct server *sv;
4774
4775 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4776 return 1;
4777
4778 sv = cli_find_server(appctx, args[2]);
4779 if (!sv)
4780 return 1;
4781
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004782 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004783 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004784 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004785 return 1;
4786}
4787
Willy Tarreau46b7f532018-08-21 11:54:26 +02004788/* parse a "enable agent" command. It always returns 1.
4789 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004790 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004791 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004792static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004793{
4794 struct server *sv;
4795
4796 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4797 return 1;
4798
4799 sv = cli_find_server(appctx, args[2]);
4800 if (!sv)
4801 return 1;
4802
Willy Tarreau9d008692019-08-09 11:21:01 +02004803 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4804 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004805
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004806 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004807 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004808 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004809 return 1;
4810}
4811
Willy Tarreau46b7f532018-08-21 11:54:26 +02004812/* parse a "enable health" command. It always returns 1.
4813 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004814 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004815 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004816static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004817{
4818 struct server *sv;
4819
4820 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4821 return 1;
4822
4823 sv = cli_find_server(appctx, args[2]);
4824 if (!sv)
4825 return 1;
4826
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004827 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004828 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004829 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004830 return 1;
4831}
4832
Willy Tarreau46b7f532018-08-21 11:54:26 +02004833/* parse a "enable server" command. It always returns 1.
4834 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004835 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004836 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004837static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004838{
4839 struct server *sv;
4840
4841 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4842 return 1;
4843
4844 sv = cli_find_server(appctx, args[2]);
4845 if (!sv)
4846 return 1;
4847
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004848 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004849 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004850 if (!(sv->flags & SRV_F_COOKIESET)
4851 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4852 sv->cookie)
4853 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004854 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004855 return 1;
4856}
4857
William Lallemand222baf22016-11-19 02:00:33 +01004858/* register cli keywords */
4859static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004860 { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004861 { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004862 { { "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 +01004863 { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004864 { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004865 { { "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 +01004866 { { "set", "maxconn", "server", NULL }, "set maxconn server : change a server's maxconn setting", cli_parse_set_maxconn_server, NULL },
William Dauchyf6370442020-11-14 19:25:33 +01004867 { { "set", "server", NULL }, "set server : change a server's state, weight, address or ssl", cli_parse_set_server },
William Lallemand6b160942016-11-22 12:34:35 +01004868 { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight },
4869 { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight },
4870
William Lallemand222baf22016-11-19 02:00:33 +01004871 {{},}
4872}};
4873
Willy Tarreau0108d902018-11-25 19:14:37 +01004874INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004875
Emeric Brun64cc49c2017-10-03 14:46:45 +02004876/*
4877 * This function applies server's status changes, it is
4878 * is designed to be called asynchronously.
4879 *
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004880 * Must be called with the server lock held. This may also be called at init
4881 * time as the result of parsing the state file, in which case no lock will be
4882 * held, and the server's warmup task can be null.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004883 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004884static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004885{
4886 struct check *check = &s->check;
4887 int xferred;
4888 struct proxy *px = s->proxy;
4889 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4890 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4891 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004892 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004893
Emeric Brun64cc49c2017-10-03 14:46:45 +02004894 /* If currently main is not set we try to apply pending state changes */
4895 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4896 int next_admin;
4897
4898 /* Backup next admin */
4899 next_admin = s->next_admin;
4900
4901 /* restore current admin state */
4902 s->next_admin = s->cur_admin;
4903
4904 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4905 s->last_change = now.tv_sec;
4906 if (s->proxy->lbprm.set_server_status_down)
4907 s->proxy->lbprm.set_server_status_down(s);
4908
4909 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4910 srv_shutdown_streams(s, SF_ERR_DOWN);
4911
4912 /* we might have streams queued on this server and waiting for
4913 * a connection. Those which are redispatchable will be queued
4914 * to another server or to the proxy itself.
4915 */
4916 xferred = pendconn_redistribute(s);
4917
4918 tmptrash = alloc_trash_chunk();
4919 if (tmptrash) {
4920 chunk_printf(tmptrash,
4921 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4922 s->proxy->id, s->id);
4923
Emeric Brun5a133512017-10-19 14:42:30 +02004924 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004925 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004926
4927 /* we don't send an alert if the server was previously paused */
4928 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004929 send_log(s->proxy, log_level, "%s.\n",
4930 tmptrash->area);
4931 send_email_alert(s, log_level, "%s",
4932 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004933 free_trash_chunk(tmptrash);
4934 tmptrash = NULL;
4935 }
4936 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4937 set_backend_down(s->proxy);
4938
4939 s->counters.down_trans++;
4940 }
4941 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4942 s->last_change = now.tv_sec;
4943 if (s->proxy->lbprm.set_server_status_down)
4944 s->proxy->lbprm.set_server_status_down(s);
4945
4946 /* we might have streams queued on this server and waiting for
4947 * a connection. Those which are redispatchable will be queued
4948 * to another server or to the proxy itself.
4949 */
4950 xferred = pendconn_redistribute(s);
4951
4952 tmptrash = alloc_trash_chunk();
4953 if (tmptrash) {
4954 chunk_printf(tmptrash,
4955 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4956 s->proxy->id, s->id);
4957
Emeric Brun5a133512017-10-19 14:42:30 +02004958 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004959
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004960 ha_warning("%s.\n", tmptrash->area);
4961 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4962 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004963 free_trash_chunk(tmptrash);
4964 tmptrash = NULL;
4965 }
4966
4967 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4968 set_backend_down(s->proxy);
4969 }
4970 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4971 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4972 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4973 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4974 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4975 s->proxy->last_change = now.tv_sec;
4976 }
4977
Amaury Denoyellefe2bf092020-10-29 15:59:04 +01004978 if (s->cur_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
Emeric Brun64cc49c2017-10-03 14:46:45 +02004979 s->down_time += now.tv_sec - s->last_change;
4980
4981 s->last_change = now.tv_sec;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004982 if (s->next_state == SRV_ST_STARTING && s->warmup)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004983 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4984
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004985 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004986 /* now propagate the status change to any LB algorithms */
4987 if (px->lbprm.update_server_eweight)
4988 px->lbprm.update_server_eweight(s);
4989 else if (srv_willbe_usable(s)) {
4990 if (px->lbprm.set_server_status_up)
4991 px->lbprm.set_server_status_up(s);
4992 }
4993 else {
4994 if (px->lbprm.set_server_status_down)
4995 px->lbprm.set_server_status_down(s);
4996 }
4997
4998 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4999 * and it's not a backup server and its effective weight is > 0,
5000 * then it can accept new connections, so we shut down all streams
5001 * on all backup servers.
5002 */
5003 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5004 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5005 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5006
5007 /* check if we can handle some connections queued at the proxy. We
5008 * will take as many as we can handle.
5009 */
5010 xferred = pendconn_grab_from_px(s);
5011
5012 tmptrash = alloc_trash_chunk();
5013 if (tmptrash) {
5014 chunk_printf(tmptrash,
5015 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
5016 s->proxy->id, s->id);
5017
Emeric Brun5a133512017-10-19 14:42:30 +02005018 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005019 ha_warning("%s.\n", tmptrash->area);
5020 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5021 tmptrash->area);
5022 send_email_alert(s, LOG_NOTICE, "%s",
5023 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005024 free_trash_chunk(tmptrash);
5025 tmptrash = NULL;
5026 }
5027
5028 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5029 set_backend_down(s->proxy);
5030 }
5031 else if (s->cur_eweight != s->next_eweight) {
5032 /* now propagate the status change to any LB algorithms */
5033 if (px->lbprm.update_server_eweight)
5034 px->lbprm.update_server_eweight(s);
5035 else if (srv_willbe_usable(s)) {
5036 if (px->lbprm.set_server_status_up)
5037 px->lbprm.set_server_status_up(s);
5038 }
5039 else {
5040 if (px->lbprm.set_server_status_down)
5041 px->lbprm.set_server_status_down(s);
5042 }
5043
5044 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5045 set_backend_down(s->proxy);
5046 }
5047
5048 s->next_admin = next_admin;
5049 }
5050
Emeric Brun5a133512017-10-19 14:42:30 +02005051 /* reset operational state change */
5052 *s->op_st_chg.reason = 0;
5053 s->op_st_chg.status = s->op_st_chg.code = -1;
5054 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005055
5056 /* Now we try to apply pending admin changes */
5057
5058 /* Maintenance must also disable health checks */
5059 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
5060 if (s->check.state & CHK_ST_ENABLED) {
5061 s->check.state |= CHK_ST_PAUSED;
5062 check->health = 0;
5063 }
5064
5065 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02005066 tmptrash = alloc_trash_chunk();
5067 if (tmptrash) {
5068 chunk_printf(tmptrash,
5069 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
5070 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5071 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02005072
Olivier Houchard796a2b32017-10-24 17:42:47 +02005073 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02005074
Olivier Houchard796a2b32017-10-24 17:42:47 +02005075 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005076 ha_warning("%s.\n", tmptrash->area);
5077 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5078 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02005079 }
5080 free_trash_chunk(tmptrash);
5081 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005082 }
Emeric Brun8f298292017-12-06 16:47:17 +01005083 /* commit new admin status */
5084
5085 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005086 }
5087 else { /* server was still running */
5088 check->health = 0; /* failure */
5089 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01005090
5091 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005092 if (s->proxy->lbprm.set_server_status_down)
5093 s->proxy->lbprm.set_server_status_down(s);
5094
Emeric Brun64cc49c2017-10-03 14:46:45 +02005095 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
5096 srv_shutdown_streams(s, SF_ERR_DOWN);
5097
William Dauchy6318d332020-05-02 21:52:36 +02005098 /* force connection cleanup on the given server */
5099 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005100 /* we might have streams queued on this server and waiting for
5101 * a connection. Those which are redispatchable will be queued
5102 * to another server or to the proxy itself.
5103 */
5104 xferred = pendconn_redistribute(s);
5105
5106 tmptrash = alloc_trash_chunk();
5107 if (tmptrash) {
5108 chunk_printf(tmptrash,
5109 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
5110 s->flags & SRV_F_BACKUP ? "Backup " : "",
5111 s->proxy->id, s->id,
5112 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5113
5114 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
5115
5116 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005117 ha_warning("%s.\n", tmptrash->area);
5118 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
5119 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005120 }
5121 free_trash_chunk(tmptrash);
5122 tmptrash = NULL;
5123 }
5124 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5125 set_backend_down(s->proxy);
5126
5127 s->counters.down_trans++;
5128 }
5129 }
5130 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
5131 /* OK here we're leaving maintenance, we have many things to check,
5132 * because the server might possibly be coming back up depending on
5133 * its state. In practice, leaving maintenance means that we should
5134 * immediately turn to UP (more or less the slowstart) under the
5135 * following conditions :
5136 * - server is neither checked nor tracked
5137 * - server tracks another server which is not checked
5138 * - server tracks another server which is already up
5139 * Which sums up as something simpler :
5140 * "either the tracking server is up or the server's checks are disabled
5141 * or up". Otherwise we only re-enable health checks. There's a special
5142 * case associated to the stopping state which can be inherited. Note
5143 * that the server might still be in drain mode, which is naturally dealt
5144 * with by the lower level functions.
5145 */
5146
5147 if (s->check.state & CHK_ST_ENABLED) {
5148 s->check.state &= ~CHK_ST_PAUSED;
5149 check->health = check->rise; /* start OK but check immediately */
5150 }
5151
5152 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
5153 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
5154 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
5155 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
5156 s->next_state = SRV_ST_STOPPING;
5157 }
5158 else {
5159 s->next_state = SRV_ST_STARTING;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005160 if (s->slowstart > 0) {
5161 if (s->warmup)
5162 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5163 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005164 else
5165 s->next_state = SRV_ST_RUNNING;
5166 }
5167
5168 }
5169
5170 tmptrash = alloc_trash_chunk();
5171 if (tmptrash) {
5172 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5173 chunk_printf(tmptrash,
5174 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
5175 s->flags & SRV_F_BACKUP ? "Backup " : "",
5176 s->proxy->id, s->id,
5177 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5178 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5179 }
5180 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5181 chunk_printf(tmptrash,
5182 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
5183 s->flags & SRV_F_BACKUP ? "Backup " : "",
5184 s->proxy->id, s->id, s->hostname,
5185 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5186 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5187 }
5188 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5189 chunk_printf(tmptrash,
5190 "%sServer %s/%s is %s/%s (leaving maintenance)",
5191 s->flags & SRV_F_BACKUP ? "Backup " : "",
5192 s->proxy->id, s->id,
5193 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5194 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5195 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005196 ha_warning("%s.\n", tmptrash->area);
5197 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5198 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005199 free_trash_chunk(tmptrash);
5200 tmptrash = NULL;
5201 }
5202
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005203 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005204 /* now propagate the status change to any LB algorithms */
5205 if (px->lbprm.update_server_eweight)
5206 px->lbprm.update_server_eweight(s);
5207 else if (srv_willbe_usable(s)) {
5208 if (px->lbprm.set_server_status_up)
5209 px->lbprm.set_server_status_up(s);
5210 }
5211 else {
5212 if (px->lbprm.set_server_status_down)
5213 px->lbprm.set_server_status_down(s);
5214 }
5215
5216 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5217 set_backend_down(s->proxy);
5218
Willy Tarreau6a78e612018-08-07 10:14:53 +02005219 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5220 * and it's not a backup server and its effective weight is > 0,
5221 * then it can accept new connections, so we shut down all streams
5222 * on all backup servers.
5223 */
5224 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5225 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5226 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5227
5228 /* check if we can handle some connections queued at the proxy. We
5229 * will take as many as we can handle.
5230 */
5231 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005232 }
5233 else if (s->next_admin & SRV_ADMF_MAINT) {
5234 /* remaining in maintenance mode, let's inform precisely about the
5235 * situation.
5236 */
5237 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5238 tmptrash = alloc_trash_chunk();
5239 if (tmptrash) {
5240 chunk_printf(tmptrash,
5241 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5242 s->flags & SRV_F_BACKUP ? "Backup " : "",
5243 s->proxy->id, s->id);
5244
5245 if (s->track) /* normally it's mandatory here */
5246 chunk_appendf(tmptrash, " via %s/%s",
5247 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005248 ha_warning("%s.\n", tmptrash->area);
5249 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5250 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005251 free_trash_chunk(tmptrash);
5252 tmptrash = NULL;
5253 }
5254 }
5255 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5256 tmptrash = alloc_trash_chunk();
5257 if (tmptrash) {
5258 chunk_printf(tmptrash,
5259 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5260 s->flags & SRV_F_BACKUP ? "Backup " : "",
5261 s->proxy->id, s->id, s->hostname);
5262
5263 if (s->track) /* normally it's mandatory here */
5264 chunk_appendf(tmptrash, " via %s/%s",
5265 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005266 ha_warning("%s.\n", tmptrash->area);
5267 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5268 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005269 free_trash_chunk(tmptrash);
5270 tmptrash = NULL;
5271 }
5272 }
5273 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5274 tmptrash = alloc_trash_chunk();
5275 if (tmptrash) {
5276 chunk_printf(tmptrash,
5277 "%sServer %s/%s remains in forced maintenance",
5278 s->flags & SRV_F_BACKUP ? "Backup " : "",
5279 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005280 ha_warning("%s.\n", tmptrash->area);
5281 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5282 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005283 free_trash_chunk(tmptrash);
5284 tmptrash = NULL;
5285 }
5286 }
5287 /* don't report anything when leaving drain mode and remaining in maintenance */
5288
5289 s->cur_admin = s->next_admin;
5290 }
5291
5292 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5293 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5294 /* drain state is applied only if not yet in maint */
5295
5296 s->last_change = now.tv_sec;
5297 if (px->lbprm.set_server_status_down)
5298 px->lbprm.set_server_status_down(s);
5299
5300 /* we might have streams queued on this server and waiting for
5301 * a connection. Those which are redispatchable will be queued
5302 * to another server or to the proxy itself.
5303 */
5304 xferred = pendconn_redistribute(s);
5305
5306 tmptrash = alloc_trash_chunk();
5307 if (tmptrash) {
5308 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5309 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5310 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5311
5312 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5313
5314 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005315 ha_warning("%s.\n", tmptrash->area);
5316 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5317 tmptrash->area);
5318 send_email_alert(s, LOG_NOTICE, "%s",
5319 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005320 }
5321 free_trash_chunk(tmptrash);
5322 tmptrash = NULL;
5323 }
5324
5325 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5326 set_backend_down(s->proxy);
5327 }
5328 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5329 /* OK completely leaving drain mode */
5330 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5331 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5332 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5333 s->proxy->last_change = now.tv_sec;
5334 }
5335
5336 if (s->last_change < now.tv_sec) // ignore negative times
5337 s->down_time += now.tv_sec - s->last_change;
5338 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005339 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005340
5341 tmptrash = alloc_trash_chunk();
5342 if (tmptrash) {
5343 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5344 chunk_printf(tmptrash,
5345 "%sServer %s/%s is %s (leaving forced drain)",
5346 s->flags & SRV_F_BACKUP ? "Backup " : "",
5347 s->proxy->id, s->id,
5348 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5349 }
5350 else {
5351 chunk_printf(tmptrash,
5352 "%sServer %s/%s is %s (leaving drain)",
5353 s->flags & SRV_F_BACKUP ? "Backup " : "",
5354 s->proxy->id, s->id,
5355 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5356 if (s->track) /* normally it's mandatory here */
5357 chunk_appendf(tmptrash, " via %s/%s",
5358 s->track->proxy->id, s->track->id);
5359 }
5360
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005361 ha_warning("%s.\n", tmptrash->area);
5362 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5363 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005364 free_trash_chunk(tmptrash);
5365 tmptrash = NULL;
5366 }
5367
5368 /* now propagate the status change to any LB algorithms */
5369 if (px->lbprm.update_server_eweight)
5370 px->lbprm.update_server_eweight(s);
5371 else if (srv_willbe_usable(s)) {
5372 if (px->lbprm.set_server_status_up)
5373 px->lbprm.set_server_status_up(s);
5374 }
5375 else {
5376 if (px->lbprm.set_server_status_down)
5377 px->lbprm.set_server_status_down(s);
5378 }
5379 }
5380 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5381 /* remaining in drain mode after removing one of its flags */
5382
5383 tmptrash = alloc_trash_chunk();
5384 if (tmptrash) {
5385 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5386 chunk_printf(tmptrash,
5387 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5388 s->flags & SRV_F_BACKUP ? "Backup " : "",
5389 s->proxy->id, s->id);
5390
5391 if (s->track) /* normally it's mandatory here */
5392 chunk_appendf(tmptrash, " via %s/%s",
5393 s->track->proxy->id, s->track->id);
5394 }
5395 else {
5396 chunk_printf(tmptrash,
5397 "%sServer %s/%s remains in forced drain mode",
5398 s->flags & SRV_F_BACKUP ? "Backup " : "",
5399 s->proxy->id, s->id);
5400 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005401 ha_warning("%s.\n", tmptrash->area);
5402 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5403 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005404 free_trash_chunk(tmptrash);
5405 tmptrash = NULL;
5406 }
5407
5408 /* commit new admin status */
5409
5410 s->cur_admin = s->next_admin;
5411 }
5412 }
5413
5414 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005415 *s->adm_st_chg_cause = 0;
5416}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005417
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005418struct task *srv_cleanup_toremove_connections(struct task *task, void *context, unsigned short state)
5419{
5420 struct connection *conn;
5421
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005422 while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns,
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005423 struct connection *, toremove_list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005424 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005425 }
5426
5427 return task;
5428}
5429
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005430/* Move toremove_nb connections from idle_tree to toremove_list, -1 means
Olivier Houchardff1d0922020-06-29 20:15:59 +02005431 * moving them all.
5432 * Returns the number of connections moved.
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005433 *
5434 * Must be called with idle_conns_lock held.
Olivier Houchardff1d0922020-06-29 20:15:59 +02005435 */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005436static int srv_migrate_conns_to_remove(struct eb_root *idle_tree, struct mt_list *toremove_list, int toremove_nb)
Olivier Houchardff1d0922020-06-29 20:15:59 +02005437{
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005438 struct eb_node *node, *next;
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005439 struct conn_hash_node *hash_node;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005440 int i = 0;
5441
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005442 node = eb_first(idle_tree);
5443 while (node) {
5444 next = eb_next(node);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005445 if (toremove_nb != -1 && i >= toremove_nb)
5446 break;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005447
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005448 hash_node = ebmb_entry(node, struct conn_hash_node, node);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005449 eb_delete(node);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005450 MT_LIST_ADDQ(toremove_list, &hash_node->conn->toremove_list);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005451 i++;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005452
5453 node = next;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005454 }
5455 return i;
5456}
William Dauchy6318d332020-05-02 21:52:36 +02005457/* cleanup connections for a given server
5458 * might be useful when going on forced maintenance or live changing ip/port
5459 */
William Dauchy707ad322020-05-04 13:52:40 +02005460static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005461{
William Dauchy6318d332020-05-02 21:52:36 +02005462 int did_remove;
5463 int i;
William Dauchy6318d332020-05-02 21:52:36 +02005464
Amaury Denoyelle10d5c312021-01-06 14:28:51 +01005465 /* nothing to do if pool-max-conn is null */
5466 if (!srv->max_idle_conns)
5467 return;
5468
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005469 /* check all threads starting with ours */
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005470 for (i = tid;;) {
William Dauchy6318d332020-05-02 21:52:36 +02005471 did_remove = 0;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005472 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005473 if (srv_migrate_conns_to_remove(&srv->idle_conns_tree[i], &idle_conns[i].toremove_conns, -1) > 0)
William Dauchy6318d332020-05-02 21:52:36 +02005474 did_remove = 1;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005475 if (srv_migrate_conns_to_remove(&srv->safe_conns_tree[i], &idle_conns[i].toremove_conns, -1) > 0)
Olivier Houchardff1d0922020-06-29 20:15:59 +02005476 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005477 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
William Dauchy6318d332020-05-02 21:52:36 +02005478 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005479 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005480
5481 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5482 break;
William Dauchy6318d332020-05-02 21:52:36 +02005483 }
William Dauchy6318d332020-05-02 21:52:36 +02005484}
5485
Willy Tarreau980855b2019-02-07 14:59:29 +01005486struct task *srv_cleanup_idle_connections(struct task *task, void *context, unsigned short state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005487{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005488 struct server *srv;
5489 struct eb32_node *eb;
5490 int i;
5491 unsigned int next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005492
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005493 next_wakeup = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005494 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5495 while (1) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005496 int exceed_conns;
5497 int to_kill;
5498 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005499
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005500 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5501 if (!eb) {
5502 /* we might have reached the end of the tree, typically because
5503 * <now_ms> is in the first half and we're first scanning the last
5504 * half. Let's loop back to the beginning of the tree now.
5505 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005506
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005507 eb = eb32_first(&idle_conn_srv);
5508 if (likely(!eb))
5509 break;
5510 }
5511 if (tick_is_lt(now_ms, eb->key)) {
5512 /* timer not expired yet, revisit it later */
5513 next_wakeup = eb->key;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005514 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005515 }
5516 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005517
5518 /* Calculate how many idle connections we want to kill :
5519 * we want to remove half the difference between the total
5520 * of established connections (used or idle) and the max
5521 * number of used connections.
5522 */
5523 curr_idle = srv->curr_idle_conns;
5524 if (curr_idle == 0)
5525 goto remove;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005526 exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005527 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005528
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005529 srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns) / 2;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005530 if (srv->est_need_conns < srv->max_used_conns)
5531 srv->est_need_conns = srv->max_used_conns;
5532
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005533 srv->max_used_conns = srv->curr_used_conns;
5534
Willy Tarreau18ed7892020-07-02 19:05:30 +02005535 if (exceed_conns <= 0)
5536 goto remove;
5537
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005538 /* check all threads starting with ours */
5539 for (i = tid;;) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005540 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005541 int j;
5542 int did_remove = 0;
5543
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005544 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5545 curr_idle + 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005546
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005547 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005548 j = srv_migrate_conns_to_remove(&srv->idle_conns_tree[i], &idle_conns[i].toremove_conns, max_conn);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005549 if (j > 0)
5550 did_remove = 1;
5551 if (max_conn - j > 0 &&
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005552 srv_migrate_conns_to_remove(&srv->safe_conns_tree[i], &idle_conns[i].toremove_conns, max_conn - j) > 0)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005553 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005554 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005555
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005556 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005557 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005558
5559 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5560 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005561 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005562remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005563 eb32_delete(&srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005564
5565 if (srv->curr_idle_conns) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005566 /* There are still more idle connections, add the
5567 * server back in the tree.
5568 */
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005569 srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005570 eb32_insert(&idle_conn_srv, &srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005571 next_wakeup = tick_first(next_wakeup, srv->idle_node.key);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005572 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005573 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005574 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5575
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005576 task->expire = next_wakeup;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005577 return task;
5578}
Olivier Houchard88698d92019-04-16 19:07:22 +02005579
Willy Tarreau76cc6992020-07-01 18:49:24 +02005580/* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */
5581static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx,
5582 struct proxy *defpx, const char *file, int line,
5583 char **err)
5584{
5585 if (too_many_args(1, args, err, NULL))
5586 return -1;
5587
5588 if (strcmp(args[1], "on") == 0)
5589 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
5590 else if (strcmp(args[1], "off") == 0)
5591 global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
5592 else {
5593 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
5594 return -1;
5595 }
5596 return 0;
5597}
5598
Olivier Houchard88698d92019-04-16 19:07:22 +02005599/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5600static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
5601 struct proxy *defpx, const char *file, int line,
5602 char **err)
5603{
5604 int arg = -1;
5605
5606 if (too_many_args(1, args, err, NULL))
5607 return -1;
5608
5609 if (*(args[1]) != 0)
5610 arg = atoi(args[1]);
5611
5612 if (arg < 0 || arg > 100) {
5613 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5614 return -1;
5615 }
5616
5617 if (args[0][10] == 'h')
5618 global.tune.pool_high_ratio = arg;
5619 else
5620 global.tune.pool_low_ratio = arg;
5621 return 0;
5622}
5623
5624/* config keyword parsers */
5625static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau76cc6992020-07-01 18:49:24 +02005626 { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared },
Olivier Houchard88698d92019-04-16 19:07:22 +02005627 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5628 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5629 { 0, NULL, NULL }
5630}};
5631
5632INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5633
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005634/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005635 * Local variables:
5636 * c-indent-level: 8
5637 * c-basic-offset: 8
5638 * End:
5639 */