blob: e3a74498dfb9418559698bd7ab42f39058c621dd [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
1761 srv->check.status = HCHK_STATUS_INI;
1762 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01001763 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02001764 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001765
1766 srv->agent.status = HCHK_STATUS_INI;
1767 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01001768 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001769 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
1770
Willy Tarreau975b1552019-06-06 16:25:55 +02001771 /* please don't put default server settings here, they are set in
1772 * init_default_instance().
1773 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001774 return srv;
1775}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001776
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001777#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1778static int server_sni_expr_init(const char *file, int linenum, char **args, int cur_arg,
1779 struct server *srv, struct proxy *proxy)
1780{
1781 int ret;
1782 char *err = NULL;
1783
1784 if (!srv->sni_expr)
1785 return 0;
1786
1787 ret = server_parse_sni_expr(srv, proxy, &err);
1788 if (!ret)
1789 return 0;
1790
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001791 display_parser_err(file, linenum, args, cur_arg, ret, &err);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001792 free(err);
1793
1794 return ret;
1795}
1796#endif
1797
1798/*
1799 * Server initializations finalization.
1800 * Initialize health check, agent check and SNI expression if enabled.
1801 * Must not be called for a default server instance.
1802 */
1803static int server_finalize_init(const char *file, int linenum, char **args, int cur_arg,
1804 struct server *srv, struct proxy *px)
1805{
1806 int ret;
1807
Christopher Faulet8892e5d2020-03-26 19:48:20 +01001808 if (srv->do_check && srv->trackit) {
1809 ha_alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1810 file, linenum);
1811 return ERR_ALERT | ERR_FATAL;
1812 }
1813
1814 if (srv->do_agent && !srv->agent.port) {
1815 ha_alert("parsing [%s:%d] : server %s does not have agent port. Agent check has been disabled.\n",
1816 file, linenum, srv->id);
1817 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001818 }
1819
1820#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1821 if ((ret = server_sni_expr_init(file, linenum, args, cur_arg, srv, px)) != 0)
1822 return ret;
1823#endif
1824
1825 if (srv->flags & SRV_F_BACKUP)
1826 px->srv_bck++;
1827 else
1828 px->srv_act++;
1829 srv_lb_commit_status(srv);
1830
1831 return 0;
1832}
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001833
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001834/*
1835 * Parse as much as possible such a range string argument: low[-high]
1836 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
1837 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
1838 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
1839 * Returns 0 if succeeded, -1 if not.
1840 */
1841static int srv_tmpl_parse_range(struct server *srv, const char *arg, int *nb_low, int *nb_high)
1842{
1843 char *nb_high_arg;
1844
1845 *nb_high = 0;
1846 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001847 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001848
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001849 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001850 *nb_high_arg++ = '\0';
1851 *nb_high = atoi(nb_high_arg);
1852 }
1853 else {
1854 *nb_high += *nb_low;
1855 *nb_low = 1;
1856 }
1857
1858 if (*nb_low < 0 || *nb_high < *nb_low)
1859 return -1;
1860
1861 return 0;
1862}
1863
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001864static inline void srv_set_id_from_prefix(struct server *srv, const char *prefix, int nb)
1865{
1866 chunk_printf(&trash, "%s%d", prefix, nb);
1867 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001868 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001869}
1870
1871/*
1872 * Initialize as much as possible servers from <srv> server template.
1873 * Note that a server template is a special server with
1874 * a few different parameters than a server which has
1875 * been parsed mostly the same way as a server.
Joseph Herlant44466822018-11-15 08:57:51 -08001876 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001877 * 'srv' template included.
1878 */
1879static int server_template_init(struct server *srv, struct proxy *px)
1880{
1881 int i;
1882 struct server *newsrv;
1883
1884 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 +02001885 newsrv = new_server(px);
1886 if (!newsrv)
1887 goto err;
1888
1889 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001890 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001891#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1892 if (newsrv->sni_expr) {
1893 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
1894 if (!newsrv->ssl_ctx.sni)
1895 goto err;
1896 }
1897#endif
1898 /* Set this new server ID. */
1899 srv_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
1900
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001901 /* Linked backwards first. This will be restablished after parsing. */
1902 newsrv->next = px->srv;
1903 px->srv = newsrv;
1904 }
1905 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1906
1907 return i - srv->tmpl_info.nb_low;
1908
1909 err:
1910 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1911 if (newsrv) {
1912#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1913 release_sample_expr(newsrv->ssl_ctx.sni);
1914#endif
1915 free_check(&newsrv->agent);
1916 free_check(&newsrv->check);
1917 }
1918 free(newsrv);
1919 return i - srv->tmpl_info.nb_low;
1920}
1921
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +02001922int 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 +02001923{
1924 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001925 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001926 char *errmsg = NULL;
1927 int err_code = 0;
1928 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +02001929 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001930
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001931 if (!strcmp(args[0], "server") ||
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02001932 !strcmp(args[0], "peer") ||
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001933 !strcmp(args[0], "default-server") ||
1934 !strcmp(args[0], "server-template")) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001935 int cur_arg;
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001936 int defsrv = (*args[0] == 'd');
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02001937 int srv = !defsrv && (*args[0] == 'p' || !strcmp(args[0], "server"));
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001938 int srv_tmpl = !defsrv && !srv;
1939 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02001940
1941 if (!defsrv && curproxy == defproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001942 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001943 err_code |= ERR_ALERT | ERR_FATAL;
1944 goto out;
1945 }
1946 else if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL))
Olivier Houchard306e6532018-07-24 16:48:59 +02001947 err_code |= ERR_WARN;
Willy Tarreau272adea2014-03-31 10:39:59 +02001948
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001949 /* There is no mandatory first arguments for default server. */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01001950 if (srv && parse_addr) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001951 if (!*args[2]) {
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +02001952 if (in_peers_section) {
1953 return 0;
1954 }
1955 else {
1956 /* 'server' line number of argument check. */
1957 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1958 file, linenum, args[0]);
1959 err_code |= ERR_ALERT | ERR_FATAL;
1960 goto out;
1961 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001962 }
1963
1964 err = invalid_char(args[1]);
1965 }
1966 else if (srv_tmpl) {
1967 if (!*args[3]) {
1968 /* 'server-template' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001969 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 +02001970 file, linenum, args[0]);
1971 err_code |= ERR_ALERT | ERR_FATAL;
1972 goto out;
1973 }
1974
1975 err = invalid_prefix_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001976 }
1977
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001978 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001979 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 +02001980 file, linenum, *err, args[0], srv ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001981 err_code |= ERR_ALERT | ERR_FATAL;
1982 goto out;
1983 }
1984
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001985 cur_arg = 2;
1986 if (srv_tmpl) {
1987 /* Parse server-template <nb | range> arg. */
1988 if (srv_tmpl_parse_range(newsrv, args[cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001989 ha_alert("parsing [%s:%d] : Wrong %s number or range arg '%s'.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001990 file, linenum, args[0], args[cur_arg]);
1991 err_code |= ERR_ALERT | ERR_FATAL;
1992 goto out;
1993 }
1994 cur_arg++;
1995 }
1996
Willy Tarreau272adea2014-03-31 10:39:59 +02001997 if (!defsrv) {
1998 struct sockaddr_storage *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01001999 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002000 struct protocol *proto;
2001
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002002 newsrv = new_server(curproxy);
2003 if (!newsrv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002004 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Willy Tarreau272adea2014-03-31 10:39:59 +02002005 err_code |= ERR_ALERT | ERR_ABORT;
2006 goto out;
2007 }
2008
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002009 if (srv_tmpl) {
2010 newsrv->tmpl_info.nb_low = tmpl_range_low;
2011 newsrv->tmpl_info.nb_high = tmpl_range_high;
2012 }
2013
Willy Tarreau272adea2014-03-31 10:39:59 +02002014 /* the servers are linked backwards first */
2015 newsrv->next = curproxy->srv;
2016 curproxy->srv = newsrv;
Willy Tarreau272adea2014-03-31 10:39:59 +02002017 newsrv->conf.file = strdup(file);
2018 newsrv->conf.line = linenum;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002019 /* Note: for a server template, its id is its prefix.
2020 * This is a temporary id which will be used for server allocations to come
2021 * after parsing.
2022 */
2023 if (srv)
2024 newsrv->id = strdup(args[1]);
2025 else
2026 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002027
2028 /* several ways to check the port component :
2029 * - IP => port=+0, relative (IPv4 only)
2030 * - IP: => port=+0, relative
2031 * - IP:N => port=N, absolute
2032 * - IP:+N => port=+N, relative
2033 * - IP:-N => port=-N, relative
2034 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002035 if (!parse_addr)
2036 goto skip_addr;
2037
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002038 sk = str2sa_range(args[cur_arg], &port, &port1, &port2, &errmsg, NULL, &fqdn, 0);
Willy Tarreau272adea2014-03-31 10:39:59 +02002039 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002040 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau272adea2014-03-31 10:39:59 +02002041 err_code |= ERR_ALERT | ERR_FATAL;
2042 goto out;
2043 }
2044
2045 proto = protocol_by_family(sk->ss_family);
Willy Tarreau9698f4b2017-01-06 18:42:57 +01002046 if (!fqdn && (!proto || !proto->connect)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002047 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002048 file, linenum, args[0], args[1]);
2049 err_code |= ERR_ALERT | ERR_FATAL;
2050 goto out;
2051 }
2052
2053 if (!port1 || !port2) {
2054 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +02002055 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +02002056 }
2057 else if (port1 != port2) {
2058 /* port range */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002059 ha_alert("parsing [%s:%d] : '%s %s' : port ranges are not allowed in '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002060 file, linenum, args[0], args[1], args[2]);
2061 err_code |= ERR_ALERT | ERR_FATAL;
2062 goto out;
2063 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002064
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002065 /* save hostname and create associated name resolution */
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002066 if (fqdn) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002067 if (fqdn[0] == '_') { /* SRV record */
Olivier Houchard8da5f982017-08-04 18:35:36 +02002068 /* Check if a SRV request already exists, and if not, create it */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002069 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2070 newsrv->srvrq = new_dns_srvrq(newsrv, fqdn);
2071 if (newsrv->srvrq == NULL) {
Olivier Houchard8da5f982017-08-04 18:35:36 +02002072 err_code |= ERR_ALERT | ERR_FATAL;
2073 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002074 }
2075 }
2076 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002077 ha_alert("parsing [%s:%d] : Can't create DNS resolution for server '%s'\n",
Christopher Faulet67957bd2017-09-27 11:00:59 +02002078 file, linenum, newsrv->id);
2079 err_code |= ERR_ALERT | ERR_FATAL;
2080 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002081 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002082 }
2083
Willy Tarreau272adea2014-03-31 10:39:59 +02002084 newsrv->addr = *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002085 newsrv->svc_port = port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002086
Olivier Houchard8da5f982017-08-04 18:35:36 +02002087 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002088 ha_alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002089 file, linenum, newsrv->addr.ss_family, args[cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002090 err_code |= ERR_ALERT | ERR_FATAL;
2091 goto out;
2092 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002093
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002094 cur_arg++;
2095 skip_addr:
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002096 /* Copy default server settings to new server settings. */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002097 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002098 HA_SPIN_INIT(&newsrv->lock);
Willy Tarreau272adea2014-03-31 10:39:59 +02002099 } else {
2100 newsrv = &curproxy->defsrv;
2101 cur_arg = 1;
Thierry Fournierada34842016-02-17 21:25:09 +01002102 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002103 newsrv->dns_opts.accept_duplicate_ip = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002104 }
2105
2106 while (*args[cur_arg]) {
Christopher Fauletcbba66c2020-04-06 14:26:30 +02002107 if (!strcmp(args[cur_arg], "init-addr")) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002108 char *p, *end;
2109 int done;
Willy Tarreau4310d362016-11-02 15:05:56 +01002110 struct sockaddr_storage sa;
Baptiste Assmann25938272016-09-21 20:26:16 +02002111
2112 newsrv->init_addr_methods = 0;
2113 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
2114
2115 for (p = args[cur_arg + 1]; *p; p = end) {
2116 /* cut on next comma */
2117 for (end = p; *end && *end != ','; end++);
2118 if (*end)
2119 *(end++) = 0;
2120
Willy Tarreau4310d362016-11-02 15:05:56 +01002121 memset(&sa, 0, sizeof(sa));
Baptiste Assmann25938272016-09-21 20:26:16 +02002122 if (!strcmp(p, "libc")) {
2123 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
2124 }
2125 else if (!strcmp(p, "last")) {
2126 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
2127 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01002128 else if (!strcmp(p, "none")) {
2129 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
2130 }
Willy Tarreau4310d362016-11-02 15:05:56 +01002131 else if (str2ip2(p, &sa, 0)) {
2132 if (is_addr(&newsrv->init_addr)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002133 ha_alert("parsing [%s:%d]: '%s' : initial address already specified, cannot add '%s'.\n",
Willy Tarreau4310d362016-11-02 15:05:56 +01002134 file, linenum, args[cur_arg], p);
2135 err_code |= ERR_ALERT | ERR_FATAL;
2136 goto out;
2137 }
2138 newsrv->init_addr = sa;
2139 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
2140 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002141 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002142 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 +02002143 file, linenum, args[cur_arg], p);
2144 err_code |= ERR_ALERT | ERR_FATAL;
2145 goto out;
2146 }
2147 if (!done) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002148 ha_alert("parsing [%s:%d]: '%s' : too many init-addr methods when trying to add '%s'\n",
Baptiste Assmann25938272016-09-21 20:26:16 +02002149 file, linenum, args[cur_arg], p);
2150 err_code |= ERR_ALERT | ERR_FATAL;
2151 goto out;
2152 }
2153 }
2154 cur_arg += 2;
2155 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002156 else if (!strcmp(args[cur_arg], "resolvers")) {
Frédéric Lécailledaa2fe62017-04-20 12:17:50 +02002157 free(newsrv->resolvers_id);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002158 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
2159 cur_arg += 2;
2160 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002161 else if (!strcmp(args[cur_arg], "resolve-opts")) {
2162 char *p, *end;
2163
2164 for (p = args[cur_arg + 1]; *p; p = end) {
2165 /* cut on next comma */
2166 for (end = p; *end && *end != ','; end++);
2167 if (*end)
2168 *(end++) = 0;
2169
2170 if (!strcmp(p, "allow-dup-ip")) {
2171 newsrv->dns_opts.accept_duplicate_ip = 1;
2172 }
Daniel Corbettf8716912019-11-17 09:48:56 -05002173 else if (!strcmp(p, "ignore-weight")) {
2174 newsrv->dns_opts.ignore_weight = 1;
2175 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002176 else if (!strcmp(p, "prevent-dup-ip")) {
2177 newsrv->dns_opts.accept_duplicate_ip = 0;
2178 }
2179 else {
Daniel Corbettf8716912019-11-17 09:48:56 -05002180 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 +02002181 file, linenum, args[cur_arg], p);
2182 err_code |= ERR_ALERT | ERR_FATAL;
2183 goto out;
2184 }
2185 }
2186
2187 cur_arg += 2;
2188 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002189 else if (!strcmp(args[cur_arg], "resolve-prefer")) {
2190 if (!strcmp(args[cur_arg + 1], "ipv4"))
Thierry Fournierada34842016-02-17 21:25:09 +01002191 newsrv->dns_opts.family_prio = AF_INET;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002192 else if (!strcmp(args[cur_arg + 1], "ipv6"))
Thierry Fournierada34842016-02-17 21:25:09 +01002193 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002194 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002195 ha_alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002196 file, linenum, args[cur_arg]);
2197 err_code |= ERR_ALERT | ERR_FATAL;
2198 goto out;
2199 }
2200 cur_arg += 2;
2201 }
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002202 else if (!strcmp(args[cur_arg], "resolve-net")) {
2203 char *p, *e;
2204 unsigned char mask;
2205 struct dns_options *opt;
2206
2207 if (!args[cur_arg + 1] || args[cur_arg + 1][0] == '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002208 ha_alert("parsing [%s:%d]: '%s' expects a list of networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002209 file, linenum, args[cur_arg]);
2210 err_code |= ERR_ALERT | ERR_FATAL;
2211 goto out;
2212 }
2213
2214 opt = &newsrv->dns_opts;
2215
2216 /* Split arguments by comma, and convert it from ipv4 or ipv6
2217 * string network in in_addr or in6_addr.
2218 */
2219 p = args[cur_arg + 1];
2220 e = p;
2221 while (*p != '\0') {
Joseph Herlant44466822018-11-15 08:57:51 -08002222 /* If no room available, return error. */
David Carlierd10025c2016-04-08 10:26:44 +01002223 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002224 ha_alert("parsing [%s:%d]: '%s' exceed %d networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002225 file, linenum, args[cur_arg], SRV_MAX_PREF_NET);
2226 err_code |= ERR_ALERT | ERR_FATAL;
2227 goto out;
2228 }
2229 /* look for end or comma. */
2230 while (*e != ',' && *e != '\0')
2231 e++;
2232 if (*e == ',') {
2233 *e = '\0';
2234 e++;
2235 }
2236 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
2237 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
2238 /* Try to convert input string from ipv4 or ipv6 network. */
2239 opt->pref_net[opt->pref_net_nb].family = AF_INET;
2240 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
2241 &mask)) {
2242 /* Try to convert input string from ipv6 network. */
2243 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
2244 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
2245 } else {
2246 /* All network conversions fail, retrun error. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002247 ha_alert("parsing [%s:%d]: '%s': invalid network '%s'.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002248 file, linenum, args[cur_arg], p);
2249 err_code |= ERR_ALERT | ERR_FATAL;
2250 goto out;
2251 }
2252 opt->pref_net_nb++;
2253 p = e;
2254 }
2255
2256 cur_arg += 2;
2257 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002258 else if (!strcmp(args[cur_arg], "weight")) {
2259 int w;
2260 w = atol(args[cur_arg + 1]);
2261 if (w < 0 || w > SRV_UWGHT_MAX) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002262 ha_alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002263 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
2264 err_code |= ERR_ALERT | ERR_FATAL;
2265 goto out;
2266 }
2267 newsrv->uweight = newsrv->iweight = w;
2268 cur_arg += 2;
2269 }
2270 else if (!strcmp(args[cur_arg], "minconn")) {
2271 newsrv->minconn = atol(args[cur_arg + 1]);
2272 cur_arg += 2;
2273 }
2274 else if (!strcmp(args[cur_arg], "maxconn")) {
2275 newsrv->maxconn = atol(args[cur_arg + 1]);
2276 cur_arg += 2;
2277 }
2278 else if (!strcmp(args[cur_arg], "maxqueue")) {
2279 newsrv->maxqueue = atol(args[cur_arg + 1]);
2280 cur_arg += 2;
2281 }
2282 else if (!strcmp(args[cur_arg], "slowstart")) {
2283 /* slowstart is stored in seconds */
2284 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02002285
2286 if (err == PARSE_TIME_OVER) {
2287 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).\n",
2288 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2289 err_code |= ERR_ALERT | ERR_FATAL;
2290 goto out;
2291 }
2292 else if (err == PARSE_TIME_UNDER) {
2293 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.\n",
2294 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2295 err_code |= ERR_ALERT | ERR_FATAL;
2296 goto out;
2297 }
2298 else if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002299 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002300 file, linenum, *err, newsrv->id);
2301 err_code |= ERR_ALERT | ERR_FATAL;
2302 goto out;
2303 }
2304 newsrv->slowstart = (val + 999) / 1000;
2305 cur_arg += 2;
2306 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002307 else if (!strcmp(args[cur_arg], "on-error")) {
2308 if (!strcmp(args[cur_arg + 1], "fastinter"))
2309 newsrv->onerror = HANA_ONERR_FASTINTER;
2310 else if (!strcmp(args[cur_arg + 1], "fail-check"))
2311 newsrv->onerror = HANA_ONERR_FAILCHK;
2312 else if (!strcmp(args[cur_arg + 1], "sudden-death"))
2313 newsrv->onerror = HANA_ONERR_SUDDTH;
2314 else if (!strcmp(args[cur_arg + 1], "mark-down"))
2315 newsrv->onerror = HANA_ONERR_MARKDWN;
2316 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002317 ha_alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
Willy Tarreau272adea2014-03-31 10:39:59 +02002318 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
2319 file, linenum, args[cur_arg], args[cur_arg + 1]);
2320 err_code |= ERR_ALERT | ERR_FATAL;
2321 goto out;
2322 }
2323
2324 cur_arg += 2;
2325 }
2326 else if (!strcmp(args[cur_arg], "on-marked-down")) {
2327 if (!strcmp(args[cur_arg + 1], "shutdown-sessions"))
2328 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
2329 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002330 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002331 file, linenum, args[cur_arg], args[cur_arg + 1]);
2332 err_code |= ERR_ALERT | ERR_FATAL;
2333 goto out;
2334 }
2335
2336 cur_arg += 2;
2337 }
2338 else if (!strcmp(args[cur_arg], "on-marked-up")) {
2339 if (!strcmp(args[cur_arg + 1], "shutdown-backup-sessions"))
2340 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
2341 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002342 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002343 file, linenum, args[cur_arg], args[cur_arg + 1]);
2344 err_code |= ERR_ALERT | ERR_FATAL;
2345 goto out;
2346 }
2347
2348 cur_arg += 2;
2349 }
2350 else if (!strcmp(args[cur_arg], "error-limit")) {
2351 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002352 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002353 file, linenum, args[cur_arg]);
2354 err_code |= ERR_ALERT | ERR_FATAL;
2355 goto out;
2356 }
2357
2358 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
2359
2360 if (newsrv->consecutive_errors_limit <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002361 ha_alert("parsing [%s:%d]: %s has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002362 file, linenum, args[cur_arg]);
2363 err_code |= ERR_ALERT | ERR_FATAL;
2364 goto out;
2365 }
2366 cur_arg += 2;
2367 }
Frédéric Lécaille8d083ed2017-04-14 15:19:56 +02002368 else if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside: needs "source" first */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002369 ha_alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002370 file, linenum, "usesrc", "source");
2371 err_code |= ERR_ALERT | ERR_FATAL;
2372 goto out;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002373 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002374 else {
2375 static int srv_dumped;
2376 struct srv_kw *kw;
2377 char *err;
2378
2379 kw = srv_find_kw(args[cur_arg]);
2380 if (kw) {
2381 char *err = NULL;
2382 int code;
2383
2384 if (!kw->parse) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002385 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 +02002386 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002387 if (kw->skip != -1)
2388 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002389 err_code |= ERR_ALERT | ERR_FATAL;
2390 goto out;
2391 }
2392
2393 if (defsrv && !kw->default_ok) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002394 ha_alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002395 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002396 if (kw->skip != -1)
2397 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002398 err_code |= ERR_ALERT;
2399 continue;
2400 }
2401
2402 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
2403 err_code |= code;
2404
2405 if (code) {
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002406 display_parser_err(file, linenum, args, cur_arg, code, &err);
Willy Tarreau272adea2014-03-31 10:39:59 +02002407 if (code & ERR_FATAL) {
2408 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002409 if (kw->skip != -1)
2410 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002411 goto out;
2412 }
2413 }
2414 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002415 if (kw->skip != -1)
2416 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002417 continue;
2418 }
2419
2420 err = NULL;
2421 if (!srv_dumped) {
2422 srv_dump_kws(&err);
2423 indent_msg(&err, 4);
2424 srv_dumped = 1;
2425 }
2426
Christopher Faulet767a84b2017-11-24 16:50:31 +01002427 ha_alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002428 file, linenum, args[0], args[1], args[cur_arg],
2429 err ? " Registered keywords :" : "", err ? err : "");
2430 free(err);
2431
2432 err_code |= ERR_ALERT | ERR_FATAL;
2433 goto out;
2434 }
2435 }
2436
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002437 if (!defsrv)
2438 err_code |= server_finalize_init(file, linenum, args, cur_arg, newsrv, curproxy);
2439 if (err_code & ERR_FATAL)
2440 goto out;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002441 if (srv_tmpl)
2442 server_template_init(newsrv, curproxy);
Willy Tarreau272adea2014-03-31 10:39:59 +02002443 }
Willy Tarreau07101d52015-09-08 16:16:35 +02002444 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002445 return 0;
2446
2447 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02002448 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002449 free(errmsg);
2450 return err_code;
2451}
2452
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002453/* Returns a pointer to the first server matching either id <id>.
2454 * NULL is returned if no match is found.
2455 * the lookup is performed in the backend <bk>
2456 */
2457struct server *server_find_by_id(struct proxy *bk, int id)
2458{
2459 struct eb32_node *eb32;
2460 struct server *curserver;
2461
2462 if (!bk || (id ==0))
2463 return NULL;
2464
2465 /* <bk> has no backend capabilities, so it can't have a server */
2466 if (!(bk->cap & PR_CAP_BE))
2467 return NULL;
2468
2469 curserver = NULL;
2470
2471 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2472 if (eb32)
2473 curserver = container_of(eb32, struct server, conf.id);
2474
2475 return curserver;
2476}
2477
2478/* Returns a pointer to the first server matching either name <name>, or id
2479 * if <name> starts with a '#'. NULL is returned if no match is found.
2480 * the lookup is performed in the backend <bk>
2481 */
2482struct server *server_find_by_name(struct proxy *bk, const char *name)
2483{
2484 struct server *curserver;
2485
2486 if (!bk || !name)
2487 return NULL;
2488
2489 /* <bk> has no backend capabilities, so it can't have a server */
2490 if (!(bk->cap & PR_CAP_BE))
2491 return NULL;
2492
2493 curserver = NULL;
2494 if (*name == '#') {
2495 curserver = server_find_by_id(bk, atoi(name + 1));
2496 if (curserver)
2497 return curserver;
2498 }
2499 else {
2500 curserver = bk->srv;
2501
2502 while (curserver && (strcmp(curserver->id, name) != 0))
2503 curserver = curserver->next;
2504
2505 if (curserver)
2506 return curserver;
2507 }
2508
2509 return NULL;
2510}
2511
2512struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2513{
2514 struct server *byname;
2515 struct server *byid;
2516
2517 if (!name && !id)
2518 return NULL;
2519
2520 if (diff)
2521 *diff = 0;
2522
2523 byname = byid = NULL;
2524
2525 if (name) {
2526 byname = server_find_by_name(bk, name);
2527 if (byname && (!id || byname->puid == id))
2528 return byname;
2529 }
2530
2531 /* remaining possibilities :
2532 * - name not set
2533 * - name set but not found
2534 * - name found but ID doesn't match
2535 */
2536 if (id) {
2537 byid = server_find_by_id(bk, id);
2538 if (byid) {
2539 if (byname) {
2540 /* use id only if forced by configuration */
2541 if (byid->flags & SRV_F_FORCED_ID) {
2542 if (diff)
2543 *diff |= 2;
2544 return byid;
2545 }
2546 else {
2547 if (diff)
2548 *diff |= 1;
2549 return byname;
2550 }
2551 }
2552
2553 /* remaining possibilities:
2554 * - name not set
2555 * - name set but not found
2556 */
2557 if (name && diff)
2558 *diff |= 2;
2559 return byid;
2560 }
2561
2562 /* id bot found */
2563 if (byname) {
2564 if (diff)
2565 *diff |= 1;
2566 return byname;
2567 }
2568 }
2569
2570 return NULL;
2571}
2572
Willy Tarreau46b7f532018-08-21 11:54:26 +02002573/* Update a server state using the parameters available in the params list.
2574 *
2575 * Grabs the server lock during operation.
2576 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002577static void srv_update_state(struct server *srv, int version, char **params)
2578{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002579 char *p;
Willy Tarreau83061a82018-07-13 11:56:34 +02002580 struct buffer *msg;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002581
2582 /* fields since version 1
2583 * and common to all other upcoming versions
2584 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002585 enum srv_state srv_op_state;
2586 enum srv_admin srv_admin_state;
2587 unsigned srv_uweight, srv_iweight;
2588 unsigned long srv_last_time_change;
2589 short srv_check_status;
2590 enum chk_result srv_check_result;
2591 int srv_check_health;
2592 int srv_check_state, srv_agent_state;
2593 int bk_f_forced_id;
2594 int srv_f_forced_id;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002595 int fqdn_set_by_cli;
2596 const char *fqdn;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002597 const char *port_str;
2598 unsigned int port;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002599 char *srvrecord;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002600
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002601 fqdn = NULL;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002602 port = 0;
Willy Tarreau31138fa2015-09-29 18:38:47 +02002603 msg = get_trash_chunk();
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002604 switch (version) {
2605 case 1:
2606 /*
2607 * now we can proceed with server's state update:
2608 * srv_addr: params[0]
2609 * srv_op_state: params[1]
2610 * srv_admin_state: params[2]
2611 * srv_uweight: params[3]
2612 * srv_iweight: params[4]
2613 * srv_last_time_change: params[5]
2614 * srv_check_status: params[6]
2615 * srv_check_result: params[7]
2616 * srv_check_health: params[8]
2617 * srv_check_state: params[9]
2618 * srv_agent_state: params[10]
2619 * bk_f_forced_id: params[11]
2620 * srv_f_forced_id: params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002621 * srv_fqdn: params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02002622 * srv_port: params[14]
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002623 * srvrecord: params[15]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002624 */
2625
2626 /* validating srv_op_state */
2627 p = NULL;
2628 errno = 0;
2629 srv_op_state = strtol(params[1], &p, 10);
2630 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
2631 (srv_op_state != SRV_ST_STOPPED &&
2632 srv_op_state != SRV_ST_STARTING &&
2633 srv_op_state != SRV_ST_RUNNING &&
2634 srv_op_state != SRV_ST_STOPPING)) {
2635 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
2636 }
2637
2638 /* validating srv_admin_state */
2639 p = NULL;
2640 errno = 0;
2641 srv_admin_state = strtol(params[2], &p, 10);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002642 fqdn_set_by_cli = !!(srv_admin_state & SRV_ADMF_HMAINT);
Willy Tarreau757478e2016-11-03 19:22:19 +01002643
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002644 /* inherited statuses will be recomputed later.
2645 * Also disable SRV_ADMF_HMAINT flag (set from stats socket fqdn).
2646 */
2647 srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_HMAINT;
Willy Tarreau757478e2016-11-03 19:22:19 +01002648
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002649 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
2650 (srv_admin_state != 0 &&
2651 srv_admin_state != SRV_ADMF_FMAINT &&
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002652 srv_admin_state != SRV_ADMF_CMAINT &&
2653 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
Willy Tarreaue1bde142016-11-03 18:33:25 +01002654 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FDRAIN) &&
Willy Tarreau757478e2016-11-03 19:22:19 +01002655 srv_admin_state != SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002656 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
2657 }
2658
2659 /* validating srv_uweight */
2660 p = NULL;
2661 errno = 0;
2662 srv_uweight = strtol(params[3], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002663 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002664 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
2665
2666 /* validating srv_iweight */
2667 p = NULL;
2668 errno = 0;
2669 srv_iweight = strtol(params[4], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002670 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002671 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
2672
2673 /* validating srv_last_time_change */
2674 p = NULL;
2675 errno = 0;
2676 srv_last_time_change = strtol(params[5], &p, 10);
2677 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2678 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
2679
2680 /* validating srv_check_status */
2681 p = NULL;
2682 errno = 0;
2683 srv_check_status = strtol(params[6], &p, 10);
2684 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2685 (srv_check_status >= HCHK_STATUS_SIZE))
2686 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
2687
2688 /* validating srv_check_result */
2689 p = NULL;
2690 errno = 0;
2691 srv_check_result = strtol(params[7], &p, 10);
2692 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2693 (srv_check_result != CHK_RES_UNKNOWN &&
2694 srv_check_result != CHK_RES_NEUTRAL &&
2695 srv_check_result != CHK_RES_FAILED &&
2696 srv_check_result != CHK_RES_PASSED &&
2697 srv_check_result != CHK_RES_CONDPASS)) {
2698 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2699 }
2700
2701 /* validating srv_check_health */
2702 p = NULL;
2703 errno = 0;
2704 srv_check_health = strtol(params[8], &p, 10);
2705 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2706 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
2707
2708 /* validating srv_check_state */
2709 p = NULL;
2710 errno = 0;
2711 srv_check_state = strtol(params[9], &p, 10);
2712 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2713 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2714 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
2715
2716 /* validating srv_agent_state */
2717 p = NULL;
2718 errno = 0;
2719 srv_agent_state = strtol(params[10], &p, 10);
2720 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2721 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2722 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
2723
2724 /* validating bk_f_forced_id */
2725 p = NULL;
2726 errno = 0;
2727 bk_f_forced_id = strtol(params[11], &p, 10);
2728 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
2729 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
2730
2731 /* validating srv_f_forced_id */
2732 p = NULL;
2733 errno = 0;
2734 srv_f_forced_id = strtol(params[12], &p, 10);
2735 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
2736 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
2737
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002738 /* validating srv_fqdn */
2739 fqdn = params[13];
2740 if (fqdn && *fqdn == '-')
2741 fqdn = NULL;
2742 if (fqdn && (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn))) {
2743 chunk_appendf(msg, ", invalid srv_fqdn value '%s'", params[13]);
2744 fqdn = NULL;
2745 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002746
Frédéric Lécaille31694712017-08-01 08:47:19 +02002747 port_str = params[14];
2748 if (port_str) {
2749 port = strl2uic(port_str, strlen(port_str));
2750 if (port > USHRT_MAX) {
2751 chunk_appendf(msg, ", invalid srv_port value '%s'", port_str);
2752 port_str = NULL;
2753 }
2754 }
2755
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002756 /* SRV record
2757 * NOTE: in HAProxy, SRV records must start with an underscore '_'
2758 */
2759 srvrecord = params[15];
2760 if (srvrecord && *srvrecord != '_')
2761 srvrecord = NULL;
2762
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002763 /* don't apply anything if one error has been detected */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002764 if (msg->data)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002765 goto out;
2766
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002767 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002768 /* recover operational state and apply it to this server
2769 * and all servers tracking this one */
Jérôme Magninf57afa42019-01-20 11:27:40 +01002770 srv->check.health = srv_check_health;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002771 switch (srv_op_state) {
2772 case SRV_ST_STOPPED:
2773 srv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02002774 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002775 break;
2776 case SRV_ST_STARTING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002777 /* If rise == 1 there is no STARTING state, let's switch to
2778 * RUNNING
2779 */
2780 if (srv->check.rise == 1) {
2781 srv->check.health = srv->check.rise + srv->check.fall - 1;
2782 srv_set_running(srv, "", NULL);
2783 break;
2784 }
2785 if (srv->check.health < 1 || srv->check.health >= srv->check.rise)
2786 srv->check.health = srv->check.rise - 1;
Emeric Brun52a91d32017-08-31 14:41:55 +02002787 srv->next_state = srv_op_state;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002788 break;
2789 case SRV_ST_STOPPING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002790 /* If fall == 1 there is no STOPPING state, let's switch to
2791 * STOPPED
2792 */
2793 if (srv->check.fall == 1) {
2794 srv->check.health = 0;
2795 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
2796 break;
2797 }
2798 if (srv->check.health < srv->check.rise ||
2799 srv->check.health > srv->check.rise + srv->check.fall - 2)
2800 srv->check.health = srv->check.rise;
Emeric Brun5a133512017-10-19 14:42:30 +02002801 srv_set_stopping(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002802 break;
2803 case SRV_ST_RUNNING:
2804 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02002805 srv_set_running(srv, "", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002806 break;
2807 }
2808
2809 /* When applying server state, the following rules apply:
2810 * - in case of a configuration change, we apply the setting from the new
2811 * configuration, regardless of old running state
2812 * - if no configuration change, we apply old running state only if old running
2813 * state is different from new configuration state
2814 */
2815 /* configuration has changed */
Emeric Brun52a91d32017-08-31 14:41:55 +02002816 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->next_admin & SRV_ADMF_CMAINT)) {
2817 if (srv->next_admin & SRV_ADMF_CMAINT)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002818 srv_adm_set_maint(srv);
2819 else
2820 srv_adm_set_ready(srv);
2821 }
2822 /* configuration is the same, let's compate old running state and new conf state */
2823 else {
Emeric Brun52a91d32017-08-31 14:41:55 +02002824 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002825 srv_adm_set_maint(srv);
Emeric Brun52a91d32017-08-31 14:41:55 +02002826 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002827 srv_adm_set_ready(srv);
2828 }
2829 /* apply drain mode if server is currently enabled */
Emeric Brun52a91d32017-08-31 14:41:55 +02002830 if (!(srv->next_admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002831 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
Willy Tarreau22cace22016-11-03 18:19:49 +01002832 * (srv->iweight is the weight set up in configuration).
2833 * There are two possible reasons for FDRAIN to have been present :
2834 * - previous config weight was zero
2835 * - "set server b/s drain" was sent to the CLI
2836 *
2837 * In the first case, we simply want to drop this drain state
2838 * if the new weight is not zero anymore, meaning the administrator
2839 * has intentionally turned the weight back to a positive value to
2840 * enable the server again after an operation. In the second case,
2841 * the drain state was forced on the CLI regardless of the config's
2842 * weight so we don't want a change to the config weight to lose this
2843 * status. What this means is :
2844 * - if previous weight was 0 and new one is >0, drop the DRAIN state.
2845 * - if the previous weight was >0, keep it.
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002846 */
Willy Tarreau22cace22016-11-03 18:19:49 +01002847 if (srv_iweight > 0 || srv->iweight == 0)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002848 srv_adm_set_drain(srv);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002849 }
2850
2851 srv->last_change = date.tv_sec - srv_last_time_change;
2852 srv->check.status = srv_check_status;
2853 srv->check.result = srv_check_result;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002854
2855 /* Only case we want to apply is removing ENABLED flag which could have been
2856 * done by the "disable health" command over the stats socket
2857 */
2858 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2859 (srv_check_state & CHK_ST_CONFIGURED) &&
2860 !(srv_check_state & CHK_ST_ENABLED))
2861 srv->check.state &= ~CHK_ST_ENABLED;
2862
2863 /* Only case we want to apply is removing ENABLED flag which could have been
2864 * done by the "disable agent" command over the stats socket
2865 */
2866 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
2867 (srv_agent_state & CHK_ST_CONFIGURED) &&
2868 !(srv_agent_state & CHK_ST_ENABLED))
2869 srv->agent.state &= ~CHK_ST_ENABLED;
2870
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002871 /* We want to apply the previous 'running' weight (srv_uweight) only if there
2872 * was no change in the configuration: both previous and new iweight are equals
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002873 *
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002874 * It means that a configuration file change has precedence over a unix socket change
2875 * for server's weight
2876 *
2877 * by default, HAProxy applies the following weight when parsing the configuration
2878 * srv->uweight = srv->iweight
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002879 */
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002880 if (srv_iweight == srv->iweight) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002881 srv->uweight = srv_uweight;
2882 }
Willy Tarreau3ff577e2018-08-02 11:48:52 +02002883 server_recalc_eweight(srv, 1);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002884
Willy Tarreaue5a60682016-11-09 14:54:53 +01002885 /* load server IP address */
Daniel Corbett9215ffa2018-05-19 19:43:24 -04002886 if (strcmp(params[0], "-"))
2887 srv->lastaddr = strdup(params[0]);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002888
2889 if (fqdn && srv->hostname) {
2890 if (!strcmp(srv->hostname, fqdn)) {
2891 /* Here we reset the 'set from stats socket FQDN' flag
2892 * to support such transitions:
2893 * Let's say initial FQDN value is foo1 (in configuration file).
2894 * - FQDN changed from stats socket, from foo1 to foo2 value,
2895 * - FQDN changed again from file configuration (with the same previous value
2896 set from stats socket, from foo1 to foo2 value),
2897 * - reload for any other reason than a FQDN modification,
2898 * the configuration file FQDN matches the fqdn server state file value.
2899 * So we must reset the 'set from stats socket FQDN' flag to be consistent with
Joseph Herlant44466822018-11-15 08:57:51 -08002900 * any further FQDN modification.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002901 */
Emeric Brun52a91d32017-08-31 14:41:55 +02002902 srv->next_admin &= ~SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002903 }
2904 else {
2905 /* If the FDQN has been changed from stats socket,
2906 * apply fqdn state file value (which is the value set
2907 * from stats socket).
Baptiste Assmann13a92322019-06-07 09:40:55 +02002908 * Also ensure the runtime resolver will process this resolution.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002909 */
2910 if (fqdn_set_by_cli) {
Olivier Houchardd16bfe62017-10-31 15:21:19 +01002911 srv_set_fqdn(srv, fqdn, 0);
Baptiste Assmann13a92322019-06-07 09:40:55 +02002912 srv->flags &= ~SRV_F_NO_RESOLUTION;
Emeric Brun52a91d32017-08-31 14:41:55 +02002913 srv->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002914 }
2915 }
2916 }
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002917 /* If all the conditions below are validated, this means
2918 * we're evaluating a server managed by SRV resolution
2919 */
2920 else if (fqdn && !srv->hostname && srvrecord) {
2921 int res;
2922
2923 /* we can't apply previous state if SRV record has changed */
2924 if (srv->srvrq && strcmp(srv->srvrq->name, srvrecord) != 0) {
2925 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);
2926 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2927 goto out;
2928 }
2929
2930 /* create or find a SRV resolution for this srv record */
2931 if (srv->srvrq == NULL && (srv->srvrq = find_srvrq_by_name(srvrecord, srv->proxy)) == NULL)
2932 srv->srvrq = new_dns_srvrq(srv, srvrecord);
2933 if (srv->srvrq == NULL) {
2934 chunk_appendf(msg, ", can't create or find SRV resolution '%s' for server '%s'", srvrecord, srv->id);
2935 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2936 goto out;
2937 }
2938
2939 /* prepare DNS resolution for this server */
2940 res = srv_prepare_for_resolution(srv, fqdn);
2941 if (res == -1) {
2942 chunk_appendf(msg, ", can't allocate memory for DNS resolution for server '%s'", srv->id);
2943 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2944 goto out;
2945 }
2946
2947 /* configure check.port accordingly */
2948 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2949 !(srv->flags & SRV_F_CHECKPORT))
2950 srv->check.port = port;
2951
2952 /* Unset SRV_F_MAPPORTS for SRV records.
2953 * SRV_F_MAPPORTS is unfortunately set by parse_server()
2954 * because no ports are provided in the configuration file.
2955 * This is because HAProxy will use the port found into the SRV record.
2956 */
2957 srv->flags &= ~SRV_F_MAPPORTS;
2958 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002959
Frédéric Lécaille31694712017-08-01 08:47:19 +02002960 if (port_str)
2961 srv->svc_port = port;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002962 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Frédéric Lécaille31694712017-08-01 08:47:19 +02002963
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002964 break;
2965 default:
2966 chunk_appendf(msg, ", version '%d' not supported", version);
2967 }
2968
2969 out:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002970 if (msg->data) {
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002971 chunk_appendf(msg, "\n");
Christopher Faulet767a84b2017-11-24 16:50:31 +01002972 ha_warning("server-state application failed for server '%s/%s'%s",
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002973 srv->proxy->id, srv->id, msg->area);
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002974 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002975}
2976
Baptiste Assmannda29fe22019-06-13 13:24:29 +02002977
2978/*
2979 * read next line from file <f> and return the server state version if one found.
2980 * If no version is found, then 0 is returned
2981 * Note that this should be the first read on <f>
2982 */
2983static int srv_state_get_version(FILE *f) {
2984 char buf[2];
2985 int ret;
2986
2987 /* first character of first line of the file must contain the version of the export */
2988 if (fgets(buf, 2, f) == NULL) {
2989 return 0;
2990 }
2991
2992 ret = atoi(buf);
2993 if ((ret < SRV_STATE_FILE_VERSION_MIN) ||
2994 (ret > SRV_STATE_FILE_VERSION_MAX))
2995 return 0;
2996
2997 return ret;
2998}
2999
3000
3001/*
3002 * parses server state line stored in <buf> and supposedly in version <version>.
3003 * Set <params> and <srv_params> accordingly.
3004 * In case of error, params[0] is set to NULL.
3005 */
3006static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params)
3007{
3008 int buflen, arg, srv_arg;
3009 char *cur, *end;
3010
3011 buflen = strlen(buf);
3012 cur = buf;
3013 end = cur + buflen;
3014
3015 /* we need at least one character */
3016 if (buflen == 0) {
3017 params[0] = NULL;
3018 return;
3019 }
3020
3021 /* ignore blank characters at the beginning of the line */
Willy Tarreau90807112020-02-25 08:16:33 +01003022 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003023 ++cur;
3024
3025 /* Ignore empty or commented lines */
3026 if (cur == end || *cur == '#') {
3027 params[0] = NULL;
3028 return;
3029 }
3030
3031 /* truncated lines */
3032 if (buf[buflen - 1] != '\n') {
3033 //ha_warning("server-state file '%s': truncated line\n", filepath);
3034 params[0] = NULL;
3035 return;
3036 }
3037
3038 /* Removes trailing '\n' */
3039 buf[buflen - 1] = '\0';
3040
3041 /* we're now ready to move the line into *srv_params[] */
3042 params[0] = cur;
3043 arg = 1;
3044 srv_arg = 0;
3045 while (*cur && arg < SRV_STATE_FILE_MAX_FIELDS) {
Willy Tarreau90807112020-02-25 08:16:33 +01003046 if (isspace((unsigned char)*cur)) {
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003047 *cur = '\0';
3048 ++cur;
Willy Tarreau90807112020-02-25 08:16:33 +01003049 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003050 ++cur;
3051 switch (version) {
3052 case 1:
3053 /*
3054 * srv_addr: params[4] => srv_params[0]
3055 * srv_op_state: params[5] => srv_params[1]
3056 * srv_admin_state: params[6] => srv_params[2]
3057 * srv_uweight: params[7] => srv_params[3]
3058 * srv_iweight: params[8] => srv_params[4]
3059 * srv_last_time_change: params[9] => srv_params[5]
3060 * srv_check_status: params[10] => srv_params[6]
3061 * srv_check_result: params[11] => srv_params[7]
3062 * srv_check_health: params[12] => srv_params[8]
3063 * srv_check_state: params[13] => srv_params[9]
3064 * srv_agent_state: params[14] => srv_params[10]
3065 * bk_f_forced_id: params[15] => srv_params[11]
3066 * srv_f_forced_id: params[16] => srv_params[12]
3067 * srv_fqdn: params[17] => srv_params[13]
3068 * srv_port: params[18] => srv_params[14]
3069 * srvrecord: params[19] => srv_params[15]
3070 */
3071 if (arg >= 4) {
3072 srv_params[srv_arg] = cur;
3073 ++srv_arg;
3074 }
3075 break;
3076 }
3077
3078 params[arg] = cur;
3079 ++arg;
3080 }
3081 else {
3082 ++cur;
3083 }
3084 }
3085
3086 /* if line is incomplete line, then ignore it.
3087 * otherwise, update useful flags */
3088 switch (version) {
3089 case 1:
3090 if (arg < SRV_STATE_FILE_NB_FIELDS_VERSION_1) {
3091 params[0] = NULL;
3092 return;
3093 }
3094 break;
3095 }
3096
3097 return;
3098}
3099
3100
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003101/* This function parses all the proxies and only take care of the backends (since we're looking for server)
3102 * For each proxy, it does the following:
3103 * - opens its server state file (either one or local one)
3104 * - read whole file, line by line
3105 * - analyse each line to check if it matches our current backend:
3106 * - backend name matches
3107 * - backend id matches if id is forced and name doesn't match
3108 * - if the server pointed by the line is found, then state is applied
3109 *
3110 * If the running backend uuid or id differs from the state file, then HAProxy reports
3111 * a warning.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003112 *
3113 * Grabs the server's lock via srv_update_state().
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003114 */
3115void apply_server_state(void)
3116{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003117 char mybuf[SRV_STATE_LINE_MAXLEN];
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003118 char *params[SRV_STATE_FILE_MAX_FIELDS] = {0};
3119 char *srv_params[SRV_STATE_FILE_MAX_FIELDS] = {0};
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003120 int version, global_file_version;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003121 FILE *f;
3122 char *filepath;
3123 char globalfilepath[MAXPATHLEN + 1];
3124 char localfilepath[MAXPATHLEN + 1];
3125 int len, fileopenerr, globalfilepathlen, localfilepathlen;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003126 struct proxy *curproxy, *bk;
3127 struct server *srv;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003128 char *line;
3129 char *bkname, *srvname;
3130 struct state_line *st;
3131 struct ebmb_node *node, *next_node;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003132
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003133
3134 global_file_version = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003135 globalfilepathlen = 0;
3136 /* create the globalfilepath variable */
3137 if (global.server_state_file) {
3138 /* absolute path or no base directory provided */
3139 if ((global.server_state_file[0] == '/') || (!global.server_state_base)) {
3140 len = strlen(global.server_state_file);
3141 if (len > MAXPATHLEN) {
3142 globalfilepathlen = 0;
3143 goto globalfileerror;
3144 }
3145 memcpy(globalfilepath, global.server_state_file, len);
3146 globalfilepath[len] = '\0';
3147 globalfilepathlen = len;
3148 }
3149 else if (global.server_state_base) {
3150 len = strlen(global.server_state_base);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003151 if (len > MAXPATHLEN) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003152 globalfilepathlen = 0;
3153 goto globalfileerror;
3154 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003155 memcpy(globalfilepath, global.server_state_base, len);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003156 globalfilepath[len] = 0;
3157 globalfilepathlen = len;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003158
3159 /* append a slash if needed */
3160 if (!globalfilepathlen || globalfilepath[globalfilepathlen - 1] != '/') {
3161 if (globalfilepathlen + 1 > MAXPATHLEN) {
3162 globalfilepathlen = 0;
3163 goto globalfileerror;
3164 }
3165 globalfilepath[globalfilepathlen++] = '/';
3166 }
3167
3168 len = strlen(global.server_state_file);
3169 if (globalfilepathlen + len > MAXPATHLEN) {
3170 globalfilepathlen = 0;
3171 goto globalfileerror;
3172 }
3173 memcpy(globalfilepath + globalfilepathlen, global.server_state_file, len);
3174 globalfilepathlen += len;
3175 globalfilepath[globalfilepathlen++] = 0;
3176 }
3177 }
3178 globalfileerror:
3179 if (globalfilepathlen == 0)
3180 globalfilepath[0] = '\0';
3181
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003182 /* Load global server state in a tree */
3183 if (globalfilepathlen > 0) {
3184 errno = 0;
3185 f = fopen(globalfilepath, "r");
3186 if (errno)
3187 ha_warning("Can't open global server state file '%s': %s\n", globalfilepath, strerror(errno));
Vedran Furac5d486272019-10-16 14:49:38 +02003188 if (!f)
3189 goto out_load_server_state_in_tree;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003190
3191 global_file_version = srv_state_get_version(f);
3192 if (global_file_version == 0)
3193 goto out_load_server_state_in_tree;
3194
3195 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3196 line = NULL;
3197
3198 line = strdup(mybuf);
3199 if (line == NULL)
3200 continue;
3201
3202 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3203 if (params[0] == NULL)
Willy Tarreauca7a5af2019-12-20 17:26:27 +01003204 goto nextline;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003205
3206 /* bkname */
3207 bkname = params[1];
3208 /* srvname */
3209 srvname = params[3];
3210
3211 /* key */
3212 chunk_printf(&trash, "%s %s", bkname, srvname);
3213
3214 /* store line in tree */
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003215 st = calloc(1, sizeof(*st) + trash.data + 1);
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003216 if (st == NULL) {
3217 goto nextline;
3218 }
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003219 memcpy(st->name_name.key, trash.area, trash.data + 1);
Willy Tarreaufd1aa012019-12-20 17:23:40 +01003220 if (ebst_insert(&state_file, &st->name_name) != &st->name_name) {
3221 /* this is a duplicate key, probably a hand-crafted file,
3222 * drop it!
3223 */
3224 goto nextline;
3225 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003226
3227 /* save line */
3228 st->line = line;
3229
3230 continue;
3231
3232 nextline:
3233 /* free up memory in case of error during the processing of the line */
3234 free(line);
3235 }
3236 }
3237 out_load_server_state_in_tree:
3238
3239 /* parse all proxies and load states form tree (global file) or from local file */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003240 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003241 /* servers are only in backends */
3242 if (!(curproxy->cap & PR_CAP_BE))
3243 continue;
3244 fileopenerr = 0;
3245 filepath = NULL;
3246
3247 /* search server state file path and name */
3248 switch (curproxy->load_server_state_from_file) {
3249 /* read servers state from global file */
3250 case PR_SRV_STATE_FILE_GLOBAL:
3251 /* there was an error while generating global server state file path */
3252 if (globalfilepathlen == 0)
3253 continue;
3254 filepath = globalfilepath;
3255 fileopenerr = 1;
3256 break;
3257 /* this backend has its own file */
3258 case PR_SRV_STATE_FILE_LOCAL:
3259 localfilepathlen = 0;
3260 localfilepath[0] = '\0';
3261 len = 0;
3262 /* create the localfilepath variable */
3263 /* absolute path or no base directory provided */
3264 if ((curproxy->server_state_file_name[0] == '/') || (!global.server_state_base)) {
3265 len = strlen(curproxy->server_state_file_name);
3266 if (len > MAXPATHLEN) {
3267 localfilepathlen = 0;
3268 goto localfileerror;
3269 }
3270 memcpy(localfilepath, curproxy->server_state_file_name, len);
3271 localfilepath[len] = '\0';
3272 localfilepathlen = len;
3273 }
3274 else if (global.server_state_base) {
3275 len = strlen(global.server_state_base);
3276 localfilepathlen += len;
3277
3278 if (localfilepathlen > MAXPATHLEN) {
3279 localfilepathlen = 0;
3280 goto localfileerror;
3281 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003282 memcpy(localfilepath, global.server_state_base, len);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003283 localfilepath[localfilepathlen] = 0;
3284
3285 /* append a slash if needed */
3286 if (!localfilepathlen || localfilepath[localfilepathlen - 1] != '/') {
3287 if (localfilepathlen + 1 > MAXPATHLEN) {
3288 localfilepathlen = 0;
3289 goto localfileerror;
3290 }
3291 localfilepath[localfilepathlen++] = '/';
3292 }
3293
3294 len = strlen(curproxy->server_state_file_name);
3295 if (localfilepathlen + len > MAXPATHLEN) {
3296 localfilepathlen = 0;
3297 goto localfileerror;
3298 }
3299 memcpy(localfilepath + localfilepathlen, curproxy->server_state_file_name, len);
3300 localfilepathlen += len;
3301 localfilepath[localfilepathlen++] = 0;
3302 }
3303 filepath = localfilepath;
3304 localfileerror:
3305 if (localfilepathlen == 0)
3306 localfilepath[0] = '\0';
3307
3308 break;
3309 case PR_SRV_STATE_FILE_NONE:
3310 default:
3311 continue;
3312 }
3313
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003314 /* when global file is used, we get data from the tree
3315 * Note that in such case we don't check backend name neither uuid.
3316 * Backend name can't be wrong since it's used as a key to retrieve the server state
3317 * line from the tree.
3318 */
3319 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_GLOBAL) {
3320 struct server *srv = curproxy->srv;
3321 while (srv) {
3322 struct ebmb_node *node;
3323 struct state_line *st;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003324
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003325 chunk_printf(&trash, "%s %s", curproxy->id, srv->id);
3326 node = ebst_lookup(&state_file, trash.area);
3327 if (!node)
3328 goto next;
Dragan Dosencf4fb032015-11-04 23:03:26 +01003329
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003330 st = container_of(node, struct state_line, name_name);
3331 memcpy(mybuf, st->line, strlen(st->line));
3332 mybuf[strlen(st->line)] = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003333
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003334 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3335 if (params[0] == NULL)
3336 goto next;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003337
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003338 srv_update_state(srv, global_file_version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003339
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003340 next:
3341 srv = srv->next;
3342 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003343
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003344 continue; /* next proxy in list */
3345 }
3346 else {
3347 /* load 'local' state file */
3348 errno = 0;
3349 f = fopen(filepath, "r");
3350 if (errno && fileopenerr)
3351 ha_warning("Can't open server state file '%s': %s\n", filepath, strerror(errno));
3352 if (!f)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003353 continue;
3354
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003355 mybuf[0] = '\0';
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003356
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003357 /* first character of first line of the file must contain the version of the export */
3358 version = srv_state_get_version(f);
3359 if (version == 0) {
3360 ha_warning("Can't get version of the server state file '%s'\n", filepath);
3361 goto fileclose;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003362 }
3363
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003364 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3365 int bk_f_forced_id = 0;
3366 int check_id = 0;
3367 int check_name = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003368
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003369 srv_state_parse_line(mybuf, version, params, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003370
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003371 if (params[0] == NULL) {
3372 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003373 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003374
3375 /* if line is incomplete line, then ignore it.
3376 * otherwise, update useful flags */
3377 switch (version) {
3378 case 1:
3379 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
3380 check_id = (atoi(params[0]) == curproxy->uuid);
3381 check_name = (strcmp(curproxy->id, params[1]) == 0);
3382 break;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003383 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003384
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003385 bk = curproxy;
3386
3387 /* if backend can't be found, let's continue */
3388 if (!check_id && !check_name)
3389 continue;
3390 else if (!check_id && check_name) {
3391 ha_warning("backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3392 send_log(bk, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3393 }
3394 else if (check_id && !check_name) {
3395 ha_warning("backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3396 send_log(bk, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3397 /* if name doesn't match, we still want to update curproxy if the backend id
3398 * was forced in previous the previous configuration */
3399 if (!bk_f_forced_id)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003400 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003401 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003402
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003403 /* look for the server by its name: param[3] */
3404 srv = server_find_best_match(bk, params[3], 0, NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003405
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003406 if (!srv) {
3407 /* if no server found, then warning and continue with next line */
3408 ha_warning("can't find server '%s' in backend '%s'\n",
3409 params[3], params[1]);
3410 send_log(bk, LOG_NOTICE, "can't find server '%s' in backend '%s'\n",
3411 params[3], params[1]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003412 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003413 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003414
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003415 /* now we can proceed with server's state update */
3416 srv_update_state(srv, version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003417 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003418 }
Dragan Dosencf4fb032015-11-04 23:03:26 +01003419fileclose:
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003420 fclose(f);
3421 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003422
3423 /* now free memory allocated for the tree */
3424 for (node = ebmb_first(&state_file), next_node = node ? ebmb_next(node) : NULL;
3425 node;
3426 node = next_node, next_node = node ? ebmb_next(node) : NULL) {
3427 st = container_of(node, struct state_line, name_name);
3428 ebmb_delete(&st->name_name);
3429 free(st->line);
3430 free(st);
3431 }
3432
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003433}
3434
Simon Horman7d09b9a2013-02-12 10:45:51 +09003435/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003436 * update a server's current IP address.
3437 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3438 * ip is in network format.
3439 * updater is a string which contains an information about the requester of the update.
3440 * updater is used if not NULL.
3441 *
3442 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003443 *
3444 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003445 */
Thierry Fournierd35b7a62016-02-24 08:23:22 +01003446int update_server_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003447{
3448 /* generates a log line and a warning on stderr */
3449 if (1) {
3450 /* book enough space for both IPv4 and IPv6 */
3451 char oldip[INET6_ADDRSTRLEN];
3452 char newip[INET6_ADDRSTRLEN];
3453
3454 memset(oldip, '\0', INET6_ADDRSTRLEN);
3455 memset(newip, '\0', INET6_ADDRSTRLEN);
3456
3457 /* copy old IP address in a string */
3458 switch (s->addr.ss_family) {
3459 case AF_INET:
3460 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3461 break;
3462 case AF_INET6:
3463 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3464 break;
3465 };
3466
3467 /* copy new IP address in a string */
3468 switch (ip_sin_family) {
3469 case AF_INET:
3470 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3471 break;
3472 case AF_INET6:
3473 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3474 break;
3475 };
3476
3477 /* save log line into a buffer */
3478 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3479 s->proxy->id, s->id, oldip, newip, updater);
3480
3481 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003482 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003483
3484 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003485 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003486 }
3487
3488 /* save the new IP family */
3489 s->addr.ss_family = ip_sin_family;
3490 /* save the new IP address */
3491 switch (ip_sin_family) {
3492 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003493 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003494 break;
3495 case AF_INET6:
3496 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3497 break;
3498 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003499 srv_set_dyncookie(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003500
3501 return 0;
3502}
3503
3504/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003505 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3506 *
3507 * Caller can pass its name through <updater> to get it integrated in the response message
3508 * returned by the function.
3509 *
3510 * The function first does the following, in that order:
3511 * - validates the new addr and/or port
3512 * - checks if an update is required (new IP or port is different than current ones)
3513 * - checks the update is allowed:
3514 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3515 * - allow all changes if no CHECKS are configured
3516 * - if CHECK is configured:
3517 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3518 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3519 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003520 *
3521 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003522 */
3523const char *update_server_addr_port(struct server *s, const char *addr, const char *port, char *updater)
3524{
3525 struct sockaddr_storage sa;
3526 int ret, port_change_required;
3527 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003528 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003529 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003530 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003531
3532 msg = get_trash_chunk();
3533 chunk_reset(msg);
3534
3535 if (addr) {
3536 memset(&sa, 0, sizeof(struct sockaddr_storage));
3537 if (str2ip2(addr, &sa, 0) == NULL) {
3538 chunk_printf(msg, "Invalid addr '%s'", addr);
3539 goto out;
3540 }
3541
3542 /* changes are allowed on AF_INET* families only */
3543 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3544 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3545 goto out;
3546 }
3547
3548 /* collecting data currently setup */
3549 memset(current_addr, '\0', sizeof(current_addr));
3550 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3551 /* changes are allowed on AF_INET* families only */
3552 if ((ret != AF_INET) && (ret != AF_INET6)) {
3553 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3554 goto out;
3555 }
3556
3557 /* applying ADDR changes if required and allowed
3558 * ipcmp returns 0 when both ADDR are the same
3559 */
3560 if (ipcmp(&s->addr, &sa) == 0) {
3561 chunk_appendf(msg, "no need to change the addr");
3562 goto port;
3563 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003564 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003565 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003566
3567 /* we also need to update check's ADDR only if it uses the server's one */
3568 if ((s->check.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_CHECKADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003569 ipcpy(&sa, &s->check.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003570 }
3571
3572 /* we also need to update agent ADDR only if it use the server's one */
3573 if ((s->agent.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_AGENTADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003574 ipcpy(&sa, &s->agent.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003575 }
3576
3577 /* update report for caller */
3578 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3579 }
3580
3581 port:
3582 if (port) {
3583 char sign = '\0';
3584 char *endptr;
3585
3586 if (addr)
3587 chunk_appendf(msg, ", ");
3588
3589 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003590 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003591
3592 /* check if PORT change is required */
3593 port_change_required = 0;
3594
3595 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003596 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003597 new_port = strtol(port, &endptr, 10);
3598 if ((errno != 0) || (port == endptr)) {
3599 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3600 goto out;
3601 }
3602
3603 /* check if caller triggers a port mapped or offset */
3604 if (sign == '-' || (sign == '+')) {
3605 /* check if server currently uses port map */
3606 if (!(s->flags & SRV_F_MAPPORTS)) {
3607 /* switch from fixed port to port map mandatorily triggers
3608 * a port change */
3609 port_change_required = 1;
3610 /* check is configured
3611 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3612 * prevent PORT change if check doesn't have it's dedicated port while switching
3613 * to port mapping */
3614 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3615 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.");
3616 goto out;
3617 }
3618 }
3619 /* we're already using port maps */
3620 else {
3621 port_change_required = current_port != new_port;
3622 }
3623 }
3624 /* fixed port */
3625 else {
3626 port_change_required = current_port != new_port;
3627 }
3628
3629 /* applying PORT changes if required and update response message */
3630 if (port_change_required) {
3631 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003632 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003633 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003634
3635 /* prepare message */
3636 chunk_appendf(msg, "port changed from '");
3637 if (s->flags & SRV_F_MAPPORTS)
3638 chunk_appendf(msg, "+");
3639 chunk_appendf(msg, "%d' to '", current_port);
3640
3641 if (sign == '-') {
3642 s->flags |= SRV_F_MAPPORTS;
3643 chunk_appendf(msg, "%c", sign);
3644 /* just use for result output */
3645 new_port = -new_port;
3646 }
3647 else if (sign == '+') {
3648 s->flags |= SRV_F_MAPPORTS;
3649 chunk_appendf(msg, "%c", sign);
3650 }
3651 else {
3652 s->flags &= ~SRV_F_MAPPORTS;
3653 }
3654
3655 chunk_appendf(msg, "%d'", new_port);
3656
3657 /* we also need to update health checks port only if it uses server's realport */
3658 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3659 s->check.port = new_port;
3660 }
3661 }
3662 else {
3663 chunk_appendf(msg, "no need to change the port");
3664 }
3665 }
3666
3667out:
Olivier Houchard4e694042017-03-14 20:01:29 +01003668 if (changed)
3669 srv_set_dyncookie(s);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003670 if (updater)
3671 chunk_appendf(msg, " by '%s'", updater);
3672 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003673 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003674}
3675
3676
3677/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003678 * update server status based on result of name resolution
3679 * returns:
3680 * 0 if server status is updated
3681 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003682 *
3683 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003684 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003685int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003686{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003687 struct dns_resolvers *resolvers = s->resolvers;
3688 struct dns_resolution *resolution = s->dns_requester->resolution;
3689 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003690
3691 switch (resolution->status) {
3692 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003693 /* status when HAProxy has just (re)started.
3694 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003695 break;
3696
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003697 case RSLV_STATUS_VALID:
3698 /*
3699 * resume health checks
3700 * server will be turned back on if health check is safe
3701 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003702 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003703 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003704 return 1;
3705 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3706 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003707 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003708 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003709
Emeric Brun52a91d32017-08-31 14:41:55 +02003710 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003711 return 1;
3712 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3713 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3714 s->proxy->id, s->id);
3715
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003716 ha_warning("%s.\n", trash.area);
3717 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003718 return 0;
3719
3720 case RSLV_STATUS_NX:
3721 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003722 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3723 if (!tick_is_expired(exp, now_ms))
3724 break;
3725
3726 if (s->next_admin & SRV_ADMF_RMAINT)
3727 return 1;
3728 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3729 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003730
3731 case RSLV_STATUS_TIMEOUT:
3732 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003733 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3734 if (!tick_is_expired(exp, now_ms))
3735 break;
3736
3737 if (s->next_admin & SRV_ADMF_RMAINT)
3738 return 1;
3739 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3740 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003741
3742 case RSLV_STATUS_REFUSED:
3743 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003744 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3745 if (!tick_is_expired(exp, now_ms))
3746 break;
3747
3748 if (s->next_admin & SRV_ADMF_RMAINT)
3749 return 1;
3750 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3751 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003752
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003753 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003754 /* stop server if resolution failed for a long enough period */
3755 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3756 if (!tick_is_expired(exp, now_ms))
3757 break;
3758
3759 if (s->next_admin & SRV_ADMF_RMAINT)
3760 return 1;
3761 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3762 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003763 }
3764
3765 return 1;
3766}
3767
3768/*
3769 * Server Name Resolution valid response callback
3770 * It expects:
3771 * - <nameserver>: the name server which answered the valid response
3772 * - <response>: buffer containing a valid DNS response
3773 * - <response_len>: size of <response>
3774 * It performs the following actions:
3775 * - ignore response if current ip found and server family not met
3776 * - update with first new ip found if family is met and current IP is not found
3777 * returns:
3778 * 0 on error
3779 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003780 *
3781 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003782 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003783int snr_resolution_cb(struct dns_requester *requester, struct dns_nameserver *nameserver)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003784{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003785 struct server *s = NULL;
3786 struct dns_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003787 void *serverip, *firstip;
3788 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003789 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003790 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003791 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003792
Christopher Faulet67957bd2017-09-27 11:00:59 +02003793 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003794 if (!s)
3795 return 1;
3796
Christopher Faulet67957bd2017-09-27 11:00:59 +02003797 resolution = s->dns_requester->resolution;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003798
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003799 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003800 firstip = NULL; /* pointer to the first valid response found */
3801 /* it will be used as the new IP if a change is required */
3802 firstip_sin_family = AF_UNSPEC;
3803 serverip = NULL; /* current server IP address */
3804
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003805 /* initializing server IP pointer */
3806 server_sin_family = s->addr.ss_family;
3807 switch (server_sin_family) {
3808 case AF_INET:
3809 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3810 break;
3811
3812 case AF_INET6:
3813 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3814 break;
3815
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003816 case AF_UNSPEC:
3817 break;
3818
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003819 default:
3820 goto invalid;
3821 }
3822
Baptiste Assmann729c9012017-05-22 15:13:10 +02003823 ret = dns_get_ip_from_response(&resolution->response, &s->dns_opts,
Thierry Fournierada34842016-02-17 21:25:09 +01003824 serverip, server_sin_family, &firstip,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003825 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003826
3827 switch (ret) {
3828 case DNS_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003829 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003830
3831 case DNS_UPD_SRVIP_NOT_FOUND:
3832 goto save_ip;
3833
3834 case DNS_UPD_CNAME:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003835 goto invalid;
3836
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003837 case DNS_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003838 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003839 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003840
Baptiste Assmannfad03182015-10-28 02:03:32 +01003841 case DNS_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003842 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003843 resolution->status = RSLV_STATUS_OTHER;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003844 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003845
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003846 default:
3847 goto invalid;
3848
3849 }
3850
3851 save_ip:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003852 if (nameserver) {
3853 nameserver->counters.update++;
3854 /* save the first ip we found */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003855 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003856 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003857 else
3858 chunk_printf(chk, "DNS cache");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003859 update_server_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003860
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003861 update_status:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003862 snr_update_srv_status(s, has_no_ip);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003863 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003864
3865 invalid:
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003866 if (nameserver) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02003867 nameserver->counters.invalid++;
3868 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003869 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003870 snr_update_srv_status(s, has_no_ip);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003871 return 0;
3872}
3873
3874/*
3875 * Server Name Resolution error management callback
3876 * returns:
3877 * 0 on error
3878 * 1 when no error or safe ignore
Willy Tarreau46b7f532018-08-21 11:54:26 +02003879 *
3880 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003881 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003882int snr_resolution_error_cb(struct dns_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003883{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003884 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003885
Christopher Faulet67957bd2017-09-27 11:00:59 +02003886 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003887 if (!s)
3888 return 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003889 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003890 snr_update_srv_status(s, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003891 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003892 return 1;
3893}
3894
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003895/*
3896 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003897 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003898 * It returns a pointer to the first server found or NULL if <ip> is not yet
3899 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003900 *
3901 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003902 */
3903struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3904{
3905 struct server *tmpsrv;
3906 struct proxy *be;
3907
3908 if (!srv)
3909 return NULL;
3910
3911 be = srv->proxy;
3912 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003913 /* we found the current server is the same, ignore it */
3914 if (srv == tmpsrv)
3915 continue;
3916
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003917 /* We want to compare the IP in the record with the IP of the servers in the
3918 * same backend, only if:
3919 * * DNS resolution is enabled on the server
3920 * * the hostname used for the resolution by our server is the same than the
3921 * one used for the server found in the backend
3922 * * the server found in the backend is not our current server
3923 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003924 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003925 if ((tmpsrv->hostname_dn == NULL) ||
3926 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
3927 (strcmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01003928 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003929 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003930 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003931 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003932
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003933 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01003934 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003935 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003936 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003937 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003938
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003939 /* At this point, we have 2 different servers using the same DNS hostname
3940 * for their respective resolution.
3941 */
3942 if (*ip_family == tmpsrv->addr.ss_family &&
3943 ((tmpsrv->addr.ss_family == AF_INET &&
3944 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
3945 (tmpsrv->addr.ss_family == AF_INET6 &&
3946 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003947 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003948 return tmpsrv;
3949 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003950 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003951 }
3952
Emeric Brune9fd6b52017-11-02 17:20:39 +01003953
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003954 return NULL;
3955}
3956
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003957/* Sets the server's address (srv->addr) from srv->hostname using the libc's
3958 * resolver. This is suited for initial address configuration. Returns 0 on
3959 * success otherwise a non-zero error code. In case of error, *err_code, if
3960 * not NULL, is filled up.
3961 */
3962int srv_set_addr_via_libc(struct server *srv, int *err_code)
3963{
3964 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003965 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01003966 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003967 return 1;
3968 }
3969 return 0;
3970}
3971
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003972/* Set the server's FDQN (->hostname) from <hostname>.
3973 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003974 *
3975 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003976 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01003977int srv_set_fqdn(struct server *srv, const char *hostname, int dns_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003978{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003979 struct dns_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003980 char *hostname_dn;
3981 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003982
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02003983 /* Note that the server lock is already held. */
3984 if (!srv->resolvers)
3985 return -1;
3986
Olivier Houchardd16bfe62017-10-31 15:21:19 +01003987 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003988 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003989 /* run time DNS resolution was not active for this server
3990 * and we can't enable it at run time for now.
3991 */
3992 if (!srv->dns_requester)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003993 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003994
3995 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003996 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003997 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003998 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
3999 hostname_dn, trash.size);
4000 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004001 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004002
Christopher Faulet67957bd2017-09-27 11:00:59 +02004003 resolution = srv->dns_requester->resolution;
4004 if (resolution &&
4005 resolution->hostname_dn &&
4006 !strcmp(resolution->hostname_dn, hostname_dn))
Christopher Fauletb2812a62017-10-04 16:17:58 +02004007 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004008
Christopher Faulet67957bd2017-09-27 11:00:59 +02004009 dns_unlink_resolution(srv->dns_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004010
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004011 free(srv->hostname);
4012 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004013 srv->hostname = strdup(hostname);
4014 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004015 srv->hostname_dn_len = hostname_dn_len;
4016 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004017 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004018
Baptiste Assmann13a92322019-06-07 09:40:55 +02004019 if (srv->flags & SRV_F_NO_RESOLUTION)
4020 goto end;
4021
Olivier Houchard55dcdf42017-11-06 15:15:04 +01004022 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004023 goto err;
4024
4025 end:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004026 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004027 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004028 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02004029
4030 err:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004031 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004032 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02004033 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004034}
4035
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004036/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
4037 * from the state file. This is suited for initial address configuration.
4038 * Returns 0 on success otherwise a non-zero error code. In case of error,
4039 * *err_code, if not NULL, is filled up.
4040 */
4041static int srv_apply_lastaddr(struct server *srv, int *err_code)
4042{
4043 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
4044 if (err_code)
4045 *err_code |= ERR_WARN;
4046 return 1;
4047 }
4048 return 0;
4049}
4050
Willy Tarreau25e51522016-11-04 15:10:17 +01004051/* returns 0 if no error, otherwise a combination of ERR_* flags */
4052static int srv_iterate_initaddr(struct server *srv)
4053{
4054 int return_code = 0;
4055 int err_code;
4056 unsigned int methods;
4057
4058 methods = srv->init_addr_methods;
4059 if (!methods) { // default to "last,libc"
4060 srv_append_initaddr(&methods, SRV_IADDR_LAST);
4061 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
4062 }
4063
Willy Tarreau3eed10e2016-11-07 21:03:16 +01004064 /* "-dr" : always append "none" so that server addresses resolution
4065 * failures are silently ignored, this is convenient to validate some
4066 * configs out of their environment.
4067 */
4068 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
4069 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4070
Willy Tarreau25e51522016-11-04 15:10:17 +01004071 while (methods) {
4072 err_code = 0;
4073 switch (srv_get_next_initaddr(&methods)) {
4074 case SRV_IADDR_LAST:
4075 if (!srv->lastaddr)
4076 continue;
4077 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004078 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004079 return_code |= err_code;
4080 break;
4081
4082 case SRV_IADDR_LIBC:
4083 if (!srv->hostname)
4084 continue;
4085 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004086 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004087 return_code |= err_code;
4088 break;
4089
Willy Tarreau37ebe122016-11-04 15:17:58 +01004090 case SRV_IADDR_NONE:
4091 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004092 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004093 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
4094 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004095 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01004096 return return_code;
4097
Willy Tarreau4310d362016-11-02 15:05:56 +01004098 case SRV_IADDR_IP:
4099 ipcpy(&srv->init_addr, &srv->addr);
4100 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004101 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', falling back to configured address.\n",
4102 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
Willy Tarreau4310d362016-11-02 15:05:56 +01004103 }
Olivier Houchard4e694042017-03-14 20:01:29 +01004104 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01004105
Willy Tarreau25e51522016-11-04 15:10:17 +01004106 default: /* unhandled method */
4107 break;
4108 }
4109 }
4110
4111 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004112 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Willy Tarreau25e51522016-11-04 15:10:17 +01004113 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
4114 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01004115 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004116 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Willy Tarreau465b6e52016-11-07 19:19:22 +01004117 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
4118 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004119
4120 return_code |= ERR_ALERT | ERR_FATAL;
4121 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01004122out:
4123 srv_set_dyncookie(srv);
4124 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01004125}
4126
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004127/*
4128 * This function parses all backends and all servers within each backend
4129 * and performs servers' addr resolution based on information provided by:
4130 * - configuration file
4131 * - server-state file (states provided by an 'old' haproxy process)
4132 *
4133 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
4134 */
4135int srv_init_addr(void)
4136{
4137 struct proxy *curproxy;
4138 int return_code = 0;
4139
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004140 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004141 while (curproxy) {
4142 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004143
4144 /* servers are in backend only */
4145 if (!(curproxy->cap & PR_CAP_BE))
4146 goto srv_init_addr_next;
4147
Willy Tarreau25e51522016-11-04 15:10:17 +01004148 for (srv = curproxy->srv; srv; srv = srv->next)
Willy Tarreau3d609a72017-09-06 14:22:45 +02004149 if (srv->hostname)
4150 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004151
4152 srv_init_addr_next:
4153 curproxy = curproxy->next;
4154 }
4155
4156 return return_code;
4157}
4158
Willy Tarreau46b7f532018-08-21 11:54:26 +02004159/*
4160 * Must be called with the server lock held.
4161 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004162const 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 +02004163{
4164
Willy Tarreau83061a82018-07-13 11:56:34 +02004165 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004166
4167 msg = get_trash_chunk();
4168 chunk_reset(msg);
4169
Olivier Houchard8da5f982017-08-04 18:35:36 +02004170 if (server->hostname && !strcmp(fqdn, server->hostname)) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004171 chunk_appendf(msg, "no need to change the FDQN");
4172 goto out;
4173 }
4174
4175 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4176 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4177 goto out;
4178 }
4179
4180 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4181 server->proxy->id, server->id, server->hostname, fqdn);
4182
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004183 if (srv_set_fqdn(server, fqdn, dns_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004184 chunk_reset(msg);
4185 chunk_appendf(msg, "could not update %s/%s FQDN",
4186 server->proxy->id, server->id);
4187 goto out;
4188 }
4189
4190 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004191 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004192
4193 out:
4194 if (updater)
4195 chunk_appendf(msg, " by '%s'", updater);
4196 chunk_appendf(msg, "\n");
4197
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004198 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004199}
4200
4201
Willy Tarreau21b069d2016-11-23 17:15:08 +01004202/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4203 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004204 * 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 +01004205 * used for CLI commands requiring a server name.
4206 * Important: the <arg> is modified to remove the '/'.
4207 */
4208struct server *cli_find_server(struct appctx *appctx, char *arg)
4209{
4210 struct proxy *px;
4211 struct server *sv;
4212 char *line;
4213
4214 /* split "backend/server" and make <line> point to server */
4215 for (line = arg; *line; line++)
4216 if (*line == '/') {
4217 *line++ = '\0';
4218 break;
4219 }
4220
4221 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004222 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004223 return NULL;
4224 }
4225
4226 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004227 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004228 return NULL;
4229 }
4230
4231 if (px->state == PR_STSTOPPED) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004232 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004233 return NULL;
4234 }
4235
4236 return sv;
4237}
4238
William Lallemand222baf22016-11-19 02:00:33 +01004239
Willy Tarreau46b7f532018-08-21 11:54:26 +02004240/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004241static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004242{
4243 struct server *sv;
4244 const char *warning;
4245
4246 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4247 return 1;
4248
4249 sv = cli_find_server(appctx, args[2]);
4250 if (!sv)
4251 return 1;
4252
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004253 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02004254
William Lallemand222baf22016-11-19 02:00:33 +01004255 if (strcmp(args[3], "weight") == 0) {
4256 warning = server_parse_weight_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004257 if (warning)
4258 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004259 }
4260 else if (strcmp(args[3], "state") == 0) {
4261 if (strcmp(args[4], "ready") == 0)
4262 srv_adm_set_ready(sv);
4263 else if (strcmp(args[4], "drain") == 0)
4264 srv_adm_set_drain(sv);
4265 else if (strcmp(args[4], "maint") == 0)
4266 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02004267 else
4268 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004269 }
4270 else if (strcmp(args[3], "health") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004271 if (sv->track)
4272 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004273 else if (strcmp(args[4], "up") == 0) {
4274 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004275 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004276 }
4277 else if (strcmp(args[4], "stopping") == 0) {
4278 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004279 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004280 }
4281 else if (strcmp(args[4], "down") == 0) {
4282 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004283 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004284 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004285 else
4286 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004287 }
4288 else if (strcmp(args[3], "agent") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004289 if (!(sv->agent.state & CHK_ST_ENABLED))
4290 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004291 else if (strcmp(args[4], "up") == 0) {
4292 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004293 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004294 }
4295 else if (strcmp(args[4], "down") == 0) {
4296 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004297 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004298 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004299 else
4300 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004301 }
Misiek2da082d2017-01-09 09:40:42 +01004302 else if (strcmp(args[3], "agent-addr") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004303 if (!(sv->agent.state & CHK_ST_ENABLED))
4304 cli_err(appctx, "agent checks are not enabled on this server.\n");
4305 else if (str2ip(args[4], &sv->agent.addr) == NULL)
4306 cli_err(appctx, "incorrect addr address given for agent.\n");
Misiek2da082d2017-01-09 09:40:42 +01004307 }
4308 else if (strcmp(args[3], "agent-send") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004309 if (!(sv->agent.state & CHK_ST_ENABLED))
4310 cli_err(appctx, "agent checks are not enabled on this server.\n");
4311 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004312 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004313 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004314 }
4315 }
William Lallemand222baf22016-11-19 02:00:33 +01004316 else if (strcmp(args[3], "check-port") == 0) {
4317 int i = 0;
4318 if (strl2irc(args[4], strlen(args[4]), &i) != 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004319 cli_err(appctx, "'set server <srv> check-port' expects an integer as argument.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004320 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004321 }
4322 if ((i < 0) || (i > 65535)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004323 cli_err(appctx, "provided port is not valid.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004324 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004325 }
4326 /* prevent the update of port to 0 if MAPPORTS are in use */
4327 if ((sv->flags & SRV_F_MAPPORTS) && (i == 0)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004328 cli_err(appctx, "can't unset 'port' since MAPPORTS is in use.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004329 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004330 }
4331 sv->check.port = i;
Willy Tarreau9d008692019-08-09 11:21:01 +02004332 cli_msg(appctx, LOG_NOTICE, "health check port updated.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004333 }
4334 else if (strcmp(args[3], "addr") == 0) {
4335 char *addr = NULL;
4336 char *port = NULL;
4337 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004338 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004339 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004340 }
4341 else {
4342 addr = args[4];
4343 }
4344 if (strcmp(args[5], "port") == 0) {
4345 port = args[6];
4346 }
4347 warning = update_server_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004348 if (warning)
4349 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004350 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
4351 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004352 else if (strcmp(args[3], "fqdn") == 0) {
4353 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004354 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004355 goto out_unlock;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004356 }
Baptiste Assmann13a92322019-06-07 09:40:55 +02004357 /* ensure runtime resolver will process this new fqdn */
4358 if (sv->flags & SRV_F_NO_RESOLUTION) {
4359 sv->flags &= ~SRV_F_NO_RESOLUTION;
4360 }
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004361 warning = update_server_fqdn(sv, args[4], "stats socket command", 0);
Willy Tarreau9d008692019-08-09 11:21:01 +02004362 if (warning)
4363 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004364 }
William Lallemand222baf22016-11-19 02:00:33 +01004365 else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004366 cli_err(appctx,
4367 "'set server <srv>' only supports 'agent', 'health', 'state',"
4368 " 'weight', 'addr', 'fqdn' and 'check-port'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004369 }
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004370 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004371 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004372 return 1;
4373}
4374
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004375static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004376{
4377 struct stream_interface *si = appctx->owner;
4378 struct proxy *px;
4379 struct server *sv;
4380 char *line;
4381
4382
4383 /* split "backend/server" and make <line> point to server */
4384 for (line = args[2]; *line; line++)
4385 if (*line == '/') {
4386 *line++ = '\0';
4387 break;
4388 }
4389
Willy Tarreau9d008692019-08-09 11:21:01 +02004390 if (!*line)
4391 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004392
Willy Tarreau9d008692019-08-09 11:21:01 +02004393 if (!get_backend_server(args[2], line, &px, &sv))
4394 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004395
4396 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004397 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4398 sv->iweight);
4399 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004400 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004401 return 0;
4402 }
William Lallemand6b160942016-11-22 12:34:35 +01004403 return 1;
4404}
4405
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004406/* Parse a "set weight" command.
4407 *
4408 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004409 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004410static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004411{
4412 struct server *sv;
4413 const char *warning;
4414
4415 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4416 return 1;
4417
4418 sv = cli_find_server(appctx, args[2]);
4419 if (!sv)
4420 return 1;
4421
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004422 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4423
William Lallemand6b160942016-11-22 12:34:35 +01004424 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004425 if (warning)
4426 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004427
4428 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4429
William Lallemand6b160942016-11-22 12:34:35 +01004430 return 1;
4431}
4432
Willy Tarreau46b7f532018-08-21 11:54:26 +02004433/* parse a "set maxconn server" command. It always returns 1.
4434 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004435 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004436 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004437static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004438{
4439 struct server *sv;
4440 const char *warning;
4441
4442 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4443 return 1;
4444
4445 sv = cli_find_server(appctx, args[3]);
4446 if (!sv)
4447 return 1;
4448
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004449 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4450
Willy Tarreaub8026272016-11-23 11:26:56 +01004451 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004452 if (warning)
4453 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004454
4455 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4456
Willy Tarreaub8026272016-11-23 11:26:56 +01004457 return 1;
4458}
William Lallemand6b160942016-11-22 12:34:35 +01004459
Willy Tarreau46b7f532018-08-21 11:54:26 +02004460/* parse a "disable agent" command. It always returns 1.
4461 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004462 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004463 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004464static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004465{
4466 struct server *sv;
4467
4468 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4469 return 1;
4470
4471 sv = cli_find_server(appctx, args[2]);
4472 if (!sv)
4473 return 1;
4474
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004475 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004476 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004477 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004478 return 1;
4479}
4480
Willy Tarreau46b7f532018-08-21 11:54:26 +02004481/* parse a "disable health" command. It always returns 1.
4482 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004483 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004484 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004485static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004486{
4487 struct server *sv;
4488
4489 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4490 return 1;
4491
4492 sv = cli_find_server(appctx, args[2]);
4493 if (!sv)
4494 return 1;
4495
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004496 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004497 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004498 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004499 return 1;
4500}
4501
Willy Tarreau46b7f532018-08-21 11:54:26 +02004502/* parse a "disable server" command. It always returns 1.
4503 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004504 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004505 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004506static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004507{
4508 struct server *sv;
4509
4510 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4511 return 1;
4512
4513 sv = cli_find_server(appctx, args[2]);
4514 if (!sv)
4515 return 1;
4516
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004517 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004518 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004519 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004520 return 1;
4521}
4522
Willy Tarreau46b7f532018-08-21 11:54:26 +02004523/* parse a "enable agent" command. It always returns 1.
4524 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004525 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004526 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004527static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004528{
4529 struct server *sv;
4530
4531 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4532 return 1;
4533
4534 sv = cli_find_server(appctx, args[2]);
4535 if (!sv)
4536 return 1;
4537
Willy Tarreau9d008692019-08-09 11:21:01 +02004538 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4539 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004540
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004541 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004542 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004543 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004544 return 1;
4545}
4546
Willy Tarreau46b7f532018-08-21 11:54:26 +02004547/* parse a "enable health" command. It always returns 1.
4548 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004549 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004550 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004551static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004552{
4553 struct server *sv;
4554
4555 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4556 return 1;
4557
4558 sv = cli_find_server(appctx, args[2]);
4559 if (!sv)
4560 return 1;
4561
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004562 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004563 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004564 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004565 return 1;
4566}
4567
Willy Tarreau46b7f532018-08-21 11:54:26 +02004568/* parse a "enable server" command. It always returns 1.
4569 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004570 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004571 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004572static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004573{
4574 struct server *sv;
4575
4576 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4577 return 1;
4578
4579 sv = cli_find_server(appctx, args[2]);
4580 if (!sv)
4581 return 1;
4582
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004583 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004584 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004585 if (!(sv->flags & SRV_F_COOKIESET)
4586 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4587 sv->cookie)
4588 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004589 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004590 return 1;
4591}
4592
William Lallemand222baf22016-11-19 02:00:33 +01004593/* register cli keywords */
4594static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004595 { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004596 { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004597 { { "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 +01004598 { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004599 { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004600 { { "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 +01004601 { { "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 +01004602 { { "set", "server", NULL }, "set server : change a server's state, weight or address", cli_parse_set_server },
William Lallemand6b160942016-11-22 12:34:35 +01004603 { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight },
4604 { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight },
4605
William Lallemand222baf22016-11-19 02:00:33 +01004606 {{},}
4607}};
4608
Willy Tarreau0108d902018-11-25 19:14:37 +01004609INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004610
Emeric Brun64cc49c2017-10-03 14:46:45 +02004611/*
4612 * This function applies server's status changes, it is
4613 * is designed to be called asynchronously.
4614 *
Willy Tarreau46b7f532018-08-21 11:54:26 +02004615 * Must be called with the server lock held.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004616 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004617static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004618{
4619 struct check *check = &s->check;
4620 int xferred;
4621 struct proxy *px = s->proxy;
4622 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4623 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4624 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004625 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004626
Emeric Brun64cc49c2017-10-03 14:46:45 +02004627 /* If currently main is not set we try to apply pending state changes */
4628 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4629 int next_admin;
4630
4631 /* Backup next admin */
4632 next_admin = s->next_admin;
4633
4634 /* restore current admin state */
4635 s->next_admin = s->cur_admin;
4636
4637 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4638 s->last_change = now.tv_sec;
4639 if (s->proxy->lbprm.set_server_status_down)
4640 s->proxy->lbprm.set_server_status_down(s);
4641
4642 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4643 srv_shutdown_streams(s, SF_ERR_DOWN);
4644
4645 /* we might have streams queued on this server and waiting for
4646 * a connection. Those which are redispatchable will be queued
4647 * to another server or to the proxy itself.
4648 */
4649 xferred = pendconn_redistribute(s);
4650
4651 tmptrash = alloc_trash_chunk();
4652 if (tmptrash) {
4653 chunk_printf(tmptrash,
4654 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4655 s->proxy->id, s->id);
4656
Emeric Brun5a133512017-10-19 14:42:30 +02004657 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004658 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004659
4660 /* we don't send an alert if the server was previously paused */
4661 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004662 send_log(s->proxy, log_level, "%s.\n",
4663 tmptrash->area);
4664 send_email_alert(s, log_level, "%s",
4665 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004666 free_trash_chunk(tmptrash);
4667 tmptrash = NULL;
4668 }
4669 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4670 set_backend_down(s->proxy);
4671
4672 s->counters.down_trans++;
4673 }
4674 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4675 s->last_change = now.tv_sec;
4676 if (s->proxy->lbprm.set_server_status_down)
4677 s->proxy->lbprm.set_server_status_down(s);
4678
4679 /* we might have streams queued on this server and waiting for
4680 * a connection. Those which are redispatchable will be queued
4681 * to another server or to the proxy itself.
4682 */
4683 xferred = pendconn_redistribute(s);
4684
4685 tmptrash = alloc_trash_chunk();
4686 if (tmptrash) {
4687 chunk_printf(tmptrash,
4688 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4689 s->proxy->id, s->id);
4690
Emeric Brun5a133512017-10-19 14:42:30 +02004691 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004692
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004693 ha_warning("%s.\n", tmptrash->area);
4694 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4695 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004696 free_trash_chunk(tmptrash);
4697 tmptrash = NULL;
4698 }
4699
4700 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4701 set_backend_down(s->proxy);
4702 }
4703 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4704 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4705 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4706 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4707 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4708 s->proxy->last_change = now.tv_sec;
4709 }
4710
4711 if (s->next_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
4712 s->down_time += now.tv_sec - s->last_change;
4713
4714 s->last_change = now.tv_sec;
4715 if (s->next_state == SRV_ST_STARTING)
4716 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4717
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004718 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004719 /* now propagate the status change to any LB algorithms */
4720 if (px->lbprm.update_server_eweight)
4721 px->lbprm.update_server_eweight(s);
4722 else if (srv_willbe_usable(s)) {
4723 if (px->lbprm.set_server_status_up)
4724 px->lbprm.set_server_status_up(s);
4725 }
4726 else {
4727 if (px->lbprm.set_server_status_down)
4728 px->lbprm.set_server_status_down(s);
4729 }
4730
4731 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4732 * and it's not a backup server and its effective weight is > 0,
4733 * then it can accept new connections, so we shut down all streams
4734 * on all backup servers.
4735 */
4736 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4737 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4738 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4739
4740 /* check if we can handle some connections queued at the proxy. We
4741 * will take as many as we can handle.
4742 */
4743 xferred = pendconn_grab_from_px(s);
4744
4745 tmptrash = alloc_trash_chunk();
4746 if (tmptrash) {
4747 chunk_printf(tmptrash,
4748 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
4749 s->proxy->id, s->id);
4750
Emeric Brun5a133512017-10-19 14:42:30 +02004751 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004752 ha_warning("%s.\n", tmptrash->area);
4753 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4754 tmptrash->area);
4755 send_email_alert(s, LOG_NOTICE, "%s",
4756 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004757 free_trash_chunk(tmptrash);
4758 tmptrash = NULL;
4759 }
4760
4761 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4762 set_backend_down(s->proxy);
4763 }
4764 else if (s->cur_eweight != s->next_eweight) {
4765 /* now propagate the status change to any LB algorithms */
4766 if (px->lbprm.update_server_eweight)
4767 px->lbprm.update_server_eweight(s);
4768 else if (srv_willbe_usable(s)) {
4769 if (px->lbprm.set_server_status_up)
4770 px->lbprm.set_server_status_up(s);
4771 }
4772 else {
4773 if (px->lbprm.set_server_status_down)
4774 px->lbprm.set_server_status_down(s);
4775 }
4776
4777 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4778 set_backend_down(s->proxy);
4779 }
4780
4781 s->next_admin = next_admin;
4782 }
4783
Emeric Brun5a133512017-10-19 14:42:30 +02004784 /* reset operational state change */
4785 *s->op_st_chg.reason = 0;
4786 s->op_st_chg.status = s->op_st_chg.code = -1;
4787 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004788
4789 /* Now we try to apply pending admin changes */
4790
4791 /* Maintenance must also disable health checks */
4792 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
4793 if (s->check.state & CHK_ST_ENABLED) {
4794 s->check.state |= CHK_ST_PAUSED;
4795 check->health = 0;
4796 }
4797
4798 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02004799 tmptrash = alloc_trash_chunk();
4800 if (tmptrash) {
4801 chunk_printf(tmptrash,
4802 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
4803 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4804 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02004805
Olivier Houchard796a2b32017-10-24 17:42:47 +02004806 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02004807
Olivier Houchard796a2b32017-10-24 17:42:47 +02004808 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004809 ha_warning("%s.\n", tmptrash->area);
4810 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4811 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02004812 }
4813 free_trash_chunk(tmptrash);
4814 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004815 }
Emeric Brun8f298292017-12-06 16:47:17 +01004816 /* commit new admin status */
4817
4818 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004819 }
4820 else { /* server was still running */
4821 check->health = 0; /* failure */
4822 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01004823
4824 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004825 if (s->proxy->lbprm.set_server_status_down)
4826 s->proxy->lbprm.set_server_status_down(s);
4827
Emeric Brun64cc49c2017-10-03 14:46:45 +02004828 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4829 srv_shutdown_streams(s, SF_ERR_DOWN);
4830
4831 /* we might have streams queued on this server and waiting for
4832 * a connection. Those which are redispatchable will be queued
4833 * to another server or to the proxy itself.
4834 */
4835 xferred = pendconn_redistribute(s);
4836
4837 tmptrash = alloc_trash_chunk();
4838 if (tmptrash) {
4839 chunk_printf(tmptrash,
4840 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
4841 s->flags & SRV_F_BACKUP ? "Backup " : "",
4842 s->proxy->id, s->id,
4843 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
4844
4845 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
4846
4847 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004848 ha_warning("%s.\n", tmptrash->area);
4849 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
4850 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004851 }
4852 free_trash_chunk(tmptrash);
4853 tmptrash = NULL;
4854 }
4855 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4856 set_backend_down(s->proxy);
4857
4858 s->counters.down_trans++;
4859 }
4860 }
4861 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
4862 /* OK here we're leaving maintenance, we have many things to check,
4863 * because the server might possibly be coming back up depending on
4864 * its state. In practice, leaving maintenance means that we should
4865 * immediately turn to UP (more or less the slowstart) under the
4866 * following conditions :
4867 * - server is neither checked nor tracked
4868 * - server tracks another server which is not checked
4869 * - server tracks another server which is already up
4870 * Which sums up as something simpler :
4871 * "either the tracking server is up or the server's checks are disabled
4872 * or up". Otherwise we only re-enable health checks. There's a special
4873 * case associated to the stopping state which can be inherited. Note
4874 * that the server might still be in drain mode, which is naturally dealt
4875 * with by the lower level functions.
4876 */
4877
4878 if (s->check.state & CHK_ST_ENABLED) {
4879 s->check.state &= ~CHK_ST_PAUSED;
4880 check->health = check->rise; /* start OK but check immediately */
4881 }
4882
4883 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
4884 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
4885 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
4886 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
4887 s->next_state = SRV_ST_STOPPING;
4888 }
4889 else {
4890 s->next_state = SRV_ST_STARTING;
4891 if (s->slowstart > 0)
4892 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4893 else
4894 s->next_state = SRV_ST_RUNNING;
4895 }
4896
4897 }
4898
4899 tmptrash = alloc_trash_chunk();
4900 if (tmptrash) {
4901 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
4902 chunk_printf(tmptrash,
4903 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
4904 s->flags & SRV_F_BACKUP ? "Backup " : "",
4905 s->proxy->id, s->id,
4906 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4907 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4908 }
4909 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
4910 chunk_printf(tmptrash,
4911 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
4912 s->flags & SRV_F_BACKUP ? "Backup " : "",
4913 s->proxy->id, s->id, s->hostname,
4914 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4915 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4916 }
4917 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
4918 chunk_printf(tmptrash,
4919 "%sServer %s/%s is %s/%s (leaving maintenance)",
4920 s->flags & SRV_F_BACKUP ? "Backup " : "",
4921 s->proxy->id, s->id,
4922 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4923 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4924 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004925 ha_warning("%s.\n", tmptrash->area);
4926 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4927 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004928 free_trash_chunk(tmptrash);
4929 tmptrash = NULL;
4930 }
4931
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004932 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004933 /* now propagate the status change to any LB algorithms */
4934 if (px->lbprm.update_server_eweight)
4935 px->lbprm.update_server_eweight(s);
4936 else if (srv_willbe_usable(s)) {
4937 if (px->lbprm.set_server_status_up)
4938 px->lbprm.set_server_status_up(s);
4939 }
4940 else {
4941 if (px->lbprm.set_server_status_down)
4942 px->lbprm.set_server_status_down(s);
4943 }
4944
4945 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4946 set_backend_down(s->proxy);
4947
Willy Tarreau6a78e612018-08-07 10:14:53 +02004948 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4949 * and it's not a backup server and its effective weight is > 0,
4950 * then it can accept new connections, so we shut down all streams
4951 * on all backup servers.
4952 */
4953 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4954 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4955 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4956
4957 /* check if we can handle some connections queued at the proxy. We
4958 * will take as many as we can handle.
4959 */
4960 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004961 }
4962 else if (s->next_admin & SRV_ADMF_MAINT) {
4963 /* remaining in maintenance mode, let's inform precisely about the
4964 * situation.
4965 */
4966 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
4967 tmptrash = alloc_trash_chunk();
4968 if (tmptrash) {
4969 chunk_printf(tmptrash,
4970 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
4971 s->flags & SRV_F_BACKUP ? "Backup " : "",
4972 s->proxy->id, s->id);
4973
4974 if (s->track) /* normally it's mandatory here */
4975 chunk_appendf(tmptrash, " via %s/%s",
4976 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004977 ha_warning("%s.\n", tmptrash->area);
4978 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4979 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004980 free_trash_chunk(tmptrash);
4981 tmptrash = NULL;
4982 }
4983 }
4984 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
4985 tmptrash = alloc_trash_chunk();
4986 if (tmptrash) {
4987 chunk_printf(tmptrash,
4988 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
4989 s->flags & SRV_F_BACKUP ? "Backup " : "",
4990 s->proxy->id, s->id, s->hostname);
4991
4992 if (s->track) /* normally it's mandatory here */
4993 chunk_appendf(tmptrash, " via %s/%s",
4994 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004995 ha_warning("%s.\n", tmptrash->area);
4996 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4997 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004998 free_trash_chunk(tmptrash);
4999 tmptrash = NULL;
5000 }
5001 }
5002 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5003 tmptrash = alloc_trash_chunk();
5004 if (tmptrash) {
5005 chunk_printf(tmptrash,
5006 "%sServer %s/%s remains in forced maintenance",
5007 s->flags & SRV_F_BACKUP ? "Backup " : "",
5008 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005009 ha_warning("%s.\n", tmptrash->area);
5010 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5011 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005012 free_trash_chunk(tmptrash);
5013 tmptrash = NULL;
5014 }
5015 }
5016 /* don't report anything when leaving drain mode and remaining in maintenance */
5017
5018 s->cur_admin = s->next_admin;
5019 }
5020
5021 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5022 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5023 /* drain state is applied only if not yet in maint */
5024
5025 s->last_change = now.tv_sec;
5026 if (px->lbprm.set_server_status_down)
5027 px->lbprm.set_server_status_down(s);
5028
5029 /* we might have streams queued on this server and waiting for
5030 * a connection. Those which are redispatchable will be queued
5031 * to another server or to the proxy itself.
5032 */
5033 xferred = pendconn_redistribute(s);
5034
5035 tmptrash = alloc_trash_chunk();
5036 if (tmptrash) {
5037 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5038 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5039 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5040
5041 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5042
5043 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005044 ha_warning("%s.\n", tmptrash->area);
5045 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5046 tmptrash->area);
5047 send_email_alert(s, LOG_NOTICE, "%s",
5048 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005049 }
5050 free_trash_chunk(tmptrash);
5051 tmptrash = NULL;
5052 }
5053
5054 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5055 set_backend_down(s->proxy);
5056 }
5057 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5058 /* OK completely leaving drain mode */
5059 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5060 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5061 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5062 s->proxy->last_change = now.tv_sec;
5063 }
5064
5065 if (s->last_change < now.tv_sec) // ignore negative times
5066 s->down_time += now.tv_sec - s->last_change;
5067 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005068 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005069
5070 tmptrash = alloc_trash_chunk();
5071 if (tmptrash) {
5072 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5073 chunk_printf(tmptrash,
5074 "%sServer %s/%s is %s (leaving forced drain)",
5075 s->flags & SRV_F_BACKUP ? "Backup " : "",
5076 s->proxy->id, s->id,
5077 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5078 }
5079 else {
5080 chunk_printf(tmptrash,
5081 "%sServer %s/%s is %s (leaving drain)",
5082 s->flags & SRV_F_BACKUP ? "Backup " : "",
5083 s->proxy->id, s->id,
5084 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5085 if (s->track) /* normally it's mandatory here */
5086 chunk_appendf(tmptrash, " via %s/%s",
5087 s->track->proxy->id, s->track->id);
5088 }
5089
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005090 ha_warning("%s.\n", tmptrash->area);
5091 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5092 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005093 free_trash_chunk(tmptrash);
5094 tmptrash = NULL;
5095 }
5096
5097 /* now propagate the status change to any LB algorithms */
5098 if (px->lbprm.update_server_eweight)
5099 px->lbprm.update_server_eweight(s);
5100 else if (srv_willbe_usable(s)) {
5101 if (px->lbprm.set_server_status_up)
5102 px->lbprm.set_server_status_up(s);
5103 }
5104 else {
5105 if (px->lbprm.set_server_status_down)
5106 px->lbprm.set_server_status_down(s);
5107 }
5108 }
5109 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5110 /* remaining in drain mode after removing one of its flags */
5111
5112 tmptrash = alloc_trash_chunk();
5113 if (tmptrash) {
5114 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5115 chunk_printf(tmptrash,
5116 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5117 s->flags & SRV_F_BACKUP ? "Backup " : "",
5118 s->proxy->id, s->id);
5119
5120 if (s->track) /* normally it's mandatory here */
5121 chunk_appendf(tmptrash, " via %s/%s",
5122 s->track->proxy->id, s->track->id);
5123 }
5124 else {
5125 chunk_printf(tmptrash,
5126 "%sServer %s/%s remains in forced drain mode",
5127 s->flags & SRV_F_BACKUP ? "Backup " : "",
5128 s->proxy->id, s->id);
5129 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005130 ha_warning("%s.\n", tmptrash->area);
5131 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5132 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005133 free_trash_chunk(tmptrash);
5134 tmptrash = NULL;
5135 }
5136
5137 /* commit new admin status */
5138
5139 s->cur_admin = s->next_admin;
5140 }
5141 }
5142
5143 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005144 *s->adm_st_chg_cause = 0;
5145}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005146
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005147struct task *srv_cleanup_toremove_connections(struct task *task, void *context, unsigned short state)
5148{
5149 struct connection *conn;
5150
Olivier Houchard859dc802019-08-08 15:47:21 +02005151 while ((conn = MT_LIST_POP(&toremove_connections[tid],
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005152 struct connection *, list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005153 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005154 }
5155
5156 return task;
5157}
5158
Willy Tarreau980855b2019-02-07 14:59:29 +01005159struct task *srv_cleanup_idle_connections(struct task *task, void *context, unsigned short state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005160{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005161 struct server *srv;
5162 struct eb32_node *eb;
5163 int i;
5164 unsigned int next_wakeup;
5165 int need_wakeup = 0;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005166
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005167 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5168 while (1) {
5169 int srv_is_empty = 1;
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005170 int exceed_conns;
5171 int to_kill;
5172 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005173
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005174 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5175 if (!eb) {
5176 /* we might have reached the end of the tree, typically because
5177 * <now_ms> is in the first half and we're first scanning the last
5178 * half. Let's loop back to the beginning of the tree now.
5179 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005180
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005181 eb = eb32_first(&idle_conn_srv);
5182 if (likely(!eb))
5183 break;
5184 }
5185 if (tick_is_lt(now_ms, eb->key)) {
5186 /* timer not expired yet, revisit it later */
5187 next_wakeup = eb->key;
5188 need_wakeup = 1;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005189 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005190 }
5191 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005192
5193 /* Calculate how many idle connections we want to kill :
5194 * we want to remove half the difference between the total
5195 * of established connections (used or idle) and the max
5196 * number of used connections.
5197 */
5198 curr_idle = srv->curr_idle_conns;
5199 if (curr_idle == 0)
5200 goto remove;
5201 exceed_conns = srv->curr_used_conns + curr_idle -
5202 srv->max_used_conns;
5203 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
5204 srv->max_used_conns = srv->curr_used_conns;
5205
5206 for (i = 0; i < global.nbthread && to_kill > 0; i++) {
5207 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005208 int j;
5209 int did_remove = 0;
5210
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005211 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5212 curr_idle + 1;
Olivier Houchard4be71902019-07-11 15:49:00 +02005213 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[i]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005214 for (j = 0; j < max_conn; j++) {
Olivier Houcharddc2f2752020-02-13 19:12:07 +01005215 struct connection *conn = MT_LIST_POP(&srv->idle_conns[i], struct connection *, list);
5216 if (!conn)
5217 conn = MT_LIST_POP(&srv->safe_conns[i],
5218 struct connection *, list);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005219 if (!conn)
5220 break;
5221 did_remove = 1;
Olivier Houchard859dc802019-08-08 15:47:21 +02005222 MT_LIST_ADDQ(&toremove_connections[i], (struct mt_list *)&conn->list);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005223 }
Olivier Houchard4be71902019-07-11 15:49:00 +02005224 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[i]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005225 if (did_remove && max_conn < srv->curr_idle_thr[i])
5226 srv_is_empty = 0;
5227 if (did_remove)
5228 task_wakeup(idle_conn_cleanup[i], TASK_WOKEN_OTHER);
5229 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005230remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005231 eb32_delete(&srv->idle_node);
5232 if (!srv_is_empty) {
5233 /* There are still more idle connections, add the
5234 * server back in the tree.
5235 */
5236 srv->idle_node.key = tick_add(srv->pool_purge_delay,
5237 now_ms);
5238 eb32_insert(&idle_conn_srv, &srv->idle_node);
5239 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005240 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005241 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5242
5243 if (need_wakeup)
5244 task->expire = next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005245 else
5246 task->expire = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005247
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005248 return task;
5249}
Olivier Houchard88698d92019-04-16 19:07:22 +02005250
5251/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5252static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
5253 struct proxy *defpx, const char *file, int line,
5254 char **err)
5255{
5256 int arg = -1;
5257
5258 if (too_many_args(1, args, err, NULL))
5259 return -1;
5260
5261 if (*(args[1]) != 0)
5262 arg = atoi(args[1]);
5263
5264 if (arg < 0 || arg > 100) {
5265 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5266 return -1;
5267 }
5268
5269 if (args[0][10] == 'h')
5270 global.tune.pool_high_ratio = arg;
5271 else
5272 global.tune.pool_low_ratio = arg;
5273 return 0;
5274}
5275
5276/* config keyword parsers */
5277static struct cfg_kw_list cfg_kws = {ILH, {
5278 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5279 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5280 { 0, NULL, NULL }
5281}};
5282
5283INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5284
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005285/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005286 * Local variables:
5287 * c-indent-level: 8
5288 * c-basic-offset: 8
5289 * End:
5290 */