blob: 14eb41f9d92429d788432bcff4ad8106f2248bb0 [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 Tarreau272adea2014-03-31 10:39:59 +020014#include <ctype.h>
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020015#include <errno.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020016
Olivier Houchard4e694042017-03-14 20:01:29 +010017#include <import/xxhash.h>
18
Willy Tarreau272adea2014-03-31 10:39:59 +020019#include <common/cfgparse.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020020#include <common/config.h>
Willy Tarreaudff55432012-10-10 17:51:05 +020021#include <common/errors.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010022#include <common/initcall.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010023#include <common/namespace.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020024#include <common/time.h>
25
William Lallemand222baf22016-11-19 02:00:33 +010026#include <types/applet.h>
27#include <types/cli.h>
Frédéric Lécaille7da71292019-05-20 09:47:07 +020028#include <types/dict.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020029#include <types/global.h>
Willy Tarreau21b069d2016-11-23 17:15:08 +010030#include <types/cli.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020031#include <types/dns.h>
William Lallemand222baf22016-11-19 02:00:33 +010032#include <types/stats.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020033
William Lallemand222baf22016-11-19 02:00:33 +010034#include <proto/applet.h>
35#include <proto/cli.h>
Simon Hormanb1900d52015-01-30 11:22:54 +090036#include <proto/checks.h>
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +020037#include <proto/connection.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020038#include <proto/port_range.h>
39#include <proto/protocol.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020040#include <proto/queue.h>
Frédéric Lécaille9a146de2017-03-20 14:54:41 +010041#include <proto/sample.h>
Willy Tarreauec6c5df2008-07-15 00:22:45 +020042#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020043#include <proto/stream.h>
William Lallemand222baf22016-11-19 02:00:33 +010044#include <proto/stream_interface.h>
45#include <proto/stats.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020046#include <proto/task.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020047#include <proto/dns.h>
David Carlier6f182082017-04-03 21:58:04 +010048#include <netinet/tcp.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020049
Baptiste Assmannda29fe22019-06-13 13:24:29 +020050#include <ebsttree.h>
51
Willy Tarreau3ff577e2018-08-02 11:48:52 +020052static void srv_update_status(struct server *s);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020053static void srv_update_state(struct server *srv, int version, char **params);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +010054static int srv_apply_lastaddr(struct server *srv, int *err_code);
Olivier Houchardd16bfe62017-10-31 15:21:19 +010055static int srv_set_fqdn(struct server *srv, const char *fqdn, int dns_locked);
Baptiste Assmannda29fe22019-06-13 13:24:29 +020056static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params);
57static int srv_state_get_version(FILE *f);
Willy Tarreaubaaee002006-06-26 02:48:02 +020058
Willy Tarreau21faa912012-10-10 08:27:36 +020059/* List head of all known server keywords */
60static struct srv_kw_list srv_keywords = {
61 .list = LIST_HEAD_INIT(srv_keywords.list)
62};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020063
Olivier Houchard9ea5d362019-02-14 18:29:09 +010064__decl_hathreads(HA_SPINLOCK_T idle_conn_srv_lock);
65struct eb_root idle_conn_srv = EB_ROOT;
66struct task *idle_conn_task = NULL;
67struct task *idle_conn_cleanup[MAX_THREADS] = { NULL };
Olivier Houchard859dc802019-08-08 15:47:21 +020068struct mt_list toremove_connections[MAX_THREADS];
Olivier Houchard4be71902019-07-11 15:49:00 +020069__decl_hathreads(HA_SPINLOCK_T toremove_lock[MAX_THREADS]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010070
Frédéric Lécaille7da71292019-05-20 09:47:07 +020071/* The server names dictionary */
72struct dict server_name_dict = {
73 .name = "server names",
74 .values = EB_ROOT_UNIQUE,
75};
76
Baptiste Assmannda29fe22019-06-13 13:24:29 +020077/* tree where global state_file is loaded */
Willy Tarreaufd1aa012019-12-20 17:23:40 +010078struct eb_root state_file = EB_ROOT_UNIQUE;
Baptiste Assmannda29fe22019-06-13 13:24:29 +020079
Simon Hormana3608442013-11-01 16:46:15 +090080int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020081{
Emeric Brun52a91d32017-08-31 14:41:55 +020082 if ((s->cur_state != SRV_ST_STOPPED) && s->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020083 return s->down_time;
84
85 return now.tv_sec - s->last_change + s->down_time;
86}
Willy Tarreaubaaee002006-06-26 02:48:02 +020087
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050088int srv_lastsession(const struct server *s)
89{
90 if (s->counters.last_sess)
91 return now.tv_sec - s->counters.last_sess;
92
93 return -1;
94}
95
Simon Horman4a741432013-02-23 15:35:38 +090096int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020097{
Simon Horman4a741432013-02-23 15:35:38 +090098 const struct server *s = check->server;
99
Willy Tarreauff5ae352013-12-11 20:36:34 +0100100 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +0900101 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100102
Emeric Brun52a91d32017-08-31 14:41:55 +0200103 if ((s->next_state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +0900104 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100105
Simon Horman4a741432013-02-23 15:35:38 +0900106 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100107}
108
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100109/*
110 * Check that we did not get a hash collision.
111 * Unlikely, but it can happen.
112 */
113static inline void srv_check_for_dup_dyncookie(struct server *s)
Olivier Houchard4e694042017-03-14 20:01:29 +0100114{
115 struct proxy *p = s->proxy;
116 struct server *tmpserv;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100117
118 for (tmpserv = p->srv; tmpserv != NULL;
119 tmpserv = tmpserv->next) {
120 if (tmpserv == s)
121 continue;
122 if (tmpserv->next_admin & SRV_ADMF_FMAINT)
123 continue;
124 if (tmpserv->cookie &&
125 strcmp(tmpserv->cookie, s->cookie) == 0) {
126 ha_warning("We generated two equal cookies for two different servers.\n"
127 "Please change the secret key for '%s'.\n",
128 s->proxy->id);
129 }
130 }
131
132}
133
Willy Tarreau46b7f532018-08-21 11:54:26 +0200134/*
Willy Tarreau5e83d992019-07-30 11:59:34 +0200135 * Must be called with the server lock held, and will grab the proxy lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200136 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100137void srv_set_dyncookie(struct server *s)
138{
139 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100140 char *tmpbuf;
141 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100142 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100143 size_t buffer_len;
144 int addr_len;
145 int port;
146
Willy Tarreau5e83d992019-07-30 11:59:34 +0200147 HA_SPIN_LOCK(PROXY_LOCK, &p->lock);
148
Olivier Houchard4e694042017-03-14 20:01:29 +0100149 if ((s->flags & SRV_F_COOKIESET) ||
150 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
151 s->proxy->dyncookie_key == NULL)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200152 goto out;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100153 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100154
155 if (s->addr.ss_family != AF_INET &&
156 s->addr.ss_family != AF_INET6)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200157 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100158 /*
159 * Buffer to calculate the cookie value.
160 * The buffer contains the secret key + the server IP address
161 * + the TCP port.
162 */
163 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
164 /*
165 * The TCP port should use only 2 bytes, but is stored in
166 * an unsigned int in struct server, so let's use 4, to be
167 * on the safe side.
168 */
169 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200170 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100171 memcpy(tmpbuf, p->dyncookie_key, key_len);
172 memcpy(&(tmpbuf[key_len]),
173 s->addr.ss_family == AF_INET ?
174 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
175 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
176 addr_len);
177 /*
178 * Make sure it's the same across all the load balancers,
179 * no matter their endianness.
180 */
181 port = htonl(s->svc_port);
182 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
183 hash_value = XXH64(tmpbuf, buffer_len, 0);
184 memprintf(&s->cookie, "%016llx", hash_value);
185 if (!s->cookie)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200186 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100187 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100188
189 /* Don't bother checking if the dyncookie is duplicated if
190 * the server is marked as "disabled", maybe it doesn't have
191 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100192 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100193 if (!(s->next_admin & SRV_ADMF_FMAINT))
194 srv_check_for_dup_dyncookie(s);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200195 out:
196 HA_SPIN_UNLOCK(PROXY_LOCK, &p->lock);
Olivier Houchard4e694042017-03-14 20:01:29 +0100197}
198
Willy Tarreau21faa912012-10-10 08:27:36 +0200199/*
200 * Registers the server keyword list <kwl> as a list of valid keywords for next
201 * parsing sessions.
202 */
203void srv_register_keywords(struct srv_kw_list *kwl)
204{
205 LIST_ADDQ(&srv_keywords.list, &kwl->list);
206}
207
208/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
209 * keyword is found with a NULL ->parse() function, then an attempt is made to
210 * find one with a valid ->parse() function. This way it is possible to declare
211 * platform-dependant, known keywords as NULL, then only declare them as valid
212 * if some options are met. Note that if the requested keyword contains an
213 * opening parenthesis, everything from this point is ignored.
214 */
215struct srv_kw *srv_find_kw(const char *kw)
216{
217 int index;
218 const char *kwend;
219 struct srv_kw_list *kwl;
220 struct srv_kw *ret = NULL;
221
222 kwend = strchr(kw, '(');
223 if (!kwend)
224 kwend = kw + strlen(kw);
225
226 list_for_each_entry(kwl, &srv_keywords.list, list) {
227 for (index = 0; kwl->kw[index].kw != NULL; index++) {
228 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
229 kwl->kw[index].kw[kwend-kw] == 0) {
230 if (kwl->kw[index].parse)
231 return &kwl->kw[index]; /* found it !*/
232 else
233 ret = &kwl->kw[index]; /* may be OK */
234 }
235 }
236 }
237 return ret;
238}
239
240/* Dumps all registered "server" keywords to the <out> string pointer. The
241 * unsupported keywords are only dumped if their supported form was not
242 * found.
243 */
244void srv_dump_kws(char **out)
245{
246 struct srv_kw_list *kwl;
247 int index;
248
249 *out = NULL;
250 list_for_each_entry(kwl, &srv_keywords.list, list) {
251 for (index = 0; kwl->kw[index].kw != NULL; index++) {
252 if (kwl->kw[index].parse ||
253 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
254 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
255 kwl->scope,
256 kwl->kw[index].kw,
257 kwl->kw[index].skip ? " <arg>" : "",
258 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
259 kwl->kw[index].parse ? "" : " (not supported)");
260 }
261 }
262 }
263}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100264
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100265/* Parse the "backup" server keyword */
266static int srv_parse_backup(char **args, int *cur_arg,
267 struct proxy *curproxy, struct server *newsrv, char **err)
268{
269 newsrv->flags |= SRV_F_BACKUP;
270 return 0;
271}
272
Alexander Liu2a54bb72019-05-22 19:44:48 +0800273
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100274/* Parse the "cookie" server keyword */
275static int srv_parse_cookie(char **args, int *cur_arg,
276 struct proxy *curproxy, struct server *newsrv, char **err)
277{
278 char *arg;
279
280 arg = args[*cur_arg + 1];
281 if (!*arg) {
282 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
283 return ERR_ALERT | ERR_FATAL;
284 }
285
286 free(newsrv->cookie);
287 newsrv->cookie = strdup(arg);
288 newsrv->cklen = strlen(arg);
289 newsrv->flags |= SRV_F_COOKIESET;
290 return 0;
291}
292
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100293/* Parse the "disabled" server keyword */
294static int srv_parse_disabled(char **args, int *cur_arg,
295 struct proxy *curproxy, struct server *newsrv, char **err)
296{
Emeric Brun52a91d32017-08-31 14:41:55 +0200297 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
298 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100299 newsrv->check.state |= CHK_ST_PAUSED;
300 newsrv->check.health = 0;
301 return 0;
302}
303
304/* Parse the "enabled" server keyword */
305static int srv_parse_enabled(char **args, int *cur_arg,
306 struct proxy *curproxy, struct server *newsrv, char **err)
307{
Emeric Brun52a91d32017-08-31 14:41:55 +0200308 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
309 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100310 newsrv->check.state &= ~CHK_ST_PAUSED;
311 newsrv->check.health = newsrv->check.rise;
312 return 0;
313}
314
Willy Tarreau9c538e02019-01-23 10:21:49 +0100315static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
316{
317 char *arg;
318
319 arg = args[*cur_arg + 1];
320 if (!*arg) {
321 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
322 return ERR_ALERT | ERR_FATAL;
323 }
324 newsrv->max_reuse = atoi(arg);
325
326 return 0;
327}
328
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100329static 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 +0100330{
331 const char *res;
332 char *arg;
333 unsigned int time;
334
335 arg = args[*cur_arg + 1];
336 if (!*arg) {
337 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
338 return ERR_ALERT | ERR_FATAL;
339 }
340 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200341 if (res == PARSE_TIME_OVER) {
342 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
343 args[*cur_arg+1], args[*cur_arg]);
344 return ERR_ALERT | ERR_FATAL;
345 }
346 else if (res == PARSE_TIME_UNDER) {
347 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
348 args[*cur_arg+1], args[*cur_arg]);
349 return ERR_ALERT | ERR_FATAL;
350 }
351 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100352 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
353 *res, args[*cur_arg]);
354 return ERR_ALERT | ERR_FATAL;
355 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100356 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100357
358 return 0;
359}
360
Olivier Houchard006e3102018-12-10 18:30:32 +0100361static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
362{
363 char *arg;
364
365 arg = args[*cur_arg + 1];
366 if (!*arg) {
367 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
368 return ERR_ALERT | ERR_FATAL;
369 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100370
Olivier Houchard006e3102018-12-10 18:30:32 +0100371 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100372 if ((int)newsrv->max_idle_conns < -1) {
373 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
374 return ERR_ALERT | ERR_FATAL;
375 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100376
377 return 0;
378}
379
Willy Tarreaudff55432012-10-10 17:51:05 +0200380/* parse the "id" server keyword */
381static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
382{
383 struct eb32_node *node;
384
385 if (!*args[*cur_arg + 1]) {
386 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
387 return ERR_ALERT | ERR_FATAL;
388 }
389
390 newsrv->puid = atol(args[*cur_arg + 1]);
391 newsrv->conf.id.key = newsrv->puid;
392
393 if (newsrv->puid <= 0) {
394 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
395 return ERR_ALERT | ERR_FATAL;
396 }
397
398 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
399 if (node) {
400 struct server *target = container_of(node, struct server, conf.id);
401 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
402 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
403 target->id);
404 return ERR_ALERT | ERR_FATAL;
405 }
406
407 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200408 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200409 return 0;
410}
411
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100412/* Parse the "namespace" server keyword */
413static int srv_parse_namespace(char **args, int *cur_arg,
414 struct proxy *curproxy, struct server *newsrv, char **err)
415{
Willy Tarreaue5733232019-05-22 19:24:06 +0200416#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100417 char *arg;
418
419 arg = args[*cur_arg + 1];
420 if (!*arg) {
421 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
422 return ERR_ALERT | ERR_FATAL;
423 }
424
425 if (!strcmp(arg, "*")) {
426 /* Use the namespace associated with the connection (if present). */
427 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
428 return 0;
429 }
430
431 /*
432 * As this parser may be called several times for the same 'default-server'
433 * object, or for a new 'server' instance deriving from a 'default-server'
434 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
435 */
436 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
437
438 newsrv->netns = netns_store_lookup(arg, strlen(arg));
439 if (!newsrv->netns)
440 newsrv->netns = netns_store_insert(arg);
441
442 if (!newsrv->netns) {
443 memprintf(err, "Cannot open namespace '%s'", arg);
444 return ERR_ALERT | ERR_FATAL;
445 }
446
447 return 0;
448#else
449 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
450 return ERR_ALERT | ERR_FATAL;
451#endif
452}
453
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100454/* Parse the "no-backup" server keyword */
455static int srv_parse_no_backup(char **args, int *cur_arg,
456 struct proxy *curproxy, struct server *newsrv, char **err)
457{
458 newsrv->flags &= ~SRV_F_BACKUP;
459 return 0;
460}
461
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100462
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100463/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200464static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100465{
466 srv->pp_opts &= ~flags;
467 return 0;
468}
469
470/* Parse the "no-send-proxy" server keyword */
471static int srv_parse_no_send_proxy(char **args, int *cur_arg,
472 struct proxy *curproxy, struct server *newsrv, char **err)
473{
474 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
475}
476
477/* Parse the "no-send-proxy-v2" server keyword */
478static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
479 struct proxy *curproxy, struct server *newsrv, char **err)
480{
481 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
482}
483
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200484/* Parse the "no-tfo" server keyword */
485static int srv_parse_no_tfo(char **args, int *cur_arg,
486 struct proxy *curproxy, struct server *newsrv, char **err)
487{
488 newsrv->flags &= ~SRV_F_FASTOPEN;
489 return 0;
490}
491
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100492/* Parse the "non-stick" server keyword */
493static int srv_parse_non_stick(char **args, int *cur_arg,
494 struct proxy *curproxy, struct server *newsrv, char **err)
495{
496 newsrv->flags |= SRV_F_NON_STICK;
497 return 0;
498}
499
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100500/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200501static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100502{
503 srv->pp_opts |= flags;
504 return 0;
505}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200506/* parse the "proto" server keyword */
507static int srv_parse_proto(char **args, int *cur_arg,
508 struct proxy *px, struct server *newsrv, char **err)
509{
510 struct ist proto;
511
512 if (!*args[*cur_arg + 1]) {
513 memprintf(err, "'%s' : missing value", args[*cur_arg]);
514 return ERR_ALERT | ERR_FATAL;
515 }
516 proto = ist2(args[*cur_arg + 1], strlen(args[*cur_arg + 1]));
517 newsrv->mux_proto = get_mux_proto(proto);
518 if (!newsrv->mux_proto) {
519 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
520 return ERR_ALERT | ERR_FATAL;
521 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200522 return 0;
523}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100524
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100525/* parse the "proxy-v2-options" */
526static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
527 struct proxy *px, struct server *newsrv, char **err)
528{
529 char *p, *n;
530 for (p = args[*cur_arg+1]; p; p = n) {
531 n = strchr(p, ',');
532 if (n)
533 *n++ = '\0';
534 if (!strcmp(p, "ssl")) {
535 newsrv->pp_opts |= SRV_PP_V2_SSL;
536 } else if (!strcmp(p, "cert-cn")) {
537 newsrv->pp_opts |= SRV_PP_V2_SSL;
538 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100539 } else if (!strcmp(p, "cert-key")) {
540 newsrv->pp_opts |= SRV_PP_V2_SSL;
541 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
542 } else if (!strcmp(p, "cert-sig")) {
543 newsrv->pp_opts |= SRV_PP_V2_SSL;
544 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
545 } else if (!strcmp(p, "ssl-cipher")) {
546 newsrv->pp_opts |= SRV_PP_V2_SSL;
547 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100548 } else if (!strcmp(p, "authority")) {
549 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100550 } else if (!strcmp(p, "crc32c")) {
551 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100552 } else if (!strcmp(p, "unique-id")) {
553 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100554 } else
555 goto fail;
556 }
557 return 0;
558 fail:
559 if (err)
560 memprintf(err, "'%s' : proxy v2 option not implemented", p);
561 return ERR_ALERT | ERR_FATAL;
562}
563
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100564/* Parse the "observe" server keyword */
565static int srv_parse_observe(char **args, int *cur_arg,
566 struct proxy *curproxy, struct server *newsrv, char **err)
567{
568 char *arg;
569
570 arg = args[*cur_arg + 1];
571 if (!*arg) {
572 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
573 return ERR_ALERT | ERR_FATAL;
574 }
575
576 if (!strcmp(arg, "none")) {
577 newsrv->observe = HANA_OBS_NONE;
578 }
579 else if (!strcmp(arg, "layer4")) {
580 newsrv->observe = HANA_OBS_LAYER4;
581 }
582 else if (!strcmp(arg, "layer7")) {
583 if (curproxy->mode != PR_MODE_HTTP) {
584 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
585 return ERR_ALERT;
586 }
587 newsrv->observe = HANA_OBS_LAYER7;
588 }
589 else {
590 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
591 "but got '%s'\n", args[*cur_arg], arg);
592 return ERR_ALERT | ERR_FATAL;
593 }
594
595 return 0;
596}
597
Frédéric Lécaille16186232017-03-14 16:42:49 +0100598/* Parse the "redir" server keyword */
599static int srv_parse_redir(char **args, int *cur_arg,
600 struct proxy *curproxy, struct server *newsrv, char **err)
601{
602 char *arg;
603
604 arg = args[*cur_arg + 1];
605 if (!*arg) {
606 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
607 return ERR_ALERT | ERR_FATAL;
608 }
609
610 free(newsrv->rdr_pfx);
611 newsrv->rdr_pfx = strdup(arg);
612 newsrv->rdr_len = strlen(arg);
613
614 return 0;
615}
616
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100617/* Parse the "send-proxy" server keyword */
618static int srv_parse_send_proxy(char **args, int *cur_arg,
619 struct proxy *curproxy, struct server *newsrv, char **err)
620{
621 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
622}
623
624/* Parse the "send-proxy-v2" server keyword */
625static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
626 struct proxy *curproxy, struct server *newsrv, char **err)
627{
628 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
629}
630
Frédéric Lécailledba97072017-03-17 15:33:50 +0100631
632/* Parse the "source" server keyword */
633static int srv_parse_source(char **args, int *cur_arg,
634 struct proxy *curproxy, struct server *newsrv, char **err)
635{
636 char *errmsg;
637 int port_low, port_high;
638 struct sockaddr_storage *sk;
639 struct protocol *proto;
640
641 errmsg = NULL;
642
643 if (!*args[*cur_arg + 1]) {
644 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
645 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
646 goto err;
647 }
648
649 /* 'sk' is statically allocated (no need to be freed). */
650 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, &errmsg, NULL, NULL, 1);
651 if (!sk) {
652 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
653 goto err;
654 }
655
656 proto = protocol_by_family(sk->ss_family);
657 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100658 ha_alert("'%s %s' : connect() not supported for this address family.\n",
659 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100660 goto err;
661 }
662
663 newsrv->conn_src.opts |= CO_SRC_BIND;
664 newsrv->conn_src.source_addr = *sk;
665
666 if (port_low != port_high) {
667 int i;
668
669 if (!port_low || !port_high) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100670 ha_alert("'%s' does not support port offsets (found '%s').\n",
671 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100672 goto err;
673 }
674
675 if (port_low <= 0 || port_low > 65535 ||
676 port_high <= 0 || port_high > 65535 ||
677 port_low > port_high) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100678 ha_alert("'%s': invalid source port range %d-%d.\n", args[*cur_arg], port_low, port_high);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100679 goto err;
680 }
681 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
682 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
683 newsrv->conn_src.sport_range->ports[i] = port_low + i;
684 }
685
686 *cur_arg += 2;
687 while (*(args[*cur_arg])) {
688 if (!strcmp(args[*cur_arg], "usesrc")) { /* address to use outside */
689#if defined(CONFIG_HAP_TRANSPARENT)
690 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100691 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
692 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +0100693 goto err;
694 }
695 if (!strcmp(args[*cur_arg + 1], "client")) {
696 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
697 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
698 }
699 else if (!strcmp(args[*cur_arg + 1], "clientip")) {
700 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
701 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
702 }
703 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
704 char *name, *end;
705
706 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +0100707 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100708 name++;
709
710 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +0100711 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +0100712 end++;
713
714 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
715 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
716 free(newsrv->conn_src.bind_hdr_name);
717 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
718 newsrv->conn_src.bind_hdr_len = end - name;
719 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
720 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
721 newsrv->conn_src.bind_hdr_occ = -1;
722
723 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +0100724 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100725 end++;
726 if (*end == ',') {
727 end++;
728 name = end;
729 if (*end == '-')
730 end++;
Willy Tarreau90807112020-02-25 08:16:33 +0100731 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100732 end++;
733 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
734 }
735
736 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100737 ha_alert("usesrc hdr_ip(name,num) does not support negative"
738 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100739 goto err;
740 }
741 }
742 else {
743 struct sockaddr_storage *sk;
744 int port1, port2;
745
746 /* 'sk' is statically allocated (no need to be freed). */
747 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
748 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100749 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100750 goto err;
751 }
752
753 proto = protocol_by_family(sk->ss_family);
754 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100755 ha_alert("'%s %s' : connect() not supported for this address family.\n",
756 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100757 goto err;
758 }
759
760 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100761 ha_alert("'%s' : port ranges and offsets are not allowed in '%s'\n",
762 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100763 goto err;
764 }
765 newsrv->conn_src.tproxy_addr = *sk;
766 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
767 }
768 global.last_checks |= LSTCHK_NETADM;
769 *cur_arg += 2;
770 continue;
771#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100772 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 +0100773 goto err;
774#endif /* defined(CONFIG_HAP_TRANSPARENT) */
775 } /* "usesrc" */
776
777 if (!strcmp(args[*cur_arg], "interface")) { /* specifically bind to this interface */
778#ifdef SO_BINDTODEVICE
779 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100780 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100781 goto err;
782 }
783 free(newsrv->conn_src.iface_name);
784 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
785 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
786 global.last_checks |= LSTCHK_NETADM;
787#else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100788 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100789 goto err;
790#endif
791 *cur_arg += 2;
792 continue;
793 }
794 /* this keyword in not an option of "source" */
795 break;
796 } /* while */
797
798 return 0;
799
800 err:
801 free(errmsg);
802 return ERR_ALERT | ERR_FATAL;
803}
804
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100805/* Parse the "stick" server keyword */
806static int srv_parse_stick(char **args, int *cur_arg,
807 struct proxy *curproxy, struct server *newsrv, char **err)
808{
809 newsrv->flags &= ~SRV_F_NON_STICK;
810 return 0;
811}
812
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100813/* Parse the "track" server keyword */
814static int srv_parse_track(char **args, int *cur_arg,
815 struct proxy *curproxy, struct server *newsrv, char **err)
816{
817 char *arg;
818
819 arg = args[*cur_arg + 1];
820 if (!*arg) {
821 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
822 return ERR_ALERT | ERR_FATAL;
823 }
824
825 free(newsrv->trackit);
826 newsrv->trackit = strdup(arg);
827
828 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800829}
830
831/* Parse the "socks4" server keyword */
832static int srv_parse_socks4(char **args, int *cur_arg,
833 struct proxy *curproxy, struct server *newsrv, char **err)
834{
835 char *errmsg;
836 int port_low, port_high;
837 struct sockaddr_storage *sk;
838 struct protocol *proto;
839
840 errmsg = NULL;
841
842 if (!*args[*cur_arg + 1]) {
843 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
844 goto err;
845 }
846
847 /* 'sk' is statically allocated (no need to be freed). */
848 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, &errmsg, NULL, NULL, 1);
849 if (!sk) {
850 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
851 goto err;
852 }
853
854 proto = protocol_by_family(sk->ss_family);
855 if (!proto || !proto->connect) {
856 ha_alert("'%s %s' : connect() not supported for this address family.\n", args[*cur_arg], args[*cur_arg + 1]);
857 goto err;
858 }
859
860 newsrv->flags |= SRV_F_SOCKS4_PROXY;
861 newsrv->socks4_addr = *sk;
862
863 if (port_low != port_high) {
864 ha_alert("'%s' does not support port offsets (found '%s').\n", args[*cur_arg], args[*cur_arg + 1]);
865 goto err;
866 }
867
868 if (!port_low) {
869 ha_alert("'%s': invalid port range %d-%d.\n", args[*cur_arg], port_low, port_high);
870 goto err;
871 }
872
873 return 0;
874
875 err:
876 free(errmsg);
877 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100878}
879
Frédéric Lécailledba97072017-03-17 15:33:50 +0100880
Willy Tarreau034c88c2017-01-23 23:36:45 +0100881/* parse the "tfo" server keyword */
882static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
883{
884 newsrv->flags |= SRV_F_FASTOPEN;
885 return 0;
886}
887
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200888/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +0200889 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200890 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200891 *
892 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200893 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200894void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200895{
Willy Tarreau87b09662015-04-03 00:22:06 +0200896 struct stream *stream, *stream_bck;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200897
Willy Tarreau87b09662015-04-03 00:22:06 +0200898 list_for_each_entry_safe(stream, stream_bck, &srv->actconns, by_srv)
899 if (stream->srv_conn == srv)
900 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200901}
902
903/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +0200904 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200905 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200906 *
907 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200908 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200909void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200910{
911 struct server *srv;
912
913 for (srv = px->srv; srv != NULL; srv = srv->next)
914 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +0200915 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200916}
917
Willy Tarreaubda92272014-05-20 21:55:30 +0200918/* Appends some information to a message string related to a server going UP or
919 * DOWN. If both <forced> and <reason> are null and the server tracks another
920 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +0200921 * If <check> is non-null, an entire string describing the check result will be
922 * appended after a comma and a space (eg: to report some information from the
923 * check that changed the state). In the other case, the string will be built
924 * using the check results stored into the struct server if present.
925 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +0200926 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200927 *
928 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200929 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200930void srv_append_status(struct buffer *msg, struct server *s,
931 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200932{
Emeric Brun5a133512017-10-19 14:42:30 +0200933 short status = s->op_st_chg.status;
934 short code = s->op_st_chg.code;
935 long duration = s->op_st_chg.duration;
936 char *desc = s->op_st_chg.reason;
937
938 if (check) {
939 status = check->status;
940 code = check->code;
941 duration = check->duration;
942 desc = check->desc;
943 }
944
945 if (status != -1) {
946 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
947
948 if (status >= HCHK_STATUS_L57DATA)
949 chunk_appendf(msg, ", code: %d", code);
950
951 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +0200952 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +0200953
954 chunk_appendf(msg, ", info: \"");
955
956 chunk_initlen(&src, desc, 0, strlen(desc));
957 chunk_asciiencode(msg, &src, '"');
958
959 chunk_appendf(msg, "\"");
960 }
961
962 if (duration >= 0)
963 chunk_appendf(msg, ", check duration: %ldms", duration);
964 }
965 else if (desc && *desc) {
966 chunk_appendf(msg, ", %s", desc);
967 }
968 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +0200969 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +0200970 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200971
972 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200973 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200974 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
975 " %d sessions active, %d requeued, %d remaining in queue",
976 s->proxy->srv_act, s->proxy->srv_bck,
977 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
978 s->cur_sess, xferred, s->nbpend);
979 else
980 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
981 " %d sessions requeued, %d total in queue",
982 s->proxy->srv_act, s->proxy->srv_bck,
983 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
984 xferred, s->nbpend);
985 }
986}
987
Emeric Brun5a133512017-10-19 14:42:30 +0200988/* Marks server <s> down, regardless of its checks' statuses. The server is
989 * registered in a list to postpone the counting of the remaining servers on
990 * the proxy and transfers queued streams whenever possible to other servers at
991 * a sync point. Maintenance servers are ignored. It stores the <reason> if
992 * non-null as the reason for going down or the available data from the check
993 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200994 *
995 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200996 */
Emeric Brun5a133512017-10-19 14:42:30 +0200997void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200998{
999 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001000
Emeric Brun64cc49c2017-10-03 14:46:45 +02001001 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001002 return;
1003
Emeric Brun52a91d32017-08-31 14:41:55 +02001004 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +02001005 *s->op_st_chg.reason = 0;
1006 s->op_st_chg.status = -1;
1007 if (reason) {
1008 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1009 }
1010 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001011 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001012 s->op_st_chg.code = check->code;
1013 s->op_st_chg.status = check->status;
1014 s->op_st_chg.duration = check->duration;
1015 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001016
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001017 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001018 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001019
Emeric Brun9f0b4582017-10-23 14:39:51 +02001020 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001021 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001022 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001023 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001024 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001025}
1026
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001027/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001028 * in maintenance. The server is registered in a list to postpone the counting
1029 * of the remaining servers on the proxy and tries to grab requests from the
1030 * proxy at a sync point. Maintenance servers are ignored. It stores the
1031 * <reason> if non-null as the reason for going down or the available data
1032 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001033 *
1034 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001035 */
Emeric Brun5a133512017-10-19 14:42:30 +02001036void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001037{
1038 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001039
Emeric Brun64cc49c2017-10-03 14:46:45 +02001040 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001041 return;
1042
Emeric Brun52a91d32017-08-31 14:41:55 +02001043 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001044 return;
1045
Emeric Brun52a91d32017-08-31 14:41:55 +02001046 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001047 *s->op_st_chg.reason = 0;
1048 s->op_st_chg.status = -1;
1049 if (reason) {
1050 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1051 }
1052 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001053 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001054 s->op_st_chg.code = check->code;
1055 s->op_st_chg.status = check->status;
1056 s->op_st_chg.duration = check->duration;
1057 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001058
Emeric Brun64cc49c2017-10-03 14:46:45 +02001059 if (s->slowstart <= 0)
1060 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001061
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001062 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001063 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001064
Emeric Brun9f0b4582017-10-23 14:39:51 +02001065 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001066 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001067 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001068 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001069 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001070}
1071
Willy Tarreau8eb77842014-05-21 13:54:57 +02001072/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001073 * isn't in maintenance. The server is registered in a list to postpone the
1074 * counting of the remaining servers on the proxy and tries to grab requests
1075 * from the proxy. Maintenance servers are ignored. It stores the
1076 * <reason> if non-null as the reason for going down or the available data
1077 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001078 * up. Note that it makes use of the trash to build the log strings, so <reason>
1079 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001080 *
1081 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001082 */
Emeric Brun5a133512017-10-19 14:42:30 +02001083void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001084{
1085 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001086
Emeric Brun64cc49c2017-10-03 14:46:45 +02001087 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001088 return;
1089
Emeric Brun52a91d32017-08-31 14:41:55 +02001090 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001091 return;
1092
Emeric Brun52a91d32017-08-31 14:41:55 +02001093 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001094 *s->op_st_chg.reason = 0;
1095 s->op_st_chg.status = -1;
1096 if (reason) {
1097 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1098 }
1099 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001100 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001101 s->op_st_chg.code = check->code;
1102 s->op_st_chg.status = check->status;
1103 s->op_st_chg.duration = check->duration;
1104 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001105
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001106 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001107 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001108
Emeric Brun9f0b4582017-10-23 14:39:51 +02001109 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001110 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001111 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001112 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001113 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001114}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001115
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001116/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1117 * enforce either maint mode or drain mode. It is not allowed to set more than
1118 * one flag at once. The equivalent "inherited" flag is propagated to all
1119 * tracking servers. Maintenance mode disables health checks (but not agent
1120 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001121 * is done. If <cause> is non-null, it will be displayed at the end of the log
1122 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001123 *
1124 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001125 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001126void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001127{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001128 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001129
1130 if (!mode)
1131 return;
1132
1133 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001134 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001135 return;
1136
Emeric Brun52a91d32017-08-31 14:41:55 +02001137 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001138 if (cause)
1139 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1140
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001141 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001142 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001143
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001144 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001145 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1146 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001147 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001148
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001149 /* compute the inherited flag to propagate */
1150 if (mode & SRV_ADMF_MAINT)
1151 mode = SRV_ADMF_IMAINT;
1152 else if (mode & SRV_ADMF_DRAIN)
1153 mode = SRV_ADMF_IDRAIN;
1154
Emeric Brun9f0b4582017-10-23 14:39:51 +02001155 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001156 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001157 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001158 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001159 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001160}
1161
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001162/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1163 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1164 * than one flag at once. The equivalent "inherited" flag is propagated to all
1165 * tracking servers. Leaving maintenance mode re-enables health checks. When
1166 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001167 *
1168 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001169 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001170void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001171{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001172 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001173
1174 if (!mode)
1175 return;
1176
1177 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001178 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001179 return;
1180
Emeric Brun52a91d32017-08-31 14:41:55 +02001181 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001182
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001183 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001184 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001185
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001186 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001187 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1188 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001189 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001190
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001191 if (mode & SRV_ADMF_MAINT)
1192 mode = SRV_ADMF_IMAINT;
1193 else if (mode & SRV_ADMF_DRAIN)
1194 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001195
Emeric Brun9f0b4582017-10-23 14:39:51 +02001196 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001197 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001198 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001199 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001200 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001201}
1202
Willy Tarreau757478e2016-11-03 19:22:19 +01001203/* principle: propagate maint and drain to tracking servers. This is useful
1204 * upon startup so that inherited states are correct.
1205 */
1206static void srv_propagate_admin_state(struct server *srv)
1207{
1208 struct server *srv2;
1209
1210 if (!srv->trackers)
1211 return;
1212
1213 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001214 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001215 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001216 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001217
Emeric Brun52a91d32017-08-31 14:41:55 +02001218 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001219 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001220 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001221 }
1222}
1223
1224/* Compute and propagate the admin states for all servers in proxy <px>.
1225 * Only servers *not* tracking another one are considered, because other
1226 * ones will be handled when the server they track is visited.
1227 */
1228void srv_compute_all_admin_states(struct proxy *px)
1229{
1230 struct server *srv;
1231
1232 for (srv = px->srv; srv; srv = srv->next) {
1233 if (srv->track)
1234 continue;
1235 srv_propagate_admin_state(srv);
1236 }
1237}
1238
Willy Tarreaudff55432012-10-10 17:51:05 +02001239/* Note: must not be declared <const> as its list will be overwritten.
1240 * Please take care of keeping this list alphabetically sorted, doing so helps
1241 * all code contributors.
1242 * Optional keywords are also declared with a NULL ->parse() function so that
1243 * the config parser can report an appropriate error when a known keyword was
1244 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001245 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001246 */
1247static struct srv_kw_list srv_kws = { "ALL", { }, {
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001248 { "backup", srv_parse_backup, 0, 1 }, /* Flag as backup server */
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +01001249 { "cookie", srv_parse_cookie, 1, 1 }, /* Assign a cookie to the server */
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +01001250 { "disabled", srv_parse_disabled, 0, 1 }, /* Start the server in 'disabled' state */
1251 { "enabled", srv_parse_enabled, 0, 1 }, /* Start the server in 'enabled' state */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001252 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
Willy Tarreau9c538e02019-01-23 10:21:49 +01001253 { "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 +01001254 { "namespace", srv_parse_namespace, 1, 1 }, /* Namespace the server socket belongs to (if supported) */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001255 { "no-backup", srv_parse_no_backup, 0, 1 }, /* Flag as non-backup server */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001256 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1 }, /* Disable use of PROXY V1 protocol */
1257 { "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 +02001258 { "no-tfo", srv_parse_no_tfo, 0, 1 }, /* Disable use of TCP Fast Open */
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001259 { "non-stick", srv_parse_non_stick, 0, 1 }, /* Disable stick-table persistence */
Frédéric Lécaille547356e2017-03-15 08:55:39 +01001260 { "observe", srv_parse_observe, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
Olivier Houchard006e3102018-12-10 18:30:32 +01001261 { "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 +01001262 { "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 +02001263 { "proto", srv_parse_proto, 1, 1 }, /* Set the proto to use for all outgoing connections */
Emmanuel Hocdetf643b802018-02-01 15:20:32 +01001264 { "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 +01001265 { "redir", srv_parse_redir, 1, 1 }, /* Enable redirection mode */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001266 { "send-proxy", srv_parse_send_proxy, 0, 1 }, /* Enforce use of PROXY V1 protocol */
1267 { "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 +02001268 { "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 +01001269 { "stick", srv_parse_stick, 0, 1 }, /* Enable stick-table persistence */
Olivier Houchard8d82db72019-07-04 13:34:10 +02001270 { "tfo", srv_parse_tfo, 0, 1 }, /* enable TCP Fast Open of server */
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001271 { "track", srv_parse_track, 1, 1 }, /* Set the current state of the server, tracking another one */
Alexander Liu2a54bb72019-05-22 19:44:48 +08001272 { "socks4", srv_parse_socks4, 1, 1 }, /* Set the socks4 proxy of the server*/
Willy Tarreaudff55432012-10-10 17:51:05 +02001273 { NULL, NULL, 0 },
1274}};
1275
Willy Tarreau0108d902018-11-25 19:14:37 +01001276INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001277
Willy Tarreau004e0452013-11-21 11:22:01 +01001278/* Recomputes the server's eweight based on its state, uweight, the current time,
1279 * and the proxy's algorihtm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001280 * state is automatically disabled if the time is elapsed. If <must_update> is
1281 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001282 *
1283 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001284 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001285void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001286{
1287 struct proxy *px = sv->proxy;
1288 unsigned w;
1289
1290 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1291 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001292 if (sv->next_state == SRV_ST_STARTING)
1293 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001294 }
1295
1296 /* We must take care of not pushing the server to full throttle during slow starts.
1297 * It must also start immediately, at least at the minimal step when leaving maintenance.
1298 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001299 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001300 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1301 else
1302 w = px->lbprm.wdiv;
1303
Emeric Brun52a91d32017-08-31 14:41:55 +02001304 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001305
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001306 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001307 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001308 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001309}
1310
Willy Tarreaubaaee002006-06-26 02:48:02 +02001311/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001312 * Parses weight_str and configures sv accordingly.
1313 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001314 *
1315 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001316 */
1317const char *server_parse_weight_change_request(struct server *sv,
1318 const char *weight_str)
1319{
1320 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001321 long int w;
1322 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001323
1324 px = sv->proxy;
1325
1326 /* if the weight is terminated with '%', it is set relative to
1327 * the initial weight, otherwise it is absolute.
1328 */
1329 if (!*weight_str)
1330 return "Require <weight> or <weight%>.\n";
1331
Simon Hormanb796afa2013-02-12 10:45:53 +09001332 w = strtol(weight_str, &end, 10);
1333 if (end == weight_str)
1334 return "Empty weight string empty or preceded by garbage";
1335 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001336 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001337 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001338 /* Avoid integer overflow */
1339 if (w > 25600)
1340 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001341 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001342 if (w > 256)
1343 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001344 }
1345 else if (w < 0 || w > 256)
1346 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001347 else if (end[0] != '\0')
1348 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001349
1350 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1351 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1352
1353 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001354 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001355
1356 return NULL;
1357}
1358
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001359/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001360 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1361 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001362 * Returns:
1363 * - error string on error
1364 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001365 *
1366 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001367 */
1368const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001369 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001370{
1371 unsigned char ip[INET6_ADDRSTRLEN];
1372
1373 if (inet_pton(AF_INET6, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001374 update_server_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001375 return NULL;
1376 }
1377 if (inet_pton(AF_INET, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001378 update_server_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001379 return NULL;
1380 }
1381
1382 return "Could not understand IP address format.\n";
1383}
1384
Willy Tarreau46b7f532018-08-21 11:54:26 +02001385/*
1386 * Must be called with the server lock held.
1387 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001388const char *server_parse_maxconn_change_request(struct server *sv,
1389 const char *maxconn_str)
1390{
1391 long int v;
1392 char *end;
1393
1394 if (!*maxconn_str)
1395 return "Require <maxconn>.\n";
1396
1397 v = strtol(maxconn_str, &end, 10);
1398 if (end == maxconn_str)
1399 return "maxconn string empty or preceded by garbage";
1400 else if (end[0] != '\0')
1401 return "Trailing garbage in maxconn string";
1402
1403 if (sv->maxconn == sv->minconn) { // static maxconn
1404 sv->maxconn = sv->minconn = v;
1405 } else { // dynamic maxconn
1406 sv->maxconn = v;
1407 }
1408
1409 if (may_dequeue_tasks(sv, sv->proxy))
1410 process_srv_queue(sv);
1411
1412 return NULL;
1413}
1414
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001415#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001416static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1417 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001418{
1419 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001420 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001421 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001422 NULL,
1423 };
1424
1425 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001426 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001427
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001428 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001429}
1430
1431static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1432{
1433 struct sample_expr *expr;
1434
1435 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 +01001436 if (!expr) {
1437 memprintf(err, "error detected while parsing sni expression : %s", *err);
1438 return ERR_ALERT | ERR_FATAL;
1439 }
1440
1441 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1442 memprintf(err, "error detected while parsing sni expression : "
1443 " fetch method '%s' extracts information from '%s', "
1444 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001445 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001446 return ERR_ALERT | ERR_FATAL;
1447 }
1448
1449 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1450 release_sample_expr(newsrv->ssl_ctx.sni);
1451 newsrv->ssl_ctx.sni = expr;
1452
1453 return 0;
1454}
1455#endif
1456
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001457static 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 +01001458{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001459 char *msg = "error encountered while processing ";
1460 char *quote = "'";
1461 char *token = args[cur_arg];
1462
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001463 if (err && *err) {
1464 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001465 msg = *err;
1466 quote = "";
1467 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001468 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001469
1470 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
1471 ha_warning("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1472 file, linenum, args[0], args[1],
1473 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001474 else
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001475 ha_alert("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1476 file, linenum, args[0], args[1],
1477 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001478}
1479
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001480static void srv_conn_src_sport_range_cpy(struct server *srv,
1481 struct server *src)
1482{
1483 int range_sz;
1484
1485 range_sz = src->conn_src.sport_range->size;
1486 if (range_sz > 0) {
1487 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1488 if (srv->conn_src.sport_range != NULL) {
1489 int i;
1490
1491 for (i = 0; i < range_sz; i++) {
1492 srv->conn_src.sport_range->ports[i] =
1493 src->conn_src.sport_range->ports[i];
1494 }
1495 }
1496 }
1497}
1498
1499/*
1500 * Copy <src> server connection source settings to <srv> server everything needed.
1501 */
1502static void srv_conn_src_cpy(struct server *srv, struct server *src)
1503{
1504 srv->conn_src.opts = src->conn_src.opts;
1505 srv->conn_src.source_addr = src->conn_src.source_addr;
1506
1507 /* Source port range copy. */
1508 if (src->conn_src.sport_range != NULL)
1509 srv_conn_src_sport_range_cpy(srv, src);
1510
1511#ifdef CONFIG_HAP_TRANSPARENT
1512 if (src->conn_src.bind_hdr_name != NULL) {
1513 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1514 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1515 }
1516 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1517 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1518#endif
1519 if (src->conn_src.iface_name != NULL)
1520 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1521}
1522
1523/*
1524 * Copy <src> server SSL settings to <srv> server allocating
1525 * everything needed.
1526 */
1527#if defined(USE_OPENSSL)
1528static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1529{
1530 if (src->ssl_ctx.ca_file != NULL)
1531 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1532 if (src->ssl_ctx.crl_file != NULL)
1533 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
1534 if (src->ssl_ctx.client_crt != NULL)
1535 srv->ssl_ctx.client_crt = strdup(src->ssl_ctx.client_crt);
1536
1537 srv->ssl_ctx.verify = src->ssl_ctx.verify;
1538
1539 if (src->ssl_ctx.verify_host != NULL)
1540 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
1541 if (src->ssl_ctx.ciphers != NULL)
1542 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02001543 if (src->ssl_ctx.options)
1544 srv->ssl_ctx.options = src->ssl_ctx.options;
1545 if (src->ssl_ctx.methods.flags)
1546 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
1547 if (src->ssl_ctx.methods.min)
1548 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
1549 if (src->ssl_ctx.methods.max)
1550 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
1551
Willy Tarreau5db847a2019-05-09 14:13:35 +02001552#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02001553 if (src->ssl_ctx.ciphersuites != NULL)
1554 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
1555#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001556 if (src->sni_expr != NULL)
1557 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01001558
1559#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
1560 if (src->ssl_ctx.alpn_str) {
1561 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
1562 if (srv->ssl_ctx.alpn_str) {
1563 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
1564 src->ssl_ctx.alpn_len);
1565 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
1566 }
1567 }
1568#endif
1569#ifdef OPENSSL_NPN_NEGOTIATED
1570 if (src->ssl_ctx.npn_str) {
1571 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
1572 if (srv->ssl_ctx.npn_str) {
1573 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
1574 src->ssl_ctx.npn_len);
1575 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
1576 }
1577 }
1578#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001579}
1580#endif
1581
1582/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001583 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001584 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001585 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001586 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001587static int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001588{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001589 char *hostname_dn;
1590 int hostname_len, hostname_dn_len;
1591
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001592 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001593 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001594
Christopher Faulet67957bd2017-09-27 11:00:59 +02001595 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001596 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001597 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
1598 hostname_dn, trash.size);
1599 if (hostname_dn_len == -1)
1600 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001601
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001602
Christopher Faulet67957bd2017-09-27 11:00:59 +02001603 free(srv->hostname);
1604 free(srv->hostname_dn);
1605 srv->hostname = strdup(hostname);
1606 srv->hostname_dn = strdup(hostname_dn);
1607 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001608 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001609 goto err;
1610
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001611 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001612
1613 err:
Christopher Faulet67957bd2017-09-27 11:00:59 +02001614 free(srv->hostname); srv->hostname = NULL;
1615 free(srv->hostname_dn); srv->hostname_dn = NULL;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001616 return -1;
1617}
1618
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001619/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001620 * Copy <src> server settings to <srv> server allocating
1621 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001622 * This function is not supposed to be called at any time, but only
1623 * during server settings parsing or during server allocations from
1624 * a server template, and just after having calloc()'ed a new server.
1625 * So, <src> may only be a default server (when parsing server settings)
1626 * or a server template (during server allocations from a server template).
1627 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
1628 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001629 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001630static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001631{
1632 /* Connection source settings copy */
1633 srv_conn_src_cpy(srv, src);
1634
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001635 if (srv_tmpl) {
1636 srv->addr = src->addr;
1637 srv->svc_port = src->svc_port;
1638 }
1639
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001640 srv->pp_opts = src->pp_opts;
1641 if (src->rdr_pfx != NULL) {
1642 srv->rdr_pfx = strdup(src->rdr_pfx);
1643 srv->rdr_len = src->rdr_len;
1644 }
1645 if (src->cookie != NULL) {
1646 srv->cookie = strdup(src->cookie);
1647 srv->cklen = src->cklen;
1648 }
1649 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01001650 srv->check.addr = src->check.addr;
1651 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001652 srv->check.use_ssl = src->check.use_ssl;
1653 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01001654 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01001655 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05001656 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001657 /* Note: 'flags' field has potentially been already initialized. */
1658 srv->flags |= src->flags;
1659 srv->do_check = src->do_check;
1660 srv->do_agent = src->do_agent;
1661 if (srv->check.port)
1662 srv->flags |= SRV_F_CHECKPORT;
1663 srv->check.inter = src->check.inter;
1664 srv->check.fastinter = src->check.fastinter;
1665 srv->check.downinter = src->check.downinter;
1666 srv->agent.use_ssl = src->agent.use_ssl;
1667 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001668
1669 if (src->agent.tcpcheck_rules) {
1670 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
1671 if (srv->agent.tcpcheck_rules) {
1672 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
1673 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
1674 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
1675 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
1676 &src->agent.tcpcheck_rules->preset_vars);
1677 }
1678 }
1679
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001680 srv->agent.inter = src->agent.inter;
1681 srv->agent.fastinter = src->agent.fastinter;
1682 srv->agent.downinter = src->agent.downinter;
1683 srv->maxqueue = src->maxqueue;
1684 srv->minconn = src->minconn;
1685 srv->maxconn = src->maxconn;
1686 srv->slowstart = src->slowstart;
1687 srv->observe = src->observe;
1688 srv->onerror = src->onerror;
1689 srv->onmarkeddown = src->onmarkeddown;
1690 srv->onmarkedup = src->onmarkedup;
1691 if (src->trackit != NULL)
1692 srv->trackit = strdup(src->trackit);
1693 srv->consecutive_errors_limit = src->consecutive_errors_limit;
1694 srv->uweight = srv->iweight = src->iweight;
1695
1696 srv->check.send_proxy = src->check.send_proxy;
1697 /* health: up, but will fall down at first failure */
1698 srv->check.rise = srv->check.health = src->check.rise;
1699 srv->check.fall = src->check.fall;
1700
1701 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001702 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
1703 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
1704 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001705 srv->check.state |= CHK_ST_PAUSED;
1706 srv->check.health = 0;
1707 }
1708
1709 /* health: up but will fall down at first failure */
1710 srv->agent.rise = srv->agent.health = src->agent.rise;
1711 srv->agent.fall = src->agent.fall;
1712
1713 if (src->resolvers_id != NULL)
1714 srv->resolvers_id = strdup(src->resolvers_id);
1715 srv->dns_opts.family_prio = src->dns_opts.family_prio;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001716 srv->dns_opts.accept_duplicate_ip = src->dns_opts.accept_duplicate_ip;
Daniel Corbettf8716912019-11-17 09:48:56 -05001717 srv->dns_opts.ignore_weight = src->dns_opts.ignore_weight;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001718 if (srv->dns_opts.family_prio == AF_UNSPEC)
1719 srv->dns_opts.family_prio = AF_INET6;
1720 memcpy(srv->dns_opts.pref_net,
1721 src->dns_opts.pref_net,
1722 sizeof srv->dns_opts.pref_net);
1723 srv->dns_opts.pref_net_nb = src->dns_opts.pref_net_nb;
1724
1725 srv->init_addr_methods = src->init_addr_methods;
1726 srv->init_addr = src->init_addr;
1727#if defined(USE_OPENSSL)
1728 srv_ssl_settings_cpy(srv, src);
1729#endif
1730#ifdef TCP_USER_TIMEOUT
1731 srv->tcp_ut = src->tcp_ut;
1732#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001733 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001734 srv->pool_purge_delay = src->pool_purge_delay;
Olivier Houchard006e3102018-12-10 18:30:32 +01001735 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01001736 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001737
Olivier Houchard8da5f982017-08-04 18:35:36 +02001738 if (srv_tmpl)
1739 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001740
1741 srv->check.via_socks4 = src->check.via_socks4;
1742 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001743}
1744
William Lallemand313bfd12018-10-26 14:47:32 +02001745struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001746{
1747 struct server *srv;
1748
1749 srv = calloc(1, sizeof *srv);
1750 if (!srv)
1751 return NULL;
1752
1753 srv->obj_type = OBJ_TYPE_SERVER;
1754 srv->proxy = proxy;
1755 LIST_INIT(&srv->actconns);
Patrick Hemmer0355dab2018-05-11 12:52:31 -04001756 srv->pendconns = EB_ROOT;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001757
Emeric Brun52a91d32017-08-31 14:41:55 +02001758 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001759 srv->last_change = now.tv_sec;
1760
Christopher Faulet38290462020-04-21 11:46:40 +02001761 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001762 srv->check.status = HCHK_STATUS_INI;
1763 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01001764 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02001765 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001766
Christopher Faulet38290462020-04-21 11:46:40 +02001767 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001768 srv->agent.status = HCHK_STATUS_INI;
1769 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01001770 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001771 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
1772
Willy Tarreau975b1552019-06-06 16:25:55 +02001773 /* please don't put default server settings here, they are set in
1774 * init_default_instance().
1775 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001776 return srv;
1777}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001778
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001779#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1780static int server_sni_expr_init(const char *file, int linenum, char **args, int cur_arg,
1781 struct server *srv, struct proxy *proxy)
1782{
1783 int ret;
1784 char *err = NULL;
1785
1786 if (!srv->sni_expr)
1787 return 0;
1788
1789 ret = server_parse_sni_expr(srv, proxy, &err);
1790 if (!ret)
1791 return 0;
1792
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001793 display_parser_err(file, linenum, args, cur_arg, ret, &err);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001794 free(err);
1795
1796 return ret;
1797}
1798#endif
1799
1800/*
1801 * Server initializations finalization.
1802 * Initialize health check, agent check and SNI expression if enabled.
1803 * Must not be called for a default server instance.
1804 */
1805static int server_finalize_init(const char *file, int linenum, char **args, int cur_arg,
1806 struct server *srv, struct proxy *px)
1807{
1808 int ret;
1809
Christopher Faulet8892e5d2020-03-26 19:48:20 +01001810 if (srv->do_check && srv->trackit) {
1811 ha_alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1812 file, linenum);
1813 return ERR_ALERT | ERR_FATAL;
1814 }
1815
1816 if (srv->do_agent && !srv->agent.port) {
1817 ha_alert("parsing [%s:%d] : server %s does not have agent port. Agent check has been disabled.\n",
1818 file, linenum, srv->id);
1819 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001820 }
1821
1822#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1823 if ((ret = server_sni_expr_init(file, linenum, args, cur_arg, srv, px)) != 0)
1824 return ret;
1825#endif
1826
1827 if (srv->flags & SRV_F_BACKUP)
1828 px->srv_bck++;
1829 else
1830 px->srv_act++;
1831 srv_lb_commit_status(srv);
1832
1833 return 0;
1834}
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001835
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001836/*
1837 * Parse as much as possible such a range string argument: low[-high]
1838 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
1839 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
1840 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
1841 * Returns 0 if succeeded, -1 if not.
1842 */
1843static int srv_tmpl_parse_range(struct server *srv, const char *arg, int *nb_low, int *nb_high)
1844{
1845 char *nb_high_arg;
1846
1847 *nb_high = 0;
1848 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001849 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001850
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001851 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001852 *nb_high_arg++ = '\0';
1853 *nb_high = atoi(nb_high_arg);
1854 }
1855 else {
1856 *nb_high += *nb_low;
1857 *nb_low = 1;
1858 }
1859
1860 if (*nb_low < 0 || *nb_high < *nb_low)
1861 return -1;
1862
1863 return 0;
1864}
1865
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001866static inline void srv_set_id_from_prefix(struct server *srv, const char *prefix, int nb)
1867{
1868 chunk_printf(&trash, "%s%d", prefix, nb);
1869 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001870 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001871}
1872
1873/*
1874 * Initialize as much as possible servers from <srv> server template.
1875 * Note that a server template is a special server with
1876 * a few different parameters than a server which has
1877 * been parsed mostly the same way as a server.
Joseph Herlant44466822018-11-15 08:57:51 -08001878 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001879 * 'srv' template included.
1880 */
1881static int server_template_init(struct server *srv, struct proxy *px)
1882{
1883 int i;
1884 struct server *newsrv;
1885
1886 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 +02001887 newsrv = new_server(px);
1888 if (!newsrv)
1889 goto err;
1890
1891 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001892 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001893#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1894 if (newsrv->sni_expr) {
1895 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
1896 if (!newsrv->ssl_ctx.sni)
1897 goto err;
1898 }
1899#endif
1900 /* Set this new server ID. */
1901 srv_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
1902
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001903 /* Linked backwards first. This will be restablished after parsing. */
1904 newsrv->next = px->srv;
1905 px->srv = newsrv;
1906 }
1907 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1908
1909 return i - srv->tmpl_info.nb_low;
1910
1911 err:
1912 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1913 if (newsrv) {
1914#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1915 release_sample_expr(newsrv->ssl_ctx.sni);
1916#endif
1917 free_check(&newsrv->agent);
1918 free_check(&newsrv->check);
1919 }
1920 free(newsrv);
1921 return i - srv->tmpl_info.nb_low;
1922}
1923
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +02001924int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy, struct proxy *defproxy, int parse_addr, int in_peers_section)
Willy Tarreau272adea2014-03-31 10:39:59 +02001925{
1926 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001927 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001928 char *errmsg = NULL;
1929 int err_code = 0;
1930 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +02001931 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001932
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001933 if (!strcmp(args[0], "server") ||
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02001934 !strcmp(args[0], "peer") ||
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001935 !strcmp(args[0], "default-server") ||
1936 !strcmp(args[0], "server-template")) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001937 int cur_arg;
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001938 int defsrv = (*args[0] == 'd');
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02001939 int srv = !defsrv && (*args[0] == 'p' || !strcmp(args[0], "server"));
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001940 int srv_tmpl = !defsrv && !srv;
1941 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02001942
1943 if (!defsrv && curproxy == defproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001944 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001945 err_code |= ERR_ALERT | ERR_FATAL;
1946 goto out;
1947 }
1948 else if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL))
Olivier Houchard306e6532018-07-24 16:48:59 +02001949 err_code |= ERR_WARN;
Willy Tarreau272adea2014-03-31 10:39:59 +02001950
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001951 /* There is no mandatory first arguments for default server. */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01001952 if (srv && parse_addr) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001953 if (!*args[2]) {
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +02001954 if (in_peers_section) {
1955 return 0;
1956 }
1957 else {
1958 /* 'server' line number of argument check. */
1959 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1960 file, linenum, args[0]);
1961 err_code |= ERR_ALERT | ERR_FATAL;
1962 goto out;
1963 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001964 }
1965
1966 err = invalid_char(args[1]);
1967 }
1968 else if (srv_tmpl) {
1969 if (!*args[3]) {
1970 /* 'server-template' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001971 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 +02001972 file, linenum, args[0]);
1973 err_code |= ERR_ALERT | ERR_FATAL;
1974 goto out;
1975 }
1976
1977 err = invalid_prefix_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001978 }
1979
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001980 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001981 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 +02001982 file, linenum, *err, args[0], srv ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001983 err_code |= ERR_ALERT | ERR_FATAL;
1984 goto out;
1985 }
1986
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001987 cur_arg = 2;
1988 if (srv_tmpl) {
1989 /* Parse server-template <nb | range> arg. */
1990 if (srv_tmpl_parse_range(newsrv, args[cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001991 ha_alert("parsing [%s:%d] : Wrong %s number or range arg '%s'.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001992 file, linenum, args[0], args[cur_arg]);
1993 err_code |= ERR_ALERT | ERR_FATAL;
1994 goto out;
1995 }
1996 cur_arg++;
1997 }
1998
Willy Tarreau272adea2014-03-31 10:39:59 +02001999 if (!defsrv) {
2000 struct sockaddr_storage *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002001 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002002 struct protocol *proto;
2003
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002004 newsrv = new_server(curproxy);
2005 if (!newsrv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002006 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Willy Tarreau272adea2014-03-31 10:39:59 +02002007 err_code |= ERR_ALERT | ERR_ABORT;
2008 goto out;
2009 }
2010
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002011 if (srv_tmpl) {
2012 newsrv->tmpl_info.nb_low = tmpl_range_low;
2013 newsrv->tmpl_info.nb_high = tmpl_range_high;
2014 }
2015
Willy Tarreau272adea2014-03-31 10:39:59 +02002016 /* the servers are linked backwards first */
2017 newsrv->next = curproxy->srv;
2018 curproxy->srv = newsrv;
Willy Tarreau272adea2014-03-31 10:39:59 +02002019 newsrv->conf.file = strdup(file);
2020 newsrv->conf.line = linenum;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002021 /* Note: for a server template, its id is its prefix.
2022 * This is a temporary id which will be used for server allocations to come
2023 * after parsing.
2024 */
2025 if (srv)
2026 newsrv->id = strdup(args[1]);
2027 else
2028 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002029
2030 /* several ways to check the port component :
2031 * - IP => port=+0, relative (IPv4 only)
2032 * - IP: => port=+0, relative
2033 * - IP:N => port=N, absolute
2034 * - IP:+N => port=+N, relative
2035 * - IP:-N => port=-N, relative
2036 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002037 if (!parse_addr)
2038 goto skip_addr;
2039
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002040 sk = str2sa_range(args[cur_arg], &port, &port1, &port2, &errmsg, NULL, &fqdn, 0);
Willy Tarreau272adea2014-03-31 10:39:59 +02002041 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002042 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau272adea2014-03-31 10:39:59 +02002043 err_code |= ERR_ALERT | ERR_FATAL;
2044 goto out;
2045 }
2046
2047 proto = protocol_by_family(sk->ss_family);
Willy Tarreau9698f4b2017-01-06 18:42:57 +01002048 if (!fqdn && (!proto || !proto->connect)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002049 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002050 file, linenum, args[0], args[1]);
2051 err_code |= ERR_ALERT | ERR_FATAL;
2052 goto out;
2053 }
2054
2055 if (!port1 || !port2) {
2056 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +02002057 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +02002058 }
2059 else if (port1 != port2) {
2060 /* port range */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002061 ha_alert("parsing [%s:%d] : '%s %s' : port ranges are not allowed in '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002062 file, linenum, args[0], args[1], args[2]);
2063 err_code |= ERR_ALERT | ERR_FATAL;
2064 goto out;
2065 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002066
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002067 /* save hostname and create associated name resolution */
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002068 if (fqdn) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002069 if (fqdn[0] == '_') { /* SRV record */
Olivier Houchard8da5f982017-08-04 18:35:36 +02002070 /* Check if a SRV request already exists, and if not, create it */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002071 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2072 newsrv->srvrq = new_dns_srvrq(newsrv, fqdn);
2073 if (newsrv->srvrq == NULL) {
Olivier Houchard8da5f982017-08-04 18:35:36 +02002074 err_code |= ERR_ALERT | ERR_FATAL;
2075 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002076 }
2077 }
2078 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002079 ha_alert("parsing [%s:%d] : Can't create DNS resolution for server '%s'\n",
Christopher Faulet67957bd2017-09-27 11:00:59 +02002080 file, linenum, newsrv->id);
2081 err_code |= ERR_ALERT | ERR_FATAL;
2082 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002083 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002084 }
2085
Willy Tarreau272adea2014-03-31 10:39:59 +02002086 newsrv->addr = *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002087 newsrv->svc_port = port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002088
Olivier Houchard8da5f982017-08-04 18:35:36 +02002089 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002090 ha_alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002091 file, linenum, newsrv->addr.ss_family, args[cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002092 err_code |= ERR_ALERT | ERR_FATAL;
2093 goto out;
2094 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002095
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002096 cur_arg++;
2097 skip_addr:
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002098 /* Copy default server settings to new server settings. */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002099 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002100 HA_SPIN_INIT(&newsrv->lock);
Willy Tarreau272adea2014-03-31 10:39:59 +02002101 } else {
2102 newsrv = &curproxy->defsrv;
2103 cur_arg = 1;
Thierry Fournierada34842016-02-17 21:25:09 +01002104 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002105 newsrv->dns_opts.accept_duplicate_ip = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002106 }
2107
2108 while (*args[cur_arg]) {
Christopher Fauletcbba66c2020-04-06 14:26:30 +02002109 if (!strcmp(args[cur_arg], "init-addr")) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002110 char *p, *end;
2111 int done;
Willy Tarreau4310d362016-11-02 15:05:56 +01002112 struct sockaddr_storage sa;
Baptiste Assmann25938272016-09-21 20:26:16 +02002113
2114 newsrv->init_addr_methods = 0;
2115 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
2116
2117 for (p = args[cur_arg + 1]; *p; p = end) {
2118 /* cut on next comma */
2119 for (end = p; *end && *end != ','; end++);
2120 if (*end)
2121 *(end++) = 0;
2122
Willy Tarreau4310d362016-11-02 15:05:56 +01002123 memset(&sa, 0, sizeof(sa));
Baptiste Assmann25938272016-09-21 20:26:16 +02002124 if (!strcmp(p, "libc")) {
2125 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
2126 }
2127 else if (!strcmp(p, "last")) {
2128 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
2129 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01002130 else if (!strcmp(p, "none")) {
2131 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
2132 }
Willy Tarreau4310d362016-11-02 15:05:56 +01002133 else if (str2ip2(p, &sa, 0)) {
2134 if (is_addr(&newsrv->init_addr)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002135 ha_alert("parsing [%s:%d]: '%s' : initial address already specified, cannot add '%s'.\n",
Willy Tarreau4310d362016-11-02 15:05:56 +01002136 file, linenum, args[cur_arg], p);
2137 err_code |= ERR_ALERT | ERR_FATAL;
2138 goto out;
2139 }
2140 newsrv->init_addr = sa;
2141 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
2142 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002143 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002144 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 +02002145 file, linenum, args[cur_arg], p);
2146 err_code |= ERR_ALERT | ERR_FATAL;
2147 goto out;
2148 }
2149 if (!done) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002150 ha_alert("parsing [%s:%d]: '%s' : too many init-addr methods when trying to add '%s'\n",
Baptiste Assmann25938272016-09-21 20:26:16 +02002151 file, linenum, args[cur_arg], p);
2152 err_code |= ERR_ALERT | ERR_FATAL;
2153 goto out;
2154 }
2155 }
2156 cur_arg += 2;
2157 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002158 else if (!strcmp(args[cur_arg], "resolvers")) {
Frédéric Lécailledaa2fe62017-04-20 12:17:50 +02002159 free(newsrv->resolvers_id);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002160 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
2161 cur_arg += 2;
2162 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002163 else if (!strcmp(args[cur_arg], "resolve-opts")) {
2164 char *p, *end;
2165
2166 for (p = args[cur_arg + 1]; *p; p = end) {
2167 /* cut on next comma */
2168 for (end = p; *end && *end != ','; end++);
2169 if (*end)
2170 *(end++) = 0;
2171
2172 if (!strcmp(p, "allow-dup-ip")) {
2173 newsrv->dns_opts.accept_duplicate_ip = 1;
2174 }
Daniel Corbettf8716912019-11-17 09:48:56 -05002175 else if (!strcmp(p, "ignore-weight")) {
2176 newsrv->dns_opts.ignore_weight = 1;
2177 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002178 else if (!strcmp(p, "prevent-dup-ip")) {
2179 newsrv->dns_opts.accept_duplicate_ip = 0;
2180 }
2181 else {
Daniel Corbettf8716912019-11-17 09:48:56 -05002182 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 +02002183 file, linenum, args[cur_arg], p);
2184 err_code |= ERR_ALERT | ERR_FATAL;
2185 goto out;
2186 }
2187 }
2188
2189 cur_arg += 2;
2190 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002191 else if (!strcmp(args[cur_arg], "resolve-prefer")) {
2192 if (!strcmp(args[cur_arg + 1], "ipv4"))
Thierry Fournierada34842016-02-17 21:25:09 +01002193 newsrv->dns_opts.family_prio = AF_INET;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002194 else if (!strcmp(args[cur_arg + 1], "ipv6"))
Thierry Fournierada34842016-02-17 21:25:09 +01002195 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002196 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002197 ha_alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002198 file, linenum, args[cur_arg]);
2199 err_code |= ERR_ALERT | ERR_FATAL;
2200 goto out;
2201 }
2202 cur_arg += 2;
2203 }
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002204 else if (!strcmp(args[cur_arg], "resolve-net")) {
2205 char *p, *e;
2206 unsigned char mask;
2207 struct dns_options *opt;
2208
2209 if (!args[cur_arg + 1] || args[cur_arg + 1][0] == '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002210 ha_alert("parsing [%s:%d]: '%s' expects a list of networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002211 file, linenum, args[cur_arg]);
2212 err_code |= ERR_ALERT | ERR_FATAL;
2213 goto out;
2214 }
2215
2216 opt = &newsrv->dns_opts;
2217
2218 /* Split arguments by comma, and convert it from ipv4 or ipv6
2219 * string network in in_addr or in6_addr.
2220 */
2221 p = args[cur_arg + 1];
2222 e = p;
2223 while (*p != '\0') {
Joseph Herlant44466822018-11-15 08:57:51 -08002224 /* If no room available, return error. */
David Carlierd10025c2016-04-08 10:26:44 +01002225 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002226 ha_alert("parsing [%s:%d]: '%s' exceed %d networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002227 file, linenum, args[cur_arg], SRV_MAX_PREF_NET);
2228 err_code |= ERR_ALERT | ERR_FATAL;
2229 goto out;
2230 }
2231 /* look for end or comma. */
2232 while (*e != ',' && *e != '\0')
2233 e++;
2234 if (*e == ',') {
2235 *e = '\0';
2236 e++;
2237 }
2238 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
2239 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
2240 /* Try to convert input string from ipv4 or ipv6 network. */
2241 opt->pref_net[opt->pref_net_nb].family = AF_INET;
2242 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
2243 &mask)) {
2244 /* Try to convert input string from ipv6 network. */
2245 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
2246 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
2247 } else {
2248 /* All network conversions fail, retrun error. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002249 ha_alert("parsing [%s:%d]: '%s': invalid network '%s'.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002250 file, linenum, args[cur_arg], p);
2251 err_code |= ERR_ALERT | ERR_FATAL;
2252 goto out;
2253 }
2254 opt->pref_net_nb++;
2255 p = e;
2256 }
2257
2258 cur_arg += 2;
2259 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002260 else if (!strcmp(args[cur_arg], "weight")) {
2261 int w;
2262 w = atol(args[cur_arg + 1]);
2263 if (w < 0 || w > SRV_UWGHT_MAX) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002264 ha_alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002265 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
2266 err_code |= ERR_ALERT | ERR_FATAL;
2267 goto out;
2268 }
2269 newsrv->uweight = newsrv->iweight = w;
2270 cur_arg += 2;
2271 }
2272 else if (!strcmp(args[cur_arg], "minconn")) {
2273 newsrv->minconn = atol(args[cur_arg + 1]);
2274 cur_arg += 2;
2275 }
2276 else if (!strcmp(args[cur_arg], "maxconn")) {
2277 newsrv->maxconn = atol(args[cur_arg + 1]);
2278 cur_arg += 2;
2279 }
2280 else if (!strcmp(args[cur_arg], "maxqueue")) {
2281 newsrv->maxqueue = atol(args[cur_arg + 1]);
2282 cur_arg += 2;
2283 }
2284 else if (!strcmp(args[cur_arg], "slowstart")) {
2285 /* slowstart is stored in seconds */
2286 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02002287
2288 if (err == PARSE_TIME_OVER) {
2289 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).\n",
2290 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2291 err_code |= ERR_ALERT | ERR_FATAL;
2292 goto out;
2293 }
2294 else if (err == PARSE_TIME_UNDER) {
2295 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.\n",
2296 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2297 err_code |= ERR_ALERT | ERR_FATAL;
2298 goto out;
2299 }
2300 else if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002301 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002302 file, linenum, *err, newsrv->id);
2303 err_code |= ERR_ALERT | ERR_FATAL;
2304 goto out;
2305 }
2306 newsrv->slowstart = (val + 999) / 1000;
2307 cur_arg += 2;
2308 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002309 else if (!strcmp(args[cur_arg], "on-error")) {
2310 if (!strcmp(args[cur_arg + 1], "fastinter"))
2311 newsrv->onerror = HANA_ONERR_FASTINTER;
2312 else if (!strcmp(args[cur_arg + 1], "fail-check"))
2313 newsrv->onerror = HANA_ONERR_FAILCHK;
2314 else if (!strcmp(args[cur_arg + 1], "sudden-death"))
2315 newsrv->onerror = HANA_ONERR_SUDDTH;
2316 else if (!strcmp(args[cur_arg + 1], "mark-down"))
2317 newsrv->onerror = HANA_ONERR_MARKDWN;
2318 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002319 ha_alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
Willy Tarreau272adea2014-03-31 10:39:59 +02002320 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
2321 file, linenum, args[cur_arg], args[cur_arg + 1]);
2322 err_code |= ERR_ALERT | ERR_FATAL;
2323 goto out;
2324 }
2325
2326 cur_arg += 2;
2327 }
2328 else if (!strcmp(args[cur_arg], "on-marked-down")) {
2329 if (!strcmp(args[cur_arg + 1], "shutdown-sessions"))
2330 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
2331 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002332 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002333 file, linenum, args[cur_arg], args[cur_arg + 1]);
2334 err_code |= ERR_ALERT | ERR_FATAL;
2335 goto out;
2336 }
2337
2338 cur_arg += 2;
2339 }
2340 else if (!strcmp(args[cur_arg], "on-marked-up")) {
2341 if (!strcmp(args[cur_arg + 1], "shutdown-backup-sessions"))
2342 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
2343 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002344 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002345 file, linenum, args[cur_arg], args[cur_arg + 1]);
2346 err_code |= ERR_ALERT | ERR_FATAL;
2347 goto out;
2348 }
2349
2350 cur_arg += 2;
2351 }
2352 else if (!strcmp(args[cur_arg], "error-limit")) {
2353 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002354 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002355 file, linenum, args[cur_arg]);
2356 err_code |= ERR_ALERT | ERR_FATAL;
2357 goto out;
2358 }
2359
2360 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
2361
2362 if (newsrv->consecutive_errors_limit <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002363 ha_alert("parsing [%s:%d]: %s has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002364 file, linenum, args[cur_arg]);
2365 err_code |= ERR_ALERT | ERR_FATAL;
2366 goto out;
2367 }
2368 cur_arg += 2;
2369 }
Frédéric Lécaille8d083ed2017-04-14 15:19:56 +02002370 else if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside: needs "source" first */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002371 ha_alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002372 file, linenum, "usesrc", "source");
2373 err_code |= ERR_ALERT | ERR_FATAL;
2374 goto out;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002375 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002376 else {
2377 static int srv_dumped;
2378 struct srv_kw *kw;
2379 char *err;
2380
2381 kw = srv_find_kw(args[cur_arg]);
2382 if (kw) {
2383 char *err = NULL;
2384 int code;
2385
2386 if (!kw->parse) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002387 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 +02002388 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002389 if (kw->skip != -1)
2390 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002391 err_code |= ERR_ALERT | ERR_FATAL;
2392 goto out;
2393 }
2394
2395 if (defsrv && !kw->default_ok) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002396 ha_alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002397 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002398 if (kw->skip != -1)
2399 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002400 err_code |= ERR_ALERT;
2401 continue;
2402 }
2403
2404 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
2405 err_code |= code;
2406
2407 if (code) {
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002408 display_parser_err(file, linenum, args, cur_arg, code, &err);
Willy Tarreau272adea2014-03-31 10:39:59 +02002409 if (code & ERR_FATAL) {
2410 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002411 if (kw->skip != -1)
2412 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002413 goto out;
2414 }
2415 }
2416 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002417 if (kw->skip != -1)
2418 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002419 continue;
2420 }
2421
2422 err = NULL;
2423 if (!srv_dumped) {
2424 srv_dump_kws(&err);
2425 indent_msg(&err, 4);
2426 srv_dumped = 1;
2427 }
2428
Christopher Faulet767a84b2017-11-24 16:50:31 +01002429 ha_alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002430 file, linenum, args[0], args[1], args[cur_arg],
2431 err ? " Registered keywords :" : "", err ? err : "");
2432 free(err);
2433
2434 err_code |= ERR_ALERT | ERR_FATAL;
2435 goto out;
2436 }
2437 }
2438
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002439 if (!defsrv)
2440 err_code |= server_finalize_init(file, linenum, args, cur_arg, newsrv, curproxy);
2441 if (err_code & ERR_FATAL)
2442 goto out;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002443 if (srv_tmpl)
2444 server_template_init(newsrv, curproxy);
Willy Tarreau272adea2014-03-31 10:39:59 +02002445 }
Willy Tarreau07101d52015-09-08 16:16:35 +02002446 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002447 return 0;
2448
2449 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02002450 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002451 free(errmsg);
2452 return err_code;
2453}
2454
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002455/* Returns a pointer to the first server matching either id <id>.
2456 * NULL is returned if no match is found.
2457 * the lookup is performed in the backend <bk>
2458 */
2459struct server *server_find_by_id(struct proxy *bk, int id)
2460{
2461 struct eb32_node *eb32;
2462 struct server *curserver;
2463
2464 if (!bk || (id ==0))
2465 return NULL;
2466
2467 /* <bk> has no backend capabilities, so it can't have a server */
2468 if (!(bk->cap & PR_CAP_BE))
2469 return NULL;
2470
2471 curserver = NULL;
2472
2473 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2474 if (eb32)
2475 curserver = container_of(eb32, struct server, conf.id);
2476
2477 return curserver;
2478}
2479
2480/* Returns a pointer to the first server matching either name <name>, or id
2481 * if <name> starts with a '#'. NULL is returned if no match is found.
2482 * the lookup is performed in the backend <bk>
2483 */
2484struct server *server_find_by_name(struct proxy *bk, const char *name)
2485{
2486 struct server *curserver;
2487
2488 if (!bk || !name)
2489 return NULL;
2490
2491 /* <bk> has no backend capabilities, so it can't have a server */
2492 if (!(bk->cap & PR_CAP_BE))
2493 return NULL;
2494
2495 curserver = NULL;
2496 if (*name == '#') {
2497 curserver = server_find_by_id(bk, atoi(name + 1));
2498 if (curserver)
2499 return curserver;
2500 }
2501 else {
2502 curserver = bk->srv;
2503
2504 while (curserver && (strcmp(curserver->id, name) != 0))
2505 curserver = curserver->next;
2506
2507 if (curserver)
2508 return curserver;
2509 }
2510
2511 return NULL;
2512}
2513
2514struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2515{
2516 struct server *byname;
2517 struct server *byid;
2518
2519 if (!name && !id)
2520 return NULL;
2521
2522 if (diff)
2523 *diff = 0;
2524
2525 byname = byid = NULL;
2526
2527 if (name) {
2528 byname = server_find_by_name(bk, name);
2529 if (byname && (!id || byname->puid == id))
2530 return byname;
2531 }
2532
2533 /* remaining possibilities :
2534 * - name not set
2535 * - name set but not found
2536 * - name found but ID doesn't match
2537 */
2538 if (id) {
2539 byid = server_find_by_id(bk, id);
2540 if (byid) {
2541 if (byname) {
2542 /* use id only if forced by configuration */
2543 if (byid->flags & SRV_F_FORCED_ID) {
2544 if (diff)
2545 *diff |= 2;
2546 return byid;
2547 }
2548 else {
2549 if (diff)
2550 *diff |= 1;
2551 return byname;
2552 }
2553 }
2554
2555 /* remaining possibilities:
2556 * - name not set
2557 * - name set but not found
2558 */
2559 if (name && diff)
2560 *diff |= 2;
2561 return byid;
2562 }
2563
2564 /* id bot found */
2565 if (byname) {
2566 if (diff)
2567 *diff |= 1;
2568 return byname;
2569 }
2570 }
2571
2572 return NULL;
2573}
2574
Willy Tarreau46b7f532018-08-21 11:54:26 +02002575/* Update a server state using the parameters available in the params list.
2576 *
2577 * Grabs the server lock during operation.
2578 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002579static void srv_update_state(struct server *srv, int version, char **params)
2580{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002581 char *p;
Willy Tarreau83061a82018-07-13 11:56:34 +02002582 struct buffer *msg;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002583
2584 /* fields since version 1
2585 * and common to all other upcoming versions
2586 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002587 enum srv_state srv_op_state;
2588 enum srv_admin srv_admin_state;
2589 unsigned srv_uweight, srv_iweight;
2590 unsigned long srv_last_time_change;
2591 short srv_check_status;
2592 enum chk_result srv_check_result;
2593 int srv_check_health;
2594 int srv_check_state, srv_agent_state;
2595 int bk_f_forced_id;
2596 int srv_f_forced_id;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002597 int fqdn_set_by_cli;
2598 const char *fqdn;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002599 const char *port_str;
2600 unsigned int port;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002601 char *srvrecord;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002602
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002603 fqdn = NULL;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002604 port = 0;
Willy Tarreau31138fa2015-09-29 18:38:47 +02002605 msg = get_trash_chunk();
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002606 switch (version) {
2607 case 1:
2608 /*
2609 * now we can proceed with server's state update:
2610 * srv_addr: params[0]
2611 * srv_op_state: params[1]
2612 * srv_admin_state: params[2]
2613 * srv_uweight: params[3]
2614 * srv_iweight: params[4]
2615 * srv_last_time_change: params[5]
2616 * srv_check_status: params[6]
2617 * srv_check_result: params[7]
2618 * srv_check_health: params[8]
2619 * srv_check_state: params[9]
2620 * srv_agent_state: params[10]
2621 * bk_f_forced_id: params[11]
2622 * srv_f_forced_id: params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002623 * srv_fqdn: params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02002624 * srv_port: params[14]
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002625 * srvrecord: params[15]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002626 */
2627
2628 /* validating srv_op_state */
2629 p = NULL;
2630 errno = 0;
2631 srv_op_state = strtol(params[1], &p, 10);
2632 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
2633 (srv_op_state != SRV_ST_STOPPED &&
2634 srv_op_state != SRV_ST_STARTING &&
2635 srv_op_state != SRV_ST_RUNNING &&
2636 srv_op_state != SRV_ST_STOPPING)) {
2637 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
2638 }
2639
2640 /* validating srv_admin_state */
2641 p = NULL;
2642 errno = 0;
2643 srv_admin_state = strtol(params[2], &p, 10);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002644 fqdn_set_by_cli = !!(srv_admin_state & SRV_ADMF_HMAINT);
Willy Tarreau757478e2016-11-03 19:22:19 +01002645
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002646 /* inherited statuses will be recomputed later.
2647 * Also disable SRV_ADMF_HMAINT flag (set from stats socket fqdn).
2648 */
2649 srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_HMAINT;
Willy Tarreau757478e2016-11-03 19:22:19 +01002650
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002651 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
2652 (srv_admin_state != 0 &&
2653 srv_admin_state != SRV_ADMF_FMAINT &&
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002654 srv_admin_state != SRV_ADMF_CMAINT &&
2655 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
Willy Tarreaue1bde142016-11-03 18:33:25 +01002656 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FDRAIN) &&
Willy Tarreau757478e2016-11-03 19:22:19 +01002657 srv_admin_state != SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002658 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
2659 }
2660
2661 /* validating srv_uweight */
2662 p = NULL;
2663 errno = 0;
2664 srv_uweight = strtol(params[3], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002665 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002666 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
2667
2668 /* validating srv_iweight */
2669 p = NULL;
2670 errno = 0;
2671 srv_iweight = strtol(params[4], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002672 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002673 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
2674
2675 /* validating srv_last_time_change */
2676 p = NULL;
2677 errno = 0;
2678 srv_last_time_change = strtol(params[5], &p, 10);
2679 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2680 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
2681
2682 /* validating srv_check_status */
2683 p = NULL;
2684 errno = 0;
2685 srv_check_status = strtol(params[6], &p, 10);
2686 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2687 (srv_check_status >= HCHK_STATUS_SIZE))
2688 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
2689
2690 /* validating srv_check_result */
2691 p = NULL;
2692 errno = 0;
2693 srv_check_result = strtol(params[7], &p, 10);
2694 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2695 (srv_check_result != CHK_RES_UNKNOWN &&
2696 srv_check_result != CHK_RES_NEUTRAL &&
2697 srv_check_result != CHK_RES_FAILED &&
2698 srv_check_result != CHK_RES_PASSED &&
2699 srv_check_result != CHK_RES_CONDPASS)) {
2700 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2701 }
2702
2703 /* validating srv_check_health */
2704 p = NULL;
2705 errno = 0;
2706 srv_check_health = strtol(params[8], &p, 10);
2707 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2708 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
2709
2710 /* validating srv_check_state */
2711 p = NULL;
2712 errno = 0;
2713 srv_check_state = strtol(params[9], &p, 10);
2714 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2715 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2716 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
2717
2718 /* validating srv_agent_state */
2719 p = NULL;
2720 errno = 0;
2721 srv_agent_state = strtol(params[10], &p, 10);
2722 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2723 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2724 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
2725
2726 /* validating bk_f_forced_id */
2727 p = NULL;
2728 errno = 0;
2729 bk_f_forced_id = strtol(params[11], &p, 10);
2730 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
2731 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
2732
2733 /* validating srv_f_forced_id */
2734 p = NULL;
2735 errno = 0;
2736 srv_f_forced_id = strtol(params[12], &p, 10);
2737 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
2738 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
2739
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002740 /* validating srv_fqdn */
2741 fqdn = params[13];
2742 if (fqdn && *fqdn == '-')
2743 fqdn = NULL;
2744 if (fqdn && (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn))) {
2745 chunk_appendf(msg, ", invalid srv_fqdn value '%s'", params[13]);
2746 fqdn = NULL;
2747 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002748
Frédéric Lécaille31694712017-08-01 08:47:19 +02002749 port_str = params[14];
2750 if (port_str) {
2751 port = strl2uic(port_str, strlen(port_str));
2752 if (port > USHRT_MAX) {
2753 chunk_appendf(msg, ", invalid srv_port value '%s'", port_str);
2754 port_str = NULL;
2755 }
2756 }
2757
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002758 /* SRV record
2759 * NOTE: in HAProxy, SRV records must start with an underscore '_'
2760 */
2761 srvrecord = params[15];
2762 if (srvrecord && *srvrecord != '_')
2763 srvrecord = NULL;
2764
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002765 /* don't apply anything if one error has been detected */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002766 if (msg->data)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002767 goto out;
2768
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002769 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002770 /* recover operational state and apply it to this server
2771 * and all servers tracking this one */
Jérôme Magninf57afa42019-01-20 11:27:40 +01002772 srv->check.health = srv_check_health;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002773 switch (srv_op_state) {
2774 case SRV_ST_STOPPED:
2775 srv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02002776 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002777 break;
2778 case SRV_ST_STARTING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002779 /* If rise == 1 there is no STARTING state, let's switch to
2780 * RUNNING
2781 */
2782 if (srv->check.rise == 1) {
2783 srv->check.health = srv->check.rise + srv->check.fall - 1;
2784 srv_set_running(srv, "", NULL);
2785 break;
2786 }
2787 if (srv->check.health < 1 || srv->check.health >= srv->check.rise)
2788 srv->check.health = srv->check.rise - 1;
Emeric Brun52a91d32017-08-31 14:41:55 +02002789 srv->next_state = srv_op_state;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002790 break;
2791 case SRV_ST_STOPPING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002792 /* If fall == 1 there is no STOPPING state, let's switch to
2793 * STOPPED
2794 */
2795 if (srv->check.fall == 1) {
2796 srv->check.health = 0;
2797 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
2798 break;
2799 }
2800 if (srv->check.health < srv->check.rise ||
2801 srv->check.health > srv->check.rise + srv->check.fall - 2)
2802 srv->check.health = srv->check.rise;
Emeric Brun5a133512017-10-19 14:42:30 +02002803 srv_set_stopping(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002804 break;
2805 case SRV_ST_RUNNING:
2806 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02002807 srv_set_running(srv, "", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002808 break;
2809 }
2810
2811 /* When applying server state, the following rules apply:
2812 * - in case of a configuration change, we apply the setting from the new
2813 * configuration, regardless of old running state
2814 * - if no configuration change, we apply old running state only if old running
2815 * state is different from new configuration state
2816 */
2817 /* configuration has changed */
Emeric Brun52a91d32017-08-31 14:41:55 +02002818 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->next_admin & SRV_ADMF_CMAINT)) {
2819 if (srv->next_admin & SRV_ADMF_CMAINT)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002820 srv_adm_set_maint(srv);
2821 else
2822 srv_adm_set_ready(srv);
2823 }
2824 /* configuration is the same, let's compate old running state and new conf state */
2825 else {
Emeric Brun52a91d32017-08-31 14:41:55 +02002826 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002827 srv_adm_set_maint(srv);
Emeric Brun52a91d32017-08-31 14:41:55 +02002828 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002829 srv_adm_set_ready(srv);
2830 }
2831 /* apply drain mode if server is currently enabled */
Emeric Brun52a91d32017-08-31 14:41:55 +02002832 if (!(srv->next_admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002833 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
Willy Tarreau22cace22016-11-03 18:19:49 +01002834 * (srv->iweight is the weight set up in configuration).
2835 * There are two possible reasons for FDRAIN to have been present :
2836 * - previous config weight was zero
2837 * - "set server b/s drain" was sent to the CLI
2838 *
2839 * In the first case, we simply want to drop this drain state
2840 * if the new weight is not zero anymore, meaning the administrator
2841 * has intentionally turned the weight back to a positive value to
2842 * enable the server again after an operation. In the second case,
2843 * the drain state was forced on the CLI regardless of the config's
2844 * weight so we don't want a change to the config weight to lose this
2845 * status. What this means is :
2846 * - if previous weight was 0 and new one is >0, drop the DRAIN state.
2847 * - if the previous weight was >0, keep it.
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002848 */
Willy Tarreau22cace22016-11-03 18:19:49 +01002849 if (srv_iweight > 0 || srv->iweight == 0)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002850 srv_adm_set_drain(srv);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002851 }
2852
2853 srv->last_change = date.tv_sec - srv_last_time_change;
2854 srv->check.status = srv_check_status;
2855 srv->check.result = srv_check_result;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002856
2857 /* Only case we want to apply is removing ENABLED flag which could have been
2858 * done by the "disable health" command over the stats socket
2859 */
2860 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2861 (srv_check_state & CHK_ST_CONFIGURED) &&
2862 !(srv_check_state & CHK_ST_ENABLED))
2863 srv->check.state &= ~CHK_ST_ENABLED;
2864
2865 /* Only case we want to apply is removing ENABLED flag which could have been
2866 * done by the "disable agent" command over the stats socket
2867 */
2868 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
2869 (srv_agent_state & CHK_ST_CONFIGURED) &&
2870 !(srv_agent_state & CHK_ST_ENABLED))
2871 srv->agent.state &= ~CHK_ST_ENABLED;
2872
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002873 /* We want to apply the previous 'running' weight (srv_uweight) only if there
2874 * was no change in the configuration: both previous and new iweight are equals
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002875 *
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002876 * It means that a configuration file change has precedence over a unix socket change
2877 * for server's weight
2878 *
2879 * by default, HAProxy applies the following weight when parsing the configuration
2880 * srv->uweight = srv->iweight
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002881 */
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002882 if (srv_iweight == srv->iweight) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002883 srv->uweight = srv_uweight;
2884 }
Willy Tarreau3ff577e2018-08-02 11:48:52 +02002885 server_recalc_eweight(srv, 1);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002886
Willy Tarreaue5a60682016-11-09 14:54:53 +01002887 /* load server IP address */
Daniel Corbett9215ffa2018-05-19 19:43:24 -04002888 if (strcmp(params[0], "-"))
2889 srv->lastaddr = strdup(params[0]);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002890
2891 if (fqdn && srv->hostname) {
2892 if (!strcmp(srv->hostname, fqdn)) {
2893 /* Here we reset the 'set from stats socket FQDN' flag
2894 * to support such transitions:
2895 * Let's say initial FQDN value is foo1 (in configuration file).
2896 * - FQDN changed from stats socket, from foo1 to foo2 value,
2897 * - FQDN changed again from file configuration (with the same previous value
2898 set from stats socket, from foo1 to foo2 value),
2899 * - reload for any other reason than a FQDN modification,
2900 * the configuration file FQDN matches the fqdn server state file value.
2901 * So we must reset the 'set from stats socket FQDN' flag to be consistent with
Joseph Herlant44466822018-11-15 08:57:51 -08002902 * any further FQDN modification.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002903 */
Emeric Brun52a91d32017-08-31 14:41:55 +02002904 srv->next_admin &= ~SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002905 }
2906 else {
2907 /* If the FDQN has been changed from stats socket,
2908 * apply fqdn state file value (which is the value set
2909 * from stats socket).
Baptiste Assmann13a92322019-06-07 09:40:55 +02002910 * Also ensure the runtime resolver will process this resolution.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002911 */
2912 if (fqdn_set_by_cli) {
Olivier Houchardd16bfe62017-10-31 15:21:19 +01002913 srv_set_fqdn(srv, fqdn, 0);
Baptiste Assmann13a92322019-06-07 09:40:55 +02002914 srv->flags &= ~SRV_F_NO_RESOLUTION;
Emeric Brun52a91d32017-08-31 14:41:55 +02002915 srv->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002916 }
2917 }
2918 }
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002919 /* If all the conditions below are validated, this means
2920 * we're evaluating a server managed by SRV resolution
2921 */
2922 else if (fqdn && !srv->hostname && srvrecord) {
2923 int res;
2924
2925 /* we can't apply previous state if SRV record has changed */
2926 if (srv->srvrq && strcmp(srv->srvrq->name, srvrecord) != 0) {
2927 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);
2928 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2929 goto out;
2930 }
2931
2932 /* create or find a SRV resolution for this srv record */
2933 if (srv->srvrq == NULL && (srv->srvrq = find_srvrq_by_name(srvrecord, srv->proxy)) == NULL)
2934 srv->srvrq = new_dns_srvrq(srv, srvrecord);
2935 if (srv->srvrq == NULL) {
2936 chunk_appendf(msg, ", can't create or find SRV resolution '%s' for server '%s'", srvrecord, srv->id);
2937 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2938 goto out;
2939 }
2940
2941 /* prepare DNS resolution for this server */
2942 res = srv_prepare_for_resolution(srv, fqdn);
2943 if (res == -1) {
2944 chunk_appendf(msg, ", can't allocate memory for DNS resolution for server '%s'", srv->id);
2945 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2946 goto out;
2947 }
2948
2949 /* configure check.port accordingly */
2950 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2951 !(srv->flags & SRV_F_CHECKPORT))
2952 srv->check.port = port;
2953
2954 /* Unset SRV_F_MAPPORTS for SRV records.
2955 * SRV_F_MAPPORTS is unfortunately set by parse_server()
2956 * because no ports are provided in the configuration file.
2957 * This is because HAProxy will use the port found into the SRV record.
2958 */
2959 srv->flags &= ~SRV_F_MAPPORTS;
2960 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002961
Frédéric Lécaille31694712017-08-01 08:47:19 +02002962 if (port_str)
2963 srv->svc_port = port;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002964 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Frédéric Lécaille31694712017-08-01 08:47:19 +02002965
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002966 break;
2967 default:
2968 chunk_appendf(msg, ", version '%d' not supported", version);
2969 }
2970
2971 out:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002972 if (msg->data) {
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002973 chunk_appendf(msg, "\n");
Christopher Faulet767a84b2017-11-24 16:50:31 +01002974 ha_warning("server-state application failed for server '%s/%s'%s",
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002975 srv->proxy->id, srv->id, msg->area);
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002976 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002977}
2978
Baptiste Assmannda29fe22019-06-13 13:24:29 +02002979
2980/*
2981 * read next line from file <f> and return the server state version if one found.
2982 * If no version is found, then 0 is returned
2983 * Note that this should be the first read on <f>
2984 */
2985static int srv_state_get_version(FILE *f) {
2986 char buf[2];
2987 int ret;
2988
2989 /* first character of first line of the file must contain the version of the export */
2990 if (fgets(buf, 2, f) == NULL) {
2991 return 0;
2992 }
2993
2994 ret = atoi(buf);
2995 if ((ret < SRV_STATE_FILE_VERSION_MIN) ||
2996 (ret > SRV_STATE_FILE_VERSION_MAX))
2997 return 0;
2998
2999 return ret;
3000}
3001
3002
3003/*
3004 * parses server state line stored in <buf> and supposedly in version <version>.
3005 * Set <params> and <srv_params> accordingly.
3006 * In case of error, params[0] is set to NULL.
3007 */
3008static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params)
3009{
3010 int buflen, arg, srv_arg;
3011 char *cur, *end;
3012
3013 buflen = strlen(buf);
3014 cur = buf;
3015 end = cur + buflen;
3016
3017 /* we need at least one character */
3018 if (buflen == 0) {
3019 params[0] = NULL;
3020 return;
3021 }
3022
3023 /* ignore blank characters at the beginning of the line */
Willy Tarreau90807112020-02-25 08:16:33 +01003024 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003025 ++cur;
3026
3027 /* Ignore empty or commented lines */
3028 if (cur == end || *cur == '#') {
3029 params[0] = NULL;
3030 return;
3031 }
3032
3033 /* truncated lines */
3034 if (buf[buflen - 1] != '\n') {
3035 //ha_warning("server-state file '%s': truncated line\n", filepath);
3036 params[0] = NULL;
3037 return;
3038 }
3039
3040 /* Removes trailing '\n' */
3041 buf[buflen - 1] = '\0';
3042
3043 /* we're now ready to move the line into *srv_params[] */
3044 params[0] = cur;
3045 arg = 1;
3046 srv_arg = 0;
3047 while (*cur && arg < SRV_STATE_FILE_MAX_FIELDS) {
Willy Tarreau90807112020-02-25 08:16:33 +01003048 if (isspace((unsigned char)*cur)) {
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003049 *cur = '\0';
3050 ++cur;
Willy Tarreau90807112020-02-25 08:16:33 +01003051 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003052 ++cur;
3053 switch (version) {
3054 case 1:
3055 /*
3056 * srv_addr: params[4] => srv_params[0]
3057 * srv_op_state: params[5] => srv_params[1]
3058 * srv_admin_state: params[6] => srv_params[2]
3059 * srv_uweight: params[7] => srv_params[3]
3060 * srv_iweight: params[8] => srv_params[4]
3061 * srv_last_time_change: params[9] => srv_params[5]
3062 * srv_check_status: params[10] => srv_params[6]
3063 * srv_check_result: params[11] => srv_params[7]
3064 * srv_check_health: params[12] => srv_params[8]
3065 * srv_check_state: params[13] => srv_params[9]
3066 * srv_agent_state: params[14] => srv_params[10]
3067 * bk_f_forced_id: params[15] => srv_params[11]
3068 * srv_f_forced_id: params[16] => srv_params[12]
3069 * srv_fqdn: params[17] => srv_params[13]
3070 * srv_port: params[18] => srv_params[14]
3071 * srvrecord: params[19] => srv_params[15]
3072 */
3073 if (arg >= 4) {
3074 srv_params[srv_arg] = cur;
3075 ++srv_arg;
3076 }
3077 break;
3078 }
3079
3080 params[arg] = cur;
3081 ++arg;
3082 }
3083 else {
3084 ++cur;
3085 }
3086 }
3087
3088 /* if line is incomplete line, then ignore it.
3089 * otherwise, update useful flags */
3090 switch (version) {
3091 case 1:
3092 if (arg < SRV_STATE_FILE_NB_FIELDS_VERSION_1) {
3093 params[0] = NULL;
3094 return;
3095 }
3096 break;
3097 }
3098
3099 return;
3100}
3101
3102
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003103/* This function parses all the proxies and only take care of the backends (since we're looking for server)
3104 * For each proxy, it does the following:
3105 * - opens its server state file (either one or local one)
3106 * - read whole file, line by line
3107 * - analyse each line to check if it matches our current backend:
3108 * - backend name matches
3109 * - backend id matches if id is forced and name doesn't match
3110 * - if the server pointed by the line is found, then state is applied
3111 *
3112 * If the running backend uuid or id differs from the state file, then HAProxy reports
3113 * a warning.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003114 *
3115 * Grabs the server's lock via srv_update_state().
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003116 */
3117void apply_server_state(void)
3118{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003119 char mybuf[SRV_STATE_LINE_MAXLEN];
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003120 char *params[SRV_STATE_FILE_MAX_FIELDS] = {0};
3121 char *srv_params[SRV_STATE_FILE_MAX_FIELDS] = {0};
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003122 int version, global_file_version;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003123 FILE *f;
3124 char *filepath;
3125 char globalfilepath[MAXPATHLEN + 1];
3126 char localfilepath[MAXPATHLEN + 1];
3127 int len, fileopenerr, globalfilepathlen, localfilepathlen;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003128 struct proxy *curproxy, *bk;
3129 struct server *srv;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003130 char *line;
3131 char *bkname, *srvname;
3132 struct state_line *st;
3133 struct ebmb_node *node, *next_node;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003134
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003135
3136 global_file_version = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003137 globalfilepathlen = 0;
3138 /* create the globalfilepath variable */
3139 if (global.server_state_file) {
3140 /* absolute path or no base directory provided */
3141 if ((global.server_state_file[0] == '/') || (!global.server_state_base)) {
3142 len = strlen(global.server_state_file);
3143 if (len > MAXPATHLEN) {
3144 globalfilepathlen = 0;
3145 goto globalfileerror;
3146 }
3147 memcpy(globalfilepath, global.server_state_file, len);
3148 globalfilepath[len] = '\0';
3149 globalfilepathlen = len;
3150 }
3151 else if (global.server_state_base) {
3152 len = strlen(global.server_state_base);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003153 if (len > MAXPATHLEN) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003154 globalfilepathlen = 0;
3155 goto globalfileerror;
3156 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003157 memcpy(globalfilepath, global.server_state_base, len);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003158 globalfilepath[len] = 0;
3159 globalfilepathlen = len;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003160
3161 /* append a slash if needed */
3162 if (!globalfilepathlen || globalfilepath[globalfilepathlen - 1] != '/') {
3163 if (globalfilepathlen + 1 > MAXPATHLEN) {
3164 globalfilepathlen = 0;
3165 goto globalfileerror;
3166 }
3167 globalfilepath[globalfilepathlen++] = '/';
3168 }
3169
3170 len = strlen(global.server_state_file);
3171 if (globalfilepathlen + len > MAXPATHLEN) {
3172 globalfilepathlen = 0;
3173 goto globalfileerror;
3174 }
3175 memcpy(globalfilepath + globalfilepathlen, global.server_state_file, len);
3176 globalfilepathlen += len;
3177 globalfilepath[globalfilepathlen++] = 0;
3178 }
3179 }
3180 globalfileerror:
3181 if (globalfilepathlen == 0)
3182 globalfilepath[0] = '\0';
3183
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003184 /* Load global server state in a tree */
3185 if (globalfilepathlen > 0) {
3186 errno = 0;
3187 f = fopen(globalfilepath, "r");
3188 if (errno)
3189 ha_warning("Can't open global server state file '%s': %s\n", globalfilepath, strerror(errno));
Vedran Furac5d486272019-10-16 14:49:38 +02003190 if (!f)
3191 goto out_load_server_state_in_tree;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003192
3193 global_file_version = srv_state_get_version(f);
3194 if (global_file_version == 0)
3195 goto out_load_server_state_in_tree;
3196
3197 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3198 line = NULL;
3199
3200 line = strdup(mybuf);
3201 if (line == NULL)
3202 continue;
3203
3204 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3205 if (params[0] == NULL)
Willy Tarreauca7a5af2019-12-20 17:26:27 +01003206 goto nextline;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003207
3208 /* bkname */
3209 bkname = params[1];
3210 /* srvname */
3211 srvname = params[3];
3212
3213 /* key */
3214 chunk_printf(&trash, "%s %s", bkname, srvname);
3215
3216 /* store line in tree */
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003217 st = calloc(1, sizeof(*st) + trash.data + 1);
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003218 if (st == NULL) {
3219 goto nextline;
3220 }
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003221 memcpy(st->name_name.key, trash.area, trash.data + 1);
Willy Tarreaufd1aa012019-12-20 17:23:40 +01003222 if (ebst_insert(&state_file, &st->name_name) != &st->name_name) {
3223 /* this is a duplicate key, probably a hand-crafted file,
3224 * drop it!
3225 */
3226 goto nextline;
3227 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003228
3229 /* save line */
3230 st->line = line;
3231
3232 continue;
3233
3234 nextline:
3235 /* free up memory in case of error during the processing of the line */
3236 free(line);
3237 }
3238 }
3239 out_load_server_state_in_tree:
3240
3241 /* parse all proxies and load states form tree (global file) or from local file */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003242 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003243 /* servers are only in backends */
3244 if (!(curproxy->cap & PR_CAP_BE))
3245 continue;
3246 fileopenerr = 0;
3247 filepath = NULL;
3248
3249 /* search server state file path and name */
3250 switch (curproxy->load_server_state_from_file) {
3251 /* read servers state from global file */
3252 case PR_SRV_STATE_FILE_GLOBAL:
3253 /* there was an error while generating global server state file path */
3254 if (globalfilepathlen == 0)
3255 continue;
3256 filepath = globalfilepath;
3257 fileopenerr = 1;
3258 break;
3259 /* this backend has its own file */
3260 case PR_SRV_STATE_FILE_LOCAL:
3261 localfilepathlen = 0;
3262 localfilepath[0] = '\0';
3263 len = 0;
3264 /* create the localfilepath variable */
3265 /* absolute path or no base directory provided */
3266 if ((curproxy->server_state_file_name[0] == '/') || (!global.server_state_base)) {
3267 len = strlen(curproxy->server_state_file_name);
3268 if (len > MAXPATHLEN) {
3269 localfilepathlen = 0;
3270 goto localfileerror;
3271 }
3272 memcpy(localfilepath, curproxy->server_state_file_name, len);
3273 localfilepath[len] = '\0';
3274 localfilepathlen = len;
3275 }
3276 else if (global.server_state_base) {
3277 len = strlen(global.server_state_base);
3278 localfilepathlen += len;
3279
3280 if (localfilepathlen > MAXPATHLEN) {
3281 localfilepathlen = 0;
3282 goto localfileerror;
3283 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003284 memcpy(localfilepath, global.server_state_base, len);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003285 localfilepath[localfilepathlen] = 0;
3286
3287 /* append a slash if needed */
3288 if (!localfilepathlen || localfilepath[localfilepathlen - 1] != '/') {
3289 if (localfilepathlen + 1 > MAXPATHLEN) {
3290 localfilepathlen = 0;
3291 goto localfileerror;
3292 }
3293 localfilepath[localfilepathlen++] = '/';
3294 }
3295
3296 len = strlen(curproxy->server_state_file_name);
3297 if (localfilepathlen + len > MAXPATHLEN) {
3298 localfilepathlen = 0;
3299 goto localfileerror;
3300 }
3301 memcpy(localfilepath + localfilepathlen, curproxy->server_state_file_name, len);
3302 localfilepathlen += len;
3303 localfilepath[localfilepathlen++] = 0;
3304 }
3305 filepath = localfilepath;
3306 localfileerror:
3307 if (localfilepathlen == 0)
3308 localfilepath[0] = '\0';
3309
3310 break;
3311 case PR_SRV_STATE_FILE_NONE:
3312 default:
3313 continue;
3314 }
3315
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003316 /* when global file is used, we get data from the tree
3317 * Note that in such case we don't check backend name neither uuid.
3318 * Backend name can't be wrong since it's used as a key to retrieve the server state
3319 * line from the tree.
3320 */
3321 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_GLOBAL) {
3322 struct server *srv = curproxy->srv;
3323 while (srv) {
3324 struct ebmb_node *node;
3325 struct state_line *st;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003326
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003327 chunk_printf(&trash, "%s %s", curproxy->id, srv->id);
3328 node = ebst_lookup(&state_file, trash.area);
3329 if (!node)
3330 goto next;
Dragan Dosencf4fb032015-11-04 23:03:26 +01003331
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003332 st = container_of(node, struct state_line, name_name);
3333 memcpy(mybuf, st->line, strlen(st->line));
3334 mybuf[strlen(st->line)] = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003335
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003336 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3337 if (params[0] == NULL)
3338 goto next;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003339
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003340 srv_update_state(srv, global_file_version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003341
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003342 next:
3343 srv = srv->next;
3344 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003345
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003346 continue; /* next proxy in list */
3347 }
3348 else {
3349 /* load 'local' state file */
3350 errno = 0;
3351 f = fopen(filepath, "r");
3352 if (errno && fileopenerr)
3353 ha_warning("Can't open server state file '%s': %s\n", filepath, strerror(errno));
3354 if (!f)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003355 continue;
3356
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003357 mybuf[0] = '\0';
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003358
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003359 /* first character of first line of the file must contain the version of the export */
3360 version = srv_state_get_version(f);
3361 if (version == 0) {
3362 ha_warning("Can't get version of the server state file '%s'\n", filepath);
3363 goto fileclose;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003364 }
3365
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003366 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3367 int bk_f_forced_id = 0;
3368 int check_id = 0;
3369 int check_name = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003370
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003371 srv_state_parse_line(mybuf, version, params, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003372
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003373 if (params[0] == NULL) {
3374 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003375 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003376
3377 /* if line is incomplete line, then ignore it.
3378 * otherwise, update useful flags */
3379 switch (version) {
3380 case 1:
3381 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
3382 check_id = (atoi(params[0]) == curproxy->uuid);
3383 check_name = (strcmp(curproxy->id, params[1]) == 0);
3384 break;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003385 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003386
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003387 bk = curproxy;
3388
3389 /* if backend can't be found, let's continue */
3390 if (!check_id && !check_name)
3391 continue;
3392 else if (!check_id && check_name) {
3393 ha_warning("backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3394 send_log(bk, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3395 }
3396 else if (check_id && !check_name) {
3397 ha_warning("backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3398 send_log(bk, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3399 /* if name doesn't match, we still want to update curproxy if the backend id
3400 * was forced in previous the previous configuration */
3401 if (!bk_f_forced_id)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003402 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003403 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003404
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003405 /* look for the server by its name: param[3] */
3406 srv = server_find_best_match(bk, params[3], 0, NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003407
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003408 if (!srv) {
3409 /* if no server found, then warning and continue with next line */
3410 ha_warning("can't find server '%s' in backend '%s'\n",
3411 params[3], params[1]);
3412 send_log(bk, LOG_NOTICE, "can't find server '%s' in backend '%s'\n",
3413 params[3], params[1]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003414 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003415 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003416
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003417 /* now we can proceed with server's state update */
3418 srv_update_state(srv, version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003419 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003420 }
Dragan Dosencf4fb032015-11-04 23:03:26 +01003421fileclose:
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003422 fclose(f);
3423 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003424
3425 /* now free memory allocated for the tree */
3426 for (node = ebmb_first(&state_file), next_node = node ? ebmb_next(node) : NULL;
3427 node;
3428 node = next_node, next_node = node ? ebmb_next(node) : NULL) {
3429 st = container_of(node, struct state_line, name_name);
3430 ebmb_delete(&st->name_name);
3431 free(st->line);
3432 free(st);
3433 }
3434
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003435}
3436
Simon Horman7d09b9a2013-02-12 10:45:51 +09003437/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003438 * update a server's current IP address.
3439 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3440 * ip is in network format.
3441 * updater is a string which contains an information about the requester of the update.
3442 * updater is used if not NULL.
3443 *
3444 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003445 *
3446 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003447 */
Thierry Fournierd35b7a62016-02-24 08:23:22 +01003448int update_server_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003449{
3450 /* generates a log line and a warning on stderr */
3451 if (1) {
3452 /* book enough space for both IPv4 and IPv6 */
3453 char oldip[INET6_ADDRSTRLEN];
3454 char newip[INET6_ADDRSTRLEN];
3455
3456 memset(oldip, '\0', INET6_ADDRSTRLEN);
3457 memset(newip, '\0', INET6_ADDRSTRLEN);
3458
3459 /* copy old IP address in a string */
3460 switch (s->addr.ss_family) {
3461 case AF_INET:
3462 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3463 break;
3464 case AF_INET6:
3465 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3466 break;
3467 };
3468
3469 /* copy new IP address in a string */
3470 switch (ip_sin_family) {
3471 case AF_INET:
3472 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3473 break;
3474 case AF_INET6:
3475 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3476 break;
3477 };
3478
3479 /* save log line into a buffer */
3480 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3481 s->proxy->id, s->id, oldip, newip, updater);
3482
3483 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003484 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003485
3486 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003487 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003488 }
3489
3490 /* save the new IP family */
3491 s->addr.ss_family = ip_sin_family;
3492 /* save the new IP address */
3493 switch (ip_sin_family) {
3494 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003495 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003496 break;
3497 case AF_INET6:
3498 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3499 break;
3500 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003501 srv_set_dyncookie(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003502
3503 return 0;
3504}
3505
3506/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003507 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3508 *
3509 * Caller can pass its name through <updater> to get it integrated in the response message
3510 * returned by the function.
3511 *
3512 * The function first does the following, in that order:
3513 * - validates the new addr and/or port
3514 * - checks if an update is required (new IP or port is different than current ones)
3515 * - checks the update is allowed:
3516 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3517 * - allow all changes if no CHECKS are configured
3518 * - if CHECK is configured:
3519 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3520 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3521 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003522 *
3523 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003524 */
3525const char *update_server_addr_port(struct server *s, const char *addr, const char *port, char *updater)
3526{
3527 struct sockaddr_storage sa;
3528 int ret, port_change_required;
3529 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003530 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003531 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003532 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003533
3534 msg = get_trash_chunk();
3535 chunk_reset(msg);
3536
3537 if (addr) {
3538 memset(&sa, 0, sizeof(struct sockaddr_storage));
3539 if (str2ip2(addr, &sa, 0) == NULL) {
3540 chunk_printf(msg, "Invalid addr '%s'", addr);
3541 goto out;
3542 }
3543
3544 /* changes are allowed on AF_INET* families only */
3545 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3546 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3547 goto out;
3548 }
3549
3550 /* collecting data currently setup */
3551 memset(current_addr, '\0', sizeof(current_addr));
3552 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3553 /* changes are allowed on AF_INET* families only */
3554 if ((ret != AF_INET) && (ret != AF_INET6)) {
3555 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3556 goto out;
3557 }
3558
3559 /* applying ADDR changes if required and allowed
3560 * ipcmp returns 0 when both ADDR are the same
3561 */
3562 if (ipcmp(&s->addr, &sa) == 0) {
3563 chunk_appendf(msg, "no need to change the addr");
3564 goto port;
3565 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003566 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003567 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003568
3569 /* we also need to update check's ADDR only if it uses the server's one */
3570 if ((s->check.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_CHECKADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003571 ipcpy(&sa, &s->check.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003572 }
3573
3574 /* we also need to update agent ADDR only if it use the server's one */
3575 if ((s->agent.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_AGENTADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003576 ipcpy(&sa, &s->agent.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003577 }
3578
3579 /* update report for caller */
3580 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3581 }
3582
3583 port:
3584 if (port) {
3585 char sign = '\0';
3586 char *endptr;
3587
3588 if (addr)
3589 chunk_appendf(msg, ", ");
3590
3591 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003592 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003593
3594 /* check if PORT change is required */
3595 port_change_required = 0;
3596
3597 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003598 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003599 new_port = strtol(port, &endptr, 10);
3600 if ((errno != 0) || (port == endptr)) {
3601 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3602 goto out;
3603 }
3604
3605 /* check if caller triggers a port mapped or offset */
3606 if (sign == '-' || (sign == '+')) {
3607 /* check if server currently uses port map */
3608 if (!(s->flags & SRV_F_MAPPORTS)) {
3609 /* switch from fixed port to port map mandatorily triggers
3610 * a port change */
3611 port_change_required = 1;
3612 /* check is configured
3613 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3614 * prevent PORT change if check doesn't have it's dedicated port while switching
3615 * to port mapping */
3616 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3617 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.");
3618 goto out;
3619 }
3620 }
3621 /* we're already using port maps */
3622 else {
3623 port_change_required = current_port != new_port;
3624 }
3625 }
3626 /* fixed port */
3627 else {
3628 port_change_required = current_port != new_port;
3629 }
3630
3631 /* applying PORT changes if required and update response message */
3632 if (port_change_required) {
3633 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003634 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003635 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003636
3637 /* prepare message */
3638 chunk_appendf(msg, "port changed from '");
3639 if (s->flags & SRV_F_MAPPORTS)
3640 chunk_appendf(msg, "+");
3641 chunk_appendf(msg, "%d' to '", current_port);
3642
3643 if (sign == '-') {
3644 s->flags |= SRV_F_MAPPORTS;
3645 chunk_appendf(msg, "%c", sign);
3646 /* just use for result output */
3647 new_port = -new_port;
3648 }
3649 else if (sign == '+') {
3650 s->flags |= SRV_F_MAPPORTS;
3651 chunk_appendf(msg, "%c", sign);
3652 }
3653 else {
3654 s->flags &= ~SRV_F_MAPPORTS;
3655 }
3656
3657 chunk_appendf(msg, "%d'", new_port);
3658
3659 /* we also need to update health checks port only if it uses server's realport */
3660 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3661 s->check.port = new_port;
3662 }
3663 }
3664 else {
3665 chunk_appendf(msg, "no need to change the port");
3666 }
3667 }
3668
3669out:
Olivier Houchard4e694042017-03-14 20:01:29 +01003670 if (changed)
3671 srv_set_dyncookie(s);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003672 if (updater)
3673 chunk_appendf(msg, " by '%s'", updater);
3674 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003675 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003676}
3677
3678
3679/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003680 * update server status based on result of name resolution
3681 * returns:
3682 * 0 if server status is updated
3683 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003684 *
3685 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003686 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003687int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003688{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003689 struct dns_resolvers *resolvers = s->resolvers;
3690 struct dns_resolution *resolution = s->dns_requester->resolution;
3691 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003692
3693 switch (resolution->status) {
3694 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003695 /* status when HAProxy has just (re)started.
3696 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003697 break;
3698
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003699 case RSLV_STATUS_VALID:
3700 /*
3701 * resume health checks
3702 * server will be turned back on if health check is safe
3703 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003704 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003705 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003706 return 1;
3707 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3708 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003709 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003710 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003711
Emeric Brun52a91d32017-08-31 14:41:55 +02003712 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003713 return 1;
3714 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3715 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3716 s->proxy->id, s->id);
3717
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003718 ha_warning("%s.\n", trash.area);
3719 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003720 return 0;
3721
3722 case RSLV_STATUS_NX:
3723 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003724 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3725 if (!tick_is_expired(exp, now_ms))
3726 break;
3727
3728 if (s->next_admin & SRV_ADMF_RMAINT)
3729 return 1;
3730 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3731 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003732
3733 case RSLV_STATUS_TIMEOUT:
3734 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003735 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3736 if (!tick_is_expired(exp, now_ms))
3737 break;
3738
3739 if (s->next_admin & SRV_ADMF_RMAINT)
3740 return 1;
3741 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3742 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003743
3744 case RSLV_STATUS_REFUSED:
3745 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003746 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
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 refused status");
3753 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003754
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003755 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003756 /* stop server if resolution failed for a long enough period */
3757 exp = tick_add(resolution->last_valid, resolvers->hold.other);
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, "unspecified DNS error");
3764 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003765 }
3766
3767 return 1;
3768}
3769
3770/*
3771 * Server Name Resolution valid response callback
3772 * It expects:
3773 * - <nameserver>: the name server which answered the valid response
3774 * - <response>: buffer containing a valid DNS response
3775 * - <response_len>: size of <response>
3776 * It performs the following actions:
3777 * - ignore response if current ip found and server family not met
3778 * - update with first new ip found if family is met and current IP is not found
3779 * returns:
3780 * 0 on error
3781 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003782 *
3783 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003784 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003785int snr_resolution_cb(struct dns_requester *requester, struct dns_nameserver *nameserver)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003786{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003787 struct server *s = NULL;
3788 struct dns_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003789 void *serverip, *firstip;
3790 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003791 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003792 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003793 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003794
Christopher Faulet67957bd2017-09-27 11:00:59 +02003795 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003796 if (!s)
3797 return 1;
3798
Christopher Faulet67957bd2017-09-27 11:00:59 +02003799 resolution = s->dns_requester->resolution;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003800
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003801 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003802 firstip = NULL; /* pointer to the first valid response found */
3803 /* it will be used as the new IP if a change is required */
3804 firstip_sin_family = AF_UNSPEC;
3805 serverip = NULL; /* current server IP address */
3806
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003807 /* initializing server IP pointer */
3808 server_sin_family = s->addr.ss_family;
3809 switch (server_sin_family) {
3810 case AF_INET:
3811 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3812 break;
3813
3814 case AF_INET6:
3815 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3816 break;
3817
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003818 case AF_UNSPEC:
3819 break;
3820
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003821 default:
3822 goto invalid;
3823 }
3824
Baptiste Assmann729c9012017-05-22 15:13:10 +02003825 ret = dns_get_ip_from_response(&resolution->response, &s->dns_opts,
Thierry Fournierada34842016-02-17 21:25:09 +01003826 serverip, server_sin_family, &firstip,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003827 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003828
3829 switch (ret) {
3830 case DNS_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003831 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003832
3833 case DNS_UPD_SRVIP_NOT_FOUND:
3834 goto save_ip;
3835
3836 case DNS_UPD_CNAME:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003837 goto invalid;
3838
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003839 case DNS_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003840 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003841 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003842
Baptiste Assmannfad03182015-10-28 02:03:32 +01003843 case DNS_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003844 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003845 resolution->status = RSLV_STATUS_OTHER;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003846 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003847
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003848 default:
3849 goto invalid;
3850
3851 }
3852
3853 save_ip:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003854 if (nameserver) {
3855 nameserver->counters.update++;
3856 /* save the first ip we found */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003857 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003858 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003859 else
3860 chunk_printf(chk, "DNS cache");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003861 update_server_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003862
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003863 update_status:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003864 snr_update_srv_status(s, has_no_ip);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003865 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003866
3867 invalid:
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003868 if (nameserver) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02003869 nameserver->counters.invalid++;
3870 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003871 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003872 snr_update_srv_status(s, has_no_ip);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003873 return 0;
3874}
3875
3876/*
3877 * Server Name Resolution error management callback
3878 * returns:
3879 * 0 on error
3880 * 1 when no error or safe ignore
Willy Tarreau46b7f532018-08-21 11:54:26 +02003881 *
3882 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003883 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003884int snr_resolution_error_cb(struct dns_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003885{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003886 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003887
Christopher Faulet67957bd2017-09-27 11:00:59 +02003888 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003889 if (!s)
3890 return 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003891 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003892 snr_update_srv_status(s, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003893 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003894 return 1;
3895}
3896
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003897/*
3898 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003899 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003900 * It returns a pointer to the first server found or NULL if <ip> is not yet
3901 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003902 *
3903 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003904 */
3905struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3906{
3907 struct server *tmpsrv;
3908 struct proxy *be;
3909
3910 if (!srv)
3911 return NULL;
3912
3913 be = srv->proxy;
3914 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003915 /* we found the current server is the same, ignore it */
3916 if (srv == tmpsrv)
3917 continue;
3918
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003919 /* We want to compare the IP in the record with the IP of the servers in the
3920 * same backend, only if:
3921 * * DNS resolution is enabled on the server
3922 * * the hostname used for the resolution by our server is the same than the
3923 * one used for the server found in the backend
3924 * * the server found in the backend is not our current server
3925 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003926 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003927 if ((tmpsrv->hostname_dn == NULL) ||
3928 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
3929 (strcmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01003930 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003931 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003932 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003933 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003934
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003935 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01003936 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003937 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003938 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003939 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003940
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003941 /* At this point, we have 2 different servers using the same DNS hostname
3942 * for their respective resolution.
3943 */
3944 if (*ip_family == tmpsrv->addr.ss_family &&
3945 ((tmpsrv->addr.ss_family == AF_INET &&
3946 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
3947 (tmpsrv->addr.ss_family == AF_INET6 &&
3948 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003949 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003950 return tmpsrv;
3951 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003952 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003953 }
3954
Emeric Brune9fd6b52017-11-02 17:20:39 +01003955
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003956 return NULL;
3957}
3958
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003959/* Sets the server's address (srv->addr) from srv->hostname using the libc's
3960 * resolver. This is suited for initial address configuration. Returns 0 on
3961 * success otherwise a non-zero error code. In case of error, *err_code, if
3962 * not NULL, is filled up.
3963 */
3964int srv_set_addr_via_libc(struct server *srv, int *err_code)
3965{
3966 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003967 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01003968 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003969 return 1;
3970 }
3971 return 0;
3972}
3973
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003974/* Set the server's FDQN (->hostname) from <hostname>.
3975 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003976 *
3977 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003978 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01003979int srv_set_fqdn(struct server *srv, const char *hostname, int dns_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003980{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003981 struct dns_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003982 char *hostname_dn;
3983 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003984
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02003985 /* Note that the server lock is already held. */
3986 if (!srv->resolvers)
3987 return -1;
3988
Olivier Houchardd16bfe62017-10-31 15:21:19 +01003989 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003990 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003991 /* run time DNS resolution was not active for this server
3992 * and we can't enable it at run time for now.
3993 */
3994 if (!srv->dns_requester)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003995 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003996
3997 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003998 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003999 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004000 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
4001 hostname_dn, trash.size);
4002 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004003 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004004
Christopher Faulet67957bd2017-09-27 11:00:59 +02004005 resolution = srv->dns_requester->resolution;
4006 if (resolution &&
4007 resolution->hostname_dn &&
4008 !strcmp(resolution->hostname_dn, hostname_dn))
Christopher Fauletb2812a62017-10-04 16:17:58 +02004009 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004010
Christopher Faulet67957bd2017-09-27 11:00:59 +02004011 dns_unlink_resolution(srv->dns_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004012
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004013 free(srv->hostname);
4014 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004015 srv->hostname = strdup(hostname);
4016 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004017 srv->hostname_dn_len = hostname_dn_len;
4018 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004019 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004020
Baptiste Assmann13a92322019-06-07 09:40:55 +02004021 if (srv->flags & SRV_F_NO_RESOLUTION)
4022 goto end;
4023
Olivier Houchard55dcdf42017-11-06 15:15:04 +01004024 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004025 goto err;
4026
4027 end:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004028 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004029 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004030 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02004031
4032 err:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004033 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004034 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02004035 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004036}
4037
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004038/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
4039 * from the state file. This is suited for initial address configuration.
4040 * Returns 0 on success otherwise a non-zero error code. In case of error,
4041 * *err_code, if not NULL, is filled up.
4042 */
4043static int srv_apply_lastaddr(struct server *srv, int *err_code)
4044{
4045 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
4046 if (err_code)
4047 *err_code |= ERR_WARN;
4048 return 1;
4049 }
4050 return 0;
4051}
4052
Willy Tarreau25e51522016-11-04 15:10:17 +01004053/* returns 0 if no error, otherwise a combination of ERR_* flags */
4054static int srv_iterate_initaddr(struct server *srv)
4055{
4056 int return_code = 0;
4057 int err_code;
4058 unsigned int methods;
4059
4060 methods = srv->init_addr_methods;
4061 if (!methods) { // default to "last,libc"
4062 srv_append_initaddr(&methods, SRV_IADDR_LAST);
4063 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
4064 }
4065
Willy Tarreau3eed10e2016-11-07 21:03:16 +01004066 /* "-dr" : always append "none" so that server addresses resolution
4067 * failures are silently ignored, this is convenient to validate some
4068 * configs out of their environment.
4069 */
4070 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
4071 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4072
Willy Tarreau25e51522016-11-04 15:10:17 +01004073 while (methods) {
4074 err_code = 0;
4075 switch (srv_get_next_initaddr(&methods)) {
4076 case SRV_IADDR_LAST:
4077 if (!srv->lastaddr)
4078 continue;
4079 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004080 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004081 return_code |= err_code;
4082 break;
4083
4084 case SRV_IADDR_LIBC:
4085 if (!srv->hostname)
4086 continue;
4087 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004088 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004089 return_code |= err_code;
4090 break;
4091
Willy Tarreau37ebe122016-11-04 15:17:58 +01004092 case SRV_IADDR_NONE:
4093 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004094 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004095 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
4096 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004097 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01004098 return return_code;
4099
Willy Tarreau4310d362016-11-02 15:05:56 +01004100 case SRV_IADDR_IP:
4101 ipcpy(&srv->init_addr, &srv->addr);
4102 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004103 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', falling back to configured address.\n",
4104 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
Willy Tarreau4310d362016-11-02 15:05:56 +01004105 }
Olivier Houchard4e694042017-03-14 20:01:29 +01004106 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01004107
Willy Tarreau25e51522016-11-04 15:10:17 +01004108 default: /* unhandled method */
4109 break;
4110 }
4111 }
4112
4113 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004114 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Willy Tarreau25e51522016-11-04 15:10:17 +01004115 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
4116 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01004117 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004118 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Willy Tarreau465b6e52016-11-07 19:19:22 +01004119 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
4120 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004121
4122 return_code |= ERR_ALERT | ERR_FATAL;
4123 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01004124out:
4125 srv_set_dyncookie(srv);
4126 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01004127}
4128
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004129/*
4130 * This function parses all backends and all servers within each backend
4131 * and performs servers' addr resolution based on information provided by:
4132 * - configuration file
4133 * - server-state file (states provided by an 'old' haproxy process)
4134 *
4135 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
4136 */
4137int srv_init_addr(void)
4138{
4139 struct proxy *curproxy;
4140 int return_code = 0;
4141
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004142 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004143 while (curproxy) {
4144 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004145
4146 /* servers are in backend only */
4147 if (!(curproxy->cap & PR_CAP_BE))
4148 goto srv_init_addr_next;
4149
Willy Tarreau25e51522016-11-04 15:10:17 +01004150 for (srv = curproxy->srv; srv; srv = srv->next)
Willy Tarreau3d609a72017-09-06 14:22:45 +02004151 if (srv->hostname)
4152 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004153
4154 srv_init_addr_next:
4155 curproxy = curproxy->next;
4156 }
4157
4158 return return_code;
4159}
4160
Willy Tarreau46b7f532018-08-21 11:54:26 +02004161/*
4162 * Must be called with the server lock held.
4163 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004164const 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 +02004165{
4166
Willy Tarreau83061a82018-07-13 11:56:34 +02004167 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004168
4169 msg = get_trash_chunk();
4170 chunk_reset(msg);
4171
Olivier Houchard8da5f982017-08-04 18:35:36 +02004172 if (server->hostname && !strcmp(fqdn, server->hostname)) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004173 chunk_appendf(msg, "no need to change the FDQN");
4174 goto out;
4175 }
4176
4177 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4178 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4179 goto out;
4180 }
4181
4182 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4183 server->proxy->id, server->id, server->hostname, fqdn);
4184
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004185 if (srv_set_fqdn(server, fqdn, dns_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004186 chunk_reset(msg);
4187 chunk_appendf(msg, "could not update %s/%s FQDN",
4188 server->proxy->id, server->id);
4189 goto out;
4190 }
4191
4192 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004193 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004194
4195 out:
4196 if (updater)
4197 chunk_appendf(msg, " by '%s'", updater);
4198 chunk_appendf(msg, "\n");
4199
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004200 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004201}
4202
4203
Willy Tarreau21b069d2016-11-23 17:15:08 +01004204/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4205 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004206 * 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 +01004207 * used for CLI commands requiring a server name.
4208 * Important: the <arg> is modified to remove the '/'.
4209 */
4210struct server *cli_find_server(struct appctx *appctx, char *arg)
4211{
4212 struct proxy *px;
4213 struct server *sv;
4214 char *line;
4215
4216 /* split "backend/server" and make <line> point to server */
4217 for (line = arg; *line; line++)
4218 if (*line == '/') {
4219 *line++ = '\0';
4220 break;
4221 }
4222
4223 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004224 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004225 return NULL;
4226 }
4227
4228 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004229 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004230 return NULL;
4231 }
4232
4233 if (px->state == PR_STSTOPPED) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004234 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004235 return NULL;
4236 }
4237
4238 return sv;
4239}
4240
William Lallemand222baf22016-11-19 02:00:33 +01004241
Willy Tarreau46b7f532018-08-21 11:54:26 +02004242/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004243static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004244{
4245 struct server *sv;
4246 const char *warning;
4247
4248 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4249 return 1;
4250
4251 sv = cli_find_server(appctx, args[2]);
4252 if (!sv)
4253 return 1;
4254
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004255 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02004256
William Lallemand222baf22016-11-19 02:00:33 +01004257 if (strcmp(args[3], "weight") == 0) {
4258 warning = server_parse_weight_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004259 if (warning)
4260 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004261 }
4262 else if (strcmp(args[3], "state") == 0) {
4263 if (strcmp(args[4], "ready") == 0)
4264 srv_adm_set_ready(sv);
4265 else if (strcmp(args[4], "drain") == 0)
4266 srv_adm_set_drain(sv);
4267 else if (strcmp(args[4], "maint") == 0)
4268 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02004269 else
4270 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004271 }
4272 else if (strcmp(args[3], "health") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004273 if (sv->track)
4274 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004275 else if (strcmp(args[4], "up") == 0) {
4276 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004277 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004278 }
4279 else if (strcmp(args[4], "stopping") == 0) {
4280 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004281 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004282 }
4283 else if (strcmp(args[4], "down") == 0) {
4284 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004285 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004286 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004287 else
4288 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004289 }
4290 else if (strcmp(args[3], "agent") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004291 if (!(sv->agent.state & CHK_ST_ENABLED))
4292 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004293 else if (strcmp(args[4], "up") == 0) {
4294 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004295 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004296 }
4297 else if (strcmp(args[4], "down") == 0) {
4298 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004299 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004300 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004301 else
4302 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004303 }
Misiek2da082d2017-01-09 09:40:42 +01004304 else if (strcmp(args[3], "agent-addr") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004305 if (!(sv->agent.state & CHK_ST_ENABLED))
4306 cli_err(appctx, "agent checks are not enabled on this server.\n");
4307 else if (str2ip(args[4], &sv->agent.addr) == NULL)
4308 cli_err(appctx, "incorrect addr address given for agent.\n");
Misiek2da082d2017-01-09 09:40:42 +01004309 }
4310 else if (strcmp(args[3], "agent-send") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004311 if (!(sv->agent.state & CHK_ST_ENABLED))
4312 cli_err(appctx, "agent checks are not enabled on this server.\n");
4313 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004314 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004315 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004316 }
4317 }
William Lallemand222baf22016-11-19 02:00:33 +01004318 else if (strcmp(args[3], "check-port") == 0) {
4319 int i = 0;
4320 if (strl2irc(args[4], strlen(args[4]), &i) != 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004321 cli_err(appctx, "'set server <srv> check-port' expects an integer as argument.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004322 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004323 }
4324 if ((i < 0) || (i > 65535)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004325 cli_err(appctx, "provided port is not valid.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004326 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004327 }
4328 /* prevent the update of port to 0 if MAPPORTS are in use */
4329 if ((sv->flags & SRV_F_MAPPORTS) && (i == 0)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004330 cli_err(appctx, "can't unset 'port' since MAPPORTS is in use.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004331 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004332 }
4333 sv->check.port = i;
Willy Tarreau9d008692019-08-09 11:21:01 +02004334 cli_msg(appctx, LOG_NOTICE, "health check port updated.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004335 }
4336 else if (strcmp(args[3], "addr") == 0) {
4337 char *addr = NULL;
4338 char *port = NULL;
4339 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004340 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004341 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004342 }
4343 else {
4344 addr = args[4];
4345 }
4346 if (strcmp(args[5], "port") == 0) {
4347 port = args[6];
4348 }
4349 warning = update_server_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004350 if (warning)
4351 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004352 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
4353 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004354 else if (strcmp(args[3], "fqdn") == 0) {
4355 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004356 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004357 goto out_unlock;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004358 }
Baptiste Assmann13a92322019-06-07 09:40:55 +02004359 /* ensure runtime resolver will process this new fqdn */
4360 if (sv->flags & SRV_F_NO_RESOLUTION) {
4361 sv->flags &= ~SRV_F_NO_RESOLUTION;
4362 }
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004363 warning = update_server_fqdn(sv, args[4], "stats socket command", 0);
Willy Tarreau9d008692019-08-09 11:21:01 +02004364 if (warning)
4365 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004366 }
William Lallemand222baf22016-11-19 02:00:33 +01004367 else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004368 cli_err(appctx,
4369 "'set server <srv>' only supports 'agent', 'health', 'state',"
4370 " 'weight', 'addr', 'fqdn' and 'check-port'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004371 }
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004372 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004373 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004374 return 1;
4375}
4376
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004377static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004378{
4379 struct stream_interface *si = appctx->owner;
4380 struct proxy *px;
4381 struct server *sv;
4382 char *line;
4383
4384
4385 /* split "backend/server" and make <line> point to server */
4386 for (line = args[2]; *line; line++)
4387 if (*line == '/') {
4388 *line++ = '\0';
4389 break;
4390 }
4391
Willy Tarreau9d008692019-08-09 11:21:01 +02004392 if (!*line)
4393 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004394
Willy Tarreau9d008692019-08-09 11:21:01 +02004395 if (!get_backend_server(args[2], line, &px, &sv))
4396 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004397
4398 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004399 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4400 sv->iweight);
4401 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004402 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004403 return 0;
4404 }
William Lallemand6b160942016-11-22 12:34:35 +01004405 return 1;
4406}
4407
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004408/* Parse a "set weight" command.
4409 *
4410 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004411 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004412static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004413{
4414 struct server *sv;
4415 const char *warning;
4416
4417 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4418 return 1;
4419
4420 sv = cli_find_server(appctx, args[2]);
4421 if (!sv)
4422 return 1;
4423
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004424 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4425
William Lallemand6b160942016-11-22 12:34:35 +01004426 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004427 if (warning)
4428 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004429
4430 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4431
William Lallemand6b160942016-11-22 12:34:35 +01004432 return 1;
4433}
4434
Willy Tarreau46b7f532018-08-21 11:54:26 +02004435/* parse a "set maxconn server" command. It always returns 1.
4436 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004437 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004438 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004439static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004440{
4441 struct server *sv;
4442 const char *warning;
4443
4444 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4445 return 1;
4446
4447 sv = cli_find_server(appctx, args[3]);
4448 if (!sv)
4449 return 1;
4450
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004451 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4452
Willy Tarreaub8026272016-11-23 11:26:56 +01004453 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004454 if (warning)
4455 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004456
4457 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4458
Willy Tarreaub8026272016-11-23 11:26:56 +01004459 return 1;
4460}
William Lallemand6b160942016-11-22 12:34:35 +01004461
Willy Tarreau46b7f532018-08-21 11:54:26 +02004462/* parse a "disable agent" command. It always returns 1.
4463 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004464 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004465 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004466static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004467{
4468 struct server *sv;
4469
4470 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4471 return 1;
4472
4473 sv = cli_find_server(appctx, args[2]);
4474 if (!sv)
4475 return 1;
4476
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004477 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004478 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004479 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004480 return 1;
4481}
4482
Willy Tarreau46b7f532018-08-21 11:54:26 +02004483/* parse a "disable health" command. It always returns 1.
4484 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004485 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004486 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004487static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004488{
4489 struct server *sv;
4490
4491 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4492 return 1;
4493
4494 sv = cli_find_server(appctx, args[2]);
4495 if (!sv)
4496 return 1;
4497
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004498 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004499 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004500 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004501 return 1;
4502}
4503
Willy Tarreau46b7f532018-08-21 11:54:26 +02004504/* parse a "disable server" command. It always returns 1.
4505 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004506 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004507 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004508static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004509{
4510 struct server *sv;
4511
4512 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4513 return 1;
4514
4515 sv = cli_find_server(appctx, args[2]);
4516 if (!sv)
4517 return 1;
4518
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004519 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004520 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004521 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004522 return 1;
4523}
4524
Willy Tarreau46b7f532018-08-21 11:54:26 +02004525/* parse a "enable agent" command. It always returns 1.
4526 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004527 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004528 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004529static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004530{
4531 struct server *sv;
4532
4533 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4534 return 1;
4535
4536 sv = cli_find_server(appctx, args[2]);
4537 if (!sv)
4538 return 1;
4539
Willy Tarreau9d008692019-08-09 11:21:01 +02004540 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4541 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004542
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004543 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004544 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004545 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004546 return 1;
4547}
4548
Willy Tarreau46b7f532018-08-21 11:54:26 +02004549/* parse a "enable health" command. It always returns 1.
4550 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004551 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004552 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004553static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004554{
4555 struct server *sv;
4556
4557 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4558 return 1;
4559
4560 sv = cli_find_server(appctx, args[2]);
4561 if (!sv)
4562 return 1;
4563
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004564 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004565 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004566 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004567 return 1;
4568}
4569
Willy Tarreau46b7f532018-08-21 11:54:26 +02004570/* parse a "enable server" command. It always returns 1.
4571 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004572 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004573 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004574static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004575{
4576 struct server *sv;
4577
4578 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4579 return 1;
4580
4581 sv = cli_find_server(appctx, args[2]);
4582 if (!sv)
4583 return 1;
4584
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004585 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004586 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004587 if (!(sv->flags & SRV_F_COOKIESET)
4588 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4589 sv->cookie)
4590 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004591 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004592 return 1;
4593}
4594
William Lallemand222baf22016-11-19 02:00:33 +01004595/* register cli keywords */
4596static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004597 { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004598 { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004599 { { "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 +01004600 { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004601 { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004602 { { "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 +01004603 { { "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 +01004604 { { "set", "server", NULL }, "set server : change a server's state, weight or address", cli_parse_set_server },
William Lallemand6b160942016-11-22 12:34:35 +01004605 { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight },
4606 { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight },
4607
William Lallemand222baf22016-11-19 02:00:33 +01004608 {{},}
4609}};
4610
Willy Tarreau0108d902018-11-25 19:14:37 +01004611INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004612
Emeric Brun64cc49c2017-10-03 14:46:45 +02004613/*
4614 * This function applies server's status changes, it is
4615 * is designed to be called asynchronously.
4616 *
Willy Tarreau46b7f532018-08-21 11:54:26 +02004617 * Must be called with the server lock held.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004618 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004619static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004620{
4621 struct check *check = &s->check;
4622 int xferred;
4623 struct proxy *px = s->proxy;
4624 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4625 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4626 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004627 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004628
Emeric Brun64cc49c2017-10-03 14:46:45 +02004629 /* If currently main is not set we try to apply pending state changes */
4630 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4631 int next_admin;
4632
4633 /* Backup next admin */
4634 next_admin = s->next_admin;
4635
4636 /* restore current admin state */
4637 s->next_admin = s->cur_admin;
4638
4639 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4640 s->last_change = now.tv_sec;
4641 if (s->proxy->lbprm.set_server_status_down)
4642 s->proxy->lbprm.set_server_status_down(s);
4643
4644 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4645 srv_shutdown_streams(s, SF_ERR_DOWN);
4646
4647 /* we might have streams queued on this server and waiting for
4648 * a connection. Those which are redispatchable will be queued
4649 * to another server or to the proxy itself.
4650 */
4651 xferred = pendconn_redistribute(s);
4652
4653 tmptrash = alloc_trash_chunk();
4654 if (tmptrash) {
4655 chunk_printf(tmptrash,
4656 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4657 s->proxy->id, s->id);
4658
Emeric Brun5a133512017-10-19 14:42:30 +02004659 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004660 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004661
4662 /* we don't send an alert if the server was previously paused */
4663 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004664 send_log(s->proxy, log_level, "%s.\n",
4665 tmptrash->area);
4666 send_email_alert(s, log_level, "%s",
4667 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004668 free_trash_chunk(tmptrash);
4669 tmptrash = NULL;
4670 }
4671 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4672 set_backend_down(s->proxy);
4673
4674 s->counters.down_trans++;
4675 }
4676 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4677 s->last_change = now.tv_sec;
4678 if (s->proxy->lbprm.set_server_status_down)
4679 s->proxy->lbprm.set_server_status_down(s);
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 stopping", 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);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004694
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004695 ha_warning("%s.\n", tmptrash->area);
4696 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4697 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004698 free_trash_chunk(tmptrash);
4699 tmptrash = NULL;
4700 }
4701
4702 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4703 set_backend_down(s->proxy);
4704 }
4705 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4706 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4707 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4708 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4709 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4710 s->proxy->last_change = now.tv_sec;
4711 }
4712
4713 if (s->next_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
4714 s->down_time += now.tv_sec - s->last_change;
4715
4716 s->last_change = now.tv_sec;
4717 if (s->next_state == SRV_ST_STARTING)
4718 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4719
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004720 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004721 /* now propagate the status change to any LB algorithms */
4722 if (px->lbprm.update_server_eweight)
4723 px->lbprm.update_server_eweight(s);
4724 else if (srv_willbe_usable(s)) {
4725 if (px->lbprm.set_server_status_up)
4726 px->lbprm.set_server_status_up(s);
4727 }
4728 else {
4729 if (px->lbprm.set_server_status_down)
4730 px->lbprm.set_server_status_down(s);
4731 }
4732
4733 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4734 * and it's not a backup server and its effective weight is > 0,
4735 * then it can accept new connections, so we shut down all streams
4736 * on all backup servers.
4737 */
4738 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4739 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4740 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4741
4742 /* check if we can handle some connections queued at the proxy. We
4743 * will take as many as we can handle.
4744 */
4745 xferred = pendconn_grab_from_px(s);
4746
4747 tmptrash = alloc_trash_chunk();
4748 if (tmptrash) {
4749 chunk_printf(tmptrash,
4750 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
4751 s->proxy->id, s->id);
4752
Emeric Brun5a133512017-10-19 14:42:30 +02004753 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004754 ha_warning("%s.\n", tmptrash->area);
4755 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4756 tmptrash->area);
4757 send_email_alert(s, LOG_NOTICE, "%s",
4758 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004759 free_trash_chunk(tmptrash);
4760 tmptrash = NULL;
4761 }
4762
4763 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4764 set_backend_down(s->proxy);
4765 }
4766 else if (s->cur_eweight != s->next_eweight) {
4767 /* now propagate the status change to any LB algorithms */
4768 if (px->lbprm.update_server_eweight)
4769 px->lbprm.update_server_eweight(s);
4770 else if (srv_willbe_usable(s)) {
4771 if (px->lbprm.set_server_status_up)
4772 px->lbprm.set_server_status_up(s);
4773 }
4774 else {
4775 if (px->lbprm.set_server_status_down)
4776 px->lbprm.set_server_status_down(s);
4777 }
4778
4779 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4780 set_backend_down(s->proxy);
4781 }
4782
4783 s->next_admin = next_admin;
4784 }
4785
Emeric Brun5a133512017-10-19 14:42:30 +02004786 /* reset operational state change */
4787 *s->op_st_chg.reason = 0;
4788 s->op_st_chg.status = s->op_st_chg.code = -1;
4789 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004790
4791 /* Now we try to apply pending admin changes */
4792
4793 /* Maintenance must also disable health checks */
4794 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
4795 if (s->check.state & CHK_ST_ENABLED) {
4796 s->check.state |= CHK_ST_PAUSED;
4797 check->health = 0;
4798 }
4799
4800 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02004801 tmptrash = alloc_trash_chunk();
4802 if (tmptrash) {
4803 chunk_printf(tmptrash,
4804 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
4805 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4806 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02004807
Olivier Houchard796a2b32017-10-24 17:42:47 +02004808 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02004809
Olivier Houchard796a2b32017-10-24 17:42:47 +02004810 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004811 ha_warning("%s.\n", tmptrash->area);
4812 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4813 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02004814 }
4815 free_trash_chunk(tmptrash);
4816 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004817 }
Emeric Brun8f298292017-12-06 16:47:17 +01004818 /* commit new admin status */
4819
4820 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004821 }
4822 else { /* server was still running */
4823 check->health = 0; /* failure */
4824 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01004825
4826 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004827 if (s->proxy->lbprm.set_server_status_down)
4828 s->proxy->lbprm.set_server_status_down(s);
4829
Emeric Brun64cc49c2017-10-03 14:46:45 +02004830 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4831 srv_shutdown_streams(s, SF_ERR_DOWN);
4832
4833 /* we might have streams queued on this server and waiting for
4834 * a connection. Those which are redispatchable will be queued
4835 * to another server or to the proxy itself.
4836 */
4837 xferred = pendconn_redistribute(s);
4838
4839 tmptrash = alloc_trash_chunk();
4840 if (tmptrash) {
4841 chunk_printf(tmptrash,
4842 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
4843 s->flags & SRV_F_BACKUP ? "Backup " : "",
4844 s->proxy->id, s->id,
4845 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
4846
4847 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
4848
4849 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004850 ha_warning("%s.\n", tmptrash->area);
4851 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
4852 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004853 }
4854 free_trash_chunk(tmptrash);
4855 tmptrash = NULL;
4856 }
4857 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4858 set_backend_down(s->proxy);
4859
4860 s->counters.down_trans++;
4861 }
4862 }
4863 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
4864 /* OK here we're leaving maintenance, we have many things to check,
4865 * because the server might possibly be coming back up depending on
4866 * its state. In practice, leaving maintenance means that we should
4867 * immediately turn to UP (more or less the slowstart) under the
4868 * following conditions :
4869 * - server is neither checked nor tracked
4870 * - server tracks another server which is not checked
4871 * - server tracks another server which is already up
4872 * Which sums up as something simpler :
4873 * "either the tracking server is up or the server's checks are disabled
4874 * or up". Otherwise we only re-enable health checks. There's a special
4875 * case associated to the stopping state which can be inherited. Note
4876 * that the server might still be in drain mode, which is naturally dealt
4877 * with by the lower level functions.
4878 */
4879
4880 if (s->check.state & CHK_ST_ENABLED) {
4881 s->check.state &= ~CHK_ST_PAUSED;
4882 check->health = check->rise; /* start OK but check immediately */
4883 }
4884
4885 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
4886 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
4887 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
4888 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
4889 s->next_state = SRV_ST_STOPPING;
4890 }
4891 else {
4892 s->next_state = SRV_ST_STARTING;
4893 if (s->slowstart > 0)
4894 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4895 else
4896 s->next_state = SRV_ST_RUNNING;
4897 }
4898
4899 }
4900
4901 tmptrash = alloc_trash_chunk();
4902 if (tmptrash) {
4903 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
4904 chunk_printf(tmptrash,
4905 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
4906 s->flags & SRV_F_BACKUP ? "Backup " : "",
4907 s->proxy->id, s->id,
4908 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4909 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4910 }
4911 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
4912 chunk_printf(tmptrash,
4913 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
4914 s->flags & SRV_F_BACKUP ? "Backup " : "",
4915 s->proxy->id, s->id, s->hostname,
4916 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4917 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4918 }
4919 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
4920 chunk_printf(tmptrash,
4921 "%sServer %s/%s is %s/%s (leaving maintenance)",
4922 s->flags & SRV_F_BACKUP ? "Backup " : "",
4923 s->proxy->id, s->id,
4924 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4925 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4926 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004927 ha_warning("%s.\n", tmptrash->area);
4928 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4929 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004930 free_trash_chunk(tmptrash);
4931 tmptrash = NULL;
4932 }
4933
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004934 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004935 /* now propagate the status change to any LB algorithms */
4936 if (px->lbprm.update_server_eweight)
4937 px->lbprm.update_server_eweight(s);
4938 else if (srv_willbe_usable(s)) {
4939 if (px->lbprm.set_server_status_up)
4940 px->lbprm.set_server_status_up(s);
4941 }
4942 else {
4943 if (px->lbprm.set_server_status_down)
4944 px->lbprm.set_server_status_down(s);
4945 }
4946
4947 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4948 set_backend_down(s->proxy);
4949
Willy Tarreau6a78e612018-08-07 10:14:53 +02004950 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4951 * and it's not a backup server and its effective weight is > 0,
4952 * then it can accept new connections, so we shut down all streams
4953 * on all backup servers.
4954 */
4955 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4956 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4957 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4958
4959 /* check if we can handle some connections queued at the proxy. We
4960 * will take as many as we can handle.
4961 */
4962 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004963 }
4964 else if (s->next_admin & SRV_ADMF_MAINT) {
4965 /* remaining in maintenance mode, let's inform precisely about the
4966 * situation.
4967 */
4968 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
4969 tmptrash = alloc_trash_chunk();
4970 if (tmptrash) {
4971 chunk_printf(tmptrash,
4972 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
4973 s->flags & SRV_F_BACKUP ? "Backup " : "",
4974 s->proxy->id, s->id);
4975
4976 if (s->track) /* normally it's mandatory here */
4977 chunk_appendf(tmptrash, " via %s/%s",
4978 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004979 ha_warning("%s.\n", tmptrash->area);
4980 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4981 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004982 free_trash_chunk(tmptrash);
4983 tmptrash = NULL;
4984 }
4985 }
4986 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
4987 tmptrash = alloc_trash_chunk();
4988 if (tmptrash) {
4989 chunk_printf(tmptrash,
4990 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
4991 s->flags & SRV_F_BACKUP ? "Backup " : "",
4992 s->proxy->id, s->id, s->hostname);
4993
4994 if (s->track) /* normally it's mandatory here */
4995 chunk_appendf(tmptrash, " via %s/%s",
4996 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004997 ha_warning("%s.\n", tmptrash->area);
4998 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4999 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005000 free_trash_chunk(tmptrash);
5001 tmptrash = NULL;
5002 }
5003 }
5004 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5005 tmptrash = alloc_trash_chunk();
5006 if (tmptrash) {
5007 chunk_printf(tmptrash,
5008 "%sServer %s/%s remains in forced maintenance",
5009 s->flags & SRV_F_BACKUP ? "Backup " : "",
5010 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005011 ha_warning("%s.\n", tmptrash->area);
5012 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5013 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005014 free_trash_chunk(tmptrash);
5015 tmptrash = NULL;
5016 }
5017 }
5018 /* don't report anything when leaving drain mode and remaining in maintenance */
5019
5020 s->cur_admin = s->next_admin;
5021 }
5022
5023 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5024 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5025 /* drain state is applied only if not yet in maint */
5026
5027 s->last_change = now.tv_sec;
5028 if (px->lbprm.set_server_status_down)
5029 px->lbprm.set_server_status_down(s);
5030
5031 /* we might have streams queued on this server and waiting for
5032 * a connection. Those which are redispatchable will be queued
5033 * to another server or to the proxy itself.
5034 */
5035 xferred = pendconn_redistribute(s);
5036
5037 tmptrash = alloc_trash_chunk();
5038 if (tmptrash) {
5039 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5040 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5041 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5042
5043 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5044
5045 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005046 ha_warning("%s.\n", tmptrash->area);
5047 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5048 tmptrash->area);
5049 send_email_alert(s, LOG_NOTICE, "%s",
5050 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005051 }
5052 free_trash_chunk(tmptrash);
5053 tmptrash = NULL;
5054 }
5055
5056 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5057 set_backend_down(s->proxy);
5058 }
5059 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5060 /* OK completely leaving drain mode */
5061 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5062 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5063 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5064 s->proxy->last_change = now.tv_sec;
5065 }
5066
5067 if (s->last_change < now.tv_sec) // ignore negative times
5068 s->down_time += now.tv_sec - s->last_change;
5069 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005070 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005071
5072 tmptrash = alloc_trash_chunk();
5073 if (tmptrash) {
5074 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5075 chunk_printf(tmptrash,
5076 "%sServer %s/%s is %s (leaving forced drain)",
5077 s->flags & SRV_F_BACKUP ? "Backup " : "",
5078 s->proxy->id, s->id,
5079 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5080 }
5081 else {
5082 chunk_printf(tmptrash,
5083 "%sServer %s/%s is %s (leaving drain)",
5084 s->flags & SRV_F_BACKUP ? "Backup " : "",
5085 s->proxy->id, s->id,
5086 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5087 if (s->track) /* normally it's mandatory here */
5088 chunk_appendf(tmptrash, " via %s/%s",
5089 s->track->proxy->id, s->track->id);
5090 }
5091
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005092 ha_warning("%s.\n", tmptrash->area);
5093 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5094 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005095 free_trash_chunk(tmptrash);
5096 tmptrash = NULL;
5097 }
5098
5099 /* now propagate the status change to any LB algorithms */
5100 if (px->lbprm.update_server_eweight)
5101 px->lbprm.update_server_eweight(s);
5102 else if (srv_willbe_usable(s)) {
5103 if (px->lbprm.set_server_status_up)
5104 px->lbprm.set_server_status_up(s);
5105 }
5106 else {
5107 if (px->lbprm.set_server_status_down)
5108 px->lbprm.set_server_status_down(s);
5109 }
5110 }
5111 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5112 /* remaining in drain mode after removing one of its flags */
5113
5114 tmptrash = alloc_trash_chunk();
5115 if (tmptrash) {
5116 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5117 chunk_printf(tmptrash,
5118 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5119 s->flags & SRV_F_BACKUP ? "Backup " : "",
5120 s->proxy->id, s->id);
5121
5122 if (s->track) /* normally it's mandatory here */
5123 chunk_appendf(tmptrash, " via %s/%s",
5124 s->track->proxy->id, s->track->id);
5125 }
5126 else {
5127 chunk_printf(tmptrash,
5128 "%sServer %s/%s remains in forced drain mode",
5129 s->flags & SRV_F_BACKUP ? "Backup " : "",
5130 s->proxy->id, s->id);
5131 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005132 ha_warning("%s.\n", tmptrash->area);
5133 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5134 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005135 free_trash_chunk(tmptrash);
5136 tmptrash = NULL;
5137 }
5138
5139 /* commit new admin status */
5140
5141 s->cur_admin = s->next_admin;
5142 }
5143 }
5144
5145 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005146 *s->adm_st_chg_cause = 0;
5147}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005148
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005149struct task *srv_cleanup_toremove_connections(struct task *task, void *context, unsigned short state)
5150{
5151 struct connection *conn;
5152
Olivier Houchard859dc802019-08-08 15:47:21 +02005153 while ((conn = MT_LIST_POP(&toremove_connections[tid],
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005154 struct connection *, list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005155 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005156 }
5157
5158 return task;
5159}
5160
Willy Tarreau980855b2019-02-07 14:59:29 +01005161struct task *srv_cleanup_idle_connections(struct task *task, void *context, unsigned short state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005162{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005163 struct server *srv;
5164 struct eb32_node *eb;
5165 int i;
5166 unsigned int next_wakeup;
5167 int need_wakeup = 0;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005168
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005169 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5170 while (1) {
5171 int srv_is_empty = 1;
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005172 int exceed_conns;
5173 int to_kill;
5174 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005175
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005176 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5177 if (!eb) {
5178 /* we might have reached the end of the tree, typically because
5179 * <now_ms> is in the first half and we're first scanning the last
5180 * half. Let's loop back to the beginning of the tree now.
5181 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005182
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005183 eb = eb32_first(&idle_conn_srv);
5184 if (likely(!eb))
5185 break;
5186 }
5187 if (tick_is_lt(now_ms, eb->key)) {
5188 /* timer not expired yet, revisit it later */
5189 next_wakeup = eb->key;
5190 need_wakeup = 1;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005191 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005192 }
5193 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005194
5195 /* Calculate how many idle connections we want to kill :
5196 * we want to remove half the difference between the total
5197 * of established connections (used or idle) and the max
5198 * number of used connections.
5199 */
5200 curr_idle = srv->curr_idle_conns;
5201 if (curr_idle == 0)
5202 goto remove;
5203 exceed_conns = srv->curr_used_conns + curr_idle -
5204 srv->max_used_conns;
5205 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
5206 srv->max_used_conns = srv->curr_used_conns;
5207
5208 for (i = 0; i < global.nbthread && to_kill > 0; i++) {
5209 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005210 int j;
5211 int did_remove = 0;
5212
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005213 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5214 curr_idle + 1;
Olivier Houchard4be71902019-07-11 15:49:00 +02005215 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[i]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005216 for (j = 0; j < max_conn; j++) {
Olivier Houcharddc2f2752020-02-13 19:12:07 +01005217 struct connection *conn = MT_LIST_POP(&srv->idle_conns[i], struct connection *, list);
5218 if (!conn)
5219 conn = MT_LIST_POP(&srv->safe_conns[i],
5220 struct connection *, list);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005221 if (!conn)
5222 break;
5223 did_remove = 1;
Olivier Houchard859dc802019-08-08 15:47:21 +02005224 MT_LIST_ADDQ(&toremove_connections[i], (struct mt_list *)&conn->list);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005225 }
Olivier Houchard4be71902019-07-11 15:49:00 +02005226 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[i]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005227 if (did_remove && max_conn < srv->curr_idle_thr[i])
5228 srv_is_empty = 0;
5229 if (did_remove)
5230 task_wakeup(idle_conn_cleanup[i], TASK_WOKEN_OTHER);
5231 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005232remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005233 eb32_delete(&srv->idle_node);
5234 if (!srv_is_empty) {
5235 /* There are still more idle connections, add the
5236 * server back in the tree.
5237 */
5238 srv->idle_node.key = tick_add(srv->pool_purge_delay,
5239 now_ms);
5240 eb32_insert(&idle_conn_srv, &srv->idle_node);
5241 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005242 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005243 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5244
5245 if (need_wakeup)
5246 task->expire = next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005247 else
5248 task->expire = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005249
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005250 return task;
5251}
Olivier Houchard88698d92019-04-16 19:07:22 +02005252
5253/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5254static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
5255 struct proxy *defpx, const char *file, int line,
5256 char **err)
5257{
5258 int arg = -1;
5259
5260 if (too_many_args(1, args, err, NULL))
5261 return -1;
5262
5263 if (*(args[1]) != 0)
5264 arg = atoi(args[1]);
5265
5266 if (arg < 0 || arg > 100) {
5267 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5268 return -1;
5269 }
5270
5271 if (args[0][10] == 'h')
5272 global.tune.pool_high_ratio = arg;
5273 else
5274 global.tune.pool_low_ratio = arg;
5275 return 0;
5276}
5277
5278/* config keyword parsers */
5279static struct cfg_kw_list cfg_kws = {ILH, {
5280 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5281 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5282 { 0, NULL, NULL }
5283}};
5284
5285INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5286
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005287/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005288 * Local variables:
5289 * c-indent-level: 8
5290 * c-basic-offset: 8
5291 * End:
5292 */