blob: d4c48fb682aba41bc075a674a3b1c25561cb4136 [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;
Olivier Houchard21944012018-12-21 19:42:01 +01001615 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01001616 srv->check.alpn_str = src->check.alpn_str;
1617 srv->check.alpn_len = srv->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001618 /* Note: 'flags' field has potentially been already initialized. */
1619 srv->flags |= src->flags;
1620 srv->do_check = src->do_check;
1621 srv->do_agent = src->do_agent;
1622 if (srv->check.port)
1623 srv->flags |= SRV_F_CHECKPORT;
1624 srv->check.inter = src->check.inter;
1625 srv->check.fastinter = src->check.fastinter;
1626 srv->check.downinter = src->check.downinter;
1627 srv->agent.use_ssl = src->agent.use_ssl;
1628 srv->agent.port = src->agent.port;
1629 if (src->agent.send_string != NULL)
1630 srv->agent.send_string = strdup(src->agent.send_string);
1631 srv->agent.send_string_len = src->agent.send_string_len;
1632 srv->agent.inter = src->agent.inter;
1633 srv->agent.fastinter = src->agent.fastinter;
1634 srv->agent.downinter = src->agent.downinter;
1635 srv->maxqueue = src->maxqueue;
1636 srv->minconn = src->minconn;
1637 srv->maxconn = src->maxconn;
1638 srv->slowstart = src->slowstart;
1639 srv->observe = src->observe;
1640 srv->onerror = src->onerror;
1641 srv->onmarkeddown = src->onmarkeddown;
1642 srv->onmarkedup = src->onmarkedup;
1643 if (src->trackit != NULL)
1644 srv->trackit = strdup(src->trackit);
1645 srv->consecutive_errors_limit = src->consecutive_errors_limit;
1646 srv->uweight = srv->iweight = src->iweight;
1647
1648 srv->check.send_proxy = src->check.send_proxy;
1649 /* health: up, but will fall down at first failure */
1650 srv->check.rise = srv->check.health = src->check.rise;
1651 srv->check.fall = src->check.fall;
1652
1653 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001654 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
1655 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
1656 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001657 srv->check.state |= CHK_ST_PAUSED;
1658 srv->check.health = 0;
1659 }
1660
1661 /* health: up but will fall down at first failure */
1662 srv->agent.rise = srv->agent.health = src->agent.rise;
1663 srv->agent.fall = src->agent.fall;
1664
1665 if (src->resolvers_id != NULL)
1666 srv->resolvers_id = strdup(src->resolvers_id);
1667 srv->dns_opts.family_prio = src->dns_opts.family_prio;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001668 srv->dns_opts.accept_duplicate_ip = src->dns_opts.accept_duplicate_ip;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001669 if (srv->dns_opts.family_prio == AF_UNSPEC)
1670 srv->dns_opts.family_prio = AF_INET6;
1671 memcpy(srv->dns_opts.pref_net,
1672 src->dns_opts.pref_net,
1673 sizeof srv->dns_opts.pref_net);
1674 srv->dns_opts.pref_net_nb = src->dns_opts.pref_net_nb;
1675
1676 srv->init_addr_methods = src->init_addr_methods;
1677 srv->init_addr = src->init_addr;
1678#if defined(USE_OPENSSL)
1679 srv_ssl_settings_cpy(srv, src);
1680#endif
1681#ifdef TCP_USER_TIMEOUT
1682 srv->tcp_ut = src->tcp_ut;
1683#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001684 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001685 srv->pool_purge_delay = src->pool_purge_delay;
Olivier Houchard006e3102018-12-10 18:30:32 +01001686 srv->max_idle_conns = src->max_idle_conns;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001687
Olivier Houchard8da5f982017-08-04 18:35:36 +02001688 if (srv_tmpl)
1689 srv->srvrq = src->srvrq;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001690}
1691
William Lallemand313bfd12018-10-26 14:47:32 +02001692struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001693{
1694 struct server *srv;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001695 int i;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001696
1697 srv = calloc(1, sizeof *srv);
1698 if (!srv)
1699 return NULL;
1700
1701 srv->obj_type = OBJ_TYPE_SERVER;
1702 srv->proxy = proxy;
1703 LIST_INIT(&srv->actconns);
Patrick Hemmer0355dab2018-05-11 12:52:31 -04001704 srv->pendconns = EB_ROOT;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001705
1706 if ((srv->priv_conns = calloc(global.nbthread, sizeof(*srv->priv_conns))) == NULL)
1707 goto free_srv;
1708 if ((srv->idle_conns = calloc(global.nbthread, sizeof(*srv->idle_conns))) == NULL)
1709 goto free_priv_conns;
1710 if ((srv->safe_conns = calloc(global.nbthread, sizeof(*srv->safe_conns))) == NULL)
1711 goto free_idle_conns;
1712
1713 for (i = 0; i < global.nbthread; i++) {
1714 LIST_INIT(&srv->priv_conns[i]);
1715 LIST_INIT(&srv->idle_conns[i]);
1716 LIST_INIT(&srv->safe_conns[i]);
1717 }
1718
Emeric Brun52a91d32017-08-31 14:41:55 +02001719 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001720 srv->last_change = now.tv_sec;
1721
1722 srv->check.status = HCHK_STATUS_INI;
1723 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01001724 srv->check.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001725 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
1726
1727 srv->agent.status = HCHK_STATUS_INI;
1728 srv->agent.server = srv;
1729 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
1730
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001731 srv->pool_purge_delay = 1000;
Olivier Houchard006e3102018-12-10 18:30:32 +01001732 srv->max_idle_conns = -1;
1733
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001734 return srv;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001735
1736 free_idle_conns:
1737 free(srv->idle_conns);
1738 free_priv_conns:
1739 free(srv->priv_conns);
1740 free_srv:
1741 free(srv);
1742 return NULL;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001743}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001744
1745/*
1746 * Validate <srv> server health-check settings.
1747 * Returns 0 if everything is OK, -1 if not.
1748 */
1749static int server_healthcheck_validate(const char *file, int linenum, struct server *srv)
1750{
1751 struct tcpcheck_rule *r = NULL;
1752 struct list *l;
1753
1754 /*
1755 * We need at least a service port, a check port or the first tcp-check rule must
1756 * be a 'connect' one when checking an IPv4/IPv6 server.
1757 */
1758 if ((srv_check_healthcheck_port(&srv->check) != 0) ||
1759 (!is_inet_addr(&srv->check.addr) && (is_addr(&srv->check.addr) || !is_inet_addr(&srv->addr))))
1760 return 0;
1761
1762 r = (struct tcpcheck_rule *)srv->proxy->tcpcheck_rules.n;
1763 if (!r) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001764 ha_alert("parsing [%s:%d] : server %s has neither service port nor check port. "
1765 "Check has been disabled.\n",
1766 file, linenum, srv->id);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001767 return -1;
1768 }
1769
1770 /* search the first action (connect / send / expect) in the list */
1771 l = &srv->proxy->tcpcheck_rules;
1772 list_for_each_entry(r, l, list) {
1773 if (r->action != TCPCHK_ACT_COMMENT)
1774 break;
1775 }
1776
1777 if ((r->action != TCPCHK_ACT_CONNECT) || !r->port) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001778 ha_alert("parsing [%s:%d] : server %s has neither service port nor check port "
1779 "nor tcp_check rule 'connect' with port information. Check has been disabled.\n",
1780 file, linenum, srv->id);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001781 return -1;
1782 }
1783
1784 /* scan the tcp-check ruleset to ensure a port has been configured */
1785 l = &srv->proxy->tcpcheck_rules;
1786 list_for_each_entry(r, l, list) {
1787 if ((r->action == TCPCHK_ACT_CONNECT) && (!r->port)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001788 ha_alert("parsing [%s:%d] : server %s has neither service port nor check port, "
1789 "and a tcp_check rule 'connect' with no port information. Check has been disabled.\n",
1790 file, linenum, srv->id);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001791 return -1;
1792 }
1793 }
1794
1795 return 0;
1796}
1797
1798/*
1799 * Initialize <srv> health-check structure.
1800 * Returns the error string in case of memory allocation failure, NULL if not.
1801 */
1802static const char *do_health_check_init(struct server *srv, int check_type, int state)
1803{
1804 const char *ret;
1805
1806 if (!srv->do_check)
1807 return NULL;
1808
1809 ret = init_check(&srv->check, check_type);
1810 if (ret)
1811 return ret;
1812
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001813 srv->check.state |= state;
1814 global.maxsock++;
1815
1816 return NULL;
1817}
1818
1819static int server_health_check_init(const char *file, int linenum,
1820 struct server *srv, struct proxy *curproxy)
1821{
1822 const char *ret;
1823
1824 if (!srv->do_check)
1825 return 0;
1826
1827 if (srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001828 ha_alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1829 file, linenum);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001830 return ERR_ALERT | ERR_FATAL;
1831 }
1832
1833 if (server_healthcheck_validate(file, linenum, srv) < 0)
1834 return ERR_ALERT | ERR_ABORT;
1835
1836 /* note: check type will be set during the config review phase */
1837 ret = do_health_check_init(srv, 0, CHK_ST_CONFIGURED | CHK_ST_ENABLED);
1838 if (ret) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001839 ha_alert("parsing [%s:%d] : %s.\n", file, linenum, ret);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001840 return ERR_ALERT | ERR_ABORT;
1841 }
1842
1843 return 0;
1844}
1845
1846/*
1847 * Initialize <srv> agent check structure.
1848 * Returns the error string in case of memory allocation failure, NULL if not.
1849 */
1850static const char *do_server_agent_check_init(struct server *srv, int state)
1851{
1852 const char *ret;
1853
1854 if (!srv->do_agent)
1855 return NULL;
1856
1857 ret = init_check(&srv->agent, PR_O2_LB_AGENT_CHK);
1858 if (ret)
1859 return ret;
1860
1861 if (!srv->agent.inter)
1862 srv->agent.inter = srv->check.inter;
1863
1864 srv->agent.state |= state;
1865 global.maxsock++;
1866
1867 return NULL;
1868}
1869
1870static int server_agent_check_init(const char *file, int linenum,
1871 struct server *srv, struct proxy *curproxy)
1872{
1873 const char *ret;
1874
1875 if (!srv->do_agent)
1876 return 0;
1877
1878 if (!srv->agent.port) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001879 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 +02001880 file, linenum, srv->id);
1881 return ERR_ALERT | ERR_FATAL;
1882 }
1883
1884 ret = do_server_agent_check_init(srv, CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_AGENT);
1885 if (ret) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001886 ha_alert("parsing [%s:%d] : %s.\n", file, linenum, ret);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001887 return ERR_ALERT | ERR_ABORT;
1888 }
1889
1890 return 0;
1891}
1892
1893#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1894static int server_sni_expr_init(const char *file, int linenum, char **args, int cur_arg,
1895 struct server *srv, struct proxy *proxy)
1896{
1897 int ret;
1898 char *err = NULL;
1899
1900 if (!srv->sni_expr)
1901 return 0;
1902
1903 ret = server_parse_sni_expr(srv, proxy, &err);
1904 if (!ret)
1905 return 0;
1906
1907 display_parser_err(file, linenum, args, cur_arg, &err);
1908 free(err);
1909
1910 return ret;
1911}
1912#endif
1913
1914/*
1915 * Server initializations finalization.
1916 * Initialize health check, agent check and SNI expression if enabled.
1917 * Must not be called for a default server instance.
1918 */
1919static int server_finalize_init(const char *file, int linenum, char **args, int cur_arg,
1920 struct server *srv, struct proxy *px)
1921{
1922 int ret;
1923
1924 if ((ret = server_health_check_init(file, linenum, srv, px)) != 0 ||
1925 (ret = server_agent_check_init(file, linenum, srv, px)) != 0) {
1926 return ret;
1927 }
1928
1929#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1930 if ((ret = server_sni_expr_init(file, linenum, args, cur_arg, srv, px)) != 0)
1931 return ret;
1932#endif
1933
1934 if (srv->flags & SRV_F_BACKUP)
1935 px->srv_bck++;
1936 else
1937 px->srv_act++;
1938 srv_lb_commit_status(srv);
1939
Daniel Corbett43bb8422019-01-09 08:13:29 -05001940 if (srv->max_idle_conns != 0) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001941 int i;
1942
1943 srv->idle_orphan_conns = calloc(global.nbthread, sizeof(*srv->idle_orphan_conns));
1944 if (!srv->idle_orphan_conns)
1945 goto err;
1946 srv->idle_task = calloc(global.nbthread, sizeof(*srv->idle_task));
1947 if (!srv->idle_task)
1948 goto err;
1949 for (i = 0; i < global.nbthread; i++) {
1950 LIST_INIT(&srv->idle_orphan_conns[i]);
1951 srv->idle_task[i] = task_new(1 << i);
1952 if (!srv->idle_task[i])
1953 goto err;
1954 srv->idle_task[i]->process = cleanup_idle_connections;
1955 srv->idle_task[i]->context = srv;
1956 }
1957 }
1958
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001959 return 0;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01001960err:
1961 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001962}
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001963
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001964/*
1965 * Parse as much as possible such a range string argument: low[-high]
1966 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
1967 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
1968 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
1969 * Returns 0 if succeeded, -1 if not.
1970 */
1971static int srv_tmpl_parse_range(struct server *srv, const char *arg, int *nb_low, int *nb_high)
1972{
1973 char *nb_high_arg;
1974
1975 *nb_high = 0;
1976 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001977 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001978
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001979 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001980 *nb_high_arg++ = '\0';
1981 *nb_high = atoi(nb_high_arg);
1982 }
1983 else {
1984 *nb_high += *nb_low;
1985 *nb_low = 1;
1986 }
1987
1988 if (*nb_low < 0 || *nb_high < *nb_low)
1989 return -1;
1990
1991 return 0;
1992}
1993
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001994static inline void srv_set_id_from_prefix(struct server *srv, const char *prefix, int nb)
1995{
1996 chunk_printf(&trash, "%s%d", prefix, nb);
1997 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001998 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001999}
2000
2001/*
2002 * Initialize as much as possible servers from <srv> server template.
2003 * Note that a server template is a special server with
2004 * a few different parameters than a server which has
2005 * been parsed mostly the same way as a server.
Joseph Herlant44466822018-11-15 08:57:51 -08002006 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002007 * 'srv' template included.
2008 */
2009static int server_template_init(struct server *srv, struct proxy *px)
2010{
2011 int i;
2012 struct server *newsrv;
2013
2014 for (i = srv->tmpl_info.nb_low + 1; i <= srv->tmpl_info.nb_high; i++) {
2015 int check_init_state;
2016 int agent_init_state;
2017
2018 newsrv = new_server(px);
2019 if (!newsrv)
2020 goto err;
2021
2022 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002023 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002024#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
2025 if (newsrv->sni_expr) {
2026 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
2027 if (!newsrv->ssl_ctx.sni)
2028 goto err;
2029 }
2030#endif
2031 /* Set this new server ID. */
2032 srv_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
2033
2034 /* Initial checks states. */
2035 check_init_state = CHK_ST_CONFIGURED | CHK_ST_ENABLED;
2036 agent_init_state = CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_AGENT;
2037
2038 if (do_health_check_init(newsrv, px->options2 & PR_O2_CHK_ANY, check_init_state) ||
2039 do_server_agent_check_init(newsrv, agent_init_state))
2040 goto err;
2041
2042 /* Linked backwards first. This will be restablished after parsing. */
2043 newsrv->next = px->srv;
2044 px->srv = newsrv;
Olivier Houchard006e3102018-12-10 18:30:32 +01002045 if (newsrv->max_idle_conns != 0) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01002046 int i;
2047
2048 newsrv->idle_orphan_conns = calloc(global.nbthread, sizeof(*newsrv->idle_orphan_conns));
2049 if (!newsrv->idle_orphan_conns)
2050 goto err;
2051 newsrv->idle_task = calloc(global.nbthread, sizeof(*newsrv->idle_task));
2052 if (!newsrv->idle_task)
2053 goto err;
2054 for (i = 0; i < global.nbthread; i++) {
2055 LIST_INIT(&newsrv->idle_orphan_conns[i]);
2056 newsrv->idle_task[i] = task_new(1 << i);
2057 if (!newsrv->idle_task[i])
2058 goto err;
2059 newsrv->idle_task[i]->process = cleanup_idle_connections;
2060 newsrv->idle_task[i]->context = newsrv;
2061 }
2062 }
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002063 }
2064 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
2065
2066 return i - srv->tmpl_info.nb_low;
2067
2068 err:
2069 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
2070 if (newsrv) {
2071#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
2072 release_sample_expr(newsrv->ssl_ctx.sni);
2073#endif
2074 free_check(&newsrv->agent);
2075 free_check(&newsrv->check);
2076 }
2077 free(newsrv);
2078 return i - srv->tmpl_info.nb_low;
2079}
2080
Willy Tarreau272adea2014-03-31 10:39:59 +02002081int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy, struct proxy *defproxy)
2082{
2083 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002084 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002085 char *errmsg = NULL;
2086 int err_code = 0;
2087 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +02002088 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002089
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002090 if (!strcmp(args[0], "server") ||
2091 !strcmp(args[0], "default-server") ||
2092 !strcmp(args[0], "server-template")) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002093 int cur_arg;
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01002094 int defsrv = (*args[0] == 'd');
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002095 int srv = !defsrv && !strcmp(args[0], "server");
2096 int srv_tmpl = !defsrv && !srv;
2097 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002098
2099 if (!defsrv && curproxy == defproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002100 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002101 err_code |= ERR_ALERT | ERR_FATAL;
2102 goto out;
2103 }
2104 else if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL))
Olivier Houchard306e6532018-07-24 16:48:59 +02002105 err_code |= ERR_WARN;
Willy Tarreau272adea2014-03-31 10:39:59 +02002106
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002107 /* There is no mandatory first arguments for default server. */
2108 if (srv) {
2109 if (!*args[2]) {
2110 /* 'server' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002111 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002112 file, linenum, args[0]);
2113 err_code |= ERR_ALERT | ERR_FATAL;
2114 goto out;
2115 }
2116
2117 err = invalid_char(args[1]);
2118 }
2119 else if (srv_tmpl) {
2120 if (!*args[3]) {
2121 /* 'server-template' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002122 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 +02002123 file, linenum, args[0]);
2124 err_code |= ERR_ALERT | ERR_FATAL;
2125 goto out;
2126 }
2127
2128 err = invalid_prefix_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002129 }
2130
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002131 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002132 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 +02002133 file, linenum, *err, args[0], srv ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002134 err_code |= ERR_ALERT | ERR_FATAL;
2135 goto out;
2136 }
2137
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002138 cur_arg = 2;
2139 if (srv_tmpl) {
2140 /* Parse server-template <nb | range> arg. */
2141 if (srv_tmpl_parse_range(newsrv, args[cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002142 ha_alert("parsing [%s:%d] : Wrong %s number or range arg '%s'.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002143 file, linenum, args[0], args[cur_arg]);
2144 err_code |= ERR_ALERT | ERR_FATAL;
2145 goto out;
2146 }
2147 cur_arg++;
2148 }
2149
Willy Tarreau272adea2014-03-31 10:39:59 +02002150 if (!defsrv) {
2151 struct sockaddr_storage *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002152 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002153 struct protocol *proto;
2154
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002155 newsrv = new_server(curproxy);
2156 if (!newsrv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002157 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Willy Tarreau272adea2014-03-31 10:39:59 +02002158 err_code |= ERR_ALERT | ERR_ABORT;
2159 goto out;
2160 }
2161
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002162 if (srv_tmpl) {
2163 newsrv->tmpl_info.nb_low = tmpl_range_low;
2164 newsrv->tmpl_info.nb_high = tmpl_range_high;
2165 }
2166
Willy Tarreau272adea2014-03-31 10:39:59 +02002167 /* the servers are linked backwards first */
2168 newsrv->next = curproxy->srv;
2169 curproxy->srv = newsrv;
Willy Tarreau272adea2014-03-31 10:39:59 +02002170 newsrv->conf.file = strdup(file);
2171 newsrv->conf.line = linenum;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002172 /* Note: for a server template, its id is its prefix.
2173 * This is a temporary id which will be used for server allocations to come
2174 * after parsing.
2175 */
2176 if (srv)
2177 newsrv->id = strdup(args[1]);
2178 else
2179 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002180
2181 /* several ways to check the port component :
2182 * - IP => port=+0, relative (IPv4 only)
2183 * - IP: => port=+0, relative
2184 * - IP:N => port=N, absolute
2185 * - IP:+N => port=+N, relative
2186 * - IP:-N => port=-N, relative
2187 */
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002188 sk = str2sa_range(args[cur_arg], &port, &port1, &port2, &errmsg, NULL, &fqdn, 0);
Willy Tarreau272adea2014-03-31 10:39:59 +02002189 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002190 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau272adea2014-03-31 10:39:59 +02002191 err_code |= ERR_ALERT | ERR_FATAL;
2192 goto out;
2193 }
2194
2195 proto = protocol_by_family(sk->ss_family);
Willy Tarreau9698f4b2017-01-06 18:42:57 +01002196 if (!fqdn && (!proto || !proto->connect)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002197 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002198 file, linenum, args[0], args[1]);
2199 err_code |= ERR_ALERT | ERR_FATAL;
2200 goto out;
2201 }
2202
2203 if (!port1 || !port2) {
2204 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +02002205 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +02002206 }
2207 else if (port1 != port2) {
2208 /* port range */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002209 ha_alert("parsing [%s:%d] : '%s %s' : port ranges are not allowed in '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002210 file, linenum, args[0], args[1], args[2]);
2211 err_code |= ERR_ALERT | ERR_FATAL;
2212 goto out;
2213 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002214
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002215 /* save hostname and create associated name resolution */
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002216 if (fqdn) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002217 if (fqdn[0] == '_') { /* SRV record */
Olivier Houchard8da5f982017-08-04 18:35:36 +02002218 /* Check if a SRV request already exists, and if not, create it */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002219 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2220 newsrv->srvrq = new_dns_srvrq(newsrv, fqdn);
2221 if (newsrv->srvrq == NULL) {
Olivier Houchard8da5f982017-08-04 18:35:36 +02002222 err_code |= ERR_ALERT | ERR_FATAL;
2223 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002224 }
2225 }
2226 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002227 ha_alert("parsing [%s:%d] : Can't create DNS resolution for server '%s'\n",
Christopher Faulet67957bd2017-09-27 11:00:59 +02002228 file, linenum, newsrv->id);
2229 err_code |= ERR_ALERT | ERR_FATAL;
2230 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002231 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002232 }
2233
Willy Tarreau272adea2014-03-31 10:39:59 +02002234 newsrv->addr = *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002235 newsrv->svc_port = port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002236
Olivier Houchard8da5f982017-08-04 18:35:36 +02002237 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002238 ha_alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002239 file, linenum, newsrv->addr.ss_family, args[cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002240 err_code |= ERR_ALERT | ERR_FATAL;
2241 goto out;
2242 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002243
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002244 /* Copy default server settings to new server settings. */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002245 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002246 HA_SPIN_INIT(&newsrv->lock);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002247 cur_arg++;
Willy Tarreau272adea2014-03-31 10:39:59 +02002248 } else {
2249 newsrv = &curproxy->defsrv;
2250 cur_arg = 1;
Thierry Fournierada34842016-02-17 21:25:09 +01002251 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002252 newsrv->dns_opts.accept_duplicate_ip = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002253 }
2254
2255 while (*args[cur_arg]) {
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01002256 if (!strcmp(args[cur_arg], "agent-inter")) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002257 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2258 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002259 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'agent-inter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002260 file, linenum, *err, newsrv->id);
2261 err_code |= ERR_ALERT | ERR_FATAL;
2262 goto out;
2263 }
2264 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002265 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002266 file, linenum, val, args[cur_arg], newsrv->id);
2267 err_code |= ERR_ALERT | ERR_FATAL;
2268 goto out;
2269 }
2270 newsrv->agent.inter = val;
2271 cur_arg += 2;
2272 }
Misiekea849332017-01-09 09:39:51 +01002273 else if (!strcmp(args[cur_arg], "agent-addr")) {
2274 if(str2ip(args[cur_arg + 1], &newsrv->agent.addr) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002275 ha_alert("parsing agent-addr failed. Check if %s is correct address.\n", args[cur_arg + 1]);
Misiekea849332017-01-09 09:39:51 +01002276 goto out;
2277 }
2278
2279 cur_arg += 2;
2280 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002281 else if (!strcmp(args[cur_arg], "agent-port")) {
2282 global.maxsock++;
2283 newsrv->agent.port = atol(args[cur_arg + 1]);
2284 cur_arg += 2;
2285 }
James Brown55f9ff12015-10-21 18:19:05 -07002286 else if (!strcmp(args[cur_arg], "agent-send")) {
2287 global.maxsock++;
2288 free(newsrv->agent.send_string);
2289 newsrv->agent.send_string_len = strlen(args[cur_arg + 1]);
2290 newsrv->agent.send_string = calloc(1, newsrv->agent.send_string_len + 1);
2291 memcpy(newsrv->agent.send_string, args[cur_arg + 1], newsrv->agent.send_string_len);
2292 cur_arg += 2;
2293 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002294 else if (!strcmp(args[cur_arg], "init-addr")) {
2295 char *p, *end;
2296 int done;
Willy Tarreau4310d362016-11-02 15:05:56 +01002297 struct sockaddr_storage sa;
Baptiste Assmann25938272016-09-21 20:26:16 +02002298
2299 newsrv->init_addr_methods = 0;
2300 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
2301
2302 for (p = args[cur_arg + 1]; *p; p = end) {
2303 /* cut on next comma */
2304 for (end = p; *end && *end != ','; end++);
2305 if (*end)
2306 *(end++) = 0;
2307
Willy Tarreau4310d362016-11-02 15:05:56 +01002308 memset(&sa, 0, sizeof(sa));
Baptiste Assmann25938272016-09-21 20:26:16 +02002309 if (!strcmp(p, "libc")) {
2310 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
2311 }
2312 else if (!strcmp(p, "last")) {
2313 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
2314 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01002315 else if (!strcmp(p, "none")) {
2316 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
2317 }
Willy Tarreau4310d362016-11-02 15:05:56 +01002318 else if (str2ip2(p, &sa, 0)) {
2319 if (is_addr(&newsrv->init_addr)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002320 ha_alert("parsing [%s:%d]: '%s' : initial address already specified, cannot add '%s'.\n",
Willy Tarreau4310d362016-11-02 15:05:56 +01002321 file, linenum, args[cur_arg], p);
2322 err_code |= ERR_ALERT | ERR_FATAL;
2323 goto out;
2324 }
2325 newsrv->init_addr = sa;
2326 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
2327 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002328 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002329 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 +02002330 file, linenum, args[cur_arg], p);
2331 err_code |= ERR_ALERT | ERR_FATAL;
2332 goto out;
2333 }
2334 if (!done) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002335 ha_alert("parsing [%s:%d]: '%s' : too many init-addr methods when trying to add '%s'\n",
Baptiste Assmann25938272016-09-21 20:26:16 +02002336 file, linenum, args[cur_arg], p);
2337 err_code |= ERR_ALERT | ERR_FATAL;
2338 goto out;
2339 }
2340 }
2341 cur_arg += 2;
2342 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002343 else if (!strcmp(args[cur_arg], "resolvers")) {
Frédéric Lécailledaa2fe62017-04-20 12:17:50 +02002344 free(newsrv->resolvers_id);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002345 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
2346 cur_arg += 2;
2347 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002348 else if (!strcmp(args[cur_arg], "resolve-opts")) {
2349 char *p, *end;
2350
2351 for (p = args[cur_arg + 1]; *p; p = end) {
2352 /* cut on next comma */
2353 for (end = p; *end && *end != ','; end++);
2354 if (*end)
2355 *(end++) = 0;
2356
2357 if (!strcmp(p, "allow-dup-ip")) {
2358 newsrv->dns_opts.accept_duplicate_ip = 1;
2359 }
2360 else if (!strcmp(p, "prevent-dup-ip")) {
2361 newsrv->dns_opts.accept_duplicate_ip = 0;
2362 }
2363 else {
2364 ha_alert("parsing [%s:%d]: '%s' : unknown resolve-opts option '%s', supported methods are 'allow-dup-ip' and 'prevent-dup-ip'.\n",
2365 file, linenum, args[cur_arg], p);
2366 err_code |= ERR_ALERT | ERR_FATAL;
2367 goto out;
2368 }
2369 }
2370
2371 cur_arg += 2;
2372 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002373 else if (!strcmp(args[cur_arg], "resolve-prefer")) {
2374 if (!strcmp(args[cur_arg + 1], "ipv4"))
Thierry Fournierada34842016-02-17 21:25:09 +01002375 newsrv->dns_opts.family_prio = AF_INET;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002376 else if (!strcmp(args[cur_arg + 1], "ipv6"))
Thierry Fournierada34842016-02-17 21:25:09 +01002377 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002378 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002379 ha_alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002380 file, linenum, args[cur_arg]);
2381 err_code |= ERR_ALERT | ERR_FATAL;
2382 goto out;
2383 }
2384 cur_arg += 2;
2385 }
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002386 else if (!strcmp(args[cur_arg], "resolve-net")) {
2387 char *p, *e;
2388 unsigned char mask;
2389 struct dns_options *opt;
2390
2391 if (!args[cur_arg + 1] || args[cur_arg + 1][0] == '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002392 ha_alert("parsing [%s:%d]: '%s' expects a list of networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002393 file, linenum, args[cur_arg]);
2394 err_code |= ERR_ALERT | ERR_FATAL;
2395 goto out;
2396 }
2397
2398 opt = &newsrv->dns_opts;
2399
2400 /* Split arguments by comma, and convert it from ipv4 or ipv6
2401 * string network in in_addr or in6_addr.
2402 */
2403 p = args[cur_arg + 1];
2404 e = p;
2405 while (*p != '\0') {
Joseph Herlant44466822018-11-15 08:57:51 -08002406 /* If no room available, return error. */
David Carlierd10025c2016-04-08 10:26:44 +01002407 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002408 ha_alert("parsing [%s:%d]: '%s' exceed %d networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002409 file, linenum, args[cur_arg], SRV_MAX_PREF_NET);
2410 err_code |= ERR_ALERT | ERR_FATAL;
2411 goto out;
2412 }
2413 /* look for end or comma. */
2414 while (*e != ',' && *e != '\0')
2415 e++;
2416 if (*e == ',') {
2417 *e = '\0';
2418 e++;
2419 }
2420 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
2421 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
2422 /* Try to convert input string from ipv4 or ipv6 network. */
2423 opt->pref_net[opt->pref_net_nb].family = AF_INET;
2424 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
2425 &mask)) {
2426 /* Try to convert input string from ipv6 network. */
2427 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
2428 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
2429 } else {
2430 /* All network conversions fail, retrun error. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002431 ha_alert("parsing [%s:%d]: '%s': invalid network '%s'.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002432 file, linenum, args[cur_arg], p);
2433 err_code |= ERR_ALERT | ERR_FATAL;
2434 goto out;
2435 }
2436 opt->pref_net_nb++;
2437 p = e;
2438 }
2439
2440 cur_arg += 2;
2441 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002442 else if (!strcmp(args[cur_arg], "rise")) {
2443 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002444 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002445 file, linenum, args[cur_arg]);
2446 err_code |= ERR_ALERT | ERR_FATAL;
2447 goto out;
2448 }
2449
2450 newsrv->check.rise = atol(args[cur_arg + 1]);
2451 if (newsrv->check.rise <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002452 ha_alert("parsing [%s:%d]: '%s' has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002453 file, linenum, args[cur_arg]);
2454 err_code |= ERR_ALERT | ERR_FATAL;
2455 goto out;
2456 }
2457
2458 if (newsrv->check.health)
2459 newsrv->check.health = newsrv->check.rise;
2460 cur_arg += 2;
2461 }
2462 else if (!strcmp(args[cur_arg], "fall")) {
2463 newsrv->check.fall = atol(args[cur_arg + 1]);
2464
2465 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002466 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002467 file, linenum, args[cur_arg]);
2468 err_code |= ERR_ALERT | ERR_FATAL;
2469 goto out;
2470 }
2471
2472 if (newsrv->check.fall <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002473 ha_alert("parsing [%s:%d]: '%s' has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002474 file, linenum, args[cur_arg]);
2475 err_code |= ERR_ALERT | ERR_FATAL;
2476 goto out;
2477 }
2478
2479 cur_arg += 2;
2480 }
2481 else if (!strcmp(args[cur_arg], "inter")) {
2482 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2483 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002484 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'inter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002485 file, linenum, *err, newsrv->id);
2486 err_code |= ERR_ALERT | ERR_FATAL;
2487 goto out;
2488 }
2489 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002490 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002491 file, linenum, val, args[cur_arg], newsrv->id);
2492 err_code |= ERR_ALERT | ERR_FATAL;
2493 goto out;
2494 }
2495 newsrv->check.inter = val;
2496 cur_arg += 2;
2497 }
2498 else if (!strcmp(args[cur_arg], "fastinter")) {
2499 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2500 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002501 ha_alert("parsing [%s:%d]: unexpected character '%c' in 'fastinter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002502 file, linenum, *err, newsrv->id);
2503 err_code |= ERR_ALERT | ERR_FATAL;
2504 goto out;
2505 }
2506 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002507 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002508 file, linenum, val, args[cur_arg], newsrv->id);
2509 err_code |= ERR_ALERT | ERR_FATAL;
2510 goto out;
2511 }
2512 newsrv->check.fastinter = val;
2513 cur_arg += 2;
2514 }
2515 else if (!strcmp(args[cur_arg], "downinter")) {
2516 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2517 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002518 ha_alert("parsing [%s:%d]: unexpected character '%c' in 'downinter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002519 file, linenum, *err, newsrv->id);
2520 err_code |= ERR_ALERT | ERR_FATAL;
2521 goto out;
2522 }
2523 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002524 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002525 file, linenum, val, args[cur_arg], newsrv->id);
2526 err_code |= ERR_ALERT | ERR_FATAL;
2527 goto out;
2528 }
2529 newsrv->check.downinter = val;
2530 cur_arg += 2;
2531 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002532 else if (!strcmp(args[cur_arg], "port")) {
2533 newsrv->check.port = atol(args[cur_arg + 1]);
Baptiste Assmann6b453f12016-08-11 23:12:18 +02002534 newsrv->flags |= SRV_F_CHECKPORT;
Willy Tarreau272adea2014-03-31 10:39:59 +02002535 cur_arg += 2;
2536 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002537 else if (!strcmp(args[cur_arg], "weight")) {
2538 int w;
2539 w = atol(args[cur_arg + 1]);
2540 if (w < 0 || w > SRV_UWGHT_MAX) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002541 ha_alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002542 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
2543 err_code |= ERR_ALERT | ERR_FATAL;
2544 goto out;
2545 }
2546 newsrv->uweight = newsrv->iweight = w;
2547 cur_arg += 2;
2548 }
2549 else if (!strcmp(args[cur_arg], "minconn")) {
2550 newsrv->minconn = atol(args[cur_arg + 1]);
2551 cur_arg += 2;
2552 }
2553 else if (!strcmp(args[cur_arg], "maxconn")) {
2554 newsrv->maxconn = atol(args[cur_arg + 1]);
2555 cur_arg += 2;
2556 }
2557 else if (!strcmp(args[cur_arg], "maxqueue")) {
2558 newsrv->maxqueue = atol(args[cur_arg + 1]);
2559 cur_arg += 2;
2560 }
2561 else if (!strcmp(args[cur_arg], "slowstart")) {
2562 /* slowstart is stored in seconds */
2563 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2564 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002565 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002566 file, linenum, *err, newsrv->id);
2567 err_code |= ERR_ALERT | ERR_FATAL;
2568 goto out;
2569 }
2570 newsrv->slowstart = (val + 999) / 1000;
2571 cur_arg += 2;
2572 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002573 else if (!strcmp(args[cur_arg], "on-error")) {
2574 if (!strcmp(args[cur_arg + 1], "fastinter"))
2575 newsrv->onerror = HANA_ONERR_FASTINTER;
2576 else if (!strcmp(args[cur_arg + 1], "fail-check"))
2577 newsrv->onerror = HANA_ONERR_FAILCHK;
2578 else if (!strcmp(args[cur_arg + 1], "sudden-death"))
2579 newsrv->onerror = HANA_ONERR_SUDDTH;
2580 else if (!strcmp(args[cur_arg + 1], "mark-down"))
2581 newsrv->onerror = HANA_ONERR_MARKDWN;
2582 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002583 ha_alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
Willy Tarreau272adea2014-03-31 10:39:59 +02002584 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
2585 file, linenum, args[cur_arg], args[cur_arg + 1]);
2586 err_code |= ERR_ALERT | ERR_FATAL;
2587 goto out;
2588 }
2589
2590 cur_arg += 2;
2591 }
2592 else if (!strcmp(args[cur_arg], "on-marked-down")) {
2593 if (!strcmp(args[cur_arg + 1], "shutdown-sessions"))
2594 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
2595 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002596 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002597 file, linenum, args[cur_arg], args[cur_arg + 1]);
2598 err_code |= ERR_ALERT | ERR_FATAL;
2599 goto out;
2600 }
2601
2602 cur_arg += 2;
2603 }
2604 else if (!strcmp(args[cur_arg], "on-marked-up")) {
2605 if (!strcmp(args[cur_arg + 1], "shutdown-backup-sessions"))
2606 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
2607 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002608 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002609 file, linenum, args[cur_arg], args[cur_arg + 1]);
2610 err_code |= ERR_ALERT | ERR_FATAL;
2611 goto out;
2612 }
2613
2614 cur_arg += 2;
2615 }
2616 else if (!strcmp(args[cur_arg], "error-limit")) {
2617 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002618 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002619 file, linenum, args[cur_arg]);
2620 err_code |= ERR_ALERT | ERR_FATAL;
2621 goto out;
2622 }
2623
2624 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
2625
2626 if (newsrv->consecutive_errors_limit <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002627 ha_alert("parsing [%s:%d]: %s has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002628 file, linenum, args[cur_arg]);
2629 err_code |= ERR_ALERT | ERR_FATAL;
2630 goto out;
2631 }
2632 cur_arg += 2;
2633 }
Frédéric Lécaille8d083ed2017-04-14 15:19:56 +02002634 else if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside: needs "source" first */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002635 ha_alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002636 file, linenum, "usesrc", "source");
2637 err_code |= ERR_ALERT | ERR_FATAL;
2638 goto out;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002639 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002640 else {
2641 static int srv_dumped;
2642 struct srv_kw *kw;
2643 char *err;
2644
2645 kw = srv_find_kw(args[cur_arg]);
2646 if (kw) {
2647 char *err = NULL;
2648 int code;
2649
2650 if (!kw->parse) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002651 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 +02002652 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002653 if (kw->skip != -1)
2654 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002655 err_code |= ERR_ALERT | ERR_FATAL;
2656 goto out;
2657 }
2658
2659 if (defsrv && !kw->default_ok) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002660 ha_alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002661 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002662 if (kw->skip != -1)
2663 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002664 err_code |= ERR_ALERT;
2665 continue;
2666 }
2667
2668 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
2669 err_code |= code;
2670
2671 if (code) {
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002672 display_parser_err(file, linenum, args, cur_arg, &err);
Willy Tarreau272adea2014-03-31 10:39:59 +02002673 if (code & ERR_FATAL) {
2674 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002675 if (kw->skip != -1)
2676 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002677 goto out;
2678 }
2679 }
2680 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002681 if (kw->skip != -1)
2682 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002683 continue;
2684 }
2685
2686 err = NULL;
2687 if (!srv_dumped) {
2688 srv_dump_kws(&err);
2689 indent_msg(&err, 4);
2690 srv_dumped = 1;
2691 }
2692
Christopher Faulet767a84b2017-11-24 16:50:31 +01002693 ha_alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002694 file, linenum, args[0], args[1], args[cur_arg],
2695 err ? " Registered keywords :" : "", err ? err : "");
2696 free(err);
2697
2698 err_code |= ERR_ALERT | ERR_FATAL;
2699 goto out;
2700 }
2701 }
2702
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002703 if (!defsrv)
2704 err_code |= server_finalize_init(file, linenum, args, cur_arg, newsrv, curproxy);
2705 if (err_code & ERR_FATAL)
2706 goto out;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002707 if (srv_tmpl)
2708 server_template_init(newsrv, curproxy);
Willy Tarreau272adea2014-03-31 10:39:59 +02002709 }
Willy Tarreau07101d52015-09-08 16:16:35 +02002710 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002711 return 0;
2712
2713 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02002714 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002715 free(errmsg);
2716 return err_code;
2717}
2718
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002719/* Returns a pointer to the first server matching either id <id>.
2720 * NULL is returned if no match is found.
2721 * the lookup is performed in the backend <bk>
2722 */
2723struct server *server_find_by_id(struct proxy *bk, int id)
2724{
2725 struct eb32_node *eb32;
2726 struct server *curserver;
2727
2728 if (!bk || (id ==0))
2729 return NULL;
2730
2731 /* <bk> has no backend capabilities, so it can't have a server */
2732 if (!(bk->cap & PR_CAP_BE))
2733 return NULL;
2734
2735 curserver = NULL;
2736
2737 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2738 if (eb32)
2739 curserver = container_of(eb32, struct server, conf.id);
2740
2741 return curserver;
2742}
2743
2744/* Returns a pointer to the first server matching either name <name>, or id
2745 * if <name> starts with a '#'. NULL is returned if no match is found.
2746 * the lookup is performed in the backend <bk>
2747 */
2748struct server *server_find_by_name(struct proxy *bk, const char *name)
2749{
2750 struct server *curserver;
2751
2752 if (!bk || !name)
2753 return NULL;
2754
2755 /* <bk> has no backend capabilities, so it can't have a server */
2756 if (!(bk->cap & PR_CAP_BE))
2757 return NULL;
2758
2759 curserver = NULL;
2760 if (*name == '#') {
2761 curserver = server_find_by_id(bk, atoi(name + 1));
2762 if (curserver)
2763 return curserver;
2764 }
2765 else {
2766 curserver = bk->srv;
2767
2768 while (curserver && (strcmp(curserver->id, name) != 0))
2769 curserver = curserver->next;
2770
2771 if (curserver)
2772 return curserver;
2773 }
2774
2775 return NULL;
2776}
2777
2778struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2779{
2780 struct server *byname;
2781 struct server *byid;
2782
2783 if (!name && !id)
2784 return NULL;
2785
2786 if (diff)
2787 *diff = 0;
2788
2789 byname = byid = NULL;
2790
2791 if (name) {
2792 byname = server_find_by_name(bk, name);
2793 if (byname && (!id || byname->puid == id))
2794 return byname;
2795 }
2796
2797 /* remaining possibilities :
2798 * - name not set
2799 * - name set but not found
2800 * - name found but ID doesn't match
2801 */
2802 if (id) {
2803 byid = server_find_by_id(bk, id);
2804 if (byid) {
2805 if (byname) {
2806 /* use id only if forced by configuration */
2807 if (byid->flags & SRV_F_FORCED_ID) {
2808 if (diff)
2809 *diff |= 2;
2810 return byid;
2811 }
2812 else {
2813 if (diff)
2814 *diff |= 1;
2815 return byname;
2816 }
2817 }
2818
2819 /* remaining possibilities:
2820 * - name not set
2821 * - name set but not found
2822 */
2823 if (name && diff)
2824 *diff |= 2;
2825 return byid;
2826 }
2827
2828 /* id bot found */
2829 if (byname) {
2830 if (diff)
2831 *diff |= 1;
2832 return byname;
2833 }
2834 }
2835
2836 return NULL;
2837}
2838
Willy Tarreau46b7f532018-08-21 11:54:26 +02002839/* Update a server state using the parameters available in the params list.
2840 *
2841 * Grabs the server lock during operation.
2842 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002843static void srv_update_state(struct server *srv, int version, char **params)
2844{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002845 char *p;
Willy Tarreau83061a82018-07-13 11:56:34 +02002846 struct buffer *msg;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002847
2848 /* fields since version 1
2849 * and common to all other upcoming versions
2850 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002851 enum srv_state srv_op_state;
2852 enum srv_admin srv_admin_state;
2853 unsigned srv_uweight, srv_iweight;
2854 unsigned long srv_last_time_change;
2855 short srv_check_status;
2856 enum chk_result srv_check_result;
2857 int srv_check_health;
2858 int srv_check_state, srv_agent_state;
2859 int bk_f_forced_id;
2860 int srv_f_forced_id;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002861 int fqdn_set_by_cli;
2862 const char *fqdn;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002863 const char *port_str;
2864 unsigned int port;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002865 char *srvrecord;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002866
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002867 fqdn = NULL;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002868 port = 0;
Willy Tarreau31138fa2015-09-29 18:38:47 +02002869 msg = get_trash_chunk();
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002870 switch (version) {
2871 case 1:
2872 /*
2873 * now we can proceed with server's state update:
2874 * srv_addr: params[0]
2875 * srv_op_state: params[1]
2876 * srv_admin_state: params[2]
2877 * srv_uweight: params[3]
2878 * srv_iweight: params[4]
2879 * srv_last_time_change: params[5]
2880 * srv_check_status: params[6]
2881 * srv_check_result: params[7]
2882 * srv_check_health: params[8]
2883 * srv_check_state: params[9]
2884 * srv_agent_state: params[10]
2885 * bk_f_forced_id: params[11]
2886 * srv_f_forced_id: params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002887 * srv_fqdn: params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02002888 * srv_port: params[14]
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002889 * srvrecord: params[15]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002890 */
2891
2892 /* validating srv_op_state */
2893 p = NULL;
2894 errno = 0;
2895 srv_op_state = strtol(params[1], &p, 10);
2896 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
2897 (srv_op_state != SRV_ST_STOPPED &&
2898 srv_op_state != SRV_ST_STARTING &&
2899 srv_op_state != SRV_ST_RUNNING &&
2900 srv_op_state != SRV_ST_STOPPING)) {
2901 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
2902 }
2903
2904 /* validating srv_admin_state */
2905 p = NULL;
2906 errno = 0;
2907 srv_admin_state = strtol(params[2], &p, 10);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002908 fqdn_set_by_cli = !!(srv_admin_state & SRV_ADMF_HMAINT);
Willy Tarreau757478e2016-11-03 19:22:19 +01002909
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002910 /* inherited statuses will be recomputed later.
2911 * Also disable SRV_ADMF_HMAINT flag (set from stats socket fqdn).
2912 */
2913 srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_HMAINT;
Willy Tarreau757478e2016-11-03 19:22:19 +01002914
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002915 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
2916 (srv_admin_state != 0 &&
2917 srv_admin_state != SRV_ADMF_FMAINT &&
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002918 srv_admin_state != SRV_ADMF_CMAINT &&
2919 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
Willy Tarreaue1bde142016-11-03 18:33:25 +01002920 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FDRAIN) &&
Willy Tarreau757478e2016-11-03 19:22:19 +01002921 srv_admin_state != SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002922 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
2923 }
2924
2925 /* validating srv_uweight */
2926 p = NULL;
2927 errno = 0;
2928 srv_uweight = strtol(params[3], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002929 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002930 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
2931
2932 /* validating srv_iweight */
2933 p = NULL;
2934 errno = 0;
2935 srv_iweight = strtol(params[4], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002936 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002937 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
2938
2939 /* validating srv_last_time_change */
2940 p = NULL;
2941 errno = 0;
2942 srv_last_time_change = strtol(params[5], &p, 10);
2943 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2944 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
2945
2946 /* validating srv_check_status */
2947 p = NULL;
2948 errno = 0;
2949 srv_check_status = strtol(params[6], &p, 10);
2950 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2951 (srv_check_status >= HCHK_STATUS_SIZE))
2952 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
2953
2954 /* validating srv_check_result */
2955 p = NULL;
2956 errno = 0;
2957 srv_check_result = strtol(params[7], &p, 10);
2958 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2959 (srv_check_result != CHK_RES_UNKNOWN &&
2960 srv_check_result != CHK_RES_NEUTRAL &&
2961 srv_check_result != CHK_RES_FAILED &&
2962 srv_check_result != CHK_RES_PASSED &&
2963 srv_check_result != CHK_RES_CONDPASS)) {
2964 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2965 }
2966
2967 /* validating srv_check_health */
2968 p = NULL;
2969 errno = 0;
2970 srv_check_health = strtol(params[8], &p, 10);
2971 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2972 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
2973
2974 /* validating srv_check_state */
2975 p = NULL;
2976 errno = 0;
2977 srv_check_state = strtol(params[9], &p, 10);
2978 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2979 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2980 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
2981
2982 /* validating srv_agent_state */
2983 p = NULL;
2984 errno = 0;
2985 srv_agent_state = strtol(params[10], &p, 10);
2986 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2987 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2988 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
2989
2990 /* validating bk_f_forced_id */
2991 p = NULL;
2992 errno = 0;
2993 bk_f_forced_id = strtol(params[11], &p, 10);
2994 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
2995 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
2996
2997 /* validating srv_f_forced_id */
2998 p = NULL;
2999 errno = 0;
3000 srv_f_forced_id = strtol(params[12], &p, 10);
3001 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
3002 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
3003
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003004 /* validating srv_fqdn */
3005 fqdn = params[13];
3006 if (fqdn && *fqdn == '-')
3007 fqdn = NULL;
3008 if (fqdn && (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn))) {
3009 chunk_appendf(msg, ", invalid srv_fqdn value '%s'", params[13]);
3010 fqdn = NULL;
3011 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003012
Frédéric Lécaille31694712017-08-01 08:47:19 +02003013 port_str = params[14];
3014 if (port_str) {
3015 port = strl2uic(port_str, strlen(port_str));
3016 if (port > USHRT_MAX) {
3017 chunk_appendf(msg, ", invalid srv_port value '%s'", port_str);
3018 port_str = NULL;
3019 }
3020 }
3021
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02003022 /* SRV record
3023 * NOTE: in HAProxy, SRV records must start with an underscore '_'
3024 */
3025 srvrecord = params[15];
3026 if (srvrecord && *srvrecord != '_')
3027 srvrecord = NULL;
3028
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003029 /* don't apply anything if one error has been detected */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003030 if (msg->data)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003031 goto out;
3032
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003033 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003034 /* recover operational state and apply it to this server
3035 * and all servers tracking this one */
3036 switch (srv_op_state) {
3037 case SRV_ST_STOPPED:
3038 srv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02003039 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003040 break;
3041 case SRV_ST_STARTING:
Emeric Brun52a91d32017-08-31 14:41:55 +02003042 srv->next_state = srv_op_state;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003043 break;
3044 case SRV_ST_STOPPING:
3045 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02003046 srv_set_stopping(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003047 break;
3048 case SRV_ST_RUNNING:
3049 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02003050 srv_set_running(srv, "", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003051 break;
3052 }
3053
3054 /* When applying server state, the following rules apply:
3055 * - in case of a configuration change, we apply the setting from the new
3056 * configuration, regardless of old running state
3057 * - if no configuration change, we apply old running state only if old running
3058 * state is different from new configuration state
3059 */
3060 /* configuration has changed */
Emeric Brun52a91d32017-08-31 14:41:55 +02003061 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->next_admin & SRV_ADMF_CMAINT)) {
3062 if (srv->next_admin & SRV_ADMF_CMAINT)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003063 srv_adm_set_maint(srv);
3064 else
3065 srv_adm_set_ready(srv);
3066 }
3067 /* configuration is the same, let's compate old running state and new conf state */
3068 else {
Emeric Brun52a91d32017-08-31 14:41:55 +02003069 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003070 srv_adm_set_maint(srv);
Emeric Brun52a91d32017-08-31 14:41:55 +02003071 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003072 srv_adm_set_ready(srv);
3073 }
3074 /* apply drain mode if server is currently enabled */
Emeric Brun52a91d32017-08-31 14:41:55 +02003075 if (!(srv->next_admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003076 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
Willy Tarreau22cace22016-11-03 18:19:49 +01003077 * (srv->iweight is the weight set up in configuration).
3078 * There are two possible reasons for FDRAIN to have been present :
3079 * - previous config weight was zero
3080 * - "set server b/s drain" was sent to the CLI
3081 *
3082 * In the first case, we simply want to drop this drain state
3083 * if the new weight is not zero anymore, meaning the administrator
3084 * has intentionally turned the weight back to a positive value to
3085 * enable the server again after an operation. In the second case,
3086 * the drain state was forced on the CLI regardless of the config's
3087 * weight so we don't want a change to the config weight to lose this
3088 * status. What this means is :
3089 * - if previous weight was 0 and new one is >0, drop the DRAIN state.
3090 * - if the previous weight was >0, keep it.
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003091 */
Willy Tarreau22cace22016-11-03 18:19:49 +01003092 if (srv_iweight > 0 || srv->iweight == 0)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003093 srv_adm_set_drain(srv);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003094 }
3095
3096 srv->last_change = date.tv_sec - srv_last_time_change;
3097 srv->check.status = srv_check_status;
3098 srv->check.result = srv_check_result;
3099 srv->check.health = srv_check_health;
3100
3101 /* Only case we want to apply is removing ENABLED flag which could have been
3102 * done by the "disable health" command over the stats socket
3103 */
3104 if ((srv->check.state & CHK_ST_CONFIGURED) &&
3105 (srv_check_state & CHK_ST_CONFIGURED) &&
3106 !(srv_check_state & CHK_ST_ENABLED))
3107 srv->check.state &= ~CHK_ST_ENABLED;
3108
3109 /* Only case we want to apply is removing ENABLED flag which could have been
3110 * done by the "disable agent" command over the stats socket
3111 */
3112 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
3113 (srv_agent_state & CHK_ST_CONFIGURED) &&
3114 !(srv_agent_state & CHK_ST_ENABLED))
3115 srv->agent.state &= ~CHK_ST_ENABLED;
3116
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02003117 /* We want to apply the previous 'running' weight (srv_uweight) only if there
3118 * was no change in the configuration: both previous and new iweight are equals
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003119 *
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02003120 * It means that a configuration file change has precedence over a unix socket change
3121 * for server's weight
3122 *
3123 * by default, HAProxy applies the following weight when parsing the configuration
3124 * srv->uweight = srv->iweight
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003125 */
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02003126 if (srv_iweight == srv->iweight) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003127 srv->uweight = srv_uweight;
3128 }
Willy Tarreau3ff577e2018-08-02 11:48:52 +02003129 server_recalc_eweight(srv, 1);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003130
Willy Tarreaue5a60682016-11-09 14:54:53 +01003131 /* load server IP address */
Daniel Corbett9215ffa2018-05-19 19:43:24 -04003132 if (strcmp(params[0], "-"))
3133 srv->lastaddr = strdup(params[0]);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003134
3135 if (fqdn && srv->hostname) {
3136 if (!strcmp(srv->hostname, fqdn)) {
3137 /* Here we reset the 'set from stats socket FQDN' flag
3138 * to support such transitions:
3139 * Let's say initial FQDN value is foo1 (in configuration file).
3140 * - FQDN changed from stats socket, from foo1 to foo2 value,
3141 * - FQDN changed again from file configuration (with the same previous value
3142 set from stats socket, from foo1 to foo2 value),
3143 * - reload for any other reason than a FQDN modification,
3144 * the configuration file FQDN matches the fqdn server state file value.
3145 * So we must reset the 'set from stats socket FQDN' flag to be consistent with
Joseph Herlant44466822018-11-15 08:57:51 -08003146 * any further FQDN modification.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003147 */
Emeric Brun52a91d32017-08-31 14:41:55 +02003148 srv->next_admin &= ~SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003149 }
3150 else {
3151 /* If the FDQN has been changed from stats socket,
3152 * apply fqdn state file value (which is the value set
3153 * from stats socket).
3154 */
3155 if (fqdn_set_by_cli) {
Olivier Houchardd16bfe62017-10-31 15:21:19 +01003156 srv_set_fqdn(srv, fqdn, 0);
Emeric Brun52a91d32017-08-31 14:41:55 +02003157 srv->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003158 }
3159 }
3160 }
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02003161 /* If all the conditions below are validated, this means
3162 * we're evaluating a server managed by SRV resolution
3163 */
3164 else if (fqdn && !srv->hostname && srvrecord) {
3165 int res;
3166
3167 /* we can't apply previous state if SRV record has changed */
3168 if (srv->srvrq && strcmp(srv->srvrq->name, srvrecord) != 0) {
3169 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);
3170 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
3171 goto out;
3172 }
3173
3174 /* create or find a SRV resolution for this srv record */
3175 if (srv->srvrq == NULL && (srv->srvrq = find_srvrq_by_name(srvrecord, srv->proxy)) == NULL)
3176 srv->srvrq = new_dns_srvrq(srv, srvrecord);
3177 if (srv->srvrq == NULL) {
3178 chunk_appendf(msg, ", can't create or find SRV resolution '%s' for server '%s'", srvrecord, srv->id);
3179 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
3180 goto out;
3181 }
3182
3183 /* prepare DNS resolution for this server */
3184 res = srv_prepare_for_resolution(srv, fqdn);
3185 if (res == -1) {
3186 chunk_appendf(msg, ", can't allocate memory for DNS resolution for server '%s'", srv->id);
3187 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
3188 goto out;
3189 }
3190
3191 /* configure check.port accordingly */
3192 if ((srv->check.state & CHK_ST_CONFIGURED) &&
3193 !(srv->flags & SRV_F_CHECKPORT))
3194 srv->check.port = port;
3195
3196 /* Unset SRV_F_MAPPORTS for SRV records.
3197 * SRV_F_MAPPORTS is unfortunately set by parse_server()
3198 * because no ports are provided in the configuration file.
3199 * This is because HAProxy will use the port found into the SRV record.
3200 */
3201 srv->flags &= ~SRV_F_MAPPORTS;
3202 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003203
Frédéric Lécaille31694712017-08-01 08:47:19 +02003204 if (port_str)
3205 srv->svc_port = port;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003206 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Frédéric Lécaille31694712017-08-01 08:47:19 +02003207
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003208 break;
3209 default:
3210 chunk_appendf(msg, ", version '%d' not supported", version);
3211 }
3212
3213 out:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003214 if (msg->data) {
Baptiste Assmann0821bb92016-01-21 00:20:50 +01003215 chunk_appendf(msg, "\n");
Christopher Faulet767a84b2017-11-24 16:50:31 +01003216 ha_warning("server-state application failed for server '%s/%s'%s",
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003217 srv->proxy->id, srv->id, msg->area);
Baptiste Assmann0821bb92016-01-21 00:20:50 +01003218 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003219}
3220
3221/* This function parses all the proxies and only take care of the backends (since we're looking for server)
3222 * For each proxy, it does the following:
3223 * - opens its server state file (either one or local one)
3224 * - read whole file, line by line
3225 * - analyse each line to check if it matches our current backend:
3226 * - backend name matches
3227 * - backend id matches if id is forced and name doesn't match
3228 * - if the server pointed by the line is found, then state is applied
3229 *
3230 * If the running backend uuid or id differs from the state file, then HAProxy reports
3231 * a warning.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003232 *
3233 * Grabs the server's lock via srv_update_state().
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003234 */
3235void apply_server_state(void)
3236{
3237 char *cur, *end;
3238 char mybuf[SRV_STATE_LINE_MAXLEN];
3239 int mybuflen;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003240 char *params[SRV_STATE_FILE_MAX_FIELDS] = {0};
3241 char *srv_params[SRV_STATE_FILE_MAX_FIELDS] = {0};
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003242 int arg, srv_arg, version, diff;
3243 FILE *f;
3244 char *filepath;
3245 char globalfilepath[MAXPATHLEN + 1];
3246 char localfilepath[MAXPATHLEN + 1];
3247 int len, fileopenerr, globalfilepathlen, localfilepathlen;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003248 struct proxy *curproxy, *bk;
3249 struct server *srv;
3250
3251 globalfilepathlen = 0;
3252 /* create the globalfilepath variable */
3253 if (global.server_state_file) {
3254 /* absolute path or no base directory provided */
3255 if ((global.server_state_file[0] == '/') || (!global.server_state_base)) {
3256 len = strlen(global.server_state_file);
3257 if (len > MAXPATHLEN) {
3258 globalfilepathlen = 0;
3259 goto globalfileerror;
3260 }
3261 memcpy(globalfilepath, global.server_state_file, len);
3262 globalfilepath[len] = '\0';
3263 globalfilepathlen = len;
3264 }
3265 else if (global.server_state_base) {
3266 len = strlen(global.server_state_base);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003267 if (len > MAXPATHLEN) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003268 globalfilepathlen = 0;
3269 goto globalfileerror;
3270 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003271 memcpy(globalfilepath, global.server_state_base, len);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003272 globalfilepath[len] = 0;
3273 globalfilepathlen = len;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003274
3275 /* append a slash if needed */
3276 if (!globalfilepathlen || globalfilepath[globalfilepathlen - 1] != '/') {
3277 if (globalfilepathlen + 1 > MAXPATHLEN) {
3278 globalfilepathlen = 0;
3279 goto globalfileerror;
3280 }
3281 globalfilepath[globalfilepathlen++] = '/';
3282 }
3283
3284 len = strlen(global.server_state_file);
3285 if (globalfilepathlen + len > MAXPATHLEN) {
3286 globalfilepathlen = 0;
3287 goto globalfileerror;
3288 }
3289 memcpy(globalfilepath + globalfilepathlen, global.server_state_file, len);
3290 globalfilepathlen += len;
3291 globalfilepath[globalfilepathlen++] = 0;
3292 }
3293 }
3294 globalfileerror:
3295 if (globalfilepathlen == 0)
3296 globalfilepath[0] = '\0';
3297
3298 /* read servers state from local file */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003299 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003300 /* servers are only in backends */
3301 if (!(curproxy->cap & PR_CAP_BE))
3302 continue;
3303 fileopenerr = 0;
3304 filepath = NULL;
3305
3306 /* search server state file path and name */
3307 switch (curproxy->load_server_state_from_file) {
3308 /* read servers state from global file */
3309 case PR_SRV_STATE_FILE_GLOBAL:
3310 /* there was an error while generating global server state file path */
3311 if (globalfilepathlen == 0)
3312 continue;
3313 filepath = globalfilepath;
3314 fileopenerr = 1;
3315 break;
3316 /* this backend has its own file */
3317 case PR_SRV_STATE_FILE_LOCAL:
3318 localfilepathlen = 0;
3319 localfilepath[0] = '\0';
3320 len = 0;
3321 /* create the localfilepath variable */
3322 /* absolute path or no base directory provided */
3323 if ((curproxy->server_state_file_name[0] == '/') || (!global.server_state_base)) {
3324 len = strlen(curproxy->server_state_file_name);
3325 if (len > MAXPATHLEN) {
3326 localfilepathlen = 0;
3327 goto localfileerror;
3328 }
3329 memcpy(localfilepath, curproxy->server_state_file_name, len);
3330 localfilepath[len] = '\0';
3331 localfilepathlen = len;
3332 }
3333 else if (global.server_state_base) {
3334 len = strlen(global.server_state_base);
3335 localfilepathlen += len;
3336
3337 if (localfilepathlen > MAXPATHLEN) {
3338 localfilepathlen = 0;
3339 goto localfileerror;
3340 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003341 memcpy(localfilepath, global.server_state_base, len);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003342 localfilepath[localfilepathlen] = 0;
3343
3344 /* append a slash if needed */
3345 if (!localfilepathlen || localfilepath[localfilepathlen - 1] != '/') {
3346 if (localfilepathlen + 1 > MAXPATHLEN) {
3347 localfilepathlen = 0;
3348 goto localfileerror;
3349 }
3350 localfilepath[localfilepathlen++] = '/';
3351 }
3352
3353 len = strlen(curproxy->server_state_file_name);
3354 if (localfilepathlen + len > MAXPATHLEN) {
3355 localfilepathlen = 0;
3356 goto localfileerror;
3357 }
3358 memcpy(localfilepath + localfilepathlen, curproxy->server_state_file_name, len);
3359 localfilepathlen += len;
3360 localfilepath[localfilepathlen++] = 0;
3361 }
3362 filepath = localfilepath;
3363 localfileerror:
3364 if (localfilepathlen == 0)
3365 localfilepath[0] = '\0';
3366
3367 break;
3368 case PR_SRV_STATE_FILE_NONE:
3369 default:
3370 continue;
3371 }
3372
3373 /* preload global state file */
3374 errno = 0;
3375 f = fopen(filepath, "r");
3376 if (errno && fileopenerr)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003377 ha_warning("Can't open server state file '%s': %s\n", filepath, strerror(errno));
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003378 if (!f)
3379 continue;
3380
3381 mybuf[0] = '\0';
3382 mybuflen = 0;
3383 version = 0;
3384
3385 /* first character of first line of the file must contain the version of the export */
Dragan Dosencf4fb032015-11-04 23:03:26 +01003386 if (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003387 ha_warning("Can't read first line of the server state file '%s'\n", filepath);
Dragan Dosencf4fb032015-11-04 23:03:26 +01003388 goto fileclose;
3389 }
3390
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003391 cur = mybuf;
3392 version = atoi(cur);
3393 if ((version < SRV_STATE_FILE_VERSION_MIN) ||
3394 (version > SRV_STATE_FILE_VERSION_MAX))
Dragan Dosencf4fb032015-11-04 23:03:26 +01003395 goto fileclose;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003396
3397 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3398 int bk_f_forced_id = 0;
3399 int check_id = 0;
3400 int check_name = 0;
3401
3402 mybuflen = strlen(mybuf);
3403 cur = mybuf;
3404 end = cur + mybuflen;
3405
3406 bk = NULL;
3407 srv = NULL;
3408
3409 /* we need at least one character */
3410 if (mybuflen == 0)
3411 continue;
3412
3413 /* ignore blank characters at the beginning of the line */
3414 while (isspace(*cur))
3415 ++cur;
3416
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003417 /* Ignore empty or commented lines */
3418 if (cur == end || *cur == '#')
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003419 continue;
3420
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003421 /* truncated lines */
3422 if (mybuf[mybuflen - 1] != '\n') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003423 ha_warning("server-state file '%s': truncated line\n", filepath);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003424 continue;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003425 }
3426
3427 /* Removes trailing '\n' */
3428 mybuf[mybuflen - 1] = '\0';
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003429
3430 /* we're now ready to move the line into *srv_params[] */
3431 params[0] = cur;
3432 arg = 1;
3433 srv_arg = 0;
3434 while (*cur && arg < SRV_STATE_FILE_MAX_FIELDS) {
3435 if (isspace(*cur)) {
3436 *cur = '\0';
3437 ++cur;
3438 while (isspace(*cur))
3439 ++cur;
3440 switch (version) {
3441 case 1:
3442 /*
3443 * srv_addr: params[4] => srv_params[0]
3444 * srv_op_state: params[5] => srv_params[1]
3445 * srv_admin_state: params[6] => srv_params[2]
3446 * srv_uweight: params[7] => srv_params[3]
3447 * srv_iweight: params[8] => srv_params[4]
3448 * srv_last_time_change: params[9] => srv_params[5]
3449 * srv_check_status: params[10] => srv_params[6]
3450 * srv_check_result: params[11] => srv_params[7]
3451 * srv_check_health: params[12] => srv_params[8]
3452 * srv_check_state: params[13] => srv_params[9]
3453 * srv_agent_state: params[14] => srv_params[10]
3454 * bk_f_forced_id: params[15] => srv_params[11]
3455 * srv_f_forced_id: params[16] => srv_params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003456 * srv_fqdn: params[17] => srv_params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02003457 * srv_port: params[18] => srv_params[14]
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02003458 * srvrecord: params[19] => srv_params[15]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003459 */
3460 if (arg >= 4) {
3461 srv_params[srv_arg] = cur;
3462 ++srv_arg;
3463 }
3464 break;
3465 }
3466
3467 params[arg] = cur;
3468 ++arg;
3469 }
3470 else {
3471 ++cur;
3472 }
3473 }
3474
3475 /* if line is incomplete line, then ignore it.
3476 * otherwise, update useful flags */
3477 switch (version) {
3478 case 1:
3479 if (arg < SRV_STATE_FILE_NB_FIELDS_VERSION_1)
3480 continue;
3481 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
3482 check_id = (atoi(params[0]) == curproxy->uuid);
3483 check_name = (strcmp(curproxy->id, params[1]) == 0);
3484 break;
3485 }
3486
3487 diff = 0;
3488 bk = curproxy;
3489
3490 /* if backend can't be found, let's continue */
3491 if (!check_id && !check_name)
3492 continue;
3493 else if (!check_id && check_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003494 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 +02003495 send_log(bk, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3496 }
3497 else if (check_id && !check_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003498 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 +02003499 send_log(bk, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3500 /* if name doesn't match, we still want to update curproxy if the backend id
3501 * was forced in previous the previous configuration */
3502 if (!bk_f_forced_id)
3503 continue;
3504 }
3505
3506 /* look for the server by its id: param[2] */
3507 /* else look for the server by its name: param[3] */
3508 diff = 0;
3509 srv = server_find_best_match(bk, params[3], atoi(params[2]), &diff);
3510
3511 if (!srv) {
3512 /* if no server found, then warning and continue with next line */
Christopher Faulet767a84b2017-11-24 16:50:31 +01003513 ha_warning("can't find server '%s' with id '%s' in backend with id '%s' or name '%s'\n",
3514 params[3], params[2], params[0], params[1]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003515 send_log(bk, LOG_NOTICE, "can't find server '%s' with id '%s' in backend with id '%s' or name '%s'\n",
3516 params[3], params[2], params[0], params[1]);
3517 continue;
3518 }
3519 else if (diff & PR_FBM_MISMATCH_ID) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003520 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 +02003521 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 +02003522 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003523 }
3524 else if (diff & PR_FBM_MISMATCH_NAME) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003525 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 +02003526 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 +02003527 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003528 }
3529
3530 /* now we can proceed with server's state update */
3531 srv_update_state(srv, version, srv_params);
3532 }
Dragan Dosencf4fb032015-11-04 23:03:26 +01003533fileclose:
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003534 fclose(f);
3535 }
3536}
3537
Simon Horman7d09b9a2013-02-12 10:45:51 +09003538/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003539 * update a server's current IP address.
3540 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3541 * ip is in network format.
3542 * updater is a string which contains an information about the requester of the update.
3543 * updater is used if not NULL.
3544 *
3545 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003546 *
3547 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003548 */
Thierry Fournierd35b7a62016-02-24 08:23:22 +01003549int update_server_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003550{
3551 /* generates a log line and a warning on stderr */
3552 if (1) {
3553 /* book enough space for both IPv4 and IPv6 */
3554 char oldip[INET6_ADDRSTRLEN];
3555 char newip[INET6_ADDRSTRLEN];
3556
3557 memset(oldip, '\0', INET6_ADDRSTRLEN);
3558 memset(newip, '\0', INET6_ADDRSTRLEN);
3559
3560 /* copy old IP address in a string */
3561 switch (s->addr.ss_family) {
3562 case AF_INET:
3563 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3564 break;
3565 case AF_INET6:
3566 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3567 break;
3568 };
3569
3570 /* copy new IP address in a string */
3571 switch (ip_sin_family) {
3572 case AF_INET:
3573 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3574 break;
3575 case AF_INET6:
3576 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3577 break;
3578 };
3579
3580 /* save log line into a buffer */
3581 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3582 s->proxy->id, s->id, oldip, newip, updater);
3583
3584 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003585 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003586
3587 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003588 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003589 }
3590
3591 /* save the new IP family */
3592 s->addr.ss_family = ip_sin_family;
3593 /* save the new IP address */
3594 switch (ip_sin_family) {
3595 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003596 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003597 break;
3598 case AF_INET6:
3599 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3600 break;
3601 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003602 srv_set_dyncookie(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003603
3604 return 0;
3605}
3606
3607/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003608 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3609 *
3610 * Caller can pass its name through <updater> to get it integrated in the response message
3611 * returned by the function.
3612 *
3613 * The function first does the following, in that order:
3614 * - validates the new addr and/or port
3615 * - checks if an update is required (new IP or port is different than current ones)
3616 * - checks the update is allowed:
3617 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3618 * - allow all changes if no CHECKS are configured
3619 * - if CHECK is configured:
3620 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3621 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3622 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003623 *
3624 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003625 */
3626const char *update_server_addr_port(struct server *s, const char *addr, const char *port, char *updater)
3627{
3628 struct sockaddr_storage sa;
3629 int ret, port_change_required;
3630 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003631 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003632 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003633 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003634
3635 msg = get_trash_chunk();
3636 chunk_reset(msg);
3637
3638 if (addr) {
3639 memset(&sa, 0, sizeof(struct sockaddr_storage));
3640 if (str2ip2(addr, &sa, 0) == NULL) {
3641 chunk_printf(msg, "Invalid addr '%s'", addr);
3642 goto out;
3643 }
3644
3645 /* changes are allowed on AF_INET* families only */
3646 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3647 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3648 goto out;
3649 }
3650
3651 /* collecting data currently setup */
3652 memset(current_addr, '\0', sizeof(current_addr));
3653 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3654 /* changes are allowed on AF_INET* families only */
3655 if ((ret != AF_INET) && (ret != AF_INET6)) {
3656 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3657 goto out;
3658 }
3659
3660 /* applying ADDR changes if required and allowed
3661 * ipcmp returns 0 when both ADDR are the same
3662 */
3663 if (ipcmp(&s->addr, &sa) == 0) {
3664 chunk_appendf(msg, "no need to change the addr");
3665 goto port;
3666 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003667 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003668 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003669
3670 /* we also need to update check's ADDR only if it uses the server's one */
3671 if ((s->check.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_CHECKADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003672 ipcpy(&sa, &s->check.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003673 }
3674
3675 /* we also need to update agent ADDR only if it use the server's one */
3676 if ((s->agent.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_AGENTADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003677 ipcpy(&sa, &s->agent.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003678 }
3679
3680 /* update report for caller */
3681 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3682 }
3683
3684 port:
3685 if (port) {
3686 char sign = '\0';
3687 char *endptr;
3688
3689 if (addr)
3690 chunk_appendf(msg, ", ");
3691
3692 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003693 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003694
3695 /* check if PORT change is required */
3696 port_change_required = 0;
3697
3698 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003699 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003700 new_port = strtol(port, &endptr, 10);
3701 if ((errno != 0) || (port == endptr)) {
3702 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3703 goto out;
3704 }
3705
3706 /* check if caller triggers a port mapped or offset */
3707 if (sign == '-' || (sign == '+')) {
3708 /* check if server currently uses port map */
3709 if (!(s->flags & SRV_F_MAPPORTS)) {
3710 /* switch from fixed port to port map mandatorily triggers
3711 * a port change */
3712 port_change_required = 1;
3713 /* check is configured
3714 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3715 * prevent PORT change if check doesn't have it's dedicated port while switching
3716 * to port mapping */
3717 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3718 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.");
3719 goto out;
3720 }
3721 }
3722 /* we're already using port maps */
3723 else {
3724 port_change_required = current_port != new_port;
3725 }
3726 }
3727 /* fixed port */
3728 else {
3729 port_change_required = current_port != new_port;
3730 }
3731
3732 /* applying PORT changes if required and update response message */
3733 if (port_change_required) {
3734 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003735 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003736 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003737
3738 /* prepare message */
3739 chunk_appendf(msg, "port changed from '");
3740 if (s->flags & SRV_F_MAPPORTS)
3741 chunk_appendf(msg, "+");
3742 chunk_appendf(msg, "%d' to '", current_port);
3743
3744 if (sign == '-') {
3745 s->flags |= SRV_F_MAPPORTS;
3746 chunk_appendf(msg, "%c", sign);
3747 /* just use for result output */
3748 new_port = -new_port;
3749 }
3750 else if (sign == '+') {
3751 s->flags |= SRV_F_MAPPORTS;
3752 chunk_appendf(msg, "%c", sign);
3753 }
3754 else {
3755 s->flags &= ~SRV_F_MAPPORTS;
3756 }
3757
3758 chunk_appendf(msg, "%d'", new_port);
3759
3760 /* we also need to update health checks port only if it uses server's realport */
3761 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3762 s->check.port = new_port;
3763 }
3764 }
3765 else {
3766 chunk_appendf(msg, "no need to change the port");
3767 }
3768 }
3769
3770out:
Olivier Houchard4e694042017-03-14 20:01:29 +01003771 if (changed)
3772 srv_set_dyncookie(s);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003773 if (updater)
3774 chunk_appendf(msg, " by '%s'", updater);
3775 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003776 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003777}
3778
3779
3780/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003781 * update server status based on result of name resolution
3782 * returns:
3783 * 0 if server status is updated
3784 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003785 *
3786 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003787 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003788int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003789{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003790 struct dns_resolvers *resolvers = s->resolvers;
3791 struct dns_resolution *resolution = s->dns_requester->resolution;
3792 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003793
3794 switch (resolution->status) {
3795 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003796 /* status when HAProxy has just (re)started.
3797 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003798 break;
3799
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003800 case RSLV_STATUS_VALID:
3801 /*
3802 * resume health checks
3803 * server will be turned back on if health check is safe
3804 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003805 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003806 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003807 return 1;
3808 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3809 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003810 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003811 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003812
Emeric Brun52a91d32017-08-31 14:41:55 +02003813 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003814 return 1;
3815 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3816 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3817 s->proxy->id, s->id);
3818
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003819 ha_warning("%s.\n", trash.area);
3820 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003821 return 0;
3822
3823 case RSLV_STATUS_NX:
3824 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003825 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3826 if (!tick_is_expired(exp, now_ms))
3827 break;
3828
3829 if (s->next_admin & SRV_ADMF_RMAINT)
3830 return 1;
3831 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3832 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003833
3834 case RSLV_STATUS_TIMEOUT:
3835 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003836 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3837 if (!tick_is_expired(exp, now_ms))
3838 break;
3839
3840 if (s->next_admin & SRV_ADMF_RMAINT)
3841 return 1;
3842 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3843 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003844
3845 case RSLV_STATUS_REFUSED:
3846 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003847 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3848 if (!tick_is_expired(exp, now_ms))
3849 break;
3850
3851 if (s->next_admin & SRV_ADMF_RMAINT)
3852 return 1;
3853 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3854 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003855
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003856 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003857 /* stop server if resolution failed for a long enough period */
3858 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3859 if (!tick_is_expired(exp, now_ms))
3860 break;
3861
3862 if (s->next_admin & SRV_ADMF_RMAINT)
3863 return 1;
3864 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3865 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003866 }
3867
3868 return 1;
3869}
3870
3871/*
3872 * Server Name Resolution valid response callback
3873 * It expects:
3874 * - <nameserver>: the name server which answered the valid response
3875 * - <response>: buffer containing a valid DNS response
3876 * - <response_len>: size of <response>
3877 * It performs the following actions:
3878 * - ignore response if current ip found and server family not met
3879 * - update with first new ip found if family is met and current IP is not found
3880 * returns:
3881 * 0 on error
3882 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003883 *
3884 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003885 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003886int snr_resolution_cb(struct dns_requester *requester, struct dns_nameserver *nameserver)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003887{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003888 struct server *s = NULL;
3889 struct dns_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003890 void *serverip, *firstip;
3891 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003892 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003893 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003894 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003895
Christopher Faulet67957bd2017-09-27 11:00:59 +02003896 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003897 if (!s)
3898 return 1;
3899
Christopher Faulet67957bd2017-09-27 11:00:59 +02003900 resolution = s->dns_requester->resolution;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003901
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003902 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003903 firstip = NULL; /* pointer to the first valid response found */
3904 /* it will be used as the new IP if a change is required */
3905 firstip_sin_family = AF_UNSPEC;
3906 serverip = NULL; /* current server IP address */
3907
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003908 /* initializing server IP pointer */
3909 server_sin_family = s->addr.ss_family;
3910 switch (server_sin_family) {
3911 case AF_INET:
3912 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3913 break;
3914
3915 case AF_INET6:
3916 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3917 break;
3918
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003919 case AF_UNSPEC:
3920 break;
3921
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003922 default:
3923 goto invalid;
3924 }
3925
Baptiste Assmann729c9012017-05-22 15:13:10 +02003926 ret = dns_get_ip_from_response(&resolution->response, &s->dns_opts,
Thierry Fournierada34842016-02-17 21:25:09 +01003927 serverip, server_sin_family, &firstip,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003928 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003929
3930 switch (ret) {
3931 case DNS_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003932 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003933
3934 case DNS_UPD_SRVIP_NOT_FOUND:
3935 goto save_ip;
3936
3937 case DNS_UPD_CNAME:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003938 goto invalid;
3939
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003940 case DNS_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003941 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003942 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003943
Baptiste Assmannfad03182015-10-28 02:03:32 +01003944 case DNS_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003945 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003946 resolution->status = RSLV_STATUS_OTHER;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003947 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003948
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003949 default:
3950 goto invalid;
3951
3952 }
3953
3954 save_ip:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003955 if (nameserver) {
3956 nameserver->counters.update++;
3957 /* save the first ip we found */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003958 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003959 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003960 else
3961 chunk_printf(chk, "DNS cache");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003962 update_server_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003963
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003964 update_status:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003965 snr_update_srv_status(s, has_no_ip);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003966 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003967
3968 invalid:
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003969 if (nameserver) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02003970 nameserver->counters.invalid++;
3971 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003972 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003973 snr_update_srv_status(s, has_no_ip);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003974 return 0;
3975}
3976
3977/*
3978 * Server Name Resolution error management callback
3979 * returns:
3980 * 0 on error
3981 * 1 when no error or safe ignore
Willy Tarreau46b7f532018-08-21 11:54:26 +02003982 *
3983 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003984 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003985int snr_resolution_error_cb(struct dns_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003986{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003987 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003988
Christopher Faulet67957bd2017-09-27 11:00:59 +02003989 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003990 if (!s)
3991 return 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003992 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003993 snr_update_srv_status(s, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003994 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003995 return 1;
3996}
3997
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003998/*
3999 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004000 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004001 * It returns a pointer to the first server found or NULL if <ip> is not yet
4002 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01004003 *
4004 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004005 */
4006struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
4007{
4008 struct server *tmpsrv;
4009 struct proxy *be;
4010
4011 if (!srv)
4012 return NULL;
4013
4014 be = srv->proxy;
4015 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01004016 /* we found the current server is the same, ignore it */
4017 if (srv == tmpsrv)
4018 continue;
4019
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004020 /* We want to compare the IP in the record with the IP of the servers in the
4021 * same backend, only if:
4022 * * DNS resolution is enabled on the server
4023 * * the hostname used for the resolution by our server is the same than the
4024 * one used for the server found in the backend
4025 * * the server found in the backend is not our current server
4026 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004027 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004028 if ((tmpsrv->hostname_dn == NULL) ||
4029 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
4030 (strcmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01004031 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004032 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004033 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004034 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004035
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004036 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01004037 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004038 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004039 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004040 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004041
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004042 /* At this point, we have 2 different servers using the same DNS hostname
4043 * for their respective resolution.
4044 */
4045 if (*ip_family == tmpsrv->addr.ss_family &&
4046 ((tmpsrv->addr.ss_family == AF_INET &&
4047 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
4048 (tmpsrv->addr.ss_family == AF_INET6 &&
4049 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004050 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004051 return tmpsrv;
4052 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004053 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004054 }
4055
Emeric Brune9fd6b52017-11-02 17:20:39 +01004056
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004057 return NULL;
4058}
4059
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004060/* Sets the server's address (srv->addr) from srv->hostname using the libc's
4061 * resolver. This is suited for initial address configuration. Returns 0 on
4062 * success otherwise a non-zero error code. In case of error, *err_code, if
4063 * not NULL, is filled up.
4064 */
4065int srv_set_addr_via_libc(struct server *srv, int *err_code)
4066{
4067 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004068 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01004069 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004070 return 1;
4071 }
4072 return 0;
4073}
4074
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004075/* Set the server's FDQN (->hostname) from <hostname>.
4076 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004077 *
4078 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004079 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004080int srv_set_fqdn(struct server *srv, const char *hostname, int dns_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004081{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004082 struct dns_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004083 char *hostname_dn;
4084 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004085
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02004086 /* Note that the server lock is already held. */
4087 if (!srv->resolvers)
4088 return -1;
4089
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004090 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004091 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004092 /* run time DNS resolution was not active for this server
4093 * and we can't enable it at run time for now.
4094 */
4095 if (!srv->dns_requester)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004096 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004097
4098 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004099 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004100 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004101 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
4102 hostname_dn, trash.size);
4103 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004104 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004105
Christopher Faulet67957bd2017-09-27 11:00:59 +02004106 resolution = srv->dns_requester->resolution;
4107 if (resolution &&
4108 resolution->hostname_dn &&
4109 !strcmp(resolution->hostname_dn, hostname_dn))
Christopher Fauletb2812a62017-10-04 16:17:58 +02004110 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004111
Christopher Faulet67957bd2017-09-27 11:00:59 +02004112 dns_unlink_resolution(srv->dns_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004113
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004114 free(srv->hostname);
4115 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004116 srv->hostname = strdup(hostname);
4117 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004118 srv->hostname_dn_len = hostname_dn_len;
4119 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004120 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004121
Olivier Houchard55dcdf42017-11-06 15:15:04 +01004122 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004123 goto err;
4124
4125 end:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004126 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004127 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004128 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02004129
4130 err:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004131 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004132 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02004133 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004134}
4135
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004136/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
4137 * from the state file. This is suited for initial address configuration.
4138 * Returns 0 on success otherwise a non-zero error code. In case of error,
4139 * *err_code, if not NULL, is filled up.
4140 */
4141static int srv_apply_lastaddr(struct server *srv, int *err_code)
4142{
4143 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
4144 if (err_code)
4145 *err_code |= ERR_WARN;
4146 return 1;
4147 }
4148 return 0;
4149}
4150
Willy Tarreau25e51522016-11-04 15:10:17 +01004151/* returns 0 if no error, otherwise a combination of ERR_* flags */
4152static int srv_iterate_initaddr(struct server *srv)
4153{
4154 int return_code = 0;
4155 int err_code;
4156 unsigned int methods;
4157
4158 methods = srv->init_addr_methods;
4159 if (!methods) { // default to "last,libc"
4160 srv_append_initaddr(&methods, SRV_IADDR_LAST);
4161 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
4162 }
4163
Willy Tarreau3eed10e2016-11-07 21:03:16 +01004164 /* "-dr" : always append "none" so that server addresses resolution
4165 * failures are silently ignored, this is convenient to validate some
4166 * configs out of their environment.
4167 */
4168 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
4169 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4170
Willy Tarreau25e51522016-11-04 15:10:17 +01004171 while (methods) {
4172 err_code = 0;
4173 switch (srv_get_next_initaddr(&methods)) {
4174 case SRV_IADDR_LAST:
4175 if (!srv->lastaddr)
4176 continue;
4177 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004178 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004179 return_code |= err_code;
4180 break;
4181
4182 case SRV_IADDR_LIBC:
4183 if (!srv->hostname)
4184 continue;
4185 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004186 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004187 return_code |= err_code;
4188 break;
4189
Willy Tarreau37ebe122016-11-04 15:17:58 +01004190 case SRV_IADDR_NONE:
4191 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004192 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004193 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
4194 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004195 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01004196 return return_code;
4197
Willy Tarreau4310d362016-11-02 15:05:56 +01004198 case SRV_IADDR_IP:
4199 ipcpy(&srv->init_addr, &srv->addr);
4200 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004201 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', falling back to configured address.\n",
4202 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
Willy Tarreau4310d362016-11-02 15:05:56 +01004203 }
Olivier Houchard4e694042017-03-14 20:01:29 +01004204 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01004205
Willy Tarreau25e51522016-11-04 15:10:17 +01004206 default: /* unhandled method */
4207 break;
4208 }
4209 }
4210
4211 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004212 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Willy Tarreau25e51522016-11-04 15:10:17 +01004213 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
4214 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01004215 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004216 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Willy Tarreau465b6e52016-11-07 19:19:22 +01004217 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
4218 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004219
4220 return_code |= ERR_ALERT | ERR_FATAL;
4221 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01004222out:
4223 srv_set_dyncookie(srv);
4224 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01004225}
4226
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004227/*
4228 * This function parses all backends and all servers within each backend
4229 * and performs servers' addr resolution based on information provided by:
4230 * - configuration file
4231 * - server-state file (states provided by an 'old' haproxy process)
4232 *
4233 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
4234 */
4235int srv_init_addr(void)
4236{
4237 struct proxy *curproxy;
4238 int return_code = 0;
4239
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004240 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004241 while (curproxy) {
4242 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004243
4244 /* servers are in backend only */
4245 if (!(curproxy->cap & PR_CAP_BE))
4246 goto srv_init_addr_next;
4247
Willy Tarreau25e51522016-11-04 15:10:17 +01004248 for (srv = curproxy->srv; srv; srv = srv->next)
Willy Tarreau3d609a72017-09-06 14:22:45 +02004249 if (srv->hostname)
4250 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004251
4252 srv_init_addr_next:
4253 curproxy = curproxy->next;
4254 }
4255
4256 return return_code;
4257}
4258
Willy Tarreau46b7f532018-08-21 11:54:26 +02004259/*
4260 * Must be called with the server lock held.
4261 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004262const 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 +02004263{
4264
Willy Tarreau83061a82018-07-13 11:56:34 +02004265 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004266
4267 msg = get_trash_chunk();
4268 chunk_reset(msg);
4269
Olivier Houchard8da5f982017-08-04 18:35:36 +02004270 if (server->hostname && !strcmp(fqdn, server->hostname)) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004271 chunk_appendf(msg, "no need to change the FDQN");
4272 goto out;
4273 }
4274
4275 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4276 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4277 goto out;
4278 }
4279
4280 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4281 server->proxy->id, server->id, server->hostname, fqdn);
4282
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004283 if (srv_set_fqdn(server, fqdn, dns_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004284 chunk_reset(msg);
4285 chunk_appendf(msg, "could not update %s/%s FQDN",
4286 server->proxy->id, server->id);
4287 goto out;
4288 }
4289
4290 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004291 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004292
4293 out:
4294 if (updater)
4295 chunk_appendf(msg, " by '%s'", updater);
4296 chunk_appendf(msg, "\n");
4297
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004298 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004299}
4300
4301
Willy Tarreau21b069d2016-11-23 17:15:08 +01004302/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4303 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004304 * 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 +01004305 * used for CLI commands requiring a server name.
4306 * Important: the <arg> is modified to remove the '/'.
4307 */
4308struct server *cli_find_server(struct appctx *appctx, char *arg)
4309{
4310 struct proxy *px;
4311 struct server *sv;
4312 char *line;
4313
4314 /* split "backend/server" and make <line> point to server */
4315 for (line = arg; *line; line++)
4316 if (*line == '/') {
4317 *line++ = '\0';
4318 break;
4319 }
4320
4321 if (!*line || !*arg) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004322 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004323 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004324 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004325 return NULL;
4326 }
4327
4328 if (!get_backend_server(arg, line, &px, &sv)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004329 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004330 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004331 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004332 return NULL;
4333 }
4334
4335 if (px->state == PR_STSTOPPED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004336 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004337 appctx->ctx.cli.msg = "Proxy is disabled.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004338 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004339 return NULL;
4340 }
4341
4342 return sv;
4343}
4344
William Lallemand222baf22016-11-19 02:00:33 +01004345
Willy Tarreau46b7f532018-08-21 11:54:26 +02004346/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004347static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004348{
4349 struct server *sv;
4350 const char *warning;
4351
4352 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4353 return 1;
4354
4355 sv = cli_find_server(appctx, args[2]);
4356 if (!sv)
4357 return 1;
4358
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004359 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02004360
William Lallemand222baf22016-11-19 02:00:33 +01004361 if (strcmp(args[3], "weight") == 0) {
4362 warning = server_parse_weight_change_request(sv, args[4]);
4363 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004364 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004365 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004366 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004367 }
4368 }
4369 else if (strcmp(args[3], "state") == 0) {
4370 if (strcmp(args[4], "ready") == 0)
4371 srv_adm_set_ready(sv);
4372 else if (strcmp(args[4], "drain") == 0)
4373 srv_adm_set_drain(sv);
4374 else if (strcmp(args[4], "maint") == 0)
4375 srv_adm_set_maint(sv);
4376 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004377 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004378 appctx->ctx.cli.msg = "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004379 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004380 }
4381 }
4382 else if (strcmp(args[3], "health") == 0) {
4383 if (sv->track) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004384 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004385 appctx->ctx.cli.msg = "cannot change health on a tracking server.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004386 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004387 }
4388 else if (strcmp(args[4], "up") == 0) {
4389 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004390 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004391 }
4392 else if (strcmp(args[4], "stopping") == 0) {
4393 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004394 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004395 }
4396 else if (strcmp(args[4], "down") == 0) {
4397 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004398 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004399 }
4400 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004401 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004402 appctx->ctx.cli.msg = "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004403 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004404 }
4405 }
4406 else if (strcmp(args[3], "agent") == 0) {
4407 if (!(sv->agent.state & CHK_ST_ENABLED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004408 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004409 appctx->ctx.cli.msg = "agent checks are not enabled on this server.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004410 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004411 }
4412 else if (strcmp(args[4], "up") == 0) {
4413 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004414 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004415 }
4416 else if (strcmp(args[4], "down") == 0) {
4417 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004418 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004419 }
4420 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004421 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004422 appctx->ctx.cli.msg = "'set server <srv> agent' expects 'up' or 'down'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004423 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004424 }
4425 }
Misiek2da082d2017-01-09 09:40:42 +01004426 else if (strcmp(args[3], "agent-addr") == 0) {
4427 if (!(sv->agent.state & CHK_ST_ENABLED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004428 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004429 appctx->ctx.cli.msg = "agent checks are not enabled on this server.\n";
4430 appctx->st0 = CLI_ST_PRINT;
4431 } else {
4432 if (str2ip(args[4], &sv->agent.addr) == NULL) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004433 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004434 appctx->ctx.cli.msg = "incorrect addr address given for agent.\n";
4435 appctx->st0 = CLI_ST_PRINT;
4436 }
4437 }
4438 }
4439 else if (strcmp(args[3], "agent-send") == 0) {
4440 if (!(sv->agent.state & CHK_ST_ENABLED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004441 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004442 appctx->ctx.cli.msg = "agent checks are not enabled on this server.\n";
4443 appctx->st0 = CLI_ST_PRINT;
4444 } else {
4445 char *nss = strdup(args[4]);
4446 if (!nss) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004447 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004448 appctx->ctx.cli.msg = "cannot allocate memory for new string.\n";
4449 appctx->st0 = CLI_ST_PRINT;
4450 } else {
4451 free(sv->agent.send_string);
4452 sv->agent.send_string = nss;
4453 sv->agent.send_string_len = strlen(args[4]);
4454 }
4455 }
4456 }
William Lallemand222baf22016-11-19 02:00:33 +01004457 else if (strcmp(args[3], "check-port") == 0) {
4458 int i = 0;
4459 if (strl2irc(args[4], strlen(args[4]), &i) != 0) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004460 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004461 appctx->ctx.cli.msg = "'set server <srv> check-port' expects an integer as argument.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004462 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004463 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004464 }
4465 if ((i < 0) || (i > 65535)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004466 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004467 appctx->ctx.cli.msg = "provided port is not valid.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004468 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004469 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004470 }
4471 /* prevent the update of port to 0 if MAPPORTS are in use */
4472 if ((sv->flags & SRV_F_MAPPORTS) && (i == 0)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004473 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004474 appctx->ctx.cli.msg = "can't unset 'port' since MAPPORTS is in use.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004475 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004476 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004477 }
4478 sv->check.port = i;
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004479 appctx->ctx.cli.severity = LOG_NOTICE;
William Lallemand222baf22016-11-19 02:00:33 +01004480 appctx->ctx.cli.msg = "health check port updated.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004481 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004482 }
4483 else if (strcmp(args[3], "addr") == 0) {
4484 char *addr = NULL;
4485 char *port = NULL;
4486 if (strlen(args[4]) == 0) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004487 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004488 appctx->ctx.cli.msg = "set server <b>/<s> addr requires an address and optionally a port.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004489 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004490 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004491 }
4492 else {
4493 addr = args[4];
4494 }
4495 if (strcmp(args[5], "port") == 0) {
4496 port = args[6];
4497 }
4498 warning = update_server_addr_port(sv, addr, port, "stats socket command");
4499 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004500 appctx->ctx.cli.severity = LOG_WARNING;
William Lallemand222baf22016-11-19 02:00:33 +01004501 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004502 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004503 }
4504 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
4505 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004506 else if (strcmp(args[3], "fqdn") == 0) {
4507 if (!*args[4]) {
Willy Tarreaua0752582017-11-05 10:17:49 +01004508 appctx->ctx.cli.severity = LOG_ERR;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004509 appctx->ctx.cli.msg = "set server <b>/<s> fqdn requires a FQDN.\n";
4510 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004511 goto out_unlock;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004512 }
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004513 warning = update_server_fqdn(sv, args[4], "stats socket command", 0);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004514 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004515 appctx->ctx.cli.severity = LOG_WARNING;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004516 appctx->ctx.cli.msg = warning;
4517 appctx->st0 = CLI_ST_PRINT;
4518 }
4519 }
William Lallemand222baf22016-11-19 02:00:33 +01004520 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004521 appctx->ctx.cli.severity = LOG_ERR;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004522 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 +01004523 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004524 }
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004525 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004526 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004527 return 1;
4528}
4529
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004530static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004531{
4532 struct stream_interface *si = appctx->owner;
4533 struct proxy *px;
4534 struct server *sv;
4535 char *line;
4536
4537
4538 /* split "backend/server" and make <line> point to server */
4539 for (line = args[2]; *line; line++)
4540 if (*line == '/') {
4541 *line++ = '\0';
4542 break;
4543 }
4544
4545 if (!*line) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004546 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand6b160942016-11-22 12:34:35 +01004547 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004548 appctx->st0 = CLI_ST_PRINT;
William Lallemand6b160942016-11-22 12:34:35 +01004549 return 1;
4550 }
4551
4552 if (!get_backend_server(args[2], line, &px, &sv)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004553 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand6b160942016-11-22 12:34:35 +01004554 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004555 appctx->st0 = CLI_ST_PRINT;
William Lallemand6b160942016-11-22 12:34:35 +01004556 return 1;
4557 }
4558
4559 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004560 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4561 sv->iweight);
4562 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004563 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004564 return 0;
4565 }
William Lallemand6b160942016-11-22 12:34:35 +01004566 return 1;
4567}
4568
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004569/* Parse a "set weight" command.
4570 *
4571 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004572 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004573static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004574{
4575 struct server *sv;
4576 const char *warning;
4577
4578 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4579 return 1;
4580
4581 sv = cli_find_server(appctx, args[2]);
4582 if (!sv)
4583 return 1;
4584
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004585 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4586
William Lallemand6b160942016-11-22 12:34:35 +01004587 warning = server_parse_weight_change_request(sv, args[3]);
4588 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004589 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand6b160942016-11-22 12:34:35 +01004590 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004591 appctx->st0 = CLI_ST_PRINT;
William Lallemand6b160942016-11-22 12:34:35 +01004592 }
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004593
4594 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4595
William Lallemand6b160942016-11-22 12:34:35 +01004596 return 1;
4597}
4598
Willy Tarreau46b7f532018-08-21 11:54:26 +02004599/* parse a "set maxconn server" command. It always returns 1.
4600 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004601 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004602 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004603static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004604{
4605 struct server *sv;
4606 const char *warning;
4607
4608 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4609 return 1;
4610
4611 sv = cli_find_server(appctx, args[3]);
4612 if (!sv)
4613 return 1;
4614
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004615 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4616
Willy Tarreaub8026272016-11-23 11:26:56 +01004617 warning = server_parse_maxconn_change_request(sv, args[4]);
4618 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004619 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreaub8026272016-11-23 11:26:56 +01004620 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004621 appctx->st0 = CLI_ST_PRINT;
Willy Tarreaub8026272016-11-23 11:26:56 +01004622 }
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004623
4624 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4625
Willy Tarreaub8026272016-11-23 11:26:56 +01004626 return 1;
4627}
William Lallemand6b160942016-11-22 12:34:35 +01004628
Willy Tarreau46b7f532018-08-21 11:54:26 +02004629/* parse a "disable agent" command. It always returns 1.
4630 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004631 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004632 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004633static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004634{
4635 struct server *sv;
4636
4637 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4638 return 1;
4639
4640 sv = cli_find_server(appctx, args[2]);
4641 if (!sv)
4642 return 1;
4643
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004644 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004645 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004646 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004647 return 1;
4648}
4649
Willy Tarreau46b7f532018-08-21 11:54:26 +02004650/* parse a "disable health" command. It always returns 1.
4651 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004652 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004653 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004654static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004655{
4656 struct server *sv;
4657
4658 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4659 return 1;
4660
4661 sv = cli_find_server(appctx, args[2]);
4662 if (!sv)
4663 return 1;
4664
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004665 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004666 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004667 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004668 return 1;
4669}
4670
Willy Tarreau46b7f532018-08-21 11:54:26 +02004671/* parse a "disable server" command. It always returns 1.
4672 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004673 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004674 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004675static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004676{
4677 struct server *sv;
4678
4679 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4680 return 1;
4681
4682 sv = cli_find_server(appctx, args[2]);
4683 if (!sv)
4684 return 1;
4685
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004686 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004687 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004688 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004689 return 1;
4690}
4691
Willy Tarreau46b7f532018-08-21 11:54:26 +02004692/* parse a "enable agent" command. It always returns 1.
4693 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004694 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004695 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004696static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004697{
4698 struct server *sv;
4699
4700 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4701 return 1;
4702
4703 sv = cli_find_server(appctx, args[2]);
4704 if (!sv)
4705 return 1;
4706
4707 if (!(sv->agent.state & CHK_ST_CONFIGURED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004708 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004709 appctx->ctx.cli.msg = "Agent was not configured on this server, cannot enable.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004710 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004711 return 1;
4712 }
4713
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004714 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004715 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004716 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004717 return 1;
4718}
4719
Willy Tarreau46b7f532018-08-21 11:54:26 +02004720/* parse a "enable health" command. It always returns 1.
4721 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004722 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004723 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004724static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004725{
4726 struct server *sv;
4727
4728 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4729 return 1;
4730
4731 sv = cli_find_server(appctx, args[2]);
4732 if (!sv)
4733 return 1;
4734
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004735 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004736 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004737 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004738 return 1;
4739}
4740
Willy Tarreau46b7f532018-08-21 11:54:26 +02004741/* parse a "enable server" command. It always returns 1.
4742 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004743 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004744 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004745static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004746{
4747 struct server *sv;
4748
4749 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4750 return 1;
4751
4752 sv = cli_find_server(appctx, args[2]);
4753 if (!sv)
4754 return 1;
4755
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004756 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004757 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004758 if (!(sv->flags & SRV_F_COOKIESET)
4759 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4760 sv->cookie)
4761 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004762 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004763 return 1;
4764}
4765
William Lallemand222baf22016-11-19 02:00:33 +01004766/* register cli keywords */
4767static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004768 { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004769 { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004770 { { "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 +01004771 { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004772 { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004773 { { "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 +01004774 { { "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 +01004775 { { "set", "server", NULL }, "set server : change a server's state, weight or address", cli_parse_set_server },
William Lallemand6b160942016-11-22 12:34:35 +01004776 { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight },
4777 { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight },
4778
William Lallemand222baf22016-11-19 02:00:33 +01004779 {{},}
4780}};
4781
Willy Tarreau0108d902018-11-25 19:14:37 +01004782INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004783
Emeric Brun64cc49c2017-10-03 14:46:45 +02004784/*
4785 * This function applies server's status changes, it is
4786 * is designed to be called asynchronously.
4787 *
Willy Tarreau46b7f532018-08-21 11:54:26 +02004788 * Must be called with the server lock held.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004789 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004790static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004791{
4792 struct check *check = &s->check;
4793 int xferred;
4794 struct proxy *px = s->proxy;
4795 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4796 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4797 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004798 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004799
Emeric Brun64cc49c2017-10-03 14:46:45 +02004800 /* If currently main is not set we try to apply pending state changes */
4801 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4802 int next_admin;
4803
4804 /* Backup next admin */
4805 next_admin = s->next_admin;
4806
4807 /* restore current admin state */
4808 s->next_admin = s->cur_admin;
4809
4810 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4811 s->last_change = now.tv_sec;
4812 if (s->proxy->lbprm.set_server_status_down)
4813 s->proxy->lbprm.set_server_status_down(s);
4814
4815 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4816 srv_shutdown_streams(s, SF_ERR_DOWN);
4817
4818 /* we might have streams queued on this server and waiting for
4819 * a connection. Those which are redispatchable will be queued
4820 * to another server or to the proxy itself.
4821 */
4822 xferred = pendconn_redistribute(s);
4823
4824 tmptrash = alloc_trash_chunk();
4825 if (tmptrash) {
4826 chunk_printf(tmptrash,
4827 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4828 s->proxy->id, s->id);
4829
Emeric Brun5a133512017-10-19 14:42:30 +02004830 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004831 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004832
4833 /* we don't send an alert if the server was previously paused */
4834 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004835 send_log(s->proxy, log_level, "%s.\n",
4836 tmptrash->area);
4837 send_email_alert(s, log_level, "%s",
4838 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004839 free_trash_chunk(tmptrash);
4840 tmptrash = NULL;
4841 }
4842 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4843 set_backend_down(s->proxy);
4844
4845 s->counters.down_trans++;
4846 }
4847 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4848 s->last_change = now.tv_sec;
4849 if (s->proxy->lbprm.set_server_status_down)
4850 s->proxy->lbprm.set_server_status_down(s);
4851
4852 /* we might have streams queued on this server and waiting for
4853 * a connection. Those which are redispatchable will be queued
4854 * to another server or to the proxy itself.
4855 */
4856 xferred = pendconn_redistribute(s);
4857
4858 tmptrash = alloc_trash_chunk();
4859 if (tmptrash) {
4860 chunk_printf(tmptrash,
4861 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4862 s->proxy->id, s->id);
4863
Emeric Brun5a133512017-10-19 14:42:30 +02004864 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004865
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004866 ha_warning("%s.\n", tmptrash->area);
4867 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4868 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004869 free_trash_chunk(tmptrash);
4870 tmptrash = NULL;
4871 }
4872
4873 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4874 set_backend_down(s->proxy);
4875 }
4876 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4877 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4878 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4879 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4880 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4881 s->proxy->last_change = now.tv_sec;
4882 }
4883
4884 if (s->next_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
4885 s->down_time += now.tv_sec - s->last_change;
4886
4887 s->last_change = now.tv_sec;
4888 if (s->next_state == SRV_ST_STARTING)
4889 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4890
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004891 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004892 /* now propagate the status change to any LB algorithms */
4893 if (px->lbprm.update_server_eweight)
4894 px->lbprm.update_server_eweight(s);
4895 else if (srv_willbe_usable(s)) {
4896 if (px->lbprm.set_server_status_up)
4897 px->lbprm.set_server_status_up(s);
4898 }
4899 else {
4900 if (px->lbprm.set_server_status_down)
4901 px->lbprm.set_server_status_down(s);
4902 }
4903
4904 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4905 * and it's not a backup server and its effective weight is > 0,
4906 * then it can accept new connections, so we shut down all streams
4907 * on all backup servers.
4908 */
4909 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4910 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4911 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4912
4913 /* check if we can handle some connections queued at the proxy. We
4914 * will take as many as we can handle.
4915 */
4916 xferred = pendconn_grab_from_px(s);
4917
4918 tmptrash = alloc_trash_chunk();
4919 if (tmptrash) {
4920 chunk_printf(tmptrash,
4921 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
4922 s->proxy->id, s->id);
4923
Emeric Brun5a133512017-10-19 14:42:30 +02004924 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004925 ha_warning("%s.\n", tmptrash->area);
4926 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4927 tmptrash->area);
4928 send_email_alert(s, LOG_NOTICE, "%s",
4929 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004930 free_trash_chunk(tmptrash);
4931 tmptrash = NULL;
4932 }
4933
4934 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4935 set_backend_down(s->proxy);
4936 }
4937 else if (s->cur_eweight != s->next_eweight) {
4938 /* now propagate the status change to any LB algorithms */
4939 if (px->lbprm.update_server_eweight)
4940 px->lbprm.update_server_eweight(s);
4941 else if (srv_willbe_usable(s)) {
4942 if (px->lbprm.set_server_status_up)
4943 px->lbprm.set_server_status_up(s);
4944 }
4945 else {
4946 if (px->lbprm.set_server_status_down)
4947 px->lbprm.set_server_status_down(s);
4948 }
4949
4950 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4951 set_backend_down(s->proxy);
4952 }
4953
4954 s->next_admin = next_admin;
4955 }
4956
Emeric Brun5a133512017-10-19 14:42:30 +02004957 /* reset operational state change */
4958 *s->op_st_chg.reason = 0;
4959 s->op_st_chg.status = s->op_st_chg.code = -1;
4960 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004961
4962 /* Now we try to apply pending admin changes */
4963
4964 /* Maintenance must also disable health checks */
4965 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
4966 if (s->check.state & CHK_ST_ENABLED) {
4967 s->check.state |= CHK_ST_PAUSED;
4968 check->health = 0;
4969 }
4970
4971 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02004972 tmptrash = alloc_trash_chunk();
4973 if (tmptrash) {
4974 chunk_printf(tmptrash,
4975 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
4976 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4977 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02004978
Olivier Houchard796a2b32017-10-24 17:42:47 +02004979 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02004980
Olivier Houchard796a2b32017-10-24 17:42:47 +02004981 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004982 ha_warning("%s.\n", tmptrash->area);
4983 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4984 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02004985 }
4986 free_trash_chunk(tmptrash);
4987 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004988 }
Emeric Brun8f298292017-12-06 16:47:17 +01004989 /* commit new admin status */
4990
4991 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004992 }
4993 else { /* server was still running */
4994 check->health = 0; /* failure */
4995 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01004996
4997 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004998 if (s->proxy->lbprm.set_server_status_down)
4999 s->proxy->lbprm.set_server_status_down(s);
5000
Emeric Brun64cc49c2017-10-03 14:46:45 +02005001 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
5002 srv_shutdown_streams(s, SF_ERR_DOWN);
5003
5004 /* we might have streams queued on this server and waiting for
5005 * a connection. Those which are redispatchable will be queued
5006 * to another server or to the proxy itself.
5007 */
5008 xferred = pendconn_redistribute(s);
5009
5010 tmptrash = alloc_trash_chunk();
5011 if (tmptrash) {
5012 chunk_printf(tmptrash,
5013 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
5014 s->flags & SRV_F_BACKUP ? "Backup " : "",
5015 s->proxy->id, s->id,
5016 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5017
5018 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
5019
5020 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005021 ha_warning("%s.\n", tmptrash->area);
5022 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
5023 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005024 }
5025 free_trash_chunk(tmptrash);
5026 tmptrash = NULL;
5027 }
5028 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5029 set_backend_down(s->proxy);
5030
5031 s->counters.down_trans++;
5032 }
5033 }
5034 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
5035 /* OK here we're leaving maintenance, we have many things to check,
5036 * because the server might possibly be coming back up depending on
5037 * its state. In practice, leaving maintenance means that we should
5038 * immediately turn to UP (more or less the slowstart) under the
5039 * following conditions :
5040 * - server is neither checked nor tracked
5041 * - server tracks another server which is not checked
5042 * - server tracks another server which is already up
5043 * Which sums up as something simpler :
5044 * "either the tracking server is up or the server's checks are disabled
5045 * or up". Otherwise we only re-enable health checks. There's a special
5046 * case associated to the stopping state which can be inherited. Note
5047 * that the server might still be in drain mode, which is naturally dealt
5048 * with by the lower level functions.
5049 */
5050
5051 if (s->check.state & CHK_ST_ENABLED) {
5052 s->check.state &= ~CHK_ST_PAUSED;
5053 check->health = check->rise; /* start OK but check immediately */
5054 }
5055
5056 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
5057 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
5058 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
5059 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
5060 s->next_state = SRV_ST_STOPPING;
5061 }
5062 else {
5063 s->next_state = SRV_ST_STARTING;
5064 if (s->slowstart > 0)
5065 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5066 else
5067 s->next_state = SRV_ST_RUNNING;
5068 }
5069
5070 }
5071
5072 tmptrash = alloc_trash_chunk();
5073 if (tmptrash) {
5074 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5075 chunk_printf(tmptrash,
5076 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
5077 s->flags & SRV_F_BACKUP ? "Backup " : "",
5078 s->proxy->id, s->id,
5079 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5080 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5081 }
5082 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5083 chunk_printf(tmptrash,
5084 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
5085 s->flags & SRV_F_BACKUP ? "Backup " : "",
5086 s->proxy->id, s->id, s->hostname,
5087 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5088 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5089 }
5090 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5091 chunk_printf(tmptrash,
5092 "%sServer %s/%s is %s/%s (leaving maintenance)",
5093 s->flags & SRV_F_BACKUP ? "Backup " : "",
5094 s->proxy->id, s->id,
5095 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5096 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5097 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005098 ha_warning("%s.\n", tmptrash->area);
5099 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5100 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005101 free_trash_chunk(tmptrash);
5102 tmptrash = NULL;
5103 }
5104
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005105 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005106 /* now propagate the status change to any LB algorithms */
5107 if (px->lbprm.update_server_eweight)
5108 px->lbprm.update_server_eweight(s);
5109 else if (srv_willbe_usable(s)) {
5110 if (px->lbprm.set_server_status_up)
5111 px->lbprm.set_server_status_up(s);
5112 }
5113 else {
5114 if (px->lbprm.set_server_status_down)
5115 px->lbprm.set_server_status_down(s);
5116 }
5117
5118 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5119 set_backend_down(s->proxy);
5120
Willy Tarreau6a78e612018-08-07 10:14:53 +02005121 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5122 * and it's not a backup server and its effective weight is > 0,
5123 * then it can accept new connections, so we shut down all streams
5124 * on all backup servers.
5125 */
5126 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5127 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5128 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5129
5130 /* check if we can handle some connections queued at the proxy. We
5131 * will take as many as we can handle.
5132 */
5133 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005134 }
5135 else if (s->next_admin & SRV_ADMF_MAINT) {
5136 /* remaining in maintenance mode, let's inform precisely about the
5137 * situation.
5138 */
5139 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5140 tmptrash = alloc_trash_chunk();
5141 if (tmptrash) {
5142 chunk_printf(tmptrash,
5143 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5144 s->flags & SRV_F_BACKUP ? "Backup " : "",
5145 s->proxy->id, s->id);
5146
5147 if (s->track) /* normally it's mandatory here */
5148 chunk_appendf(tmptrash, " via %s/%s",
5149 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005150 ha_warning("%s.\n", tmptrash->area);
5151 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5152 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005153 free_trash_chunk(tmptrash);
5154 tmptrash = NULL;
5155 }
5156 }
5157 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5158 tmptrash = alloc_trash_chunk();
5159 if (tmptrash) {
5160 chunk_printf(tmptrash,
5161 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5162 s->flags & SRV_F_BACKUP ? "Backup " : "",
5163 s->proxy->id, s->id, s->hostname);
5164
5165 if (s->track) /* normally it's mandatory here */
5166 chunk_appendf(tmptrash, " via %s/%s",
5167 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005168 ha_warning("%s.\n", tmptrash->area);
5169 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5170 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005171 free_trash_chunk(tmptrash);
5172 tmptrash = NULL;
5173 }
5174 }
5175 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5176 tmptrash = alloc_trash_chunk();
5177 if (tmptrash) {
5178 chunk_printf(tmptrash,
5179 "%sServer %s/%s remains in forced maintenance",
5180 s->flags & SRV_F_BACKUP ? "Backup " : "",
5181 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005182 ha_warning("%s.\n", tmptrash->area);
5183 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5184 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005185 free_trash_chunk(tmptrash);
5186 tmptrash = NULL;
5187 }
5188 }
5189 /* don't report anything when leaving drain mode and remaining in maintenance */
5190
5191 s->cur_admin = s->next_admin;
5192 }
5193
5194 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5195 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5196 /* drain state is applied only if not yet in maint */
5197
5198 s->last_change = now.tv_sec;
5199 if (px->lbprm.set_server_status_down)
5200 px->lbprm.set_server_status_down(s);
5201
5202 /* we might have streams queued on this server and waiting for
5203 * a connection. Those which are redispatchable will be queued
5204 * to another server or to the proxy itself.
5205 */
5206 xferred = pendconn_redistribute(s);
5207
5208 tmptrash = alloc_trash_chunk();
5209 if (tmptrash) {
5210 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5211 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5212 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5213
5214 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5215
5216 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005217 ha_warning("%s.\n", tmptrash->area);
5218 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5219 tmptrash->area);
5220 send_email_alert(s, LOG_NOTICE, "%s",
5221 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005222 }
5223 free_trash_chunk(tmptrash);
5224 tmptrash = NULL;
5225 }
5226
5227 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5228 set_backend_down(s->proxy);
5229 }
5230 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5231 /* OK completely leaving drain mode */
5232 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5233 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5234 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5235 s->proxy->last_change = now.tv_sec;
5236 }
5237
5238 if (s->last_change < now.tv_sec) // ignore negative times
5239 s->down_time += now.tv_sec - s->last_change;
5240 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005241 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005242
5243 tmptrash = alloc_trash_chunk();
5244 if (tmptrash) {
5245 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5246 chunk_printf(tmptrash,
5247 "%sServer %s/%s is %s (leaving forced drain)",
5248 s->flags & SRV_F_BACKUP ? "Backup " : "",
5249 s->proxy->id, s->id,
5250 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5251 }
5252 else {
5253 chunk_printf(tmptrash,
5254 "%sServer %s/%s is %s (leaving drain)",
5255 s->flags & SRV_F_BACKUP ? "Backup " : "",
5256 s->proxy->id, s->id,
5257 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5258 if (s->track) /* normally it's mandatory here */
5259 chunk_appendf(tmptrash, " via %s/%s",
5260 s->track->proxy->id, s->track->id);
5261 }
5262
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005263 ha_warning("%s.\n", tmptrash->area);
5264 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5265 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005266 free_trash_chunk(tmptrash);
5267 tmptrash = NULL;
5268 }
5269
5270 /* now propagate the status change to any LB algorithms */
5271 if (px->lbprm.update_server_eweight)
5272 px->lbprm.update_server_eweight(s);
5273 else if (srv_willbe_usable(s)) {
5274 if (px->lbprm.set_server_status_up)
5275 px->lbprm.set_server_status_up(s);
5276 }
5277 else {
5278 if (px->lbprm.set_server_status_down)
5279 px->lbprm.set_server_status_down(s);
5280 }
5281 }
5282 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5283 /* remaining in drain mode after removing one of its flags */
5284
5285 tmptrash = alloc_trash_chunk();
5286 if (tmptrash) {
5287 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5288 chunk_printf(tmptrash,
5289 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5290 s->flags & SRV_F_BACKUP ? "Backup " : "",
5291 s->proxy->id, s->id);
5292
5293 if (s->track) /* normally it's mandatory here */
5294 chunk_appendf(tmptrash, " via %s/%s",
5295 s->track->proxy->id, s->track->id);
5296 }
5297 else {
5298 chunk_printf(tmptrash,
5299 "%sServer %s/%s remains in forced drain mode",
5300 s->flags & SRV_F_BACKUP ? "Backup " : "",
5301 s->proxy->id, s->id);
5302 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005303 ha_warning("%s.\n", tmptrash->area);
5304 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5305 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005306 free_trash_chunk(tmptrash);
5307 tmptrash = NULL;
5308 }
5309
5310 /* commit new admin status */
5311
5312 s->cur_admin = s->next_admin;
5313 }
5314 }
5315
5316 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005317 *s->adm_st_chg_cause = 0;
5318}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005319
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005320static struct task *cleanup_idle_connections(struct task *task, void *context, unsigned short state)
5321{
5322 struct server *srv = context;
5323 struct connection *conn, *conn_back;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005324 unsigned int to_destroy = srv->curr_idle_conns / 2 + (srv->curr_idle_conns & 1);
5325 unsigned int i = 0;
5326
5327
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005328
5329 list_for_each_entry_safe(conn, conn_back, &srv->idle_orphan_conns[tid], list) {
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005330 if (i == to_destroy)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005331 break;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005332 conn->mux->destroy(conn);
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005333 i++;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005334 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005335 if (!LIST_ISEMPTY(&srv->idle_orphan_conns[tid]))
5336 task_schedule(task, tick_add(now_ms, srv->pool_purge_delay));
5337 else
5338 task->expire = TICK_ETERNITY;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005339 return task;
5340}
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005341/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005342 * Local variables:
5343 * c-indent-level: 8
5344 * c-basic-offset: 8
5345 * End:
5346 */