blob: 8ca704382ec664fe38fcd631c42f66b54c3a146d [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>
Willy Tarreau272adea2014-03-31 10:39:59 +020028#include <types/global.h>
Willy Tarreau21b069d2016-11-23 17:15:08 +010029#include <types/cli.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020030#include <types/dns.h>
William Lallemand222baf22016-11-19 02:00:33 +010031#include <types/stats.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020032
William Lallemand222baf22016-11-19 02:00:33 +010033#include <proto/applet.h>
34#include <proto/cli.h>
Simon Hormanb1900d52015-01-30 11:22:54 +090035#include <proto/checks.h>
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +020036#include <proto/connection.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020037#include <proto/port_range.h>
38#include <proto/protocol.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020039#include <proto/queue.h>
Frédéric Lécaille9a146de2017-03-20 14:54:41 +010040#include <proto/sample.h>
Willy Tarreauec6c5df2008-07-15 00:22:45 +020041#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020042#include <proto/stream.h>
William Lallemand222baf22016-11-19 02:00:33 +010043#include <proto/stream_interface.h>
44#include <proto/stats.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020045#include <proto/task.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020046#include <proto/dns.h>
David Carlier6f182082017-04-03 21:58:04 +010047#include <netinet/tcp.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020048
Willy Tarreau3ff577e2018-08-02 11:48:52 +020049static void srv_update_status(struct server *s);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020050static void srv_update_state(struct server *srv, int version, char **params);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +010051static int srv_apply_lastaddr(struct server *srv, int *err_code);
Olivier Houchardd16bfe62017-10-31 15:21:19 +010052static int srv_set_fqdn(struct server *srv, const char *fqdn, int dns_locked);
Olivier Houchard0c18a6f2018-12-02 14:11:41 +010053static struct task *cleanup_idle_connections(struct task *task, void *ctx, unsigned short state);
Willy Tarreaubaaee002006-06-26 02:48:02 +020054
Willy Tarreau21faa912012-10-10 08:27:36 +020055/* List head of all known server keywords */
56static struct srv_kw_list srv_keywords = {
57 .list = LIST_HEAD_INIT(srv_keywords.list)
58};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020059
Simon Hormana3608442013-11-01 16:46:15 +090060int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020061{
Emeric Brun52a91d32017-08-31 14:41:55 +020062 if ((s->cur_state != SRV_ST_STOPPED) && s->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020063 return s->down_time;
64
65 return now.tv_sec - s->last_change + s->down_time;
66}
Willy Tarreaubaaee002006-06-26 02:48:02 +020067
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050068int srv_lastsession(const struct server *s)
69{
70 if (s->counters.last_sess)
71 return now.tv_sec - s->counters.last_sess;
72
73 return -1;
74}
75
Simon Horman4a741432013-02-23 15:35:38 +090076int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020077{
Simon Horman4a741432013-02-23 15:35:38 +090078 const struct server *s = check->server;
79
Willy Tarreauff5ae352013-12-11 20:36:34 +010080 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +090081 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010082
Emeric Brun52a91d32017-08-31 14:41:55 +020083 if ((s->next_state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +090084 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010085
Simon Horman4a741432013-02-23 15:35:38 +090086 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010087}
88
Olivier Houcharde9bad0a2018-01-17 17:39:34 +010089/*
90 * Check that we did not get a hash collision.
91 * Unlikely, but it can happen.
92 */
93static inline void srv_check_for_dup_dyncookie(struct server *s)
Olivier Houchard4e694042017-03-14 20:01:29 +010094{
95 struct proxy *p = s->proxy;
96 struct server *tmpserv;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +010097
98 for (tmpserv = p->srv; tmpserv != NULL;
99 tmpserv = tmpserv->next) {
100 if (tmpserv == s)
101 continue;
102 if (tmpserv->next_admin & SRV_ADMF_FMAINT)
103 continue;
104 if (tmpserv->cookie &&
105 strcmp(tmpserv->cookie, s->cookie) == 0) {
106 ha_warning("We generated two equal cookies for two different servers.\n"
107 "Please change the secret key for '%s'.\n",
108 s->proxy->id);
109 }
110 }
111
112}
113
Willy Tarreau46b7f532018-08-21 11:54:26 +0200114/*
115 * Must be called with the server lock held.
116 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100117void srv_set_dyncookie(struct server *s)
118{
119 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100120 char *tmpbuf;
121 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100122 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100123 size_t buffer_len;
124 int addr_len;
125 int port;
126
127 if ((s->flags & SRV_F_COOKIESET) ||
128 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
129 s->proxy->dyncookie_key == NULL)
130 return;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100131 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100132
133 if (s->addr.ss_family != AF_INET &&
134 s->addr.ss_family != AF_INET6)
135 return;
136 /*
137 * Buffer to calculate the cookie value.
138 * The buffer contains the secret key + the server IP address
139 * + the TCP port.
140 */
141 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
142 /*
143 * The TCP port should use only 2 bytes, but is stored in
144 * an unsigned int in struct server, so let's use 4, to be
145 * on the safe side.
146 */
147 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200148 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100149 memcpy(tmpbuf, p->dyncookie_key, key_len);
150 memcpy(&(tmpbuf[key_len]),
151 s->addr.ss_family == AF_INET ?
152 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
153 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
154 addr_len);
155 /*
156 * Make sure it's the same across all the load balancers,
157 * no matter their endianness.
158 */
159 port = htonl(s->svc_port);
160 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
161 hash_value = XXH64(tmpbuf, buffer_len, 0);
162 memprintf(&s->cookie, "%016llx", hash_value);
163 if (!s->cookie)
164 return;
165 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100166
167 /* Don't bother checking if the dyncookie is duplicated if
168 * the server is marked as "disabled", maybe it doesn't have
169 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100170 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100171 if (!(s->next_admin & SRV_ADMF_FMAINT))
172 srv_check_for_dup_dyncookie(s);
Olivier Houchard4e694042017-03-14 20:01:29 +0100173}
174
Willy Tarreau21faa912012-10-10 08:27:36 +0200175/*
176 * Registers the server keyword list <kwl> as a list of valid keywords for next
177 * parsing sessions.
178 */
179void srv_register_keywords(struct srv_kw_list *kwl)
180{
181 LIST_ADDQ(&srv_keywords.list, &kwl->list);
182}
183
184/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
185 * keyword is found with a NULL ->parse() function, then an attempt is made to
186 * find one with a valid ->parse() function. This way it is possible to declare
187 * platform-dependant, known keywords as NULL, then only declare them as valid
188 * if some options are met. Note that if the requested keyword contains an
189 * opening parenthesis, everything from this point is ignored.
190 */
191struct srv_kw *srv_find_kw(const char *kw)
192{
193 int index;
194 const char *kwend;
195 struct srv_kw_list *kwl;
196 struct srv_kw *ret = NULL;
197
198 kwend = strchr(kw, '(');
199 if (!kwend)
200 kwend = kw + strlen(kw);
201
202 list_for_each_entry(kwl, &srv_keywords.list, list) {
203 for (index = 0; kwl->kw[index].kw != NULL; index++) {
204 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
205 kwl->kw[index].kw[kwend-kw] == 0) {
206 if (kwl->kw[index].parse)
207 return &kwl->kw[index]; /* found it !*/
208 else
209 ret = &kwl->kw[index]; /* may be OK */
210 }
211 }
212 }
213 return ret;
214}
215
216/* Dumps all registered "server" keywords to the <out> string pointer. The
217 * unsupported keywords are only dumped if their supported form was not
218 * found.
219 */
220void srv_dump_kws(char **out)
221{
222 struct srv_kw_list *kwl;
223 int index;
224
225 *out = NULL;
226 list_for_each_entry(kwl, &srv_keywords.list, list) {
227 for (index = 0; kwl->kw[index].kw != NULL; index++) {
228 if (kwl->kw[index].parse ||
229 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
230 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
231 kwl->scope,
232 kwl->kw[index].kw,
233 kwl->kw[index].skip ? " <arg>" : "",
234 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
235 kwl->kw[index].parse ? "" : " (not supported)");
236 }
237 }
238 }
239}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100240
Frédéric Lécaille6e5e0d82017-03-20 16:30:18 +0100241/* Parse the "addr" server keyword */
242static int srv_parse_addr(char **args, int *cur_arg,
243 struct proxy *curproxy, struct server *newsrv, char **err)
244{
245 char *errmsg, *arg;
246 struct sockaddr_storage *sk;
247 int port1, port2;
248 struct protocol *proto;
249
250 errmsg = NULL;
251 arg = args[*cur_arg + 1];
252
253 if (!*arg) {
254 memprintf(err, "'%s' expects <ipv4|ipv6> as argument.\n", args[*cur_arg]);
255 goto err;
256 }
257
258 sk = str2sa_range(arg, NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
259 if (!sk) {
260 memprintf(err, "'%s' : %s", args[*cur_arg], errmsg);
261 goto err;
262 }
263
264 proto = protocol_by_family(sk->ss_family);
265 if (!proto || !proto->connect) {
266 memprintf(err, "'%s %s' : connect() not supported for this address family.\n",
267 args[*cur_arg], arg);
268 goto err;
269 }
270
271 if (port1 != port2) {
272 memprintf(err, "'%s' : port ranges and offsets are not allowed in '%s'\n",
273 args[*cur_arg], arg);
274 goto err;
275 }
276
277 newsrv->check.addr = newsrv->agent.addr = *sk;
278 newsrv->flags |= SRV_F_CHECKADDR;
279 newsrv->flags |= SRV_F_AGENTADDR;
280
281 return 0;
282
283 err:
284 free(errmsg);
285 return ERR_ALERT | ERR_FATAL;
286}
287
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +0100288/* Parse the "agent-check" server keyword */
289static int srv_parse_agent_check(char **args, int *cur_arg,
290 struct proxy *curproxy, struct server *newsrv, char **err)
291{
292 newsrv->do_agent = 1;
293 return 0;
294}
295
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100296/* Parse the "backup" server keyword */
297static int srv_parse_backup(char **args, int *cur_arg,
298 struct proxy *curproxy, struct server *newsrv, char **err)
299{
300 newsrv->flags |= SRV_F_BACKUP;
301 return 0;
302}
303
Frédéric Lécaille65aa3562017-03-14 11:20:13 +0100304/* Parse the "check" server keyword */
305static int srv_parse_check(char **args, int *cur_arg,
306 struct proxy *curproxy, struct server *newsrv, char **err)
307{
308 newsrv->do_check = 1;
309 return 0;
310}
311
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100312/* Parse the "check-send-proxy" server keyword */
313static int srv_parse_check_send_proxy(char **args, int *cur_arg,
314 struct proxy *curproxy, struct server *newsrv, char **err)
315{
316 newsrv->check.send_proxy = 1;
317 return 0;
318}
319
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100320/* Parse the "cookie" server keyword */
321static int srv_parse_cookie(char **args, int *cur_arg,
322 struct proxy *curproxy, struct server *newsrv, char **err)
323{
324 char *arg;
325
326 arg = args[*cur_arg + 1];
327 if (!*arg) {
328 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
329 return ERR_ALERT | ERR_FATAL;
330 }
331
332 free(newsrv->cookie);
333 newsrv->cookie = strdup(arg);
334 newsrv->cklen = strlen(arg);
335 newsrv->flags |= SRV_F_COOKIESET;
336 return 0;
337}
338
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100339/* Parse the "disabled" server keyword */
340static int srv_parse_disabled(char **args, int *cur_arg,
341 struct proxy *curproxy, struct server *newsrv, char **err)
342{
Emeric Brun52a91d32017-08-31 14:41:55 +0200343 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
344 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100345 newsrv->check.state |= CHK_ST_PAUSED;
346 newsrv->check.health = 0;
347 return 0;
348}
349
350/* Parse the "enabled" server keyword */
351static int srv_parse_enabled(char **args, int *cur_arg,
352 struct proxy *curproxy, struct server *newsrv, char **err)
353{
Emeric Brun52a91d32017-08-31 14:41:55 +0200354 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
355 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100356 newsrv->check.state &= ~CHK_ST_PAUSED;
357 newsrv->check.health = newsrv->check.rise;
358 return 0;
359}
360
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100361static 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 +0100362{
363 const char *res;
364 char *arg;
365 unsigned int time;
366
367 arg = args[*cur_arg + 1];
368 if (!*arg) {
369 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
370 return ERR_ALERT | ERR_FATAL;
371 }
372 res = parse_time_err(arg, &time, TIME_UNIT_MS);
373 if (res) {
374 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
375 *res, args[*cur_arg]);
376 return ERR_ALERT | ERR_FATAL;
377 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100378 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100379
380 return 0;
381}
382
Olivier Houchard006e3102018-12-10 18:30:32 +0100383static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
384{
385 char *arg;
386
387 arg = args[*cur_arg + 1];
388 if (!*arg) {
389 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
390 return ERR_ALERT | ERR_FATAL;
391 }
392 newsrv->max_idle_conns = atoi(arg);
393
394 return 0;
395}
396
Willy Tarreaudff55432012-10-10 17:51:05 +0200397/* parse the "id" server keyword */
398static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
399{
400 struct eb32_node *node;
401
402 if (!*args[*cur_arg + 1]) {
403 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
404 return ERR_ALERT | ERR_FATAL;
405 }
406
407 newsrv->puid = atol(args[*cur_arg + 1]);
408 newsrv->conf.id.key = newsrv->puid;
409
410 if (newsrv->puid <= 0) {
411 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
412 return ERR_ALERT | ERR_FATAL;
413 }
414
415 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
416 if (node) {
417 struct server *target = container_of(node, struct server, conf.id);
418 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
419 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
420 target->id);
421 return ERR_ALERT | ERR_FATAL;
422 }
423
424 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200425 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200426 return 0;
427}
428
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100429/* Parse the "namespace" server keyword */
430static int srv_parse_namespace(char **args, int *cur_arg,
431 struct proxy *curproxy, struct server *newsrv, char **err)
432{
433#ifdef CONFIG_HAP_NS
434 char *arg;
435
436 arg = args[*cur_arg + 1];
437 if (!*arg) {
438 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
439 return ERR_ALERT | ERR_FATAL;
440 }
441
442 if (!strcmp(arg, "*")) {
443 /* Use the namespace associated with the connection (if present). */
444 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
445 return 0;
446 }
447
448 /*
449 * As this parser may be called several times for the same 'default-server'
450 * object, or for a new 'server' instance deriving from a 'default-server'
451 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
452 */
453 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
454
455 newsrv->netns = netns_store_lookup(arg, strlen(arg));
456 if (!newsrv->netns)
457 newsrv->netns = netns_store_insert(arg);
458
459 if (!newsrv->netns) {
460 memprintf(err, "Cannot open namespace '%s'", arg);
461 return ERR_ALERT | ERR_FATAL;
462 }
463
464 return 0;
465#else
466 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
467 return ERR_ALERT | ERR_FATAL;
468#endif
469}
470
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +0100471/* Parse the "no-agent-check" server keyword */
472static int srv_parse_no_agent_check(char **args, int *cur_arg,
473 struct proxy *curproxy, struct server *newsrv, char **err)
474{
475 free_check(&newsrv->agent);
476 newsrv->agent.inter = 0;
477 newsrv->agent.port = 0;
478 newsrv->agent.state &= ~CHK_ST_CONFIGURED & ~CHK_ST_ENABLED & ~CHK_ST_AGENT;
479 newsrv->do_agent = 0;
480 return 0;
481}
482
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100483/* Parse the "no-backup" server keyword */
484static int srv_parse_no_backup(char **args, int *cur_arg,
485 struct proxy *curproxy, struct server *newsrv, char **err)
486{
487 newsrv->flags &= ~SRV_F_BACKUP;
488 return 0;
489}
490
Frédéric Lécaille65aa3562017-03-14 11:20:13 +0100491/* Parse the "no-check" server keyword */
492static int srv_parse_no_check(char **args, int *cur_arg,
493 struct proxy *curproxy, struct server *newsrv, char **err)
494{
495 free_check(&newsrv->check);
496 newsrv->check.state &= ~CHK_ST_CONFIGURED & ~CHK_ST_ENABLED;
497 newsrv->do_check = 0;
498 return 0;
499}
500
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100501/* Parse the "no-check-send-proxy" server keyword */
502static int srv_parse_no_check_send_proxy(char **args, int *cur_arg,
503 struct proxy *curproxy, struct server *newsrv, char **err)
504{
505 newsrv->check.send_proxy = 0;
506 return 0;
507}
508
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100509/* Disable server PROXY protocol flags. */
510static int inline srv_disable_pp_flags(struct server *srv, unsigned int flags)
511{
512 srv->pp_opts &= ~flags;
513 return 0;
514}
515
516/* Parse the "no-send-proxy" server keyword */
517static int srv_parse_no_send_proxy(char **args, int *cur_arg,
518 struct proxy *curproxy, struct server *newsrv, char **err)
519{
520 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
521}
522
523/* Parse the "no-send-proxy-v2" server keyword */
524static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
525 struct proxy *curproxy, struct server *newsrv, char **err)
526{
527 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
528}
529
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100530/* Parse the "non-stick" server keyword */
531static int srv_parse_non_stick(char **args, int *cur_arg,
532 struct proxy *curproxy, struct server *newsrv, char **err)
533{
534 newsrv->flags |= SRV_F_NON_STICK;
535 return 0;
536}
537
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100538/* Enable server PROXY protocol flags. */
539static int inline srv_enable_pp_flags(struct server *srv, unsigned int flags)
540{
541 srv->pp_opts |= flags;
542 return 0;
543}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200544/* parse the "proto" server keyword */
545static int srv_parse_proto(char **args, int *cur_arg,
546 struct proxy *px, struct server *newsrv, char **err)
547{
548 struct ist proto;
549
550 if (!*args[*cur_arg + 1]) {
551 memprintf(err, "'%s' : missing value", args[*cur_arg]);
552 return ERR_ALERT | ERR_FATAL;
553 }
554 proto = ist2(args[*cur_arg + 1], strlen(args[*cur_arg + 1]));
555 newsrv->mux_proto = get_mux_proto(proto);
556 if (!newsrv->mux_proto) {
557 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
558 return ERR_ALERT | ERR_FATAL;
559 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200560 return 0;
561}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100562
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100563/* parse the "proxy-v2-options" */
564static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
565 struct proxy *px, struct server *newsrv, char **err)
566{
567 char *p, *n;
568 for (p = args[*cur_arg+1]; p; p = n) {
569 n = strchr(p, ',');
570 if (n)
571 *n++ = '\0';
572 if (!strcmp(p, "ssl")) {
573 newsrv->pp_opts |= SRV_PP_V2_SSL;
574 } else if (!strcmp(p, "cert-cn")) {
575 newsrv->pp_opts |= SRV_PP_V2_SSL;
576 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100577 } else if (!strcmp(p, "cert-key")) {
578 newsrv->pp_opts |= SRV_PP_V2_SSL;
579 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
580 } else if (!strcmp(p, "cert-sig")) {
581 newsrv->pp_opts |= SRV_PP_V2_SSL;
582 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
583 } else if (!strcmp(p, "ssl-cipher")) {
584 newsrv->pp_opts |= SRV_PP_V2_SSL;
585 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100586 } else if (!strcmp(p, "authority")) {
587 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100588 } else if (!strcmp(p, "crc32c")) {
589 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100590 } else
591 goto fail;
592 }
593 return 0;
594 fail:
595 if (err)
596 memprintf(err, "'%s' : proxy v2 option not implemented", p);
597 return ERR_ALERT | ERR_FATAL;
598}
599
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100600/* Parse the "observe" server keyword */
601static int srv_parse_observe(char **args, int *cur_arg,
602 struct proxy *curproxy, struct server *newsrv, char **err)
603{
604 char *arg;
605
606 arg = args[*cur_arg + 1];
607 if (!*arg) {
608 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
609 return ERR_ALERT | ERR_FATAL;
610 }
611
612 if (!strcmp(arg, "none")) {
613 newsrv->observe = HANA_OBS_NONE;
614 }
615 else if (!strcmp(arg, "layer4")) {
616 newsrv->observe = HANA_OBS_LAYER4;
617 }
618 else if (!strcmp(arg, "layer7")) {
619 if (curproxy->mode != PR_MODE_HTTP) {
620 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
621 return ERR_ALERT;
622 }
623 newsrv->observe = HANA_OBS_LAYER7;
624 }
625 else {
626 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
627 "but got '%s'\n", args[*cur_arg], arg);
628 return ERR_ALERT | ERR_FATAL;
629 }
630
631 return 0;
632}
633
Frédéric Lécaille16186232017-03-14 16:42:49 +0100634/* Parse the "redir" server keyword */
635static int srv_parse_redir(char **args, int *cur_arg,
636 struct proxy *curproxy, struct server *newsrv, char **err)
637{
638 char *arg;
639
640 arg = args[*cur_arg + 1];
641 if (!*arg) {
642 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
643 return ERR_ALERT | ERR_FATAL;
644 }
645
646 free(newsrv->rdr_pfx);
647 newsrv->rdr_pfx = strdup(arg);
648 newsrv->rdr_len = strlen(arg);
649
650 return 0;
651}
652
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100653/* Parse the "send-proxy" server keyword */
654static int srv_parse_send_proxy(char **args, int *cur_arg,
655 struct proxy *curproxy, struct server *newsrv, char **err)
656{
657 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
658}
659
660/* Parse the "send-proxy-v2" server keyword */
661static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
662 struct proxy *curproxy, struct server *newsrv, char **err)
663{
664 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
665}
666
Frédéric Lécailledba97072017-03-17 15:33:50 +0100667
668/* Parse the "source" server keyword */
669static int srv_parse_source(char **args, int *cur_arg,
670 struct proxy *curproxy, struct server *newsrv, char **err)
671{
672 char *errmsg;
673 int port_low, port_high;
674 struct sockaddr_storage *sk;
675 struct protocol *proto;
676
677 errmsg = NULL;
678
679 if (!*args[*cur_arg + 1]) {
680 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
681 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
682 goto err;
683 }
684
685 /* 'sk' is statically allocated (no need to be freed). */
686 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, &errmsg, NULL, NULL, 1);
687 if (!sk) {
688 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
689 goto err;
690 }
691
692 proto = protocol_by_family(sk->ss_family);
693 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100694 ha_alert("'%s %s' : connect() not supported for this address family.\n",
695 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100696 goto err;
697 }
698
699 newsrv->conn_src.opts |= CO_SRC_BIND;
700 newsrv->conn_src.source_addr = *sk;
701
702 if (port_low != port_high) {
703 int i;
704
705 if (!port_low || !port_high) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100706 ha_alert("'%s' does not support port offsets (found '%s').\n",
707 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100708 goto err;
709 }
710
711 if (port_low <= 0 || port_low > 65535 ||
712 port_high <= 0 || port_high > 65535 ||
713 port_low > port_high) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100714 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 +0100715 goto err;
716 }
717 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
718 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
719 newsrv->conn_src.sport_range->ports[i] = port_low + i;
720 }
721
722 *cur_arg += 2;
723 while (*(args[*cur_arg])) {
724 if (!strcmp(args[*cur_arg], "usesrc")) { /* address to use outside */
725#if defined(CONFIG_HAP_TRANSPARENT)
726 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100727 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
728 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +0100729 goto err;
730 }
731 if (!strcmp(args[*cur_arg + 1], "client")) {
732 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
733 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
734 }
735 else if (!strcmp(args[*cur_arg + 1], "clientip")) {
736 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
737 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
738 }
739 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
740 char *name, *end;
741
742 name = args[*cur_arg + 1] + 7;
743 while (isspace(*name))
744 name++;
745
746 end = name;
747 while (*end && !isspace(*end) && *end != ',' && *end != ')')
748 end++;
749
750 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
751 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
752 free(newsrv->conn_src.bind_hdr_name);
753 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
754 newsrv->conn_src.bind_hdr_len = end - name;
755 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
756 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
757 newsrv->conn_src.bind_hdr_occ = -1;
758
759 /* now look for an occurrence number */
760 while (isspace(*end))
761 end++;
762 if (*end == ',') {
763 end++;
764 name = end;
765 if (*end == '-')
766 end++;
767 while (isdigit((int)*end))
768 end++;
769 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
770 }
771
772 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100773 ha_alert("usesrc hdr_ip(name,num) does not support negative"
774 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100775 goto err;
776 }
777 }
778 else {
779 struct sockaddr_storage *sk;
780 int port1, port2;
781
782 /* 'sk' is statically allocated (no need to be freed). */
783 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
784 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100785 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100786 goto err;
787 }
788
789 proto = protocol_by_family(sk->ss_family);
790 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100791 ha_alert("'%s %s' : connect() not supported for this address family.\n",
792 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100793 goto err;
794 }
795
796 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100797 ha_alert("'%s' : port ranges and offsets are not allowed in '%s'\n",
798 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100799 goto err;
800 }
801 newsrv->conn_src.tproxy_addr = *sk;
802 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
803 }
804 global.last_checks |= LSTCHK_NETADM;
805 *cur_arg += 2;
806 continue;
807#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100808 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 +0100809 goto err;
810#endif /* defined(CONFIG_HAP_TRANSPARENT) */
811 } /* "usesrc" */
812
813 if (!strcmp(args[*cur_arg], "interface")) { /* specifically bind to this interface */
814#ifdef SO_BINDTODEVICE
815 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100816 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100817 goto err;
818 }
819 free(newsrv->conn_src.iface_name);
820 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
821 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
822 global.last_checks |= LSTCHK_NETADM;
823#else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100824 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100825 goto err;
826#endif
827 *cur_arg += 2;
828 continue;
829 }
830 /* this keyword in not an option of "source" */
831 break;
832 } /* while */
833
834 return 0;
835
836 err:
837 free(errmsg);
838 return ERR_ALERT | ERR_FATAL;
839}
840
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100841/* Parse the "stick" server keyword */
842static int srv_parse_stick(char **args, int *cur_arg,
843 struct proxy *curproxy, struct server *newsrv, char **err)
844{
845 newsrv->flags &= ~SRV_F_NON_STICK;
846 return 0;
847}
848
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100849/* Parse the "track" server keyword */
850static int srv_parse_track(char **args, int *cur_arg,
851 struct proxy *curproxy, struct server *newsrv, char **err)
852{
853 char *arg;
854
855 arg = args[*cur_arg + 1];
856 if (!*arg) {
857 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
858 return ERR_ALERT | ERR_FATAL;
859 }
860
861 free(newsrv->trackit);
862 newsrv->trackit = strdup(arg);
863
864 return 0;
865}
866
Frédéric Lécailledba97072017-03-17 15:33:50 +0100867
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200868/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +0200869 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200870 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200871 *
872 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200873 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200874void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200875{
Willy Tarreau87b09662015-04-03 00:22:06 +0200876 struct stream *stream, *stream_bck;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200877
Willy Tarreau87b09662015-04-03 00:22:06 +0200878 list_for_each_entry_safe(stream, stream_bck, &srv->actconns, by_srv)
879 if (stream->srv_conn == srv)
880 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200881}
882
883/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +0200884 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200885 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200886 *
887 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200888 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200889void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200890{
891 struct server *srv;
892
893 for (srv = px->srv; srv != NULL; srv = srv->next)
894 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +0200895 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200896}
897
Willy Tarreaubda92272014-05-20 21:55:30 +0200898/* Appends some information to a message string related to a server going UP or
899 * DOWN. If both <forced> and <reason> are null and the server tracks another
900 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +0200901 * If <check> is non-null, an entire string describing the check result will be
902 * appended after a comma and a space (eg: to report some information from the
903 * check that changed the state). In the other case, the string will be built
904 * using the check results stored into the struct server if present.
905 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +0200906 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200907 *
908 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200909 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200910void srv_append_status(struct buffer *msg, struct server *s,
911 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200912{
Emeric Brun5a133512017-10-19 14:42:30 +0200913 short status = s->op_st_chg.status;
914 short code = s->op_st_chg.code;
915 long duration = s->op_st_chg.duration;
916 char *desc = s->op_st_chg.reason;
917
918 if (check) {
919 status = check->status;
920 code = check->code;
921 duration = check->duration;
922 desc = check->desc;
923 }
924
925 if (status != -1) {
926 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
927
928 if (status >= HCHK_STATUS_L57DATA)
929 chunk_appendf(msg, ", code: %d", code);
930
931 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +0200932 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +0200933
934 chunk_appendf(msg, ", info: \"");
935
936 chunk_initlen(&src, desc, 0, strlen(desc));
937 chunk_asciiencode(msg, &src, '"');
938
939 chunk_appendf(msg, "\"");
940 }
941
942 if (duration >= 0)
943 chunk_appendf(msg, ", check duration: %ldms", duration);
944 }
945 else if (desc && *desc) {
946 chunk_appendf(msg, ", %s", desc);
947 }
948 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +0200949 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +0200950 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200951
952 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200953 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200954 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
955 " %d sessions active, %d requeued, %d remaining in queue",
956 s->proxy->srv_act, s->proxy->srv_bck,
957 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
958 s->cur_sess, xferred, s->nbpend);
959 else
960 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
961 " %d sessions requeued, %d total in queue",
962 s->proxy->srv_act, s->proxy->srv_bck,
963 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
964 xferred, s->nbpend);
965 }
966}
967
Emeric Brun5a133512017-10-19 14:42:30 +0200968/* Marks server <s> down, regardless of its checks' statuses. The server is
969 * registered in a list to postpone the counting of the remaining servers on
970 * the proxy and transfers queued streams whenever possible to other servers at
971 * a sync point. Maintenance servers are ignored. It stores the <reason> if
972 * non-null as the reason for going down or the available data from the check
973 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200974 *
975 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200976 */
Emeric Brun5a133512017-10-19 14:42:30 +0200977void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200978{
979 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200980
Emeric Brun64cc49c2017-10-03 14:46:45 +0200981 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200982 return;
983
Emeric Brun52a91d32017-08-31 14:41:55 +0200984 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +0200985 *s->op_st_chg.reason = 0;
986 s->op_st_chg.status = -1;
987 if (reason) {
988 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
989 }
990 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +0100991 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +0200992 s->op_st_chg.code = check->code;
993 s->op_st_chg.status = check->status;
994 s->op_st_chg.duration = check->duration;
995 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200996
Willy Tarreaueeba36b2018-08-21 08:22:26 +0200997 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +0200998 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +0200999
Emeric Brun9f0b4582017-10-23 14:39:51 +02001000 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001001 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001002 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001003 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001004 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001005}
1006
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001007/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001008 * in maintenance. The server is registered in a list to postpone the counting
1009 * of the remaining servers on the proxy and tries to grab requests from the
1010 * proxy at a sync point. Maintenance servers are ignored. It stores the
1011 * <reason> if non-null as the reason for going down or the available data
1012 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001013 *
1014 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001015 */
Emeric Brun5a133512017-10-19 14:42:30 +02001016void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001017{
1018 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001019
Emeric Brun64cc49c2017-10-03 14:46:45 +02001020 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001021 return;
1022
Emeric Brun52a91d32017-08-31 14:41:55 +02001023 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001024 return;
1025
Emeric Brun52a91d32017-08-31 14:41:55 +02001026 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001027 *s->op_st_chg.reason = 0;
1028 s->op_st_chg.status = -1;
1029 if (reason) {
1030 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1031 }
1032 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001033 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001034 s->op_st_chg.code = check->code;
1035 s->op_st_chg.status = check->status;
1036 s->op_st_chg.duration = check->duration;
1037 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001038
Emeric Brun64cc49c2017-10-03 14:46:45 +02001039 if (s->slowstart <= 0)
1040 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001041
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001042 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001043 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001044
Emeric Brun9f0b4582017-10-23 14:39:51 +02001045 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001046 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001047 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001048 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001049 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001050}
1051
Willy Tarreau8eb77842014-05-21 13:54:57 +02001052/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001053 * isn't in maintenance. The server is registered in a list to postpone the
1054 * counting of the remaining servers on the proxy and tries to grab requests
1055 * from the proxy. Maintenance servers are ignored. It stores the
1056 * <reason> if non-null as the reason for going down or the available data
1057 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001058 * up. Note that it makes use of the trash to build the log strings, so <reason>
1059 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001060 *
1061 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001062 */
Emeric Brun5a133512017-10-19 14:42:30 +02001063void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001064{
1065 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001066
Emeric Brun64cc49c2017-10-03 14:46:45 +02001067 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001068 return;
1069
Emeric Brun52a91d32017-08-31 14:41:55 +02001070 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001071 return;
1072
Emeric Brun52a91d32017-08-31 14:41:55 +02001073 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001074 *s->op_st_chg.reason = 0;
1075 s->op_st_chg.status = -1;
1076 if (reason) {
1077 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1078 }
1079 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001080 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001081 s->op_st_chg.code = check->code;
1082 s->op_st_chg.status = check->status;
1083 s->op_st_chg.duration = check->duration;
1084 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001085
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001086 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001087 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001088
Emeric Brun9f0b4582017-10-23 14:39:51 +02001089 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001090 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001091 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001092 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001093 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001094}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001095
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001096/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1097 * enforce either maint mode or drain mode. It is not allowed to set more than
1098 * one flag at once. The equivalent "inherited" flag is propagated to all
1099 * tracking servers. Maintenance mode disables health checks (but not agent
1100 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001101 * is done. If <cause> is non-null, it will be displayed at the end of the log
1102 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001103 *
1104 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001105 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001106void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001107{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001108 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001109
1110 if (!mode)
1111 return;
1112
1113 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001114 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001115 return;
1116
Emeric Brun52a91d32017-08-31 14:41:55 +02001117 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001118 if (cause)
1119 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1120
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001121 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001122 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001123
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001124 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001125 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1126 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001127 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001128
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001129 /* compute the inherited flag to propagate */
1130 if (mode & SRV_ADMF_MAINT)
1131 mode = SRV_ADMF_IMAINT;
1132 else if (mode & SRV_ADMF_DRAIN)
1133 mode = SRV_ADMF_IDRAIN;
1134
Emeric Brun9f0b4582017-10-23 14:39:51 +02001135 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001136 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001137 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001138 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001139 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001140}
1141
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001142/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1143 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1144 * than one flag at once. The equivalent "inherited" flag is propagated to all
1145 * tracking servers. Leaving maintenance mode re-enables health checks. When
1146 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001147 *
1148 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001149 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001150void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001151{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001152 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001153
1154 if (!mode)
1155 return;
1156
1157 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001158 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001159 return;
1160
Emeric Brun52a91d32017-08-31 14:41:55 +02001161 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001162
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001163 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001164 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001165
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001166 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001167 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1168 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001169 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001170
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001171 if (mode & SRV_ADMF_MAINT)
1172 mode = SRV_ADMF_IMAINT;
1173 else if (mode & SRV_ADMF_DRAIN)
1174 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001175
Emeric Brun9f0b4582017-10-23 14:39:51 +02001176 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001177 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001178 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001179 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001180 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001181}
1182
Willy Tarreau757478e2016-11-03 19:22:19 +01001183/* principle: propagate maint and drain to tracking servers. This is useful
1184 * upon startup so that inherited states are correct.
1185 */
1186static void srv_propagate_admin_state(struct server *srv)
1187{
1188 struct server *srv2;
1189
1190 if (!srv->trackers)
1191 return;
1192
1193 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001194 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001195 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001196 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001197
Emeric Brun52a91d32017-08-31 14:41:55 +02001198 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001199 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001200 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001201 }
1202}
1203
1204/* Compute and propagate the admin states for all servers in proxy <px>.
1205 * Only servers *not* tracking another one are considered, because other
1206 * ones will be handled when the server they track is visited.
1207 */
1208void srv_compute_all_admin_states(struct proxy *px)
1209{
1210 struct server *srv;
1211
1212 for (srv = px->srv; srv; srv = srv->next) {
1213 if (srv->track)
1214 continue;
1215 srv_propagate_admin_state(srv);
1216 }
1217}
1218
Willy Tarreaudff55432012-10-10 17:51:05 +02001219/* Note: must not be declared <const> as its list will be overwritten.
1220 * Please take care of keeping this list alphabetically sorted, doing so helps
1221 * all code contributors.
1222 * Optional keywords are also declared with a NULL ->parse() function so that
1223 * the config parser can report an appropriate error when a known keyword was
1224 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001225 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001226 */
1227static struct srv_kw_list srv_kws = { "ALL", { }, {
Frédéric Lécaille6e5e0d82017-03-20 16:30:18 +01001228 { "addr", srv_parse_addr, 1, 1 }, /* IP address to send health to or to probe from agent-check */
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001229 { "agent-check", srv_parse_agent_check, 0, 1 }, /* Enable an auxiliary agent check */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001230 { "backup", srv_parse_backup, 0, 1 }, /* Flag as backup server */
Frédéric Lécaille65aa3562017-03-14 11:20:13 +01001231 { "check", srv_parse_check, 0, 1 }, /* enable health checks */
Frédéric Lécaille25df8902017-03-10 14:04:31 +01001232 { "check-send-proxy", srv_parse_check_send_proxy, 0, 1 }, /* enable PROXY protocol for health checks */
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +01001233 { "cookie", srv_parse_cookie, 1, 1 }, /* Assign a cookie to the server */
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +01001234 { "disabled", srv_parse_disabled, 0, 1 }, /* Start the server in 'disabled' state */
1235 { "enabled", srv_parse_enabled, 0, 1 }, /* Start the server in 'enabled' state */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001236 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
Frédéric Lécaille22f41a22017-03-16 17:17:36 +01001237 { "namespace", srv_parse_namespace, 1, 1 }, /* Namespace the server socket belongs to (if supported) */
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001238 { "no-agent-check", srv_parse_no_agent_check, 0, 1 }, /* Do not enable any auxiliary agent check */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001239 { "no-backup", srv_parse_no_backup, 0, 1 }, /* Flag as non-backup server */
Frédéric Lécaille65aa3562017-03-14 11:20:13 +01001240 { "no-check", srv_parse_no_check, 0, 1 }, /* disable health checks */
Frédéric Lécaille25df8902017-03-10 14:04:31 +01001241 { "no-check-send-proxy", srv_parse_no_check_send_proxy, 0, 1 }, /* disable PROXY protol for health checks */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001242 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1 }, /* Disable use of PROXY V1 protocol */
1243 { "no-send-proxy-v2", srv_parse_no_send_proxy_v2, 0, 1 }, /* Disable use of PROXY V2 protocol */
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001244 { "non-stick", srv_parse_non_stick, 0, 1 }, /* Disable stick-table persistence */
Frédéric Lécaille547356e2017-03-15 08:55:39 +01001245 { "observe", srv_parse_observe, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
Olivier Houchard006e3102018-12-10 18:30:32 +01001246 { "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 +01001247 { "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 +02001248 { "proto", srv_parse_proto, 1, 1 }, /* Set the proto to use for all outgoing connections */
Emmanuel Hocdetf643b802018-02-01 15:20:32 +01001249 { "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 +01001250 { "redir", srv_parse_redir, 1, 1 }, /* Enable redirection mode */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001251 { "send-proxy", srv_parse_send_proxy, 0, 1 }, /* Enforce use of PROXY V1 protocol */
1252 { "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 +02001253 { "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 +01001254 { "stick", srv_parse_stick, 0, 1 }, /* Enable stick-table persistence */
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001255 { "track", srv_parse_track, 1, 1 }, /* Set the current state of the server, tracking another one */
Willy Tarreaudff55432012-10-10 17:51:05 +02001256 { NULL, NULL, 0 },
1257}};
1258
Willy Tarreau0108d902018-11-25 19:14:37 +01001259INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001260
Willy Tarreau004e0452013-11-21 11:22:01 +01001261/* Recomputes the server's eweight based on its state, uweight, the current time,
1262 * and the proxy's algorihtm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001263 * state is automatically disabled if the time is elapsed. If <must_update> is
1264 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001265 *
1266 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001267 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001268void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001269{
1270 struct proxy *px = sv->proxy;
1271 unsigned w;
1272
1273 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1274 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001275 if (sv->next_state == SRV_ST_STARTING)
1276 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001277 }
1278
1279 /* We must take care of not pushing the server to full throttle during slow starts.
1280 * It must also start immediately, at least at the minimal step when leaving maintenance.
1281 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001282 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001283 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1284 else
1285 w = px->lbprm.wdiv;
1286
Emeric Brun52a91d32017-08-31 14:41:55 +02001287 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001288
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001289 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001290 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001291 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001292}
1293
Willy Tarreaubaaee002006-06-26 02:48:02 +02001294/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001295 * Parses weight_str and configures sv accordingly.
1296 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001297 *
1298 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001299 */
1300const char *server_parse_weight_change_request(struct server *sv,
1301 const char *weight_str)
1302{
1303 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001304 long int w;
1305 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001306
1307 px = sv->proxy;
1308
1309 /* if the weight is terminated with '%', it is set relative to
1310 * the initial weight, otherwise it is absolute.
1311 */
1312 if (!*weight_str)
1313 return "Require <weight> or <weight%>.\n";
1314
Simon Hormanb796afa2013-02-12 10:45:53 +09001315 w = strtol(weight_str, &end, 10);
1316 if (end == weight_str)
1317 return "Empty weight string empty or preceded by garbage";
1318 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001319 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001320 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001321 /* Avoid integer overflow */
1322 if (w > 25600)
1323 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001324 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001325 if (w > 256)
1326 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001327 }
1328 else if (w < 0 || w > 256)
1329 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001330 else if (end[0] != '\0')
1331 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001332
1333 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1334 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1335
1336 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001337 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001338
1339 return NULL;
1340}
1341
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001342/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001343 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1344 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001345 * Returns:
1346 * - error string on error
1347 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001348 *
1349 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001350 */
1351const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001352 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001353{
1354 unsigned char ip[INET6_ADDRSTRLEN];
1355
1356 if (inet_pton(AF_INET6, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001357 update_server_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001358 return NULL;
1359 }
1360 if (inet_pton(AF_INET, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001361 update_server_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001362 return NULL;
1363 }
1364
1365 return "Could not understand IP address format.\n";
1366}
1367
Willy Tarreau46b7f532018-08-21 11:54:26 +02001368/*
1369 * Must be called with the server lock held.
1370 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001371const char *server_parse_maxconn_change_request(struct server *sv,
1372 const char *maxconn_str)
1373{
1374 long int v;
1375 char *end;
1376
1377 if (!*maxconn_str)
1378 return "Require <maxconn>.\n";
1379
1380 v = strtol(maxconn_str, &end, 10);
1381 if (end == maxconn_str)
1382 return "maxconn string empty or preceded by garbage";
1383 else if (end[0] != '\0')
1384 return "Trailing garbage in maxconn string";
1385
1386 if (sv->maxconn == sv->minconn) { // static maxconn
1387 sv->maxconn = sv->minconn = v;
1388 } else { // dynamic maxconn
1389 sv->maxconn = v;
1390 }
1391
1392 if (may_dequeue_tasks(sv, sv->proxy))
1393 process_srv_queue(sv);
1394
1395 return NULL;
1396}
1397
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001398#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001399static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1400 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001401{
1402 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001403 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001404 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001405 NULL,
1406 };
1407
1408 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001409 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001410
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001411 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args);
1412}
1413
1414static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1415{
1416 struct sample_expr *expr;
1417
1418 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 +01001419 if (!expr) {
1420 memprintf(err, "error detected while parsing sni expression : %s", *err);
1421 return ERR_ALERT | ERR_FATAL;
1422 }
1423
1424 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1425 memprintf(err, "error detected while parsing sni expression : "
1426 " fetch method '%s' extracts information from '%s', "
1427 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001428 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001429 return ERR_ALERT | ERR_FATAL;
1430 }
1431
1432 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1433 release_sample_expr(newsrv->ssl_ctx.sni);
1434 newsrv->ssl_ctx.sni = expr;
1435
1436 return 0;
1437}
1438#endif
1439
1440static void display_parser_err(const char *file, int linenum, char **args, int cur_arg, char **err)
1441{
1442 if (err && *err) {
1443 indent_msg(err, 2);
Christopher Faulet767a84b2017-11-24 16:50:31 +01001444 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], *err);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001445 }
1446 else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001447 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while processing '%s'.\n",
1448 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001449}
1450
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001451static void srv_conn_src_sport_range_cpy(struct server *srv,
1452 struct server *src)
1453{
1454 int range_sz;
1455
1456 range_sz = src->conn_src.sport_range->size;
1457 if (range_sz > 0) {
1458 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1459 if (srv->conn_src.sport_range != NULL) {
1460 int i;
1461
1462 for (i = 0; i < range_sz; i++) {
1463 srv->conn_src.sport_range->ports[i] =
1464 src->conn_src.sport_range->ports[i];
1465 }
1466 }
1467 }
1468}
1469
1470/*
1471 * Copy <src> server connection source settings to <srv> server everything needed.
1472 */
1473static void srv_conn_src_cpy(struct server *srv, struct server *src)
1474{
1475 srv->conn_src.opts = src->conn_src.opts;
1476 srv->conn_src.source_addr = src->conn_src.source_addr;
1477
1478 /* Source port range copy. */
1479 if (src->conn_src.sport_range != NULL)
1480 srv_conn_src_sport_range_cpy(srv, src);
1481
1482#ifdef CONFIG_HAP_TRANSPARENT
1483 if (src->conn_src.bind_hdr_name != NULL) {
1484 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1485 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1486 }
1487 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1488 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1489#endif
1490 if (src->conn_src.iface_name != NULL)
1491 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1492}
1493
1494/*
1495 * Copy <src> server SSL settings to <srv> server allocating
1496 * everything needed.
1497 */
1498#if defined(USE_OPENSSL)
1499static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1500{
1501 if (src->ssl_ctx.ca_file != NULL)
1502 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1503 if (src->ssl_ctx.crl_file != NULL)
1504 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
1505 if (src->ssl_ctx.client_crt != NULL)
1506 srv->ssl_ctx.client_crt = strdup(src->ssl_ctx.client_crt);
1507
1508 srv->ssl_ctx.verify = src->ssl_ctx.verify;
1509
1510 if (src->ssl_ctx.verify_host != NULL)
1511 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
1512 if (src->ssl_ctx.ciphers != NULL)
1513 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Dirkjan Bussink415150f2018-09-14 11:14:21 +02001514#if (OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL && !defined LIBRESSL_VERSION_NUMBER)
1515 if (src->ssl_ctx.ciphersuites != NULL)
1516 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
1517#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001518 if (src->sni_expr != NULL)
1519 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01001520
1521#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
1522 if (src->ssl_ctx.alpn_str) {
1523 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
1524 if (srv->ssl_ctx.alpn_str) {
1525 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
1526 src->ssl_ctx.alpn_len);
1527 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
1528 }
1529 }
1530#endif
1531#ifdef OPENSSL_NPN_NEGOTIATED
1532 if (src->ssl_ctx.npn_str) {
1533 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
1534 if (srv->ssl_ctx.npn_str) {
1535 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
1536 src->ssl_ctx.npn_len);
1537 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
1538 }
1539 }
1540#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001541}
1542#endif
1543
1544/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001545 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001546 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001547 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001548 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001549static int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001550{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001551 char *hostname_dn;
1552 int hostname_len, hostname_dn_len;
1553
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001554 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001555 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001556
Christopher Faulet67957bd2017-09-27 11:00:59 +02001557 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001558 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001559 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
1560 hostname_dn, trash.size);
1561 if (hostname_dn_len == -1)
1562 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001563
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001564
Christopher Faulet67957bd2017-09-27 11:00:59 +02001565 free(srv->hostname);
1566 free(srv->hostname_dn);
1567 srv->hostname = strdup(hostname);
1568 srv->hostname_dn = strdup(hostname_dn);
1569 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001570 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001571 goto err;
1572
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001573 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001574
1575 err:
Christopher Faulet67957bd2017-09-27 11:00:59 +02001576 free(srv->hostname); srv->hostname = NULL;
1577 free(srv->hostname_dn); srv->hostname_dn = NULL;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001578 return -1;
1579}
1580
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001581/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001582 * Copy <src> server settings to <srv> server allocating
1583 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001584 * This function is not supposed to be called at any time, but only
1585 * during server settings parsing or during server allocations from
1586 * a server template, and just after having calloc()'ed a new server.
1587 * So, <src> may only be a default server (when parsing server settings)
1588 * or a server template (during server allocations from a server template).
1589 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
1590 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001591 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001592static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001593{
1594 /* Connection source settings copy */
1595 srv_conn_src_cpy(srv, src);
1596
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001597 if (srv_tmpl) {
1598 srv->addr = src->addr;
1599 srv->svc_port = src->svc_port;
1600 }
1601
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001602 srv->pp_opts = src->pp_opts;
1603 if (src->rdr_pfx != NULL) {
1604 srv->rdr_pfx = strdup(src->rdr_pfx);
1605 srv->rdr_len = src->rdr_len;
1606 }
1607 if (src->cookie != NULL) {
1608 srv->cookie = strdup(src->cookie);
1609 srv->cklen = src->cklen;
1610 }
1611 srv->use_ssl = src->use_ssl;
1612 srv->check.addr = srv->agent.addr = src->check.addr;
1613 srv->check.use_ssl = src->check.use_ssl;
1614 srv->check.port = src->check.port;
1615 /* Note: 'flags' field has potentially been already initialized. */
1616 srv->flags |= src->flags;
1617 srv->do_check = src->do_check;
1618 srv->do_agent = src->do_agent;
1619 if (srv->check.port)
1620 srv->flags |= SRV_F_CHECKPORT;
1621 srv->check.inter = src->check.inter;
1622 srv->check.fastinter = src->check.fastinter;
1623 srv->check.downinter = src->check.downinter;
1624 srv->agent.use_ssl = src->agent.use_ssl;
1625 srv->agent.port = src->agent.port;
1626 if (src->agent.send_string != NULL)
1627 srv->agent.send_string = strdup(src->agent.send_string);
1628 srv->agent.send_string_len = src->agent.send_string_len;
1629 srv->agent.inter = src->agent.inter;
1630 srv->agent.fastinter = src->agent.fastinter;
1631 srv->agent.downinter = src->agent.downinter;
1632 srv->maxqueue = src->maxqueue;
1633 srv->minconn = src->minconn;
1634 srv->maxconn = src->maxconn;
1635 srv->slowstart = src->slowstart;
1636 srv->observe = src->observe;
1637 srv->onerror = src->onerror;
1638 srv->onmarkeddown = src->onmarkeddown;
1639 srv->onmarkedup = src->onmarkedup;
1640 if (src->trackit != NULL)
1641 srv->trackit = strdup(src->trackit);
1642 srv->consecutive_errors_limit = src->consecutive_errors_limit;
1643 srv->uweight = srv->iweight = src->iweight;
1644
1645 srv->check.send_proxy = src->check.send_proxy;
1646 /* health: up, but will fall down at first failure */
1647 srv->check.rise = srv->check.health = src->check.rise;
1648 srv->check.fall = src->check.fall;
1649
1650 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001651 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
1652 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
1653 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001654 srv->check.state |= CHK_ST_PAUSED;
1655 srv->check.health = 0;
1656 }
1657
1658 /* health: up but will fall down at first failure */
1659 srv->agent.rise = srv->agent.health = src->agent.rise;
1660 srv->agent.fall = src->agent.fall;
1661
1662 if (src->resolvers_id != NULL)
1663 srv->resolvers_id = strdup(src->resolvers_id);
1664 srv->dns_opts.family_prio = src->dns_opts.family_prio;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001665 srv->dns_opts.accept_duplicate_ip = src->dns_opts.accept_duplicate_ip;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001666 if (srv->dns_opts.family_prio == AF_UNSPEC)
1667 srv->dns_opts.family_prio = AF_INET6;
1668 memcpy(srv->dns_opts.pref_net,
1669 src->dns_opts.pref_net,
1670 sizeof srv->dns_opts.pref_net);
1671 srv->dns_opts.pref_net_nb = src->dns_opts.pref_net_nb;
1672
1673 srv->init_addr_methods = src->init_addr_methods;
1674 srv->init_addr = src->init_addr;
1675#if defined(USE_OPENSSL)
1676 srv_ssl_settings_cpy(srv, src);
1677#endif
1678#ifdef TCP_USER_TIMEOUT
1679 srv->tcp_ut = src->tcp_ut;
1680#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001681 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001682 srv->pool_purge_delay = src->pool_purge_delay;
Olivier Houchard006e3102018-12-10 18:30:32 +01001683 srv->max_idle_conns = src->max_idle_conns;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001684
Olivier Houchard8da5f982017-08-04 18:35:36 +02001685 if (srv_tmpl)
1686 srv->srvrq = src->srvrq;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001687}
1688
William Lallemand313bfd12018-10-26 14:47:32 +02001689struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001690{
1691 struct server *srv;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001692 int i;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001693
1694 srv = calloc(1, sizeof *srv);
1695 if (!srv)
1696 return NULL;
1697
1698 srv->obj_type = OBJ_TYPE_SERVER;
1699 srv->proxy = proxy;
1700 LIST_INIT(&srv->actconns);
Patrick Hemmer0355dab2018-05-11 12:52:31 -04001701 srv->pendconns = EB_ROOT;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001702
1703 if ((srv->priv_conns = calloc(global.nbthread, sizeof(*srv->priv_conns))) == NULL)
1704 goto free_srv;
1705 if ((srv->idle_conns = calloc(global.nbthread, sizeof(*srv->idle_conns))) == NULL)
1706 goto free_priv_conns;
1707 if ((srv->safe_conns = calloc(global.nbthread, sizeof(*srv->safe_conns))) == NULL)
1708 goto free_idle_conns;
1709
1710 for (i = 0; i < global.nbthread; i++) {
1711 LIST_INIT(&srv->priv_conns[i]);
1712 LIST_INIT(&srv->idle_conns[i]);
1713 LIST_INIT(&srv->safe_conns[i]);
1714 }
1715
Emeric Brun52a91d32017-08-31 14:41:55 +02001716 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001717 srv->last_change = now.tv_sec;
1718
1719 srv->check.status = HCHK_STATUS_INI;
1720 srv->check.server = srv;
1721 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
1722
1723 srv->agent.status = HCHK_STATUS_INI;
1724 srv->agent.server = srv;
1725 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
1726
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001727 srv->pool_purge_delay = 1000;
Olivier Houchard006e3102018-12-10 18:30:32 +01001728 srv->max_idle_conns = -1;
1729
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001730 return srv;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001731
1732 free_idle_conns:
1733 free(srv->idle_conns);
1734 free_priv_conns:
1735 free(srv->priv_conns);
1736 free_srv:
1737 free(srv);
1738 return NULL;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001739}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001740
1741/*
1742 * Validate <srv> server health-check settings.
1743 * Returns 0 if everything is OK, -1 if not.
1744 */
1745static int server_healthcheck_validate(const char *file, int linenum, struct server *srv)
1746{
1747 struct tcpcheck_rule *r = NULL;
1748 struct list *l;
1749
1750 /*
1751 * We need at least a service port, a check port or the first tcp-check rule must
1752 * be a 'connect' one when checking an IPv4/IPv6 server.
1753 */
1754 if ((srv_check_healthcheck_port(&srv->check) != 0) ||
1755 (!is_inet_addr(&srv->check.addr) && (is_addr(&srv->check.addr) || !is_inet_addr(&srv->addr))))
1756 return 0;
1757
1758 r = (struct tcpcheck_rule *)srv->proxy->tcpcheck_rules.n;
1759 if (!r) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001760 ha_alert("parsing [%s:%d] : server %s has neither service port nor check port. "
1761 "Check has been disabled.\n",
1762 file, linenum, srv->id);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001763 return -1;
1764 }
1765
1766 /* search the first action (connect / send / expect) in the list */
1767 l = &srv->proxy->tcpcheck_rules;
1768 list_for_each_entry(r, l, list) {
1769 if (r->action != TCPCHK_ACT_COMMENT)
1770 break;
1771 }
1772
1773 if ((r->action != TCPCHK_ACT_CONNECT) || !r->port) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001774 ha_alert("parsing [%s:%d] : server %s has neither service port nor check port "
1775 "nor tcp_check rule 'connect' with port information. Check has been disabled.\n",
1776 file, linenum, srv->id);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001777 return -1;
1778 }
1779
1780 /* scan the tcp-check ruleset to ensure a port has been configured */
1781 l = &srv->proxy->tcpcheck_rules;
1782 list_for_each_entry(r, l, list) {
1783 if ((r->action == TCPCHK_ACT_CONNECT) && (!r->port)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001784 ha_alert("parsing [%s:%d] : server %s has neither service port nor check port, "
1785 "and a tcp_check rule 'connect' with no port information. Check has been disabled.\n",
1786 file, linenum, srv->id);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001787 return -1;
1788 }
1789 }
1790
1791 return 0;
1792}
1793
1794/*
1795 * Initialize <srv> health-check structure.
1796 * Returns the error string in case of memory allocation failure, NULL if not.
1797 */
1798static const char *do_health_check_init(struct server *srv, int check_type, int state)
1799{
1800 const char *ret;
1801
1802 if (!srv->do_check)
1803 return NULL;
1804
1805 ret = init_check(&srv->check, check_type);
1806 if (ret)
1807 return ret;
1808
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001809 srv->check.state |= state;
1810 global.maxsock++;
1811
1812 return NULL;
1813}
1814
1815static int server_health_check_init(const char *file, int linenum,
1816 struct server *srv, struct proxy *curproxy)
1817{
1818 const char *ret;
1819
1820 if (!srv->do_check)
1821 return 0;
1822
1823 if (srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001824 ha_alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1825 file, linenum);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001826 return ERR_ALERT | ERR_FATAL;
1827 }
1828
1829 if (server_healthcheck_validate(file, linenum, srv) < 0)
1830 return ERR_ALERT | ERR_ABORT;
1831
1832 /* note: check type will be set during the config review phase */
1833 ret = do_health_check_init(srv, 0, CHK_ST_CONFIGURED | CHK_ST_ENABLED);
1834 if (ret) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001835 ha_alert("parsing [%s:%d] : %s.\n", file, linenum, ret);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001836 return ERR_ALERT | ERR_ABORT;
1837 }
1838
1839 return 0;
1840}
1841
1842/*
1843 * Initialize <srv> agent check structure.
1844 * Returns the error string in case of memory allocation failure, NULL if not.
1845 */
1846static const char *do_server_agent_check_init(struct server *srv, int state)
1847{
1848 const char *ret;
1849
1850 if (!srv->do_agent)
1851 return NULL;
1852
1853 ret = init_check(&srv->agent, PR_O2_LB_AGENT_CHK);
1854 if (ret)
1855 return ret;
1856
1857 if (!srv->agent.inter)
1858 srv->agent.inter = srv->check.inter;
1859
1860 srv->agent.state |= state;
1861 global.maxsock++;
1862
1863 return NULL;
1864}
1865
1866static int server_agent_check_init(const char *file, int linenum,
1867 struct server *srv, struct proxy *curproxy)
1868{
1869 const char *ret;
1870
1871 if (!srv->do_agent)
1872 return 0;
1873
1874 if (!srv->agent.port) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001875 ha_alert("parsing [%s:%d] : server %s does not have agent port. Agent check has been disabled.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001876 file, linenum, srv->id);
1877 return ERR_ALERT | ERR_FATAL;
1878 }
1879
1880 ret = do_server_agent_check_init(srv, CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_AGENT);
1881 if (ret) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001882 ha_alert("parsing [%s:%d] : %s.\n", file, linenum, ret);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001883 return ERR_ALERT | ERR_ABORT;
1884 }
1885
1886 return 0;
1887}
1888
1889#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1890static int server_sni_expr_init(const char *file, int linenum, char **args, int cur_arg,
1891 struct server *srv, struct proxy *proxy)
1892{
1893 int ret;
1894 char *err = NULL;
1895
1896 if (!srv->sni_expr)
1897 return 0;
1898
1899 ret = server_parse_sni_expr(srv, proxy, &err);
1900 if (!ret)
1901 return 0;
1902
1903 display_parser_err(file, linenum, args, cur_arg, &err);
1904 free(err);
1905
1906 return ret;
1907}
1908#endif
1909
1910/*
1911 * Server initializations finalization.
1912 * Initialize health check, agent check and SNI expression if enabled.
1913 * Must not be called for a default server instance.
1914 */
1915static int server_finalize_init(const char *file, int linenum, char **args, int cur_arg,
1916 struct server *srv, struct proxy *px)
1917{
1918 int ret;
1919
1920 if ((ret = server_health_check_init(file, linenum, srv, px)) != 0 ||
1921 (ret = server_agent_check_init(file, linenum, srv, px)) != 0) {
1922 return ret;
1923 }
1924
1925#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1926 if ((ret = server_sni_expr_init(file, linenum, args, cur_arg, srv, px)) != 0)
1927 return ret;
1928#endif
1929
1930 if (srv->flags & SRV_F_BACKUP)
1931 px->srv_bck++;
1932 else
1933 px->srv_act++;
1934 srv_lb_commit_status(srv);
1935
Olivier Houchard006e3102018-12-10 18:30:32 +01001936 if (!srv->tmpl_info.prefix && srv->max_idle_conns != 0) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001937 int i;
1938
1939 srv->idle_orphan_conns = calloc(global.nbthread, sizeof(*srv->idle_orphan_conns));
1940 if (!srv->idle_orphan_conns)
1941 goto err;
1942 srv->idle_task = calloc(global.nbthread, sizeof(*srv->idle_task));
1943 if (!srv->idle_task)
1944 goto err;
1945 for (i = 0; i < global.nbthread; i++) {
1946 LIST_INIT(&srv->idle_orphan_conns[i]);
1947 srv->idle_task[i] = task_new(1 << i);
1948 if (!srv->idle_task[i])
1949 goto err;
1950 srv->idle_task[i]->process = cleanup_idle_connections;
1951 srv->idle_task[i]->context = srv;
1952 }
1953 }
1954
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001955 return 0;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001956err:
1957 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001958}
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001959
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001960/*
1961 * Parse as much as possible such a range string argument: low[-high]
1962 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
1963 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
1964 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
1965 * Returns 0 if succeeded, -1 if not.
1966 */
1967static int srv_tmpl_parse_range(struct server *srv, const char *arg, int *nb_low, int *nb_high)
1968{
1969 char *nb_high_arg;
1970
1971 *nb_high = 0;
1972 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001973 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001974
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001975 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001976 *nb_high_arg++ = '\0';
1977 *nb_high = atoi(nb_high_arg);
1978 }
1979 else {
1980 *nb_high += *nb_low;
1981 *nb_low = 1;
1982 }
1983
1984 if (*nb_low < 0 || *nb_high < *nb_low)
1985 return -1;
1986
1987 return 0;
1988}
1989
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001990static inline void srv_set_id_from_prefix(struct server *srv, const char *prefix, int nb)
1991{
1992 chunk_printf(&trash, "%s%d", prefix, nb);
1993 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001994 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001995}
1996
1997/*
1998 * Initialize as much as possible servers from <srv> server template.
1999 * Note that a server template is a special server with
2000 * a few different parameters than a server which has
2001 * been parsed mostly the same way as a server.
Joseph Herlant44466822018-11-15 08:57:51 -08002002 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002003 * 'srv' template included.
2004 */
2005static int server_template_init(struct server *srv, struct proxy *px)
2006{
2007 int i;
2008 struct server *newsrv;
2009
2010 for (i = srv->tmpl_info.nb_low + 1; i <= srv->tmpl_info.nb_high; i++) {
2011 int check_init_state;
2012 int agent_init_state;
2013
2014 newsrv = new_server(px);
2015 if (!newsrv)
2016 goto err;
2017
2018 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002019 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002020#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
2021 if (newsrv->sni_expr) {
2022 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
2023 if (!newsrv->ssl_ctx.sni)
2024 goto err;
2025 }
2026#endif
2027 /* Set this new server ID. */
2028 srv_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
2029
2030 /* Initial checks states. */
2031 check_init_state = CHK_ST_CONFIGURED | CHK_ST_ENABLED;
2032 agent_init_state = CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_AGENT;
2033
2034 if (do_health_check_init(newsrv, px->options2 & PR_O2_CHK_ANY, check_init_state) ||
2035 do_server_agent_check_init(newsrv, agent_init_state))
2036 goto err;
2037
2038 /* Linked backwards first. This will be restablished after parsing. */
2039 newsrv->next = px->srv;
2040 px->srv = newsrv;
Olivier Houchard006e3102018-12-10 18:30:32 +01002041 if (newsrv->max_idle_conns != 0) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01002042 int i;
2043
2044 newsrv->idle_orphan_conns = calloc(global.nbthread, sizeof(*newsrv->idle_orphan_conns));
2045 if (!newsrv->idle_orphan_conns)
2046 goto err;
2047 newsrv->idle_task = calloc(global.nbthread, sizeof(*newsrv->idle_task));
2048 if (!newsrv->idle_task)
2049 goto err;
2050 for (i = 0; i < global.nbthread; i++) {
2051 LIST_INIT(&newsrv->idle_orphan_conns[i]);
2052 newsrv->idle_task[i] = task_new(1 << i);
2053 if (!newsrv->idle_task[i])
2054 goto err;
2055 newsrv->idle_task[i]->process = cleanup_idle_connections;
2056 newsrv->idle_task[i]->context = newsrv;
2057 }
2058 }
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002059 }
2060 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
2061
2062 return i - srv->tmpl_info.nb_low;
2063
2064 err:
2065 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
2066 if (newsrv) {
2067#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
2068 release_sample_expr(newsrv->ssl_ctx.sni);
2069#endif
2070 free_check(&newsrv->agent);
2071 free_check(&newsrv->check);
2072 }
2073 free(newsrv);
2074 return i - srv->tmpl_info.nb_low;
2075}
2076
Willy Tarreau272adea2014-03-31 10:39:59 +02002077int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy, struct proxy *defproxy)
2078{
2079 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002080 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002081 char *errmsg = NULL;
2082 int err_code = 0;
2083 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +02002084 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002085
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002086 if (!strcmp(args[0], "server") ||
2087 !strcmp(args[0], "default-server") ||
2088 !strcmp(args[0], "server-template")) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002089 int cur_arg;
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01002090 int defsrv = (*args[0] == 'd');
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002091 int srv = !defsrv && !strcmp(args[0], "server");
2092 int srv_tmpl = !defsrv && !srv;
2093 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002094
2095 if (!defsrv && curproxy == defproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002096 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002097 err_code |= ERR_ALERT | ERR_FATAL;
2098 goto out;
2099 }
2100 else if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL))
Olivier Houchard306e6532018-07-24 16:48:59 +02002101 err_code |= ERR_WARN;
Willy Tarreau272adea2014-03-31 10:39:59 +02002102
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002103 /* There is no mandatory first arguments for default server. */
2104 if (srv) {
2105 if (!*args[2]) {
2106 /* 'server' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002107 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002108 file, linenum, args[0]);
2109 err_code |= ERR_ALERT | ERR_FATAL;
2110 goto out;
2111 }
2112
2113 err = invalid_char(args[1]);
2114 }
2115 else if (srv_tmpl) {
2116 if (!*args[3]) {
2117 /* 'server-template' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002118 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 +02002119 file, linenum, args[0]);
2120 err_code |= ERR_ALERT | ERR_FATAL;
2121 goto out;
2122 }
2123
2124 err = invalid_prefix_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002125 }
2126
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002127 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002128 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 +02002129 file, linenum, *err, args[0], srv ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002130 err_code |= ERR_ALERT | ERR_FATAL;
2131 goto out;
2132 }
2133
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002134 cur_arg = 2;
2135 if (srv_tmpl) {
2136 /* Parse server-template <nb | range> arg. */
2137 if (srv_tmpl_parse_range(newsrv, args[cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002138 ha_alert("parsing [%s:%d] : Wrong %s number or range arg '%s'.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002139 file, linenum, args[0], args[cur_arg]);
2140 err_code |= ERR_ALERT | ERR_FATAL;
2141 goto out;
2142 }
2143 cur_arg++;
2144 }
2145
Willy Tarreau272adea2014-03-31 10:39:59 +02002146 if (!defsrv) {
2147 struct sockaddr_storage *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002148 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002149 struct protocol *proto;
2150
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002151 newsrv = new_server(curproxy);
2152 if (!newsrv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002153 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Willy Tarreau272adea2014-03-31 10:39:59 +02002154 err_code |= ERR_ALERT | ERR_ABORT;
2155 goto out;
2156 }
2157
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002158 if (srv_tmpl) {
2159 newsrv->tmpl_info.nb_low = tmpl_range_low;
2160 newsrv->tmpl_info.nb_high = tmpl_range_high;
2161 }
2162
Willy Tarreau272adea2014-03-31 10:39:59 +02002163 /* the servers are linked backwards first */
2164 newsrv->next = curproxy->srv;
2165 curproxy->srv = newsrv;
Willy Tarreau272adea2014-03-31 10:39:59 +02002166 newsrv->conf.file = strdup(file);
2167 newsrv->conf.line = linenum;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002168 /* Note: for a server template, its id is its prefix.
2169 * This is a temporary id which will be used for server allocations to come
2170 * after parsing.
2171 */
2172 if (srv)
2173 newsrv->id = strdup(args[1]);
2174 else
2175 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002176
2177 /* several ways to check the port component :
2178 * - IP => port=+0, relative (IPv4 only)
2179 * - IP: => port=+0, relative
2180 * - IP:N => port=N, absolute
2181 * - IP:+N => port=+N, relative
2182 * - IP:-N => port=-N, relative
2183 */
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002184 sk = str2sa_range(args[cur_arg], &port, &port1, &port2, &errmsg, NULL, &fqdn, 0);
Willy Tarreau272adea2014-03-31 10:39:59 +02002185 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002186 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau272adea2014-03-31 10:39:59 +02002187 err_code |= ERR_ALERT | ERR_FATAL;
2188 goto out;
2189 }
2190
2191 proto = protocol_by_family(sk->ss_family);
Willy Tarreau9698f4b2017-01-06 18:42:57 +01002192 if (!fqdn && (!proto || !proto->connect)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002193 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002194 file, linenum, args[0], args[1]);
2195 err_code |= ERR_ALERT | ERR_FATAL;
2196 goto out;
2197 }
2198
2199 if (!port1 || !port2) {
2200 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +02002201 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +02002202 }
2203 else if (port1 != port2) {
2204 /* port range */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002205 ha_alert("parsing [%s:%d] : '%s %s' : port ranges are not allowed in '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002206 file, linenum, args[0], args[1], args[2]);
2207 err_code |= ERR_ALERT | ERR_FATAL;
2208 goto out;
2209 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002210
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002211 /* save hostname and create associated name resolution */
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002212 if (fqdn) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002213 if (fqdn[0] == '_') { /* SRV record */
Olivier Houchard8da5f982017-08-04 18:35:36 +02002214 /* Check if a SRV request already exists, and if not, create it */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002215 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2216 newsrv->srvrq = new_dns_srvrq(newsrv, fqdn);
2217 if (newsrv->srvrq == NULL) {
Olivier Houchard8da5f982017-08-04 18:35:36 +02002218 err_code |= ERR_ALERT | ERR_FATAL;
2219 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002220 }
2221 }
2222 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002223 ha_alert("parsing [%s:%d] : Can't create DNS resolution for server '%s'\n",
Christopher Faulet67957bd2017-09-27 11:00:59 +02002224 file, linenum, newsrv->id);
2225 err_code |= ERR_ALERT | ERR_FATAL;
2226 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002227 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002228 }
2229
Willy Tarreau272adea2014-03-31 10:39:59 +02002230 newsrv->addr = *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002231 newsrv->svc_port = port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002232
Olivier Houchard8da5f982017-08-04 18:35:36 +02002233 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002234 ha_alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002235 file, linenum, newsrv->addr.ss_family, args[cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002236 err_code |= ERR_ALERT | ERR_FATAL;
2237 goto out;
2238 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002239
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002240 /* Copy default server settings to new server settings. */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002241 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002242 HA_SPIN_INIT(&newsrv->lock);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002243 cur_arg++;
Willy Tarreau272adea2014-03-31 10:39:59 +02002244 } else {
2245 newsrv = &curproxy->defsrv;
2246 cur_arg = 1;
Thierry Fournierada34842016-02-17 21:25:09 +01002247 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002248 newsrv->dns_opts.accept_duplicate_ip = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002249 }
2250
2251 while (*args[cur_arg]) {
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01002252 if (!strcmp(args[cur_arg], "agent-inter")) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002253 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2254 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002255 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'agent-inter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002256 file, linenum, *err, newsrv->id);
2257 err_code |= ERR_ALERT | ERR_FATAL;
2258 goto out;
2259 }
2260 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002261 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002262 file, linenum, val, args[cur_arg], newsrv->id);
2263 err_code |= ERR_ALERT | ERR_FATAL;
2264 goto out;
2265 }
2266 newsrv->agent.inter = val;
2267 cur_arg += 2;
2268 }
Misiekea849332017-01-09 09:39:51 +01002269 else if (!strcmp(args[cur_arg], "agent-addr")) {
2270 if(str2ip(args[cur_arg + 1], &newsrv->agent.addr) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002271 ha_alert("parsing agent-addr failed. Check if %s is correct address.\n", args[cur_arg + 1]);
Misiekea849332017-01-09 09:39:51 +01002272 goto out;
2273 }
2274
2275 cur_arg += 2;
2276 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002277 else if (!strcmp(args[cur_arg], "agent-port")) {
2278 global.maxsock++;
2279 newsrv->agent.port = atol(args[cur_arg + 1]);
2280 cur_arg += 2;
2281 }
James Brown55f9ff12015-10-21 18:19:05 -07002282 else if (!strcmp(args[cur_arg], "agent-send")) {
2283 global.maxsock++;
2284 free(newsrv->agent.send_string);
2285 newsrv->agent.send_string_len = strlen(args[cur_arg + 1]);
2286 newsrv->agent.send_string = calloc(1, newsrv->agent.send_string_len + 1);
2287 memcpy(newsrv->agent.send_string, args[cur_arg + 1], newsrv->agent.send_string_len);
2288 cur_arg += 2;
2289 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002290 else if (!strcmp(args[cur_arg], "init-addr")) {
2291 char *p, *end;
2292 int done;
Willy Tarreau4310d362016-11-02 15:05:56 +01002293 struct sockaddr_storage sa;
Baptiste Assmann25938272016-09-21 20:26:16 +02002294
2295 newsrv->init_addr_methods = 0;
2296 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
2297
2298 for (p = args[cur_arg + 1]; *p; p = end) {
2299 /* cut on next comma */
2300 for (end = p; *end && *end != ','; end++);
2301 if (*end)
2302 *(end++) = 0;
2303
Willy Tarreau4310d362016-11-02 15:05:56 +01002304 memset(&sa, 0, sizeof(sa));
Baptiste Assmann25938272016-09-21 20:26:16 +02002305 if (!strcmp(p, "libc")) {
2306 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
2307 }
2308 else if (!strcmp(p, "last")) {
2309 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
2310 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01002311 else if (!strcmp(p, "none")) {
2312 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
2313 }
Willy Tarreau4310d362016-11-02 15:05:56 +01002314 else if (str2ip2(p, &sa, 0)) {
2315 if (is_addr(&newsrv->init_addr)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002316 ha_alert("parsing [%s:%d]: '%s' : initial address already specified, cannot add '%s'.\n",
Willy Tarreau4310d362016-11-02 15:05:56 +01002317 file, linenum, args[cur_arg], p);
2318 err_code |= ERR_ALERT | ERR_FATAL;
2319 goto out;
2320 }
2321 newsrv->init_addr = sa;
2322 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
2323 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002324 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002325 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 +02002326 file, linenum, args[cur_arg], p);
2327 err_code |= ERR_ALERT | ERR_FATAL;
2328 goto out;
2329 }
2330 if (!done) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002331 ha_alert("parsing [%s:%d]: '%s' : too many init-addr methods when trying to add '%s'\n",
Baptiste Assmann25938272016-09-21 20:26:16 +02002332 file, linenum, args[cur_arg], p);
2333 err_code |= ERR_ALERT | ERR_FATAL;
2334 goto out;
2335 }
2336 }
2337 cur_arg += 2;
2338 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002339 else if (!strcmp(args[cur_arg], "resolvers")) {
Frédéric Lécailledaa2fe62017-04-20 12:17:50 +02002340 free(newsrv->resolvers_id);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002341 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
2342 cur_arg += 2;
2343 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002344 else if (!strcmp(args[cur_arg], "resolve-opts")) {
2345 char *p, *end;
2346
2347 for (p = args[cur_arg + 1]; *p; p = end) {
2348 /* cut on next comma */
2349 for (end = p; *end && *end != ','; end++);
2350 if (*end)
2351 *(end++) = 0;
2352
2353 if (!strcmp(p, "allow-dup-ip")) {
2354 newsrv->dns_opts.accept_duplicate_ip = 1;
2355 }
2356 else if (!strcmp(p, "prevent-dup-ip")) {
2357 newsrv->dns_opts.accept_duplicate_ip = 0;
2358 }
2359 else {
2360 ha_alert("parsing [%s:%d]: '%s' : unknown resolve-opts option '%s', supported methods are 'allow-dup-ip' and 'prevent-dup-ip'.\n",
2361 file, linenum, args[cur_arg], p);
2362 err_code |= ERR_ALERT | ERR_FATAL;
2363 goto out;
2364 }
2365 }
2366
2367 cur_arg += 2;
2368 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002369 else if (!strcmp(args[cur_arg], "resolve-prefer")) {
2370 if (!strcmp(args[cur_arg + 1], "ipv4"))
Thierry Fournierada34842016-02-17 21:25:09 +01002371 newsrv->dns_opts.family_prio = AF_INET;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002372 else if (!strcmp(args[cur_arg + 1], "ipv6"))
Thierry Fournierada34842016-02-17 21:25:09 +01002373 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002374 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002375 ha_alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002376 file, linenum, args[cur_arg]);
2377 err_code |= ERR_ALERT | ERR_FATAL;
2378 goto out;
2379 }
2380 cur_arg += 2;
2381 }
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002382 else if (!strcmp(args[cur_arg], "resolve-net")) {
2383 char *p, *e;
2384 unsigned char mask;
2385 struct dns_options *opt;
2386
2387 if (!args[cur_arg + 1] || args[cur_arg + 1][0] == '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002388 ha_alert("parsing [%s:%d]: '%s' expects a list of networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002389 file, linenum, args[cur_arg]);
2390 err_code |= ERR_ALERT | ERR_FATAL;
2391 goto out;
2392 }
2393
2394 opt = &newsrv->dns_opts;
2395
2396 /* Split arguments by comma, and convert it from ipv4 or ipv6
2397 * string network in in_addr or in6_addr.
2398 */
2399 p = args[cur_arg + 1];
2400 e = p;
2401 while (*p != '\0') {
Joseph Herlant44466822018-11-15 08:57:51 -08002402 /* If no room available, return error. */
David Carlierd10025c2016-04-08 10:26:44 +01002403 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002404 ha_alert("parsing [%s:%d]: '%s' exceed %d networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002405 file, linenum, args[cur_arg], SRV_MAX_PREF_NET);
2406 err_code |= ERR_ALERT | ERR_FATAL;
2407 goto out;
2408 }
2409 /* look for end or comma. */
2410 while (*e != ',' && *e != '\0')
2411 e++;
2412 if (*e == ',') {
2413 *e = '\0';
2414 e++;
2415 }
2416 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
2417 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
2418 /* Try to convert input string from ipv4 or ipv6 network. */
2419 opt->pref_net[opt->pref_net_nb].family = AF_INET;
2420 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
2421 &mask)) {
2422 /* Try to convert input string from ipv6 network. */
2423 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
2424 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
2425 } else {
2426 /* All network conversions fail, retrun error. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002427 ha_alert("parsing [%s:%d]: '%s': invalid network '%s'.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002428 file, linenum, args[cur_arg], p);
2429 err_code |= ERR_ALERT | ERR_FATAL;
2430 goto out;
2431 }
2432 opt->pref_net_nb++;
2433 p = e;
2434 }
2435
2436 cur_arg += 2;
2437 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002438 else if (!strcmp(args[cur_arg], "rise")) {
2439 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002440 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002441 file, linenum, args[cur_arg]);
2442 err_code |= ERR_ALERT | ERR_FATAL;
2443 goto out;
2444 }
2445
2446 newsrv->check.rise = atol(args[cur_arg + 1]);
2447 if (newsrv->check.rise <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002448 ha_alert("parsing [%s:%d]: '%s' has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002449 file, linenum, args[cur_arg]);
2450 err_code |= ERR_ALERT | ERR_FATAL;
2451 goto out;
2452 }
2453
2454 if (newsrv->check.health)
2455 newsrv->check.health = newsrv->check.rise;
2456 cur_arg += 2;
2457 }
2458 else if (!strcmp(args[cur_arg], "fall")) {
2459 newsrv->check.fall = atol(args[cur_arg + 1]);
2460
2461 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002462 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002463 file, linenum, args[cur_arg]);
2464 err_code |= ERR_ALERT | ERR_FATAL;
2465 goto out;
2466 }
2467
2468 if (newsrv->check.fall <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002469 ha_alert("parsing [%s:%d]: '%s' has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002470 file, linenum, args[cur_arg]);
2471 err_code |= ERR_ALERT | ERR_FATAL;
2472 goto out;
2473 }
2474
2475 cur_arg += 2;
2476 }
2477 else if (!strcmp(args[cur_arg], "inter")) {
2478 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2479 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002480 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'inter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002481 file, linenum, *err, newsrv->id);
2482 err_code |= ERR_ALERT | ERR_FATAL;
2483 goto out;
2484 }
2485 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002486 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002487 file, linenum, val, args[cur_arg], newsrv->id);
2488 err_code |= ERR_ALERT | ERR_FATAL;
2489 goto out;
2490 }
2491 newsrv->check.inter = val;
2492 cur_arg += 2;
2493 }
2494 else if (!strcmp(args[cur_arg], "fastinter")) {
2495 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2496 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002497 ha_alert("parsing [%s:%d]: unexpected character '%c' in 'fastinter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002498 file, linenum, *err, newsrv->id);
2499 err_code |= ERR_ALERT | ERR_FATAL;
2500 goto out;
2501 }
2502 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002503 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002504 file, linenum, val, args[cur_arg], newsrv->id);
2505 err_code |= ERR_ALERT | ERR_FATAL;
2506 goto out;
2507 }
2508 newsrv->check.fastinter = val;
2509 cur_arg += 2;
2510 }
2511 else if (!strcmp(args[cur_arg], "downinter")) {
2512 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2513 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002514 ha_alert("parsing [%s:%d]: unexpected character '%c' in 'downinter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002515 file, linenum, *err, newsrv->id);
2516 err_code |= ERR_ALERT | ERR_FATAL;
2517 goto out;
2518 }
2519 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002520 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002521 file, linenum, val, args[cur_arg], newsrv->id);
2522 err_code |= ERR_ALERT | ERR_FATAL;
2523 goto out;
2524 }
2525 newsrv->check.downinter = val;
2526 cur_arg += 2;
2527 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002528 else if (!strcmp(args[cur_arg], "port")) {
2529 newsrv->check.port = atol(args[cur_arg + 1]);
Baptiste Assmann6b453f12016-08-11 23:12:18 +02002530 newsrv->flags |= SRV_F_CHECKPORT;
Willy Tarreau272adea2014-03-31 10:39:59 +02002531 cur_arg += 2;
2532 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002533 else if (!strcmp(args[cur_arg], "weight")) {
2534 int w;
2535 w = atol(args[cur_arg + 1]);
2536 if (w < 0 || w > SRV_UWGHT_MAX) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002537 ha_alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002538 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
2539 err_code |= ERR_ALERT | ERR_FATAL;
2540 goto out;
2541 }
2542 newsrv->uweight = newsrv->iweight = w;
2543 cur_arg += 2;
2544 }
2545 else if (!strcmp(args[cur_arg], "minconn")) {
2546 newsrv->minconn = atol(args[cur_arg + 1]);
2547 cur_arg += 2;
2548 }
2549 else if (!strcmp(args[cur_arg], "maxconn")) {
2550 newsrv->maxconn = atol(args[cur_arg + 1]);
2551 cur_arg += 2;
2552 }
2553 else if (!strcmp(args[cur_arg], "maxqueue")) {
2554 newsrv->maxqueue = atol(args[cur_arg + 1]);
2555 cur_arg += 2;
2556 }
2557 else if (!strcmp(args[cur_arg], "slowstart")) {
2558 /* slowstart is stored in seconds */
2559 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2560 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002561 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002562 file, linenum, *err, newsrv->id);
2563 err_code |= ERR_ALERT | ERR_FATAL;
2564 goto out;
2565 }
2566 newsrv->slowstart = (val + 999) / 1000;
2567 cur_arg += 2;
2568 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002569 else if (!strcmp(args[cur_arg], "on-error")) {
2570 if (!strcmp(args[cur_arg + 1], "fastinter"))
2571 newsrv->onerror = HANA_ONERR_FASTINTER;
2572 else if (!strcmp(args[cur_arg + 1], "fail-check"))
2573 newsrv->onerror = HANA_ONERR_FAILCHK;
2574 else if (!strcmp(args[cur_arg + 1], "sudden-death"))
2575 newsrv->onerror = HANA_ONERR_SUDDTH;
2576 else if (!strcmp(args[cur_arg + 1], "mark-down"))
2577 newsrv->onerror = HANA_ONERR_MARKDWN;
2578 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002579 ha_alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
Willy Tarreau272adea2014-03-31 10:39:59 +02002580 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
2581 file, linenum, args[cur_arg], args[cur_arg + 1]);
2582 err_code |= ERR_ALERT | ERR_FATAL;
2583 goto out;
2584 }
2585
2586 cur_arg += 2;
2587 }
2588 else if (!strcmp(args[cur_arg], "on-marked-down")) {
2589 if (!strcmp(args[cur_arg + 1], "shutdown-sessions"))
2590 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
2591 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002592 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002593 file, linenum, args[cur_arg], args[cur_arg + 1]);
2594 err_code |= ERR_ALERT | ERR_FATAL;
2595 goto out;
2596 }
2597
2598 cur_arg += 2;
2599 }
2600 else if (!strcmp(args[cur_arg], "on-marked-up")) {
2601 if (!strcmp(args[cur_arg + 1], "shutdown-backup-sessions"))
2602 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
2603 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002604 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002605 file, linenum, args[cur_arg], args[cur_arg + 1]);
2606 err_code |= ERR_ALERT | ERR_FATAL;
2607 goto out;
2608 }
2609
2610 cur_arg += 2;
2611 }
2612 else if (!strcmp(args[cur_arg], "error-limit")) {
2613 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002614 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002615 file, linenum, args[cur_arg]);
2616 err_code |= ERR_ALERT | ERR_FATAL;
2617 goto out;
2618 }
2619
2620 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
2621
2622 if (newsrv->consecutive_errors_limit <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002623 ha_alert("parsing [%s:%d]: %s has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002624 file, linenum, args[cur_arg]);
2625 err_code |= ERR_ALERT | ERR_FATAL;
2626 goto out;
2627 }
2628 cur_arg += 2;
2629 }
Frédéric Lécaille8d083ed2017-04-14 15:19:56 +02002630 else if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside: needs "source" first */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002631 ha_alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002632 file, linenum, "usesrc", "source");
2633 err_code |= ERR_ALERT | ERR_FATAL;
2634 goto out;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002635 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002636 else {
2637 static int srv_dumped;
2638 struct srv_kw *kw;
2639 char *err;
2640
2641 kw = srv_find_kw(args[cur_arg]);
2642 if (kw) {
2643 char *err = NULL;
2644 int code;
2645
2646 if (!kw->parse) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002647 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 +02002648 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002649 if (kw->skip != -1)
2650 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002651 err_code |= ERR_ALERT | ERR_FATAL;
2652 goto out;
2653 }
2654
2655 if (defsrv && !kw->default_ok) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002656 ha_alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002657 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002658 if (kw->skip != -1)
2659 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002660 err_code |= ERR_ALERT;
2661 continue;
2662 }
2663
2664 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
2665 err_code |= code;
2666
2667 if (code) {
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002668 display_parser_err(file, linenum, args, cur_arg, &err);
Willy Tarreau272adea2014-03-31 10:39:59 +02002669 if (code & ERR_FATAL) {
2670 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002671 if (kw->skip != -1)
2672 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002673 goto out;
2674 }
2675 }
2676 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002677 if (kw->skip != -1)
2678 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002679 continue;
2680 }
2681
2682 err = NULL;
2683 if (!srv_dumped) {
2684 srv_dump_kws(&err);
2685 indent_msg(&err, 4);
2686 srv_dumped = 1;
2687 }
2688
Christopher Faulet767a84b2017-11-24 16:50:31 +01002689 ha_alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002690 file, linenum, args[0], args[1], args[cur_arg],
2691 err ? " Registered keywords :" : "", err ? err : "");
2692 free(err);
2693
2694 err_code |= ERR_ALERT | ERR_FATAL;
2695 goto out;
2696 }
2697 }
2698
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002699 if (!defsrv)
2700 err_code |= server_finalize_init(file, linenum, args, cur_arg, newsrv, curproxy);
2701 if (err_code & ERR_FATAL)
2702 goto out;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002703 if (srv_tmpl)
2704 server_template_init(newsrv, curproxy);
Willy Tarreau272adea2014-03-31 10:39:59 +02002705 }
Willy Tarreau07101d52015-09-08 16:16:35 +02002706 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002707 return 0;
2708
2709 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02002710 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002711 free(errmsg);
2712 return err_code;
2713}
2714
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002715/* Returns a pointer to the first server matching either id <id>.
2716 * NULL is returned if no match is found.
2717 * the lookup is performed in the backend <bk>
2718 */
2719struct server *server_find_by_id(struct proxy *bk, int id)
2720{
2721 struct eb32_node *eb32;
2722 struct server *curserver;
2723
2724 if (!bk || (id ==0))
2725 return NULL;
2726
2727 /* <bk> has no backend capabilities, so it can't have a server */
2728 if (!(bk->cap & PR_CAP_BE))
2729 return NULL;
2730
2731 curserver = NULL;
2732
2733 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2734 if (eb32)
2735 curserver = container_of(eb32, struct server, conf.id);
2736
2737 return curserver;
2738}
2739
2740/* Returns a pointer to the first server matching either name <name>, or id
2741 * if <name> starts with a '#'. NULL is returned if no match is found.
2742 * the lookup is performed in the backend <bk>
2743 */
2744struct server *server_find_by_name(struct proxy *bk, const char *name)
2745{
2746 struct server *curserver;
2747
2748 if (!bk || !name)
2749 return NULL;
2750
2751 /* <bk> has no backend capabilities, so it can't have a server */
2752 if (!(bk->cap & PR_CAP_BE))
2753 return NULL;
2754
2755 curserver = NULL;
2756 if (*name == '#') {
2757 curserver = server_find_by_id(bk, atoi(name + 1));
2758 if (curserver)
2759 return curserver;
2760 }
2761 else {
2762 curserver = bk->srv;
2763
2764 while (curserver && (strcmp(curserver->id, name) != 0))
2765 curserver = curserver->next;
2766
2767 if (curserver)
2768 return curserver;
2769 }
2770
2771 return NULL;
2772}
2773
2774struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2775{
2776 struct server *byname;
2777 struct server *byid;
2778
2779 if (!name && !id)
2780 return NULL;
2781
2782 if (diff)
2783 *diff = 0;
2784
2785 byname = byid = NULL;
2786
2787 if (name) {
2788 byname = server_find_by_name(bk, name);
2789 if (byname && (!id || byname->puid == id))
2790 return byname;
2791 }
2792
2793 /* remaining possibilities :
2794 * - name not set
2795 * - name set but not found
2796 * - name found but ID doesn't match
2797 */
2798 if (id) {
2799 byid = server_find_by_id(bk, id);
2800 if (byid) {
2801 if (byname) {
2802 /* use id only if forced by configuration */
2803 if (byid->flags & SRV_F_FORCED_ID) {
2804 if (diff)
2805 *diff |= 2;
2806 return byid;
2807 }
2808 else {
2809 if (diff)
2810 *diff |= 1;
2811 return byname;
2812 }
2813 }
2814
2815 /* remaining possibilities:
2816 * - name not set
2817 * - name set but not found
2818 */
2819 if (name && diff)
2820 *diff |= 2;
2821 return byid;
2822 }
2823
2824 /* id bot found */
2825 if (byname) {
2826 if (diff)
2827 *diff |= 1;
2828 return byname;
2829 }
2830 }
2831
2832 return NULL;
2833}
2834
Willy Tarreau46b7f532018-08-21 11:54:26 +02002835/* Update a server state using the parameters available in the params list.
2836 *
2837 * Grabs the server lock during operation.
2838 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002839static void srv_update_state(struct server *srv, int version, char **params)
2840{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002841 char *p;
Willy Tarreau83061a82018-07-13 11:56:34 +02002842 struct buffer *msg;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002843
2844 /* fields since version 1
2845 * and common to all other upcoming versions
2846 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002847 enum srv_state srv_op_state;
2848 enum srv_admin srv_admin_state;
2849 unsigned srv_uweight, srv_iweight;
2850 unsigned long srv_last_time_change;
2851 short srv_check_status;
2852 enum chk_result srv_check_result;
2853 int srv_check_health;
2854 int srv_check_state, srv_agent_state;
2855 int bk_f_forced_id;
2856 int srv_f_forced_id;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002857 int fqdn_set_by_cli;
2858 const char *fqdn;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002859 const char *port_str;
2860 unsigned int port;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002861 char *srvrecord;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002862
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002863 fqdn = NULL;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002864 port = 0;
Willy Tarreau31138fa2015-09-29 18:38:47 +02002865 msg = get_trash_chunk();
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002866 switch (version) {
2867 case 1:
2868 /*
2869 * now we can proceed with server's state update:
2870 * srv_addr: params[0]
2871 * srv_op_state: params[1]
2872 * srv_admin_state: params[2]
2873 * srv_uweight: params[3]
2874 * srv_iweight: params[4]
2875 * srv_last_time_change: params[5]
2876 * srv_check_status: params[6]
2877 * srv_check_result: params[7]
2878 * srv_check_health: params[8]
2879 * srv_check_state: params[9]
2880 * srv_agent_state: params[10]
2881 * bk_f_forced_id: params[11]
2882 * srv_f_forced_id: params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002883 * srv_fqdn: params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02002884 * srv_port: params[14]
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002885 * srvrecord: params[15]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002886 */
2887
2888 /* validating srv_op_state */
2889 p = NULL;
2890 errno = 0;
2891 srv_op_state = strtol(params[1], &p, 10);
2892 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
2893 (srv_op_state != SRV_ST_STOPPED &&
2894 srv_op_state != SRV_ST_STARTING &&
2895 srv_op_state != SRV_ST_RUNNING &&
2896 srv_op_state != SRV_ST_STOPPING)) {
2897 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
2898 }
2899
2900 /* validating srv_admin_state */
2901 p = NULL;
2902 errno = 0;
2903 srv_admin_state = strtol(params[2], &p, 10);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002904 fqdn_set_by_cli = !!(srv_admin_state & SRV_ADMF_HMAINT);
Willy Tarreau757478e2016-11-03 19:22:19 +01002905
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002906 /* inherited statuses will be recomputed later.
2907 * Also disable SRV_ADMF_HMAINT flag (set from stats socket fqdn).
2908 */
2909 srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_HMAINT;
Willy Tarreau757478e2016-11-03 19:22:19 +01002910
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002911 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
2912 (srv_admin_state != 0 &&
2913 srv_admin_state != SRV_ADMF_FMAINT &&
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002914 srv_admin_state != SRV_ADMF_CMAINT &&
2915 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
Willy Tarreaue1bde142016-11-03 18:33:25 +01002916 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FDRAIN) &&
Willy Tarreau757478e2016-11-03 19:22:19 +01002917 srv_admin_state != SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002918 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
2919 }
2920
2921 /* validating srv_uweight */
2922 p = NULL;
2923 errno = 0;
2924 srv_uweight = strtol(params[3], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002925 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002926 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
2927
2928 /* validating srv_iweight */
2929 p = NULL;
2930 errno = 0;
2931 srv_iweight = strtol(params[4], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002932 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002933 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
2934
2935 /* validating srv_last_time_change */
2936 p = NULL;
2937 errno = 0;
2938 srv_last_time_change = strtol(params[5], &p, 10);
2939 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2940 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
2941
2942 /* validating srv_check_status */
2943 p = NULL;
2944 errno = 0;
2945 srv_check_status = strtol(params[6], &p, 10);
2946 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2947 (srv_check_status >= HCHK_STATUS_SIZE))
2948 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
2949
2950 /* validating srv_check_result */
2951 p = NULL;
2952 errno = 0;
2953 srv_check_result = strtol(params[7], &p, 10);
2954 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2955 (srv_check_result != CHK_RES_UNKNOWN &&
2956 srv_check_result != CHK_RES_NEUTRAL &&
2957 srv_check_result != CHK_RES_FAILED &&
2958 srv_check_result != CHK_RES_PASSED &&
2959 srv_check_result != CHK_RES_CONDPASS)) {
2960 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2961 }
2962
2963 /* validating srv_check_health */
2964 p = NULL;
2965 errno = 0;
2966 srv_check_health = strtol(params[8], &p, 10);
2967 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2968 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
2969
2970 /* validating srv_check_state */
2971 p = NULL;
2972 errno = 0;
2973 srv_check_state = strtol(params[9], &p, 10);
2974 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2975 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2976 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
2977
2978 /* validating srv_agent_state */
2979 p = NULL;
2980 errno = 0;
2981 srv_agent_state = strtol(params[10], &p, 10);
2982 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2983 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2984 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
2985
2986 /* validating bk_f_forced_id */
2987 p = NULL;
2988 errno = 0;
2989 bk_f_forced_id = strtol(params[11], &p, 10);
2990 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
2991 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
2992
2993 /* validating srv_f_forced_id */
2994 p = NULL;
2995 errno = 0;
2996 srv_f_forced_id = strtol(params[12], &p, 10);
2997 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
2998 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
2999
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003000 /* validating srv_fqdn */
3001 fqdn = params[13];
3002 if (fqdn && *fqdn == '-')
3003 fqdn = NULL;
3004 if (fqdn && (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn))) {
3005 chunk_appendf(msg, ", invalid srv_fqdn value '%s'", params[13]);
3006 fqdn = NULL;
3007 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003008
Frédéric Lécaille31694712017-08-01 08:47:19 +02003009 port_str = params[14];
3010 if (port_str) {
3011 port = strl2uic(port_str, strlen(port_str));
3012 if (port > USHRT_MAX) {
3013 chunk_appendf(msg, ", invalid srv_port value '%s'", port_str);
3014 port_str = NULL;
3015 }
3016 }
3017
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02003018 /* SRV record
3019 * NOTE: in HAProxy, SRV records must start with an underscore '_'
3020 */
3021 srvrecord = params[15];
3022 if (srvrecord && *srvrecord != '_')
3023 srvrecord = NULL;
3024
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003025 /* don't apply anything if one error has been detected */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003026 if (msg->data)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003027 goto out;
3028
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003029 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003030 /* recover operational state and apply it to this server
3031 * and all servers tracking this one */
3032 switch (srv_op_state) {
3033 case SRV_ST_STOPPED:
3034 srv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02003035 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003036 break;
3037 case SRV_ST_STARTING:
Emeric Brun52a91d32017-08-31 14:41:55 +02003038 srv->next_state = srv_op_state;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003039 break;
3040 case SRV_ST_STOPPING:
3041 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02003042 srv_set_stopping(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003043 break;
3044 case SRV_ST_RUNNING:
3045 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02003046 srv_set_running(srv, "", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003047 break;
3048 }
3049
3050 /* When applying server state, the following rules apply:
3051 * - in case of a configuration change, we apply the setting from the new
3052 * configuration, regardless of old running state
3053 * - if no configuration change, we apply old running state only if old running
3054 * state is different from new configuration state
3055 */
3056 /* configuration has changed */
Emeric Brun52a91d32017-08-31 14:41:55 +02003057 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->next_admin & SRV_ADMF_CMAINT)) {
3058 if (srv->next_admin & SRV_ADMF_CMAINT)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003059 srv_adm_set_maint(srv);
3060 else
3061 srv_adm_set_ready(srv);
3062 }
3063 /* configuration is the same, let's compate old running state and new conf state */
3064 else {
Emeric Brun52a91d32017-08-31 14:41:55 +02003065 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003066 srv_adm_set_maint(srv);
Emeric Brun52a91d32017-08-31 14:41:55 +02003067 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003068 srv_adm_set_ready(srv);
3069 }
3070 /* apply drain mode if server is currently enabled */
Emeric Brun52a91d32017-08-31 14:41:55 +02003071 if (!(srv->next_admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003072 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
Willy Tarreau22cace22016-11-03 18:19:49 +01003073 * (srv->iweight is the weight set up in configuration).
3074 * There are two possible reasons for FDRAIN to have been present :
3075 * - previous config weight was zero
3076 * - "set server b/s drain" was sent to the CLI
3077 *
3078 * In the first case, we simply want to drop this drain state
3079 * if the new weight is not zero anymore, meaning the administrator
3080 * has intentionally turned the weight back to a positive value to
3081 * enable the server again after an operation. In the second case,
3082 * the drain state was forced on the CLI regardless of the config's
3083 * weight so we don't want a change to the config weight to lose this
3084 * status. What this means is :
3085 * - if previous weight was 0 and new one is >0, drop the DRAIN state.
3086 * - if the previous weight was >0, keep it.
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003087 */
Willy Tarreau22cace22016-11-03 18:19:49 +01003088 if (srv_iweight > 0 || srv->iweight == 0)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003089 srv_adm_set_drain(srv);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003090 }
3091
3092 srv->last_change = date.tv_sec - srv_last_time_change;
3093 srv->check.status = srv_check_status;
3094 srv->check.result = srv_check_result;
3095 srv->check.health = srv_check_health;
3096
3097 /* Only case we want to apply is removing ENABLED flag which could have been
3098 * done by the "disable health" command over the stats socket
3099 */
3100 if ((srv->check.state & CHK_ST_CONFIGURED) &&
3101 (srv_check_state & CHK_ST_CONFIGURED) &&
3102 !(srv_check_state & CHK_ST_ENABLED))
3103 srv->check.state &= ~CHK_ST_ENABLED;
3104
3105 /* Only case we want to apply is removing ENABLED flag which could have been
3106 * done by the "disable agent" command over the stats socket
3107 */
3108 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
3109 (srv_agent_state & CHK_ST_CONFIGURED) &&
3110 !(srv_agent_state & CHK_ST_ENABLED))
3111 srv->agent.state &= ~CHK_ST_ENABLED;
3112
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02003113 /* We want to apply the previous 'running' weight (srv_uweight) only if there
3114 * was no change in the configuration: both previous and new iweight are equals
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003115 *
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02003116 * It means that a configuration file change has precedence over a unix socket change
3117 * for server's weight
3118 *
3119 * by default, HAProxy applies the following weight when parsing the configuration
3120 * srv->uweight = srv->iweight
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003121 */
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02003122 if (srv_iweight == srv->iweight) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003123 srv->uweight = srv_uweight;
3124 }
Willy Tarreau3ff577e2018-08-02 11:48:52 +02003125 server_recalc_eweight(srv, 1);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003126
Willy Tarreaue5a60682016-11-09 14:54:53 +01003127 /* load server IP address */
Daniel Corbett9215ffa2018-05-19 19:43:24 -04003128 if (strcmp(params[0], "-"))
3129 srv->lastaddr = strdup(params[0]);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003130
3131 if (fqdn && srv->hostname) {
3132 if (!strcmp(srv->hostname, fqdn)) {
3133 /* Here we reset the 'set from stats socket FQDN' flag
3134 * to support such transitions:
3135 * Let's say initial FQDN value is foo1 (in configuration file).
3136 * - FQDN changed from stats socket, from foo1 to foo2 value,
3137 * - FQDN changed again from file configuration (with the same previous value
3138 set from stats socket, from foo1 to foo2 value),
3139 * - reload for any other reason than a FQDN modification,
3140 * the configuration file FQDN matches the fqdn server state file value.
3141 * So we must reset the 'set from stats socket FQDN' flag to be consistent with
Joseph Herlant44466822018-11-15 08:57:51 -08003142 * any further FQDN modification.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003143 */
Emeric Brun52a91d32017-08-31 14:41:55 +02003144 srv->next_admin &= ~SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003145 }
3146 else {
3147 /* If the FDQN has been changed from stats socket,
3148 * apply fqdn state file value (which is the value set
3149 * from stats socket).
3150 */
3151 if (fqdn_set_by_cli) {
Olivier Houchardd16bfe62017-10-31 15:21:19 +01003152 srv_set_fqdn(srv, fqdn, 0);
Emeric Brun52a91d32017-08-31 14:41:55 +02003153 srv->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003154 }
3155 }
3156 }
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02003157 /* If all the conditions below are validated, this means
3158 * we're evaluating a server managed by SRV resolution
3159 */
3160 else if (fqdn && !srv->hostname && srvrecord) {
3161 int res;
3162
3163 /* we can't apply previous state if SRV record has changed */
3164 if (srv->srvrq && strcmp(srv->srvrq->name, srvrecord) != 0) {
3165 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);
3166 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
3167 goto out;
3168 }
3169
3170 /* create or find a SRV resolution for this srv record */
3171 if (srv->srvrq == NULL && (srv->srvrq = find_srvrq_by_name(srvrecord, srv->proxy)) == NULL)
3172 srv->srvrq = new_dns_srvrq(srv, srvrecord);
3173 if (srv->srvrq == NULL) {
3174 chunk_appendf(msg, ", can't create or find SRV resolution '%s' for server '%s'", srvrecord, srv->id);
3175 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
3176 goto out;
3177 }
3178
3179 /* prepare DNS resolution for this server */
3180 res = srv_prepare_for_resolution(srv, fqdn);
3181 if (res == -1) {
3182 chunk_appendf(msg, ", can't allocate memory for DNS resolution for server '%s'", srv->id);
3183 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
3184 goto out;
3185 }
3186
3187 /* configure check.port accordingly */
3188 if ((srv->check.state & CHK_ST_CONFIGURED) &&
3189 !(srv->flags & SRV_F_CHECKPORT))
3190 srv->check.port = port;
3191
3192 /* Unset SRV_F_MAPPORTS for SRV records.
3193 * SRV_F_MAPPORTS is unfortunately set by parse_server()
3194 * because no ports are provided in the configuration file.
3195 * This is because HAProxy will use the port found into the SRV record.
3196 */
3197 srv->flags &= ~SRV_F_MAPPORTS;
3198 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003199
Frédéric Lécaille31694712017-08-01 08:47:19 +02003200 if (port_str)
3201 srv->svc_port = port;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003202 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Frédéric Lécaille31694712017-08-01 08:47:19 +02003203
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003204 break;
3205 default:
3206 chunk_appendf(msg, ", version '%d' not supported", version);
3207 }
3208
3209 out:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003210 if (msg->data) {
Baptiste Assmann0821bb92016-01-21 00:20:50 +01003211 chunk_appendf(msg, "\n");
Christopher Faulet767a84b2017-11-24 16:50:31 +01003212 ha_warning("server-state application failed for server '%s/%s'%s",
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003213 srv->proxy->id, srv->id, msg->area);
Baptiste Assmann0821bb92016-01-21 00:20:50 +01003214 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003215}
3216
3217/* This function parses all the proxies and only take care of the backends (since we're looking for server)
3218 * For each proxy, it does the following:
3219 * - opens its server state file (either one or local one)
3220 * - read whole file, line by line
3221 * - analyse each line to check if it matches our current backend:
3222 * - backend name matches
3223 * - backend id matches if id is forced and name doesn't match
3224 * - if the server pointed by the line is found, then state is applied
3225 *
3226 * If the running backend uuid or id differs from the state file, then HAProxy reports
3227 * a warning.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003228 *
3229 * Grabs the server's lock via srv_update_state().
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003230 */
3231void apply_server_state(void)
3232{
3233 char *cur, *end;
3234 char mybuf[SRV_STATE_LINE_MAXLEN];
3235 int mybuflen;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003236 char *params[SRV_STATE_FILE_MAX_FIELDS] = {0};
3237 char *srv_params[SRV_STATE_FILE_MAX_FIELDS] = {0};
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003238 int arg, srv_arg, version, diff;
3239 FILE *f;
3240 char *filepath;
3241 char globalfilepath[MAXPATHLEN + 1];
3242 char localfilepath[MAXPATHLEN + 1];
3243 int len, fileopenerr, globalfilepathlen, localfilepathlen;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003244 struct proxy *curproxy, *bk;
3245 struct server *srv;
3246
3247 globalfilepathlen = 0;
3248 /* create the globalfilepath variable */
3249 if (global.server_state_file) {
3250 /* absolute path or no base directory provided */
3251 if ((global.server_state_file[0] == '/') || (!global.server_state_base)) {
3252 len = strlen(global.server_state_file);
3253 if (len > MAXPATHLEN) {
3254 globalfilepathlen = 0;
3255 goto globalfileerror;
3256 }
3257 memcpy(globalfilepath, global.server_state_file, len);
3258 globalfilepath[len] = '\0';
3259 globalfilepathlen = len;
3260 }
3261 else if (global.server_state_base) {
3262 len = strlen(global.server_state_base);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003263 if (len > MAXPATHLEN) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003264 globalfilepathlen = 0;
3265 goto globalfileerror;
3266 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003267 memcpy(globalfilepath, global.server_state_base, len);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003268 globalfilepath[len] = 0;
3269 globalfilepathlen = len;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003270
3271 /* append a slash if needed */
3272 if (!globalfilepathlen || globalfilepath[globalfilepathlen - 1] != '/') {
3273 if (globalfilepathlen + 1 > MAXPATHLEN) {
3274 globalfilepathlen = 0;
3275 goto globalfileerror;
3276 }
3277 globalfilepath[globalfilepathlen++] = '/';
3278 }
3279
3280 len = strlen(global.server_state_file);
3281 if (globalfilepathlen + len > MAXPATHLEN) {
3282 globalfilepathlen = 0;
3283 goto globalfileerror;
3284 }
3285 memcpy(globalfilepath + globalfilepathlen, global.server_state_file, len);
3286 globalfilepathlen += len;
3287 globalfilepath[globalfilepathlen++] = 0;
3288 }
3289 }
3290 globalfileerror:
3291 if (globalfilepathlen == 0)
3292 globalfilepath[0] = '\0';
3293
3294 /* read servers state from local file */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003295 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003296 /* servers are only in backends */
3297 if (!(curproxy->cap & PR_CAP_BE))
3298 continue;
3299 fileopenerr = 0;
3300 filepath = NULL;
3301
3302 /* search server state file path and name */
3303 switch (curproxy->load_server_state_from_file) {
3304 /* read servers state from global file */
3305 case PR_SRV_STATE_FILE_GLOBAL:
3306 /* there was an error while generating global server state file path */
3307 if (globalfilepathlen == 0)
3308 continue;
3309 filepath = globalfilepath;
3310 fileopenerr = 1;
3311 break;
3312 /* this backend has its own file */
3313 case PR_SRV_STATE_FILE_LOCAL:
3314 localfilepathlen = 0;
3315 localfilepath[0] = '\0';
3316 len = 0;
3317 /* create the localfilepath variable */
3318 /* absolute path or no base directory provided */
3319 if ((curproxy->server_state_file_name[0] == '/') || (!global.server_state_base)) {
3320 len = strlen(curproxy->server_state_file_name);
3321 if (len > MAXPATHLEN) {
3322 localfilepathlen = 0;
3323 goto localfileerror;
3324 }
3325 memcpy(localfilepath, curproxy->server_state_file_name, len);
3326 localfilepath[len] = '\0';
3327 localfilepathlen = len;
3328 }
3329 else if (global.server_state_base) {
3330 len = strlen(global.server_state_base);
3331 localfilepathlen += len;
3332
3333 if (localfilepathlen > MAXPATHLEN) {
3334 localfilepathlen = 0;
3335 goto localfileerror;
3336 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003337 memcpy(localfilepath, global.server_state_base, len);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003338 localfilepath[localfilepathlen] = 0;
3339
3340 /* append a slash if needed */
3341 if (!localfilepathlen || localfilepath[localfilepathlen - 1] != '/') {
3342 if (localfilepathlen + 1 > MAXPATHLEN) {
3343 localfilepathlen = 0;
3344 goto localfileerror;
3345 }
3346 localfilepath[localfilepathlen++] = '/';
3347 }
3348
3349 len = strlen(curproxy->server_state_file_name);
3350 if (localfilepathlen + len > MAXPATHLEN) {
3351 localfilepathlen = 0;
3352 goto localfileerror;
3353 }
3354 memcpy(localfilepath + localfilepathlen, curproxy->server_state_file_name, len);
3355 localfilepathlen += len;
3356 localfilepath[localfilepathlen++] = 0;
3357 }
3358 filepath = localfilepath;
3359 localfileerror:
3360 if (localfilepathlen == 0)
3361 localfilepath[0] = '\0';
3362
3363 break;
3364 case PR_SRV_STATE_FILE_NONE:
3365 default:
3366 continue;
3367 }
3368
3369 /* preload global state file */
3370 errno = 0;
3371 f = fopen(filepath, "r");
3372 if (errno && fileopenerr)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003373 ha_warning("Can't open server state file '%s': %s\n", filepath, strerror(errno));
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003374 if (!f)
3375 continue;
3376
3377 mybuf[0] = '\0';
3378 mybuflen = 0;
3379 version = 0;
3380
3381 /* first character of first line of the file must contain the version of the export */
Dragan Dosencf4fb032015-11-04 23:03:26 +01003382 if (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003383 ha_warning("Can't read first line of the server state file '%s'\n", filepath);
Dragan Dosencf4fb032015-11-04 23:03:26 +01003384 goto fileclose;
3385 }
3386
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003387 cur = mybuf;
3388 version = atoi(cur);
3389 if ((version < SRV_STATE_FILE_VERSION_MIN) ||
3390 (version > SRV_STATE_FILE_VERSION_MAX))
Dragan Dosencf4fb032015-11-04 23:03:26 +01003391 goto fileclose;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003392
3393 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3394 int bk_f_forced_id = 0;
3395 int check_id = 0;
3396 int check_name = 0;
3397
3398 mybuflen = strlen(mybuf);
3399 cur = mybuf;
3400 end = cur + mybuflen;
3401
3402 bk = NULL;
3403 srv = NULL;
3404
3405 /* we need at least one character */
3406 if (mybuflen == 0)
3407 continue;
3408
3409 /* ignore blank characters at the beginning of the line */
3410 while (isspace(*cur))
3411 ++cur;
3412
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003413 /* Ignore empty or commented lines */
3414 if (cur == end || *cur == '#')
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003415 continue;
3416
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003417 /* truncated lines */
3418 if (mybuf[mybuflen - 1] != '\n') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003419 ha_warning("server-state file '%s': truncated line\n", filepath);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003420 continue;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003421 }
3422
3423 /* Removes trailing '\n' */
3424 mybuf[mybuflen - 1] = '\0';
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003425
3426 /* we're now ready to move the line into *srv_params[] */
3427 params[0] = cur;
3428 arg = 1;
3429 srv_arg = 0;
3430 while (*cur && arg < SRV_STATE_FILE_MAX_FIELDS) {
3431 if (isspace(*cur)) {
3432 *cur = '\0';
3433 ++cur;
3434 while (isspace(*cur))
3435 ++cur;
3436 switch (version) {
3437 case 1:
3438 /*
3439 * srv_addr: params[4] => srv_params[0]
3440 * srv_op_state: params[5] => srv_params[1]
3441 * srv_admin_state: params[6] => srv_params[2]
3442 * srv_uweight: params[7] => srv_params[3]
3443 * srv_iweight: params[8] => srv_params[4]
3444 * srv_last_time_change: params[9] => srv_params[5]
3445 * srv_check_status: params[10] => srv_params[6]
3446 * srv_check_result: params[11] => srv_params[7]
3447 * srv_check_health: params[12] => srv_params[8]
3448 * srv_check_state: params[13] => srv_params[9]
3449 * srv_agent_state: params[14] => srv_params[10]
3450 * bk_f_forced_id: params[15] => srv_params[11]
3451 * srv_f_forced_id: params[16] => srv_params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003452 * srv_fqdn: params[17] => srv_params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02003453 * srv_port: params[18] => srv_params[14]
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02003454 * srvrecord: params[19] => srv_params[15]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003455 */
3456 if (arg >= 4) {
3457 srv_params[srv_arg] = cur;
3458 ++srv_arg;
3459 }
3460 break;
3461 }
3462
3463 params[arg] = cur;
3464 ++arg;
3465 }
3466 else {
3467 ++cur;
3468 }
3469 }
3470
3471 /* if line is incomplete line, then ignore it.
3472 * otherwise, update useful flags */
3473 switch (version) {
3474 case 1:
3475 if (arg < SRV_STATE_FILE_NB_FIELDS_VERSION_1)
3476 continue;
3477 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
3478 check_id = (atoi(params[0]) == curproxy->uuid);
3479 check_name = (strcmp(curproxy->id, params[1]) == 0);
3480 break;
3481 }
3482
3483 diff = 0;
3484 bk = curproxy;
3485
3486 /* if backend can't be found, let's continue */
3487 if (!check_id && !check_name)
3488 continue;
3489 else if (!check_id && check_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003490 ha_warning("backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003491 send_log(bk, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3492 }
3493 else if (check_id && !check_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003494 ha_warning("backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003495 send_log(bk, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3496 /* if name doesn't match, we still want to update curproxy if the backend id
3497 * was forced in previous the previous configuration */
3498 if (!bk_f_forced_id)
3499 continue;
3500 }
3501
3502 /* look for the server by its id: param[2] */
3503 /* else look for the server by its name: param[3] */
3504 diff = 0;
3505 srv = server_find_best_match(bk, params[3], atoi(params[2]), &diff);
3506
3507 if (!srv) {
3508 /* if no server found, then warning and continue with next line */
Christopher Faulet767a84b2017-11-24 16:50:31 +01003509 ha_warning("can't find server '%s' with id '%s' in backend with id '%s' or name '%s'\n",
3510 params[3], params[2], params[0], params[1]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003511 send_log(bk, LOG_NOTICE, "can't find server '%s' with id '%s' in backend with id '%s' or name '%s'\n",
3512 params[3], params[2], params[0], params[1]);
3513 continue;
3514 }
3515 else if (diff & PR_FBM_MISMATCH_ID) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003516 ha_warning("In backend '%s' (id: '%d'): server ID mismatch: from server state file: '%s', from running config %d\n", bk->id, bk->uuid, params[2], srv->puid);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003517 send_log(bk, LOG_NOTICE, "In backend '%s' (id: %d): server ID mismatch: from server state file: '%s', from running config %d\n", bk->id, bk->uuid, params[2], srv->puid);
Frédéric Lécaille0bedb8a2017-06-15 14:09:10 +02003518 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003519 }
3520 else if (diff & PR_FBM_MISMATCH_NAME) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003521 ha_warning("In backend '%s' (id: %d): server name mismatch: from server state file: '%s', from running config '%s'\n", bk->id, bk->uuid, params[3], srv->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003522 send_log(bk, LOG_NOTICE, "In backend '%s' (id: %d): server name mismatch: from server state file: '%s', from running config '%s'\n", bk->id, bk->uuid, params[3], srv->id);
Frédéric Lécaille0bedb8a2017-06-15 14:09:10 +02003523 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003524 }
3525
3526 /* now we can proceed with server's state update */
3527 srv_update_state(srv, version, srv_params);
3528 }
Dragan Dosencf4fb032015-11-04 23:03:26 +01003529fileclose:
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003530 fclose(f);
3531 }
3532}
3533
Simon Horman7d09b9a2013-02-12 10:45:51 +09003534/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003535 * update a server's current IP address.
3536 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3537 * ip is in network format.
3538 * updater is a string which contains an information about the requester of the update.
3539 * updater is used if not NULL.
3540 *
3541 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003542 *
3543 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003544 */
Thierry Fournierd35b7a62016-02-24 08:23:22 +01003545int update_server_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003546{
3547 /* generates a log line and a warning on stderr */
3548 if (1) {
3549 /* book enough space for both IPv4 and IPv6 */
3550 char oldip[INET6_ADDRSTRLEN];
3551 char newip[INET6_ADDRSTRLEN];
3552
3553 memset(oldip, '\0', INET6_ADDRSTRLEN);
3554 memset(newip, '\0', INET6_ADDRSTRLEN);
3555
3556 /* copy old IP address in a string */
3557 switch (s->addr.ss_family) {
3558 case AF_INET:
3559 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3560 break;
3561 case AF_INET6:
3562 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3563 break;
3564 };
3565
3566 /* copy new IP address in a string */
3567 switch (ip_sin_family) {
3568 case AF_INET:
3569 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3570 break;
3571 case AF_INET6:
3572 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3573 break;
3574 };
3575
3576 /* save log line into a buffer */
3577 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3578 s->proxy->id, s->id, oldip, newip, updater);
3579
3580 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003581 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003582
3583 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003584 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003585 }
3586
3587 /* save the new IP family */
3588 s->addr.ss_family = ip_sin_family;
3589 /* save the new IP address */
3590 switch (ip_sin_family) {
3591 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003592 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003593 break;
3594 case AF_INET6:
3595 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3596 break;
3597 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003598 srv_set_dyncookie(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003599
3600 return 0;
3601}
3602
3603/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003604 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3605 *
3606 * Caller can pass its name through <updater> to get it integrated in the response message
3607 * returned by the function.
3608 *
3609 * The function first does the following, in that order:
3610 * - validates the new addr and/or port
3611 * - checks if an update is required (new IP or port is different than current ones)
3612 * - checks the update is allowed:
3613 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3614 * - allow all changes if no CHECKS are configured
3615 * - if CHECK is configured:
3616 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3617 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3618 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003619 *
3620 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003621 */
3622const char *update_server_addr_port(struct server *s, const char *addr, const char *port, char *updater)
3623{
3624 struct sockaddr_storage sa;
3625 int ret, port_change_required;
3626 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003627 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003628 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003629 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003630
3631 msg = get_trash_chunk();
3632 chunk_reset(msg);
3633
3634 if (addr) {
3635 memset(&sa, 0, sizeof(struct sockaddr_storage));
3636 if (str2ip2(addr, &sa, 0) == NULL) {
3637 chunk_printf(msg, "Invalid addr '%s'", addr);
3638 goto out;
3639 }
3640
3641 /* changes are allowed on AF_INET* families only */
3642 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3643 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3644 goto out;
3645 }
3646
3647 /* collecting data currently setup */
3648 memset(current_addr, '\0', sizeof(current_addr));
3649 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3650 /* changes are allowed on AF_INET* families only */
3651 if ((ret != AF_INET) && (ret != AF_INET6)) {
3652 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3653 goto out;
3654 }
3655
3656 /* applying ADDR changes if required and allowed
3657 * ipcmp returns 0 when both ADDR are the same
3658 */
3659 if (ipcmp(&s->addr, &sa) == 0) {
3660 chunk_appendf(msg, "no need to change the addr");
3661 goto port;
3662 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003663 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003664 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003665
3666 /* we also need to update check's ADDR only if it uses the server's one */
3667 if ((s->check.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_CHECKADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003668 ipcpy(&sa, &s->check.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003669 }
3670
3671 /* we also need to update agent ADDR only if it use the server's one */
3672 if ((s->agent.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_AGENTADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003673 ipcpy(&sa, &s->agent.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003674 }
3675
3676 /* update report for caller */
3677 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3678 }
3679
3680 port:
3681 if (port) {
3682 char sign = '\0';
3683 char *endptr;
3684
3685 if (addr)
3686 chunk_appendf(msg, ", ");
3687
3688 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003689 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003690
3691 /* check if PORT change is required */
3692 port_change_required = 0;
3693
3694 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003695 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003696 new_port = strtol(port, &endptr, 10);
3697 if ((errno != 0) || (port == endptr)) {
3698 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3699 goto out;
3700 }
3701
3702 /* check if caller triggers a port mapped or offset */
3703 if (sign == '-' || (sign == '+')) {
3704 /* check if server currently uses port map */
3705 if (!(s->flags & SRV_F_MAPPORTS)) {
3706 /* switch from fixed port to port map mandatorily triggers
3707 * a port change */
3708 port_change_required = 1;
3709 /* check is configured
3710 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3711 * prevent PORT change if check doesn't have it's dedicated port while switching
3712 * to port mapping */
3713 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3714 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.");
3715 goto out;
3716 }
3717 }
3718 /* we're already using port maps */
3719 else {
3720 port_change_required = current_port != new_port;
3721 }
3722 }
3723 /* fixed port */
3724 else {
3725 port_change_required = current_port != new_port;
3726 }
3727
3728 /* applying PORT changes if required and update response message */
3729 if (port_change_required) {
3730 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003731 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003732 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003733
3734 /* prepare message */
3735 chunk_appendf(msg, "port changed from '");
3736 if (s->flags & SRV_F_MAPPORTS)
3737 chunk_appendf(msg, "+");
3738 chunk_appendf(msg, "%d' to '", current_port);
3739
3740 if (sign == '-') {
3741 s->flags |= SRV_F_MAPPORTS;
3742 chunk_appendf(msg, "%c", sign);
3743 /* just use for result output */
3744 new_port = -new_port;
3745 }
3746 else if (sign == '+') {
3747 s->flags |= SRV_F_MAPPORTS;
3748 chunk_appendf(msg, "%c", sign);
3749 }
3750 else {
3751 s->flags &= ~SRV_F_MAPPORTS;
3752 }
3753
3754 chunk_appendf(msg, "%d'", new_port);
3755
3756 /* we also need to update health checks port only if it uses server's realport */
3757 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3758 s->check.port = new_port;
3759 }
3760 }
3761 else {
3762 chunk_appendf(msg, "no need to change the port");
3763 }
3764 }
3765
3766out:
Olivier Houchard4e694042017-03-14 20:01:29 +01003767 if (changed)
3768 srv_set_dyncookie(s);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003769 if (updater)
3770 chunk_appendf(msg, " by '%s'", updater);
3771 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003772 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003773}
3774
3775
3776/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003777 * update server status based on result of name resolution
3778 * returns:
3779 * 0 if server status is updated
3780 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003781 *
3782 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003783 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003784int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003785{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003786 struct dns_resolvers *resolvers = s->resolvers;
3787 struct dns_resolution *resolution = s->dns_requester->resolution;
3788 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003789
3790 switch (resolution->status) {
3791 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003792 /* status when HAProxy has just (re)started.
3793 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003794 break;
3795
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003796 case RSLV_STATUS_VALID:
3797 /*
3798 * resume health checks
3799 * server will be turned back on if health check is safe
3800 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003801 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003802 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003803 return 1;
3804 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3805 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003806 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003807 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003808
Emeric Brun52a91d32017-08-31 14:41:55 +02003809 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003810 return 1;
3811 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3812 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3813 s->proxy->id, s->id);
3814
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003815 ha_warning("%s.\n", trash.area);
3816 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003817 return 0;
3818
3819 case RSLV_STATUS_NX:
3820 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003821 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3822 if (!tick_is_expired(exp, now_ms))
3823 break;
3824
3825 if (s->next_admin & SRV_ADMF_RMAINT)
3826 return 1;
3827 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3828 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003829
3830 case RSLV_STATUS_TIMEOUT:
3831 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003832 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3833 if (!tick_is_expired(exp, now_ms))
3834 break;
3835
3836 if (s->next_admin & SRV_ADMF_RMAINT)
3837 return 1;
3838 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3839 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003840
3841 case RSLV_STATUS_REFUSED:
3842 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003843 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3844 if (!tick_is_expired(exp, now_ms))
3845 break;
3846
3847 if (s->next_admin & SRV_ADMF_RMAINT)
3848 return 1;
3849 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3850 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003851
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003852 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003853 /* stop server if resolution failed for a long enough period */
3854 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3855 if (!tick_is_expired(exp, now_ms))
3856 break;
3857
3858 if (s->next_admin & SRV_ADMF_RMAINT)
3859 return 1;
3860 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3861 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003862 }
3863
3864 return 1;
3865}
3866
3867/*
3868 * Server Name Resolution valid response callback
3869 * It expects:
3870 * - <nameserver>: the name server which answered the valid response
3871 * - <response>: buffer containing a valid DNS response
3872 * - <response_len>: size of <response>
3873 * It performs the following actions:
3874 * - ignore response if current ip found and server family not met
3875 * - update with first new ip found if family is met and current IP is not found
3876 * returns:
3877 * 0 on error
3878 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003879 *
3880 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003881 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003882int snr_resolution_cb(struct dns_requester *requester, struct dns_nameserver *nameserver)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003883{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003884 struct server *s = NULL;
3885 struct dns_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003886 void *serverip, *firstip;
3887 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003888 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003889 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003890 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003891
Christopher Faulet67957bd2017-09-27 11:00:59 +02003892 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003893 if (!s)
3894 return 1;
3895
Christopher Faulet67957bd2017-09-27 11:00:59 +02003896 resolution = s->dns_requester->resolution;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003897
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003898 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003899 firstip = NULL; /* pointer to the first valid response found */
3900 /* it will be used as the new IP if a change is required */
3901 firstip_sin_family = AF_UNSPEC;
3902 serverip = NULL; /* current server IP address */
3903
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003904 /* initializing server IP pointer */
3905 server_sin_family = s->addr.ss_family;
3906 switch (server_sin_family) {
3907 case AF_INET:
3908 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3909 break;
3910
3911 case AF_INET6:
3912 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3913 break;
3914
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003915 case AF_UNSPEC:
3916 break;
3917
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003918 default:
3919 goto invalid;
3920 }
3921
Baptiste Assmann729c9012017-05-22 15:13:10 +02003922 ret = dns_get_ip_from_response(&resolution->response, &s->dns_opts,
Thierry Fournierada34842016-02-17 21:25:09 +01003923 serverip, server_sin_family, &firstip,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003924 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003925
3926 switch (ret) {
3927 case DNS_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003928 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003929
3930 case DNS_UPD_SRVIP_NOT_FOUND:
3931 goto save_ip;
3932
3933 case DNS_UPD_CNAME:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003934 goto invalid;
3935
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003936 case DNS_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003937 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003938 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003939
Baptiste Assmannfad03182015-10-28 02:03:32 +01003940 case DNS_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003941 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003942 resolution->status = RSLV_STATUS_OTHER;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003943 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003944
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003945 default:
3946 goto invalid;
3947
3948 }
3949
3950 save_ip:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003951 if (nameserver) {
3952 nameserver->counters.update++;
3953 /* save the first ip we found */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003954 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003955 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003956 else
3957 chunk_printf(chk, "DNS cache");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003958 update_server_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003959
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003960 update_status:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003961 snr_update_srv_status(s, has_no_ip);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003962 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003963
3964 invalid:
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003965 if (nameserver) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02003966 nameserver->counters.invalid++;
3967 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003968 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003969 snr_update_srv_status(s, has_no_ip);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003970 return 0;
3971}
3972
3973/*
3974 * Server Name Resolution error management callback
3975 * returns:
3976 * 0 on error
3977 * 1 when no error or safe ignore
Willy Tarreau46b7f532018-08-21 11:54:26 +02003978 *
3979 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003980 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003981int snr_resolution_error_cb(struct dns_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003982{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003983 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003984
Christopher Faulet67957bd2017-09-27 11:00:59 +02003985 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003986 if (!s)
3987 return 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003988 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003989 snr_update_srv_status(s, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003990 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003991 return 1;
3992}
3993
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003994/*
3995 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003996 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003997 * It returns a pointer to the first server found or NULL if <ip> is not yet
3998 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003999 *
4000 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004001 */
4002struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
4003{
4004 struct server *tmpsrv;
4005 struct proxy *be;
4006
4007 if (!srv)
4008 return NULL;
4009
4010 be = srv->proxy;
4011 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01004012 /* we found the current server is the same, ignore it */
4013 if (srv == tmpsrv)
4014 continue;
4015
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004016 /* We want to compare the IP in the record with the IP of the servers in the
4017 * same backend, only if:
4018 * * DNS resolution is enabled on the server
4019 * * the hostname used for the resolution by our server is the same than the
4020 * one used for the server found in the backend
4021 * * the server found in the backend is not our current server
4022 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004023 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004024 if ((tmpsrv->hostname_dn == NULL) ||
4025 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
4026 (strcmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01004027 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004028 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004029 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004030 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004031
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004032 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01004033 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004034 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004035 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004036 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004037
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004038 /* At this point, we have 2 different servers using the same DNS hostname
4039 * for their respective resolution.
4040 */
4041 if (*ip_family == tmpsrv->addr.ss_family &&
4042 ((tmpsrv->addr.ss_family == AF_INET &&
4043 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
4044 (tmpsrv->addr.ss_family == AF_INET6 &&
4045 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004046 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004047 return tmpsrv;
4048 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004049 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004050 }
4051
Emeric Brune9fd6b52017-11-02 17:20:39 +01004052
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004053 return NULL;
4054}
4055
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004056/* Sets the server's address (srv->addr) from srv->hostname using the libc's
4057 * resolver. This is suited for initial address configuration. Returns 0 on
4058 * success otherwise a non-zero error code. In case of error, *err_code, if
4059 * not NULL, is filled up.
4060 */
4061int srv_set_addr_via_libc(struct server *srv, int *err_code)
4062{
4063 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004064 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01004065 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004066 return 1;
4067 }
4068 return 0;
4069}
4070
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004071/* Set the server's FDQN (->hostname) from <hostname>.
4072 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004073 *
4074 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004075 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004076int srv_set_fqdn(struct server *srv, const char *hostname, int dns_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004077{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004078 struct dns_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004079 char *hostname_dn;
4080 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004081
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02004082 /* Note that the server lock is already held. */
4083 if (!srv->resolvers)
4084 return -1;
4085
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004086 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004087 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004088 /* run time DNS resolution was not active for this server
4089 * and we can't enable it at run time for now.
4090 */
4091 if (!srv->dns_requester)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004092 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004093
4094 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004095 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004096 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004097 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
4098 hostname_dn, trash.size);
4099 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004100 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004101
Christopher Faulet67957bd2017-09-27 11:00:59 +02004102 resolution = srv->dns_requester->resolution;
4103 if (resolution &&
4104 resolution->hostname_dn &&
4105 !strcmp(resolution->hostname_dn, hostname_dn))
Christopher Fauletb2812a62017-10-04 16:17:58 +02004106 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004107
Christopher Faulet67957bd2017-09-27 11:00:59 +02004108 dns_unlink_resolution(srv->dns_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004109
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004110 free(srv->hostname);
4111 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004112 srv->hostname = strdup(hostname);
4113 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004114 srv->hostname_dn_len = hostname_dn_len;
4115 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004116 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004117
Olivier Houchard55dcdf42017-11-06 15:15:04 +01004118 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004119 goto err;
4120
4121 end:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004122 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004123 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004124 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02004125
4126 err:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004127 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004128 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02004129 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004130}
4131
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004132/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
4133 * from the state file. This is suited for initial address configuration.
4134 * Returns 0 on success otherwise a non-zero error code. In case of error,
4135 * *err_code, if not NULL, is filled up.
4136 */
4137static int srv_apply_lastaddr(struct server *srv, int *err_code)
4138{
4139 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
4140 if (err_code)
4141 *err_code |= ERR_WARN;
4142 return 1;
4143 }
4144 return 0;
4145}
4146
Willy Tarreau25e51522016-11-04 15:10:17 +01004147/* returns 0 if no error, otherwise a combination of ERR_* flags */
4148static int srv_iterate_initaddr(struct server *srv)
4149{
4150 int return_code = 0;
4151 int err_code;
4152 unsigned int methods;
4153
4154 methods = srv->init_addr_methods;
4155 if (!methods) { // default to "last,libc"
4156 srv_append_initaddr(&methods, SRV_IADDR_LAST);
4157 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
4158 }
4159
Willy Tarreau3eed10e2016-11-07 21:03:16 +01004160 /* "-dr" : always append "none" so that server addresses resolution
4161 * failures are silently ignored, this is convenient to validate some
4162 * configs out of their environment.
4163 */
4164 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
4165 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4166
Willy Tarreau25e51522016-11-04 15:10:17 +01004167 while (methods) {
4168 err_code = 0;
4169 switch (srv_get_next_initaddr(&methods)) {
4170 case SRV_IADDR_LAST:
4171 if (!srv->lastaddr)
4172 continue;
4173 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004174 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004175 return_code |= err_code;
4176 break;
4177
4178 case SRV_IADDR_LIBC:
4179 if (!srv->hostname)
4180 continue;
4181 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004182 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004183 return_code |= err_code;
4184 break;
4185
Willy Tarreau37ebe122016-11-04 15:17:58 +01004186 case SRV_IADDR_NONE:
4187 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004188 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004189 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
4190 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004191 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01004192 return return_code;
4193
Willy Tarreau4310d362016-11-02 15:05:56 +01004194 case SRV_IADDR_IP:
4195 ipcpy(&srv->init_addr, &srv->addr);
4196 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004197 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', falling back to configured address.\n",
4198 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
Willy Tarreau4310d362016-11-02 15:05:56 +01004199 }
Olivier Houchard4e694042017-03-14 20:01:29 +01004200 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01004201
Willy Tarreau25e51522016-11-04 15:10:17 +01004202 default: /* unhandled method */
4203 break;
4204 }
4205 }
4206
4207 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004208 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Willy Tarreau25e51522016-11-04 15:10:17 +01004209 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
4210 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01004211 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004212 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Willy Tarreau465b6e52016-11-07 19:19:22 +01004213 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
4214 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004215
4216 return_code |= ERR_ALERT | ERR_FATAL;
4217 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01004218out:
4219 srv_set_dyncookie(srv);
4220 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01004221}
4222
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004223/*
4224 * This function parses all backends and all servers within each backend
4225 * and performs servers' addr resolution based on information provided by:
4226 * - configuration file
4227 * - server-state file (states provided by an 'old' haproxy process)
4228 *
4229 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
4230 */
4231int srv_init_addr(void)
4232{
4233 struct proxy *curproxy;
4234 int return_code = 0;
4235
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004236 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004237 while (curproxy) {
4238 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004239
4240 /* servers are in backend only */
4241 if (!(curproxy->cap & PR_CAP_BE))
4242 goto srv_init_addr_next;
4243
Willy Tarreau25e51522016-11-04 15:10:17 +01004244 for (srv = curproxy->srv; srv; srv = srv->next)
Willy Tarreau3d609a72017-09-06 14:22:45 +02004245 if (srv->hostname)
4246 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004247
4248 srv_init_addr_next:
4249 curproxy = curproxy->next;
4250 }
4251
4252 return return_code;
4253}
4254
Willy Tarreau46b7f532018-08-21 11:54:26 +02004255/*
4256 * Must be called with the server lock held.
4257 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004258const 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 +02004259{
4260
Willy Tarreau83061a82018-07-13 11:56:34 +02004261 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004262
4263 msg = get_trash_chunk();
4264 chunk_reset(msg);
4265
Olivier Houchard8da5f982017-08-04 18:35:36 +02004266 if (server->hostname && !strcmp(fqdn, server->hostname)) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004267 chunk_appendf(msg, "no need to change the FDQN");
4268 goto out;
4269 }
4270
4271 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4272 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4273 goto out;
4274 }
4275
4276 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4277 server->proxy->id, server->id, server->hostname, fqdn);
4278
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004279 if (srv_set_fqdn(server, fqdn, dns_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004280 chunk_reset(msg);
4281 chunk_appendf(msg, "could not update %s/%s FQDN",
4282 server->proxy->id, server->id);
4283 goto out;
4284 }
4285
4286 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004287 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004288
4289 out:
4290 if (updater)
4291 chunk_appendf(msg, " by '%s'", updater);
4292 chunk_appendf(msg, "\n");
4293
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004294 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004295}
4296
4297
Willy Tarreau21b069d2016-11-23 17:15:08 +01004298/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4299 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004300 * 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 +01004301 * used for CLI commands requiring a server name.
4302 * Important: the <arg> is modified to remove the '/'.
4303 */
4304struct server *cli_find_server(struct appctx *appctx, char *arg)
4305{
4306 struct proxy *px;
4307 struct server *sv;
4308 char *line;
4309
4310 /* split "backend/server" and make <line> point to server */
4311 for (line = arg; *line; line++)
4312 if (*line == '/') {
4313 *line++ = '\0';
4314 break;
4315 }
4316
4317 if (!*line || !*arg) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004318 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004319 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004320 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004321 return NULL;
4322 }
4323
4324 if (!get_backend_server(arg, line, &px, &sv)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004325 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004326 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004327 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004328 return NULL;
4329 }
4330
4331 if (px->state == PR_STSTOPPED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004332 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004333 appctx->ctx.cli.msg = "Proxy is disabled.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004334 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004335 return NULL;
4336 }
4337
4338 return sv;
4339}
4340
William Lallemand222baf22016-11-19 02:00:33 +01004341
Willy Tarreau46b7f532018-08-21 11:54:26 +02004342/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004343static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004344{
4345 struct server *sv;
4346 const char *warning;
4347
4348 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4349 return 1;
4350
4351 sv = cli_find_server(appctx, args[2]);
4352 if (!sv)
4353 return 1;
4354
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004355 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02004356
William Lallemand222baf22016-11-19 02:00:33 +01004357 if (strcmp(args[3], "weight") == 0) {
4358 warning = server_parse_weight_change_request(sv, args[4]);
4359 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004360 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004361 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004362 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004363 }
4364 }
4365 else if (strcmp(args[3], "state") == 0) {
4366 if (strcmp(args[4], "ready") == 0)
4367 srv_adm_set_ready(sv);
4368 else if (strcmp(args[4], "drain") == 0)
4369 srv_adm_set_drain(sv);
4370 else if (strcmp(args[4], "maint") == 0)
4371 srv_adm_set_maint(sv);
4372 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004373 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004374 appctx->ctx.cli.msg = "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004375 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004376 }
4377 }
4378 else if (strcmp(args[3], "health") == 0) {
4379 if (sv->track) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004380 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004381 appctx->ctx.cli.msg = "cannot change health on a tracking server.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004382 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004383 }
4384 else if (strcmp(args[4], "up") == 0) {
4385 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004386 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004387 }
4388 else if (strcmp(args[4], "stopping") == 0) {
4389 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004390 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004391 }
4392 else if (strcmp(args[4], "down") == 0) {
4393 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004394 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004395 }
4396 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004397 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004398 appctx->ctx.cli.msg = "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004399 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004400 }
4401 }
4402 else if (strcmp(args[3], "agent") == 0) {
4403 if (!(sv->agent.state & CHK_ST_ENABLED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004404 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004405 appctx->ctx.cli.msg = "agent checks are not enabled on this server.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004406 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004407 }
4408 else if (strcmp(args[4], "up") == 0) {
4409 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004410 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004411 }
4412 else if (strcmp(args[4], "down") == 0) {
4413 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004414 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004415 }
4416 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004417 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004418 appctx->ctx.cli.msg = "'set server <srv> agent' expects 'up' or 'down'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004419 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004420 }
4421 }
Misiek2da082d2017-01-09 09:40:42 +01004422 else if (strcmp(args[3], "agent-addr") == 0) {
4423 if (!(sv->agent.state & CHK_ST_ENABLED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004424 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004425 appctx->ctx.cli.msg = "agent checks are not enabled on this server.\n";
4426 appctx->st0 = CLI_ST_PRINT;
4427 } else {
4428 if (str2ip(args[4], &sv->agent.addr) == NULL) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004429 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004430 appctx->ctx.cli.msg = "incorrect addr address given for agent.\n";
4431 appctx->st0 = CLI_ST_PRINT;
4432 }
4433 }
4434 }
4435 else if (strcmp(args[3], "agent-send") == 0) {
4436 if (!(sv->agent.state & CHK_ST_ENABLED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004437 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004438 appctx->ctx.cli.msg = "agent checks are not enabled on this server.\n";
4439 appctx->st0 = CLI_ST_PRINT;
4440 } else {
4441 char *nss = strdup(args[4]);
4442 if (!nss) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004443 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004444 appctx->ctx.cli.msg = "cannot allocate memory for new string.\n";
4445 appctx->st0 = CLI_ST_PRINT;
4446 } else {
4447 free(sv->agent.send_string);
4448 sv->agent.send_string = nss;
4449 sv->agent.send_string_len = strlen(args[4]);
4450 }
4451 }
4452 }
William Lallemand222baf22016-11-19 02:00:33 +01004453 else if (strcmp(args[3], "check-port") == 0) {
4454 int i = 0;
4455 if (strl2irc(args[4], strlen(args[4]), &i) != 0) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004456 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004457 appctx->ctx.cli.msg = "'set server <srv> check-port' expects an integer as argument.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004458 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004459 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004460 }
4461 if ((i < 0) || (i > 65535)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004462 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004463 appctx->ctx.cli.msg = "provided port is not valid.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004464 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004465 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004466 }
4467 /* prevent the update of port to 0 if MAPPORTS are in use */
4468 if ((sv->flags & SRV_F_MAPPORTS) && (i == 0)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004469 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004470 appctx->ctx.cli.msg = "can't unset 'port' since MAPPORTS is in use.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004471 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004472 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004473 }
4474 sv->check.port = i;
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004475 appctx->ctx.cli.severity = LOG_NOTICE;
William Lallemand222baf22016-11-19 02:00:33 +01004476 appctx->ctx.cli.msg = "health check port updated.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004477 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004478 }
4479 else if (strcmp(args[3], "addr") == 0) {
4480 char *addr = NULL;
4481 char *port = NULL;
4482 if (strlen(args[4]) == 0) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004483 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004484 appctx->ctx.cli.msg = "set server <b>/<s> addr requires an address and optionally a port.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004485 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004486 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004487 }
4488 else {
4489 addr = args[4];
4490 }
4491 if (strcmp(args[5], "port") == 0) {
4492 port = args[6];
4493 }
4494 warning = update_server_addr_port(sv, addr, port, "stats socket command");
4495 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004496 appctx->ctx.cli.severity = LOG_WARNING;
William Lallemand222baf22016-11-19 02:00:33 +01004497 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004498 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004499 }
4500 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
4501 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004502 else if (strcmp(args[3], "fqdn") == 0) {
4503 if (!*args[4]) {
Willy Tarreaua0752582017-11-05 10:17:49 +01004504 appctx->ctx.cli.severity = LOG_ERR;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004505 appctx->ctx.cli.msg = "set server <b>/<s> fqdn requires a FQDN.\n";
4506 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004507 goto out_unlock;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004508 }
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004509 warning = update_server_fqdn(sv, args[4], "stats socket command", 0);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004510 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004511 appctx->ctx.cli.severity = LOG_WARNING;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004512 appctx->ctx.cli.msg = warning;
4513 appctx->st0 = CLI_ST_PRINT;
4514 }
4515 }
William Lallemand222baf22016-11-19 02:00:33 +01004516 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004517 appctx->ctx.cli.severity = LOG_ERR;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004518 appctx->ctx.cli.msg = "'set server <srv>' only supports 'agent', 'health', 'state', 'weight', 'addr', 'fqdn' and 'check-port'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004519 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004520 }
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004521 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004522 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004523 return 1;
4524}
4525
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004526static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004527{
4528 struct stream_interface *si = appctx->owner;
4529 struct proxy *px;
4530 struct server *sv;
4531 char *line;
4532
4533
4534 /* split "backend/server" and make <line> point to server */
4535 for (line = args[2]; *line; line++)
4536 if (*line == '/') {
4537 *line++ = '\0';
4538 break;
4539 }
4540
4541 if (!*line) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004542 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand6b160942016-11-22 12:34:35 +01004543 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004544 appctx->st0 = CLI_ST_PRINT;
William Lallemand6b160942016-11-22 12:34:35 +01004545 return 1;
4546 }
4547
4548 if (!get_backend_server(args[2], line, &px, &sv)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004549 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand6b160942016-11-22 12:34:35 +01004550 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004551 appctx->st0 = CLI_ST_PRINT;
William Lallemand6b160942016-11-22 12:34:35 +01004552 return 1;
4553 }
4554
4555 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004556 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4557 sv->iweight);
4558 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004559 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004560 return 0;
4561 }
William Lallemand6b160942016-11-22 12:34:35 +01004562 return 1;
4563}
4564
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004565/* Parse a "set weight" command.
4566 *
4567 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004568 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004569static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004570{
4571 struct server *sv;
4572 const char *warning;
4573
4574 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4575 return 1;
4576
4577 sv = cli_find_server(appctx, args[2]);
4578 if (!sv)
4579 return 1;
4580
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004581 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4582
William Lallemand6b160942016-11-22 12:34:35 +01004583 warning = server_parse_weight_change_request(sv, args[3]);
4584 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004585 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand6b160942016-11-22 12:34:35 +01004586 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004587 appctx->st0 = CLI_ST_PRINT;
William Lallemand6b160942016-11-22 12:34:35 +01004588 }
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004589
4590 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4591
William Lallemand6b160942016-11-22 12:34:35 +01004592 return 1;
4593}
4594
Willy Tarreau46b7f532018-08-21 11:54:26 +02004595/* parse a "set maxconn server" command. It always returns 1.
4596 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004597 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004598 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004599static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004600{
4601 struct server *sv;
4602 const char *warning;
4603
4604 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4605 return 1;
4606
4607 sv = cli_find_server(appctx, args[3]);
4608 if (!sv)
4609 return 1;
4610
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004611 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4612
Willy Tarreaub8026272016-11-23 11:26:56 +01004613 warning = server_parse_maxconn_change_request(sv, args[4]);
4614 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004615 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreaub8026272016-11-23 11:26:56 +01004616 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004617 appctx->st0 = CLI_ST_PRINT;
Willy Tarreaub8026272016-11-23 11:26:56 +01004618 }
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004619
4620 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4621
Willy Tarreaub8026272016-11-23 11:26:56 +01004622 return 1;
4623}
William Lallemand6b160942016-11-22 12:34:35 +01004624
Willy Tarreau46b7f532018-08-21 11:54:26 +02004625/* parse a "disable agent" command. It always returns 1.
4626 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004627 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004628 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004629static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004630{
4631 struct server *sv;
4632
4633 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4634 return 1;
4635
4636 sv = cli_find_server(appctx, args[2]);
4637 if (!sv)
4638 return 1;
4639
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004640 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004641 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004642 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004643 return 1;
4644}
4645
Willy Tarreau46b7f532018-08-21 11:54:26 +02004646/* parse a "disable health" command. It always returns 1.
4647 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004648 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004649 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004650static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004651{
4652 struct server *sv;
4653
4654 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4655 return 1;
4656
4657 sv = cli_find_server(appctx, args[2]);
4658 if (!sv)
4659 return 1;
4660
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004661 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004662 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004663 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004664 return 1;
4665}
4666
Willy Tarreau46b7f532018-08-21 11:54:26 +02004667/* parse a "disable server" command. It always returns 1.
4668 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004669 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004670 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004671static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004672{
4673 struct server *sv;
4674
4675 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4676 return 1;
4677
4678 sv = cli_find_server(appctx, args[2]);
4679 if (!sv)
4680 return 1;
4681
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004682 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004683 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004684 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004685 return 1;
4686}
4687
Willy Tarreau46b7f532018-08-21 11:54:26 +02004688/* parse a "enable agent" command. It always returns 1.
4689 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004690 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004691 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004692static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004693{
4694 struct server *sv;
4695
4696 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4697 return 1;
4698
4699 sv = cli_find_server(appctx, args[2]);
4700 if (!sv)
4701 return 1;
4702
4703 if (!(sv->agent.state & CHK_ST_CONFIGURED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004704 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004705 appctx->ctx.cli.msg = "Agent was not configured on this server, cannot enable.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004706 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004707 return 1;
4708 }
4709
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004710 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004711 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004712 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004713 return 1;
4714}
4715
Willy Tarreau46b7f532018-08-21 11:54:26 +02004716/* parse a "enable health" command. It always returns 1.
4717 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004718 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004719 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004720static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004721{
4722 struct server *sv;
4723
4724 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4725 return 1;
4726
4727 sv = cli_find_server(appctx, args[2]);
4728 if (!sv)
4729 return 1;
4730
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004731 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004732 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004733 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004734 return 1;
4735}
4736
Willy Tarreau46b7f532018-08-21 11:54:26 +02004737/* parse a "enable server" command. It always returns 1.
4738 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004739 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004740 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004741static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004742{
4743 struct server *sv;
4744
4745 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4746 return 1;
4747
4748 sv = cli_find_server(appctx, args[2]);
4749 if (!sv)
4750 return 1;
4751
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004752 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004753 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004754 if (!(sv->flags & SRV_F_COOKIESET)
4755 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4756 sv->cookie)
4757 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004758 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004759 return 1;
4760}
4761
William Lallemand222baf22016-11-19 02:00:33 +01004762/* register cli keywords */
4763static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004764 { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004765 { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004766 { { "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 +01004767 { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004768 { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004769 { { "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 +01004770 { { "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 +01004771 { { "set", "server", NULL }, "set server : change a server's state, weight or address", cli_parse_set_server },
William Lallemand6b160942016-11-22 12:34:35 +01004772 { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight },
4773 { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight },
4774
William Lallemand222baf22016-11-19 02:00:33 +01004775 {{},}
4776}};
4777
Willy Tarreau0108d902018-11-25 19:14:37 +01004778INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004779
Emeric Brun64cc49c2017-10-03 14:46:45 +02004780/*
4781 * This function applies server's status changes, it is
4782 * is designed to be called asynchronously.
4783 *
Willy Tarreau46b7f532018-08-21 11:54:26 +02004784 * Must be called with the server lock held.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004785 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004786static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004787{
4788 struct check *check = &s->check;
4789 int xferred;
4790 struct proxy *px = s->proxy;
4791 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4792 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4793 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004794 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004795
Emeric Brun64cc49c2017-10-03 14:46:45 +02004796 /* If currently main is not set we try to apply pending state changes */
4797 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4798 int next_admin;
4799
4800 /* Backup next admin */
4801 next_admin = s->next_admin;
4802
4803 /* restore current admin state */
4804 s->next_admin = s->cur_admin;
4805
4806 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4807 s->last_change = now.tv_sec;
4808 if (s->proxy->lbprm.set_server_status_down)
4809 s->proxy->lbprm.set_server_status_down(s);
4810
4811 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4812 srv_shutdown_streams(s, SF_ERR_DOWN);
4813
4814 /* we might have streams queued on this server and waiting for
4815 * a connection. Those which are redispatchable will be queued
4816 * to another server or to the proxy itself.
4817 */
4818 xferred = pendconn_redistribute(s);
4819
4820 tmptrash = alloc_trash_chunk();
4821 if (tmptrash) {
4822 chunk_printf(tmptrash,
4823 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4824 s->proxy->id, s->id);
4825
Emeric Brun5a133512017-10-19 14:42:30 +02004826 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004827 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004828
4829 /* we don't send an alert if the server was previously paused */
4830 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004831 send_log(s->proxy, log_level, "%s.\n",
4832 tmptrash->area);
4833 send_email_alert(s, log_level, "%s",
4834 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004835 free_trash_chunk(tmptrash);
4836 tmptrash = NULL;
4837 }
4838 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4839 set_backend_down(s->proxy);
4840
4841 s->counters.down_trans++;
4842 }
4843 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4844 s->last_change = now.tv_sec;
4845 if (s->proxy->lbprm.set_server_status_down)
4846 s->proxy->lbprm.set_server_status_down(s);
4847
4848 /* we might have streams queued on this server and waiting for
4849 * a connection. Those which are redispatchable will be queued
4850 * to another server or to the proxy itself.
4851 */
4852 xferred = pendconn_redistribute(s);
4853
4854 tmptrash = alloc_trash_chunk();
4855 if (tmptrash) {
4856 chunk_printf(tmptrash,
4857 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4858 s->proxy->id, s->id);
4859
Emeric Brun5a133512017-10-19 14:42:30 +02004860 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004861
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004862 ha_warning("%s.\n", tmptrash->area);
4863 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4864 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004865 free_trash_chunk(tmptrash);
4866 tmptrash = NULL;
4867 }
4868
4869 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4870 set_backend_down(s->proxy);
4871 }
4872 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4873 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4874 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4875 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4876 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4877 s->proxy->last_change = now.tv_sec;
4878 }
4879
4880 if (s->next_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
4881 s->down_time += now.tv_sec - s->last_change;
4882
4883 s->last_change = now.tv_sec;
4884 if (s->next_state == SRV_ST_STARTING)
4885 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4886
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004887 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004888 /* now propagate the status change to any LB algorithms */
4889 if (px->lbprm.update_server_eweight)
4890 px->lbprm.update_server_eweight(s);
4891 else if (srv_willbe_usable(s)) {
4892 if (px->lbprm.set_server_status_up)
4893 px->lbprm.set_server_status_up(s);
4894 }
4895 else {
4896 if (px->lbprm.set_server_status_down)
4897 px->lbprm.set_server_status_down(s);
4898 }
4899
4900 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4901 * and it's not a backup server and its effective weight is > 0,
4902 * then it can accept new connections, so we shut down all streams
4903 * on all backup servers.
4904 */
4905 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4906 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4907 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4908
4909 /* check if we can handle some connections queued at the proxy. We
4910 * will take as many as we can handle.
4911 */
4912 xferred = pendconn_grab_from_px(s);
4913
4914 tmptrash = alloc_trash_chunk();
4915 if (tmptrash) {
4916 chunk_printf(tmptrash,
4917 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
4918 s->proxy->id, s->id);
4919
Emeric Brun5a133512017-10-19 14:42:30 +02004920 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004921 ha_warning("%s.\n", tmptrash->area);
4922 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4923 tmptrash->area);
4924 send_email_alert(s, LOG_NOTICE, "%s",
4925 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004926 free_trash_chunk(tmptrash);
4927 tmptrash = NULL;
4928 }
4929
4930 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4931 set_backend_down(s->proxy);
4932 }
4933 else if (s->cur_eweight != s->next_eweight) {
4934 /* now propagate the status change to any LB algorithms */
4935 if (px->lbprm.update_server_eweight)
4936 px->lbprm.update_server_eweight(s);
4937 else if (srv_willbe_usable(s)) {
4938 if (px->lbprm.set_server_status_up)
4939 px->lbprm.set_server_status_up(s);
4940 }
4941 else {
4942 if (px->lbprm.set_server_status_down)
4943 px->lbprm.set_server_status_down(s);
4944 }
4945
4946 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4947 set_backend_down(s->proxy);
4948 }
4949
4950 s->next_admin = next_admin;
4951 }
4952
Emeric Brun5a133512017-10-19 14:42:30 +02004953 /* reset operational state change */
4954 *s->op_st_chg.reason = 0;
4955 s->op_st_chg.status = s->op_st_chg.code = -1;
4956 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004957
4958 /* Now we try to apply pending admin changes */
4959
4960 /* Maintenance must also disable health checks */
4961 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
4962 if (s->check.state & CHK_ST_ENABLED) {
4963 s->check.state |= CHK_ST_PAUSED;
4964 check->health = 0;
4965 }
4966
4967 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02004968 tmptrash = alloc_trash_chunk();
4969 if (tmptrash) {
4970 chunk_printf(tmptrash,
4971 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
4972 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4973 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02004974
Olivier Houchard796a2b32017-10-24 17:42:47 +02004975 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02004976
Olivier Houchard796a2b32017-10-24 17:42:47 +02004977 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004978 ha_warning("%s.\n", tmptrash->area);
4979 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4980 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02004981 }
4982 free_trash_chunk(tmptrash);
4983 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004984 }
Emeric Brun8f298292017-12-06 16:47:17 +01004985 /* commit new admin status */
4986
4987 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004988 }
4989 else { /* server was still running */
4990 check->health = 0; /* failure */
4991 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01004992
4993 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004994 if (s->proxy->lbprm.set_server_status_down)
4995 s->proxy->lbprm.set_server_status_down(s);
4996
Emeric Brun64cc49c2017-10-03 14:46:45 +02004997 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4998 srv_shutdown_streams(s, SF_ERR_DOWN);
4999
5000 /* we might have streams queued on this server and waiting for
5001 * a connection. Those which are redispatchable will be queued
5002 * to another server or to the proxy itself.
5003 */
5004 xferred = pendconn_redistribute(s);
5005
5006 tmptrash = alloc_trash_chunk();
5007 if (tmptrash) {
5008 chunk_printf(tmptrash,
5009 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
5010 s->flags & SRV_F_BACKUP ? "Backup " : "",
5011 s->proxy->id, s->id,
5012 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5013
5014 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
5015
5016 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005017 ha_warning("%s.\n", tmptrash->area);
5018 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
5019 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005020 }
5021 free_trash_chunk(tmptrash);
5022 tmptrash = NULL;
5023 }
5024 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5025 set_backend_down(s->proxy);
5026
5027 s->counters.down_trans++;
5028 }
5029 }
5030 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
5031 /* OK here we're leaving maintenance, we have many things to check,
5032 * because the server might possibly be coming back up depending on
5033 * its state. In practice, leaving maintenance means that we should
5034 * immediately turn to UP (more or less the slowstart) under the
5035 * following conditions :
5036 * - server is neither checked nor tracked
5037 * - server tracks another server which is not checked
5038 * - server tracks another server which is already up
5039 * Which sums up as something simpler :
5040 * "either the tracking server is up or the server's checks are disabled
5041 * or up". Otherwise we only re-enable health checks. There's a special
5042 * case associated to the stopping state which can be inherited. Note
5043 * that the server might still be in drain mode, which is naturally dealt
5044 * with by the lower level functions.
5045 */
5046
5047 if (s->check.state & CHK_ST_ENABLED) {
5048 s->check.state &= ~CHK_ST_PAUSED;
5049 check->health = check->rise; /* start OK but check immediately */
5050 }
5051
5052 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
5053 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
5054 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
5055 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
5056 s->next_state = SRV_ST_STOPPING;
5057 }
5058 else {
5059 s->next_state = SRV_ST_STARTING;
5060 if (s->slowstart > 0)
5061 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5062 else
5063 s->next_state = SRV_ST_RUNNING;
5064 }
5065
5066 }
5067
5068 tmptrash = alloc_trash_chunk();
5069 if (tmptrash) {
5070 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5071 chunk_printf(tmptrash,
5072 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
5073 s->flags & SRV_F_BACKUP ? "Backup " : "",
5074 s->proxy->id, s->id,
5075 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5076 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5077 }
5078 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5079 chunk_printf(tmptrash,
5080 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
5081 s->flags & SRV_F_BACKUP ? "Backup " : "",
5082 s->proxy->id, s->id, s->hostname,
5083 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5084 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5085 }
5086 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5087 chunk_printf(tmptrash,
5088 "%sServer %s/%s is %s/%s (leaving maintenance)",
5089 s->flags & SRV_F_BACKUP ? "Backup " : "",
5090 s->proxy->id, s->id,
5091 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5092 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5093 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005094 ha_warning("%s.\n", tmptrash->area);
5095 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5096 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005097 free_trash_chunk(tmptrash);
5098 tmptrash = NULL;
5099 }
5100
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005101 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005102 /* now propagate the status change to any LB algorithms */
5103 if (px->lbprm.update_server_eweight)
5104 px->lbprm.update_server_eweight(s);
5105 else if (srv_willbe_usable(s)) {
5106 if (px->lbprm.set_server_status_up)
5107 px->lbprm.set_server_status_up(s);
5108 }
5109 else {
5110 if (px->lbprm.set_server_status_down)
5111 px->lbprm.set_server_status_down(s);
5112 }
5113
5114 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5115 set_backend_down(s->proxy);
5116
Willy Tarreau6a78e612018-08-07 10:14:53 +02005117 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5118 * and it's not a backup server and its effective weight is > 0,
5119 * then it can accept new connections, so we shut down all streams
5120 * on all backup servers.
5121 */
5122 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5123 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5124 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5125
5126 /* check if we can handle some connections queued at the proxy. We
5127 * will take as many as we can handle.
5128 */
5129 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005130 }
5131 else if (s->next_admin & SRV_ADMF_MAINT) {
5132 /* remaining in maintenance mode, let's inform precisely about the
5133 * situation.
5134 */
5135 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5136 tmptrash = alloc_trash_chunk();
5137 if (tmptrash) {
5138 chunk_printf(tmptrash,
5139 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5140 s->flags & SRV_F_BACKUP ? "Backup " : "",
5141 s->proxy->id, s->id);
5142
5143 if (s->track) /* normally it's mandatory here */
5144 chunk_appendf(tmptrash, " via %s/%s",
5145 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005146 ha_warning("%s.\n", tmptrash->area);
5147 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5148 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005149 free_trash_chunk(tmptrash);
5150 tmptrash = NULL;
5151 }
5152 }
5153 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5154 tmptrash = alloc_trash_chunk();
5155 if (tmptrash) {
5156 chunk_printf(tmptrash,
5157 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5158 s->flags & SRV_F_BACKUP ? "Backup " : "",
5159 s->proxy->id, s->id, s->hostname);
5160
5161 if (s->track) /* normally it's mandatory here */
5162 chunk_appendf(tmptrash, " via %s/%s",
5163 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005164 ha_warning("%s.\n", tmptrash->area);
5165 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5166 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005167 free_trash_chunk(tmptrash);
5168 tmptrash = NULL;
5169 }
5170 }
5171 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5172 tmptrash = alloc_trash_chunk();
5173 if (tmptrash) {
5174 chunk_printf(tmptrash,
5175 "%sServer %s/%s remains in forced maintenance",
5176 s->flags & SRV_F_BACKUP ? "Backup " : "",
5177 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005178 ha_warning("%s.\n", tmptrash->area);
5179 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5180 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005181 free_trash_chunk(tmptrash);
5182 tmptrash = NULL;
5183 }
5184 }
5185 /* don't report anything when leaving drain mode and remaining in maintenance */
5186
5187 s->cur_admin = s->next_admin;
5188 }
5189
5190 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5191 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5192 /* drain state is applied only if not yet in maint */
5193
5194 s->last_change = now.tv_sec;
5195 if (px->lbprm.set_server_status_down)
5196 px->lbprm.set_server_status_down(s);
5197
5198 /* we might have streams queued on this server and waiting for
5199 * a connection. Those which are redispatchable will be queued
5200 * to another server or to the proxy itself.
5201 */
5202 xferred = pendconn_redistribute(s);
5203
5204 tmptrash = alloc_trash_chunk();
5205 if (tmptrash) {
5206 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5207 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5208 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5209
5210 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5211
5212 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005213 ha_warning("%s.\n", tmptrash->area);
5214 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5215 tmptrash->area);
5216 send_email_alert(s, LOG_NOTICE, "%s",
5217 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005218 }
5219 free_trash_chunk(tmptrash);
5220 tmptrash = NULL;
5221 }
5222
5223 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5224 set_backend_down(s->proxy);
5225 }
5226 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5227 /* OK completely leaving drain mode */
5228 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5229 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5230 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5231 s->proxy->last_change = now.tv_sec;
5232 }
5233
5234 if (s->last_change < now.tv_sec) // ignore negative times
5235 s->down_time += now.tv_sec - s->last_change;
5236 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005237 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005238
5239 tmptrash = alloc_trash_chunk();
5240 if (tmptrash) {
5241 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5242 chunk_printf(tmptrash,
5243 "%sServer %s/%s is %s (leaving forced drain)",
5244 s->flags & SRV_F_BACKUP ? "Backup " : "",
5245 s->proxy->id, s->id,
5246 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5247 }
5248 else {
5249 chunk_printf(tmptrash,
5250 "%sServer %s/%s is %s (leaving drain)",
5251 s->flags & SRV_F_BACKUP ? "Backup " : "",
5252 s->proxy->id, s->id,
5253 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5254 if (s->track) /* normally it's mandatory here */
5255 chunk_appendf(tmptrash, " via %s/%s",
5256 s->track->proxy->id, s->track->id);
5257 }
5258
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005259 ha_warning("%s.\n", tmptrash->area);
5260 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5261 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005262 free_trash_chunk(tmptrash);
5263 tmptrash = NULL;
5264 }
5265
5266 /* now propagate the status change to any LB algorithms */
5267 if (px->lbprm.update_server_eweight)
5268 px->lbprm.update_server_eweight(s);
5269 else if (srv_willbe_usable(s)) {
5270 if (px->lbprm.set_server_status_up)
5271 px->lbprm.set_server_status_up(s);
5272 }
5273 else {
5274 if (px->lbprm.set_server_status_down)
5275 px->lbprm.set_server_status_down(s);
5276 }
5277 }
5278 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5279 /* remaining in drain mode after removing one of its flags */
5280
5281 tmptrash = alloc_trash_chunk();
5282 if (tmptrash) {
5283 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5284 chunk_printf(tmptrash,
5285 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5286 s->flags & SRV_F_BACKUP ? "Backup " : "",
5287 s->proxy->id, s->id);
5288
5289 if (s->track) /* normally it's mandatory here */
5290 chunk_appendf(tmptrash, " via %s/%s",
5291 s->track->proxy->id, s->track->id);
5292 }
5293 else {
5294 chunk_printf(tmptrash,
5295 "%sServer %s/%s remains in forced drain mode",
5296 s->flags & SRV_F_BACKUP ? "Backup " : "",
5297 s->proxy->id, s->id);
5298 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005299 ha_warning("%s.\n", tmptrash->area);
5300 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5301 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005302 free_trash_chunk(tmptrash);
5303 tmptrash = NULL;
5304 }
5305
5306 /* commit new admin status */
5307
5308 s->cur_admin = s->next_admin;
5309 }
5310 }
5311
5312 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005313 *s->adm_st_chg_cause = 0;
5314}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005315
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005316static struct task *cleanup_idle_connections(struct task *task, void *context, unsigned short state)
5317{
5318 struct server *srv = context;
5319 struct connection *conn, *conn_back;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005320 unsigned int to_destroy = srv->curr_idle_conns / 2 + (srv->curr_idle_conns & 1);
5321 unsigned int i = 0;
5322
5323
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005324
5325 list_for_each_entry_safe(conn, conn_back, &srv->idle_orphan_conns[tid], list) {
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005326 if (i == to_destroy)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005327 break;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005328 conn->mux->destroy(conn);
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005329 i++;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005330 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005331 if (!LIST_ISEMPTY(&srv->idle_orphan_conns[tid]))
5332 task_schedule(task, tick_add(now_ms, srv->pool_purge_delay));
5333 else
5334 task->expire = TICK_ETERNITY;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005335 return task;
5336}
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005337/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005338 * Local variables:
5339 * c-indent-level: 8
5340 * c-basic-offset: 8
5341 * End:
5342 */