blob: 84b66f734ca458db5dd96fda43b8a99fd48952a3 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Server management functions.
3 *
Willy Tarreau21faa912012-10-10 08:27:36 +02004 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01005 * Copyright 2007-2008 Krzysztof Piotr Oledzki <ole@ans.pl>
Willy Tarreaubaaee002006-06-26 02:48:02 +02006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
Willy Tarreau0a4b0ab2020-06-11 11:22:44 +020014#include <sys/types.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020015#include <netinet/tcp.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020016#include <ctype.h>
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020017#include <errno.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020018
Willy Tarreaub2551052020-06-09 09:07:15 +020019#include <import/ebsttree.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020020#include <import/xxhash.h>
21
Willy Tarreaub2551052020-06-09 09:07:15 +020022#include <haproxy/api.h>
Willy Tarreau3f0f82e2020-06-04 19:42:41 +020023#include <haproxy/applet-t.h>
Willy Tarreau49801602020-06-04 22:50:02 +020024#include <haproxy/backend.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020025#include <haproxy/cfgparse.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020026#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020027#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020028#include <haproxy/connection.h>
Willy Tarreau3afc4c42020-06-03 18:23:19 +020029#include <haproxy/dict-t.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020030#include <haproxy/dns.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020031#include <haproxy/errors.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020032#include <haproxy/global.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020033#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020034#include <haproxy/mailers.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +020035#include <haproxy/namespace.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020036#include <haproxy/port_range.h>
37#include <haproxy/protocol.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020038#include <haproxy/queue.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020039#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020040#include <haproxy/server.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020041#include <haproxy/stats-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020042#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020043#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020044#include <haproxy/task.h>
Willy Tarreau51cd5952020-06-05 12:25:38 +020045#include <haproxy/tcpcheck.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020046#include <haproxy/time.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020047
Baptiste Assmannda29fe22019-06-13 13:24:29 +020048
Willy Tarreau3ff577e2018-08-02 11:48:52 +020049static void srv_update_status(struct server *s);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020050static void srv_update_state(struct server *srv, int version, char **params);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +010051static int srv_apply_lastaddr(struct server *srv, int *err_code);
Olivier Houchardd16bfe62017-10-31 15:21:19 +010052static int srv_set_fqdn(struct server *srv, const char *fqdn, int dns_locked);
Baptiste Assmannda29fe22019-06-13 13:24:29 +020053static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params);
54static int srv_state_get_version(FILE *f);
William Dauchy6318d332020-05-02 21:52:36 +020055static void srv_cleanup_connections(struct server *srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +020056
Willy Tarreau21faa912012-10-10 08:27:36 +020057/* List head of all known server keywords */
58static struct srv_kw_list srv_keywords = {
59 .list = LIST_HEAD_INIT(srv_keywords.list)
60};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020061
Willy Tarreauaf613e82020-06-05 08:40:51 +020062__decl_thread(HA_SPINLOCK_T idle_conn_srv_lock);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010063struct eb_root idle_conn_srv = EB_ROOT;
64struct task *idle_conn_task = NULL;
Olivier Houchard9ea5d362019-02-14 18:29:09 +010065
Frédéric Lécaille7da71292019-05-20 09:47:07 +020066/* The server names dictionary */
67struct dict server_name_dict = {
68 .name = "server names",
69 .values = EB_ROOT_UNIQUE,
70};
71
Baptiste Assmannda29fe22019-06-13 13:24:29 +020072/* tree where global state_file is loaded */
Willy Tarreaufd1aa012019-12-20 17:23:40 +010073struct eb_root state_file = EB_ROOT_UNIQUE;
Baptiste Assmannda29fe22019-06-13 13:24:29 +020074
Simon Hormana3608442013-11-01 16:46:15 +090075int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020076{
Emeric Brun52a91d32017-08-31 14:41:55 +020077 if ((s->cur_state != SRV_ST_STOPPED) && s->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020078 return s->down_time;
79
80 return now.tv_sec - s->last_change + s->down_time;
81}
Willy Tarreaubaaee002006-06-26 02:48:02 +020082
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050083int srv_lastsession(const struct server *s)
84{
85 if (s->counters.last_sess)
86 return now.tv_sec - s->counters.last_sess;
87
88 return -1;
89}
90
Simon Horman4a741432013-02-23 15:35:38 +090091int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020092{
Simon Horman4a741432013-02-23 15:35:38 +090093 const struct server *s = check->server;
94
Willy Tarreauff5ae352013-12-11 20:36:34 +010095 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +090096 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010097
Emeric Brun52a91d32017-08-31 14:41:55 +020098 if ((s->next_state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +090099 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100100
Simon Horman4a741432013-02-23 15:35:38 +0900101 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100102}
103
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100104/*
105 * Check that we did not get a hash collision.
106 * Unlikely, but it can happen.
107 */
108static inline void srv_check_for_dup_dyncookie(struct server *s)
Olivier Houchard4e694042017-03-14 20:01:29 +0100109{
110 struct proxy *p = s->proxy;
111 struct server *tmpserv;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100112
113 for (tmpserv = p->srv; tmpserv != NULL;
114 tmpserv = tmpserv->next) {
115 if (tmpserv == s)
116 continue;
117 if (tmpserv->next_admin & SRV_ADMF_FMAINT)
118 continue;
119 if (tmpserv->cookie &&
120 strcmp(tmpserv->cookie, s->cookie) == 0) {
121 ha_warning("We generated two equal cookies for two different servers.\n"
122 "Please change the secret key for '%s'.\n",
123 s->proxy->id);
124 }
125 }
126
127}
128
Willy Tarreau46b7f532018-08-21 11:54:26 +0200129/*
Willy Tarreau5e83d992019-07-30 11:59:34 +0200130 * Must be called with the server lock held, and will grab the proxy lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200131 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100132void srv_set_dyncookie(struct server *s)
133{
134 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100135 char *tmpbuf;
136 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100137 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100138 size_t buffer_len;
139 int addr_len;
140 int port;
141
Willy Tarreau5e83d992019-07-30 11:59:34 +0200142 HA_SPIN_LOCK(PROXY_LOCK, &p->lock);
143
Olivier Houchard4e694042017-03-14 20:01:29 +0100144 if ((s->flags & SRV_F_COOKIESET) ||
145 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
146 s->proxy->dyncookie_key == NULL)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200147 goto out;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100148 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100149
150 if (s->addr.ss_family != AF_INET &&
151 s->addr.ss_family != AF_INET6)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200152 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100153 /*
154 * Buffer to calculate the cookie value.
155 * The buffer contains the secret key + the server IP address
156 * + the TCP port.
157 */
158 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
159 /*
160 * The TCP port should use only 2 bytes, but is stored in
161 * an unsigned int in struct server, so let's use 4, to be
162 * on the safe side.
163 */
164 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200165 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100166 memcpy(tmpbuf, p->dyncookie_key, key_len);
167 memcpy(&(tmpbuf[key_len]),
168 s->addr.ss_family == AF_INET ?
169 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
170 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
171 addr_len);
172 /*
173 * Make sure it's the same across all the load balancers,
174 * no matter their endianness.
175 */
176 port = htonl(s->svc_port);
177 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
178 hash_value = XXH64(tmpbuf, buffer_len, 0);
179 memprintf(&s->cookie, "%016llx", hash_value);
180 if (!s->cookie)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200181 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100182 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100183
184 /* Don't bother checking if the dyncookie is duplicated if
185 * the server is marked as "disabled", maybe it doesn't have
186 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100187 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100188 if (!(s->next_admin & SRV_ADMF_FMAINT))
189 srv_check_for_dup_dyncookie(s);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200190 out:
191 HA_SPIN_UNLOCK(PROXY_LOCK, &p->lock);
Olivier Houchard4e694042017-03-14 20:01:29 +0100192}
193
Willy Tarreau21faa912012-10-10 08:27:36 +0200194/*
195 * Registers the server keyword list <kwl> as a list of valid keywords for next
196 * parsing sessions.
197 */
198void srv_register_keywords(struct srv_kw_list *kwl)
199{
200 LIST_ADDQ(&srv_keywords.list, &kwl->list);
201}
202
203/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
204 * keyword is found with a NULL ->parse() function, then an attempt is made to
205 * find one with a valid ->parse() function. This way it is possible to declare
206 * platform-dependant, known keywords as NULL, then only declare them as valid
207 * if some options are met. Note that if the requested keyword contains an
208 * opening parenthesis, everything from this point is ignored.
209 */
210struct srv_kw *srv_find_kw(const char *kw)
211{
212 int index;
213 const char *kwend;
214 struct srv_kw_list *kwl;
215 struct srv_kw *ret = NULL;
216
217 kwend = strchr(kw, '(');
218 if (!kwend)
219 kwend = kw + strlen(kw);
220
221 list_for_each_entry(kwl, &srv_keywords.list, list) {
222 for (index = 0; kwl->kw[index].kw != NULL; index++) {
223 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
224 kwl->kw[index].kw[kwend-kw] == 0) {
225 if (kwl->kw[index].parse)
226 return &kwl->kw[index]; /* found it !*/
227 else
228 ret = &kwl->kw[index]; /* may be OK */
229 }
230 }
231 }
232 return ret;
233}
234
235/* Dumps all registered "server" keywords to the <out> string pointer. The
236 * unsupported keywords are only dumped if their supported form was not
237 * found.
238 */
239void srv_dump_kws(char **out)
240{
241 struct srv_kw_list *kwl;
242 int index;
243
Christopher Faulet784063e2020-05-18 12:14:18 +0200244 if (!out)
245 return;
246
Willy Tarreau21faa912012-10-10 08:27:36 +0200247 *out = NULL;
248 list_for_each_entry(kwl, &srv_keywords.list, list) {
249 for (index = 0; kwl->kw[index].kw != NULL; index++) {
250 if (kwl->kw[index].parse ||
251 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
252 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
253 kwl->scope,
254 kwl->kw[index].kw,
255 kwl->kw[index].skip ? " <arg>" : "",
256 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
257 kwl->kw[index].parse ? "" : " (not supported)");
258 }
259 }
260 }
261}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100262
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100263/* Parse the "backup" server keyword */
264static int srv_parse_backup(char **args, int *cur_arg,
265 struct proxy *curproxy, struct server *newsrv, char **err)
266{
267 newsrv->flags |= SRV_F_BACKUP;
268 return 0;
269}
270
Alexander Liu2a54bb72019-05-22 19:44:48 +0800271
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100272/* Parse the "cookie" server keyword */
273static int srv_parse_cookie(char **args, int *cur_arg,
274 struct proxy *curproxy, struct server *newsrv, char **err)
275{
276 char *arg;
277
278 arg = args[*cur_arg + 1];
279 if (!*arg) {
280 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
281 return ERR_ALERT | ERR_FATAL;
282 }
283
284 free(newsrv->cookie);
285 newsrv->cookie = strdup(arg);
286 newsrv->cklen = strlen(arg);
287 newsrv->flags |= SRV_F_COOKIESET;
288 return 0;
289}
290
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100291/* Parse the "disabled" server keyword */
292static int srv_parse_disabled(char **args, int *cur_arg,
293 struct proxy *curproxy, struct server *newsrv, char **err)
294{
Emeric Brun52a91d32017-08-31 14:41:55 +0200295 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
296 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100297 newsrv->check.state |= CHK_ST_PAUSED;
298 newsrv->check.health = 0;
299 return 0;
300}
301
302/* Parse the "enabled" server keyword */
303static int srv_parse_enabled(char **args, int *cur_arg,
304 struct proxy *curproxy, struct server *newsrv, char **err)
305{
Emeric Brun52a91d32017-08-31 14:41:55 +0200306 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
307 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100308 newsrv->check.state &= ~CHK_ST_PAUSED;
309 newsrv->check.health = newsrv->check.rise;
310 return 0;
311}
312
Willy Tarreau9c538e02019-01-23 10:21:49 +0100313static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
314{
315 char *arg;
316
317 arg = args[*cur_arg + 1];
318 if (!*arg) {
319 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
320 return ERR_ALERT | ERR_FATAL;
321 }
322 newsrv->max_reuse = atoi(arg);
323
324 return 0;
325}
326
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100327static 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 +0100328{
329 const char *res;
330 char *arg;
331 unsigned int time;
332
333 arg = args[*cur_arg + 1];
334 if (!*arg) {
335 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
336 return ERR_ALERT | ERR_FATAL;
337 }
338 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200339 if (res == PARSE_TIME_OVER) {
340 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
341 args[*cur_arg+1], args[*cur_arg]);
342 return ERR_ALERT | ERR_FATAL;
343 }
344 else if (res == PARSE_TIME_UNDER) {
345 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
346 args[*cur_arg+1], args[*cur_arg]);
347 return ERR_ALERT | ERR_FATAL;
348 }
349 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100350 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
351 *res, args[*cur_arg]);
352 return ERR_ALERT | ERR_FATAL;
353 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100354 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100355
356 return 0;
357}
358
Willy Tarreau2f3f4d32020-07-01 07:43:51 +0200359static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
360{
361 char *arg;
362
363 arg = args[*cur_arg + 1];
364 if (!*arg) {
365 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
366 return ERR_ALERT | ERR_FATAL;
367 }
368
369 newsrv->low_idle_conns = atoi(arg);
370 return 0;
371}
372
Olivier Houchard006e3102018-12-10 18:30:32 +0100373static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
374{
375 char *arg;
376
377 arg = args[*cur_arg + 1];
378 if (!*arg) {
379 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
380 return ERR_ALERT | ERR_FATAL;
381 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100382
Olivier Houchard006e3102018-12-10 18:30:32 +0100383 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100384 if ((int)newsrv->max_idle_conns < -1) {
385 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
386 return ERR_ALERT | ERR_FATAL;
387 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100388
389 return 0;
390}
391
Willy Tarreaudff55432012-10-10 17:51:05 +0200392/* parse the "id" server keyword */
393static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
394{
395 struct eb32_node *node;
396
397 if (!*args[*cur_arg + 1]) {
398 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
399 return ERR_ALERT | ERR_FATAL;
400 }
401
402 newsrv->puid = atol(args[*cur_arg + 1]);
403 newsrv->conf.id.key = newsrv->puid;
404
405 if (newsrv->puid <= 0) {
406 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
407 return ERR_ALERT | ERR_FATAL;
408 }
409
410 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
411 if (node) {
412 struct server *target = container_of(node, struct server, conf.id);
413 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
414 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
415 target->id);
416 return ERR_ALERT | ERR_FATAL;
417 }
418
419 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200420 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200421 return 0;
422}
423
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100424/* Parse the "namespace" server keyword */
425static int srv_parse_namespace(char **args, int *cur_arg,
426 struct proxy *curproxy, struct server *newsrv, char **err)
427{
Willy Tarreaue5733232019-05-22 19:24:06 +0200428#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100429 char *arg;
430
431 arg = args[*cur_arg + 1];
432 if (!*arg) {
433 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
434 return ERR_ALERT | ERR_FATAL;
435 }
436
437 if (!strcmp(arg, "*")) {
438 /* Use the namespace associated with the connection (if present). */
439 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
440 return 0;
441 }
442
443 /*
444 * As this parser may be called several times for the same 'default-server'
445 * object, or for a new 'server' instance deriving from a 'default-server'
446 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
447 */
448 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
449
450 newsrv->netns = netns_store_lookup(arg, strlen(arg));
451 if (!newsrv->netns)
452 newsrv->netns = netns_store_insert(arg);
453
454 if (!newsrv->netns) {
455 memprintf(err, "Cannot open namespace '%s'", arg);
456 return ERR_ALERT | ERR_FATAL;
457 }
458
459 return 0;
460#else
461 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
462 return ERR_ALERT | ERR_FATAL;
463#endif
464}
465
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100466/* Parse the "no-backup" server keyword */
467static int srv_parse_no_backup(char **args, int *cur_arg,
468 struct proxy *curproxy, struct server *newsrv, char **err)
469{
470 newsrv->flags &= ~SRV_F_BACKUP;
471 return 0;
472}
473
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100474
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100475/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200476static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100477{
478 srv->pp_opts &= ~flags;
479 return 0;
480}
481
482/* Parse the "no-send-proxy" server keyword */
483static int srv_parse_no_send_proxy(char **args, int *cur_arg,
484 struct proxy *curproxy, struct server *newsrv, char **err)
485{
486 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
487}
488
489/* Parse the "no-send-proxy-v2" server keyword */
490static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
491 struct proxy *curproxy, struct server *newsrv, char **err)
492{
493 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
494}
495
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200496/* Parse the "no-tfo" server keyword */
497static int srv_parse_no_tfo(char **args, int *cur_arg,
498 struct proxy *curproxy, struct server *newsrv, char **err)
499{
500 newsrv->flags &= ~SRV_F_FASTOPEN;
501 return 0;
502}
503
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100504/* Parse the "non-stick" server keyword */
505static int srv_parse_non_stick(char **args, int *cur_arg,
506 struct proxy *curproxy, struct server *newsrv, char **err)
507{
508 newsrv->flags |= SRV_F_NON_STICK;
509 return 0;
510}
511
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100512/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200513static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100514{
515 srv->pp_opts |= flags;
516 return 0;
517}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200518/* parse the "proto" server keyword */
519static int srv_parse_proto(char **args, int *cur_arg,
520 struct proxy *px, struct server *newsrv, char **err)
521{
522 struct ist proto;
523
524 if (!*args[*cur_arg + 1]) {
525 memprintf(err, "'%s' : missing value", args[*cur_arg]);
526 return ERR_ALERT | ERR_FATAL;
527 }
528 proto = ist2(args[*cur_arg + 1], strlen(args[*cur_arg + 1]));
529 newsrv->mux_proto = get_mux_proto(proto);
530 if (!newsrv->mux_proto) {
531 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
532 return ERR_ALERT | ERR_FATAL;
533 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200534 return 0;
535}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100536
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100537/* parse the "proxy-v2-options" */
538static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
539 struct proxy *px, struct server *newsrv, char **err)
540{
541 char *p, *n;
542 for (p = args[*cur_arg+1]; p; p = n) {
543 n = strchr(p, ',');
544 if (n)
545 *n++ = '\0';
546 if (!strcmp(p, "ssl")) {
547 newsrv->pp_opts |= SRV_PP_V2_SSL;
548 } else if (!strcmp(p, "cert-cn")) {
549 newsrv->pp_opts |= SRV_PP_V2_SSL;
550 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100551 } else if (!strcmp(p, "cert-key")) {
552 newsrv->pp_opts |= SRV_PP_V2_SSL;
553 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
554 } else if (!strcmp(p, "cert-sig")) {
555 newsrv->pp_opts |= SRV_PP_V2_SSL;
556 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
557 } else if (!strcmp(p, "ssl-cipher")) {
558 newsrv->pp_opts |= SRV_PP_V2_SSL;
559 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100560 } else if (!strcmp(p, "authority")) {
561 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100562 } else if (!strcmp(p, "crc32c")) {
563 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100564 } else if (!strcmp(p, "unique-id")) {
565 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100566 } else
567 goto fail;
568 }
569 return 0;
570 fail:
571 if (err)
572 memprintf(err, "'%s' : proxy v2 option not implemented", p);
573 return ERR_ALERT | ERR_FATAL;
574}
575
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100576/* Parse the "observe" server keyword */
577static int srv_parse_observe(char **args, int *cur_arg,
578 struct proxy *curproxy, struct server *newsrv, char **err)
579{
580 char *arg;
581
582 arg = args[*cur_arg + 1];
583 if (!*arg) {
584 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
585 return ERR_ALERT | ERR_FATAL;
586 }
587
588 if (!strcmp(arg, "none")) {
589 newsrv->observe = HANA_OBS_NONE;
590 }
591 else if (!strcmp(arg, "layer4")) {
592 newsrv->observe = HANA_OBS_LAYER4;
593 }
594 else if (!strcmp(arg, "layer7")) {
595 if (curproxy->mode != PR_MODE_HTTP) {
596 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
597 return ERR_ALERT;
598 }
599 newsrv->observe = HANA_OBS_LAYER7;
600 }
601 else {
602 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
603 "but got '%s'\n", args[*cur_arg], arg);
604 return ERR_ALERT | ERR_FATAL;
605 }
606
607 return 0;
608}
609
Frédéric Lécaille16186232017-03-14 16:42:49 +0100610/* Parse the "redir" server keyword */
611static int srv_parse_redir(char **args, int *cur_arg,
612 struct proxy *curproxy, struct server *newsrv, char **err)
613{
614 char *arg;
615
616 arg = args[*cur_arg + 1];
617 if (!*arg) {
618 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
619 return ERR_ALERT | ERR_FATAL;
620 }
621
622 free(newsrv->rdr_pfx);
623 newsrv->rdr_pfx = strdup(arg);
624 newsrv->rdr_len = strlen(arg);
625
626 return 0;
627}
628
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100629/* Parse the "send-proxy" server keyword */
630static int srv_parse_send_proxy(char **args, int *cur_arg,
631 struct proxy *curproxy, struct server *newsrv, char **err)
632{
633 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
634}
635
636/* Parse the "send-proxy-v2" server keyword */
637static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
638 struct proxy *curproxy, struct server *newsrv, char **err)
639{
640 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
641}
642
Frédéric Lécailledba97072017-03-17 15:33:50 +0100643
644/* Parse the "source" server keyword */
645static int srv_parse_source(char **args, int *cur_arg,
646 struct proxy *curproxy, struct server *newsrv, char **err)
647{
648 char *errmsg;
649 int port_low, port_high;
650 struct sockaddr_storage *sk;
651 struct protocol *proto;
652
653 errmsg = NULL;
654
655 if (!*args[*cur_arg + 1]) {
656 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
657 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
658 goto err;
659 }
660
661 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreaua93e5c72020-09-15 14:01:16 +0200662 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL,
663 &errmsg, NULL, NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_RANGE | PA_O_STREAM);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100664 if (!sk) {
665 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
666 goto err;
667 }
668
669 proto = protocol_by_family(sk->ss_family);
670 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100671 ha_alert("'%s %s' : connect() not supported for this address family.\n",
672 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100673 goto err;
674 }
675
676 newsrv->conn_src.opts |= CO_SRC_BIND;
677 newsrv->conn_src.source_addr = *sk;
678
679 if (port_low != port_high) {
680 int i;
681
Frédéric Lécailledba97072017-03-17 15:33:50 +0100682 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
683 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
684 newsrv->conn_src.sport_range->ports[i] = port_low + i;
685 }
686
687 *cur_arg += 2;
688 while (*(args[*cur_arg])) {
689 if (!strcmp(args[*cur_arg], "usesrc")) { /* address to use outside */
690#if defined(CONFIG_HAP_TRANSPARENT)
691 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100692 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
693 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +0100694 goto err;
695 }
696 if (!strcmp(args[*cur_arg + 1], "client")) {
697 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
698 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
699 }
700 else if (!strcmp(args[*cur_arg + 1], "clientip")) {
701 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
702 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
703 }
704 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
705 char *name, *end;
706
707 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +0100708 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100709 name++;
710
711 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +0100712 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +0100713 end++;
714
715 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
716 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
717 free(newsrv->conn_src.bind_hdr_name);
718 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
719 newsrv->conn_src.bind_hdr_len = end - name;
720 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
721 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
722 newsrv->conn_src.bind_hdr_occ = -1;
723
724 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +0100725 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100726 end++;
727 if (*end == ',') {
728 end++;
729 name = end;
730 if (*end == '-')
731 end++;
Willy Tarreau90807112020-02-25 08:16:33 +0100732 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100733 end++;
734 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
735 }
736
737 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100738 ha_alert("usesrc hdr_ip(name,num) does not support negative"
739 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100740 goto err;
741 }
742 }
743 else {
744 struct sockaddr_storage *sk;
745 int port1, port2;
746
747 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreaua93e5c72020-09-15 14:01:16 +0200748 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL,
749 &errmsg, NULL, NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100750 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100751 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100752 goto err;
753 }
754
755 proto = protocol_by_family(sk->ss_family);
756 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100757 ha_alert("'%s %s' : connect() not supported for this address family.\n",
758 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100759 goto err;
760 }
761
Frédéric Lécailledba97072017-03-17 15:33:50 +0100762 newsrv->conn_src.tproxy_addr = *sk;
763 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
764 }
765 global.last_checks |= LSTCHK_NETADM;
766 *cur_arg += 2;
767 continue;
768#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100769 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 +0100770 goto err;
771#endif /* defined(CONFIG_HAP_TRANSPARENT) */
772 } /* "usesrc" */
773
774 if (!strcmp(args[*cur_arg], "interface")) { /* specifically bind to this interface */
775#ifdef SO_BINDTODEVICE
776 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100777 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100778 goto err;
779 }
780 free(newsrv->conn_src.iface_name);
781 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
782 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
783 global.last_checks |= LSTCHK_NETADM;
784#else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100785 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100786 goto err;
787#endif
788 *cur_arg += 2;
789 continue;
790 }
791 /* this keyword in not an option of "source" */
792 break;
793 } /* while */
794
795 return 0;
796
797 err:
798 free(errmsg);
799 return ERR_ALERT | ERR_FATAL;
800}
801
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100802/* Parse the "stick" server keyword */
803static int srv_parse_stick(char **args, int *cur_arg,
804 struct proxy *curproxy, struct server *newsrv, char **err)
805{
806 newsrv->flags &= ~SRV_F_NON_STICK;
807 return 0;
808}
809
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100810/* Parse the "track" server keyword */
811static int srv_parse_track(char **args, int *cur_arg,
812 struct proxy *curproxy, struct server *newsrv, char **err)
813{
814 char *arg;
815
816 arg = args[*cur_arg + 1];
817 if (!*arg) {
818 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
819 return ERR_ALERT | ERR_FATAL;
820 }
821
822 free(newsrv->trackit);
823 newsrv->trackit = strdup(arg);
824
825 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800826}
827
828/* Parse the "socks4" server keyword */
829static int srv_parse_socks4(char **args, int *cur_arg,
830 struct proxy *curproxy, struct server *newsrv, char **err)
831{
832 char *errmsg;
833 int port_low, port_high;
834 struct sockaddr_storage *sk;
835 struct protocol *proto;
836
837 errmsg = NULL;
838
839 if (!*args[*cur_arg + 1]) {
840 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
841 goto err;
842 }
843
844 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreaua93e5c72020-09-15 14:01:16 +0200845 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL,
846 &errmsg, NULL, NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM);
Alexander Liu2a54bb72019-05-22 19:44:48 +0800847 if (!sk) {
848 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
849 goto err;
850 }
851
852 proto = protocol_by_family(sk->ss_family);
853 if (!proto || !proto->connect) {
854 ha_alert("'%s %s' : connect() not supported for this address family.\n", args[*cur_arg], args[*cur_arg + 1]);
855 goto err;
856 }
857
858 newsrv->flags |= SRV_F_SOCKS4_PROXY;
859 newsrv->socks4_addr = *sk;
860
Alexander Liu2a54bb72019-05-22 19:44:48 +0800861 return 0;
862
863 err:
864 free(errmsg);
865 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100866}
867
Frédéric Lécailledba97072017-03-17 15:33:50 +0100868
Willy Tarreau034c88c2017-01-23 23:36:45 +0100869/* parse the "tfo" server keyword */
870static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
871{
872 newsrv->flags |= SRV_F_FASTOPEN;
873 return 0;
874}
875
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200876/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +0200877 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200878 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200879 *
880 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200881 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200882void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200883{
Willy Tarreau87b09662015-04-03 00:22:06 +0200884 struct stream *stream, *stream_bck;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200885
Willy Tarreau87b09662015-04-03 00:22:06 +0200886 list_for_each_entry_safe(stream, stream_bck, &srv->actconns, by_srv)
887 if (stream->srv_conn == srv)
888 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200889}
890
891/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +0200892 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200893 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200894 *
895 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200896 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200897void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200898{
899 struct server *srv;
900
901 for (srv = px->srv; srv != NULL; srv = srv->next)
902 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +0200903 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200904}
905
Willy Tarreaubda92272014-05-20 21:55:30 +0200906/* Appends some information to a message string related to a server going UP or
907 * DOWN. If both <forced> and <reason> are null and the server tracks another
908 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +0200909 * If <check> is non-null, an entire string describing the check result will be
910 * appended after a comma and a space (eg: to report some information from the
911 * check that changed the state). In the other case, the string will be built
912 * using the check results stored into the struct server if present.
913 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +0200914 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200915 *
916 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200917 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200918void srv_append_status(struct buffer *msg, struct server *s,
919 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200920{
Emeric Brun5a133512017-10-19 14:42:30 +0200921 short status = s->op_st_chg.status;
922 short code = s->op_st_chg.code;
923 long duration = s->op_st_chg.duration;
924 char *desc = s->op_st_chg.reason;
925
926 if (check) {
927 status = check->status;
928 code = check->code;
929 duration = check->duration;
930 desc = check->desc;
931 }
932
933 if (status != -1) {
934 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
935
936 if (status >= HCHK_STATUS_L57DATA)
937 chunk_appendf(msg, ", code: %d", code);
938
939 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +0200940 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +0200941
942 chunk_appendf(msg, ", info: \"");
943
944 chunk_initlen(&src, desc, 0, strlen(desc));
945 chunk_asciiencode(msg, &src, '"');
946
947 chunk_appendf(msg, "\"");
948 }
949
950 if (duration >= 0)
951 chunk_appendf(msg, ", check duration: %ldms", duration);
952 }
953 else if (desc && *desc) {
954 chunk_appendf(msg, ", %s", desc);
955 }
956 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +0200957 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +0200958 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200959
960 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200961 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200962 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
963 " %d sessions active, %d requeued, %d remaining in queue",
964 s->proxy->srv_act, s->proxy->srv_bck,
965 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
966 s->cur_sess, xferred, s->nbpend);
967 else
968 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
969 " %d sessions requeued, %d total in queue",
970 s->proxy->srv_act, s->proxy->srv_bck,
971 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
972 xferred, s->nbpend);
973 }
974}
975
Emeric Brun5a133512017-10-19 14:42:30 +0200976/* Marks server <s> down, regardless of its checks' statuses. The server is
977 * registered in a list to postpone the counting of the remaining servers on
978 * the proxy and transfers queued streams whenever possible to other servers at
979 * a sync point. Maintenance servers are ignored. It stores the <reason> if
980 * non-null as the reason for going down or the available data from the check
981 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200982 *
983 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200984 */
Emeric Brun5a133512017-10-19 14:42:30 +0200985void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200986{
987 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200988
Emeric Brun64cc49c2017-10-03 14:46:45 +0200989 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200990 return;
991
Emeric Brun52a91d32017-08-31 14:41:55 +0200992 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +0200993 *s->op_st_chg.reason = 0;
994 s->op_st_chg.status = -1;
995 if (reason) {
996 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
997 }
998 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +0100999 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001000 s->op_st_chg.code = check->code;
1001 s->op_st_chg.status = check->status;
1002 s->op_st_chg.duration = check->duration;
1003 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001004
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001005 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001006 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001007
Emeric Brun9f0b4582017-10-23 14:39:51 +02001008 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001009 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001010 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001011 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001012 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001013}
1014
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001015/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001016 * in maintenance. The server is registered in a list to postpone the counting
1017 * of the remaining servers on the proxy and tries to grab requests from the
1018 * proxy at a sync point. Maintenance servers are ignored. It stores the
1019 * <reason> if non-null as the reason for going down or the available data
1020 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001021 *
1022 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001023 */
Emeric Brun5a133512017-10-19 14:42:30 +02001024void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001025{
1026 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001027
Emeric Brun64cc49c2017-10-03 14:46:45 +02001028 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001029 return;
1030
Emeric Brun52a91d32017-08-31 14:41:55 +02001031 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001032 return;
1033
Emeric Brun52a91d32017-08-31 14:41:55 +02001034 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001035 *s->op_st_chg.reason = 0;
1036 s->op_st_chg.status = -1;
1037 if (reason) {
1038 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1039 }
1040 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001041 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001042 s->op_st_chg.code = check->code;
1043 s->op_st_chg.status = check->status;
1044 s->op_st_chg.duration = check->duration;
1045 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001046
Emeric Brun64cc49c2017-10-03 14:46:45 +02001047 if (s->slowstart <= 0)
1048 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001049
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001050 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001051 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001052
Emeric Brun9f0b4582017-10-23 14:39:51 +02001053 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001054 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001055 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001056 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001057 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001058}
1059
Willy Tarreau8eb77842014-05-21 13:54:57 +02001060/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001061 * isn't in maintenance. The server is registered in a list to postpone the
1062 * counting of the remaining servers on the proxy and tries to grab requests
1063 * from the proxy. Maintenance servers are ignored. It stores the
1064 * <reason> if non-null as the reason for going down or the available data
1065 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001066 * up. Note that it makes use of the trash to build the log strings, so <reason>
1067 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001068 *
1069 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001070 */
Emeric Brun5a133512017-10-19 14:42:30 +02001071void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001072{
1073 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001074
Emeric Brun64cc49c2017-10-03 14:46:45 +02001075 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001076 return;
1077
Emeric Brun52a91d32017-08-31 14:41:55 +02001078 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001079 return;
1080
Emeric Brun52a91d32017-08-31 14:41:55 +02001081 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001082 *s->op_st_chg.reason = 0;
1083 s->op_st_chg.status = -1;
1084 if (reason) {
1085 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1086 }
1087 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001088 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001089 s->op_st_chg.code = check->code;
1090 s->op_st_chg.status = check->status;
1091 s->op_st_chg.duration = check->duration;
1092 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001093
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001094 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001095 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001096
Emeric Brun9f0b4582017-10-23 14:39:51 +02001097 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001098 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001099 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001100 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001101 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001102}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001103
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001104/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1105 * enforce either maint mode or drain mode. It is not allowed to set more than
1106 * one flag at once. The equivalent "inherited" flag is propagated to all
1107 * tracking servers. Maintenance mode disables health checks (but not agent
1108 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001109 * is done. If <cause> is non-null, it will be displayed at the end of the log
1110 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001111 *
1112 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001113 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001114void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001115{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001116 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001117
1118 if (!mode)
1119 return;
1120
1121 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001122 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001123 return;
1124
Emeric Brun52a91d32017-08-31 14:41:55 +02001125 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001126 if (cause)
1127 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1128
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001129 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001130 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001131
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001132 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001133 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1134 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001135 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001136
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001137 /* compute the inherited flag to propagate */
1138 if (mode & SRV_ADMF_MAINT)
1139 mode = SRV_ADMF_IMAINT;
1140 else if (mode & SRV_ADMF_DRAIN)
1141 mode = SRV_ADMF_IDRAIN;
1142
Emeric Brun9f0b4582017-10-23 14:39:51 +02001143 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001144 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001145 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001146 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001147 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001148}
1149
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001150/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1151 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1152 * than one flag at once. The equivalent "inherited" flag is propagated to all
1153 * tracking servers. Leaving maintenance mode re-enables health checks. When
1154 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001155 *
1156 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001157 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001158void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001159{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001160 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001161
1162 if (!mode)
1163 return;
1164
1165 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001166 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001167 return;
1168
Emeric Brun52a91d32017-08-31 14:41:55 +02001169 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001170
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001171 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001172 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001173
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001174 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001175 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1176 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001177 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001178
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001179 if (mode & SRV_ADMF_MAINT)
1180 mode = SRV_ADMF_IMAINT;
1181 else if (mode & SRV_ADMF_DRAIN)
1182 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001183
Emeric Brun9f0b4582017-10-23 14:39:51 +02001184 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001185 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001186 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001187 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001188 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001189}
1190
Willy Tarreau757478e2016-11-03 19:22:19 +01001191/* principle: propagate maint and drain to tracking servers. This is useful
1192 * upon startup so that inherited states are correct.
1193 */
1194static void srv_propagate_admin_state(struct server *srv)
1195{
1196 struct server *srv2;
1197
1198 if (!srv->trackers)
1199 return;
1200
1201 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001202 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001203 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001204 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001205
Emeric Brun52a91d32017-08-31 14:41:55 +02001206 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001207 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001208 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001209 }
1210}
1211
1212/* Compute and propagate the admin states for all servers in proxy <px>.
1213 * Only servers *not* tracking another one are considered, because other
1214 * ones will be handled when the server they track is visited.
1215 */
1216void srv_compute_all_admin_states(struct proxy *px)
1217{
1218 struct server *srv;
1219
1220 for (srv = px->srv; srv; srv = srv->next) {
1221 if (srv->track)
1222 continue;
1223 srv_propagate_admin_state(srv);
1224 }
1225}
1226
Willy Tarreaudff55432012-10-10 17:51:05 +02001227/* Note: must not be declared <const> as its list will be overwritten.
1228 * Please take care of keeping this list alphabetically sorted, doing so helps
1229 * all code contributors.
1230 * Optional keywords are also declared with a NULL ->parse() function so that
1231 * the config parser can report an appropriate error when a known keyword was
1232 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001233 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001234 */
1235static struct srv_kw_list srv_kws = { "ALL", { }, {
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001236 { "backup", srv_parse_backup, 0, 1 }, /* Flag as backup server */
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +01001237 { "cookie", srv_parse_cookie, 1, 1 }, /* Assign a cookie to the server */
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +01001238 { "disabled", srv_parse_disabled, 0, 1 }, /* Start the server in 'disabled' state */
1239 { "enabled", srv_parse_enabled, 0, 1 }, /* Start the server in 'enabled' state */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001240 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
Willy Tarreau9c538e02019-01-23 10:21:49 +01001241 { "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 +01001242 { "namespace", srv_parse_namespace, 1, 1 }, /* Namespace the server socket belongs to (if supported) */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001243 { "no-backup", srv_parse_no_backup, 0, 1 }, /* Flag as non-backup server */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001244 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1 }, /* Disable use of PROXY V1 protocol */
1245 { "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 +02001246 { "no-tfo", srv_parse_no_tfo, 0, 1 }, /* Disable use of TCP Fast Open */
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001247 { "non-stick", srv_parse_non_stick, 0, 1 }, /* Disable stick-table persistence */
Frédéric Lécaille547356e2017-03-15 08:55:39 +01001248 { "observe", srv_parse_observe, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001249 { "pool-low-conn", srv_parse_pool_low_conn, 1, 1 }, /* Set the min number of orphan idle connecbefore being allowed to pick from other threads */
Olivier Houchard006e3102018-12-10 18:30:32 +01001250 { "pool-max-conn", srv_parse_pool_max_conn, 1, 1 }, /* Set the max number of orphan idle connections, 0 means unlimited */
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001251 { "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 +02001252 { "proto", srv_parse_proto, 1, 1 }, /* Set the proto to use for all outgoing connections */
Emmanuel Hocdetf643b802018-02-01 15:20:32 +01001253 { "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 +01001254 { "redir", srv_parse_redir, 1, 1 }, /* Enable redirection mode */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001255 { "send-proxy", srv_parse_send_proxy, 0, 1 }, /* Enforce use of PROXY V1 protocol */
1256 { "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 +02001257 { "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 +01001258 { "stick", srv_parse_stick, 0, 1 }, /* Enable stick-table persistence */
Olivier Houchard8d82db72019-07-04 13:34:10 +02001259 { "tfo", srv_parse_tfo, 0, 1 }, /* enable TCP Fast Open of server */
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001260 { "track", srv_parse_track, 1, 1 }, /* Set the current state of the server, tracking another one */
Alexander Liu2a54bb72019-05-22 19:44:48 +08001261 { "socks4", srv_parse_socks4, 1, 1 }, /* Set the socks4 proxy of the server*/
Willy Tarreaudff55432012-10-10 17:51:05 +02001262 { NULL, NULL, 0 },
1263}};
1264
Willy Tarreau0108d902018-11-25 19:14:37 +01001265INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001266
Willy Tarreau004e0452013-11-21 11:22:01 +01001267/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001268 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001269 * state is automatically disabled if the time is elapsed. If <must_update> is
1270 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001271 *
1272 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001273 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001274void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001275{
1276 struct proxy *px = sv->proxy;
1277 unsigned w;
1278
1279 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1280 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001281 if (sv->next_state == SRV_ST_STARTING)
1282 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001283 }
1284
1285 /* We must take care of not pushing the server to full throttle during slow starts.
1286 * It must also start immediately, at least at the minimal step when leaving maintenance.
1287 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001288 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001289 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1290 else
1291 w = px->lbprm.wdiv;
1292
Emeric Brun52a91d32017-08-31 14:41:55 +02001293 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001294
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001295 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001296 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001297 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001298}
1299
Willy Tarreaubaaee002006-06-26 02:48:02 +02001300/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001301 * Parses weight_str and configures sv accordingly.
1302 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001303 *
1304 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001305 */
1306const char *server_parse_weight_change_request(struct server *sv,
1307 const char *weight_str)
1308{
1309 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001310 long int w;
1311 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001312
1313 px = sv->proxy;
1314
1315 /* if the weight is terminated with '%', it is set relative to
1316 * the initial weight, otherwise it is absolute.
1317 */
1318 if (!*weight_str)
1319 return "Require <weight> or <weight%>.\n";
1320
Simon Hormanb796afa2013-02-12 10:45:53 +09001321 w = strtol(weight_str, &end, 10);
1322 if (end == weight_str)
1323 return "Empty weight string empty or preceded by garbage";
1324 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001325 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001326 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001327 /* Avoid integer overflow */
1328 if (w > 25600)
1329 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001330 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001331 if (w > 256)
1332 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001333 }
1334 else if (w < 0 || w > 256)
1335 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001336 else if (end[0] != '\0')
1337 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001338
1339 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1340 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1341
1342 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001343 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001344
1345 return NULL;
1346}
1347
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001348/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001349 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1350 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001351 * Returns:
1352 * - error string on error
1353 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001354 *
1355 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001356 */
1357const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001358 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001359{
1360 unsigned char ip[INET6_ADDRSTRLEN];
1361
1362 if (inet_pton(AF_INET6, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001363 update_server_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001364 return NULL;
1365 }
1366 if (inet_pton(AF_INET, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001367 update_server_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001368 return NULL;
1369 }
1370
1371 return "Could not understand IP address format.\n";
1372}
1373
Willy Tarreau46b7f532018-08-21 11:54:26 +02001374/*
1375 * Must be called with the server lock held.
1376 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001377const char *server_parse_maxconn_change_request(struct server *sv,
1378 const char *maxconn_str)
1379{
1380 long int v;
1381 char *end;
1382
1383 if (!*maxconn_str)
1384 return "Require <maxconn>.\n";
1385
1386 v = strtol(maxconn_str, &end, 10);
1387 if (end == maxconn_str)
1388 return "maxconn string empty or preceded by garbage";
1389 else if (end[0] != '\0')
1390 return "Trailing garbage in maxconn string";
1391
1392 if (sv->maxconn == sv->minconn) { // static maxconn
1393 sv->maxconn = sv->minconn = v;
1394 } else { // dynamic maxconn
1395 sv->maxconn = v;
1396 }
1397
1398 if (may_dequeue_tasks(sv, sv->proxy))
1399 process_srv_queue(sv);
1400
1401 return NULL;
1402}
1403
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001404#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001405static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1406 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001407{
1408 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001409 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001410 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001411 NULL,
1412 };
1413
1414 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001415 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001416
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001417 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001418}
1419
1420static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1421{
1422 struct sample_expr *expr;
1423
1424 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 +01001425 if (!expr) {
1426 memprintf(err, "error detected while parsing sni expression : %s", *err);
1427 return ERR_ALERT | ERR_FATAL;
1428 }
1429
1430 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1431 memprintf(err, "error detected while parsing sni expression : "
1432 " fetch method '%s' extracts information from '%s', "
1433 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001434 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001435 return ERR_ALERT | ERR_FATAL;
1436 }
1437
1438 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1439 release_sample_expr(newsrv->ssl_ctx.sni);
1440 newsrv->ssl_ctx.sni = expr;
1441
1442 return 0;
1443}
1444#endif
1445
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001446static 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 +01001447{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001448 char *msg = "error encountered while processing ";
1449 char *quote = "'";
1450 char *token = args[cur_arg];
1451
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001452 if (err && *err) {
1453 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001454 msg = *err;
1455 quote = "";
1456 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001457 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001458
1459 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
1460 ha_warning("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1461 file, linenum, args[0], args[1],
1462 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001463 else
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001464 ha_alert("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1465 file, linenum, args[0], args[1],
1466 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001467}
1468
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001469static void srv_conn_src_sport_range_cpy(struct server *srv,
1470 struct server *src)
1471{
1472 int range_sz;
1473
1474 range_sz = src->conn_src.sport_range->size;
1475 if (range_sz > 0) {
1476 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1477 if (srv->conn_src.sport_range != NULL) {
1478 int i;
1479
1480 for (i = 0; i < range_sz; i++) {
1481 srv->conn_src.sport_range->ports[i] =
1482 src->conn_src.sport_range->ports[i];
1483 }
1484 }
1485 }
1486}
1487
1488/*
1489 * Copy <src> server connection source settings to <srv> server everything needed.
1490 */
1491static void srv_conn_src_cpy(struct server *srv, struct server *src)
1492{
1493 srv->conn_src.opts = src->conn_src.opts;
1494 srv->conn_src.source_addr = src->conn_src.source_addr;
1495
1496 /* Source port range copy. */
1497 if (src->conn_src.sport_range != NULL)
1498 srv_conn_src_sport_range_cpy(srv, src);
1499
1500#ifdef CONFIG_HAP_TRANSPARENT
1501 if (src->conn_src.bind_hdr_name != NULL) {
1502 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1503 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1504 }
1505 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1506 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1507#endif
1508 if (src->conn_src.iface_name != NULL)
1509 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1510}
1511
1512/*
1513 * Copy <src> server SSL settings to <srv> server allocating
1514 * everything needed.
1515 */
1516#if defined(USE_OPENSSL)
1517static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1518{
1519 if (src->ssl_ctx.ca_file != NULL)
1520 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1521 if (src->ssl_ctx.crl_file != NULL)
1522 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
1523 if (src->ssl_ctx.client_crt != NULL)
1524 srv->ssl_ctx.client_crt = strdup(src->ssl_ctx.client_crt);
1525
1526 srv->ssl_ctx.verify = src->ssl_ctx.verify;
1527
1528 if (src->ssl_ctx.verify_host != NULL)
1529 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
1530 if (src->ssl_ctx.ciphers != NULL)
1531 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02001532 if (src->ssl_ctx.options)
1533 srv->ssl_ctx.options = src->ssl_ctx.options;
1534 if (src->ssl_ctx.methods.flags)
1535 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
1536 if (src->ssl_ctx.methods.min)
1537 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
1538 if (src->ssl_ctx.methods.max)
1539 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
1540
Willy Tarreau5db847a2019-05-09 14:13:35 +02001541#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02001542 if (src->ssl_ctx.ciphersuites != NULL)
1543 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
1544#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001545 if (src->sni_expr != NULL)
1546 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01001547
1548#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
1549 if (src->ssl_ctx.alpn_str) {
1550 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
1551 if (srv->ssl_ctx.alpn_str) {
1552 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
1553 src->ssl_ctx.alpn_len);
1554 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
1555 }
1556 }
1557#endif
1558#ifdef OPENSSL_NPN_NEGOTIATED
1559 if (src->ssl_ctx.npn_str) {
1560 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
1561 if (srv->ssl_ctx.npn_str) {
1562 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
1563 src->ssl_ctx.npn_len);
1564 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
1565 }
1566 }
1567#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001568}
1569#endif
1570
1571/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001572 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001573 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001574 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001575 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001576static int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001577{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001578 char *hostname_dn;
1579 int hostname_len, hostname_dn_len;
1580
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001581 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001582 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001583
Christopher Faulet67957bd2017-09-27 11:00:59 +02001584 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001585 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001586 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
1587 hostname_dn, trash.size);
1588 if (hostname_dn_len == -1)
1589 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001590
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001591
Christopher Faulet67957bd2017-09-27 11:00:59 +02001592 free(srv->hostname);
1593 free(srv->hostname_dn);
1594 srv->hostname = strdup(hostname);
1595 srv->hostname_dn = strdup(hostname_dn);
1596 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001597 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001598 goto err;
1599
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001600 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001601
1602 err:
Christopher Faulet67957bd2017-09-27 11:00:59 +02001603 free(srv->hostname); srv->hostname = NULL;
1604 free(srv->hostname_dn); srv->hostname_dn = NULL;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001605 return -1;
1606}
1607
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001608/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001609 * Copy <src> server settings to <srv> server allocating
1610 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001611 * This function is not supposed to be called at any time, but only
1612 * during server settings parsing or during server allocations from
1613 * a server template, and just after having calloc()'ed a new server.
1614 * So, <src> may only be a default server (when parsing server settings)
1615 * or a server template (during server allocations from a server template).
1616 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
1617 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001618 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001619static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001620{
1621 /* Connection source settings copy */
1622 srv_conn_src_cpy(srv, src);
1623
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001624 if (srv_tmpl) {
1625 srv->addr = src->addr;
1626 srv->svc_port = src->svc_port;
1627 }
1628
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001629 srv->pp_opts = src->pp_opts;
1630 if (src->rdr_pfx != NULL) {
1631 srv->rdr_pfx = strdup(src->rdr_pfx);
1632 srv->rdr_len = src->rdr_len;
1633 }
1634 if (src->cookie != NULL) {
1635 srv->cookie = strdup(src->cookie);
1636 srv->cklen = src->cklen;
1637 }
1638 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01001639 srv->check.addr = src->check.addr;
1640 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001641 srv->check.use_ssl = src->check.use_ssl;
1642 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01001643 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01001644 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05001645 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001646 /* Note: 'flags' field has potentially been already initialized. */
1647 srv->flags |= src->flags;
1648 srv->do_check = src->do_check;
1649 srv->do_agent = src->do_agent;
1650 if (srv->check.port)
1651 srv->flags |= SRV_F_CHECKPORT;
1652 srv->check.inter = src->check.inter;
1653 srv->check.fastinter = src->check.fastinter;
1654 srv->check.downinter = src->check.downinter;
1655 srv->agent.use_ssl = src->agent.use_ssl;
1656 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001657
1658 if (src->agent.tcpcheck_rules) {
1659 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
1660 if (srv->agent.tcpcheck_rules) {
1661 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
1662 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
1663 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
1664 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
1665 &src->agent.tcpcheck_rules->preset_vars);
1666 }
1667 }
1668
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001669 srv->agent.inter = src->agent.inter;
1670 srv->agent.fastinter = src->agent.fastinter;
1671 srv->agent.downinter = src->agent.downinter;
1672 srv->maxqueue = src->maxqueue;
1673 srv->minconn = src->minconn;
1674 srv->maxconn = src->maxconn;
1675 srv->slowstart = src->slowstart;
1676 srv->observe = src->observe;
1677 srv->onerror = src->onerror;
1678 srv->onmarkeddown = src->onmarkeddown;
1679 srv->onmarkedup = src->onmarkedup;
1680 if (src->trackit != NULL)
1681 srv->trackit = strdup(src->trackit);
1682 srv->consecutive_errors_limit = src->consecutive_errors_limit;
1683 srv->uweight = srv->iweight = src->iweight;
1684
1685 srv->check.send_proxy = src->check.send_proxy;
1686 /* health: up, but will fall down at first failure */
1687 srv->check.rise = srv->check.health = src->check.rise;
1688 srv->check.fall = src->check.fall;
1689
1690 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001691 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
1692 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
1693 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001694 srv->check.state |= CHK_ST_PAUSED;
1695 srv->check.health = 0;
1696 }
1697
1698 /* health: up but will fall down at first failure */
1699 srv->agent.rise = srv->agent.health = src->agent.rise;
1700 srv->agent.fall = src->agent.fall;
1701
1702 if (src->resolvers_id != NULL)
1703 srv->resolvers_id = strdup(src->resolvers_id);
1704 srv->dns_opts.family_prio = src->dns_opts.family_prio;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001705 srv->dns_opts.accept_duplicate_ip = src->dns_opts.accept_duplicate_ip;
Daniel Corbettf8716912019-11-17 09:48:56 -05001706 srv->dns_opts.ignore_weight = src->dns_opts.ignore_weight;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001707 if (srv->dns_opts.family_prio == AF_UNSPEC)
1708 srv->dns_opts.family_prio = AF_INET6;
1709 memcpy(srv->dns_opts.pref_net,
1710 src->dns_opts.pref_net,
1711 sizeof srv->dns_opts.pref_net);
1712 srv->dns_opts.pref_net_nb = src->dns_opts.pref_net_nb;
1713
1714 srv->init_addr_methods = src->init_addr_methods;
1715 srv->init_addr = src->init_addr;
1716#if defined(USE_OPENSSL)
1717 srv_ssl_settings_cpy(srv, src);
1718#endif
1719#ifdef TCP_USER_TIMEOUT
1720 srv->tcp_ut = src->tcp_ut;
1721#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001722 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001723 srv->pool_purge_delay = src->pool_purge_delay;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001724 srv->low_idle_conns = src->low_idle_conns;
Olivier Houchard006e3102018-12-10 18:30:32 +01001725 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01001726 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001727
Olivier Houchard8da5f982017-08-04 18:35:36 +02001728 if (srv_tmpl)
1729 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001730
1731 srv->check.via_socks4 = src->check.via_socks4;
1732 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001733}
1734
William Lallemand313bfd12018-10-26 14:47:32 +02001735struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001736{
1737 struct server *srv;
1738
1739 srv = calloc(1, sizeof *srv);
1740 if (!srv)
1741 return NULL;
1742
1743 srv->obj_type = OBJ_TYPE_SERVER;
1744 srv->proxy = proxy;
1745 LIST_INIT(&srv->actconns);
Patrick Hemmer0355dab2018-05-11 12:52:31 -04001746 srv->pendconns = EB_ROOT;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001747
Emeric Brun52a91d32017-08-31 14:41:55 +02001748 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001749 srv->last_change = now.tv_sec;
1750
Christopher Faulet38290462020-04-21 11:46:40 +02001751 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001752 srv->check.status = HCHK_STATUS_INI;
1753 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01001754 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02001755 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001756
Christopher Faulet38290462020-04-21 11:46:40 +02001757 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001758 srv->agent.status = HCHK_STATUS_INI;
1759 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01001760 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001761 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
1762
Willy Tarreau975b1552019-06-06 16:25:55 +02001763 /* please don't put default server settings here, they are set in
1764 * init_default_instance().
1765 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001766 return srv;
1767}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001768
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001769#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1770static int server_sni_expr_init(const char *file, int linenum, char **args, int cur_arg,
1771 struct server *srv, struct proxy *proxy)
1772{
1773 int ret;
1774 char *err = NULL;
1775
1776 if (!srv->sni_expr)
1777 return 0;
1778
1779 ret = server_parse_sni_expr(srv, proxy, &err);
1780 if (!ret)
1781 return 0;
1782
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001783 display_parser_err(file, linenum, args, cur_arg, ret, &err);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001784 free(err);
1785
1786 return ret;
1787}
1788#endif
1789
1790/*
1791 * Server initializations finalization.
1792 * Initialize health check, agent check and SNI expression if enabled.
1793 * Must not be called for a default server instance.
1794 */
1795static int server_finalize_init(const char *file, int linenum, char **args, int cur_arg,
1796 struct server *srv, struct proxy *px)
1797{
Christopher Fauletb3b53522020-04-27 11:17:10 +02001798#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001799 int ret;
Christopher Fauletb3b53522020-04-27 11:17:10 +02001800#endif
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001801
Christopher Faulet8892e5d2020-03-26 19:48:20 +01001802 if (srv->do_check && srv->trackit) {
1803 ha_alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1804 file, linenum);
1805 return ERR_ALERT | ERR_FATAL;
1806 }
1807
1808 if (srv->do_agent && !srv->agent.port) {
1809 ha_alert("parsing [%s:%d] : server %s does not have agent port. Agent check has been disabled.\n",
1810 file, linenum, srv->id);
1811 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001812 }
1813
1814#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1815 if ((ret = server_sni_expr_init(file, linenum, args, cur_arg, srv, px)) != 0)
1816 return ret;
1817#endif
1818
1819 if (srv->flags & SRV_F_BACKUP)
1820 px->srv_bck++;
1821 else
1822 px->srv_act++;
1823 srv_lb_commit_status(srv);
1824
1825 return 0;
1826}
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001827
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001828/*
1829 * Parse as much as possible such a range string argument: low[-high]
1830 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
1831 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
1832 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
1833 * Returns 0 if succeeded, -1 if not.
1834 */
1835static int srv_tmpl_parse_range(struct server *srv, const char *arg, int *nb_low, int *nb_high)
1836{
1837 char *nb_high_arg;
1838
1839 *nb_high = 0;
1840 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001841 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001842
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001843 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001844 *nb_high_arg++ = '\0';
1845 *nb_high = atoi(nb_high_arg);
1846 }
1847 else {
1848 *nb_high += *nb_low;
1849 *nb_low = 1;
1850 }
1851
1852 if (*nb_low < 0 || *nb_high < *nb_low)
1853 return -1;
1854
1855 return 0;
1856}
1857
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001858static inline void srv_set_id_from_prefix(struct server *srv, const char *prefix, int nb)
1859{
1860 chunk_printf(&trash, "%s%d", prefix, nb);
1861 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001862 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001863}
1864
1865/*
1866 * Initialize as much as possible servers from <srv> server template.
1867 * Note that a server template is a special server with
1868 * a few different parameters than a server which has
1869 * been parsed mostly the same way as a server.
Joseph Herlant44466822018-11-15 08:57:51 -08001870 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001871 * 'srv' template included.
1872 */
1873static int server_template_init(struct server *srv, struct proxy *px)
1874{
1875 int i;
1876 struct server *newsrv;
1877
1878 for (i = srv->tmpl_info.nb_low + 1; i <= srv->tmpl_info.nb_high; i++) {
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001879 newsrv = new_server(px);
1880 if (!newsrv)
1881 goto err;
1882
1883 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001884 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001885#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1886 if (newsrv->sni_expr) {
1887 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
1888 if (!newsrv->ssl_ctx.sni)
1889 goto err;
1890 }
1891#endif
1892 /* Set this new server ID. */
1893 srv_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
1894
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001895 /* Linked backwards first. This will be restablished after parsing. */
1896 newsrv->next = px->srv;
1897 px->srv = newsrv;
1898 }
1899 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1900
1901 return i - srv->tmpl_info.nb_low;
1902
1903 err:
1904 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1905 if (newsrv) {
1906#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1907 release_sample_expr(newsrv->ssl_ctx.sni);
1908#endif
1909 free_check(&newsrv->agent);
1910 free_check(&newsrv->check);
1911 }
1912 free(newsrv);
1913 return i - srv->tmpl_info.nb_low;
1914}
1915
Emeric Brund3db3842020-07-21 16:54:36 +02001916int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy,
1917 struct proxy *defproxy, int parse_addr, int in_peers_section, int initial_resolve)
Willy Tarreau272adea2014-03-31 10:39:59 +02001918{
1919 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001920 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001921 char *errmsg = NULL;
1922 int err_code = 0;
1923 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +02001924 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001925
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001926 if (!strcmp(args[0], "server") ||
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02001927 !strcmp(args[0], "peer") ||
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001928 !strcmp(args[0], "default-server") ||
1929 !strcmp(args[0], "server-template")) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001930 int cur_arg;
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001931 int defsrv = (*args[0] == 'd');
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02001932 int srv = !defsrv && (*args[0] == 'p' || !strcmp(args[0], "server"));
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001933 int srv_tmpl = !defsrv && !srv;
1934 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02001935
1936 if (!defsrv && curproxy == defproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001937 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001938 err_code |= ERR_ALERT | ERR_FATAL;
1939 goto out;
1940 }
1941 else if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL))
Olivier Houchard306e6532018-07-24 16:48:59 +02001942 err_code |= ERR_WARN;
Willy Tarreau272adea2014-03-31 10:39:59 +02001943
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001944 /* There is no mandatory first arguments for default server. */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01001945 if (srv && parse_addr) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001946 if (!*args[2]) {
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +02001947 if (in_peers_section) {
1948 return 0;
1949 }
1950 else {
1951 /* 'server' line number of argument check. */
1952 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1953 file, linenum, args[0]);
1954 err_code |= ERR_ALERT | ERR_FATAL;
1955 goto out;
1956 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001957 }
1958
1959 err = invalid_char(args[1]);
1960 }
1961 else if (srv_tmpl) {
1962 if (!*args[3]) {
1963 /* 'server-template' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001964 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 +02001965 file, linenum, args[0]);
1966 err_code |= ERR_ALERT | ERR_FATAL;
1967 goto out;
1968 }
1969
1970 err = invalid_prefix_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001971 }
1972
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001973 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001974 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 +02001975 file, linenum, *err, args[0], srv ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001976 err_code |= ERR_ALERT | ERR_FATAL;
1977 goto out;
1978 }
1979
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001980 cur_arg = 2;
1981 if (srv_tmpl) {
1982 /* Parse server-template <nb | range> arg. */
1983 if (srv_tmpl_parse_range(newsrv, args[cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001984 ha_alert("parsing [%s:%d] : Wrong %s number or range arg '%s'.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001985 file, linenum, args[0], args[cur_arg]);
1986 err_code |= ERR_ALERT | ERR_FATAL;
1987 goto out;
1988 }
1989 cur_arg++;
1990 }
1991
Willy Tarreau272adea2014-03-31 10:39:59 +02001992 if (!defsrv) {
1993 struct sockaddr_storage *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01001994 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02001995 struct protocol *proto;
1996
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001997 newsrv = new_server(curproxy);
1998 if (!newsrv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001999 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Willy Tarreau272adea2014-03-31 10:39:59 +02002000 err_code |= ERR_ALERT | ERR_ABORT;
2001 goto out;
2002 }
2003
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002004 if (srv_tmpl) {
2005 newsrv->tmpl_info.nb_low = tmpl_range_low;
2006 newsrv->tmpl_info.nb_high = tmpl_range_high;
2007 }
2008
Willy Tarreau272adea2014-03-31 10:39:59 +02002009 /* the servers are linked backwards first */
2010 newsrv->next = curproxy->srv;
2011 curproxy->srv = newsrv;
Willy Tarreau272adea2014-03-31 10:39:59 +02002012 newsrv->conf.file = strdup(file);
2013 newsrv->conf.line = linenum;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002014 /* Note: for a server template, its id is its prefix.
2015 * This is a temporary id which will be used for server allocations to come
2016 * after parsing.
2017 */
2018 if (srv)
2019 newsrv->id = strdup(args[1]);
2020 else
2021 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002022
2023 /* several ways to check the port component :
2024 * - IP => port=+0, relative (IPv4 only)
2025 * - IP: => port=+0, relative
2026 * - IP:N => port=N, absolute
2027 * - IP:+N => port=+N, relative
2028 * - IP:-N => port=-N, relative
2029 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002030 if (!parse_addr)
2031 goto skip_addr;
2032
Willy Tarreaua93e5c72020-09-15 14:01:16 +02002033 sk = str2sa_range(args[cur_arg], &port, &port1, &port2, NULL,
2034 &errmsg, NULL, &fqdn, (initial_resolve ? PA_O_RESOLVE : 0) | PA_O_PORT_OK | PA_O_PORT_OFS | PA_O_STREAM | PA_O_XPRT);
Willy Tarreau272adea2014-03-31 10:39:59 +02002035 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002036 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau272adea2014-03-31 10:39:59 +02002037 err_code |= ERR_ALERT | ERR_FATAL;
2038 goto out;
2039 }
2040
2041 proto = protocol_by_family(sk->ss_family);
Willy Tarreau9698f4b2017-01-06 18:42:57 +01002042 if (!fqdn && (!proto || !proto->connect)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002043 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002044 file, linenum, args[0], args[1]);
2045 err_code |= ERR_ALERT | ERR_FATAL;
2046 goto out;
2047 }
2048
2049 if (!port1 || !port2) {
2050 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +02002051 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +02002052 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002053
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002054 /* save hostname and create associated name resolution */
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002055 if (fqdn) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002056 if (fqdn[0] == '_') { /* SRV record */
Olivier Houchard8da5f982017-08-04 18:35:36 +02002057 /* Check if a SRV request already exists, and if not, create it */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002058 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2059 newsrv->srvrq = new_dns_srvrq(newsrv, fqdn);
2060 if (newsrv->srvrq == NULL) {
Olivier Houchard8da5f982017-08-04 18:35:36 +02002061 err_code |= ERR_ALERT | ERR_FATAL;
2062 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002063 }
2064 }
2065 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002066 ha_alert("parsing [%s:%d] : Can't create DNS resolution for server '%s'\n",
Christopher Faulet67957bd2017-09-27 11:00:59 +02002067 file, linenum, newsrv->id);
2068 err_code |= ERR_ALERT | ERR_FATAL;
2069 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002070 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002071 }
2072
Willy Tarreau272adea2014-03-31 10:39:59 +02002073 newsrv->addr = *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002074 newsrv->svc_port = port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002075
Olivier Houchard8da5f982017-08-04 18:35:36 +02002076 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002077 ha_alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002078 file, linenum, newsrv->addr.ss_family, args[cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002079 err_code |= ERR_ALERT | ERR_FATAL;
2080 goto out;
2081 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002082
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002083 cur_arg++;
2084 skip_addr:
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002085 /* Copy default server settings to new server settings. */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002086 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002087 HA_SPIN_INIT(&newsrv->lock);
Willy Tarreau272adea2014-03-31 10:39:59 +02002088 } else {
2089 newsrv = &curproxy->defsrv;
2090 cur_arg = 1;
Thierry Fournierada34842016-02-17 21:25:09 +01002091 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002092 newsrv->dns_opts.accept_duplicate_ip = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002093 }
2094
2095 while (*args[cur_arg]) {
Christopher Fauletcbba66c2020-04-06 14:26:30 +02002096 if (!strcmp(args[cur_arg], "init-addr")) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002097 char *p, *end;
2098 int done;
Willy Tarreau4310d362016-11-02 15:05:56 +01002099 struct sockaddr_storage sa;
Baptiste Assmann25938272016-09-21 20:26:16 +02002100
2101 newsrv->init_addr_methods = 0;
2102 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
2103
2104 for (p = args[cur_arg + 1]; *p; p = end) {
2105 /* cut on next comma */
2106 for (end = p; *end && *end != ','; end++);
2107 if (*end)
2108 *(end++) = 0;
2109
Willy Tarreau4310d362016-11-02 15:05:56 +01002110 memset(&sa, 0, sizeof(sa));
Baptiste Assmann25938272016-09-21 20:26:16 +02002111 if (!strcmp(p, "libc")) {
2112 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
2113 }
2114 else if (!strcmp(p, "last")) {
2115 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
2116 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01002117 else if (!strcmp(p, "none")) {
2118 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
2119 }
Willy Tarreau4310d362016-11-02 15:05:56 +01002120 else if (str2ip2(p, &sa, 0)) {
2121 if (is_addr(&newsrv->init_addr)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002122 ha_alert("parsing [%s:%d]: '%s' : initial address already specified, cannot add '%s'.\n",
Willy Tarreau4310d362016-11-02 15:05:56 +01002123 file, linenum, args[cur_arg], p);
2124 err_code |= ERR_ALERT | ERR_FATAL;
2125 goto out;
2126 }
2127 newsrv->init_addr = sa;
2128 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
2129 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002130 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002131 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 +02002132 file, linenum, args[cur_arg], p);
2133 err_code |= ERR_ALERT | ERR_FATAL;
2134 goto out;
2135 }
2136 if (!done) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002137 ha_alert("parsing [%s:%d]: '%s' : too many init-addr methods when trying to add '%s'\n",
Baptiste Assmann25938272016-09-21 20:26:16 +02002138 file, linenum, args[cur_arg], p);
2139 err_code |= ERR_ALERT | ERR_FATAL;
2140 goto out;
2141 }
2142 }
2143 cur_arg += 2;
2144 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002145 else if (!strcmp(args[cur_arg], "resolvers")) {
Frédéric Lécailledaa2fe62017-04-20 12:17:50 +02002146 free(newsrv->resolvers_id);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002147 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
2148 cur_arg += 2;
2149 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002150 else if (!strcmp(args[cur_arg], "resolve-opts")) {
2151 char *p, *end;
2152
2153 for (p = args[cur_arg + 1]; *p; p = end) {
2154 /* cut on next comma */
2155 for (end = p; *end && *end != ','; end++);
2156 if (*end)
2157 *(end++) = 0;
2158
2159 if (!strcmp(p, "allow-dup-ip")) {
2160 newsrv->dns_opts.accept_duplicate_ip = 1;
2161 }
Daniel Corbettf8716912019-11-17 09:48:56 -05002162 else if (!strcmp(p, "ignore-weight")) {
2163 newsrv->dns_opts.ignore_weight = 1;
2164 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002165 else if (!strcmp(p, "prevent-dup-ip")) {
2166 newsrv->dns_opts.accept_duplicate_ip = 0;
2167 }
2168 else {
Daniel Corbettf8716912019-11-17 09:48:56 -05002169 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 +02002170 file, linenum, args[cur_arg], p);
2171 err_code |= ERR_ALERT | ERR_FATAL;
2172 goto out;
2173 }
2174 }
2175
2176 cur_arg += 2;
2177 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002178 else if (!strcmp(args[cur_arg], "resolve-prefer")) {
2179 if (!strcmp(args[cur_arg + 1], "ipv4"))
Thierry Fournierada34842016-02-17 21:25:09 +01002180 newsrv->dns_opts.family_prio = AF_INET;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002181 else if (!strcmp(args[cur_arg + 1], "ipv6"))
Thierry Fournierada34842016-02-17 21:25:09 +01002182 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002183 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002184 ha_alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002185 file, linenum, args[cur_arg]);
2186 err_code |= ERR_ALERT | ERR_FATAL;
2187 goto out;
2188 }
2189 cur_arg += 2;
2190 }
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002191 else if (!strcmp(args[cur_arg], "resolve-net")) {
2192 char *p, *e;
2193 unsigned char mask;
2194 struct dns_options *opt;
2195
2196 if (!args[cur_arg + 1] || args[cur_arg + 1][0] == '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002197 ha_alert("parsing [%s:%d]: '%s' expects a list of networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002198 file, linenum, args[cur_arg]);
2199 err_code |= ERR_ALERT | ERR_FATAL;
2200 goto out;
2201 }
2202
2203 opt = &newsrv->dns_opts;
2204
2205 /* Split arguments by comma, and convert it from ipv4 or ipv6
2206 * string network in in_addr or in6_addr.
2207 */
2208 p = args[cur_arg + 1];
2209 e = p;
2210 while (*p != '\0') {
Joseph Herlant44466822018-11-15 08:57:51 -08002211 /* If no room available, return error. */
David Carlierd10025c2016-04-08 10:26:44 +01002212 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002213 ha_alert("parsing [%s:%d]: '%s' exceed %d networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002214 file, linenum, args[cur_arg], SRV_MAX_PREF_NET);
2215 err_code |= ERR_ALERT | ERR_FATAL;
2216 goto out;
2217 }
2218 /* look for end or comma. */
2219 while (*e != ',' && *e != '\0')
2220 e++;
2221 if (*e == ',') {
2222 *e = '\0';
2223 e++;
2224 }
2225 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
2226 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
2227 /* Try to convert input string from ipv4 or ipv6 network. */
2228 opt->pref_net[opt->pref_net_nb].family = AF_INET;
2229 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
2230 &mask)) {
2231 /* Try to convert input string from ipv6 network. */
2232 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
2233 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
2234 } else {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05002235 /* All network conversions fail, return error. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002236 ha_alert("parsing [%s:%d]: '%s': invalid network '%s'.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002237 file, linenum, args[cur_arg], p);
2238 err_code |= ERR_ALERT | ERR_FATAL;
2239 goto out;
2240 }
2241 opt->pref_net_nb++;
2242 p = e;
2243 }
2244
2245 cur_arg += 2;
2246 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002247 else if (!strcmp(args[cur_arg], "weight")) {
2248 int w;
2249 w = atol(args[cur_arg + 1]);
2250 if (w < 0 || w > SRV_UWGHT_MAX) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002251 ha_alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002252 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
2253 err_code |= ERR_ALERT | ERR_FATAL;
2254 goto out;
2255 }
2256 newsrv->uweight = newsrv->iweight = w;
2257 cur_arg += 2;
2258 }
Emeric Brun97556472020-05-30 01:42:45 +02002259 else if (!strcmp(args[cur_arg], "log-proto")) {
2260 if (!strcmp(args[cur_arg + 1], "legacy"))
2261 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
2262 else if (!strcmp(args[cur_arg + 1], "octet-count"))
2263 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
2264 else {
2265 ha_alert("parsing [%s:%d]: '%s' expects one of 'legacy' or "
2266 "'octet-count' but got '%s'\n",
2267 file, linenum, args[cur_arg], args[cur_arg + 1]);
2268 err_code |= ERR_ALERT | ERR_FATAL;
2269 goto out;
2270 }
2271 cur_arg += 2;
2272 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002273 else if (!strcmp(args[cur_arg], "minconn")) {
2274 newsrv->minconn = atol(args[cur_arg + 1]);
2275 cur_arg += 2;
2276 }
2277 else if (!strcmp(args[cur_arg], "maxconn")) {
2278 newsrv->maxconn = atol(args[cur_arg + 1]);
2279 cur_arg += 2;
2280 }
2281 else if (!strcmp(args[cur_arg], "maxqueue")) {
2282 newsrv->maxqueue = atol(args[cur_arg + 1]);
2283 cur_arg += 2;
2284 }
2285 else if (!strcmp(args[cur_arg], "slowstart")) {
2286 /* slowstart is stored in seconds */
2287 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02002288
2289 if (err == PARSE_TIME_OVER) {
2290 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).\n",
2291 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2292 err_code |= ERR_ALERT | ERR_FATAL;
2293 goto out;
2294 }
2295 else if (err == PARSE_TIME_UNDER) {
2296 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.\n",
2297 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2298 err_code |= ERR_ALERT | ERR_FATAL;
2299 goto out;
2300 }
2301 else if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002302 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002303 file, linenum, *err, newsrv->id);
2304 err_code |= ERR_ALERT | ERR_FATAL;
2305 goto out;
2306 }
2307 newsrv->slowstart = (val + 999) / 1000;
2308 cur_arg += 2;
2309 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002310 else if (!strcmp(args[cur_arg], "on-error")) {
2311 if (!strcmp(args[cur_arg + 1], "fastinter"))
2312 newsrv->onerror = HANA_ONERR_FASTINTER;
2313 else if (!strcmp(args[cur_arg + 1], "fail-check"))
2314 newsrv->onerror = HANA_ONERR_FAILCHK;
2315 else if (!strcmp(args[cur_arg + 1], "sudden-death"))
2316 newsrv->onerror = HANA_ONERR_SUDDTH;
2317 else if (!strcmp(args[cur_arg + 1], "mark-down"))
2318 newsrv->onerror = HANA_ONERR_MARKDWN;
2319 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002320 ha_alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
Willy Tarreau272adea2014-03-31 10:39:59 +02002321 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
2322 file, linenum, args[cur_arg], args[cur_arg + 1]);
2323 err_code |= ERR_ALERT | ERR_FATAL;
2324 goto out;
2325 }
2326
2327 cur_arg += 2;
2328 }
2329 else if (!strcmp(args[cur_arg], "on-marked-down")) {
2330 if (!strcmp(args[cur_arg + 1], "shutdown-sessions"))
2331 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
2332 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002333 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002334 file, linenum, args[cur_arg], args[cur_arg + 1]);
2335 err_code |= ERR_ALERT | ERR_FATAL;
2336 goto out;
2337 }
2338
2339 cur_arg += 2;
2340 }
2341 else if (!strcmp(args[cur_arg], "on-marked-up")) {
2342 if (!strcmp(args[cur_arg + 1], "shutdown-backup-sessions"))
2343 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
2344 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002345 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002346 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 }
2353 else if (!strcmp(args[cur_arg], "error-limit")) {
2354 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002355 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002356 file, linenum, args[cur_arg]);
2357 err_code |= ERR_ALERT | ERR_FATAL;
2358 goto out;
2359 }
2360
2361 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
2362
2363 if (newsrv->consecutive_errors_limit <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002364 ha_alert("parsing [%s:%d]: %s has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002365 file, linenum, args[cur_arg]);
2366 err_code |= ERR_ALERT | ERR_FATAL;
2367 goto out;
2368 }
2369 cur_arg += 2;
2370 }
Frédéric Lécaille8d083ed2017-04-14 15:19:56 +02002371 else if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside: needs "source" first */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002372 ha_alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002373 file, linenum, "usesrc", "source");
2374 err_code |= ERR_ALERT | ERR_FATAL;
2375 goto out;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002376 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002377 else {
2378 static int srv_dumped;
2379 struct srv_kw *kw;
2380 char *err;
2381
2382 kw = srv_find_kw(args[cur_arg]);
2383 if (kw) {
2384 char *err = NULL;
2385 int code;
2386
2387 if (!kw->parse) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002388 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 +02002389 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002390 if (kw->skip != -1)
2391 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002392 err_code |= ERR_ALERT | ERR_FATAL;
2393 goto out;
2394 }
2395
2396 if (defsrv && !kw->default_ok) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002397 ha_alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002398 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002399 if (kw->skip != -1)
2400 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002401 err_code |= ERR_ALERT;
2402 continue;
2403 }
2404
2405 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
2406 err_code |= code;
2407
2408 if (code) {
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002409 display_parser_err(file, linenum, args, cur_arg, code, &err);
Willy Tarreau272adea2014-03-31 10:39:59 +02002410 if (code & ERR_FATAL) {
2411 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002412 if (kw->skip != -1)
2413 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002414 goto out;
2415 }
2416 }
2417 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002418 if (kw->skip != -1)
2419 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002420 continue;
2421 }
2422
2423 err = NULL;
2424 if (!srv_dumped) {
2425 srv_dump_kws(&err);
2426 indent_msg(&err, 4);
2427 srv_dumped = 1;
2428 }
2429
Christopher Faulet767a84b2017-11-24 16:50:31 +01002430 ha_alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002431 file, linenum, args[0], args[1], args[cur_arg],
2432 err ? " Registered keywords :" : "", err ? err : "");
2433 free(err);
2434
2435 err_code |= ERR_ALERT | ERR_FATAL;
2436 goto out;
2437 }
2438 }
2439
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002440 if (!defsrv)
2441 err_code |= server_finalize_init(file, linenum, args, cur_arg, newsrv, curproxy);
2442 if (err_code & ERR_FATAL)
2443 goto out;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002444 if (srv_tmpl)
2445 server_template_init(newsrv, curproxy);
Willy Tarreau272adea2014-03-31 10:39:59 +02002446 }
Willy Tarreau07101d52015-09-08 16:16:35 +02002447 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002448 return 0;
2449
2450 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02002451 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002452 free(errmsg);
2453 return err_code;
2454}
2455
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002456/* Returns a pointer to the first server matching either id <id>.
2457 * NULL is returned if no match is found.
2458 * the lookup is performed in the backend <bk>
2459 */
2460struct server *server_find_by_id(struct proxy *bk, int id)
2461{
2462 struct eb32_node *eb32;
2463 struct server *curserver;
2464
2465 if (!bk || (id ==0))
2466 return NULL;
2467
2468 /* <bk> has no backend capabilities, so it can't have a server */
2469 if (!(bk->cap & PR_CAP_BE))
2470 return NULL;
2471
2472 curserver = NULL;
2473
2474 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2475 if (eb32)
2476 curserver = container_of(eb32, struct server, conf.id);
2477
2478 return curserver;
2479}
2480
2481/* Returns a pointer to the first server matching either name <name>, or id
2482 * if <name> starts with a '#'. NULL is returned if no match is found.
2483 * the lookup is performed in the backend <bk>
2484 */
2485struct server *server_find_by_name(struct proxy *bk, const char *name)
2486{
2487 struct server *curserver;
2488
2489 if (!bk || !name)
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 if (*name == '#') {
2498 curserver = server_find_by_id(bk, atoi(name + 1));
2499 if (curserver)
2500 return curserver;
2501 }
2502 else {
2503 curserver = bk->srv;
2504
2505 while (curserver && (strcmp(curserver->id, name) != 0))
2506 curserver = curserver->next;
2507
2508 if (curserver)
2509 return curserver;
2510 }
2511
2512 return NULL;
2513}
2514
2515struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2516{
2517 struct server *byname;
2518 struct server *byid;
2519
2520 if (!name && !id)
2521 return NULL;
2522
2523 if (diff)
2524 *diff = 0;
2525
2526 byname = byid = NULL;
2527
2528 if (name) {
2529 byname = server_find_by_name(bk, name);
2530 if (byname && (!id || byname->puid == id))
2531 return byname;
2532 }
2533
2534 /* remaining possibilities :
2535 * - name not set
2536 * - name set but not found
2537 * - name found but ID doesn't match
2538 */
2539 if (id) {
2540 byid = server_find_by_id(bk, id);
2541 if (byid) {
2542 if (byname) {
2543 /* use id only if forced by configuration */
2544 if (byid->flags & SRV_F_FORCED_ID) {
2545 if (diff)
2546 *diff |= 2;
2547 return byid;
2548 }
2549 else {
2550 if (diff)
2551 *diff |= 1;
2552 return byname;
2553 }
2554 }
2555
2556 /* remaining possibilities:
2557 * - name not set
2558 * - name set but not found
2559 */
2560 if (name && diff)
2561 *diff |= 2;
2562 return byid;
2563 }
2564
2565 /* id bot found */
2566 if (byname) {
2567 if (diff)
2568 *diff |= 1;
2569 return byname;
2570 }
2571 }
2572
2573 return NULL;
2574}
2575
Willy Tarreau46b7f532018-08-21 11:54:26 +02002576/* Update a server state using the parameters available in the params list.
2577 *
2578 * Grabs the server lock during operation.
2579 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002580static void srv_update_state(struct server *srv, int version, char **params)
2581{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002582 char *p;
Willy Tarreau83061a82018-07-13 11:56:34 +02002583 struct buffer *msg;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002584
2585 /* fields since version 1
2586 * and common to all other upcoming versions
2587 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002588 enum srv_state srv_op_state;
2589 enum srv_admin srv_admin_state;
2590 unsigned srv_uweight, srv_iweight;
2591 unsigned long srv_last_time_change;
2592 short srv_check_status;
2593 enum chk_result srv_check_result;
2594 int srv_check_health;
2595 int srv_check_state, srv_agent_state;
2596 int bk_f_forced_id;
2597 int srv_f_forced_id;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002598 int fqdn_set_by_cli;
2599 const char *fqdn;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002600 const char *port_str;
2601 unsigned int port;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002602 char *srvrecord;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002603
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002604 fqdn = NULL;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002605 port = 0;
Willy Tarreau31138fa2015-09-29 18:38:47 +02002606 msg = get_trash_chunk();
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002607 switch (version) {
2608 case 1:
2609 /*
2610 * now we can proceed with server's state update:
2611 * srv_addr: params[0]
2612 * srv_op_state: params[1]
2613 * srv_admin_state: params[2]
2614 * srv_uweight: params[3]
2615 * srv_iweight: params[4]
2616 * srv_last_time_change: params[5]
2617 * srv_check_status: params[6]
2618 * srv_check_result: params[7]
2619 * srv_check_health: params[8]
2620 * srv_check_state: params[9]
2621 * srv_agent_state: params[10]
2622 * bk_f_forced_id: params[11]
2623 * srv_f_forced_id: params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002624 * srv_fqdn: params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02002625 * srv_port: params[14]
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002626 * srvrecord: params[15]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002627 */
2628
2629 /* validating srv_op_state */
2630 p = NULL;
2631 errno = 0;
2632 srv_op_state = strtol(params[1], &p, 10);
2633 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
2634 (srv_op_state != SRV_ST_STOPPED &&
2635 srv_op_state != SRV_ST_STARTING &&
2636 srv_op_state != SRV_ST_RUNNING &&
2637 srv_op_state != SRV_ST_STOPPING)) {
2638 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
2639 }
2640
2641 /* validating srv_admin_state */
2642 p = NULL;
2643 errno = 0;
2644 srv_admin_state = strtol(params[2], &p, 10);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002645 fqdn_set_by_cli = !!(srv_admin_state & SRV_ADMF_HMAINT);
Willy Tarreau757478e2016-11-03 19:22:19 +01002646
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002647 /* inherited statuses will be recomputed later.
2648 * Also disable SRV_ADMF_HMAINT flag (set from stats socket fqdn).
2649 */
2650 srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_HMAINT;
Willy Tarreau757478e2016-11-03 19:22:19 +01002651
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002652 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
2653 (srv_admin_state != 0 &&
2654 srv_admin_state != SRV_ADMF_FMAINT &&
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002655 srv_admin_state != SRV_ADMF_CMAINT &&
2656 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
Willy Tarreaue1bde142016-11-03 18:33:25 +01002657 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FDRAIN) &&
Willy Tarreau757478e2016-11-03 19:22:19 +01002658 srv_admin_state != SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002659 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
2660 }
2661
2662 /* validating srv_uweight */
2663 p = NULL;
2664 errno = 0;
2665 srv_uweight = strtol(params[3], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002666 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002667 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
2668
2669 /* validating srv_iweight */
2670 p = NULL;
2671 errno = 0;
2672 srv_iweight = strtol(params[4], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002673 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002674 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
2675
2676 /* validating srv_last_time_change */
2677 p = NULL;
2678 errno = 0;
2679 srv_last_time_change = strtol(params[5], &p, 10);
2680 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2681 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
2682
2683 /* validating srv_check_status */
2684 p = NULL;
2685 errno = 0;
2686 srv_check_status = strtol(params[6], &p, 10);
2687 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2688 (srv_check_status >= HCHK_STATUS_SIZE))
2689 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
2690
2691 /* validating srv_check_result */
2692 p = NULL;
2693 errno = 0;
2694 srv_check_result = strtol(params[7], &p, 10);
2695 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2696 (srv_check_result != CHK_RES_UNKNOWN &&
2697 srv_check_result != CHK_RES_NEUTRAL &&
2698 srv_check_result != CHK_RES_FAILED &&
2699 srv_check_result != CHK_RES_PASSED &&
2700 srv_check_result != CHK_RES_CONDPASS)) {
2701 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2702 }
2703
2704 /* validating srv_check_health */
2705 p = NULL;
2706 errno = 0;
2707 srv_check_health = strtol(params[8], &p, 10);
2708 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2709 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
2710
2711 /* validating srv_check_state */
2712 p = NULL;
2713 errno = 0;
2714 srv_check_state = strtol(params[9], &p, 10);
2715 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2716 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2717 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
2718
2719 /* validating srv_agent_state */
2720 p = NULL;
2721 errno = 0;
2722 srv_agent_state = strtol(params[10], &p, 10);
2723 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2724 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2725 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
2726
2727 /* validating bk_f_forced_id */
2728 p = NULL;
2729 errno = 0;
2730 bk_f_forced_id = strtol(params[11], &p, 10);
2731 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
2732 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
2733
2734 /* validating srv_f_forced_id */
2735 p = NULL;
2736 errno = 0;
2737 srv_f_forced_id = strtol(params[12], &p, 10);
2738 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
2739 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
2740
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002741 /* validating srv_fqdn */
2742 fqdn = params[13];
2743 if (fqdn && *fqdn == '-')
2744 fqdn = NULL;
2745 if (fqdn && (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn))) {
2746 chunk_appendf(msg, ", invalid srv_fqdn value '%s'", params[13]);
2747 fqdn = NULL;
2748 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002749
Frédéric Lécaille31694712017-08-01 08:47:19 +02002750 port_str = params[14];
2751 if (port_str) {
2752 port = strl2uic(port_str, strlen(port_str));
2753 if (port > USHRT_MAX) {
2754 chunk_appendf(msg, ", invalid srv_port value '%s'", port_str);
2755 port_str = NULL;
2756 }
2757 }
2758
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002759 /* SRV record
2760 * NOTE: in HAProxy, SRV records must start with an underscore '_'
2761 */
2762 srvrecord = params[15];
2763 if (srvrecord && *srvrecord != '_')
2764 srvrecord = NULL;
2765
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002766 /* don't apply anything if one error has been detected */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002767 if (msg->data)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002768 goto out;
2769
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002770 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002771 /* recover operational state and apply it to this server
2772 * and all servers tracking this one */
Jérôme Magninf57afa42019-01-20 11:27:40 +01002773 srv->check.health = srv_check_health;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002774 switch (srv_op_state) {
2775 case SRV_ST_STOPPED:
2776 srv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02002777 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002778 break;
2779 case SRV_ST_STARTING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002780 /* If rise == 1 there is no STARTING state, let's switch to
2781 * RUNNING
2782 */
2783 if (srv->check.rise == 1) {
2784 srv->check.health = srv->check.rise + srv->check.fall - 1;
2785 srv_set_running(srv, "", NULL);
2786 break;
2787 }
2788 if (srv->check.health < 1 || srv->check.health >= srv->check.rise)
2789 srv->check.health = srv->check.rise - 1;
Emeric Brun52a91d32017-08-31 14:41:55 +02002790 srv->next_state = srv_op_state;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002791 break;
2792 case SRV_ST_STOPPING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002793 /* If fall == 1 there is no STOPPING state, let's switch to
2794 * STOPPED
2795 */
2796 if (srv->check.fall == 1) {
2797 srv->check.health = 0;
2798 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
2799 break;
2800 }
2801 if (srv->check.health < srv->check.rise ||
2802 srv->check.health > srv->check.rise + srv->check.fall - 2)
2803 srv->check.health = srv->check.rise;
Emeric Brun5a133512017-10-19 14:42:30 +02002804 srv_set_stopping(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002805 break;
2806 case SRV_ST_RUNNING:
2807 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02002808 srv_set_running(srv, "", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002809 break;
2810 }
2811
2812 /* When applying server state, the following rules apply:
2813 * - in case of a configuration change, we apply the setting from the new
2814 * configuration, regardless of old running state
2815 * - if no configuration change, we apply old running state only if old running
2816 * state is different from new configuration state
2817 */
2818 /* configuration has changed */
Emeric Brun52a91d32017-08-31 14:41:55 +02002819 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->next_admin & SRV_ADMF_CMAINT)) {
2820 if (srv->next_admin & SRV_ADMF_CMAINT)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002821 srv_adm_set_maint(srv);
2822 else
2823 srv_adm_set_ready(srv);
2824 }
2825 /* configuration is the same, let's compate old running state and new conf state */
2826 else {
Emeric Brun52a91d32017-08-31 14:41:55 +02002827 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002828 srv_adm_set_maint(srv);
Emeric Brun52a91d32017-08-31 14:41:55 +02002829 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002830 srv_adm_set_ready(srv);
2831 }
2832 /* apply drain mode if server is currently enabled */
Emeric Brun52a91d32017-08-31 14:41:55 +02002833 if (!(srv->next_admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002834 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
Willy Tarreau22cace22016-11-03 18:19:49 +01002835 * (srv->iweight is the weight set up in configuration).
2836 * There are two possible reasons for FDRAIN to have been present :
2837 * - previous config weight was zero
2838 * - "set server b/s drain" was sent to the CLI
2839 *
2840 * In the first case, we simply want to drop this drain state
2841 * if the new weight is not zero anymore, meaning the administrator
2842 * has intentionally turned the weight back to a positive value to
2843 * enable the server again after an operation. In the second case,
2844 * the drain state was forced on the CLI regardless of the config's
2845 * weight so we don't want a change to the config weight to lose this
2846 * status. What this means is :
2847 * - if previous weight was 0 and new one is >0, drop the DRAIN state.
2848 * - if the previous weight was >0, keep it.
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002849 */
Willy Tarreau22cace22016-11-03 18:19:49 +01002850 if (srv_iweight > 0 || srv->iweight == 0)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002851 srv_adm_set_drain(srv);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002852 }
2853
2854 srv->last_change = date.tv_sec - srv_last_time_change;
2855 srv->check.status = srv_check_status;
2856 srv->check.result = srv_check_result;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002857
2858 /* Only case we want to apply is removing ENABLED flag which could have been
2859 * done by the "disable health" command over the stats socket
2860 */
2861 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2862 (srv_check_state & CHK_ST_CONFIGURED) &&
2863 !(srv_check_state & CHK_ST_ENABLED))
2864 srv->check.state &= ~CHK_ST_ENABLED;
2865
2866 /* Only case we want to apply is removing ENABLED flag which could have been
2867 * done by the "disable agent" command over the stats socket
2868 */
2869 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
2870 (srv_agent_state & CHK_ST_CONFIGURED) &&
2871 !(srv_agent_state & CHK_ST_ENABLED))
2872 srv->agent.state &= ~CHK_ST_ENABLED;
2873
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002874 /* We want to apply the previous 'running' weight (srv_uweight) only if there
2875 * was no change in the configuration: both previous and new iweight are equals
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002876 *
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002877 * It means that a configuration file change has precedence over a unix socket change
2878 * for server's weight
2879 *
2880 * by default, HAProxy applies the following weight when parsing the configuration
2881 * srv->uweight = srv->iweight
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002882 */
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002883 if (srv_iweight == srv->iweight) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002884 srv->uweight = srv_uweight;
2885 }
Willy Tarreau3ff577e2018-08-02 11:48:52 +02002886 server_recalc_eweight(srv, 1);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002887
Willy Tarreaue5a60682016-11-09 14:54:53 +01002888 /* load server IP address */
Daniel Corbett9215ffa2018-05-19 19:43:24 -04002889 if (strcmp(params[0], "-"))
2890 srv->lastaddr = strdup(params[0]);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002891
2892 if (fqdn && srv->hostname) {
2893 if (!strcmp(srv->hostname, fqdn)) {
2894 /* Here we reset the 'set from stats socket FQDN' flag
2895 * to support such transitions:
2896 * Let's say initial FQDN value is foo1 (in configuration file).
2897 * - FQDN changed from stats socket, from foo1 to foo2 value,
2898 * - FQDN changed again from file configuration (with the same previous value
2899 set from stats socket, from foo1 to foo2 value),
2900 * - reload for any other reason than a FQDN modification,
2901 * the configuration file FQDN matches the fqdn server state file value.
2902 * So we must reset the 'set from stats socket FQDN' flag to be consistent with
Joseph Herlant44466822018-11-15 08:57:51 -08002903 * any further FQDN modification.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002904 */
Emeric Brun52a91d32017-08-31 14:41:55 +02002905 srv->next_admin &= ~SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002906 }
2907 else {
2908 /* If the FDQN has been changed from stats socket,
2909 * apply fqdn state file value (which is the value set
2910 * from stats socket).
Baptiste Assmann13a92322019-06-07 09:40:55 +02002911 * Also ensure the runtime resolver will process this resolution.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002912 */
2913 if (fqdn_set_by_cli) {
Olivier Houchardd16bfe62017-10-31 15:21:19 +01002914 srv_set_fqdn(srv, fqdn, 0);
Baptiste Assmann13a92322019-06-07 09:40:55 +02002915 srv->flags &= ~SRV_F_NO_RESOLUTION;
Emeric Brun52a91d32017-08-31 14:41:55 +02002916 srv->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002917 }
2918 }
2919 }
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002920 /* If all the conditions below are validated, this means
2921 * we're evaluating a server managed by SRV resolution
2922 */
2923 else if (fqdn && !srv->hostname && srvrecord) {
2924 int res;
2925
2926 /* we can't apply previous state if SRV record has changed */
2927 if (srv->srvrq && strcmp(srv->srvrq->name, srvrecord) != 0) {
2928 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);
2929 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2930 goto out;
2931 }
2932
2933 /* create or find a SRV resolution for this srv record */
2934 if (srv->srvrq == NULL && (srv->srvrq = find_srvrq_by_name(srvrecord, srv->proxy)) == NULL)
2935 srv->srvrq = new_dns_srvrq(srv, srvrecord);
2936 if (srv->srvrq == NULL) {
2937 chunk_appendf(msg, ", can't create or find SRV resolution '%s' for server '%s'", srvrecord, srv->id);
2938 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2939 goto out;
2940 }
2941
2942 /* prepare DNS resolution for this server */
2943 res = srv_prepare_for_resolution(srv, fqdn);
2944 if (res == -1) {
2945 chunk_appendf(msg, ", can't allocate memory for DNS resolution for server '%s'", srv->id);
2946 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2947 goto out;
2948 }
2949
2950 /* configure check.port accordingly */
2951 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2952 !(srv->flags & SRV_F_CHECKPORT))
2953 srv->check.port = port;
2954
2955 /* Unset SRV_F_MAPPORTS for SRV records.
2956 * SRV_F_MAPPORTS is unfortunately set by parse_server()
2957 * because no ports are provided in the configuration file.
2958 * This is because HAProxy will use the port found into the SRV record.
2959 */
2960 srv->flags &= ~SRV_F_MAPPORTS;
2961 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002962
Frédéric Lécaille31694712017-08-01 08:47:19 +02002963 if (port_str)
2964 srv->svc_port = port;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002965 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Frédéric Lécaille31694712017-08-01 08:47:19 +02002966
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002967 break;
2968 default:
2969 chunk_appendf(msg, ", version '%d' not supported", version);
2970 }
2971
2972 out:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002973 if (msg->data) {
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002974 chunk_appendf(msg, "\n");
Christopher Faulet767a84b2017-11-24 16:50:31 +01002975 ha_warning("server-state application failed for server '%s/%s'%s",
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002976 srv->proxy->id, srv->id, msg->area);
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002977 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002978}
2979
Baptiste Assmannda29fe22019-06-13 13:24:29 +02002980
2981/*
2982 * read next line from file <f> and return the server state version if one found.
2983 * If no version is found, then 0 is returned
2984 * Note that this should be the first read on <f>
2985 */
2986static int srv_state_get_version(FILE *f) {
2987 char buf[2];
2988 int ret;
2989
2990 /* first character of first line of the file must contain the version of the export */
2991 if (fgets(buf, 2, f) == NULL) {
2992 return 0;
2993 }
2994
2995 ret = atoi(buf);
2996 if ((ret < SRV_STATE_FILE_VERSION_MIN) ||
2997 (ret > SRV_STATE_FILE_VERSION_MAX))
2998 return 0;
2999
3000 return ret;
3001}
3002
3003
3004/*
3005 * parses server state line stored in <buf> and supposedly in version <version>.
3006 * Set <params> and <srv_params> accordingly.
3007 * In case of error, params[0] is set to NULL.
3008 */
3009static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params)
3010{
3011 int buflen, arg, srv_arg;
3012 char *cur, *end;
3013
3014 buflen = strlen(buf);
3015 cur = buf;
3016 end = cur + buflen;
3017
3018 /* we need at least one character */
3019 if (buflen == 0) {
3020 params[0] = NULL;
3021 return;
3022 }
3023
3024 /* ignore blank characters at the beginning of the line */
Willy Tarreau90807112020-02-25 08:16:33 +01003025 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003026 ++cur;
3027
3028 /* Ignore empty or commented lines */
3029 if (cur == end || *cur == '#') {
3030 params[0] = NULL;
3031 return;
3032 }
3033
3034 /* truncated lines */
3035 if (buf[buflen - 1] != '\n') {
3036 //ha_warning("server-state file '%s': truncated line\n", filepath);
3037 params[0] = NULL;
3038 return;
3039 }
3040
3041 /* Removes trailing '\n' */
3042 buf[buflen - 1] = '\0';
3043
3044 /* we're now ready to move the line into *srv_params[] */
3045 params[0] = cur;
3046 arg = 1;
3047 srv_arg = 0;
3048 while (*cur && arg < SRV_STATE_FILE_MAX_FIELDS) {
Willy Tarreau90807112020-02-25 08:16:33 +01003049 if (isspace((unsigned char)*cur)) {
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003050 *cur = '\0';
3051 ++cur;
Willy Tarreau90807112020-02-25 08:16:33 +01003052 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003053 ++cur;
3054 switch (version) {
3055 case 1:
3056 /*
3057 * srv_addr: params[4] => srv_params[0]
3058 * srv_op_state: params[5] => srv_params[1]
3059 * srv_admin_state: params[6] => srv_params[2]
3060 * srv_uweight: params[7] => srv_params[3]
3061 * srv_iweight: params[8] => srv_params[4]
3062 * srv_last_time_change: params[9] => srv_params[5]
3063 * srv_check_status: params[10] => srv_params[6]
3064 * srv_check_result: params[11] => srv_params[7]
3065 * srv_check_health: params[12] => srv_params[8]
3066 * srv_check_state: params[13] => srv_params[9]
3067 * srv_agent_state: params[14] => srv_params[10]
3068 * bk_f_forced_id: params[15] => srv_params[11]
3069 * srv_f_forced_id: params[16] => srv_params[12]
3070 * srv_fqdn: params[17] => srv_params[13]
3071 * srv_port: params[18] => srv_params[14]
3072 * srvrecord: params[19] => srv_params[15]
3073 */
3074 if (arg >= 4) {
3075 srv_params[srv_arg] = cur;
3076 ++srv_arg;
3077 }
3078 break;
3079 }
3080
3081 params[arg] = cur;
3082 ++arg;
3083 }
3084 else {
3085 ++cur;
3086 }
3087 }
3088
3089 /* if line is incomplete line, then ignore it.
3090 * otherwise, update useful flags */
3091 switch (version) {
3092 case 1:
3093 if (arg < SRV_STATE_FILE_NB_FIELDS_VERSION_1) {
3094 params[0] = NULL;
3095 return;
3096 }
3097 break;
3098 }
3099
3100 return;
3101}
3102
3103
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003104/* This function parses all the proxies and only take care of the backends (since we're looking for server)
3105 * For each proxy, it does the following:
3106 * - opens its server state file (either one or local one)
3107 * - read whole file, line by line
3108 * - analyse each line to check if it matches our current backend:
3109 * - backend name matches
3110 * - backend id matches if id is forced and name doesn't match
3111 * - if the server pointed by the line is found, then state is applied
3112 *
3113 * If the running backend uuid or id differs from the state file, then HAProxy reports
3114 * a warning.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003115 *
3116 * Grabs the server's lock via srv_update_state().
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003117 */
3118void apply_server_state(void)
3119{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003120 char mybuf[SRV_STATE_LINE_MAXLEN];
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003121 char *params[SRV_STATE_FILE_MAX_FIELDS] = {0};
3122 char *srv_params[SRV_STATE_FILE_MAX_FIELDS] = {0};
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003123 int version, global_file_version;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003124 FILE *f;
3125 char *filepath;
3126 char globalfilepath[MAXPATHLEN + 1];
3127 char localfilepath[MAXPATHLEN + 1];
3128 int len, fileopenerr, globalfilepathlen, localfilepathlen;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003129 struct proxy *curproxy, *bk;
3130 struct server *srv;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003131 char *line;
3132 char *bkname, *srvname;
3133 struct state_line *st;
3134 struct ebmb_node *node, *next_node;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003135
Willy Tarreau2d067f92020-07-16 06:40:27 +02003136 f = NULL;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003137 global_file_version = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003138 globalfilepathlen = 0;
3139 /* create the globalfilepath variable */
3140 if (global.server_state_file) {
3141 /* absolute path or no base directory provided */
3142 if ((global.server_state_file[0] == '/') || (!global.server_state_base)) {
3143 len = strlen(global.server_state_file);
3144 if (len > MAXPATHLEN) {
3145 globalfilepathlen = 0;
3146 goto globalfileerror;
3147 }
3148 memcpy(globalfilepath, global.server_state_file, len);
3149 globalfilepath[len] = '\0';
3150 globalfilepathlen = len;
3151 }
3152 else if (global.server_state_base) {
3153 len = strlen(global.server_state_base);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003154 if (len > MAXPATHLEN) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003155 globalfilepathlen = 0;
3156 goto globalfileerror;
3157 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003158 memcpy(globalfilepath, global.server_state_base, len);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003159 globalfilepath[len] = 0;
3160 globalfilepathlen = len;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003161
3162 /* append a slash if needed */
3163 if (!globalfilepathlen || globalfilepath[globalfilepathlen - 1] != '/') {
3164 if (globalfilepathlen + 1 > MAXPATHLEN) {
3165 globalfilepathlen = 0;
3166 goto globalfileerror;
3167 }
3168 globalfilepath[globalfilepathlen++] = '/';
3169 }
3170
3171 len = strlen(global.server_state_file);
3172 if (globalfilepathlen + len > MAXPATHLEN) {
3173 globalfilepathlen = 0;
3174 goto globalfileerror;
3175 }
3176 memcpy(globalfilepath + globalfilepathlen, global.server_state_file, len);
3177 globalfilepathlen += len;
3178 globalfilepath[globalfilepathlen++] = 0;
3179 }
3180 }
3181 globalfileerror:
3182 if (globalfilepathlen == 0)
3183 globalfilepath[0] = '\0';
3184
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003185 /* Load global server state in a tree */
3186 if (globalfilepathlen > 0) {
3187 errno = 0;
3188 f = fopen(globalfilepath, "r");
3189 if (errno)
3190 ha_warning("Can't open global server state file '%s': %s\n", globalfilepath, strerror(errno));
Vedran Furac5d486272019-10-16 14:49:38 +02003191 if (!f)
3192 goto out_load_server_state_in_tree;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003193
3194 global_file_version = srv_state_get_version(f);
3195 if (global_file_version == 0)
3196 goto out_load_server_state_in_tree;
3197
3198 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3199 line = NULL;
3200
3201 line = strdup(mybuf);
3202 if (line == NULL)
3203 continue;
3204
3205 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3206 if (params[0] == NULL)
Willy Tarreauca7a5af2019-12-20 17:26:27 +01003207 goto nextline;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003208
3209 /* bkname */
3210 bkname = params[1];
3211 /* srvname */
3212 srvname = params[3];
3213
3214 /* key */
3215 chunk_printf(&trash, "%s %s", bkname, srvname);
3216
3217 /* store line in tree */
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003218 st = calloc(1, sizeof(*st) + trash.data + 1);
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003219 if (st == NULL) {
3220 goto nextline;
3221 }
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003222 memcpy(st->name_name.key, trash.area, trash.data + 1);
Willy Tarreaufd1aa012019-12-20 17:23:40 +01003223 if (ebst_insert(&state_file, &st->name_name) != &st->name_name) {
3224 /* this is a duplicate key, probably a hand-crafted file,
3225 * drop it!
3226 */
3227 goto nextline;
3228 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003229
3230 /* save line */
3231 st->line = line;
3232
3233 continue;
3234
3235 nextline:
3236 /* free up memory in case of error during the processing of the line */
3237 free(line);
3238 }
3239 }
3240 out_load_server_state_in_tree:
3241
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003242 if (f) {
3243 fclose(f);
3244 f = NULL;
3245 }
3246
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003247 /* parse all proxies and load states form tree (global file) or from local file */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003248 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003249 /* servers are only in backends */
3250 if (!(curproxy->cap & PR_CAP_BE))
3251 continue;
3252 fileopenerr = 0;
3253 filepath = NULL;
3254
3255 /* search server state file path and name */
3256 switch (curproxy->load_server_state_from_file) {
3257 /* read servers state from global file */
3258 case PR_SRV_STATE_FILE_GLOBAL:
3259 /* there was an error while generating global server state file path */
3260 if (globalfilepathlen == 0)
3261 continue;
3262 filepath = globalfilepath;
3263 fileopenerr = 1;
3264 break;
3265 /* this backend has its own file */
3266 case PR_SRV_STATE_FILE_LOCAL:
3267 localfilepathlen = 0;
3268 localfilepath[0] = '\0';
3269 len = 0;
3270 /* create the localfilepath variable */
3271 /* absolute path or no base directory provided */
3272 if ((curproxy->server_state_file_name[0] == '/') || (!global.server_state_base)) {
3273 len = strlen(curproxy->server_state_file_name);
3274 if (len > MAXPATHLEN) {
3275 localfilepathlen = 0;
3276 goto localfileerror;
3277 }
3278 memcpy(localfilepath, curproxy->server_state_file_name, len);
3279 localfilepath[len] = '\0';
3280 localfilepathlen = len;
3281 }
3282 else if (global.server_state_base) {
3283 len = strlen(global.server_state_base);
3284 localfilepathlen += len;
3285
3286 if (localfilepathlen > MAXPATHLEN) {
3287 localfilepathlen = 0;
3288 goto localfileerror;
3289 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003290 memcpy(localfilepath, global.server_state_base, len);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003291 localfilepath[localfilepathlen] = 0;
3292
3293 /* append a slash if needed */
3294 if (!localfilepathlen || localfilepath[localfilepathlen - 1] != '/') {
3295 if (localfilepathlen + 1 > MAXPATHLEN) {
3296 localfilepathlen = 0;
3297 goto localfileerror;
3298 }
3299 localfilepath[localfilepathlen++] = '/';
3300 }
3301
3302 len = strlen(curproxy->server_state_file_name);
3303 if (localfilepathlen + len > MAXPATHLEN) {
3304 localfilepathlen = 0;
3305 goto localfileerror;
3306 }
3307 memcpy(localfilepath + localfilepathlen, curproxy->server_state_file_name, len);
3308 localfilepathlen += len;
3309 localfilepath[localfilepathlen++] = 0;
3310 }
3311 filepath = localfilepath;
3312 localfileerror:
3313 if (localfilepathlen == 0)
3314 localfilepath[0] = '\0';
3315
3316 break;
3317 case PR_SRV_STATE_FILE_NONE:
3318 default:
3319 continue;
3320 }
3321
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003322 /* when global file is used, we get data from the tree
3323 * Note that in such case we don't check backend name neither uuid.
3324 * Backend name can't be wrong since it's used as a key to retrieve the server state
3325 * line from the tree.
3326 */
3327 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_GLOBAL) {
3328 struct server *srv = curproxy->srv;
3329 while (srv) {
3330 struct ebmb_node *node;
3331 struct state_line *st;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003332
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003333 chunk_printf(&trash, "%s %s", curproxy->id, srv->id);
3334 node = ebst_lookup(&state_file, trash.area);
3335 if (!node)
3336 goto next;
Dragan Dosencf4fb032015-11-04 23:03:26 +01003337
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003338 st = container_of(node, struct state_line, name_name);
3339 memcpy(mybuf, st->line, strlen(st->line));
3340 mybuf[strlen(st->line)] = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003341
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003342 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3343 if (params[0] == NULL)
3344 goto next;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003345
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003346 srv_update_state(srv, global_file_version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003347
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003348 next:
3349 srv = srv->next;
3350 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003351
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003352 continue; /* next proxy in list */
3353 }
3354 else {
3355 /* load 'local' state file */
3356 errno = 0;
3357 f = fopen(filepath, "r");
3358 if (errno && fileopenerr)
3359 ha_warning("Can't open server state file '%s': %s\n", filepath, strerror(errno));
3360 if (!f)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003361 continue;
3362
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003363 mybuf[0] = '\0';
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003364
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003365 /* first character of first line of the file must contain the version of the export */
3366 version = srv_state_get_version(f);
3367 if (version == 0) {
3368 ha_warning("Can't get version of the server state file '%s'\n", filepath);
3369 goto fileclose;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003370 }
3371
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003372 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3373 int bk_f_forced_id = 0;
3374 int check_id = 0;
3375 int check_name = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003376
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003377 srv_state_parse_line(mybuf, version, params, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003378
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003379 if (params[0] == NULL) {
3380 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003381 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003382
3383 /* if line is incomplete line, then ignore it.
3384 * otherwise, update useful flags */
3385 switch (version) {
3386 case 1:
3387 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
3388 check_id = (atoi(params[0]) == curproxy->uuid);
3389 check_name = (strcmp(curproxy->id, params[1]) == 0);
3390 break;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003391 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003392
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003393 bk = curproxy;
3394
3395 /* if backend can't be found, let's continue */
3396 if (!check_id && !check_name)
3397 continue;
3398 else if (!check_id && check_name) {
3399 ha_warning("backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3400 send_log(bk, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3401 }
3402 else if (check_id && !check_name) {
3403 ha_warning("backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3404 send_log(bk, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3405 /* if name doesn't match, we still want to update curproxy if the backend id
3406 * was forced in previous the previous configuration */
3407 if (!bk_f_forced_id)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003408 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003409 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003410
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003411 /* look for the server by its name: param[3] */
3412 srv = server_find_best_match(bk, params[3], 0, NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003413
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003414 if (!srv) {
3415 /* if no server found, then warning and continue with next line */
3416 ha_warning("can't find server '%s' in backend '%s'\n",
3417 params[3], params[1]);
3418 send_log(bk, LOG_NOTICE, "can't find server '%s' in backend '%s'\n",
3419 params[3], params[1]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003420 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003421 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003422
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003423 /* now we can proceed with server's state update */
3424 srv_update_state(srv, version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003425 }
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003426
3427 fileclose:
3428 fclose(f);
3429
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003430 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003431 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003432
3433 /* now free memory allocated for the tree */
3434 for (node = ebmb_first(&state_file), next_node = node ? ebmb_next(node) : NULL;
3435 node;
3436 node = next_node, next_node = node ? ebmb_next(node) : NULL) {
3437 st = container_of(node, struct state_line, name_name);
3438 ebmb_delete(&st->name_name);
3439 free(st->line);
3440 free(st);
3441 }
3442
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003443}
3444
Simon Horman7d09b9a2013-02-12 10:45:51 +09003445/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003446 * update a server's current IP address.
3447 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3448 * ip is in network format.
3449 * updater is a string which contains an information about the requester of the update.
3450 * updater is used if not NULL.
3451 *
3452 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003453 *
3454 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003455 */
Thierry Fournierd35b7a62016-02-24 08:23:22 +01003456int update_server_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003457{
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +02003458 /* save the new IP family & address if necessary */
3459 switch (ip_sin_family) {
3460 case AF_INET:
3461 if (s->addr.ss_family == ip_sin_family &&
3462 !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4))
3463 return 0;
3464 break;
3465 case AF_INET6:
3466 if (s->addr.ss_family == ip_sin_family &&
3467 !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16))
3468 return 0;
3469 break;
3470 };
3471
Baptiste Assmann14e40142015-04-14 01:13:07 +02003472 /* generates a log line and a warning on stderr */
3473 if (1) {
3474 /* book enough space for both IPv4 and IPv6 */
3475 char oldip[INET6_ADDRSTRLEN];
3476 char newip[INET6_ADDRSTRLEN];
3477
3478 memset(oldip, '\0', INET6_ADDRSTRLEN);
3479 memset(newip, '\0', INET6_ADDRSTRLEN);
3480
3481 /* copy old IP address in a string */
3482 switch (s->addr.ss_family) {
3483 case AF_INET:
3484 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3485 break;
3486 case AF_INET6:
3487 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3488 break;
Christopher Fauletb0b76072020-09-08 10:38:40 +02003489 default:
3490 strcpy(oldip, "(none)");
3491 break;
Baptiste Assmann14e40142015-04-14 01:13:07 +02003492 };
3493
3494 /* copy new IP address in a string */
3495 switch (ip_sin_family) {
3496 case AF_INET:
3497 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3498 break;
3499 case AF_INET6:
3500 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3501 break;
3502 };
3503
3504 /* save log line into a buffer */
3505 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3506 s->proxy->id, s->id, oldip, newip, updater);
3507
3508 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003509 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003510
3511 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003512 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003513 }
3514
3515 /* save the new IP family */
3516 s->addr.ss_family = ip_sin_family;
3517 /* save the new IP address */
3518 switch (ip_sin_family) {
3519 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003520 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003521 break;
3522 case AF_INET6:
3523 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3524 break;
3525 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003526 srv_set_dyncookie(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003527
3528 return 0;
3529}
3530
3531/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003532 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3533 *
3534 * Caller can pass its name through <updater> to get it integrated in the response message
3535 * returned by the function.
3536 *
3537 * The function first does the following, in that order:
3538 * - validates the new addr and/or port
3539 * - checks if an update is required (new IP or port is different than current ones)
3540 * - checks the update is allowed:
3541 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3542 * - allow all changes if no CHECKS are configured
3543 * - if CHECK is configured:
3544 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3545 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3546 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003547 *
3548 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003549 */
3550const char *update_server_addr_port(struct server *s, const char *addr, const char *port, char *updater)
3551{
3552 struct sockaddr_storage sa;
3553 int ret, port_change_required;
3554 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003555 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003556 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003557 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003558
3559 msg = get_trash_chunk();
3560 chunk_reset(msg);
3561
3562 if (addr) {
3563 memset(&sa, 0, sizeof(struct sockaddr_storage));
3564 if (str2ip2(addr, &sa, 0) == NULL) {
3565 chunk_printf(msg, "Invalid addr '%s'", addr);
3566 goto out;
3567 }
3568
3569 /* changes are allowed on AF_INET* families only */
3570 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3571 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3572 goto out;
3573 }
3574
3575 /* collecting data currently setup */
3576 memset(current_addr, '\0', sizeof(current_addr));
3577 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3578 /* changes are allowed on AF_INET* families only */
3579 if ((ret != AF_INET) && (ret != AF_INET6)) {
3580 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3581 goto out;
3582 }
3583
3584 /* applying ADDR changes if required and allowed
3585 * ipcmp returns 0 when both ADDR are the same
3586 */
3587 if (ipcmp(&s->addr, &sa) == 0) {
3588 chunk_appendf(msg, "no need to change the addr");
3589 goto port;
3590 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003591 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003592 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003593
3594 /* we also need to update check's ADDR only if it uses the server's one */
3595 if ((s->check.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_CHECKADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003596 ipcpy(&sa, &s->check.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003597 }
3598
3599 /* we also need to update agent ADDR only if it use the server's one */
3600 if ((s->agent.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_AGENTADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003601 ipcpy(&sa, &s->agent.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003602 }
3603
3604 /* update report for caller */
3605 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3606 }
3607
3608 port:
3609 if (port) {
3610 char sign = '\0';
3611 char *endptr;
3612
3613 if (addr)
3614 chunk_appendf(msg, ", ");
3615
3616 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003617 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003618
3619 /* check if PORT change is required */
3620 port_change_required = 0;
3621
3622 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003623 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003624 new_port = strtol(port, &endptr, 10);
3625 if ((errno != 0) || (port == endptr)) {
3626 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3627 goto out;
3628 }
3629
3630 /* check if caller triggers a port mapped or offset */
3631 if (sign == '-' || (sign == '+')) {
3632 /* check if server currently uses port map */
3633 if (!(s->flags & SRV_F_MAPPORTS)) {
3634 /* switch from fixed port to port map mandatorily triggers
3635 * a port change */
3636 port_change_required = 1;
3637 /* check is configured
3638 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3639 * prevent PORT change if check doesn't have it's dedicated port while switching
3640 * to port mapping */
3641 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3642 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.");
3643 goto out;
3644 }
3645 }
3646 /* we're already using port maps */
3647 else {
3648 port_change_required = current_port != new_port;
3649 }
3650 }
3651 /* fixed port */
3652 else {
3653 port_change_required = current_port != new_port;
3654 }
3655
3656 /* applying PORT changes if required and update response message */
3657 if (port_change_required) {
3658 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003659 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003660 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003661
3662 /* prepare message */
3663 chunk_appendf(msg, "port changed from '");
3664 if (s->flags & SRV_F_MAPPORTS)
3665 chunk_appendf(msg, "+");
3666 chunk_appendf(msg, "%d' to '", current_port);
3667
3668 if (sign == '-') {
3669 s->flags |= SRV_F_MAPPORTS;
3670 chunk_appendf(msg, "%c", sign);
3671 /* just use for result output */
3672 new_port = -new_port;
3673 }
3674 else if (sign == '+') {
3675 s->flags |= SRV_F_MAPPORTS;
3676 chunk_appendf(msg, "%c", sign);
3677 }
3678 else {
3679 s->flags &= ~SRV_F_MAPPORTS;
3680 }
3681
3682 chunk_appendf(msg, "%d'", new_port);
3683
3684 /* we also need to update health checks port only if it uses server's realport */
3685 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3686 s->check.port = new_port;
3687 }
3688 }
3689 else {
3690 chunk_appendf(msg, "no need to change the port");
3691 }
3692 }
3693
3694out:
William Dauchy6318d332020-05-02 21:52:36 +02003695 if (changed) {
3696 /* force connection cleanup on the given server */
3697 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003698 srv_set_dyncookie(s);
William Dauchy6318d332020-05-02 21:52:36 +02003699 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003700 if (updater)
3701 chunk_appendf(msg, " by '%s'", updater);
3702 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003703 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003704}
3705
3706
3707/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003708 * update server status based on result of name resolution
3709 * returns:
3710 * 0 if server status is updated
3711 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003712 *
3713 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003714 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003715int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003716{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003717 struct dns_resolvers *resolvers = s->resolvers;
3718 struct dns_resolution *resolution = s->dns_requester->resolution;
3719 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003720
Jerome Magnin012261a2020-07-28 13:38:22 +02003721 /* If resolution is NULL we're dealing with SRV records Additional records */
3722 if (resolution == NULL) {
Baptiste Assmann87138c32020-08-04 10:57:21 +02003723 /* since this server has an IP, it can go back in production */
3724 if (has_no_ip == 0) {
3725 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3726 return 1;
3727 }
3728
Jerome Magnin012261a2020-07-28 13:38:22 +02003729 if (s->next_admin & SRV_ADMF_RMAINT)
3730 return 1;
3731
3732 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record");
3733 return 0;
3734 }
3735
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003736 switch (resolution->status) {
3737 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003738 /* status when HAProxy has just (re)started.
3739 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003740 break;
3741
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003742 case RSLV_STATUS_VALID:
3743 /*
3744 * resume health checks
3745 * server will be turned back on if health check is safe
3746 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003747 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003748 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003749 return 1;
3750 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3751 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003752 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003753 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003754
Emeric Brun52a91d32017-08-31 14:41:55 +02003755 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003756 return 1;
3757 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3758 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3759 s->proxy->id, s->id);
3760
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003761 ha_warning("%s.\n", trash.area);
3762 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003763 return 0;
3764
3765 case RSLV_STATUS_NX:
3766 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003767 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3768 if (!tick_is_expired(exp, now_ms))
3769 break;
3770
3771 if (s->next_admin & SRV_ADMF_RMAINT)
3772 return 1;
3773 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3774 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003775
3776 case RSLV_STATUS_TIMEOUT:
3777 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003778 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3779 if (!tick_is_expired(exp, now_ms))
3780 break;
3781
3782 if (s->next_admin & SRV_ADMF_RMAINT)
3783 return 1;
3784 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3785 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003786
3787 case RSLV_STATUS_REFUSED:
3788 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003789 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3790 if (!tick_is_expired(exp, now_ms))
3791 break;
3792
3793 if (s->next_admin & SRV_ADMF_RMAINT)
3794 return 1;
3795 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3796 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003797
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003798 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003799 /* stop server if resolution failed for a long enough period */
3800 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3801 if (!tick_is_expired(exp, now_ms))
3802 break;
3803
3804 if (s->next_admin & SRV_ADMF_RMAINT)
3805 return 1;
3806 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3807 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003808 }
3809
3810 return 1;
3811}
3812
3813/*
3814 * Server Name Resolution valid response callback
3815 * It expects:
3816 * - <nameserver>: the name server which answered the valid response
3817 * - <response>: buffer containing a valid DNS response
3818 * - <response_len>: size of <response>
3819 * It performs the following actions:
3820 * - ignore response if current ip found and server family not met
3821 * - update with first new ip found if family is met and current IP is not found
3822 * returns:
3823 * 0 on error
3824 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003825 *
3826 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003827 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003828int snr_resolution_cb(struct dns_requester *requester, struct dns_nameserver *nameserver)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003829{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003830 struct server *s = NULL;
3831 struct dns_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003832 void *serverip, *firstip;
3833 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003834 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003835 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003836 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003837
Christopher Faulet67957bd2017-09-27 11:00:59 +02003838 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003839 if (!s)
3840 return 1;
3841
Christopher Faulet67957bd2017-09-27 11:00:59 +02003842 resolution = s->dns_requester->resolution;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003843
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003844 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003845 firstip = NULL; /* pointer to the first valid response found */
3846 /* it will be used as the new IP if a change is required */
3847 firstip_sin_family = AF_UNSPEC;
3848 serverip = NULL; /* current server IP address */
3849
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003850 /* initializing server IP pointer */
3851 server_sin_family = s->addr.ss_family;
3852 switch (server_sin_family) {
3853 case AF_INET:
3854 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3855 break;
3856
3857 case AF_INET6:
3858 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3859 break;
3860
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003861 case AF_UNSPEC:
3862 break;
3863
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003864 default:
3865 goto invalid;
3866 }
3867
Baptiste Assmann729c9012017-05-22 15:13:10 +02003868 ret = dns_get_ip_from_response(&resolution->response, &s->dns_opts,
Thierry Fournierada34842016-02-17 21:25:09 +01003869 serverip, server_sin_family, &firstip,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003870 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003871
3872 switch (ret) {
3873 case DNS_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003874 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003875
3876 case DNS_UPD_SRVIP_NOT_FOUND:
3877 goto save_ip;
3878
3879 case DNS_UPD_CNAME:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003880 goto invalid;
3881
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003882 case DNS_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003883 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003884 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003885
Baptiste Assmannfad03182015-10-28 02:03:32 +01003886 case DNS_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003887 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003888 resolution->status = RSLV_STATUS_OTHER;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003889 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003890
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003891 default:
3892 goto invalid;
3893
3894 }
3895
3896 save_ip:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003897 if (nameserver) {
3898 nameserver->counters.update++;
3899 /* save the first ip we found */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003900 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003901 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003902 else
3903 chunk_printf(chk, "DNS cache");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003904 update_server_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003905
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003906 update_status:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003907 snr_update_srv_status(s, has_no_ip);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003908 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003909
3910 invalid:
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003911 if (nameserver) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02003912 nameserver->counters.invalid++;
3913 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003914 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003915 snr_update_srv_status(s, has_no_ip);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003916 return 0;
3917}
3918
3919/*
3920 * Server Name Resolution error management callback
3921 * returns:
3922 * 0 on error
3923 * 1 when no error or safe ignore
Willy Tarreau46b7f532018-08-21 11:54:26 +02003924 *
3925 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003926 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003927int snr_resolution_error_cb(struct dns_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003928{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003929 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003930
Christopher Faulet67957bd2017-09-27 11:00:59 +02003931 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003932 if (!s)
3933 return 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003934 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003935 snr_update_srv_status(s, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003936 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003937 return 1;
3938}
3939
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003940/*
3941 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003942 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003943 * It returns a pointer to the first server found or NULL if <ip> is not yet
3944 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003945 *
3946 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003947 */
3948struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3949{
3950 struct server *tmpsrv;
3951 struct proxy *be;
3952
3953 if (!srv)
3954 return NULL;
3955
3956 be = srv->proxy;
3957 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003958 /* we found the current server is the same, ignore it */
3959 if (srv == tmpsrv)
3960 continue;
3961
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003962 /* We want to compare the IP in the record with the IP of the servers in the
3963 * same backend, only if:
3964 * * DNS resolution is enabled on the server
3965 * * the hostname used for the resolution by our server is the same than the
3966 * one used for the server found in the backend
3967 * * the server found in the backend is not our current server
3968 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003969 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003970 if ((tmpsrv->hostname_dn == NULL) ||
3971 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
3972 (strcmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01003973 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003974 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003975 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003976 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003977
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003978 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01003979 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003980 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003981 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003982 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003983
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003984 /* At this point, we have 2 different servers using the same DNS hostname
3985 * for their respective resolution.
3986 */
3987 if (*ip_family == tmpsrv->addr.ss_family &&
3988 ((tmpsrv->addr.ss_family == AF_INET &&
3989 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
3990 (tmpsrv->addr.ss_family == AF_INET6 &&
3991 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003992 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003993 return tmpsrv;
3994 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003995 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003996 }
3997
Emeric Brune9fd6b52017-11-02 17:20:39 +01003998
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003999 return NULL;
4000}
4001
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004002/* Sets the server's address (srv->addr) from srv->hostname using the libc's
4003 * resolver. This is suited for initial address configuration. Returns 0 on
4004 * success otherwise a non-zero error code. In case of error, *err_code, if
4005 * not NULL, is filled up.
4006 */
4007int srv_set_addr_via_libc(struct server *srv, int *err_code)
4008{
4009 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004010 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01004011 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004012 return 1;
4013 }
4014 return 0;
4015}
4016
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004017/* Set the server's FDQN (->hostname) from <hostname>.
4018 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004019 *
4020 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004021 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004022int srv_set_fqdn(struct server *srv, const char *hostname, int dns_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004023{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004024 struct dns_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004025 char *hostname_dn;
4026 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004027
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02004028 /* Note that the server lock is already held. */
4029 if (!srv->resolvers)
4030 return -1;
4031
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004032 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004033 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004034 /* run time DNS resolution was not active for this server
4035 * and we can't enable it at run time for now.
4036 */
4037 if (!srv->dns_requester)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004038 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004039
4040 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004041 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004042 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004043 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
4044 hostname_dn, trash.size);
4045 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004046 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004047
Christopher Faulet67957bd2017-09-27 11:00:59 +02004048 resolution = srv->dns_requester->resolution;
4049 if (resolution &&
4050 resolution->hostname_dn &&
4051 !strcmp(resolution->hostname_dn, hostname_dn))
Christopher Fauletb2812a62017-10-04 16:17:58 +02004052 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004053
Christopher Faulet67957bd2017-09-27 11:00:59 +02004054 dns_unlink_resolution(srv->dns_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004055
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004056 free(srv->hostname);
4057 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004058 srv->hostname = strdup(hostname);
4059 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004060 srv->hostname_dn_len = hostname_dn_len;
4061 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004062 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004063
Baptiste Assmann13a92322019-06-07 09:40:55 +02004064 if (srv->flags & SRV_F_NO_RESOLUTION)
4065 goto end;
4066
Olivier Houchard55dcdf42017-11-06 15:15:04 +01004067 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004068 goto err;
4069
4070 end:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004071 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004072 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004073 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02004074
4075 err:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004076 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004077 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02004078 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004079}
4080
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004081/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
4082 * from the state file. This is suited for initial address configuration.
4083 * Returns 0 on success otherwise a non-zero error code. In case of error,
4084 * *err_code, if not NULL, is filled up.
4085 */
4086static int srv_apply_lastaddr(struct server *srv, int *err_code)
4087{
4088 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
4089 if (err_code)
4090 *err_code |= ERR_WARN;
4091 return 1;
4092 }
4093 return 0;
4094}
4095
Willy Tarreau25e51522016-11-04 15:10:17 +01004096/* returns 0 if no error, otherwise a combination of ERR_* flags */
4097static int srv_iterate_initaddr(struct server *srv)
4098{
4099 int return_code = 0;
4100 int err_code;
4101 unsigned int methods;
4102
4103 methods = srv->init_addr_methods;
4104 if (!methods) { // default to "last,libc"
4105 srv_append_initaddr(&methods, SRV_IADDR_LAST);
4106 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
4107 }
4108
Willy Tarreau3eed10e2016-11-07 21:03:16 +01004109 /* "-dr" : always append "none" so that server addresses resolution
4110 * failures are silently ignored, this is convenient to validate some
4111 * configs out of their environment.
4112 */
4113 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
4114 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4115
Willy Tarreau25e51522016-11-04 15:10:17 +01004116 while (methods) {
4117 err_code = 0;
4118 switch (srv_get_next_initaddr(&methods)) {
4119 case SRV_IADDR_LAST:
4120 if (!srv->lastaddr)
4121 continue;
4122 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004123 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004124 return_code |= err_code;
4125 break;
4126
4127 case SRV_IADDR_LIBC:
4128 if (!srv->hostname)
4129 continue;
4130 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004131 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004132 return_code |= err_code;
4133 break;
4134
Willy Tarreau37ebe122016-11-04 15:17:58 +01004135 case SRV_IADDR_NONE:
4136 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004137 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004138 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
4139 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004140 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01004141 return return_code;
4142
Willy Tarreau4310d362016-11-02 15:05:56 +01004143 case SRV_IADDR_IP:
4144 ipcpy(&srv->init_addr, &srv->addr);
4145 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004146 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', falling back to configured address.\n",
4147 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
Willy Tarreau4310d362016-11-02 15:05:56 +01004148 }
Olivier Houchard4e694042017-03-14 20:01:29 +01004149 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01004150
Willy Tarreau25e51522016-11-04 15:10:17 +01004151 default: /* unhandled method */
4152 break;
4153 }
4154 }
4155
4156 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004157 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Willy Tarreau25e51522016-11-04 15:10:17 +01004158 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
4159 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01004160 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004161 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Willy Tarreau465b6e52016-11-07 19:19:22 +01004162 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
4163 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004164
4165 return_code |= ERR_ALERT | ERR_FATAL;
4166 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01004167out:
4168 srv_set_dyncookie(srv);
4169 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01004170}
4171
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004172/*
4173 * This function parses all backends and all servers within each backend
4174 * and performs servers' addr resolution based on information provided by:
4175 * - configuration file
4176 * - server-state file (states provided by an 'old' haproxy process)
4177 *
4178 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
4179 */
4180int srv_init_addr(void)
4181{
4182 struct proxy *curproxy;
4183 int return_code = 0;
4184
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004185 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004186 while (curproxy) {
4187 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004188
4189 /* servers are in backend only */
4190 if (!(curproxy->cap & PR_CAP_BE))
4191 goto srv_init_addr_next;
4192
Willy Tarreau25e51522016-11-04 15:10:17 +01004193 for (srv = curproxy->srv; srv; srv = srv->next)
Willy Tarreau3d609a72017-09-06 14:22:45 +02004194 if (srv->hostname)
4195 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004196
4197 srv_init_addr_next:
4198 curproxy = curproxy->next;
4199 }
4200
4201 return return_code;
4202}
4203
Willy Tarreau46b7f532018-08-21 11:54:26 +02004204/*
4205 * Must be called with the server lock held.
4206 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004207const char *update_server_fqdn(struct server *server, const char *fqdn, const char *updater, int dns_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004208{
4209
Willy Tarreau83061a82018-07-13 11:56:34 +02004210 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004211
4212 msg = get_trash_chunk();
4213 chunk_reset(msg);
4214
Olivier Houchard8da5f982017-08-04 18:35:36 +02004215 if (server->hostname && !strcmp(fqdn, server->hostname)) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004216 chunk_appendf(msg, "no need to change the FDQN");
4217 goto out;
4218 }
4219
4220 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4221 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4222 goto out;
4223 }
4224
4225 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4226 server->proxy->id, server->id, server->hostname, fqdn);
4227
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004228 if (srv_set_fqdn(server, fqdn, dns_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004229 chunk_reset(msg);
4230 chunk_appendf(msg, "could not update %s/%s FQDN",
4231 server->proxy->id, server->id);
4232 goto out;
4233 }
4234
4235 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004236 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004237
4238 out:
4239 if (updater)
4240 chunk_appendf(msg, " by '%s'", updater);
4241 chunk_appendf(msg, "\n");
4242
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004243 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004244}
4245
4246
Willy Tarreau21b069d2016-11-23 17:15:08 +01004247/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4248 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004249 * 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 +01004250 * used for CLI commands requiring a server name.
4251 * Important: the <arg> is modified to remove the '/'.
4252 */
4253struct server *cli_find_server(struct appctx *appctx, char *arg)
4254{
4255 struct proxy *px;
4256 struct server *sv;
4257 char *line;
4258
4259 /* split "backend/server" and make <line> point to server */
4260 for (line = arg; *line; line++)
4261 if (*line == '/') {
4262 *line++ = '\0';
4263 break;
4264 }
4265
4266 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004267 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004268 return NULL;
4269 }
4270
4271 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004272 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004273 return NULL;
4274 }
4275
4276 if (px->state == PR_STSTOPPED) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004277 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004278 return NULL;
4279 }
4280
4281 return sv;
4282}
4283
William Lallemand222baf22016-11-19 02:00:33 +01004284
Willy Tarreau46b7f532018-08-21 11:54:26 +02004285/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004286static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004287{
4288 struct server *sv;
4289 const char *warning;
4290
4291 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4292 return 1;
4293
4294 sv = cli_find_server(appctx, args[2]);
4295 if (!sv)
4296 return 1;
4297
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004298 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02004299
William Lallemand222baf22016-11-19 02:00:33 +01004300 if (strcmp(args[3], "weight") == 0) {
4301 warning = server_parse_weight_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004302 if (warning)
4303 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004304 }
4305 else if (strcmp(args[3], "state") == 0) {
4306 if (strcmp(args[4], "ready") == 0)
4307 srv_adm_set_ready(sv);
4308 else if (strcmp(args[4], "drain") == 0)
4309 srv_adm_set_drain(sv);
4310 else if (strcmp(args[4], "maint") == 0)
4311 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02004312 else
4313 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004314 }
4315 else if (strcmp(args[3], "health") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004316 if (sv->track)
4317 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004318 else if (strcmp(args[4], "up") == 0) {
4319 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004320 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004321 }
4322 else if (strcmp(args[4], "stopping") == 0) {
4323 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004324 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004325 }
4326 else if (strcmp(args[4], "down") == 0) {
4327 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004328 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004329 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004330 else
4331 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004332 }
4333 else if (strcmp(args[3], "agent") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004334 if (!(sv->agent.state & CHK_ST_ENABLED))
4335 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004336 else if (strcmp(args[4], "up") == 0) {
4337 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004338 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004339 }
4340 else if (strcmp(args[4], "down") == 0) {
4341 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004342 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004343 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004344 else
4345 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004346 }
Misiek2da082d2017-01-09 09:40:42 +01004347 else if (strcmp(args[3], "agent-addr") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004348 if (!(sv->agent.state & CHK_ST_ENABLED))
4349 cli_err(appctx, "agent checks are not enabled on this server.\n");
4350 else if (str2ip(args[4], &sv->agent.addr) == NULL)
4351 cli_err(appctx, "incorrect addr address given for agent.\n");
Misiek2da082d2017-01-09 09:40:42 +01004352 }
4353 else if (strcmp(args[3], "agent-send") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004354 if (!(sv->agent.state & CHK_ST_ENABLED))
4355 cli_err(appctx, "agent checks are not enabled on this server.\n");
4356 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004357 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004358 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004359 }
4360 }
William Lallemand222baf22016-11-19 02:00:33 +01004361 else if (strcmp(args[3], "check-port") == 0) {
4362 int i = 0;
4363 if (strl2irc(args[4], strlen(args[4]), &i) != 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004364 cli_err(appctx, "'set server <srv> check-port' expects an integer as argument.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004365 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004366 }
4367 if ((i < 0) || (i > 65535)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004368 cli_err(appctx, "provided port is not valid.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004369 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004370 }
4371 /* prevent the update of port to 0 if MAPPORTS are in use */
4372 if ((sv->flags & SRV_F_MAPPORTS) && (i == 0)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004373 cli_err(appctx, "can't unset 'port' since MAPPORTS is in use.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004374 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004375 }
4376 sv->check.port = i;
Willy Tarreau9d008692019-08-09 11:21:01 +02004377 cli_msg(appctx, LOG_NOTICE, "health check port updated.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004378 }
4379 else if (strcmp(args[3], "addr") == 0) {
4380 char *addr = NULL;
4381 char *port = NULL;
4382 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004383 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004384 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004385 }
4386 else {
4387 addr = args[4];
4388 }
4389 if (strcmp(args[5], "port") == 0) {
4390 port = args[6];
4391 }
4392 warning = update_server_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004393 if (warning)
4394 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004395 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
4396 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004397 else if (strcmp(args[3], "fqdn") == 0) {
4398 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004399 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004400 goto out_unlock;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004401 }
Baptiste Assmann13a92322019-06-07 09:40:55 +02004402 /* ensure runtime resolver will process this new fqdn */
4403 if (sv->flags & SRV_F_NO_RESOLUTION) {
4404 sv->flags &= ~SRV_F_NO_RESOLUTION;
4405 }
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004406 warning = update_server_fqdn(sv, args[4], "stats socket command", 0);
Willy Tarreau9d008692019-08-09 11:21:01 +02004407 if (warning)
4408 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004409 }
William Lallemand222baf22016-11-19 02:00:33 +01004410 else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004411 cli_err(appctx,
4412 "'set server <srv>' only supports 'agent', 'health', 'state',"
4413 " 'weight', 'addr', 'fqdn' and 'check-port'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004414 }
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004415 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004416 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004417 return 1;
4418}
4419
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004420static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004421{
4422 struct stream_interface *si = appctx->owner;
4423 struct proxy *px;
4424 struct server *sv;
4425 char *line;
4426
4427
4428 /* split "backend/server" and make <line> point to server */
4429 for (line = args[2]; *line; line++)
4430 if (*line == '/') {
4431 *line++ = '\0';
4432 break;
4433 }
4434
Willy Tarreau9d008692019-08-09 11:21:01 +02004435 if (!*line)
4436 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004437
Willy Tarreau9d008692019-08-09 11:21:01 +02004438 if (!get_backend_server(args[2], line, &px, &sv))
4439 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004440
4441 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004442 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4443 sv->iweight);
4444 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004445 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004446 return 0;
4447 }
William Lallemand6b160942016-11-22 12:34:35 +01004448 return 1;
4449}
4450
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004451/* Parse a "set weight" command.
4452 *
4453 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004454 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004455static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +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
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004467 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4468
William Lallemand6b160942016-11-22 12:34:35 +01004469 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004470 if (warning)
4471 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004472
4473 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4474
William Lallemand6b160942016-11-22 12:34:35 +01004475 return 1;
4476}
4477
Willy Tarreau46b7f532018-08-21 11:54:26 +02004478/* parse a "set maxconn server" command. It always returns 1.
4479 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004480 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004481 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004482static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004483{
4484 struct server *sv;
4485 const char *warning;
4486
4487 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4488 return 1;
4489
4490 sv = cli_find_server(appctx, args[3]);
4491 if (!sv)
4492 return 1;
4493
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004494 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4495
Willy Tarreaub8026272016-11-23 11:26:56 +01004496 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004497 if (warning)
4498 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004499
4500 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4501
Willy Tarreaub8026272016-11-23 11:26:56 +01004502 return 1;
4503}
William Lallemand6b160942016-11-22 12:34:35 +01004504
Willy Tarreau46b7f532018-08-21 11:54:26 +02004505/* parse a "disable agent" command. It always returns 1.
4506 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004507 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004508 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004509static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004510{
4511 struct server *sv;
4512
4513 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4514 return 1;
4515
4516 sv = cli_find_server(appctx, args[2]);
4517 if (!sv)
4518 return 1;
4519
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004520 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004521 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004522 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004523 return 1;
4524}
4525
Willy Tarreau46b7f532018-08-21 11:54:26 +02004526/* parse a "disable health" command. It always returns 1.
4527 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004528 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004529 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004530static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004531{
4532 struct server *sv;
4533
4534 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4535 return 1;
4536
4537 sv = cli_find_server(appctx, args[2]);
4538 if (!sv)
4539 return 1;
4540
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004541 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004542 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004543 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004544 return 1;
4545}
4546
Willy Tarreau46b7f532018-08-21 11:54:26 +02004547/* parse a "disable server" command. It always returns 1.
4548 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004549 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004550 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004551static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004552{
4553 struct server *sv;
4554
4555 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4556 return 1;
4557
4558 sv = cli_find_server(appctx, args[2]);
4559 if (!sv)
4560 return 1;
4561
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004562 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004563 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004564 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004565 return 1;
4566}
4567
Willy Tarreau46b7f532018-08-21 11:54:26 +02004568/* parse a "enable agent" command. It always returns 1.
4569 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004570 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004571 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004572static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004573{
4574 struct server *sv;
4575
4576 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4577 return 1;
4578
4579 sv = cli_find_server(appctx, args[2]);
4580 if (!sv)
4581 return 1;
4582
Willy Tarreau9d008692019-08-09 11:21:01 +02004583 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4584 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004585
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004586 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004587 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004588 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004589 return 1;
4590}
4591
Willy Tarreau46b7f532018-08-21 11:54:26 +02004592/* parse a "enable health" command. It always returns 1.
4593 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004594 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004595 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004596static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004597{
4598 struct server *sv;
4599
4600 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4601 return 1;
4602
4603 sv = cli_find_server(appctx, args[2]);
4604 if (!sv)
4605 return 1;
4606
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004607 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004608 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004609 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004610 return 1;
4611}
4612
Willy Tarreau46b7f532018-08-21 11:54:26 +02004613/* parse a "enable server" command. It always returns 1.
4614 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004615 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004616 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004617static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004618{
4619 struct server *sv;
4620
4621 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4622 return 1;
4623
4624 sv = cli_find_server(appctx, args[2]);
4625 if (!sv)
4626 return 1;
4627
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004628 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004629 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004630 if (!(sv->flags & SRV_F_COOKIESET)
4631 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4632 sv->cookie)
4633 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004634 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004635 return 1;
4636}
4637
William Lallemand222baf22016-11-19 02:00:33 +01004638/* register cli keywords */
4639static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004640 { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004641 { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004642 { { "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 +01004643 { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004644 { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004645 { { "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 +01004646 { { "set", "maxconn", "server", NULL }, "set maxconn server : change a server's maxconn setting", cli_parse_set_maxconn_server, NULL },
William Lallemand222baf22016-11-19 02:00:33 +01004647 { { "set", "server", NULL }, "set server : change a server's state, weight or address", cli_parse_set_server },
William Lallemand6b160942016-11-22 12:34:35 +01004648 { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight },
4649 { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight },
4650
William Lallemand222baf22016-11-19 02:00:33 +01004651 {{},}
4652}};
4653
Willy Tarreau0108d902018-11-25 19:14:37 +01004654INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004655
Emeric Brun64cc49c2017-10-03 14:46:45 +02004656/*
4657 * This function applies server's status changes, it is
4658 * is designed to be called asynchronously.
4659 *
Willy Tarreau46b7f532018-08-21 11:54:26 +02004660 * Must be called with the server lock held.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004661 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004662static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004663{
4664 struct check *check = &s->check;
4665 int xferred;
4666 struct proxy *px = s->proxy;
4667 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4668 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4669 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004670 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004671
Emeric Brun64cc49c2017-10-03 14:46:45 +02004672 /* If currently main is not set we try to apply pending state changes */
4673 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4674 int next_admin;
4675
4676 /* Backup next admin */
4677 next_admin = s->next_admin;
4678
4679 /* restore current admin state */
4680 s->next_admin = s->cur_admin;
4681
4682 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4683 s->last_change = now.tv_sec;
4684 if (s->proxy->lbprm.set_server_status_down)
4685 s->proxy->lbprm.set_server_status_down(s);
4686
4687 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4688 srv_shutdown_streams(s, SF_ERR_DOWN);
4689
4690 /* we might have streams queued on this server and waiting for
4691 * a connection. Those which are redispatchable will be queued
4692 * to another server or to the proxy itself.
4693 */
4694 xferred = pendconn_redistribute(s);
4695
4696 tmptrash = alloc_trash_chunk();
4697 if (tmptrash) {
4698 chunk_printf(tmptrash,
4699 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4700 s->proxy->id, s->id);
4701
Emeric Brun5a133512017-10-19 14:42:30 +02004702 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004703 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004704
4705 /* we don't send an alert if the server was previously paused */
4706 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004707 send_log(s->proxy, log_level, "%s.\n",
4708 tmptrash->area);
4709 send_email_alert(s, log_level, "%s",
4710 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004711 free_trash_chunk(tmptrash);
4712 tmptrash = NULL;
4713 }
4714 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4715 set_backend_down(s->proxy);
4716
4717 s->counters.down_trans++;
4718 }
4719 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4720 s->last_change = now.tv_sec;
4721 if (s->proxy->lbprm.set_server_status_down)
4722 s->proxy->lbprm.set_server_status_down(s);
4723
4724 /* we might have streams queued on this server and waiting for
4725 * a connection. Those which are redispatchable will be queued
4726 * to another server or to the proxy itself.
4727 */
4728 xferred = pendconn_redistribute(s);
4729
4730 tmptrash = alloc_trash_chunk();
4731 if (tmptrash) {
4732 chunk_printf(tmptrash,
4733 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4734 s->proxy->id, s->id);
4735
Emeric Brun5a133512017-10-19 14:42:30 +02004736 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004737
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004738 ha_warning("%s.\n", tmptrash->area);
4739 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4740 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004741 free_trash_chunk(tmptrash);
4742 tmptrash = NULL;
4743 }
4744
4745 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4746 set_backend_down(s->proxy);
4747 }
4748 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4749 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4750 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4751 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4752 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4753 s->proxy->last_change = now.tv_sec;
4754 }
4755
4756 if (s->next_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
4757 s->down_time += now.tv_sec - s->last_change;
4758
4759 s->last_change = now.tv_sec;
4760 if (s->next_state == SRV_ST_STARTING)
4761 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4762
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004763 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004764 /* now propagate the status change to any LB algorithms */
4765 if (px->lbprm.update_server_eweight)
4766 px->lbprm.update_server_eweight(s);
4767 else if (srv_willbe_usable(s)) {
4768 if (px->lbprm.set_server_status_up)
4769 px->lbprm.set_server_status_up(s);
4770 }
4771 else {
4772 if (px->lbprm.set_server_status_down)
4773 px->lbprm.set_server_status_down(s);
4774 }
4775
4776 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4777 * and it's not a backup server and its effective weight is > 0,
4778 * then it can accept new connections, so we shut down all streams
4779 * on all backup servers.
4780 */
4781 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4782 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4783 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4784
4785 /* check if we can handle some connections queued at the proxy. We
4786 * will take as many as we can handle.
4787 */
4788 xferred = pendconn_grab_from_px(s);
4789
4790 tmptrash = alloc_trash_chunk();
4791 if (tmptrash) {
4792 chunk_printf(tmptrash,
4793 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
4794 s->proxy->id, s->id);
4795
Emeric Brun5a133512017-10-19 14:42:30 +02004796 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004797 ha_warning("%s.\n", tmptrash->area);
4798 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4799 tmptrash->area);
4800 send_email_alert(s, LOG_NOTICE, "%s",
4801 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004802 free_trash_chunk(tmptrash);
4803 tmptrash = NULL;
4804 }
4805
4806 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4807 set_backend_down(s->proxy);
4808 }
4809 else if (s->cur_eweight != s->next_eweight) {
4810 /* now propagate the status change to any LB algorithms */
4811 if (px->lbprm.update_server_eweight)
4812 px->lbprm.update_server_eweight(s);
4813 else if (srv_willbe_usable(s)) {
4814 if (px->lbprm.set_server_status_up)
4815 px->lbprm.set_server_status_up(s);
4816 }
4817 else {
4818 if (px->lbprm.set_server_status_down)
4819 px->lbprm.set_server_status_down(s);
4820 }
4821
4822 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4823 set_backend_down(s->proxy);
4824 }
4825
4826 s->next_admin = next_admin;
4827 }
4828
Emeric Brun5a133512017-10-19 14:42:30 +02004829 /* reset operational state change */
4830 *s->op_st_chg.reason = 0;
4831 s->op_st_chg.status = s->op_st_chg.code = -1;
4832 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004833
4834 /* Now we try to apply pending admin changes */
4835
4836 /* Maintenance must also disable health checks */
4837 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
4838 if (s->check.state & CHK_ST_ENABLED) {
4839 s->check.state |= CHK_ST_PAUSED;
4840 check->health = 0;
4841 }
4842
4843 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02004844 tmptrash = alloc_trash_chunk();
4845 if (tmptrash) {
4846 chunk_printf(tmptrash,
4847 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
4848 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4849 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02004850
Olivier Houchard796a2b32017-10-24 17:42:47 +02004851 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02004852
Olivier Houchard796a2b32017-10-24 17:42:47 +02004853 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004854 ha_warning("%s.\n", tmptrash->area);
4855 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4856 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02004857 }
4858 free_trash_chunk(tmptrash);
4859 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004860 }
Emeric Brun8f298292017-12-06 16:47:17 +01004861 /* commit new admin status */
4862
4863 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004864 }
4865 else { /* server was still running */
4866 check->health = 0; /* failure */
4867 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01004868
4869 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004870 if (s->proxy->lbprm.set_server_status_down)
4871 s->proxy->lbprm.set_server_status_down(s);
4872
Emeric Brun64cc49c2017-10-03 14:46:45 +02004873 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4874 srv_shutdown_streams(s, SF_ERR_DOWN);
4875
William Dauchy6318d332020-05-02 21:52:36 +02004876 /* force connection cleanup on the given server */
4877 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004878 /* we might have streams queued on this server and waiting for
4879 * a connection. Those which are redispatchable will be queued
4880 * to another server or to the proxy itself.
4881 */
4882 xferred = pendconn_redistribute(s);
4883
4884 tmptrash = alloc_trash_chunk();
4885 if (tmptrash) {
4886 chunk_printf(tmptrash,
4887 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
4888 s->flags & SRV_F_BACKUP ? "Backup " : "",
4889 s->proxy->id, s->id,
4890 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
4891
4892 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
4893
4894 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004895 ha_warning("%s.\n", tmptrash->area);
4896 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
4897 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004898 }
4899 free_trash_chunk(tmptrash);
4900 tmptrash = NULL;
4901 }
4902 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4903 set_backend_down(s->proxy);
4904
4905 s->counters.down_trans++;
4906 }
4907 }
4908 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
4909 /* OK here we're leaving maintenance, we have many things to check,
4910 * because the server might possibly be coming back up depending on
4911 * its state. In practice, leaving maintenance means that we should
4912 * immediately turn to UP (more or less the slowstart) under the
4913 * following conditions :
4914 * - server is neither checked nor tracked
4915 * - server tracks another server which is not checked
4916 * - server tracks another server which is already up
4917 * Which sums up as something simpler :
4918 * "either the tracking server is up or the server's checks are disabled
4919 * or up". Otherwise we only re-enable health checks. There's a special
4920 * case associated to the stopping state which can be inherited. Note
4921 * that the server might still be in drain mode, which is naturally dealt
4922 * with by the lower level functions.
4923 */
4924
4925 if (s->check.state & CHK_ST_ENABLED) {
4926 s->check.state &= ~CHK_ST_PAUSED;
4927 check->health = check->rise; /* start OK but check immediately */
4928 }
4929
4930 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
4931 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
4932 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
4933 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
4934 s->next_state = SRV_ST_STOPPING;
4935 }
4936 else {
4937 s->next_state = SRV_ST_STARTING;
4938 if (s->slowstart > 0)
4939 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4940 else
4941 s->next_state = SRV_ST_RUNNING;
4942 }
4943
4944 }
4945
4946 tmptrash = alloc_trash_chunk();
4947 if (tmptrash) {
4948 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
4949 chunk_printf(tmptrash,
4950 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
4951 s->flags & SRV_F_BACKUP ? "Backup " : "",
4952 s->proxy->id, s->id,
4953 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4954 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4955 }
4956 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
4957 chunk_printf(tmptrash,
4958 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
4959 s->flags & SRV_F_BACKUP ? "Backup " : "",
4960 s->proxy->id, s->id, s->hostname,
4961 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4962 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4963 }
4964 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
4965 chunk_printf(tmptrash,
4966 "%sServer %s/%s is %s/%s (leaving maintenance)",
4967 s->flags & SRV_F_BACKUP ? "Backup " : "",
4968 s->proxy->id, s->id,
4969 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4970 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4971 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004972 ha_warning("%s.\n", tmptrash->area);
4973 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4974 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004975 free_trash_chunk(tmptrash);
4976 tmptrash = NULL;
4977 }
4978
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004979 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004980 /* now propagate the status change to any LB algorithms */
4981 if (px->lbprm.update_server_eweight)
4982 px->lbprm.update_server_eweight(s);
4983 else if (srv_willbe_usable(s)) {
4984 if (px->lbprm.set_server_status_up)
4985 px->lbprm.set_server_status_up(s);
4986 }
4987 else {
4988 if (px->lbprm.set_server_status_down)
4989 px->lbprm.set_server_status_down(s);
4990 }
4991
4992 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4993 set_backend_down(s->proxy);
4994
Willy Tarreau6a78e612018-08-07 10:14:53 +02004995 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4996 * and it's not a backup server and its effective weight is > 0,
4997 * then it can accept new connections, so we shut down all streams
4998 * on all backup servers.
4999 */
5000 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5001 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5002 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5003
5004 /* check if we can handle some connections queued at the proxy. We
5005 * will take as many as we can handle.
5006 */
5007 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005008 }
5009 else if (s->next_admin & SRV_ADMF_MAINT) {
5010 /* remaining in maintenance mode, let's inform precisely about the
5011 * situation.
5012 */
5013 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5014 tmptrash = alloc_trash_chunk();
5015 if (tmptrash) {
5016 chunk_printf(tmptrash,
5017 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5018 s->flags & SRV_F_BACKUP ? "Backup " : "",
5019 s->proxy->id, s->id);
5020
5021 if (s->track) /* normally it's mandatory here */
5022 chunk_appendf(tmptrash, " via %s/%s",
5023 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005024 ha_warning("%s.\n", tmptrash->area);
5025 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5026 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005027 free_trash_chunk(tmptrash);
5028 tmptrash = NULL;
5029 }
5030 }
5031 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5032 tmptrash = alloc_trash_chunk();
5033 if (tmptrash) {
5034 chunk_printf(tmptrash,
5035 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5036 s->flags & SRV_F_BACKUP ? "Backup " : "",
5037 s->proxy->id, s->id, s->hostname);
5038
5039 if (s->track) /* normally it's mandatory here */
5040 chunk_appendf(tmptrash, " via %s/%s",
5041 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005042 ha_warning("%s.\n", tmptrash->area);
5043 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5044 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005045 free_trash_chunk(tmptrash);
5046 tmptrash = NULL;
5047 }
5048 }
5049 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5050 tmptrash = alloc_trash_chunk();
5051 if (tmptrash) {
5052 chunk_printf(tmptrash,
5053 "%sServer %s/%s remains in forced maintenance",
5054 s->flags & SRV_F_BACKUP ? "Backup " : "",
5055 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005056 ha_warning("%s.\n", tmptrash->area);
5057 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5058 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005059 free_trash_chunk(tmptrash);
5060 tmptrash = NULL;
5061 }
5062 }
5063 /* don't report anything when leaving drain mode and remaining in maintenance */
5064
5065 s->cur_admin = s->next_admin;
5066 }
5067
5068 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5069 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5070 /* drain state is applied only if not yet in maint */
5071
5072 s->last_change = now.tv_sec;
5073 if (px->lbprm.set_server_status_down)
5074 px->lbprm.set_server_status_down(s);
5075
5076 /* we might have streams queued on this server and waiting for
5077 * a connection. Those which are redispatchable will be queued
5078 * to another server or to the proxy itself.
5079 */
5080 xferred = pendconn_redistribute(s);
5081
5082 tmptrash = alloc_trash_chunk();
5083 if (tmptrash) {
5084 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5085 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5086 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5087
5088 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5089
5090 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005091 ha_warning("%s.\n", tmptrash->area);
5092 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5093 tmptrash->area);
5094 send_email_alert(s, LOG_NOTICE, "%s",
5095 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005096 }
5097 free_trash_chunk(tmptrash);
5098 tmptrash = NULL;
5099 }
5100
5101 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5102 set_backend_down(s->proxy);
5103 }
5104 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5105 /* OK completely leaving drain mode */
5106 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5107 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5108 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5109 s->proxy->last_change = now.tv_sec;
5110 }
5111
5112 if (s->last_change < now.tv_sec) // ignore negative times
5113 s->down_time += now.tv_sec - s->last_change;
5114 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005115 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005116
5117 tmptrash = alloc_trash_chunk();
5118 if (tmptrash) {
5119 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5120 chunk_printf(tmptrash,
5121 "%sServer %s/%s is %s (leaving forced drain)",
5122 s->flags & SRV_F_BACKUP ? "Backup " : "",
5123 s->proxy->id, s->id,
5124 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5125 }
5126 else {
5127 chunk_printf(tmptrash,
5128 "%sServer %s/%s is %s (leaving drain)",
5129 s->flags & SRV_F_BACKUP ? "Backup " : "",
5130 s->proxy->id, s->id,
5131 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5132 if (s->track) /* normally it's mandatory here */
5133 chunk_appendf(tmptrash, " via %s/%s",
5134 s->track->proxy->id, s->track->id);
5135 }
5136
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005137 ha_warning("%s.\n", tmptrash->area);
5138 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5139 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005140 free_trash_chunk(tmptrash);
5141 tmptrash = NULL;
5142 }
5143
5144 /* now propagate the status change to any LB algorithms */
5145 if (px->lbprm.update_server_eweight)
5146 px->lbprm.update_server_eweight(s);
5147 else if (srv_willbe_usable(s)) {
5148 if (px->lbprm.set_server_status_up)
5149 px->lbprm.set_server_status_up(s);
5150 }
5151 else {
5152 if (px->lbprm.set_server_status_down)
5153 px->lbprm.set_server_status_down(s);
5154 }
5155 }
5156 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5157 /* remaining in drain mode after removing one of its flags */
5158
5159 tmptrash = alloc_trash_chunk();
5160 if (tmptrash) {
5161 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5162 chunk_printf(tmptrash,
5163 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5164 s->flags & SRV_F_BACKUP ? "Backup " : "",
5165 s->proxy->id, s->id);
5166
5167 if (s->track) /* normally it's mandatory here */
5168 chunk_appendf(tmptrash, " via %s/%s",
5169 s->track->proxy->id, s->track->id);
5170 }
5171 else {
5172 chunk_printf(tmptrash,
5173 "%sServer %s/%s remains in forced drain mode",
5174 s->flags & SRV_F_BACKUP ? "Backup " : "",
5175 s->proxy->id, s->id);
5176 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005177 ha_warning("%s.\n", tmptrash->area);
5178 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5179 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005180 free_trash_chunk(tmptrash);
5181 tmptrash = NULL;
5182 }
5183
5184 /* commit new admin status */
5185
5186 s->cur_admin = s->next_admin;
5187 }
5188 }
5189
5190 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005191 *s->adm_st_chg_cause = 0;
5192}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005193
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005194struct task *srv_cleanup_toremove_connections(struct task *task, void *context, unsigned short state)
5195{
5196 struct connection *conn;
5197
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005198 while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns,
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005199 struct connection *, list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005200 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005201 }
5202
5203 return task;
5204}
5205
Olivier Houchardff1d0922020-06-29 20:15:59 +02005206/* Move toremove_nb connections from idle_list to toremove_list, -1 means
5207 * moving them all.
5208 * Returns the number of connections moved.
5209 */
5210static int srv_migrate_conns_to_remove(struct mt_list *idle_list, struct mt_list *toremove_list, int toremove_nb)
5211{
5212 struct mt_list *elt1, elt2;
5213 struct connection *conn;
5214 int i = 0;
5215
5216 mt_list_for_each_entry_safe(conn, idle_list, list, elt1, elt2) {
5217 if (toremove_nb != -1 && i >= toremove_nb)
5218 break;
5219 MT_LIST_DEL_SAFE_NOINIT(elt1);
Willy Tarreaude4db172020-07-10 08:10:29 +02005220 MT_LIST_ADDQ(toremove_list, &conn->list);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005221 i++;
5222 }
5223 return i;
5224}
William Dauchy6318d332020-05-02 21:52:36 +02005225/* cleanup connections for a given server
5226 * might be useful when going on forced maintenance or live changing ip/port
5227 */
William Dauchy707ad322020-05-04 13:52:40 +02005228static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005229{
William Dauchy6318d332020-05-02 21:52:36 +02005230 int did_remove;
5231 int i;
William Dauchy6318d332020-05-02 21:52:36 +02005232
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005233 /* check all threads starting with ours */
William Dauchy6318d332020-05-02 21:52:36 +02005234 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005235 for (i = tid;;) {
William Dauchy6318d332020-05-02 21:52:36 +02005236 did_remove = 0;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005237 if (srv_migrate_conns_to_remove(&srv->idle_conns[i], &idle_conns[i].toremove_conns, -1) > 0)
William Dauchy6318d332020-05-02 21:52:36 +02005238 did_remove = 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005239 if (srv_migrate_conns_to_remove(&srv->safe_conns[i], &idle_conns[i].toremove_conns, -1) > 0)
5240 did_remove = 1;
William Dauchy6318d332020-05-02 21:52:36 +02005241 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005242 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005243
5244 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5245 break;
William Dauchy6318d332020-05-02 21:52:36 +02005246 }
5247 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5248}
5249
Willy Tarreau980855b2019-02-07 14:59:29 +01005250struct task *srv_cleanup_idle_connections(struct task *task, void *context, unsigned short state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005251{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005252 struct server *srv;
5253 struct eb32_node *eb;
5254 int i;
5255 unsigned int next_wakeup;
5256 int need_wakeup = 0;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005257
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005258 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5259 while (1) {
5260 int srv_is_empty = 1;
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005261 int exceed_conns;
5262 int to_kill;
5263 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005264
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005265 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5266 if (!eb) {
5267 /* we might have reached the end of the tree, typically because
5268 * <now_ms> is in the first half and we're first scanning the last
5269 * half. Let's loop back to the beginning of the tree now.
5270 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005271
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005272 eb = eb32_first(&idle_conn_srv);
5273 if (likely(!eb))
5274 break;
5275 }
5276 if (tick_is_lt(now_ms, eb->key)) {
5277 /* timer not expired yet, revisit it later */
5278 next_wakeup = eb->key;
5279 need_wakeup = 1;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005280 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005281 }
5282 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005283
5284 /* Calculate how many idle connections we want to kill :
5285 * we want to remove half the difference between the total
5286 * of established connections (used or idle) and the max
5287 * number of used connections.
5288 */
5289 curr_idle = srv->curr_idle_conns;
5290 if (curr_idle == 0)
5291 goto remove;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005292 exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005293 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005294
5295 srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns + 1) / 2;
5296 if (srv->est_need_conns < srv->max_used_conns)
5297 srv->est_need_conns = srv->max_used_conns;
5298
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005299 srv->max_used_conns = srv->curr_used_conns;
5300
Willy Tarreau18ed7892020-07-02 19:05:30 +02005301 if (exceed_conns <= 0)
5302 goto remove;
5303
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005304 /* check all threads starting with ours */
5305 for (i = tid;;) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005306 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005307 int j;
5308 int did_remove = 0;
5309
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005310 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5311 curr_idle + 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005312
5313 j = srv_migrate_conns_to_remove(&srv->idle_conns[i], &idle_conns[i].toremove_conns, max_conn);
5314 if (j > 0)
5315 did_remove = 1;
5316 if (max_conn - j > 0 &&
5317 srv_migrate_conns_to_remove(&srv->safe_conns[i], &idle_conns[i].toremove_conns, max_conn - j) > 0)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005318 did_remove = 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005319
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005320 if (did_remove && max_conn < srv->curr_idle_thr[i])
5321 srv_is_empty = 0;
5322 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005323 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005324
5325 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5326 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005327 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005328remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005329 eb32_delete(&srv->idle_node);
5330 if (!srv_is_empty) {
5331 /* There are still more idle connections, add the
5332 * server back in the tree.
5333 */
5334 srv->idle_node.key = tick_add(srv->pool_purge_delay,
5335 now_ms);
5336 eb32_insert(&idle_conn_srv, &srv->idle_node);
5337 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005338 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005339 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5340
5341 if (need_wakeup)
5342 task->expire = next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005343 else
5344 task->expire = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005345
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005346 return task;
5347}
Olivier Houchard88698d92019-04-16 19:07:22 +02005348
Willy Tarreau76cc6992020-07-01 18:49:24 +02005349/* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */
5350static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx,
5351 struct proxy *defpx, const char *file, int line,
5352 char **err)
5353{
5354 if (too_many_args(1, args, err, NULL))
5355 return -1;
5356
5357 if (strcmp(args[1], "on") == 0)
5358 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
5359 else if (strcmp(args[1], "off") == 0)
5360 global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
5361 else {
5362 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
5363 return -1;
5364 }
5365 return 0;
5366}
5367
Olivier Houchard88698d92019-04-16 19:07:22 +02005368/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5369static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
5370 struct proxy *defpx, const char *file, int line,
5371 char **err)
5372{
5373 int arg = -1;
5374
5375 if (too_many_args(1, args, err, NULL))
5376 return -1;
5377
5378 if (*(args[1]) != 0)
5379 arg = atoi(args[1]);
5380
5381 if (arg < 0 || arg > 100) {
5382 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5383 return -1;
5384 }
5385
5386 if (args[0][10] == 'h')
5387 global.tune.pool_high_ratio = arg;
5388 else
5389 global.tune.pool_low_ratio = arg;
5390 return 0;
5391}
5392
5393/* config keyword parsers */
5394static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau76cc6992020-07-01 18:49:24 +02005395 { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared },
Olivier Houchard88698d92019-04-16 19:07:22 +02005396 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5397 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5398 { 0, NULL, NULL }
5399}};
5400
5401INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5402
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005403/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005404 * Local variables:
5405 * c-indent-level: 8
5406 * c-basic-offset: 8
5407 * End:
5408 */