blob: d72e7e069c6cbfda54be39f8b88587e0ed3ca059 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Server management functions.
3 *
Willy Tarreau21faa912012-10-10 08:27:36 +02004 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01005 * Copyright 2007-2008 Krzysztof Piotr Oledzki <ole@ans.pl>
Willy Tarreaubaaee002006-06-26 02:48:02 +02006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
Willy Tarreau0a4b0ab2020-06-11 11:22:44 +020014#include <sys/types.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020015#include <netinet/tcp.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020016#include <ctype.h>
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020017#include <errno.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020018
Willy Tarreaub2551052020-06-09 09:07:15 +020019#include <import/ebsttree.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020020#include <import/xxhash.h>
21
Willy Tarreaub2551052020-06-09 09:07:15 +020022#include <haproxy/api.h>
Willy Tarreau3f0f82e2020-06-04 19:42:41 +020023#include <haproxy/applet-t.h>
Willy Tarreau49801602020-06-04 22:50:02 +020024#include <haproxy/backend.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020025#include <haproxy/cfgparse.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020026#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020027#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020028#include <haproxy/connection.h>
Willy Tarreau3afc4c42020-06-03 18:23:19 +020029#include <haproxy/dict-t.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020030#include <haproxy/dns.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020031#include <haproxy/errors.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020032#include <haproxy/global.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020033#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020034#include <haproxy/mailers.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +020035#include <haproxy/namespace.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020036#include <haproxy/port_range.h>
37#include <haproxy/protocol.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020038#include <haproxy/queue.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020039#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020040#include <haproxy/server.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020041#include <haproxy/stats-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020042#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020043#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020044#include <haproxy/task.h>
Willy Tarreau51cd5952020-06-05 12:25:38 +020045#include <haproxy/tcpcheck.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020046#include <haproxy/time.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020047
Baptiste Assmannda29fe22019-06-13 13:24:29 +020048
Willy Tarreau3ff577e2018-08-02 11:48:52 +020049static void srv_update_status(struct server *s);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020050static void srv_update_state(struct server *srv, int version, char **params);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +010051static int srv_apply_lastaddr(struct server *srv, int *err_code);
Olivier Houchardd16bfe62017-10-31 15:21:19 +010052static int srv_set_fqdn(struct server *srv, const char *fqdn, int dns_locked);
Baptiste Assmannda29fe22019-06-13 13:24:29 +020053static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params);
54static int srv_state_get_version(FILE *f);
William Dauchy6318d332020-05-02 21:52:36 +020055static void srv_cleanup_connections(struct server *srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +020056
Willy Tarreau21faa912012-10-10 08:27:36 +020057/* List head of all known server keywords */
58static struct srv_kw_list srv_keywords = {
59 .list = LIST_HEAD_INIT(srv_keywords.list)
60};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020061
Willy Tarreauaf613e82020-06-05 08:40:51 +020062__decl_thread(HA_SPINLOCK_T idle_conn_srv_lock);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010063struct eb_root idle_conn_srv = EB_ROOT;
64struct task *idle_conn_task = NULL;
Olivier Houchard9ea5d362019-02-14 18:29:09 +010065
Frédéric Lécaille7da71292019-05-20 09:47:07 +020066/* The server names dictionary */
67struct dict server_name_dict = {
68 .name = "server names",
69 .values = EB_ROOT_UNIQUE,
70};
71
Baptiste Assmannda29fe22019-06-13 13:24:29 +020072/* tree where global state_file is loaded */
Willy Tarreaufd1aa012019-12-20 17:23:40 +010073struct eb_root state_file = EB_ROOT_UNIQUE;
Baptiste Assmannda29fe22019-06-13 13:24:29 +020074
Simon Hormana3608442013-11-01 16:46:15 +090075int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020076{
Amaury Denoyellee6ba7912020-10-29 15:59:05 +010077 if ((s->cur_state != SRV_ST_STOPPED) || s->last_change >= now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020078 return s->down_time;
79
80 return now.tv_sec - s->last_change + s->down_time;
81}
Willy Tarreaubaaee002006-06-26 02:48:02 +020082
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050083int srv_lastsession(const struct server *s)
84{
85 if (s->counters.last_sess)
86 return now.tv_sec - s->counters.last_sess;
87
88 return -1;
89}
90
Simon Horman4a741432013-02-23 15:35:38 +090091int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020092{
Simon Horman4a741432013-02-23 15:35:38 +090093 const struct server *s = check->server;
94
Willy Tarreauff5ae352013-12-11 20:36:34 +010095 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +090096 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010097
Emeric Brun52a91d32017-08-31 14:41:55 +020098 if ((s->next_state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +090099 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100100
Simon Horman4a741432013-02-23 15:35:38 +0900101 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100102}
103
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100104/*
105 * Check that we did not get a hash collision.
Willy Tarreau595e7672020-10-20 17:30:08 +0200106 * Unlikely, but it can happen. The server's proxy must be at least
107 * read-locked.
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100108 */
109static inline void srv_check_for_dup_dyncookie(struct server *s)
Olivier Houchard4e694042017-03-14 20:01:29 +0100110{
111 struct proxy *p = s->proxy;
112 struct server *tmpserv;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100113
114 for (tmpserv = p->srv; tmpserv != NULL;
115 tmpserv = tmpserv->next) {
116 if (tmpserv == s)
117 continue;
118 if (tmpserv->next_admin & SRV_ADMF_FMAINT)
119 continue;
120 if (tmpserv->cookie &&
121 strcmp(tmpserv->cookie, s->cookie) == 0) {
122 ha_warning("We generated two equal cookies for two different servers.\n"
123 "Please change the secret key for '%s'.\n",
124 s->proxy->id);
125 }
126 }
127
128}
129
Willy Tarreau46b7f532018-08-21 11:54:26 +0200130/*
Willy Tarreau595e7672020-10-20 17:30:08 +0200131 * Must be called with the server lock held, and will read-lock the proxy.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200132 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100133void srv_set_dyncookie(struct server *s)
134{
135 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100136 char *tmpbuf;
137 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100138 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100139 size_t buffer_len;
140 int addr_len;
141 int port;
142
Willy Tarreau595e7672020-10-20 17:30:08 +0200143 HA_RWLOCK_RDLOCK(PROXY_LOCK, &p->lock);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200144
Olivier Houchard4e694042017-03-14 20:01:29 +0100145 if ((s->flags & SRV_F_COOKIESET) ||
146 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
147 s->proxy->dyncookie_key == NULL)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200148 goto out;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100149 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100150
151 if (s->addr.ss_family != AF_INET &&
152 s->addr.ss_family != AF_INET6)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200153 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100154 /*
155 * Buffer to calculate the cookie value.
156 * The buffer contains the secret key + the server IP address
157 * + the TCP port.
158 */
159 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
160 /*
161 * The TCP port should use only 2 bytes, but is stored in
162 * an unsigned int in struct server, so let's use 4, to be
163 * on the safe side.
164 */
165 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200166 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100167 memcpy(tmpbuf, p->dyncookie_key, key_len);
168 memcpy(&(tmpbuf[key_len]),
169 s->addr.ss_family == AF_INET ?
170 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
171 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
172 addr_len);
173 /*
174 * Make sure it's the same across all the load balancers,
175 * no matter their endianness.
176 */
177 port = htonl(s->svc_port);
178 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
179 hash_value = XXH64(tmpbuf, buffer_len, 0);
180 memprintf(&s->cookie, "%016llx", hash_value);
181 if (!s->cookie)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200182 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100183 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100184
185 /* Don't bother checking if the dyncookie is duplicated if
186 * the server is marked as "disabled", maybe it doesn't have
187 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100188 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100189 if (!(s->next_admin & SRV_ADMF_FMAINT))
190 srv_check_for_dup_dyncookie(s);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200191 out:
Willy Tarreau595e7672020-10-20 17:30:08 +0200192 HA_RWLOCK_RDUNLOCK(PROXY_LOCK, &p->lock);
Olivier Houchard4e694042017-03-14 20:01:29 +0100193}
194
Willy Tarreau21faa912012-10-10 08:27:36 +0200195/*
196 * Registers the server keyword list <kwl> as a list of valid keywords for next
197 * parsing sessions.
198 */
199void srv_register_keywords(struct srv_kw_list *kwl)
200{
201 LIST_ADDQ(&srv_keywords.list, &kwl->list);
202}
203
204/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
205 * keyword is found with a NULL ->parse() function, then an attempt is made to
206 * find one with a valid ->parse() function. This way it is possible to declare
207 * platform-dependant, known keywords as NULL, then only declare them as valid
208 * if some options are met. Note that if the requested keyword contains an
209 * opening parenthesis, everything from this point is ignored.
210 */
211struct srv_kw *srv_find_kw(const char *kw)
212{
213 int index;
214 const char *kwend;
215 struct srv_kw_list *kwl;
216 struct srv_kw *ret = NULL;
217
218 kwend = strchr(kw, '(');
219 if (!kwend)
220 kwend = kw + strlen(kw);
221
222 list_for_each_entry(kwl, &srv_keywords.list, list) {
223 for (index = 0; kwl->kw[index].kw != NULL; index++) {
224 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
225 kwl->kw[index].kw[kwend-kw] == 0) {
226 if (kwl->kw[index].parse)
227 return &kwl->kw[index]; /* found it !*/
228 else
229 ret = &kwl->kw[index]; /* may be OK */
230 }
231 }
232 }
233 return ret;
234}
235
236/* Dumps all registered "server" keywords to the <out> string pointer. The
237 * unsupported keywords are only dumped if their supported form was not
238 * found.
239 */
240void srv_dump_kws(char **out)
241{
242 struct srv_kw_list *kwl;
243 int index;
244
Christopher Faulet784063e2020-05-18 12:14:18 +0200245 if (!out)
246 return;
247
Willy Tarreau21faa912012-10-10 08:27:36 +0200248 *out = NULL;
249 list_for_each_entry(kwl, &srv_keywords.list, list) {
250 for (index = 0; kwl->kw[index].kw != NULL; index++) {
251 if (kwl->kw[index].parse ||
252 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
253 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
254 kwl->scope,
255 kwl->kw[index].kw,
256 kwl->kw[index].skip ? " <arg>" : "",
257 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
258 kwl->kw[index].parse ? "" : " (not supported)");
259 }
260 }
261 }
262}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100263
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100264/* Parse the "backup" server keyword */
265static int srv_parse_backup(char **args, int *cur_arg,
266 struct proxy *curproxy, struct server *newsrv, char **err)
267{
268 newsrv->flags |= SRV_F_BACKUP;
269 return 0;
270}
271
Alexander Liu2a54bb72019-05-22 19:44:48 +0800272
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100273/* Parse the "cookie" server keyword */
274static int srv_parse_cookie(char **args, int *cur_arg,
275 struct proxy *curproxy, struct server *newsrv, char **err)
276{
277 char *arg;
278
279 arg = args[*cur_arg + 1];
280 if (!*arg) {
281 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
282 return ERR_ALERT | ERR_FATAL;
283 }
284
285 free(newsrv->cookie);
286 newsrv->cookie = strdup(arg);
287 newsrv->cklen = strlen(arg);
288 newsrv->flags |= SRV_F_COOKIESET;
289 return 0;
290}
291
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100292/* Parse the "disabled" server keyword */
293static int srv_parse_disabled(char **args, int *cur_arg,
294 struct proxy *curproxy, struct server *newsrv, char **err)
295{
Emeric Brun52a91d32017-08-31 14:41:55 +0200296 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
297 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100298 newsrv->check.state |= CHK_ST_PAUSED;
299 newsrv->check.health = 0;
300 return 0;
301}
302
303/* Parse the "enabled" server keyword */
304static int srv_parse_enabled(char **args, int *cur_arg,
305 struct proxy *curproxy, struct server *newsrv, char **err)
306{
Emeric Brun52a91d32017-08-31 14:41:55 +0200307 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
308 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100309 newsrv->check.state &= ~CHK_ST_PAUSED;
310 newsrv->check.health = newsrv->check.rise;
311 return 0;
312}
313
Willy Tarreau9c538e02019-01-23 10:21:49 +0100314static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
315{
316 char *arg;
317
318 arg = args[*cur_arg + 1];
319 if (!*arg) {
320 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
321 return ERR_ALERT | ERR_FATAL;
322 }
323 newsrv->max_reuse = atoi(arg);
324
325 return 0;
326}
327
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100328static int srv_parse_pool_purge_delay(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100329{
330 const char *res;
331 char *arg;
332 unsigned int time;
333
334 arg = args[*cur_arg + 1];
335 if (!*arg) {
336 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
337 return ERR_ALERT | ERR_FATAL;
338 }
339 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200340 if (res == PARSE_TIME_OVER) {
341 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
342 args[*cur_arg+1], args[*cur_arg]);
343 return ERR_ALERT | ERR_FATAL;
344 }
345 else if (res == PARSE_TIME_UNDER) {
346 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
347 args[*cur_arg+1], args[*cur_arg]);
348 return ERR_ALERT | ERR_FATAL;
349 }
350 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100351 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
352 *res, args[*cur_arg]);
353 return ERR_ALERT | ERR_FATAL;
354 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100355 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100356
357 return 0;
358}
359
Willy Tarreau2f3f4d32020-07-01 07:43:51 +0200360static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
361{
362 char *arg;
363
364 arg = args[*cur_arg + 1];
365 if (!*arg) {
366 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
367 return ERR_ALERT | ERR_FATAL;
368 }
369
370 newsrv->low_idle_conns = atoi(arg);
371 return 0;
372}
373
Olivier Houchard006e3102018-12-10 18:30:32 +0100374static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
375{
376 char *arg;
377
378 arg = args[*cur_arg + 1];
379 if (!*arg) {
380 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
381 return ERR_ALERT | ERR_FATAL;
382 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100383
Olivier Houchard006e3102018-12-10 18:30:32 +0100384 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100385 if ((int)newsrv->max_idle_conns < -1) {
386 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
387 return ERR_ALERT | ERR_FATAL;
388 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100389
390 return 0;
391}
392
Willy Tarreaudff55432012-10-10 17:51:05 +0200393/* parse the "id" server keyword */
394static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
395{
396 struct eb32_node *node;
397
398 if (!*args[*cur_arg + 1]) {
399 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
400 return ERR_ALERT | ERR_FATAL;
401 }
402
403 newsrv->puid = atol(args[*cur_arg + 1]);
404 newsrv->conf.id.key = newsrv->puid;
405
406 if (newsrv->puid <= 0) {
407 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
408 return ERR_ALERT | ERR_FATAL;
409 }
410
411 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
412 if (node) {
413 struct server *target = container_of(node, struct server, conf.id);
414 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
415 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
416 target->id);
417 return ERR_ALERT | ERR_FATAL;
418 }
419
420 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200421 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200422 return 0;
423}
424
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100425/* Parse the "namespace" server keyword */
426static int srv_parse_namespace(char **args, int *cur_arg,
427 struct proxy *curproxy, struct server *newsrv, char **err)
428{
Willy Tarreaue5733232019-05-22 19:24:06 +0200429#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100430 char *arg;
431
432 arg = args[*cur_arg + 1];
433 if (!*arg) {
434 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
435 return ERR_ALERT | ERR_FATAL;
436 }
437
438 if (!strcmp(arg, "*")) {
439 /* Use the namespace associated with the connection (if present). */
440 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
441 return 0;
442 }
443
444 /*
445 * As this parser may be called several times for the same 'default-server'
446 * object, or for a new 'server' instance deriving from a 'default-server'
447 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
448 */
449 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
450
451 newsrv->netns = netns_store_lookup(arg, strlen(arg));
452 if (!newsrv->netns)
453 newsrv->netns = netns_store_insert(arg);
454
455 if (!newsrv->netns) {
456 memprintf(err, "Cannot open namespace '%s'", arg);
457 return ERR_ALERT | ERR_FATAL;
458 }
459
460 return 0;
461#else
462 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
463 return ERR_ALERT | ERR_FATAL;
464#endif
465}
466
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100467/* Parse the "no-backup" server keyword */
468static int srv_parse_no_backup(char **args, int *cur_arg,
469 struct proxy *curproxy, struct server *newsrv, char **err)
470{
471 newsrv->flags &= ~SRV_F_BACKUP;
472 return 0;
473}
474
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100475
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100476/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200477static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100478{
479 srv->pp_opts &= ~flags;
480 return 0;
481}
482
483/* Parse the "no-send-proxy" server keyword */
484static int srv_parse_no_send_proxy(char **args, int *cur_arg,
485 struct proxy *curproxy, struct server *newsrv, char **err)
486{
487 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
488}
489
490/* Parse the "no-send-proxy-v2" server keyword */
491static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
492 struct proxy *curproxy, struct server *newsrv, char **err)
493{
494 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
495}
496
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200497/* Parse the "no-tfo" server keyword */
498static int srv_parse_no_tfo(char **args, int *cur_arg,
499 struct proxy *curproxy, struct server *newsrv, char **err)
500{
501 newsrv->flags &= ~SRV_F_FASTOPEN;
502 return 0;
503}
504
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100505/* Parse the "non-stick" server keyword */
506static int srv_parse_non_stick(char **args, int *cur_arg,
507 struct proxy *curproxy, struct server *newsrv, char **err)
508{
509 newsrv->flags |= SRV_F_NON_STICK;
510 return 0;
511}
512
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100513/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200514static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100515{
516 srv->pp_opts |= flags;
517 return 0;
518}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200519/* parse the "proto" server keyword */
520static int srv_parse_proto(char **args, int *cur_arg,
521 struct proxy *px, struct server *newsrv, char **err)
522{
523 struct ist proto;
524
525 if (!*args[*cur_arg + 1]) {
526 memprintf(err, "'%s' : missing value", args[*cur_arg]);
527 return ERR_ALERT | ERR_FATAL;
528 }
529 proto = ist2(args[*cur_arg + 1], strlen(args[*cur_arg + 1]));
530 newsrv->mux_proto = get_mux_proto(proto);
531 if (!newsrv->mux_proto) {
532 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
533 return ERR_ALERT | ERR_FATAL;
534 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200535 return 0;
536}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100537
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100538/* parse the "proxy-v2-options" */
539static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
540 struct proxy *px, struct server *newsrv, char **err)
541{
542 char *p, *n;
543 for (p = args[*cur_arg+1]; p; p = n) {
544 n = strchr(p, ',');
545 if (n)
546 *n++ = '\0';
547 if (!strcmp(p, "ssl")) {
548 newsrv->pp_opts |= SRV_PP_V2_SSL;
549 } else if (!strcmp(p, "cert-cn")) {
550 newsrv->pp_opts |= SRV_PP_V2_SSL;
551 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100552 } else if (!strcmp(p, "cert-key")) {
553 newsrv->pp_opts |= SRV_PP_V2_SSL;
554 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
555 } else if (!strcmp(p, "cert-sig")) {
556 newsrv->pp_opts |= SRV_PP_V2_SSL;
557 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
558 } else if (!strcmp(p, "ssl-cipher")) {
559 newsrv->pp_opts |= SRV_PP_V2_SSL;
560 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100561 } else if (!strcmp(p, "authority")) {
562 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100563 } else if (!strcmp(p, "crc32c")) {
564 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100565 } else if (!strcmp(p, "unique-id")) {
566 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100567 } else
568 goto fail;
569 }
570 return 0;
571 fail:
572 if (err)
573 memprintf(err, "'%s' : proxy v2 option not implemented", p);
574 return ERR_ALERT | ERR_FATAL;
575}
576
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100577/* Parse the "observe" server keyword */
578static int srv_parse_observe(char **args, int *cur_arg,
579 struct proxy *curproxy, struct server *newsrv, char **err)
580{
581 char *arg;
582
583 arg = args[*cur_arg + 1];
584 if (!*arg) {
585 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
586 return ERR_ALERT | ERR_FATAL;
587 }
588
589 if (!strcmp(arg, "none")) {
590 newsrv->observe = HANA_OBS_NONE;
591 }
592 else if (!strcmp(arg, "layer4")) {
593 newsrv->observe = HANA_OBS_LAYER4;
594 }
595 else if (!strcmp(arg, "layer7")) {
596 if (curproxy->mode != PR_MODE_HTTP) {
597 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
598 return ERR_ALERT;
599 }
600 newsrv->observe = HANA_OBS_LAYER7;
601 }
602 else {
603 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
604 "but got '%s'\n", args[*cur_arg], arg);
605 return ERR_ALERT | ERR_FATAL;
606 }
607
608 return 0;
609}
610
Frédéric Lécaille16186232017-03-14 16:42:49 +0100611/* Parse the "redir" server keyword */
612static int srv_parse_redir(char **args, int *cur_arg,
613 struct proxy *curproxy, struct server *newsrv, char **err)
614{
615 char *arg;
616
617 arg = args[*cur_arg + 1];
618 if (!*arg) {
619 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
620 return ERR_ALERT | ERR_FATAL;
621 }
622
623 free(newsrv->rdr_pfx);
624 newsrv->rdr_pfx = strdup(arg);
625 newsrv->rdr_len = strlen(arg);
626
627 return 0;
628}
629
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100630/* Parse the "send-proxy" server keyword */
631static int srv_parse_send_proxy(char **args, int *cur_arg,
632 struct proxy *curproxy, struct server *newsrv, char **err)
633{
634 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
635}
636
637/* Parse the "send-proxy-v2" server keyword */
638static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
639 struct proxy *curproxy, struct server *newsrv, char **err)
640{
641 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
642}
643
Frédéric Lécailledba97072017-03-17 15:33:50 +0100644
645/* Parse the "source" server keyword */
646static int srv_parse_source(char **args, int *cur_arg,
647 struct proxy *curproxy, struct server *newsrv, char **err)
648{
649 char *errmsg;
650 int port_low, port_high;
651 struct sockaddr_storage *sk;
Frédéric Lécailledba97072017-03-17 15:33:50 +0100652
653 errmsg = NULL;
654
655 if (!*args[*cur_arg + 1]) {
656 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
657 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
658 goto err;
659 }
660
661 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200662 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
663 &errmsg, NULL, NULL,
664 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_RANGE | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100665 if (!sk) {
666 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
667 goto err;
668 }
669
Frédéric Lécailledba97072017-03-17 15:33:50 +0100670 newsrv->conn_src.opts |= CO_SRC_BIND;
671 newsrv->conn_src.source_addr = *sk;
672
673 if (port_low != port_high) {
674 int i;
675
Frédéric Lécailledba97072017-03-17 15:33:50 +0100676 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
677 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
678 newsrv->conn_src.sport_range->ports[i] = port_low + i;
679 }
680
681 *cur_arg += 2;
682 while (*(args[*cur_arg])) {
683 if (!strcmp(args[*cur_arg], "usesrc")) { /* address to use outside */
684#if defined(CONFIG_HAP_TRANSPARENT)
685 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100686 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
687 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +0100688 goto err;
689 }
690 if (!strcmp(args[*cur_arg + 1], "client")) {
691 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
692 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
693 }
694 else if (!strcmp(args[*cur_arg + 1], "clientip")) {
695 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
696 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
697 }
698 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
699 char *name, *end;
700
701 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +0100702 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100703 name++;
704
705 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +0100706 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +0100707 end++;
708
709 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
710 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
711 free(newsrv->conn_src.bind_hdr_name);
712 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
713 newsrv->conn_src.bind_hdr_len = end - name;
714 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
715 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
716 newsrv->conn_src.bind_hdr_occ = -1;
717
718 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +0100719 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100720 end++;
721 if (*end == ',') {
722 end++;
723 name = end;
724 if (*end == '-')
725 end++;
Willy Tarreau90807112020-02-25 08:16:33 +0100726 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100727 end++;
728 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
729 }
730
731 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100732 ha_alert("usesrc hdr_ip(name,num) does not support negative"
733 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100734 goto err;
735 }
736 }
737 else {
738 struct sockaddr_storage *sk;
739 int port1, port2;
740
741 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200742 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL,
743 &errmsg, NULL, NULL,
744 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100745 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100746 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100747 goto err;
748 }
749
Frédéric Lécailledba97072017-03-17 15:33:50 +0100750 newsrv->conn_src.tproxy_addr = *sk;
751 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
752 }
753 global.last_checks |= LSTCHK_NETADM;
754 *cur_arg += 2;
755 continue;
756#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100757 ha_alert("'usesrc' not allowed here because support for TPROXY was not compiled in.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +0100758 goto err;
759#endif /* defined(CONFIG_HAP_TRANSPARENT) */
760 } /* "usesrc" */
761
762 if (!strcmp(args[*cur_arg], "interface")) { /* specifically bind to this interface */
763#ifdef SO_BINDTODEVICE
764 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100765 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100766 goto err;
767 }
768 free(newsrv->conn_src.iface_name);
769 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
770 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
771 global.last_checks |= LSTCHK_NETADM;
772#else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100773 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100774 goto err;
775#endif
776 *cur_arg += 2;
777 continue;
778 }
779 /* this keyword in not an option of "source" */
780 break;
781 } /* while */
782
783 return 0;
784
785 err:
786 free(errmsg);
787 return ERR_ALERT | ERR_FATAL;
788}
789
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100790/* Parse the "stick" server keyword */
791static int srv_parse_stick(char **args, int *cur_arg,
792 struct proxy *curproxy, struct server *newsrv, char **err)
793{
794 newsrv->flags &= ~SRV_F_NON_STICK;
795 return 0;
796}
797
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100798/* Parse the "track" server keyword */
799static int srv_parse_track(char **args, int *cur_arg,
800 struct proxy *curproxy, struct server *newsrv, char **err)
801{
802 char *arg;
803
804 arg = args[*cur_arg + 1];
805 if (!*arg) {
806 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
807 return ERR_ALERT | ERR_FATAL;
808 }
809
810 free(newsrv->trackit);
811 newsrv->trackit = strdup(arg);
812
813 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800814}
815
816/* Parse the "socks4" server keyword */
817static int srv_parse_socks4(char **args, int *cur_arg,
818 struct proxy *curproxy, struct server *newsrv, char **err)
819{
820 char *errmsg;
821 int port_low, port_high;
822 struct sockaddr_storage *sk;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800823
824 errmsg = NULL;
825
826 if (!*args[*cur_arg + 1]) {
827 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
828 goto err;
829 }
830
831 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200832 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
833 &errmsg, NULL, NULL,
834 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT);
Alexander Liu2a54bb72019-05-22 19:44:48 +0800835 if (!sk) {
836 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
837 goto err;
838 }
839
Alexander Liu2a54bb72019-05-22 19:44:48 +0800840 newsrv->flags |= SRV_F_SOCKS4_PROXY;
841 newsrv->socks4_addr = *sk;
842
Alexander Liu2a54bb72019-05-22 19:44:48 +0800843 return 0;
844
845 err:
846 free(errmsg);
847 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100848}
849
Frédéric Lécailledba97072017-03-17 15:33:50 +0100850
Willy Tarreau034c88c2017-01-23 23:36:45 +0100851/* parse the "tfo" server keyword */
852static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
853{
854 newsrv->flags |= SRV_F_FASTOPEN;
855 return 0;
856}
857
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200858/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +0200859 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200860 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200861 *
862 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200863 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200864void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200865{
Willy Tarreau87b09662015-04-03 00:22:06 +0200866 struct stream *stream, *stream_bck;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200867
Willy Tarreau87b09662015-04-03 00:22:06 +0200868 list_for_each_entry_safe(stream, stream_bck, &srv->actconns, by_srv)
869 if (stream->srv_conn == srv)
870 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200871}
872
873/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +0200874 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200875 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200876 *
877 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200878 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200879void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200880{
881 struct server *srv;
882
883 for (srv = px->srv; srv != NULL; srv = srv->next)
884 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +0200885 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200886}
887
Willy Tarreaubda92272014-05-20 21:55:30 +0200888/* Appends some information to a message string related to a server going UP or
889 * DOWN. If both <forced> and <reason> are null and the server tracks another
890 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +0200891 * If <check> is non-null, an entire string describing the check result will be
892 * appended after a comma and a space (eg: to report some information from the
893 * check that changed the state). In the other case, the string will be built
894 * using the check results stored into the struct server if present.
895 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +0200896 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200897 *
898 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200899 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200900void srv_append_status(struct buffer *msg, struct server *s,
901 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200902{
Emeric Brun5a133512017-10-19 14:42:30 +0200903 short status = s->op_st_chg.status;
904 short code = s->op_st_chg.code;
905 long duration = s->op_st_chg.duration;
906 char *desc = s->op_st_chg.reason;
907
908 if (check) {
909 status = check->status;
910 code = check->code;
911 duration = check->duration;
912 desc = check->desc;
913 }
914
915 if (status != -1) {
916 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
917
918 if (status >= HCHK_STATUS_L57DATA)
919 chunk_appendf(msg, ", code: %d", code);
920
921 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +0200922 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +0200923
924 chunk_appendf(msg, ", info: \"");
925
926 chunk_initlen(&src, desc, 0, strlen(desc));
927 chunk_asciiencode(msg, &src, '"');
928
929 chunk_appendf(msg, "\"");
930 }
931
932 if (duration >= 0)
933 chunk_appendf(msg, ", check duration: %ldms", duration);
934 }
935 else if (desc && *desc) {
936 chunk_appendf(msg, ", %s", desc);
937 }
938 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +0200939 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +0200940 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200941
942 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200943 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200944 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
945 " %d sessions active, %d requeued, %d remaining in queue",
946 s->proxy->srv_act, s->proxy->srv_bck,
947 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
948 s->cur_sess, xferred, s->nbpend);
949 else
950 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
951 " %d sessions requeued, %d total in queue",
952 s->proxy->srv_act, s->proxy->srv_bck,
953 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
954 xferred, s->nbpend);
955 }
956}
957
Emeric Brun5a133512017-10-19 14:42:30 +0200958/* Marks server <s> down, regardless of its checks' statuses. The server is
959 * registered in a list to postpone the counting of the remaining servers on
960 * the proxy and transfers queued streams whenever possible to other servers at
961 * a sync point. Maintenance servers are ignored. It stores the <reason> if
962 * non-null as the reason for going down or the available data from the check
963 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200964 *
965 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200966 */
Emeric Brun5a133512017-10-19 14:42:30 +0200967void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200968{
969 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200970
Emeric Brun64cc49c2017-10-03 14:46:45 +0200971 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200972 return;
973
Emeric Brun52a91d32017-08-31 14:41:55 +0200974 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +0200975 *s->op_st_chg.reason = 0;
976 s->op_st_chg.status = -1;
977 if (reason) {
978 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
979 }
980 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +0100981 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +0200982 s->op_st_chg.code = check->code;
983 s->op_st_chg.status = check->status;
984 s->op_st_chg.duration = check->duration;
985 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200986
Willy Tarreaueeba36b2018-08-21 08:22:26 +0200987 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +0200988 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +0200989
Emeric Brun9f0b4582017-10-23 14:39:51 +0200990 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100991 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +0200992 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100993 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +0200994 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200995}
996
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200997/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +0200998 * in maintenance. The server is registered in a list to postpone the counting
999 * of the remaining servers on the proxy and tries to grab requests from the
1000 * proxy at a sync point. Maintenance servers are ignored. It stores the
1001 * <reason> if non-null as the reason for going down or the available data
1002 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001003 *
1004 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001005 */
Emeric Brun5a133512017-10-19 14:42:30 +02001006void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001007{
1008 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001009
Emeric Brun64cc49c2017-10-03 14:46:45 +02001010 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001011 return;
1012
Emeric Brun52a91d32017-08-31 14:41:55 +02001013 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001014 return;
1015
Emeric Brun52a91d32017-08-31 14:41:55 +02001016 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001017 *s->op_st_chg.reason = 0;
1018 s->op_st_chg.status = -1;
1019 if (reason) {
1020 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1021 }
1022 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001023 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001024 s->op_st_chg.code = check->code;
1025 s->op_st_chg.status = check->status;
1026 s->op_st_chg.duration = check->duration;
1027 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001028
Emeric Brun64cc49c2017-10-03 14:46:45 +02001029 if (s->slowstart <= 0)
1030 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001031
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001032 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001033 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001034
Emeric Brun9f0b4582017-10-23 14:39:51 +02001035 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001036 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001037 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001038 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001039 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001040}
1041
Willy Tarreau8eb77842014-05-21 13:54:57 +02001042/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001043 * isn't in maintenance. The server is registered in a list to postpone the
1044 * counting of the remaining servers on the proxy and tries to grab requests
1045 * from the proxy. Maintenance servers are ignored. It stores the
1046 * <reason> if non-null as the reason for going down or the available data
1047 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001048 * up. Note that it makes use of the trash to build the log strings, so <reason>
1049 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001050 *
1051 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001052 */
Emeric Brun5a133512017-10-19 14:42:30 +02001053void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001054{
1055 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001056
Emeric Brun64cc49c2017-10-03 14:46:45 +02001057 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001058 return;
1059
Emeric Brun52a91d32017-08-31 14:41:55 +02001060 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001061 return;
1062
Emeric Brun52a91d32017-08-31 14:41:55 +02001063 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001064 *s->op_st_chg.reason = 0;
1065 s->op_st_chg.status = -1;
1066 if (reason) {
1067 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1068 }
1069 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001070 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001071 s->op_st_chg.code = check->code;
1072 s->op_st_chg.status = check->status;
1073 s->op_st_chg.duration = check->duration;
1074 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001075
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001076 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001077 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001078
Emeric Brun9f0b4582017-10-23 14:39:51 +02001079 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001080 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001081 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001082 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001083 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001084}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001085
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001086/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1087 * enforce either maint mode or drain mode. It is not allowed to set more than
1088 * one flag at once. The equivalent "inherited" flag is propagated to all
1089 * tracking servers. Maintenance mode disables health checks (but not agent
1090 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001091 * is done. If <cause> is non-null, it will be displayed at the end of the log
1092 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001093 *
1094 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001095 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001096void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001097{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001098 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001099
1100 if (!mode)
1101 return;
1102
1103 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001104 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001105 return;
1106
Emeric Brun52a91d32017-08-31 14:41:55 +02001107 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001108 if (cause)
1109 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1110
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001111 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001112 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001113
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001114 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001115 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1116 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001117 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001118
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001119 /* compute the inherited flag to propagate */
1120 if (mode & SRV_ADMF_MAINT)
1121 mode = SRV_ADMF_IMAINT;
1122 else if (mode & SRV_ADMF_DRAIN)
1123 mode = SRV_ADMF_IDRAIN;
1124
Emeric Brun9f0b4582017-10-23 14:39:51 +02001125 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001126 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001127 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001128 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001129 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001130}
1131
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001132/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1133 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1134 * than one flag at once. The equivalent "inherited" flag is propagated to all
1135 * tracking servers. Leaving maintenance mode re-enables health checks. When
1136 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001137 *
1138 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001139 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001140void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001141{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001142 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001143
1144 if (!mode)
1145 return;
1146
1147 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001148 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001149 return;
1150
Emeric Brun52a91d32017-08-31 14:41:55 +02001151 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001152
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001153 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001154 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001155
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001156 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001157 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1158 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001159 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001160
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001161 if (mode & SRV_ADMF_MAINT)
1162 mode = SRV_ADMF_IMAINT;
1163 else if (mode & SRV_ADMF_DRAIN)
1164 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001165
Emeric Brun9f0b4582017-10-23 14:39:51 +02001166 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001167 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001168 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001169 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001170 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001171}
1172
Willy Tarreau757478e2016-11-03 19:22:19 +01001173/* principle: propagate maint and drain to tracking servers. This is useful
1174 * upon startup so that inherited states are correct.
1175 */
1176static void srv_propagate_admin_state(struct server *srv)
1177{
1178 struct server *srv2;
1179
1180 if (!srv->trackers)
1181 return;
1182
1183 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001184 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001185 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001186 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001187
Emeric Brun52a91d32017-08-31 14:41:55 +02001188 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001189 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001190 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001191 }
1192}
1193
1194/* Compute and propagate the admin states for all servers in proxy <px>.
1195 * Only servers *not* tracking another one are considered, because other
1196 * ones will be handled when the server they track is visited.
1197 */
1198void srv_compute_all_admin_states(struct proxy *px)
1199{
1200 struct server *srv;
1201
1202 for (srv = px->srv; srv; srv = srv->next) {
1203 if (srv->track)
1204 continue;
1205 srv_propagate_admin_state(srv);
1206 }
1207}
1208
Willy Tarreaudff55432012-10-10 17:51:05 +02001209/* Note: must not be declared <const> as its list will be overwritten.
1210 * Please take care of keeping this list alphabetically sorted, doing so helps
1211 * all code contributors.
1212 * Optional keywords are also declared with a NULL ->parse() function so that
1213 * the config parser can report an appropriate error when a known keyword was
1214 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001215 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001216 */
1217static struct srv_kw_list srv_kws = { "ALL", { }, {
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001218 { "backup", srv_parse_backup, 0, 1 }, /* Flag as backup server */
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +01001219 { "cookie", srv_parse_cookie, 1, 1 }, /* Assign a cookie to the server */
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +01001220 { "disabled", srv_parse_disabled, 0, 1 }, /* Start the server in 'disabled' state */
1221 { "enabled", srv_parse_enabled, 0, 1 }, /* Start the server in 'enabled' state */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001222 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
Willy Tarreau9c538e02019-01-23 10:21:49 +01001223 { "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 +01001224 { "namespace", srv_parse_namespace, 1, 1 }, /* Namespace the server socket belongs to (if supported) */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001225 { "no-backup", srv_parse_no_backup, 0, 1 }, /* Flag as non-backup server */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001226 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1 }, /* Disable use of PROXY V1 protocol */
1227 { "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 +02001228 { "no-tfo", srv_parse_no_tfo, 0, 1 }, /* Disable use of TCP Fast Open */
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001229 { "non-stick", srv_parse_non_stick, 0, 1 }, /* Disable stick-table persistence */
Frédéric Lécaille547356e2017-03-15 08:55:39 +01001230 { "observe", srv_parse_observe, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001231 { "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 +01001232 { "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 +01001233 { "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 +02001234 { "proto", srv_parse_proto, 1, 1 }, /* Set the proto to use for all outgoing connections */
Emmanuel Hocdetf643b802018-02-01 15:20:32 +01001235 { "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 +01001236 { "redir", srv_parse_redir, 1, 1 }, /* Enable redirection mode */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001237 { "send-proxy", srv_parse_send_proxy, 0, 1 }, /* Enforce use of PROXY V1 protocol */
1238 { "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 +02001239 { "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 +01001240 { "stick", srv_parse_stick, 0, 1 }, /* Enable stick-table persistence */
Olivier Houchard8d82db72019-07-04 13:34:10 +02001241 { "tfo", srv_parse_tfo, 0, 1 }, /* enable TCP Fast Open of server */
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001242 { "track", srv_parse_track, 1, 1 }, /* Set the current state of the server, tracking another one */
Alexander Liu2a54bb72019-05-22 19:44:48 +08001243 { "socks4", srv_parse_socks4, 1, 1 }, /* Set the socks4 proxy of the server*/
Willy Tarreaudff55432012-10-10 17:51:05 +02001244 { NULL, NULL, 0 },
1245}};
1246
Willy Tarreau0108d902018-11-25 19:14:37 +01001247INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001248
Willy Tarreau004e0452013-11-21 11:22:01 +01001249/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001250 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001251 * state is automatically disabled if the time is elapsed. If <must_update> is
1252 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001253 *
1254 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001255 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001256void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001257{
1258 struct proxy *px = sv->proxy;
1259 unsigned w;
1260
1261 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1262 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001263 if (sv->next_state == SRV_ST_STARTING)
1264 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001265 }
1266
1267 /* We must take care of not pushing the server to full throttle during slow starts.
1268 * It must also start immediately, at least at the minimal step when leaving maintenance.
1269 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001270 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001271 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1272 else
1273 w = px->lbprm.wdiv;
1274
Emeric Brun52a91d32017-08-31 14:41:55 +02001275 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001276
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001277 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001278 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001279 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001280}
1281
Willy Tarreaubaaee002006-06-26 02:48:02 +02001282/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001283 * Parses weight_str and configures sv accordingly.
1284 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001285 *
1286 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001287 */
1288const char *server_parse_weight_change_request(struct server *sv,
1289 const char *weight_str)
1290{
1291 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001292 long int w;
1293 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001294
1295 px = sv->proxy;
1296
1297 /* if the weight is terminated with '%', it is set relative to
1298 * the initial weight, otherwise it is absolute.
1299 */
1300 if (!*weight_str)
1301 return "Require <weight> or <weight%>.\n";
1302
Simon Hormanb796afa2013-02-12 10:45:53 +09001303 w = strtol(weight_str, &end, 10);
1304 if (end == weight_str)
1305 return "Empty weight string empty or preceded by garbage";
1306 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001307 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001308 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001309 /* Avoid integer overflow */
1310 if (w > 25600)
1311 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001312 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001313 if (w > 256)
1314 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001315 }
1316 else if (w < 0 || w > 256)
1317 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001318 else if (end[0] != '\0')
1319 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001320
1321 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1322 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1323
1324 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001325 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001326
1327 return NULL;
1328}
1329
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001330/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001331 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1332 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001333 * Returns:
1334 * - error string on error
1335 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001336 *
1337 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001338 */
1339const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001340 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001341{
1342 unsigned char ip[INET6_ADDRSTRLEN];
1343
1344 if (inet_pton(AF_INET6, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001345 update_server_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001346 return NULL;
1347 }
1348 if (inet_pton(AF_INET, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001349 update_server_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001350 return NULL;
1351 }
1352
1353 return "Could not understand IP address format.\n";
1354}
1355
Willy Tarreau46b7f532018-08-21 11:54:26 +02001356/*
1357 * Must be called with the server lock held.
1358 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001359const char *server_parse_maxconn_change_request(struct server *sv,
1360 const char *maxconn_str)
1361{
1362 long int v;
1363 char *end;
1364
1365 if (!*maxconn_str)
1366 return "Require <maxconn>.\n";
1367
1368 v = strtol(maxconn_str, &end, 10);
1369 if (end == maxconn_str)
1370 return "maxconn string empty or preceded by garbage";
1371 else if (end[0] != '\0')
1372 return "Trailing garbage in maxconn string";
1373
1374 if (sv->maxconn == sv->minconn) { // static maxconn
1375 sv->maxconn = sv->minconn = v;
1376 } else { // dynamic maxconn
1377 sv->maxconn = v;
1378 }
1379
1380 if (may_dequeue_tasks(sv, sv->proxy))
1381 process_srv_queue(sv);
1382
1383 return NULL;
1384}
1385
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001386#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001387static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1388 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001389{
1390 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001391 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001392 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001393 NULL,
1394 };
1395
1396 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001397 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001398
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001399 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001400}
1401
1402static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1403{
1404 struct sample_expr *expr;
1405
1406 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 +01001407 if (!expr) {
1408 memprintf(err, "error detected while parsing sni expression : %s", *err);
1409 return ERR_ALERT | ERR_FATAL;
1410 }
1411
1412 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1413 memprintf(err, "error detected while parsing sni expression : "
1414 " fetch method '%s' extracts information from '%s', "
1415 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001416 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001417 return ERR_ALERT | ERR_FATAL;
1418 }
1419
1420 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1421 release_sample_expr(newsrv->ssl_ctx.sni);
1422 newsrv->ssl_ctx.sni = expr;
1423
1424 return 0;
1425}
1426#endif
1427
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001428static 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 +01001429{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001430 char *msg = "error encountered while processing ";
1431 char *quote = "'";
1432 char *token = args[cur_arg];
1433
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001434 if (err && *err) {
1435 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001436 msg = *err;
1437 quote = "";
1438 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001439 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001440
1441 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
1442 ha_warning("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1443 file, linenum, args[0], args[1],
1444 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001445 else
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001446 ha_alert("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1447 file, linenum, args[0], args[1],
1448 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001449}
1450
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001451static void srv_conn_src_sport_range_cpy(struct server *srv,
1452 struct server *src)
1453{
1454 int range_sz;
1455
1456 range_sz = src->conn_src.sport_range->size;
1457 if (range_sz > 0) {
1458 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1459 if (srv->conn_src.sport_range != NULL) {
1460 int i;
1461
1462 for (i = 0; i < range_sz; i++) {
1463 srv->conn_src.sport_range->ports[i] =
1464 src->conn_src.sport_range->ports[i];
1465 }
1466 }
1467 }
1468}
1469
1470/*
1471 * Copy <src> server connection source settings to <srv> server everything needed.
1472 */
1473static void srv_conn_src_cpy(struct server *srv, struct server *src)
1474{
1475 srv->conn_src.opts = src->conn_src.opts;
1476 srv->conn_src.source_addr = src->conn_src.source_addr;
1477
1478 /* Source port range copy. */
1479 if (src->conn_src.sport_range != NULL)
1480 srv_conn_src_sport_range_cpy(srv, src);
1481
1482#ifdef CONFIG_HAP_TRANSPARENT
1483 if (src->conn_src.bind_hdr_name != NULL) {
1484 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1485 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1486 }
1487 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1488 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1489#endif
1490 if (src->conn_src.iface_name != NULL)
1491 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1492}
1493
1494/*
1495 * Copy <src> server SSL settings to <srv> server allocating
1496 * everything needed.
1497 */
1498#if defined(USE_OPENSSL)
1499static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1500{
1501 if (src->ssl_ctx.ca_file != NULL)
1502 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1503 if (src->ssl_ctx.crl_file != NULL)
1504 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
1505 if (src->ssl_ctx.client_crt != NULL)
1506 srv->ssl_ctx.client_crt = strdup(src->ssl_ctx.client_crt);
1507
1508 srv->ssl_ctx.verify = src->ssl_ctx.verify;
1509
1510 if (src->ssl_ctx.verify_host != NULL)
1511 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
1512 if (src->ssl_ctx.ciphers != NULL)
1513 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02001514 if (src->ssl_ctx.options)
1515 srv->ssl_ctx.options = src->ssl_ctx.options;
1516 if (src->ssl_ctx.methods.flags)
1517 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
1518 if (src->ssl_ctx.methods.min)
1519 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
1520 if (src->ssl_ctx.methods.max)
1521 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
1522
Willy Tarreau5db847a2019-05-09 14:13:35 +02001523#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02001524 if (src->ssl_ctx.ciphersuites != NULL)
1525 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
1526#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001527 if (src->sni_expr != NULL)
1528 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01001529
1530#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
1531 if (src->ssl_ctx.alpn_str) {
1532 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
1533 if (srv->ssl_ctx.alpn_str) {
1534 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
1535 src->ssl_ctx.alpn_len);
1536 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
1537 }
1538 }
1539#endif
1540#ifdef OPENSSL_NPN_NEGOTIATED
1541 if (src->ssl_ctx.npn_str) {
1542 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
1543 if (srv->ssl_ctx.npn_str) {
1544 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
1545 src->ssl_ctx.npn_len);
1546 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
1547 }
1548 }
1549#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001550}
1551#endif
1552
1553/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001554 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001555 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001556 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001557 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001558static int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001559{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001560 char *hostname_dn;
1561 int hostname_len, hostname_dn_len;
1562
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001563 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001564 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001565
Christopher Faulet67957bd2017-09-27 11:00:59 +02001566 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001567 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001568 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
1569 hostname_dn, trash.size);
1570 if (hostname_dn_len == -1)
1571 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001572
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001573
Christopher Faulet67957bd2017-09-27 11:00:59 +02001574 free(srv->hostname);
1575 free(srv->hostname_dn);
1576 srv->hostname = strdup(hostname);
1577 srv->hostname_dn = strdup(hostname_dn);
1578 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001579 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001580 goto err;
1581
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001582 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001583
1584 err:
Christopher Faulet67957bd2017-09-27 11:00:59 +02001585 free(srv->hostname); srv->hostname = NULL;
1586 free(srv->hostname_dn); srv->hostname_dn = NULL;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001587 return -1;
1588}
1589
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001590/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001591 * Copy <src> server settings to <srv> server allocating
1592 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001593 * This function is not supposed to be called at any time, but only
1594 * during server settings parsing or during server allocations from
1595 * a server template, and just after having calloc()'ed a new server.
1596 * So, <src> may only be a default server (when parsing server settings)
1597 * or a server template (during server allocations from a server template).
1598 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
1599 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001600 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001601static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001602{
1603 /* Connection source settings copy */
1604 srv_conn_src_cpy(srv, src);
1605
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001606 if (srv_tmpl) {
1607 srv->addr = src->addr;
1608 srv->svc_port = src->svc_port;
1609 }
1610
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001611 srv->pp_opts = src->pp_opts;
1612 if (src->rdr_pfx != NULL) {
1613 srv->rdr_pfx = strdup(src->rdr_pfx);
1614 srv->rdr_len = src->rdr_len;
1615 }
1616 if (src->cookie != NULL) {
1617 srv->cookie = strdup(src->cookie);
1618 srv->cklen = src->cklen;
1619 }
1620 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01001621 srv->check.addr = src->check.addr;
1622 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001623 srv->check.use_ssl = src->check.use_ssl;
1624 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01001625 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01001626 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05001627 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001628 /* Note: 'flags' field has potentially been already initialized. */
1629 srv->flags |= src->flags;
1630 srv->do_check = src->do_check;
1631 srv->do_agent = src->do_agent;
1632 if (srv->check.port)
1633 srv->flags |= SRV_F_CHECKPORT;
1634 srv->check.inter = src->check.inter;
1635 srv->check.fastinter = src->check.fastinter;
1636 srv->check.downinter = src->check.downinter;
1637 srv->agent.use_ssl = src->agent.use_ssl;
1638 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001639
1640 if (src->agent.tcpcheck_rules) {
1641 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
1642 if (srv->agent.tcpcheck_rules) {
1643 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
1644 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
1645 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
1646 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
1647 &src->agent.tcpcheck_rules->preset_vars);
1648 }
1649 }
1650
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001651 srv->agent.inter = src->agent.inter;
1652 srv->agent.fastinter = src->agent.fastinter;
1653 srv->agent.downinter = src->agent.downinter;
1654 srv->maxqueue = src->maxqueue;
1655 srv->minconn = src->minconn;
1656 srv->maxconn = src->maxconn;
1657 srv->slowstart = src->slowstart;
1658 srv->observe = src->observe;
1659 srv->onerror = src->onerror;
1660 srv->onmarkeddown = src->onmarkeddown;
1661 srv->onmarkedup = src->onmarkedup;
1662 if (src->trackit != NULL)
1663 srv->trackit = strdup(src->trackit);
1664 srv->consecutive_errors_limit = src->consecutive_errors_limit;
1665 srv->uweight = srv->iweight = src->iweight;
1666
1667 srv->check.send_proxy = src->check.send_proxy;
1668 /* health: up, but will fall down at first failure */
1669 srv->check.rise = srv->check.health = src->check.rise;
1670 srv->check.fall = src->check.fall;
1671
1672 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001673 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
1674 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
1675 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001676 srv->check.state |= CHK_ST_PAUSED;
1677 srv->check.health = 0;
1678 }
1679
1680 /* health: up but will fall down at first failure */
1681 srv->agent.rise = srv->agent.health = src->agent.rise;
1682 srv->agent.fall = src->agent.fall;
1683
1684 if (src->resolvers_id != NULL)
1685 srv->resolvers_id = strdup(src->resolvers_id);
1686 srv->dns_opts.family_prio = src->dns_opts.family_prio;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001687 srv->dns_opts.accept_duplicate_ip = src->dns_opts.accept_duplicate_ip;
Daniel Corbettf8716912019-11-17 09:48:56 -05001688 srv->dns_opts.ignore_weight = src->dns_opts.ignore_weight;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001689 if (srv->dns_opts.family_prio == AF_UNSPEC)
1690 srv->dns_opts.family_prio = AF_INET6;
1691 memcpy(srv->dns_opts.pref_net,
1692 src->dns_opts.pref_net,
1693 sizeof srv->dns_opts.pref_net);
1694 srv->dns_opts.pref_net_nb = src->dns_opts.pref_net_nb;
1695
1696 srv->init_addr_methods = src->init_addr_methods;
1697 srv->init_addr = src->init_addr;
1698#if defined(USE_OPENSSL)
1699 srv_ssl_settings_cpy(srv, src);
1700#endif
1701#ifdef TCP_USER_TIMEOUT
1702 srv->tcp_ut = src->tcp_ut;
1703#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001704 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001705 srv->pool_purge_delay = src->pool_purge_delay;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001706 srv->low_idle_conns = src->low_idle_conns;
Olivier Houchard006e3102018-12-10 18:30:32 +01001707 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01001708 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001709
Olivier Houchard8da5f982017-08-04 18:35:36 +02001710 if (srv_tmpl)
1711 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001712
1713 srv->check.via_socks4 = src->check.via_socks4;
1714 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001715}
1716
William Lallemand313bfd12018-10-26 14:47:32 +02001717struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001718{
1719 struct server *srv;
1720
1721 srv = calloc(1, sizeof *srv);
1722 if (!srv)
1723 return NULL;
1724
1725 srv->obj_type = OBJ_TYPE_SERVER;
1726 srv->proxy = proxy;
1727 LIST_INIT(&srv->actconns);
Patrick Hemmer0355dab2018-05-11 12:52:31 -04001728 srv->pendconns = EB_ROOT;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001729
Emeric Brun52a91d32017-08-31 14:41:55 +02001730 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001731 srv->last_change = now.tv_sec;
1732
Christopher Faulet38290462020-04-21 11:46:40 +02001733 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001734 srv->check.status = HCHK_STATUS_INI;
1735 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01001736 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02001737 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001738
Christopher Faulet38290462020-04-21 11:46:40 +02001739 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001740 srv->agent.status = HCHK_STATUS_INI;
1741 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01001742 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001743 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
1744
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01001745 srv->extra_counters = NULL;
1746
Willy Tarreau975b1552019-06-06 16:25:55 +02001747 /* please don't put default server settings here, they are set in
1748 * init_default_instance().
1749 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001750 return srv;
1751}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001752
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001753#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1754static int server_sni_expr_init(const char *file, int linenum, char **args, int cur_arg,
1755 struct server *srv, struct proxy *proxy)
1756{
1757 int ret;
1758 char *err = NULL;
1759
1760 if (!srv->sni_expr)
1761 return 0;
1762
1763 ret = server_parse_sni_expr(srv, proxy, &err);
1764 if (!ret)
1765 return 0;
1766
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001767 display_parser_err(file, linenum, args, cur_arg, ret, &err);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001768 free(err);
1769
1770 return ret;
1771}
1772#endif
1773
1774/*
1775 * Server initializations finalization.
1776 * Initialize health check, agent check and SNI expression if enabled.
1777 * Must not be called for a default server instance.
1778 */
1779static int server_finalize_init(const char *file, int linenum, char **args, int cur_arg,
1780 struct server *srv, struct proxy *px)
1781{
Christopher Fauletb3b53522020-04-27 11:17:10 +02001782#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001783 int ret;
Christopher Fauletb3b53522020-04-27 11:17:10 +02001784#endif
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001785
Christopher Faulet8892e5d2020-03-26 19:48:20 +01001786 if (srv->do_check && srv->trackit) {
1787 ha_alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1788 file, linenum);
1789 return ERR_ALERT | ERR_FATAL;
1790 }
1791
1792 if (srv->do_agent && !srv->agent.port) {
1793 ha_alert("parsing [%s:%d] : server %s does not have agent port. Agent check has been disabled.\n",
1794 file, linenum, srv->id);
1795 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001796 }
1797
1798#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1799 if ((ret = server_sni_expr_init(file, linenum, args, cur_arg, srv, px)) != 0)
1800 return ret;
1801#endif
1802
1803 if (srv->flags & SRV_F_BACKUP)
1804 px->srv_bck++;
1805 else
1806 px->srv_act++;
1807 srv_lb_commit_status(srv);
1808
1809 return 0;
1810}
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001811
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001812/*
1813 * Parse as much as possible such a range string argument: low[-high]
1814 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
1815 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
1816 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
1817 * Returns 0 if succeeded, -1 if not.
1818 */
1819static int srv_tmpl_parse_range(struct server *srv, const char *arg, int *nb_low, int *nb_high)
1820{
1821 char *nb_high_arg;
1822
1823 *nb_high = 0;
1824 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001825 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001826
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001827 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001828 *nb_high_arg++ = '\0';
1829 *nb_high = atoi(nb_high_arg);
1830 }
1831 else {
1832 *nb_high += *nb_low;
1833 *nb_low = 1;
1834 }
1835
1836 if (*nb_low < 0 || *nb_high < *nb_low)
1837 return -1;
1838
1839 return 0;
1840}
1841
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001842static inline void srv_set_id_from_prefix(struct server *srv, const char *prefix, int nb)
1843{
1844 chunk_printf(&trash, "%s%d", prefix, nb);
1845 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001846 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001847}
1848
1849/*
1850 * Initialize as much as possible servers from <srv> server template.
1851 * Note that a server template is a special server with
1852 * a few different parameters than a server which has
1853 * been parsed mostly the same way as a server.
Joseph Herlant44466822018-11-15 08:57:51 -08001854 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001855 * 'srv' template included.
1856 */
1857static int server_template_init(struct server *srv, struct proxy *px)
1858{
1859 int i;
1860 struct server *newsrv;
1861
1862 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 +02001863 newsrv = new_server(px);
1864 if (!newsrv)
1865 goto err;
1866
Christopher Faulet75bef002020-11-02 22:04:55 +01001867 newsrv->conf.file = strdup(srv->conf.file);
1868 newsrv->conf.line = srv->conf.line;
1869
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001870 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001871 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001872#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1873 if (newsrv->sni_expr) {
1874 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
1875 if (!newsrv->ssl_ctx.sni)
1876 goto err;
1877 }
1878#endif
1879 /* Set this new server ID. */
1880 srv_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
1881
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001882 /* Linked backwards first. This will be restablished after parsing. */
1883 newsrv->next = px->srv;
1884 px->srv = newsrv;
1885 }
1886 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1887
1888 return i - srv->tmpl_info.nb_low;
1889
1890 err:
1891 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1892 if (newsrv) {
1893#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1894 release_sample_expr(newsrv->ssl_ctx.sni);
1895#endif
1896 free_check(&newsrv->agent);
1897 free_check(&newsrv->check);
1898 }
1899 free(newsrv);
1900 return i - srv->tmpl_info.nb_low;
1901}
1902
Emeric Brund3db3842020-07-21 16:54:36 +02001903int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy,
1904 struct proxy *defproxy, int parse_addr, int in_peers_section, int initial_resolve)
Willy Tarreau272adea2014-03-31 10:39:59 +02001905{
1906 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001907 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001908 char *errmsg = NULL;
1909 int err_code = 0;
1910 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +02001911 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001912
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001913 if (!strcmp(args[0], "server") ||
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02001914 !strcmp(args[0], "peer") ||
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001915 !strcmp(args[0], "default-server") ||
1916 !strcmp(args[0], "server-template")) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001917 int cur_arg;
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001918 int defsrv = (*args[0] == 'd');
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02001919 int srv = !defsrv && (*args[0] == 'p' || !strcmp(args[0], "server"));
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001920 int srv_tmpl = !defsrv && !srv;
1921 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02001922
1923 if (!defsrv && curproxy == defproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001924 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001925 err_code |= ERR_ALERT | ERR_FATAL;
1926 goto out;
1927 }
1928 else if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL))
Olivier Houchard306e6532018-07-24 16:48:59 +02001929 err_code |= ERR_WARN;
Willy Tarreau272adea2014-03-31 10:39:59 +02001930
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001931 /* There is no mandatory first arguments for default server. */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01001932 if (srv && parse_addr) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001933 if (!*args[2]) {
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +02001934 if (in_peers_section) {
1935 return 0;
1936 }
1937 else {
1938 /* 'server' line number of argument check. */
1939 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1940 file, linenum, args[0]);
1941 err_code |= ERR_ALERT | ERR_FATAL;
1942 goto out;
1943 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001944 }
1945
1946 err = invalid_char(args[1]);
1947 }
1948 else if (srv_tmpl) {
1949 if (!*args[3]) {
1950 /* 'server-template' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001951 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 +02001952 file, linenum, args[0]);
1953 err_code |= ERR_ALERT | ERR_FATAL;
1954 goto out;
1955 }
1956
1957 err = invalid_prefix_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001958 }
1959
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001960 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001961 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 +02001962 file, linenum, *err, args[0], srv ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001963 err_code |= ERR_ALERT | ERR_FATAL;
1964 goto out;
1965 }
1966
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001967 cur_arg = 2;
1968 if (srv_tmpl) {
1969 /* Parse server-template <nb | range> arg. */
1970 if (srv_tmpl_parse_range(newsrv, args[cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001971 ha_alert("parsing [%s:%d] : Wrong %s number or range arg '%s'.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001972 file, linenum, args[0], args[cur_arg]);
1973 err_code |= ERR_ALERT | ERR_FATAL;
1974 goto out;
1975 }
1976 cur_arg++;
1977 }
1978
Willy Tarreau272adea2014-03-31 10:39:59 +02001979 if (!defsrv) {
1980 struct sockaddr_storage *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01001981 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02001982
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001983 newsrv = new_server(curproxy);
1984 if (!newsrv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001985 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Willy Tarreau272adea2014-03-31 10:39:59 +02001986 err_code |= ERR_ALERT | ERR_ABORT;
1987 goto out;
1988 }
1989
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001990 if (srv_tmpl) {
1991 newsrv->tmpl_info.nb_low = tmpl_range_low;
1992 newsrv->tmpl_info.nb_high = tmpl_range_high;
1993 }
1994
Willy Tarreau272adea2014-03-31 10:39:59 +02001995 /* the servers are linked backwards first */
1996 newsrv->next = curproxy->srv;
1997 curproxy->srv = newsrv;
Willy Tarreau272adea2014-03-31 10:39:59 +02001998 newsrv->conf.file = strdup(file);
1999 newsrv->conf.line = linenum;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002000 /* Note: for a server template, its id is its prefix.
2001 * This is a temporary id which will be used for server allocations to come
2002 * after parsing.
2003 */
2004 if (srv)
2005 newsrv->id = strdup(args[1]);
2006 else
2007 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002008
2009 /* several ways to check the port component :
2010 * - IP => port=+0, relative (IPv4 only)
2011 * - IP: => port=+0, relative
2012 * - IP:N => port=N, absolute
2013 * - IP:+N => port=+N, relative
2014 * - IP:-N => port=-N, relative
2015 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002016 if (!parse_addr)
2017 goto skip_addr;
2018
Willy Tarreau65ec4e32020-09-16 19:17:08 +02002019 sk = str2sa_range(args[cur_arg], &port, &port1, &port2, NULL, NULL,
2020 &errmsg, NULL, &fqdn,
2021 (initial_resolve ? PA_O_RESOLVE : 0) | PA_O_PORT_OK | PA_O_PORT_OFS | PA_O_STREAM | PA_O_XPRT | PA_O_CONNECT);
Willy Tarreau272adea2014-03-31 10:39:59 +02002022 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002023 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau272adea2014-03-31 10:39:59 +02002024 err_code |= ERR_ALERT | ERR_FATAL;
2025 goto out;
2026 }
2027
Willy Tarreau272adea2014-03-31 10:39:59 +02002028 if (!port1 || !port2) {
2029 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +02002030 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +02002031 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002032
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002033 /* save hostname and create associated name resolution */
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002034 if (fqdn) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002035 if (fqdn[0] == '_') { /* SRV record */
Olivier Houchard8da5f982017-08-04 18:35:36 +02002036 /* Check if a SRV request already exists, and if not, create it */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002037 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2038 newsrv->srvrq = new_dns_srvrq(newsrv, fqdn);
2039 if (newsrv->srvrq == NULL) {
Olivier Houchard8da5f982017-08-04 18:35:36 +02002040 err_code |= ERR_ALERT | ERR_FATAL;
2041 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002042 }
2043 }
2044 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002045 ha_alert("parsing [%s:%d] : Can't create DNS resolution for server '%s'\n",
Christopher Faulet67957bd2017-09-27 11:00:59 +02002046 file, linenum, newsrv->id);
2047 err_code |= ERR_ALERT | ERR_FATAL;
2048 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002049 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002050 }
2051
Willy Tarreau272adea2014-03-31 10:39:59 +02002052 newsrv->addr = *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002053 newsrv->svc_port = port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002054
Olivier Houchard8da5f982017-08-04 18:35:36 +02002055 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002056 ha_alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002057 file, linenum, newsrv->addr.ss_family, args[cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002058 err_code |= ERR_ALERT | ERR_FATAL;
2059 goto out;
2060 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002061
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002062 cur_arg++;
2063 skip_addr:
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002064 /* Copy default server settings to new server settings. */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002065 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002066 HA_SPIN_INIT(&newsrv->lock);
Willy Tarreau272adea2014-03-31 10:39:59 +02002067 } else {
2068 newsrv = &curproxy->defsrv;
2069 cur_arg = 1;
Thierry Fournierada34842016-02-17 21:25:09 +01002070 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002071 newsrv->dns_opts.accept_duplicate_ip = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002072 }
2073
2074 while (*args[cur_arg]) {
Christopher Fauletcbba66c2020-04-06 14:26:30 +02002075 if (!strcmp(args[cur_arg], "init-addr")) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002076 char *p, *end;
2077 int done;
Willy Tarreau4310d362016-11-02 15:05:56 +01002078 struct sockaddr_storage sa;
Baptiste Assmann25938272016-09-21 20:26:16 +02002079
2080 newsrv->init_addr_methods = 0;
2081 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
2082
2083 for (p = args[cur_arg + 1]; *p; p = end) {
2084 /* cut on next comma */
2085 for (end = p; *end && *end != ','; end++);
2086 if (*end)
2087 *(end++) = 0;
2088
Willy Tarreau4310d362016-11-02 15:05:56 +01002089 memset(&sa, 0, sizeof(sa));
Baptiste Assmann25938272016-09-21 20:26:16 +02002090 if (!strcmp(p, "libc")) {
2091 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
2092 }
2093 else if (!strcmp(p, "last")) {
2094 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
2095 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01002096 else if (!strcmp(p, "none")) {
2097 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
2098 }
Willy Tarreau4310d362016-11-02 15:05:56 +01002099 else if (str2ip2(p, &sa, 0)) {
2100 if (is_addr(&newsrv->init_addr)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002101 ha_alert("parsing [%s:%d]: '%s' : initial address already specified, cannot add '%s'.\n",
Willy Tarreau4310d362016-11-02 15:05:56 +01002102 file, linenum, args[cur_arg], p);
2103 err_code |= ERR_ALERT | ERR_FATAL;
2104 goto out;
2105 }
2106 newsrv->init_addr = sa;
2107 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
2108 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002109 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002110 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 +02002111 file, linenum, args[cur_arg], p);
2112 err_code |= ERR_ALERT | ERR_FATAL;
2113 goto out;
2114 }
2115 if (!done) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002116 ha_alert("parsing [%s:%d]: '%s' : too many init-addr methods when trying to add '%s'\n",
Baptiste Assmann25938272016-09-21 20:26:16 +02002117 file, linenum, args[cur_arg], p);
2118 err_code |= ERR_ALERT | ERR_FATAL;
2119 goto out;
2120 }
2121 }
2122 cur_arg += 2;
2123 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002124 else if (!strcmp(args[cur_arg], "resolvers")) {
Frédéric Lécailledaa2fe62017-04-20 12:17:50 +02002125 free(newsrv->resolvers_id);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002126 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
2127 cur_arg += 2;
2128 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002129 else if (!strcmp(args[cur_arg], "resolve-opts")) {
2130 char *p, *end;
2131
2132 for (p = args[cur_arg + 1]; *p; p = end) {
2133 /* cut on next comma */
2134 for (end = p; *end && *end != ','; end++);
2135 if (*end)
2136 *(end++) = 0;
2137
2138 if (!strcmp(p, "allow-dup-ip")) {
2139 newsrv->dns_opts.accept_duplicate_ip = 1;
2140 }
Daniel Corbettf8716912019-11-17 09:48:56 -05002141 else if (!strcmp(p, "ignore-weight")) {
2142 newsrv->dns_opts.ignore_weight = 1;
2143 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002144 else if (!strcmp(p, "prevent-dup-ip")) {
2145 newsrv->dns_opts.accept_duplicate_ip = 0;
2146 }
2147 else {
Daniel Corbettf8716912019-11-17 09:48:56 -05002148 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 +02002149 file, linenum, args[cur_arg], p);
2150 err_code |= ERR_ALERT | ERR_FATAL;
2151 goto out;
2152 }
2153 }
2154
2155 cur_arg += 2;
2156 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002157 else if (!strcmp(args[cur_arg], "resolve-prefer")) {
2158 if (!strcmp(args[cur_arg + 1], "ipv4"))
Thierry Fournierada34842016-02-17 21:25:09 +01002159 newsrv->dns_opts.family_prio = AF_INET;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002160 else if (!strcmp(args[cur_arg + 1], "ipv6"))
Thierry Fournierada34842016-02-17 21:25:09 +01002161 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002162 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002163 ha_alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002164 file, linenum, args[cur_arg]);
2165 err_code |= ERR_ALERT | ERR_FATAL;
2166 goto out;
2167 }
2168 cur_arg += 2;
2169 }
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002170 else if (!strcmp(args[cur_arg], "resolve-net")) {
2171 char *p, *e;
2172 unsigned char mask;
2173 struct dns_options *opt;
2174
2175 if (!args[cur_arg + 1] || args[cur_arg + 1][0] == '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002176 ha_alert("parsing [%s:%d]: '%s' expects a list of networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002177 file, linenum, args[cur_arg]);
2178 err_code |= ERR_ALERT | ERR_FATAL;
2179 goto out;
2180 }
2181
2182 opt = &newsrv->dns_opts;
2183
2184 /* Split arguments by comma, and convert it from ipv4 or ipv6
2185 * string network in in_addr or in6_addr.
2186 */
2187 p = args[cur_arg + 1];
2188 e = p;
2189 while (*p != '\0') {
Joseph Herlant44466822018-11-15 08:57:51 -08002190 /* If no room available, return error. */
David Carlierd10025c2016-04-08 10:26:44 +01002191 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002192 ha_alert("parsing [%s:%d]: '%s' exceed %d networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002193 file, linenum, args[cur_arg], SRV_MAX_PREF_NET);
2194 err_code |= ERR_ALERT | ERR_FATAL;
2195 goto out;
2196 }
2197 /* look for end or comma. */
2198 while (*e != ',' && *e != '\0')
2199 e++;
2200 if (*e == ',') {
2201 *e = '\0';
2202 e++;
2203 }
2204 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
2205 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
2206 /* Try to convert input string from ipv4 or ipv6 network. */
2207 opt->pref_net[opt->pref_net_nb].family = AF_INET;
2208 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
2209 &mask)) {
2210 /* Try to convert input string from ipv6 network. */
2211 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
2212 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
2213 } else {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05002214 /* All network conversions fail, return error. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002215 ha_alert("parsing [%s:%d]: '%s': invalid network '%s'.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002216 file, linenum, args[cur_arg], p);
2217 err_code |= ERR_ALERT | ERR_FATAL;
2218 goto out;
2219 }
2220 opt->pref_net_nb++;
2221 p = e;
2222 }
2223
2224 cur_arg += 2;
2225 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002226 else if (!strcmp(args[cur_arg], "weight")) {
2227 int w;
2228 w = atol(args[cur_arg + 1]);
2229 if (w < 0 || w > SRV_UWGHT_MAX) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002230 ha_alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002231 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
2232 err_code |= ERR_ALERT | ERR_FATAL;
2233 goto out;
2234 }
2235 newsrv->uweight = newsrv->iweight = w;
2236 cur_arg += 2;
2237 }
Emeric Brun97556472020-05-30 01:42:45 +02002238 else if (!strcmp(args[cur_arg], "log-proto")) {
2239 if (!strcmp(args[cur_arg + 1], "legacy"))
2240 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
2241 else if (!strcmp(args[cur_arg + 1], "octet-count"))
2242 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
2243 else {
2244 ha_alert("parsing [%s:%d]: '%s' expects one of 'legacy' or "
2245 "'octet-count' but got '%s'\n",
2246 file, linenum, args[cur_arg], args[cur_arg + 1]);
2247 err_code |= ERR_ALERT | ERR_FATAL;
2248 goto out;
2249 }
2250 cur_arg += 2;
2251 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002252 else if (!strcmp(args[cur_arg], "minconn")) {
2253 newsrv->minconn = atol(args[cur_arg + 1]);
2254 cur_arg += 2;
2255 }
2256 else if (!strcmp(args[cur_arg], "maxconn")) {
2257 newsrv->maxconn = atol(args[cur_arg + 1]);
2258 cur_arg += 2;
2259 }
2260 else if (!strcmp(args[cur_arg], "maxqueue")) {
2261 newsrv->maxqueue = atol(args[cur_arg + 1]);
2262 cur_arg += 2;
2263 }
2264 else if (!strcmp(args[cur_arg], "slowstart")) {
2265 /* slowstart is stored in seconds */
2266 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02002267
2268 if (err == PARSE_TIME_OVER) {
2269 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).\n",
2270 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2271 err_code |= ERR_ALERT | ERR_FATAL;
2272 goto out;
2273 }
2274 else if (err == PARSE_TIME_UNDER) {
2275 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.\n",
2276 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2277 err_code |= ERR_ALERT | ERR_FATAL;
2278 goto out;
2279 }
2280 else if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002281 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002282 file, linenum, *err, newsrv->id);
2283 err_code |= ERR_ALERT | ERR_FATAL;
2284 goto out;
2285 }
2286 newsrv->slowstart = (val + 999) / 1000;
2287 cur_arg += 2;
2288 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002289 else if (!strcmp(args[cur_arg], "on-error")) {
2290 if (!strcmp(args[cur_arg + 1], "fastinter"))
2291 newsrv->onerror = HANA_ONERR_FASTINTER;
2292 else if (!strcmp(args[cur_arg + 1], "fail-check"))
2293 newsrv->onerror = HANA_ONERR_FAILCHK;
2294 else if (!strcmp(args[cur_arg + 1], "sudden-death"))
2295 newsrv->onerror = HANA_ONERR_SUDDTH;
2296 else if (!strcmp(args[cur_arg + 1], "mark-down"))
2297 newsrv->onerror = HANA_ONERR_MARKDWN;
2298 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002299 ha_alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
Willy Tarreau272adea2014-03-31 10:39:59 +02002300 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
2301 file, linenum, args[cur_arg], args[cur_arg + 1]);
2302 err_code |= ERR_ALERT | ERR_FATAL;
2303 goto out;
2304 }
2305
2306 cur_arg += 2;
2307 }
2308 else if (!strcmp(args[cur_arg], "on-marked-down")) {
2309 if (!strcmp(args[cur_arg + 1], "shutdown-sessions"))
2310 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
2311 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002312 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002313 file, linenum, args[cur_arg], args[cur_arg + 1]);
2314 err_code |= ERR_ALERT | ERR_FATAL;
2315 goto out;
2316 }
2317
2318 cur_arg += 2;
2319 }
2320 else if (!strcmp(args[cur_arg], "on-marked-up")) {
2321 if (!strcmp(args[cur_arg + 1], "shutdown-backup-sessions"))
2322 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
2323 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002324 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002325 file, linenum, args[cur_arg], args[cur_arg + 1]);
2326 err_code |= ERR_ALERT | ERR_FATAL;
2327 goto out;
2328 }
2329
2330 cur_arg += 2;
2331 }
2332 else if (!strcmp(args[cur_arg], "error-limit")) {
2333 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002334 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002335 file, linenum, args[cur_arg]);
2336 err_code |= ERR_ALERT | ERR_FATAL;
2337 goto out;
2338 }
2339
2340 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
2341
2342 if (newsrv->consecutive_errors_limit <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002343 ha_alert("parsing [%s:%d]: %s has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002344 file, linenum, args[cur_arg]);
2345 err_code |= ERR_ALERT | ERR_FATAL;
2346 goto out;
2347 }
2348 cur_arg += 2;
2349 }
Frédéric Lécaille8d083ed2017-04-14 15:19:56 +02002350 else if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside: needs "source" first */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002351 ha_alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002352 file, linenum, "usesrc", "source");
2353 err_code |= ERR_ALERT | ERR_FATAL;
2354 goto out;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002355 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002356 else {
2357 static int srv_dumped;
2358 struct srv_kw *kw;
2359 char *err;
2360
2361 kw = srv_find_kw(args[cur_arg]);
2362 if (kw) {
2363 char *err = NULL;
2364 int code;
2365
2366 if (!kw->parse) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002367 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 +02002368 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002369 if (kw->skip != -1)
2370 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002371 err_code |= ERR_ALERT | ERR_FATAL;
2372 goto out;
2373 }
2374
2375 if (defsrv && !kw->default_ok) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002376 ha_alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002377 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002378 if (kw->skip != -1)
2379 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002380 err_code |= ERR_ALERT;
2381 continue;
2382 }
2383
2384 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
2385 err_code |= code;
2386
2387 if (code) {
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002388 display_parser_err(file, linenum, args, cur_arg, code, &err);
Willy Tarreau272adea2014-03-31 10:39:59 +02002389 if (code & ERR_FATAL) {
2390 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002391 if (kw->skip != -1)
2392 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002393 goto out;
2394 }
2395 }
2396 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002397 if (kw->skip != -1)
2398 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002399 continue;
2400 }
2401
2402 err = NULL;
2403 if (!srv_dumped) {
2404 srv_dump_kws(&err);
2405 indent_msg(&err, 4);
2406 srv_dumped = 1;
2407 }
2408
Christopher Faulet767a84b2017-11-24 16:50:31 +01002409 ha_alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002410 file, linenum, args[0], args[1], args[cur_arg],
2411 err ? " Registered keywords :" : "", err ? err : "");
2412 free(err);
2413
2414 err_code |= ERR_ALERT | ERR_FATAL;
2415 goto out;
2416 }
2417 }
2418
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002419 if (!defsrv)
2420 err_code |= server_finalize_init(file, linenum, args, cur_arg, newsrv, curproxy);
2421 if (err_code & ERR_FATAL)
2422 goto out;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002423 if (srv_tmpl)
2424 server_template_init(newsrv, curproxy);
Willy Tarreau272adea2014-03-31 10:39:59 +02002425 }
Willy Tarreau07101d52015-09-08 16:16:35 +02002426 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002427 return 0;
2428
2429 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02002430 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002431 free(errmsg);
2432 return err_code;
2433}
2434
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002435/* Returns a pointer to the first server matching either id <id>.
2436 * NULL is returned if no match is found.
2437 * the lookup is performed in the backend <bk>
2438 */
2439struct server *server_find_by_id(struct proxy *bk, int id)
2440{
2441 struct eb32_node *eb32;
2442 struct server *curserver;
2443
2444 if (!bk || (id ==0))
2445 return NULL;
2446
2447 /* <bk> has no backend capabilities, so it can't have a server */
2448 if (!(bk->cap & PR_CAP_BE))
2449 return NULL;
2450
2451 curserver = NULL;
2452
2453 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2454 if (eb32)
2455 curserver = container_of(eb32, struct server, conf.id);
2456
2457 return curserver;
2458}
2459
2460/* Returns a pointer to the first server matching either name <name>, or id
2461 * if <name> starts with a '#'. NULL is returned if no match is found.
2462 * the lookup is performed in the backend <bk>
2463 */
2464struct server *server_find_by_name(struct proxy *bk, const char *name)
2465{
2466 struct server *curserver;
2467
2468 if (!bk || !name)
2469 return NULL;
2470
2471 /* <bk> has no backend capabilities, so it can't have a server */
2472 if (!(bk->cap & PR_CAP_BE))
2473 return NULL;
2474
2475 curserver = NULL;
2476 if (*name == '#') {
2477 curserver = server_find_by_id(bk, atoi(name + 1));
2478 if (curserver)
2479 return curserver;
2480 }
2481 else {
2482 curserver = bk->srv;
2483
2484 while (curserver && (strcmp(curserver->id, name) != 0))
2485 curserver = curserver->next;
2486
2487 if (curserver)
2488 return curserver;
2489 }
2490
2491 return NULL;
2492}
2493
2494struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2495{
2496 struct server *byname;
2497 struct server *byid;
2498
2499 if (!name && !id)
2500 return NULL;
2501
2502 if (diff)
2503 *diff = 0;
2504
2505 byname = byid = NULL;
2506
2507 if (name) {
2508 byname = server_find_by_name(bk, name);
2509 if (byname && (!id || byname->puid == id))
2510 return byname;
2511 }
2512
2513 /* remaining possibilities :
2514 * - name not set
2515 * - name set but not found
2516 * - name found but ID doesn't match
2517 */
2518 if (id) {
2519 byid = server_find_by_id(bk, id);
2520 if (byid) {
2521 if (byname) {
2522 /* use id only if forced by configuration */
2523 if (byid->flags & SRV_F_FORCED_ID) {
2524 if (diff)
2525 *diff |= 2;
2526 return byid;
2527 }
2528 else {
2529 if (diff)
2530 *diff |= 1;
2531 return byname;
2532 }
2533 }
2534
2535 /* remaining possibilities:
2536 * - name not set
2537 * - name set but not found
2538 */
2539 if (name && diff)
2540 *diff |= 2;
2541 return byid;
2542 }
2543
2544 /* id bot found */
2545 if (byname) {
2546 if (diff)
2547 *diff |= 1;
2548 return byname;
2549 }
2550 }
2551
2552 return NULL;
2553}
2554
Willy Tarreau46b7f532018-08-21 11:54:26 +02002555/* Update a server state using the parameters available in the params list.
2556 *
2557 * Grabs the server lock during operation.
2558 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002559static void srv_update_state(struct server *srv, int version, char **params)
2560{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002561 char *p;
Willy Tarreau83061a82018-07-13 11:56:34 +02002562 struct buffer *msg;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002563
2564 /* fields since version 1
2565 * and common to all other upcoming versions
2566 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002567 enum srv_state srv_op_state;
2568 enum srv_admin srv_admin_state;
2569 unsigned srv_uweight, srv_iweight;
2570 unsigned long srv_last_time_change;
2571 short srv_check_status;
2572 enum chk_result srv_check_result;
2573 int srv_check_health;
2574 int srv_check_state, srv_agent_state;
2575 int bk_f_forced_id;
2576 int srv_f_forced_id;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002577 int fqdn_set_by_cli;
2578 const char *fqdn;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002579 const char *port_str;
2580 unsigned int port;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002581 char *srvrecord;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002582
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002583 fqdn = NULL;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002584 port = 0;
Willy Tarreau31138fa2015-09-29 18:38:47 +02002585 msg = get_trash_chunk();
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002586 switch (version) {
2587 case 1:
2588 /*
2589 * now we can proceed with server's state update:
2590 * srv_addr: params[0]
2591 * srv_op_state: params[1]
2592 * srv_admin_state: params[2]
2593 * srv_uweight: params[3]
2594 * srv_iweight: params[4]
2595 * srv_last_time_change: params[5]
2596 * srv_check_status: params[6]
2597 * srv_check_result: params[7]
2598 * srv_check_health: params[8]
2599 * srv_check_state: params[9]
2600 * srv_agent_state: params[10]
2601 * bk_f_forced_id: params[11]
2602 * srv_f_forced_id: params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002603 * srv_fqdn: params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02002604 * srv_port: params[14]
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002605 * srvrecord: params[15]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002606 */
2607
2608 /* validating srv_op_state */
2609 p = NULL;
2610 errno = 0;
2611 srv_op_state = strtol(params[1], &p, 10);
2612 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
2613 (srv_op_state != SRV_ST_STOPPED &&
2614 srv_op_state != SRV_ST_STARTING &&
2615 srv_op_state != SRV_ST_RUNNING &&
2616 srv_op_state != SRV_ST_STOPPING)) {
2617 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
2618 }
2619
2620 /* validating srv_admin_state */
2621 p = NULL;
2622 errno = 0;
2623 srv_admin_state = strtol(params[2], &p, 10);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002624 fqdn_set_by_cli = !!(srv_admin_state & SRV_ADMF_HMAINT);
Willy Tarreau757478e2016-11-03 19:22:19 +01002625
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002626 /* inherited statuses will be recomputed later.
2627 * Also disable SRV_ADMF_HMAINT flag (set from stats socket fqdn).
2628 */
2629 srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_HMAINT;
Willy Tarreau757478e2016-11-03 19:22:19 +01002630
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002631 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
2632 (srv_admin_state != 0 &&
2633 srv_admin_state != SRV_ADMF_FMAINT &&
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002634 srv_admin_state != SRV_ADMF_CMAINT &&
2635 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
Willy Tarreaue1bde142016-11-03 18:33:25 +01002636 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FDRAIN) &&
Willy Tarreau757478e2016-11-03 19:22:19 +01002637 srv_admin_state != SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002638 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
2639 }
2640
2641 /* validating srv_uweight */
2642 p = NULL;
2643 errno = 0;
2644 srv_uweight = strtol(params[3], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002645 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002646 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
2647
2648 /* validating srv_iweight */
2649 p = NULL;
2650 errno = 0;
2651 srv_iweight = strtol(params[4], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002652 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002653 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
2654
2655 /* validating srv_last_time_change */
2656 p = NULL;
2657 errno = 0;
2658 srv_last_time_change = strtol(params[5], &p, 10);
2659 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2660 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
2661
2662 /* validating srv_check_status */
2663 p = NULL;
2664 errno = 0;
2665 srv_check_status = strtol(params[6], &p, 10);
2666 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2667 (srv_check_status >= HCHK_STATUS_SIZE))
2668 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
2669
2670 /* validating srv_check_result */
2671 p = NULL;
2672 errno = 0;
2673 srv_check_result = strtol(params[7], &p, 10);
2674 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2675 (srv_check_result != CHK_RES_UNKNOWN &&
2676 srv_check_result != CHK_RES_NEUTRAL &&
2677 srv_check_result != CHK_RES_FAILED &&
2678 srv_check_result != CHK_RES_PASSED &&
2679 srv_check_result != CHK_RES_CONDPASS)) {
2680 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2681 }
2682
2683 /* validating srv_check_health */
2684 p = NULL;
2685 errno = 0;
2686 srv_check_health = strtol(params[8], &p, 10);
2687 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2688 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
2689
2690 /* validating srv_check_state */
2691 p = NULL;
2692 errno = 0;
2693 srv_check_state = strtol(params[9], &p, 10);
2694 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2695 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2696 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
2697
2698 /* validating srv_agent_state */
2699 p = NULL;
2700 errno = 0;
2701 srv_agent_state = strtol(params[10], &p, 10);
2702 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2703 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2704 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
2705
2706 /* validating bk_f_forced_id */
2707 p = NULL;
2708 errno = 0;
2709 bk_f_forced_id = strtol(params[11], &p, 10);
2710 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
2711 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
2712
2713 /* validating srv_f_forced_id */
2714 p = NULL;
2715 errno = 0;
2716 srv_f_forced_id = strtol(params[12], &p, 10);
2717 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
2718 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
2719
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002720 /* validating srv_fqdn */
2721 fqdn = params[13];
2722 if (fqdn && *fqdn == '-')
2723 fqdn = NULL;
2724 if (fqdn && (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn))) {
2725 chunk_appendf(msg, ", invalid srv_fqdn value '%s'", params[13]);
2726 fqdn = NULL;
2727 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002728
Frédéric Lécaille31694712017-08-01 08:47:19 +02002729 port_str = params[14];
2730 if (port_str) {
2731 port = strl2uic(port_str, strlen(port_str));
2732 if (port > USHRT_MAX) {
2733 chunk_appendf(msg, ", invalid srv_port value '%s'", port_str);
2734 port_str = NULL;
2735 }
2736 }
2737
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002738 /* SRV record
2739 * NOTE: in HAProxy, SRV records must start with an underscore '_'
2740 */
2741 srvrecord = params[15];
2742 if (srvrecord && *srvrecord != '_')
2743 srvrecord = NULL;
2744
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002745 /* don't apply anything if one error has been detected */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002746 if (msg->data)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002747 goto out;
2748
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002749 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002750 /* recover operational state and apply it to this server
2751 * and all servers tracking this one */
Jérôme Magninf57afa42019-01-20 11:27:40 +01002752 srv->check.health = srv_check_health;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002753 switch (srv_op_state) {
2754 case SRV_ST_STOPPED:
2755 srv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02002756 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002757 break;
2758 case SRV_ST_STARTING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002759 /* If rise == 1 there is no STARTING state, let's switch to
2760 * RUNNING
2761 */
2762 if (srv->check.rise == 1) {
2763 srv->check.health = srv->check.rise + srv->check.fall - 1;
2764 srv_set_running(srv, "", NULL);
2765 break;
2766 }
2767 if (srv->check.health < 1 || srv->check.health >= srv->check.rise)
2768 srv->check.health = srv->check.rise - 1;
Emeric Brun52a91d32017-08-31 14:41:55 +02002769 srv->next_state = srv_op_state;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002770 break;
2771 case SRV_ST_STOPPING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002772 /* If fall == 1 there is no STOPPING state, let's switch to
2773 * STOPPED
2774 */
2775 if (srv->check.fall == 1) {
2776 srv->check.health = 0;
2777 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
2778 break;
2779 }
2780 if (srv->check.health < srv->check.rise ||
2781 srv->check.health > srv->check.rise + srv->check.fall - 2)
2782 srv->check.health = srv->check.rise;
Emeric Brun5a133512017-10-19 14:42:30 +02002783 srv_set_stopping(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002784 break;
2785 case SRV_ST_RUNNING:
2786 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02002787 srv_set_running(srv, "", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002788 break;
2789 }
2790
2791 /* When applying server state, the following rules apply:
2792 * - in case of a configuration change, we apply the setting from the new
2793 * configuration, regardless of old running state
2794 * - if no configuration change, we apply old running state only if old running
2795 * state is different from new configuration state
2796 */
2797 /* configuration has changed */
Emeric Brun52a91d32017-08-31 14:41:55 +02002798 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->next_admin & SRV_ADMF_CMAINT)) {
2799 if (srv->next_admin & SRV_ADMF_CMAINT)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002800 srv_adm_set_maint(srv);
2801 else
2802 srv_adm_set_ready(srv);
2803 }
2804 /* configuration is the same, let's compate old running state and new conf state */
2805 else {
Emeric Brun52a91d32017-08-31 14:41:55 +02002806 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002807 srv_adm_set_maint(srv);
Emeric Brun52a91d32017-08-31 14:41:55 +02002808 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002809 srv_adm_set_ready(srv);
2810 }
2811 /* apply drain mode if server is currently enabled */
Emeric Brun52a91d32017-08-31 14:41:55 +02002812 if (!(srv->next_admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002813 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
Willy Tarreau22cace22016-11-03 18:19:49 +01002814 * (srv->iweight is the weight set up in configuration).
2815 * There are two possible reasons for FDRAIN to have been present :
2816 * - previous config weight was zero
2817 * - "set server b/s drain" was sent to the CLI
2818 *
2819 * In the first case, we simply want to drop this drain state
2820 * if the new weight is not zero anymore, meaning the administrator
2821 * has intentionally turned the weight back to a positive value to
2822 * enable the server again after an operation. In the second case,
2823 * the drain state was forced on the CLI regardless of the config's
2824 * weight so we don't want a change to the config weight to lose this
2825 * status. What this means is :
2826 * - if previous weight was 0 and new one is >0, drop the DRAIN state.
2827 * - if the previous weight was >0, keep it.
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002828 */
Willy Tarreau22cace22016-11-03 18:19:49 +01002829 if (srv_iweight > 0 || srv->iweight == 0)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002830 srv_adm_set_drain(srv);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002831 }
2832
2833 srv->last_change = date.tv_sec - srv_last_time_change;
2834 srv->check.status = srv_check_status;
2835 srv->check.result = srv_check_result;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002836
2837 /* Only case we want to apply is removing ENABLED flag which could have been
2838 * done by the "disable health" command over the stats socket
2839 */
2840 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2841 (srv_check_state & CHK_ST_CONFIGURED) &&
2842 !(srv_check_state & CHK_ST_ENABLED))
2843 srv->check.state &= ~CHK_ST_ENABLED;
2844
2845 /* Only case we want to apply is removing ENABLED flag which could have been
2846 * done by the "disable agent" command over the stats socket
2847 */
2848 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
2849 (srv_agent_state & CHK_ST_CONFIGURED) &&
2850 !(srv_agent_state & CHK_ST_ENABLED))
2851 srv->agent.state &= ~CHK_ST_ENABLED;
2852
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002853 /* We want to apply the previous 'running' weight (srv_uweight) only if there
2854 * was no change in the configuration: both previous and new iweight are equals
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002855 *
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002856 * It means that a configuration file change has precedence over a unix socket change
2857 * for server's weight
2858 *
2859 * by default, HAProxy applies the following weight when parsing the configuration
2860 * srv->uweight = srv->iweight
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002861 */
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002862 if (srv_iweight == srv->iweight) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002863 srv->uweight = srv_uweight;
2864 }
Willy Tarreau3ff577e2018-08-02 11:48:52 +02002865 server_recalc_eweight(srv, 1);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002866
Willy Tarreaue5a60682016-11-09 14:54:53 +01002867 /* load server IP address */
Daniel Corbett9215ffa2018-05-19 19:43:24 -04002868 if (strcmp(params[0], "-"))
2869 srv->lastaddr = strdup(params[0]);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002870
2871 if (fqdn && srv->hostname) {
2872 if (!strcmp(srv->hostname, fqdn)) {
2873 /* Here we reset the 'set from stats socket FQDN' flag
2874 * to support such transitions:
2875 * Let's say initial FQDN value is foo1 (in configuration file).
2876 * - FQDN changed from stats socket, from foo1 to foo2 value,
2877 * - FQDN changed again from file configuration (with the same previous value
2878 set from stats socket, from foo1 to foo2 value),
2879 * - reload for any other reason than a FQDN modification,
2880 * the configuration file FQDN matches the fqdn server state file value.
2881 * So we must reset the 'set from stats socket FQDN' flag to be consistent with
Joseph Herlant44466822018-11-15 08:57:51 -08002882 * any further FQDN modification.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002883 */
Emeric Brun52a91d32017-08-31 14:41:55 +02002884 srv->next_admin &= ~SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002885 }
2886 else {
2887 /* If the FDQN has been changed from stats socket,
2888 * apply fqdn state file value (which is the value set
2889 * from stats socket).
Baptiste Assmann13a92322019-06-07 09:40:55 +02002890 * Also ensure the runtime resolver will process this resolution.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002891 */
2892 if (fqdn_set_by_cli) {
Olivier Houchardd16bfe62017-10-31 15:21:19 +01002893 srv_set_fqdn(srv, fqdn, 0);
Baptiste Assmann13a92322019-06-07 09:40:55 +02002894 srv->flags &= ~SRV_F_NO_RESOLUTION;
Emeric Brun52a91d32017-08-31 14:41:55 +02002895 srv->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002896 }
2897 }
2898 }
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002899 /* If all the conditions below are validated, this means
2900 * we're evaluating a server managed by SRV resolution
2901 */
2902 else if (fqdn && !srv->hostname && srvrecord) {
2903 int res;
2904
2905 /* we can't apply previous state if SRV record has changed */
2906 if (srv->srvrq && strcmp(srv->srvrq->name, srvrecord) != 0) {
2907 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);
2908 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2909 goto out;
2910 }
2911
2912 /* create or find a SRV resolution for this srv record */
2913 if (srv->srvrq == NULL && (srv->srvrq = find_srvrq_by_name(srvrecord, srv->proxy)) == NULL)
2914 srv->srvrq = new_dns_srvrq(srv, srvrecord);
2915 if (srv->srvrq == NULL) {
2916 chunk_appendf(msg, ", can't create or find SRV resolution '%s' for server '%s'", srvrecord, srv->id);
2917 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2918 goto out;
2919 }
2920
2921 /* prepare DNS resolution for this server */
2922 res = srv_prepare_for_resolution(srv, fqdn);
2923 if (res == -1) {
2924 chunk_appendf(msg, ", can't allocate memory for DNS resolution for server '%s'", srv->id);
2925 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2926 goto out;
2927 }
2928
2929 /* configure check.port accordingly */
2930 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2931 !(srv->flags & SRV_F_CHECKPORT))
2932 srv->check.port = port;
2933
2934 /* Unset SRV_F_MAPPORTS for SRV records.
2935 * SRV_F_MAPPORTS is unfortunately set by parse_server()
2936 * because no ports are provided in the configuration file.
2937 * This is because HAProxy will use the port found into the SRV record.
2938 */
2939 srv->flags &= ~SRV_F_MAPPORTS;
2940 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002941
Frédéric Lécaille31694712017-08-01 08:47:19 +02002942 if (port_str)
2943 srv->svc_port = port;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002944 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Frédéric Lécaille31694712017-08-01 08:47:19 +02002945
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002946 break;
2947 default:
2948 chunk_appendf(msg, ", version '%d' not supported", version);
2949 }
2950
2951 out:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002952 if (msg->data) {
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002953 chunk_appendf(msg, "\n");
Christopher Faulet767a84b2017-11-24 16:50:31 +01002954 ha_warning("server-state application failed for server '%s/%s'%s",
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002955 srv->proxy->id, srv->id, msg->area);
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002956 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002957}
2958
Baptiste Assmannda29fe22019-06-13 13:24:29 +02002959
2960/*
2961 * read next line from file <f> and return the server state version if one found.
2962 * If no version is found, then 0 is returned
2963 * Note that this should be the first read on <f>
2964 */
2965static int srv_state_get_version(FILE *f) {
2966 char buf[2];
2967 int ret;
2968
2969 /* first character of first line of the file must contain the version of the export */
2970 if (fgets(buf, 2, f) == NULL) {
2971 return 0;
2972 }
2973
2974 ret = atoi(buf);
2975 if ((ret < SRV_STATE_FILE_VERSION_MIN) ||
2976 (ret > SRV_STATE_FILE_VERSION_MAX))
2977 return 0;
2978
2979 return ret;
2980}
2981
2982
2983/*
2984 * parses server state line stored in <buf> and supposedly in version <version>.
2985 * Set <params> and <srv_params> accordingly.
2986 * In case of error, params[0] is set to NULL.
2987 */
2988static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params)
2989{
2990 int buflen, arg, srv_arg;
2991 char *cur, *end;
2992
2993 buflen = strlen(buf);
2994 cur = buf;
2995 end = cur + buflen;
2996
2997 /* we need at least one character */
2998 if (buflen == 0) {
2999 params[0] = NULL;
3000 return;
3001 }
3002
3003 /* ignore blank characters at the beginning of the line */
Willy Tarreau90807112020-02-25 08:16:33 +01003004 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003005 ++cur;
3006
3007 /* Ignore empty or commented lines */
3008 if (cur == end || *cur == '#') {
3009 params[0] = NULL;
3010 return;
3011 }
3012
3013 /* truncated lines */
3014 if (buf[buflen - 1] != '\n') {
3015 //ha_warning("server-state file '%s': truncated line\n", filepath);
3016 params[0] = NULL;
3017 return;
3018 }
3019
3020 /* Removes trailing '\n' */
3021 buf[buflen - 1] = '\0';
3022
3023 /* we're now ready to move the line into *srv_params[] */
3024 params[0] = cur;
3025 arg = 1;
3026 srv_arg = 0;
3027 while (*cur && arg < SRV_STATE_FILE_MAX_FIELDS) {
Willy Tarreau90807112020-02-25 08:16:33 +01003028 if (isspace((unsigned char)*cur)) {
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003029 *cur = '\0';
3030 ++cur;
Willy Tarreau90807112020-02-25 08:16:33 +01003031 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003032 ++cur;
3033 switch (version) {
3034 case 1:
3035 /*
3036 * srv_addr: params[4] => srv_params[0]
3037 * srv_op_state: params[5] => srv_params[1]
3038 * srv_admin_state: params[6] => srv_params[2]
3039 * srv_uweight: params[7] => srv_params[3]
3040 * srv_iweight: params[8] => srv_params[4]
3041 * srv_last_time_change: params[9] => srv_params[5]
3042 * srv_check_status: params[10] => srv_params[6]
3043 * srv_check_result: params[11] => srv_params[7]
3044 * srv_check_health: params[12] => srv_params[8]
3045 * srv_check_state: params[13] => srv_params[9]
3046 * srv_agent_state: params[14] => srv_params[10]
3047 * bk_f_forced_id: params[15] => srv_params[11]
3048 * srv_f_forced_id: params[16] => srv_params[12]
3049 * srv_fqdn: params[17] => srv_params[13]
3050 * srv_port: params[18] => srv_params[14]
3051 * srvrecord: params[19] => srv_params[15]
3052 */
3053 if (arg >= 4) {
3054 srv_params[srv_arg] = cur;
3055 ++srv_arg;
3056 }
3057 break;
3058 }
3059
3060 params[arg] = cur;
3061 ++arg;
3062 }
3063 else {
3064 ++cur;
3065 }
3066 }
3067
3068 /* if line is incomplete line, then ignore it.
3069 * otherwise, update useful flags */
3070 switch (version) {
3071 case 1:
3072 if (arg < SRV_STATE_FILE_NB_FIELDS_VERSION_1) {
3073 params[0] = NULL;
3074 return;
3075 }
3076 break;
3077 }
3078
3079 return;
3080}
3081
3082
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003083/* This function parses all the proxies and only take care of the backends (since we're looking for server)
3084 * For each proxy, it does the following:
3085 * - opens its server state file (either one or local one)
3086 * - read whole file, line by line
3087 * - analyse each line to check if it matches our current backend:
3088 * - backend name matches
3089 * - backend id matches if id is forced and name doesn't match
3090 * - if the server pointed by the line is found, then state is applied
3091 *
3092 * If the running backend uuid or id differs from the state file, then HAProxy reports
3093 * a warning.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003094 *
3095 * Grabs the server's lock via srv_update_state().
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003096 */
3097void apply_server_state(void)
3098{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003099 char mybuf[SRV_STATE_LINE_MAXLEN];
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003100 char *params[SRV_STATE_FILE_MAX_FIELDS] = {0};
3101 char *srv_params[SRV_STATE_FILE_MAX_FIELDS] = {0};
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003102 int version, global_file_version;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003103 FILE *f;
3104 char *filepath;
3105 char globalfilepath[MAXPATHLEN + 1];
3106 char localfilepath[MAXPATHLEN + 1];
3107 int len, fileopenerr, globalfilepathlen, localfilepathlen;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003108 struct proxy *curproxy, *bk;
3109 struct server *srv;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003110 char *line;
3111 char *bkname, *srvname;
3112 struct state_line *st;
3113 struct ebmb_node *node, *next_node;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003114
Willy Tarreau2d067f92020-07-16 06:40:27 +02003115 f = NULL;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003116 global_file_version = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003117 globalfilepathlen = 0;
3118 /* create the globalfilepath variable */
3119 if (global.server_state_file) {
3120 /* absolute path or no base directory provided */
3121 if ((global.server_state_file[0] == '/') || (!global.server_state_base)) {
3122 len = strlen(global.server_state_file);
3123 if (len > MAXPATHLEN) {
3124 globalfilepathlen = 0;
3125 goto globalfileerror;
3126 }
3127 memcpy(globalfilepath, global.server_state_file, len);
3128 globalfilepath[len] = '\0';
3129 globalfilepathlen = len;
3130 }
3131 else if (global.server_state_base) {
3132 len = strlen(global.server_state_base);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003133 if (len > MAXPATHLEN) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003134 globalfilepathlen = 0;
3135 goto globalfileerror;
3136 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003137 memcpy(globalfilepath, global.server_state_base, len);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003138 globalfilepath[len] = 0;
3139 globalfilepathlen = len;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003140
3141 /* append a slash if needed */
3142 if (!globalfilepathlen || globalfilepath[globalfilepathlen - 1] != '/') {
3143 if (globalfilepathlen + 1 > MAXPATHLEN) {
3144 globalfilepathlen = 0;
3145 goto globalfileerror;
3146 }
3147 globalfilepath[globalfilepathlen++] = '/';
3148 }
3149
3150 len = strlen(global.server_state_file);
3151 if (globalfilepathlen + len > MAXPATHLEN) {
3152 globalfilepathlen = 0;
3153 goto globalfileerror;
3154 }
3155 memcpy(globalfilepath + globalfilepathlen, global.server_state_file, len);
3156 globalfilepathlen += len;
3157 globalfilepath[globalfilepathlen++] = 0;
3158 }
3159 }
3160 globalfileerror:
3161 if (globalfilepathlen == 0)
3162 globalfilepath[0] = '\0';
3163
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003164 /* Load global server state in a tree */
3165 if (globalfilepathlen > 0) {
3166 errno = 0;
3167 f = fopen(globalfilepath, "r");
3168 if (errno)
3169 ha_warning("Can't open global server state file '%s': %s\n", globalfilepath, strerror(errno));
Vedran Furac5d486272019-10-16 14:49:38 +02003170 if (!f)
3171 goto out_load_server_state_in_tree;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003172
3173 global_file_version = srv_state_get_version(f);
3174 if (global_file_version == 0)
3175 goto out_load_server_state_in_tree;
3176
3177 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3178 line = NULL;
3179
3180 line = strdup(mybuf);
3181 if (line == NULL)
3182 continue;
3183
3184 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3185 if (params[0] == NULL)
Willy Tarreauca7a5af2019-12-20 17:26:27 +01003186 goto nextline;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003187
3188 /* bkname */
3189 bkname = params[1];
3190 /* srvname */
3191 srvname = params[3];
3192
3193 /* key */
3194 chunk_printf(&trash, "%s %s", bkname, srvname);
3195
3196 /* store line in tree */
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003197 st = calloc(1, sizeof(*st) + trash.data + 1);
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003198 if (st == NULL) {
3199 goto nextline;
3200 }
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003201 memcpy(st->name_name.key, trash.area, trash.data + 1);
Willy Tarreaufd1aa012019-12-20 17:23:40 +01003202 if (ebst_insert(&state_file, &st->name_name) != &st->name_name) {
3203 /* this is a duplicate key, probably a hand-crafted file,
3204 * drop it!
3205 */
3206 goto nextline;
3207 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003208
3209 /* save line */
3210 st->line = line;
3211
3212 continue;
3213
3214 nextline:
3215 /* free up memory in case of error during the processing of the line */
3216 free(line);
3217 }
3218 }
3219 out_load_server_state_in_tree:
3220
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003221 if (f) {
3222 fclose(f);
3223 f = NULL;
3224 }
3225
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003226 /* parse all proxies and load states form tree (global file) or from local file */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003227 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003228 /* servers are only in backends */
3229 if (!(curproxy->cap & PR_CAP_BE))
3230 continue;
3231 fileopenerr = 0;
3232 filepath = NULL;
3233
3234 /* search server state file path and name */
3235 switch (curproxy->load_server_state_from_file) {
3236 /* read servers state from global file */
3237 case PR_SRV_STATE_FILE_GLOBAL:
3238 /* there was an error while generating global server state file path */
3239 if (globalfilepathlen == 0)
3240 continue;
3241 filepath = globalfilepath;
3242 fileopenerr = 1;
3243 break;
3244 /* this backend has its own file */
3245 case PR_SRV_STATE_FILE_LOCAL:
3246 localfilepathlen = 0;
3247 localfilepath[0] = '\0';
3248 len = 0;
3249 /* create the localfilepath variable */
3250 /* absolute path or no base directory provided */
3251 if ((curproxy->server_state_file_name[0] == '/') || (!global.server_state_base)) {
3252 len = strlen(curproxy->server_state_file_name);
3253 if (len > MAXPATHLEN) {
3254 localfilepathlen = 0;
3255 goto localfileerror;
3256 }
3257 memcpy(localfilepath, curproxy->server_state_file_name, len);
3258 localfilepath[len] = '\0';
3259 localfilepathlen = len;
3260 }
3261 else if (global.server_state_base) {
3262 len = strlen(global.server_state_base);
3263 localfilepathlen += len;
3264
3265 if (localfilepathlen > MAXPATHLEN) {
3266 localfilepathlen = 0;
3267 goto localfileerror;
3268 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003269 memcpy(localfilepath, global.server_state_base, len);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003270 localfilepath[localfilepathlen] = 0;
3271
3272 /* append a slash if needed */
3273 if (!localfilepathlen || localfilepath[localfilepathlen - 1] != '/') {
3274 if (localfilepathlen + 1 > MAXPATHLEN) {
3275 localfilepathlen = 0;
3276 goto localfileerror;
3277 }
3278 localfilepath[localfilepathlen++] = '/';
3279 }
3280
3281 len = strlen(curproxy->server_state_file_name);
3282 if (localfilepathlen + len > MAXPATHLEN) {
3283 localfilepathlen = 0;
3284 goto localfileerror;
3285 }
3286 memcpy(localfilepath + localfilepathlen, curproxy->server_state_file_name, len);
3287 localfilepathlen += len;
3288 localfilepath[localfilepathlen++] = 0;
3289 }
3290 filepath = localfilepath;
3291 localfileerror:
3292 if (localfilepathlen == 0)
3293 localfilepath[0] = '\0';
3294
3295 break;
3296 case PR_SRV_STATE_FILE_NONE:
3297 default:
3298 continue;
3299 }
3300
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003301 /* when global file is used, we get data from the tree
3302 * Note that in such case we don't check backend name neither uuid.
3303 * Backend name can't be wrong since it's used as a key to retrieve the server state
3304 * line from the tree.
3305 */
3306 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_GLOBAL) {
3307 struct server *srv = curproxy->srv;
3308 while (srv) {
3309 struct ebmb_node *node;
3310 struct state_line *st;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003311
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003312 chunk_printf(&trash, "%s %s", curproxy->id, srv->id);
3313 node = ebst_lookup(&state_file, trash.area);
3314 if (!node)
3315 goto next;
Dragan Dosencf4fb032015-11-04 23:03:26 +01003316
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003317 st = container_of(node, struct state_line, name_name);
3318 memcpy(mybuf, st->line, strlen(st->line));
3319 mybuf[strlen(st->line)] = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003320
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003321 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3322 if (params[0] == NULL)
3323 goto next;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003324
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003325 srv_update_state(srv, global_file_version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003326
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003327 next:
3328 srv = srv->next;
3329 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003330
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003331 continue; /* next proxy in list */
3332 }
3333 else {
3334 /* load 'local' state file */
3335 errno = 0;
3336 f = fopen(filepath, "r");
3337 if (errno && fileopenerr)
3338 ha_warning("Can't open server state file '%s': %s\n", filepath, strerror(errno));
3339 if (!f)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003340 continue;
3341
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003342 mybuf[0] = '\0';
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003343
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003344 /* first character of first line of the file must contain the version of the export */
3345 version = srv_state_get_version(f);
3346 if (version == 0) {
3347 ha_warning("Can't get version of the server state file '%s'\n", filepath);
3348 goto fileclose;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003349 }
3350
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003351 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3352 int bk_f_forced_id = 0;
3353 int check_id = 0;
3354 int check_name = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003355
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003356 srv_state_parse_line(mybuf, version, params, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003357
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003358 if (params[0] == NULL) {
3359 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003360 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003361
3362 /* if line is incomplete line, then ignore it.
3363 * otherwise, update useful flags */
3364 switch (version) {
3365 case 1:
3366 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
3367 check_id = (atoi(params[0]) == curproxy->uuid);
3368 check_name = (strcmp(curproxy->id, params[1]) == 0);
3369 break;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003370 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003371
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003372 bk = curproxy;
3373
3374 /* if backend can't be found, let's continue */
3375 if (!check_id && !check_name)
3376 continue;
3377 else if (!check_id && check_name) {
3378 ha_warning("backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3379 send_log(bk, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3380 }
3381 else if (check_id && !check_name) {
3382 ha_warning("backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3383 send_log(bk, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3384 /* if name doesn't match, we still want to update curproxy if the backend id
3385 * was forced in previous the previous configuration */
3386 if (!bk_f_forced_id)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003387 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003388 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003389
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003390 /* look for the server by its name: param[3] */
3391 srv = server_find_best_match(bk, params[3], 0, NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003392
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003393 if (!srv) {
3394 /* if no server found, then warning and continue with next line */
3395 ha_warning("can't find server '%s' in backend '%s'\n",
3396 params[3], params[1]);
3397 send_log(bk, LOG_NOTICE, "can't find server '%s' in backend '%s'\n",
3398 params[3], params[1]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003399 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003400 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003401
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003402 /* now we can proceed with server's state update */
3403 srv_update_state(srv, version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003404 }
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003405
3406 fileclose:
3407 fclose(f);
3408
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003409 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003410 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003411
3412 /* now free memory allocated for the tree */
3413 for (node = ebmb_first(&state_file), next_node = node ? ebmb_next(node) : NULL;
3414 node;
3415 node = next_node, next_node = node ? ebmb_next(node) : NULL) {
3416 st = container_of(node, struct state_line, name_name);
3417 ebmb_delete(&st->name_name);
3418 free(st->line);
3419 free(st);
3420 }
3421
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003422}
3423
Simon Horman7d09b9a2013-02-12 10:45:51 +09003424/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003425 * update a server's current IP address.
3426 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3427 * ip is in network format.
3428 * updater is a string which contains an information about the requester of the update.
3429 * updater is used if not NULL.
3430 *
3431 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003432 *
3433 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003434 */
Thierry Fournierd35b7a62016-02-24 08:23:22 +01003435int update_server_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003436{
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +02003437 /* save the new IP family & address if necessary */
3438 switch (ip_sin_family) {
3439 case AF_INET:
3440 if (s->addr.ss_family == ip_sin_family &&
3441 !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4))
3442 return 0;
3443 break;
3444 case AF_INET6:
3445 if (s->addr.ss_family == ip_sin_family &&
3446 !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16))
3447 return 0;
3448 break;
3449 };
3450
Baptiste Assmann14e40142015-04-14 01:13:07 +02003451 /* generates a log line and a warning on stderr */
3452 if (1) {
3453 /* book enough space for both IPv4 and IPv6 */
3454 char oldip[INET6_ADDRSTRLEN];
3455 char newip[INET6_ADDRSTRLEN];
3456
3457 memset(oldip, '\0', INET6_ADDRSTRLEN);
3458 memset(newip, '\0', INET6_ADDRSTRLEN);
3459
3460 /* copy old IP address in a string */
3461 switch (s->addr.ss_family) {
3462 case AF_INET:
3463 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3464 break;
3465 case AF_INET6:
3466 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3467 break;
Christopher Fauletb0b76072020-09-08 10:38:40 +02003468 default:
3469 strcpy(oldip, "(none)");
3470 break;
Baptiste Assmann14e40142015-04-14 01:13:07 +02003471 };
3472
3473 /* copy new IP address in a string */
3474 switch (ip_sin_family) {
3475 case AF_INET:
3476 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3477 break;
3478 case AF_INET6:
3479 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3480 break;
3481 };
3482
3483 /* save log line into a buffer */
3484 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3485 s->proxy->id, s->id, oldip, newip, updater);
3486
3487 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003488 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003489
3490 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003491 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003492 }
3493
3494 /* save the new IP family */
3495 s->addr.ss_family = ip_sin_family;
3496 /* save the new IP address */
3497 switch (ip_sin_family) {
3498 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003499 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003500 break;
3501 case AF_INET6:
3502 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3503 break;
3504 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003505 srv_set_dyncookie(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003506
3507 return 0;
3508}
3509
3510/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003511 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3512 *
3513 * Caller can pass its name through <updater> to get it integrated in the response message
3514 * returned by the function.
3515 *
3516 * The function first does the following, in that order:
3517 * - validates the new addr and/or port
3518 * - checks if an update is required (new IP or port is different than current ones)
3519 * - checks the update is allowed:
3520 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3521 * - allow all changes if no CHECKS are configured
3522 * - if CHECK is configured:
3523 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3524 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3525 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003526 *
3527 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003528 */
3529const char *update_server_addr_port(struct server *s, const char *addr, const char *port, char *updater)
3530{
3531 struct sockaddr_storage sa;
3532 int ret, port_change_required;
3533 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003534 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003535 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003536 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003537
3538 msg = get_trash_chunk();
3539 chunk_reset(msg);
3540
3541 if (addr) {
3542 memset(&sa, 0, sizeof(struct sockaddr_storage));
3543 if (str2ip2(addr, &sa, 0) == NULL) {
3544 chunk_printf(msg, "Invalid addr '%s'", addr);
3545 goto out;
3546 }
3547
3548 /* changes are allowed on AF_INET* families only */
3549 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3550 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3551 goto out;
3552 }
3553
3554 /* collecting data currently setup */
3555 memset(current_addr, '\0', sizeof(current_addr));
3556 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3557 /* changes are allowed on AF_INET* families only */
3558 if ((ret != AF_INET) && (ret != AF_INET6)) {
3559 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3560 goto out;
3561 }
3562
3563 /* applying ADDR changes if required and allowed
3564 * ipcmp returns 0 when both ADDR are the same
3565 */
3566 if (ipcmp(&s->addr, &sa) == 0) {
3567 chunk_appendf(msg, "no need to change the addr");
3568 goto port;
3569 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003570 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003571 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003572
3573 /* we also need to update check's ADDR only if it uses the server's one */
3574 if ((s->check.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_CHECKADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003575 ipcpy(&sa, &s->check.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003576 }
3577
3578 /* we also need to update agent ADDR only if it use the server's one */
3579 if ((s->agent.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_AGENTADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003580 ipcpy(&sa, &s->agent.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003581 }
3582
3583 /* update report for caller */
3584 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3585 }
3586
3587 port:
3588 if (port) {
3589 char sign = '\0';
3590 char *endptr;
3591
3592 if (addr)
3593 chunk_appendf(msg, ", ");
3594
3595 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003596 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003597
3598 /* check if PORT change is required */
3599 port_change_required = 0;
3600
3601 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003602 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003603 new_port = strtol(port, &endptr, 10);
3604 if ((errno != 0) || (port == endptr)) {
3605 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3606 goto out;
3607 }
3608
3609 /* check if caller triggers a port mapped or offset */
3610 if (sign == '-' || (sign == '+')) {
3611 /* check if server currently uses port map */
3612 if (!(s->flags & SRV_F_MAPPORTS)) {
3613 /* switch from fixed port to port map mandatorily triggers
3614 * a port change */
3615 port_change_required = 1;
3616 /* check is configured
3617 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3618 * prevent PORT change if check doesn't have it's dedicated port while switching
3619 * to port mapping */
3620 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3621 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.");
3622 goto out;
3623 }
3624 }
3625 /* we're already using port maps */
3626 else {
3627 port_change_required = current_port != new_port;
3628 }
3629 }
3630 /* fixed port */
3631 else {
3632 port_change_required = current_port != new_port;
3633 }
3634
3635 /* applying PORT changes if required and update response message */
3636 if (port_change_required) {
3637 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003638 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003639 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003640
3641 /* prepare message */
3642 chunk_appendf(msg, "port changed from '");
3643 if (s->flags & SRV_F_MAPPORTS)
3644 chunk_appendf(msg, "+");
3645 chunk_appendf(msg, "%d' to '", current_port);
3646
3647 if (sign == '-') {
3648 s->flags |= SRV_F_MAPPORTS;
3649 chunk_appendf(msg, "%c", sign);
3650 /* just use for result output */
3651 new_port = -new_port;
3652 }
3653 else if (sign == '+') {
3654 s->flags |= SRV_F_MAPPORTS;
3655 chunk_appendf(msg, "%c", sign);
3656 }
3657 else {
3658 s->flags &= ~SRV_F_MAPPORTS;
3659 }
3660
3661 chunk_appendf(msg, "%d'", new_port);
3662
3663 /* we also need to update health checks port only if it uses server's realport */
3664 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3665 s->check.port = new_port;
3666 }
3667 }
3668 else {
3669 chunk_appendf(msg, "no need to change the port");
3670 }
3671 }
3672
3673out:
William Dauchy6318d332020-05-02 21:52:36 +02003674 if (changed) {
3675 /* force connection cleanup on the given server */
3676 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003677 srv_set_dyncookie(s);
William Dauchy6318d332020-05-02 21:52:36 +02003678 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003679 if (updater)
3680 chunk_appendf(msg, " by '%s'", updater);
3681 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003682 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003683}
3684
3685
3686/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003687 * update server status based on result of name resolution
3688 * returns:
3689 * 0 if server status is updated
3690 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003691 *
3692 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003693 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003694int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003695{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003696 struct dns_resolvers *resolvers = s->resolvers;
3697 struct dns_resolution *resolution = s->dns_requester->resolution;
3698 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003699
Jerome Magnin012261a2020-07-28 13:38:22 +02003700 /* If resolution is NULL we're dealing with SRV records Additional records */
3701 if (resolution == NULL) {
Baptiste Assmann87138c32020-08-04 10:57:21 +02003702 /* since this server has an IP, it can go back in production */
3703 if (has_no_ip == 0) {
3704 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3705 return 1;
3706 }
3707
Jerome Magnin012261a2020-07-28 13:38:22 +02003708 if (s->next_admin & SRV_ADMF_RMAINT)
3709 return 1;
3710
3711 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record");
3712 return 0;
3713 }
3714
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003715 switch (resolution->status) {
3716 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003717 /* status when HAProxy has just (re)started.
3718 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003719 break;
3720
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003721 case RSLV_STATUS_VALID:
3722 /*
3723 * resume health checks
3724 * server will be turned back on if health check is safe
3725 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003726 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003727 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003728 return 1;
3729 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3730 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003731 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003732 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003733
Emeric Brun52a91d32017-08-31 14:41:55 +02003734 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003735 return 1;
3736 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3737 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3738 s->proxy->id, s->id);
3739
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003740 ha_warning("%s.\n", trash.area);
3741 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003742 return 0;
3743
3744 case RSLV_STATUS_NX:
3745 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003746 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3747 if (!tick_is_expired(exp, now_ms))
3748 break;
3749
3750 if (s->next_admin & SRV_ADMF_RMAINT)
3751 return 1;
3752 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3753 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003754
3755 case RSLV_STATUS_TIMEOUT:
3756 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003757 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3758 if (!tick_is_expired(exp, now_ms))
3759 break;
3760
3761 if (s->next_admin & SRV_ADMF_RMAINT)
3762 return 1;
3763 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3764 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003765
3766 case RSLV_STATUS_REFUSED:
3767 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003768 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3769 if (!tick_is_expired(exp, now_ms))
3770 break;
3771
3772 if (s->next_admin & SRV_ADMF_RMAINT)
3773 return 1;
3774 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3775 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003776
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003777 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003778 /* stop server if resolution failed for a long enough period */
3779 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3780 if (!tick_is_expired(exp, now_ms))
3781 break;
3782
3783 if (s->next_admin & SRV_ADMF_RMAINT)
3784 return 1;
3785 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3786 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003787 }
3788
3789 return 1;
3790}
3791
3792/*
3793 * Server Name Resolution valid response callback
3794 * It expects:
3795 * - <nameserver>: the name server which answered the valid response
3796 * - <response>: buffer containing a valid DNS response
3797 * - <response_len>: size of <response>
3798 * It performs the following actions:
3799 * - ignore response if current ip found and server family not met
3800 * - update with first new ip found if family is met and current IP is not found
3801 * returns:
3802 * 0 on error
3803 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003804 *
3805 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003806 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003807int snr_resolution_cb(struct dns_requester *requester, struct dns_nameserver *nameserver)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003808{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003809 struct server *s = NULL;
3810 struct dns_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003811 void *serverip, *firstip;
3812 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003813 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003814 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003815 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003816
Christopher Faulet67957bd2017-09-27 11:00:59 +02003817 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003818 if (!s)
3819 return 1;
3820
Christopher Faulet67957bd2017-09-27 11:00:59 +02003821 resolution = s->dns_requester->resolution;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003822
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003823 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003824 firstip = NULL; /* pointer to the first valid response found */
3825 /* it will be used as the new IP if a change is required */
3826 firstip_sin_family = AF_UNSPEC;
3827 serverip = NULL; /* current server IP address */
3828
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003829 /* initializing server IP pointer */
3830 server_sin_family = s->addr.ss_family;
3831 switch (server_sin_family) {
3832 case AF_INET:
3833 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3834 break;
3835
3836 case AF_INET6:
3837 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3838 break;
3839
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003840 case AF_UNSPEC:
3841 break;
3842
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003843 default:
3844 goto invalid;
3845 }
3846
Baptiste Assmann729c9012017-05-22 15:13:10 +02003847 ret = dns_get_ip_from_response(&resolution->response, &s->dns_opts,
Thierry Fournierada34842016-02-17 21:25:09 +01003848 serverip, server_sin_family, &firstip,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003849 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003850
3851 switch (ret) {
3852 case DNS_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003853 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003854
3855 case DNS_UPD_SRVIP_NOT_FOUND:
3856 goto save_ip;
3857
3858 case DNS_UPD_CNAME:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003859 goto invalid;
3860
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003861 case DNS_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003862 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003863 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003864
Baptiste Assmannfad03182015-10-28 02:03:32 +01003865 case DNS_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003866 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003867 resolution->status = RSLV_STATUS_OTHER;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003868 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003869
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003870 default:
3871 goto invalid;
3872
3873 }
3874
3875 save_ip:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003876 if (nameserver) {
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003877 nameserver->counters->update++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003878 /* save the first ip we found */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003879 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003880 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003881 else
3882 chunk_printf(chk, "DNS cache");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003883 update_server_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003884
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003885 update_status:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003886 snr_update_srv_status(s, has_no_ip);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003887 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003888
3889 invalid:
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003890 if (nameserver) {
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003891 nameserver->counters->invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003892 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003893 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003894 snr_update_srv_status(s, has_no_ip);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003895 return 0;
3896}
3897
3898/*
3899 * Server Name Resolution error management callback
3900 * returns:
3901 * 0 on error
3902 * 1 when no error or safe ignore
Willy Tarreau46b7f532018-08-21 11:54:26 +02003903 *
3904 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003905 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003906int snr_resolution_error_cb(struct dns_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003907{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003908 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003909
Christopher Faulet67957bd2017-09-27 11:00:59 +02003910 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003911 if (!s)
3912 return 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003913 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003914 snr_update_srv_status(s, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003915 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003916 return 1;
3917}
3918
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003919/*
3920 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003921 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003922 * It returns a pointer to the first server found or NULL if <ip> is not yet
3923 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003924 *
3925 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003926 */
3927struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3928{
3929 struct server *tmpsrv;
3930 struct proxy *be;
3931
3932 if (!srv)
3933 return NULL;
3934
3935 be = srv->proxy;
3936 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003937 /* we found the current server is the same, ignore it */
3938 if (srv == tmpsrv)
3939 continue;
3940
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003941 /* We want to compare the IP in the record with the IP of the servers in the
3942 * same backend, only if:
3943 * * DNS resolution is enabled on the server
3944 * * the hostname used for the resolution by our server is the same than the
3945 * one used for the server found in the backend
3946 * * the server found in the backend is not our current server
3947 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003948 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003949 if ((tmpsrv->hostname_dn == NULL) ||
3950 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
3951 (strcmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01003952 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003953 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003954 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003955 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003956
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003957 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01003958 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003959 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003960 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003961 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003962
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003963 /* At this point, we have 2 different servers using the same DNS hostname
3964 * for their respective resolution.
3965 */
3966 if (*ip_family == tmpsrv->addr.ss_family &&
3967 ((tmpsrv->addr.ss_family == AF_INET &&
3968 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
3969 (tmpsrv->addr.ss_family == AF_INET6 &&
3970 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003971 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003972 return tmpsrv;
3973 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003974 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003975 }
3976
Emeric Brune9fd6b52017-11-02 17:20:39 +01003977
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003978 return NULL;
3979}
3980
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003981/* Sets the server's address (srv->addr) from srv->hostname using the libc's
3982 * resolver. This is suited for initial address configuration. Returns 0 on
3983 * success otherwise a non-zero error code. In case of error, *err_code, if
3984 * not NULL, is filled up.
3985 */
3986int srv_set_addr_via_libc(struct server *srv, int *err_code)
3987{
3988 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003989 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01003990 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003991 return 1;
3992 }
3993 return 0;
3994}
3995
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003996/* Set the server's FDQN (->hostname) from <hostname>.
3997 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003998 *
3999 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004000 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004001int srv_set_fqdn(struct server *srv, const char *hostname, int dns_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004002{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004003 struct dns_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004004 char *hostname_dn;
4005 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004006
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02004007 /* Note that the server lock is already held. */
4008 if (!srv->resolvers)
4009 return -1;
4010
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004011 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004012 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004013 /* run time DNS resolution was not active for this server
4014 * and we can't enable it at run time for now.
4015 */
4016 if (!srv->dns_requester)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004017 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004018
4019 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004020 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004021 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004022 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
4023 hostname_dn, trash.size);
4024 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004025 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004026
Christopher Faulet67957bd2017-09-27 11:00:59 +02004027 resolution = srv->dns_requester->resolution;
4028 if (resolution &&
4029 resolution->hostname_dn &&
4030 !strcmp(resolution->hostname_dn, hostname_dn))
Christopher Fauletb2812a62017-10-04 16:17:58 +02004031 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004032
Christopher Faulet67957bd2017-09-27 11:00:59 +02004033 dns_unlink_resolution(srv->dns_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004034
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004035 free(srv->hostname);
4036 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004037 srv->hostname = strdup(hostname);
4038 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004039 srv->hostname_dn_len = hostname_dn_len;
4040 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004041 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004042
Baptiste Assmann13a92322019-06-07 09:40:55 +02004043 if (srv->flags & SRV_F_NO_RESOLUTION)
4044 goto end;
4045
Olivier Houchard55dcdf42017-11-06 15:15:04 +01004046 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004047 goto err;
4048
4049 end:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004050 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004051 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004052 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02004053
4054 err:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004055 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004056 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02004057 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004058}
4059
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004060/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
4061 * from the state file. This is suited for initial address configuration.
4062 * Returns 0 on success otherwise a non-zero error code. In case of error,
4063 * *err_code, if not NULL, is filled up.
4064 */
4065static int srv_apply_lastaddr(struct server *srv, int *err_code)
4066{
4067 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
4068 if (err_code)
4069 *err_code |= ERR_WARN;
4070 return 1;
4071 }
4072 return 0;
4073}
4074
Willy Tarreau25e51522016-11-04 15:10:17 +01004075/* returns 0 if no error, otherwise a combination of ERR_* flags */
4076static int srv_iterate_initaddr(struct server *srv)
4077{
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004078 char *name = srv->hostname;
Willy Tarreau25e51522016-11-04 15:10:17 +01004079 int return_code = 0;
4080 int err_code;
4081 unsigned int methods;
4082
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004083 /* If no addr and no hostname set, get the name from the DNS SRV request */
4084 if (!name && srv->srvrq)
4085 name = srv->srvrq->name;
4086
Willy Tarreau25e51522016-11-04 15:10:17 +01004087 methods = srv->init_addr_methods;
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004088 if (!methods) {
4089 /* otherwise default to "last,libc" */
Willy Tarreau25e51522016-11-04 15:10:17 +01004090 srv_append_initaddr(&methods, SRV_IADDR_LAST);
4091 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004092 if (srv->resolvers_id) {
4093 /* dns resolution is configured, add "none" to not fail on startup */
4094 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4095 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004096 }
4097
Willy Tarreau3eed10e2016-11-07 21:03:16 +01004098 /* "-dr" : always append "none" so that server addresses resolution
4099 * failures are silently ignored, this is convenient to validate some
4100 * configs out of their environment.
4101 */
4102 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
4103 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4104
Willy Tarreau25e51522016-11-04 15:10:17 +01004105 while (methods) {
4106 err_code = 0;
4107 switch (srv_get_next_initaddr(&methods)) {
4108 case SRV_IADDR_LAST:
4109 if (!srv->lastaddr)
4110 continue;
4111 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004112 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004113 return_code |= err_code;
4114 break;
4115
4116 case SRV_IADDR_LIBC:
4117 if (!srv->hostname)
4118 continue;
4119 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004120 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004121 return_code |= err_code;
4122 break;
4123
Willy Tarreau37ebe122016-11-04 15:17:58 +01004124 case SRV_IADDR_NONE:
4125 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004126 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004127 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004128 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004129 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01004130 return return_code;
4131
Willy Tarreau4310d362016-11-02 15:05:56 +01004132 case SRV_IADDR_IP:
4133 ipcpy(&srv->init_addr, &srv->addr);
4134 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004135 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', falling back to configured address.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004136 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau4310d362016-11-02 15:05:56 +01004137 }
Olivier Houchard4e694042017-03-14 20:01:29 +01004138 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01004139
Willy Tarreau25e51522016-11-04 15:10:17 +01004140 default: /* unhandled method */
4141 break;
4142 }
4143 }
4144
4145 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004146 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004147 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau25e51522016-11-04 15:10:17 +01004148 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01004149 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004150 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004151 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004152 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004153
4154 return_code |= ERR_ALERT | ERR_FATAL;
4155 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01004156out:
4157 srv_set_dyncookie(srv);
4158 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01004159}
4160
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004161/*
4162 * This function parses all backends and all servers within each backend
4163 * and performs servers' addr resolution based on information provided by:
4164 * - configuration file
4165 * - server-state file (states provided by an 'old' haproxy process)
4166 *
4167 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
4168 */
4169int srv_init_addr(void)
4170{
4171 struct proxy *curproxy;
4172 int return_code = 0;
4173
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004174 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004175 while (curproxy) {
4176 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004177
4178 /* servers are in backend only */
4179 if (!(curproxy->cap & PR_CAP_BE))
4180 goto srv_init_addr_next;
4181
Willy Tarreau25e51522016-11-04 15:10:17 +01004182 for (srv = curproxy->srv; srv; srv = srv->next)
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004183 if (srv->hostname || srv->srvrq)
Willy Tarreau3d609a72017-09-06 14:22:45 +02004184 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004185
4186 srv_init_addr_next:
4187 curproxy = curproxy->next;
4188 }
4189
4190 return return_code;
4191}
4192
Willy Tarreau46b7f532018-08-21 11:54:26 +02004193/*
4194 * Must be called with the server lock held.
4195 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004196const 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 +02004197{
4198
Willy Tarreau83061a82018-07-13 11:56:34 +02004199 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004200
4201 msg = get_trash_chunk();
4202 chunk_reset(msg);
4203
Olivier Houchard8da5f982017-08-04 18:35:36 +02004204 if (server->hostname && !strcmp(fqdn, server->hostname)) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004205 chunk_appendf(msg, "no need to change the FDQN");
4206 goto out;
4207 }
4208
4209 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4210 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4211 goto out;
4212 }
4213
4214 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4215 server->proxy->id, server->id, server->hostname, fqdn);
4216
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004217 if (srv_set_fqdn(server, fqdn, dns_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004218 chunk_reset(msg);
4219 chunk_appendf(msg, "could not update %s/%s FQDN",
4220 server->proxy->id, server->id);
4221 goto out;
4222 }
4223
4224 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004225 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004226
4227 out:
4228 if (updater)
4229 chunk_appendf(msg, " by '%s'", updater);
4230 chunk_appendf(msg, "\n");
4231
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004232 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004233}
4234
4235
Willy Tarreau21b069d2016-11-23 17:15:08 +01004236/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4237 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004238 * 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 +01004239 * used for CLI commands requiring a server name.
4240 * Important: the <arg> is modified to remove the '/'.
4241 */
4242struct server *cli_find_server(struct appctx *appctx, char *arg)
4243{
4244 struct proxy *px;
4245 struct server *sv;
4246 char *line;
4247
4248 /* split "backend/server" and make <line> point to server */
4249 for (line = arg; *line; line++)
4250 if (*line == '/') {
4251 *line++ = '\0';
4252 break;
4253 }
4254
4255 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004256 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004257 return NULL;
4258 }
4259
4260 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004261 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004262 return NULL;
4263 }
4264
Willy Tarreauc3914d42020-09-24 08:39:22 +02004265 if (px->disabled) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004266 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004267 return NULL;
4268 }
4269
4270 return sv;
4271}
4272
William Lallemand222baf22016-11-19 02:00:33 +01004273
Willy Tarreau46b7f532018-08-21 11:54:26 +02004274/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004275static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004276{
4277 struct server *sv;
4278 const char *warning;
4279
4280 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4281 return 1;
4282
4283 sv = cli_find_server(appctx, args[2]);
4284 if (!sv)
4285 return 1;
4286
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004287 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02004288
William Lallemand222baf22016-11-19 02:00:33 +01004289 if (strcmp(args[3], "weight") == 0) {
4290 warning = server_parse_weight_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004291 if (warning)
4292 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004293 }
4294 else if (strcmp(args[3], "state") == 0) {
4295 if (strcmp(args[4], "ready") == 0)
4296 srv_adm_set_ready(sv);
4297 else if (strcmp(args[4], "drain") == 0)
4298 srv_adm_set_drain(sv);
4299 else if (strcmp(args[4], "maint") == 0)
4300 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02004301 else
4302 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004303 }
4304 else if (strcmp(args[3], "health") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004305 if (sv->track)
4306 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004307 else if (strcmp(args[4], "up") == 0) {
4308 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004309 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004310 }
4311 else if (strcmp(args[4], "stopping") == 0) {
4312 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004313 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004314 }
4315 else if (strcmp(args[4], "down") == 0) {
4316 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004317 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004318 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004319 else
4320 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004321 }
4322 else if (strcmp(args[3], "agent") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004323 if (!(sv->agent.state & CHK_ST_ENABLED))
4324 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004325 else if (strcmp(args[4], "up") == 0) {
4326 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004327 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004328 }
4329 else if (strcmp(args[4], "down") == 0) {
4330 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004331 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004332 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004333 else
4334 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004335 }
Misiek2da082d2017-01-09 09:40:42 +01004336 else if (strcmp(args[3], "agent-addr") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004337 if (!(sv->agent.state & CHK_ST_ENABLED))
4338 cli_err(appctx, "agent checks are not enabled on this server.\n");
4339 else if (str2ip(args[4], &sv->agent.addr) == NULL)
4340 cli_err(appctx, "incorrect addr address given for agent.\n");
Misiek2da082d2017-01-09 09:40:42 +01004341 }
4342 else if (strcmp(args[3], "agent-send") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004343 if (!(sv->agent.state & CHK_ST_ENABLED))
4344 cli_err(appctx, "agent checks are not enabled on this server.\n");
4345 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004346 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004347 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004348 }
4349 }
William Lallemand222baf22016-11-19 02:00:33 +01004350 else if (strcmp(args[3], "check-port") == 0) {
4351 int i = 0;
4352 if (strl2irc(args[4], strlen(args[4]), &i) != 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004353 cli_err(appctx, "'set server <srv> check-port' expects an integer as argument.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004354 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004355 }
4356 if ((i < 0) || (i > 65535)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004357 cli_err(appctx, "provided port is not valid.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004358 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004359 }
4360 /* prevent the update of port to 0 if MAPPORTS are in use */
4361 if ((sv->flags & SRV_F_MAPPORTS) && (i == 0)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004362 cli_err(appctx, "can't unset 'port' since MAPPORTS is in use.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004363 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004364 }
4365 sv->check.port = i;
Willy Tarreau9d008692019-08-09 11:21:01 +02004366 cli_msg(appctx, LOG_NOTICE, "health check port updated.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004367 }
4368 else if (strcmp(args[3], "addr") == 0) {
4369 char *addr = NULL;
4370 char *port = NULL;
4371 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004372 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004373 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004374 }
4375 else {
4376 addr = args[4];
4377 }
4378 if (strcmp(args[5], "port") == 0) {
4379 port = args[6];
4380 }
4381 warning = update_server_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004382 if (warning)
4383 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004384 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
4385 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004386 else if (strcmp(args[3], "fqdn") == 0) {
4387 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004388 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004389 goto out_unlock;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004390 }
Baptiste Assmann13a92322019-06-07 09:40:55 +02004391 /* ensure runtime resolver will process this new fqdn */
4392 if (sv->flags & SRV_F_NO_RESOLUTION) {
4393 sv->flags &= ~SRV_F_NO_RESOLUTION;
4394 }
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004395 warning = update_server_fqdn(sv, args[4], "stats socket command", 0);
Willy Tarreau9d008692019-08-09 11:21:01 +02004396 if (warning)
4397 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004398 }
William Lallemand222baf22016-11-19 02:00:33 +01004399 else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004400 cli_err(appctx,
4401 "'set server <srv>' only supports 'agent', 'health', 'state',"
4402 " 'weight', 'addr', 'fqdn' and 'check-port'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004403 }
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004404 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004405 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004406 return 1;
4407}
4408
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004409static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004410{
4411 struct stream_interface *si = appctx->owner;
4412 struct proxy *px;
4413 struct server *sv;
4414 char *line;
4415
4416
4417 /* split "backend/server" and make <line> point to server */
4418 for (line = args[2]; *line; line++)
4419 if (*line == '/') {
4420 *line++ = '\0';
4421 break;
4422 }
4423
Willy Tarreau9d008692019-08-09 11:21:01 +02004424 if (!*line)
4425 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004426
Willy Tarreau9d008692019-08-09 11:21:01 +02004427 if (!get_backend_server(args[2], line, &px, &sv))
4428 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004429
4430 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004431 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4432 sv->iweight);
4433 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004434 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004435 return 0;
4436 }
William Lallemand6b160942016-11-22 12:34:35 +01004437 return 1;
4438}
4439
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004440/* Parse a "set weight" command.
4441 *
4442 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004443 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004444static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004445{
4446 struct server *sv;
4447 const char *warning;
4448
4449 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4450 return 1;
4451
4452 sv = cli_find_server(appctx, args[2]);
4453 if (!sv)
4454 return 1;
4455
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004456 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4457
William Lallemand6b160942016-11-22 12:34:35 +01004458 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004459 if (warning)
4460 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004461
4462 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4463
William Lallemand6b160942016-11-22 12:34:35 +01004464 return 1;
4465}
4466
Willy Tarreau46b7f532018-08-21 11:54:26 +02004467/* parse a "set maxconn server" command. It always returns 1.
4468 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004469 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004470 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004471static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004472{
4473 struct server *sv;
4474 const char *warning;
4475
4476 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4477 return 1;
4478
4479 sv = cli_find_server(appctx, args[3]);
4480 if (!sv)
4481 return 1;
4482
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004483 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4484
Willy Tarreaub8026272016-11-23 11:26:56 +01004485 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004486 if (warning)
4487 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004488
4489 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4490
Willy Tarreaub8026272016-11-23 11:26:56 +01004491 return 1;
4492}
William Lallemand6b160942016-11-22 12:34:35 +01004493
Willy Tarreau46b7f532018-08-21 11:54:26 +02004494/* parse a "disable agent" command. It always returns 1.
4495 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004496 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004497 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004498static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004499{
4500 struct server *sv;
4501
4502 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4503 return 1;
4504
4505 sv = cli_find_server(appctx, args[2]);
4506 if (!sv)
4507 return 1;
4508
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004509 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004510 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004511 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004512 return 1;
4513}
4514
Willy Tarreau46b7f532018-08-21 11:54:26 +02004515/* parse a "disable health" command. It always returns 1.
4516 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004517 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004518 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004519static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004520{
4521 struct server *sv;
4522
4523 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4524 return 1;
4525
4526 sv = cli_find_server(appctx, args[2]);
4527 if (!sv)
4528 return 1;
4529
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004530 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004531 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004532 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004533 return 1;
4534}
4535
Willy Tarreau46b7f532018-08-21 11:54:26 +02004536/* parse a "disable server" command. It always returns 1.
4537 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004538 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004539 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004540static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004541{
4542 struct server *sv;
4543
4544 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4545 return 1;
4546
4547 sv = cli_find_server(appctx, args[2]);
4548 if (!sv)
4549 return 1;
4550
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004551 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004552 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004553 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004554 return 1;
4555}
4556
Willy Tarreau46b7f532018-08-21 11:54:26 +02004557/* parse a "enable agent" command. It always returns 1.
4558 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004559 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004560 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004561static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004562{
4563 struct server *sv;
4564
4565 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4566 return 1;
4567
4568 sv = cli_find_server(appctx, args[2]);
4569 if (!sv)
4570 return 1;
4571
Willy Tarreau9d008692019-08-09 11:21:01 +02004572 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4573 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004574
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004575 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004576 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004577 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004578 return 1;
4579}
4580
Willy Tarreau46b7f532018-08-21 11:54:26 +02004581/* parse a "enable health" command. It always returns 1.
4582 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004583 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004584 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004585static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004586{
4587 struct server *sv;
4588
4589 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4590 return 1;
4591
4592 sv = cli_find_server(appctx, args[2]);
4593 if (!sv)
4594 return 1;
4595
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004596 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004597 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004598 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004599 return 1;
4600}
4601
Willy Tarreau46b7f532018-08-21 11:54:26 +02004602/* parse a "enable server" command. It always returns 1.
4603 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004604 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004605 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004606static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004607{
4608 struct server *sv;
4609
4610 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4611 return 1;
4612
4613 sv = cli_find_server(appctx, args[2]);
4614 if (!sv)
4615 return 1;
4616
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004617 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004618 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004619 if (!(sv->flags & SRV_F_COOKIESET)
4620 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4621 sv->cookie)
4622 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004623 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004624 return 1;
4625}
4626
William Lallemand222baf22016-11-19 02:00:33 +01004627/* register cli keywords */
4628static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004629 { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004630 { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004631 { { "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 +01004632 { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004633 { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004634 { { "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 +01004635 { { "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 +01004636 { { "set", "server", NULL }, "set server : change a server's state, weight or address", cli_parse_set_server },
William Lallemand6b160942016-11-22 12:34:35 +01004637 { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight },
4638 { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight },
4639
William Lallemand222baf22016-11-19 02:00:33 +01004640 {{},}
4641}};
4642
Willy Tarreau0108d902018-11-25 19:14:37 +01004643INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004644
Emeric Brun64cc49c2017-10-03 14:46:45 +02004645/*
4646 * This function applies server's status changes, it is
4647 * is designed to be called asynchronously.
4648 *
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004649 * Must be called with the server lock held. This may also be called at init
4650 * time as the result of parsing the state file, in which case no lock will be
4651 * held, and the server's warmup task can be null.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004652 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004653static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004654{
4655 struct check *check = &s->check;
4656 int xferred;
4657 struct proxy *px = s->proxy;
4658 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4659 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4660 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004661 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004662
Emeric Brun64cc49c2017-10-03 14:46:45 +02004663 /* If currently main is not set we try to apply pending state changes */
4664 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4665 int next_admin;
4666
4667 /* Backup next admin */
4668 next_admin = s->next_admin;
4669
4670 /* restore current admin state */
4671 s->next_admin = s->cur_admin;
4672
4673 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4674 s->last_change = now.tv_sec;
4675 if (s->proxy->lbprm.set_server_status_down)
4676 s->proxy->lbprm.set_server_status_down(s);
4677
4678 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4679 srv_shutdown_streams(s, SF_ERR_DOWN);
4680
4681 /* we might have streams queued on this server and waiting for
4682 * a connection. Those which are redispatchable will be queued
4683 * to another server or to the proxy itself.
4684 */
4685 xferred = pendconn_redistribute(s);
4686
4687 tmptrash = alloc_trash_chunk();
4688 if (tmptrash) {
4689 chunk_printf(tmptrash,
4690 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4691 s->proxy->id, s->id);
4692
Emeric Brun5a133512017-10-19 14:42:30 +02004693 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004694 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004695
4696 /* we don't send an alert if the server was previously paused */
4697 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004698 send_log(s->proxy, log_level, "%s.\n",
4699 tmptrash->area);
4700 send_email_alert(s, log_level, "%s",
4701 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004702 free_trash_chunk(tmptrash);
4703 tmptrash = NULL;
4704 }
4705 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4706 set_backend_down(s->proxy);
4707
4708 s->counters.down_trans++;
4709 }
4710 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4711 s->last_change = now.tv_sec;
4712 if (s->proxy->lbprm.set_server_status_down)
4713 s->proxy->lbprm.set_server_status_down(s);
4714
4715 /* we might have streams queued on this server and waiting for
4716 * a connection. Those which are redispatchable will be queued
4717 * to another server or to the proxy itself.
4718 */
4719 xferred = pendconn_redistribute(s);
4720
4721 tmptrash = alloc_trash_chunk();
4722 if (tmptrash) {
4723 chunk_printf(tmptrash,
4724 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4725 s->proxy->id, s->id);
4726
Emeric Brun5a133512017-10-19 14:42:30 +02004727 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004728
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004729 ha_warning("%s.\n", tmptrash->area);
4730 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4731 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004732 free_trash_chunk(tmptrash);
4733 tmptrash = NULL;
4734 }
4735
4736 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4737 set_backend_down(s->proxy);
4738 }
4739 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4740 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4741 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4742 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4743 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4744 s->proxy->last_change = now.tv_sec;
4745 }
4746
Amaury Denoyellefe2bf092020-10-29 15:59:04 +01004747 if (s->cur_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
Emeric Brun64cc49c2017-10-03 14:46:45 +02004748 s->down_time += now.tv_sec - s->last_change;
4749
4750 s->last_change = now.tv_sec;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004751 if (s->next_state == SRV_ST_STARTING && s->warmup)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004752 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4753
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004754 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004755 /* now propagate the status change to any LB algorithms */
4756 if (px->lbprm.update_server_eweight)
4757 px->lbprm.update_server_eweight(s);
4758 else if (srv_willbe_usable(s)) {
4759 if (px->lbprm.set_server_status_up)
4760 px->lbprm.set_server_status_up(s);
4761 }
4762 else {
4763 if (px->lbprm.set_server_status_down)
4764 px->lbprm.set_server_status_down(s);
4765 }
4766
4767 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4768 * and it's not a backup server and its effective weight is > 0,
4769 * then it can accept new connections, so we shut down all streams
4770 * on all backup servers.
4771 */
4772 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4773 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4774 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4775
4776 /* check if we can handle some connections queued at the proxy. We
4777 * will take as many as we can handle.
4778 */
4779 xferred = pendconn_grab_from_px(s);
4780
4781 tmptrash = alloc_trash_chunk();
4782 if (tmptrash) {
4783 chunk_printf(tmptrash,
4784 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
4785 s->proxy->id, s->id);
4786
Emeric Brun5a133512017-10-19 14:42:30 +02004787 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004788 ha_warning("%s.\n", tmptrash->area);
4789 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4790 tmptrash->area);
4791 send_email_alert(s, LOG_NOTICE, "%s",
4792 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004793 free_trash_chunk(tmptrash);
4794 tmptrash = NULL;
4795 }
4796
4797 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4798 set_backend_down(s->proxy);
4799 }
4800 else if (s->cur_eweight != s->next_eweight) {
4801 /* now propagate the status change to any LB algorithms */
4802 if (px->lbprm.update_server_eweight)
4803 px->lbprm.update_server_eweight(s);
4804 else if (srv_willbe_usable(s)) {
4805 if (px->lbprm.set_server_status_up)
4806 px->lbprm.set_server_status_up(s);
4807 }
4808 else {
4809 if (px->lbprm.set_server_status_down)
4810 px->lbprm.set_server_status_down(s);
4811 }
4812
4813 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4814 set_backend_down(s->proxy);
4815 }
4816
4817 s->next_admin = next_admin;
4818 }
4819
Emeric Brun5a133512017-10-19 14:42:30 +02004820 /* reset operational state change */
4821 *s->op_st_chg.reason = 0;
4822 s->op_st_chg.status = s->op_st_chg.code = -1;
4823 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004824
4825 /* Now we try to apply pending admin changes */
4826
4827 /* Maintenance must also disable health checks */
4828 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
4829 if (s->check.state & CHK_ST_ENABLED) {
4830 s->check.state |= CHK_ST_PAUSED;
4831 check->health = 0;
4832 }
4833
4834 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02004835 tmptrash = alloc_trash_chunk();
4836 if (tmptrash) {
4837 chunk_printf(tmptrash,
4838 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
4839 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4840 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02004841
Olivier Houchard796a2b32017-10-24 17:42:47 +02004842 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02004843
Olivier Houchard796a2b32017-10-24 17:42:47 +02004844 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004845 ha_warning("%s.\n", tmptrash->area);
4846 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4847 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02004848 }
4849 free_trash_chunk(tmptrash);
4850 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004851 }
Emeric Brun8f298292017-12-06 16:47:17 +01004852 /* commit new admin status */
4853
4854 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004855 }
4856 else { /* server was still running */
4857 check->health = 0; /* failure */
4858 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01004859
4860 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004861 if (s->proxy->lbprm.set_server_status_down)
4862 s->proxy->lbprm.set_server_status_down(s);
4863
Emeric Brun64cc49c2017-10-03 14:46:45 +02004864 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4865 srv_shutdown_streams(s, SF_ERR_DOWN);
4866
William Dauchy6318d332020-05-02 21:52:36 +02004867 /* force connection cleanup on the given server */
4868 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004869 /* we might have streams queued on this server and waiting for
4870 * a connection. Those which are redispatchable will be queued
4871 * to another server or to the proxy itself.
4872 */
4873 xferred = pendconn_redistribute(s);
4874
4875 tmptrash = alloc_trash_chunk();
4876 if (tmptrash) {
4877 chunk_printf(tmptrash,
4878 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
4879 s->flags & SRV_F_BACKUP ? "Backup " : "",
4880 s->proxy->id, s->id,
4881 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
4882
4883 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
4884
4885 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004886 ha_warning("%s.\n", tmptrash->area);
4887 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
4888 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004889 }
4890 free_trash_chunk(tmptrash);
4891 tmptrash = NULL;
4892 }
4893 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4894 set_backend_down(s->proxy);
4895
4896 s->counters.down_trans++;
4897 }
4898 }
4899 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
4900 /* OK here we're leaving maintenance, we have many things to check,
4901 * because the server might possibly be coming back up depending on
4902 * its state. In practice, leaving maintenance means that we should
4903 * immediately turn to UP (more or less the slowstart) under the
4904 * following conditions :
4905 * - server is neither checked nor tracked
4906 * - server tracks another server which is not checked
4907 * - server tracks another server which is already up
4908 * Which sums up as something simpler :
4909 * "either the tracking server is up or the server's checks are disabled
4910 * or up". Otherwise we only re-enable health checks. There's a special
4911 * case associated to the stopping state which can be inherited. Note
4912 * that the server might still be in drain mode, which is naturally dealt
4913 * with by the lower level functions.
4914 */
4915
4916 if (s->check.state & CHK_ST_ENABLED) {
4917 s->check.state &= ~CHK_ST_PAUSED;
4918 check->health = check->rise; /* start OK but check immediately */
4919 }
4920
4921 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
4922 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
4923 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
4924 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
4925 s->next_state = SRV_ST_STOPPING;
4926 }
4927 else {
4928 s->next_state = SRV_ST_STARTING;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004929 if (s->slowstart > 0) {
4930 if (s->warmup)
4931 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4932 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02004933 else
4934 s->next_state = SRV_ST_RUNNING;
4935 }
4936
4937 }
4938
4939 tmptrash = alloc_trash_chunk();
4940 if (tmptrash) {
4941 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
4942 chunk_printf(tmptrash,
4943 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
4944 s->flags & SRV_F_BACKUP ? "Backup " : "",
4945 s->proxy->id, s->id,
4946 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4947 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4948 }
4949 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
4950 chunk_printf(tmptrash,
4951 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
4952 s->flags & SRV_F_BACKUP ? "Backup " : "",
4953 s->proxy->id, s->id, s->hostname,
4954 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4955 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4956 }
4957 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
4958 chunk_printf(tmptrash,
4959 "%sServer %s/%s is %s/%s (leaving maintenance)",
4960 s->flags & SRV_F_BACKUP ? "Backup " : "",
4961 s->proxy->id, s->id,
4962 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4963 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4964 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004965 ha_warning("%s.\n", tmptrash->area);
4966 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4967 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004968 free_trash_chunk(tmptrash);
4969 tmptrash = NULL;
4970 }
4971
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004972 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004973 /* now propagate the status change to any LB algorithms */
4974 if (px->lbprm.update_server_eweight)
4975 px->lbprm.update_server_eweight(s);
4976 else if (srv_willbe_usable(s)) {
4977 if (px->lbprm.set_server_status_up)
4978 px->lbprm.set_server_status_up(s);
4979 }
4980 else {
4981 if (px->lbprm.set_server_status_down)
4982 px->lbprm.set_server_status_down(s);
4983 }
4984
4985 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4986 set_backend_down(s->proxy);
4987
Willy Tarreau6a78e612018-08-07 10:14:53 +02004988 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4989 * and it's not a backup server and its effective weight is > 0,
4990 * then it can accept new connections, so we shut down all streams
4991 * on all backup servers.
4992 */
4993 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4994 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4995 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4996
4997 /* check if we can handle some connections queued at the proxy. We
4998 * will take as many as we can handle.
4999 */
5000 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005001 }
5002 else if (s->next_admin & SRV_ADMF_MAINT) {
5003 /* remaining in maintenance mode, let's inform precisely about the
5004 * situation.
5005 */
5006 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5007 tmptrash = alloc_trash_chunk();
5008 if (tmptrash) {
5009 chunk_printf(tmptrash,
5010 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5011 s->flags & SRV_F_BACKUP ? "Backup " : "",
5012 s->proxy->id, s->id);
5013
5014 if (s->track) /* normally it's mandatory here */
5015 chunk_appendf(tmptrash, " via %s/%s",
5016 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005017 ha_warning("%s.\n", tmptrash->area);
5018 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5019 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005020 free_trash_chunk(tmptrash);
5021 tmptrash = NULL;
5022 }
5023 }
5024 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5025 tmptrash = alloc_trash_chunk();
5026 if (tmptrash) {
5027 chunk_printf(tmptrash,
5028 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5029 s->flags & SRV_F_BACKUP ? "Backup " : "",
5030 s->proxy->id, s->id, s->hostname);
5031
5032 if (s->track) /* normally it's mandatory here */
5033 chunk_appendf(tmptrash, " via %s/%s",
5034 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005035 ha_warning("%s.\n", tmptrash->area);
5036 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5037 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005038 free_trash_chunk(tmptrash);
5039 tmptrash = NULL;
5040 }
5041 }
5042 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5043 tmptrash = alloc_trash_chunk();
5044 if (tmptrash) {
5045 chunk_printf(tmptrash,
5046 "%sServer %s/%s remains in forced maintenance",
5047 s->flags & SRV_F_BACKUP ? "Backup " : "",
5048 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005049 ha_warning("%s.\n", tmptrash->area);
5050 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5051 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005052 free_trash_chunk(tmptrash);
5053 tmptrash = NULL;
5054 }
5055 }
5056 /* don't report anything when leaving drain mode and remaining in maintenance */
5057
5058 s->cur_admin = s->next_admin;
5059 }
5060
5061 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5062 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5063 /* drain state is applied only if not yet in maint */
5064
5065 s->last_change = now.tv_sec;
5066 if (px->lbprm.set_server_status_down)
5067 px->lbprm.set_server_status_down(s);
5068
5069 /* we might have streams queued on this server and waiting for
5070 * a connection. Those which are redispatchable will be queued
5071 * to another server or to the proxy itself.
5072 */
5073 xferred = pendconn_redistribute(s);
5074
5075 tmptrash = alloc_trash_chunk();
5076 if (tmptrash) {
5077 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5078 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5079 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5080
5081 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5082
5083 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005084 ha_warning("%s.\n", tmptrash->area);
5085 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5086 tmptrash->area);
5087 send_email_alert(s, LOG_NOTICE, "%s",
5088 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005089 }
5090 free_trash_chunk(tmptrash);
5091 tmptrash = NULL;
5092 }
5093
5094 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5095 set_backend_down(s->proxy);
5096 }
5097 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5098 /* OK completely leaving drain mode */
5099 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5100 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5101 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5102 s->proxy->last_change = now.tv_sec;
5103 }
5104
5105 if (s->last_change < now.tv_sec) // ignore negative times
5106 s->down_time += now.tv_sec - s->last_change;
5107 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005108 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005109
5110 tmptrash = alloc_trash_chunk();
5111 if (tmptrash) {
5112 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5113 chunk_printf(tmptrash,
5114 "%sServer %s/%s is %s (leaving forced drain)",
5115 s->flags & SRV_F_BACKUP ? "Backup " : "",
5116 s->proxy->id, s->id,
5117 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5118 }
5119 else {
5120 chunk_printf(tmptrash,
5121 "%sServer %s/%s is %s (leaving drain)",
5122 s->flags & SRV_F_BACKUP ? "Backup " : "",
5123 s->proxy->id, s->id,
5124 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5125 if (s->track) /* normally it's mandatory here */
5126 chunk_appendf(tmptrash, " via %s/%s",
5127 s->track->proxy->id, s->track->id);
5128 }
5129
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005130 ha_warning("%s.\n", tmptrash->area);
5131 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5132 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005133 free_trash_chunk(tmptrash);
5134 tmptrash = NULL;
5135 }
5136
5137 /* now propagate the status change to any LB algorithms */
5138 if (px->lbprm.update_server_eweight)
5139 px->lbprm.update_server_eweight(s);
5140 else if (srv_willbe_usable(s)) {
5141 if (px->lbprm.set_server_status_up)
5142 px->lbprm.set_server_status_up(s);
5143 }
5144 else {
5145 if (px->lbprm.set_server_status_down)
5146 px->lbprm.set_server_status_down(s);
5147 }
5148 }
5149 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5150 /* remaining in drain mode after removing one of its flags */
5151
5152 tmptrash = alloc_trash_chunk();
5153 if (tmptrash) {
5154 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5155 chunk_printf(tmptrash,
5156 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5157 s->flags & SRV_F_BACKUP ? "Backup " : "",
5158 s->proxy->id, s->id);
5159
5160 if (s->track) /* normally it's mandatory here */
5161 chunk_appendf(tmptrash, " via %s/%s",
5162 s->track->proxy->id, s->track->id);
5163 }
5164 else {
5165 chunk_printf(tmptrash,
5166 "%sServer %s/%s remains in forced drain mode",
5167 s->flags & SRV_F_BACKUP ? "Backup " : "",
5168 s->proxy->id, s->id);
5169 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005170 ha_warning("%s.\n", tmptrash->area);
5171 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5172 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005173 free_trash_chunk(tmptrash);
5174 tmptrash = NULL;
5175 }
5176
5177 /* commit new admin status */
5178
5179 s->cur_admin = s->next_admin;
5180 }
5181 }
5182
5183 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005184 *s->adm_st_chg_cause = 0;
5185}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005186
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005187struct task *srv_cleanup_toremove_connections(struct task *task, void *context, unsigned short state)
5188{
5189 struct connection *conn;
5190
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005191 while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns,
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005192 struct connection *, list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005193 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005194 }
5195
5196 return task;
5197}
5198
Olivier Houchardff1d0922020-06-29 20:15:59 +02005199/* Move toremove_nb connections from idle_list to toremove_list, -1 means
5200 * moving them all.
5201 * Returns the number of connections moved.
5202 */
5203static int srv_migrate_conns_to_remove(struct mt_list *idle_list, struct mt_list *toremove_list, int toremove_nb)
5204{
5205 struct mt_list *elt1, elt2;
5206 struct connection *conn;
5207 int i = 0;
5208
5209 mt_list_for_each_entry_safe(conn, idle_list, list, elt1, elt2) {
5210 if (toremove_nb != -1 && i >= toremove_nb)
5211 break;
5212 MT_LIST_DEL_SAFE_NOINIT(elt1);
Willy Tarreaude4db172020-07-10 08:10:29 +02005213 MT_LIST_ADDQ(toremove_list, &conn->list);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005214 i++;
5215 }
5216 return i;
5217}
William Dauchy6318d332020-05-02 21:52:36 +02005218/* cleanup connections for a given server
5219 * might be useful when going on forced maintenance or live changing ip/port
5220 */
William Dauchy707ad322020-05-04 13:52:40 +02005221static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005222{
William Dauchy6318d332020-05-02 21:52:36 +02005223 int did_remove;
5224 int i;
William Dauchy6318d332020-05-02 21:52:36 +02005225
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005226 /* check all threads starting with ours */
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005227 for (i = tid;;) {
William Dauchy6318d332020-05-02 21:52:36 +02005228 did_remove = 0;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005229 if (srv_migrate_conns_to_remove(&srv->idle_conns[i], &idle_conns[i].toremove_conns, -1) > 0)
William Dauchy6318d332020-05-02 21:52:36 +02005230 did_remove = 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005231 if (srv_migrate_conns_to_remove(&srv->safe_conns[i], &idle_conns[i].toremove_conns, -1) > 0)
5232 did_remove = 1;
William Dauchy6318d332020-05-02 21:52:36 +02005233 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005234 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005235
5236 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5237 break;
William Dauchy6318d332020-05-02 21:52:36 +02005238 }
William Dauchy6318d332020-05-02 21:52:36 +02005239}
5240
Willy Tarreau980855b2019-02-07 14:59:29 +01005241struct task *srv_cleanup_idle_connections(struct task *task, void *context, unsigned short state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005242{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005243 struct server *srv;
5244 struct eb32_node *eb;
5245 int i;
5246 unsigned int next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005247
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005248 next_wakeup = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005249 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5250 while (1) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005251 int exceed_conns;
5252 int to_kill;
5253 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005254
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005255 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5256 if (!eb) {
5257 /* we might have reached the end of the tree, typically because
5258 * <now_ms> is in the first half and we're first scanning the last
5259 * half. Let's loop back to the beginning of the tree now.
5260 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005261
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005262 eb = eb32_first(&idle_conn_srv);
5263 if (likely(!eb))
5264 break;
5265 }
5266 if (tick_is_lt(now_ms, eb->key)) {
5267 /* timer not expired yet, revisit it later */
5268 next_wakeup = eb->key;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005269 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005270 }
5271 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005272
5273 /* Calculate how many idle connections we want to kill :
5274 * we want to remove half the difference between the total
5275 * of established connections (used or idle) and the max
5276 * number of used connections.
5277 */
5278 curr_idle = srv->curr_idle_conns;
5279 if (curr_idle == 0)
5280 goto remove;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005281 exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005282 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005283
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005284 srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns) / 2;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005285 if (srv->est_need_conns < srv->max_used_conns)
5286 srv->est_need_conns = srv->max_used_conns;
5287
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005288 srv->max_used_conns = srv->curr_used_conns;
5289
Willy Tarreau18ed7892020-07-02 19:05:30 +02005290 if (exceed_conns <= 0)
5291 goto remove;
5292
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005293 /* check all threads starting with ours */
5294 for (i = tid;;) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005295 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005296 int j;
5297 int did_remove = 0;
5298
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005299 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5300 curr_idle + 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005301
5302 j = srv_migrate_conns_to_remove(&srv->idle_conns[i], &idle_conns[i].toremove_conns, max_conn);
5303 if (j > 0)
5304 did_remove = 1;
5305 if (max_conn - j > 0 &&
5306 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 +01005307 did_remove = 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005308
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005309 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005310 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005311
5312 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5313 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005314 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005315remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005316 eb32_delete(&srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005317
5318 if (srv->curr_idle_conns) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005319 /* There are still more idle connections, add the
5320 * server back in the tree.
5321 */
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005322 srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005323 eb32_insert(&idle_conn_srv, &srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005324 next_wakeup = tick_first(next_wakeup, srv->idle_node.key);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005325 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005326 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005327 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5328
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005329 task->expire = next_wakeup;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005330 return task;
5331}
Olivier Houchard88698d92019-04-16 19:07:22 +02005332
Willy Tarreau76cc6992020-07-01 18:49:24 +02005333/* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */
5334static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx,
5335 struct proxy *defpx, const char *file, int line,
5336 char **err)
5337{
5338 if (too_many_args(1, args, err, NULL))
5339 return -1;
5340
5341 if (strcmp(args[1], "on") == 0)
5342 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
5343 else if (strcmp(args[1], "off") == 0)
5344 global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
5345 else {
5346 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
5347 return -1;
5348 }
5349 return 0;
5350}
5351
Olivier Houchard88698d92019-04-16 19:07:22 +02005352/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5353static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
5354 struct proxy *defpx, const char *file, int line,
5355 char **err)
5356{
5357 int arg = -1;
5358
5359 if (too_many_args(1, args, err, NULL))
5360 return -1;
5361
5362 if (*(args[1]) != 0)
5363 arg = atoi(args[1]);
5364
5365 if (arg < 0 || arg > 100) {
5366 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5367 return -1;
5368 }
5369
5370 if (args[0][10] == 'h')
5371 global.tune.pool_high_ratio = arg;
5372 else
5373 global.tune.pool_low_ratio = arg;
5374 return 0;
5375}
5376
5377/* config keyword parsers */
5378static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau76cc6992020-07-01 18:49:24 +02005379 { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared },
Olivier Houchard88698d92019-04-16 19:07:22 +02005380 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5381 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5382 { 0, NULL, NULL }
5383}};
5384
5385INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5386
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005387/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005388 * Local variables:
5389 * c-indent-level: 8
5390 * c-basic-offset: 8
5391 * End:
5392 */