blob: f0d510ac80a5a49136b9b2877c6276bdc3e7a311 [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>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010022#include <common/namespace.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020023#include <common/time.h>
24
William Lallemand222baf22016-11-19 02:00:33 +010025#include <types/applet.h>
26#include <types/cli.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020027#include <types/global.h>
Willy Tarreau21b069d2016-11-23 17:15:08 +010028#include <types/cli.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020029#include <types/dns.h>
William Lallemand222baf22016-11-19 02:00:33 +010030#include <types/stats.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020031
William Lallemand222baf22016-11-19 02:00:33 +010032#include <proto/applet.h>
33#include <proto/cli.h>
Simon Hormanb1900d52015-01-30 11:22:54 +090034#include <proto/checks.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020035#include <proto/port_range.h>
36#include <proto/protocol.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020037#include <proto/queue.h>
Frédéric Lécaille9a146de2017-03-20 14:54:41 +010038#include <proto/sample.h>
Willy Tarreauec6c5df2008-07-15 00:22:45 +020039#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020040#include <proto/stream.h>
William Lallemand222baf22016-11-19 02:00:33 +010041#include <proto/stream_interface.h>
42#include <proto/stats.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020043#include <proto/task.h>
Baptiste Assmanna68ca962015-04-14 01:15:08 +020044#include <proto/dns.h>
David Carlier6f182082017-04-03 21:58:04 +010045#include <netinet/tcp.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020046
Emeric Brun64cc49c2017-10-03 14:46:45 +020047struct list updated_servers = LIST_HEAD_INIT(updated_servers);
Christopher Faulet9dcf9b62017-11-13 10:34:01 +010048__decl_hathreads(HA_SPINLOCK_T updated_servers_lock);
Christopher Faulet5d42e092017-10-16 12:00:40 +020049
50static void srv_register_update(struct server *srv);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020051static void srv_update_state(struct server *srv, int version, char **params);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +010052static int srv_apply_lastaddr(struct server *srv, int *err_code);
Olivier Houchardd16bfe62017-10-31 15:21:19 +010053static int srv_set_fqdn(struct server *srv, const char *fqdn, int dns_locked);
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
114void srv_set_dyncookie(struct server *s)
115{
116 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100117 char *tmpbuf;
118 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100119 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100120 size_t buffer_len;
121 int addr_len;
122 int port;
123
124 if ((s->flags & SRV_F_COOKIESET) ||
125 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
126 s->proxy->dyncookie_key == NULL)
127 return;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100128 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100129
130 if (s->addr.ss_family != AF_INET &&
131 s->addr.ss_family != AF_INET6)
132 return;
133 /*
134 * Buffer to calculate the cookie value.
135 * The buffer contains the secret key + the server IP address
136 * + the TCP port.
137 */
138 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
139 /*
140 * The TCP port should use only 2 bytes, but is stored in
141 * an unsigned int in struct server, so let's use 4, to be
142 * on the safe side.
143 */
144 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200145 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100146 memcpy(tmpbuf, p->dyncookie_key, key_len);
147 memcpy(&(tmpbuf[key_len]),
148 s->addr.ss_family == AF_INET ?
149 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
150 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
151 addr_len);
152 /*
153 * Make sure it's the same across all the load balancers,
154 * no matter their endianness.
155 */
156 port = htonl(s->svc_port);
157 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
158 hash_value = XXH64(tmpbuf, buffer_len, 0);
159 memprintf(&s->cookie, "%016llx", hash_value);
160 if (!s->cookie)
161 return;
162 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100163
164 /* Don't bother checking if the dyncookie is duplicated if
165 * the server is marked as "disabled", maybe it doesn't have
166 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100167 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100168 if (!(s->next_admin & SRV_ADMF_FMAINT))
169 srv_check_for_dup_dyncookie(s);
Olivier Houchard4e694042017-03-14 20:01:29 +0100170}
171
Willy Tarreau21faa912012-10-10 08:27:36 +0200172/*
173 * Registers the server keyword list <kwl> as a list of valid keywords for next
174 * parsing sessions.
175 */
176void srv_register_keywords(struct srv_kw_list *kwl)
177{
178 LIST_ADDQ(&srv_keywords.list, &kwl->list);
179}
180
181/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
182 * keyword is found with a NULL ->parse() function, then an attempt is made to
183 * find one with a valid ->parse() function. This way it is possible to declare
184 * platform-dependant, known keywords as NULL, then only declare them as valid
185 * if some options are met. Note that if the requested keyword contains an
186 * opening parenthesis, everything from this point is ignored.
187 */
188struct srv_kw *srv_find_kw(const char *kw)
189{
190 int index;
191 const char *kwend;
192 struct srv_kw_list *kwl;
193 struct srv_kw *ret = NULL;
194
195 kwend = strchr(kw, '(');
196 if (!kwend)
197 kwend = kw + strlen(kw);
198
199 list_for_each_entry(kwl, &srv_keywords.list, list) {
200 for (index = 0; kwl->kw[index].kw != NULL; index++) {
201 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
202 kwl->kw[index].kw[kwend-kw] == 0) {
203 if (kwl->kw[index].parse)
204 return &kwl->kw[index]; /* found it !*/
205 else
206 ret = &kwl->kw[index]; /* may be OK */
207 }
208 }
209 }
210 return ret;
211}
212
213/* Dumps all registered "server" keywords to the <out> string pointer. The
214 * unsupported keywords are only dumped if their supported form was not
215 * found.
216 */
217void srv_dump_kws(char **out)
218{
219 struct srv_kw_list *kwl;
220 int index;
221
222 *out = NULL;
223 list_for_each_entry(kwl, &srv_keywords.list, list) {
224 for (index = 0; kwl->kw[index].kw != NULL; index++) {
225 if (kwl->kw[index].parse ||
226 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
227 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
228 kwl->scope,
229 kwl->kw[index].kw,
230 kwl->kw[index].skip ? " <arg>" : "",
231 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
232 kwl->kw[index].parse ? "" : " (not supported)");
233 }
234 }
235 }
236}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100237
Frédéric Lécaille6e5e0d82017-03-20 16:30:18 +0100238/* Parse the "addr" server keyword */
239static int srv_parse_addr(char **args, int *cur_arg,
240 struct proxy *curproxy, struct server *newsrv, char **err)
241{
242 char *errmsg, *arg;
243 struct sockaddr_storage *sk;
244 int port1, port2;
245 struct protocol *proto;
246
247 errmsg = NULL;
248 arg = args[*cur_arg + 1];
249
250 if (!*arg) {
251 memprintf(err, "'%s' expects <ipv4|ipv6> as argument.\n", args[*cur_arg]);
252 goto err;
253 }
254
255 sk = str2sa_range(arg, NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
256 if (!sk) {
257 memprintf(err, "'%s' : %s", args[*cur_arg], errmsg);
258 goto err;
259 }
260
261 proto = protocol_by_family(sk->ss_family);
262 if (!proto || !proto->connect) {
263 memprintf(err, "'%s %s' : connect() not supported for this address family.\n",
264 args[*cur_arg], arg);
265 goto err;
266 }
267
268 if (port1 != port2) {
269 memprintf(err, "'%s' : port ranges and offsets are not allowed in '%s'\n",
270 args[*cur_arg], arg);
271 goto err;
272 }
273
274 newsrv->check.addr = newsrv->agent.addr = *sk;
275 newsrv->flags |= SRV_F_CHECKADDR;
276 newsrv->flags |= SRV_F_AGENTADDR;
277
278 return 0;
279
280 err:
281 free(errmsg);
282 return ERR_ALERT | ERR_FATAL;
283}
284
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +0100285/* Parse the "agent-check" server keyword */
286static int srv_parse_agent_check(char **args, int *cur_arg,
287 struct proxy *curproxy, struct server *newsrv, char **err)
288{
289 newsrv->do_agent = 1;
290 return 0;
291}
292
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100293/* Parse the "backup" server keyword */
294static int srv_parse_backup(char **args, int *cur_arg,
295 struct proxy *curproxy, struct server *newsrv, char **err)
296{
297 newsrv->flags |= SRV_F_BACKUP;
298 return 0;
299}
300
Frédéric Lécaille65aa3562017-03-14 11:20:13 +0100301/* Parse the "check" server keyword */
302static int srv_parse_check(char **args, int *cur_arg,
303 struct proxy *curproxy, struct server *newsrv, char **err)
304{
305 newsrv->do_check = 1;
306 return 0;
307}
308
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100309/* Parse the "check-send-proxy" server keyword */
310static int srv_parse_check_send_proxy(char **args, int *cur_arg,
311 struct proxy *curproxy, struct server *newsrv, char **err)
312{
313 newsrv->check.send_proxy = 1;
314 return 0;
315}
316
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100317/* Parse the "cookie" server keyword */
318static int srv_parse_cookie(char **args, int *cur_arg,
319 struct proxy *curproxy, struct server *newsrv, char **err)
320{
321 char *arg;
322
323 arg = args[*cur_arg + 1];
324 if (!*arg) {
325 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
326 return ERR_ALERT | ERR_FATAL;
327 }
328
329 free(newsrv->cookie);
330 newsrv->cookie = strdup(arg);
331 newsrv->cklen = strlen(arg);
332 newsrv->flags |= SRV_F_COOKIESET;
333 return 0;
334}
335
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100336/* Parse the "disabled" server keyword */
337static int srv_parse_disabled(char **args, int *cur_arg,
338 struct proxy *curproxy, struct server *newsrv, char **err)
339{
Emeric Brun52a91d32017-08-31 14:41:55 +0200340 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
341 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100342 newsrv->check.state |= CHK_ST_PAUSED;
343 newsrv->check.health = 0;
344 return 0;
345}
346
347/* Parse the "enabled" server keyword */
348static int srv_parse_enabled(char **args, int *cur_arg,
349 struct proxy *curproxy, struct server *newsrv, char **err)
350{
Emeric Brun52a91d32017-08-31 14:41:55 +0200351 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
352 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100353 newsrv->check.state &= ~CHK_ST_PAUSED;
354 newsrv->check.health = newsrv->check.rise;
355 return 0;
356}
357
Willy Tarreaudff55432012-10-10 17:51:05 +0200358/* parse the "id" server keyword */
359static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
360{
361 struct eb32_node *node;
362
363 if (!*args[*cur_arg + 1]) {
364 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
365 return ERR_ALERT | ERR_FATAL;
366 }
367
368 newsrv->puid = atol(args[*cur_arg + 1]);
369 newsrv->conf.id.key = newsrv->puid;
370
371 if (newsrv->puid <= 0) {
372 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
373 return ERR_ALERT | ERR_FATAL;
374 }
375
376 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
377 if (node) {
378 struct server *target = container_of(node, struct server, conf.id);
379 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
380 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
381 target->id);
382 return ERR_ALERT | ERR_FATAL;
383 }
384
385 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200386 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200387 return 0;
388}
389
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100390/* Parse the "namespace" server keyword */
391static int srv_parse_namespace(char **args, int *cur_arg,
392 struct proxy *curproxy, struct server *newsrv, char **err)
393{
394#ifdef CONFIG_HAP_NS
395 char *arg;
396
397 arg = args[*cur_arg + 1];
398 if (!*arg) {
399 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
400 return ERR_ALERT | ERR_FATAL;
401 }
402
403 if (!strcmp(arg, "*")) {
404 /* Use the namespace associated with the connection (if present). */
405 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
406 return 0;
407 }
408
409 /*
410 * As this parser may be called several times for the same 'default-server'
411 * object, or for a new 'server' instance deriving from a 'default-server'
412 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
413 */
414 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
415
416 newsrv->netns = netns_store_lookup(arg, strlen(arg));
417 if (!newsrv->netns)
418 newsrv->netns = netns_store_insert(arg);
419
420 if (!newsrv->netns) {
421 memprintf(err, "Cannot open namespace '%s'", arg);
422 return ERR_ALERT | ERR_FATAL;
423 }
424
425 return 0;
426#else
427 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
428 return ERR_ALERT | ERR_FATAL;
429#endif
430}
431
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +0100432/* Parse the "no-agent-check" server keyword */
433static int srv_parse_no_agent_check(char **args, int *cur_arg,
434 struct proxy *curproxy, struct server *newsrv, char **err)
435{
436 free_check(&newsrv->agent);
437 newsrv->agent.inter = 0;
438 newsrv->agent.port = 0;
439 newsrv->agent.state &= ~CHK_ST_CONFIGURED & ~CHK_ST_ENABLED & ~CHK_ST_AGENT;
440 newsrv->do_agent = 0;
441 return 0;
442}
443
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100444/* Parse the "no-backup" server keyword */
445static int srv_parse_no_backup(char **args, int *cur_arg,
446 struct proxy *curproxy, struct server *newsrv, char **err)
447{
448 newsrv->flags &= ~SRV_F_BACKUP;
449 return 0;
450}
451
Frédéric Lécaille65aa3562017-03-14 11:20:13 +0100452/* Parse the "no-check" server keyword */
453static int srv_parse_no_check(char **args, int *cur_arg,
454 struct proxy *curproxy, struct server *newsrv, char **err)
455{
456 free_check(&newsrv->check);
457 newsrv->check.state &= ~CHK_ST_CONFIGURED & ~CHK_ST_ENABLED;
458 newsrv->do_check = 0;
459 return 0;
460}
461
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100462/* Parse the "no-check-send-proxy" server keyword */
463static int srv_parse_no_check_send_proxy(char **args, int *cur_arg,
464 struct proxy *curproxy, struct server *newsrv, char **err)
465{
466 newsrv->check.send_proxy = 0;
467 return 0;
468}
469
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100470/* Disable server PROXY protocol flags. */
471static int inline srv_disable_pp_flags(struct server *srv, unsigned int flags)
472{
473 srv->pp_opts &= ~flags;
474 return 0;
475}
476
477/* Parse the "no-send-proxy" server keyword */
478static int srv_parse_no_send_proxy(char **args, int *cur_arg,
479 struct proxy *curproxy, struct server *newsrv, char **err)
480{
481 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
482}
483
484/* Parse the "no-send-proxy-v2" server keyword */
485static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
486 struct proxy *curproxy, struct server *newsrv, char **err)
487{
488 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
489}
490
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100491/* Parse the "non-stick" server keyword */
492static int srv_parse_non_stick(char **args, int *cur_arg,
493 struct proxy *curproxy, struct server *newsrv, char **err)
494{
495 newsrv->flags |= SRV_F_NON_STICK;
496 return 0;
497}
498
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100499/* Enable server PROXY protocol flags. */
500static int inline srv_enable_pp_flags(struct server *srv, unsigned int flags)
501{
502 srv->pp_opts |= flags;
503 return 0;
504}
505
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100506/* parse the "proxy-v2-options" */
507static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
508 struct proxy *px, struct server *newsrv, char **err)
509{
510 char *p, *n;
511 for (p = args[*cur_arg+1]; p; p = n) {
512 n = strchr(p, ',');
513 if (n)
514 *n++ = '\0';
515 if (!strcmp(p, "ssl")) {
516 newsrv->pp_opts |= SRV_PP_V2_SSL;
517 } else if (!strcmp(p, "cert-cn")) {
518 newsrv->pp_opts |= SRV_PP_V2_SSL;
519 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100520 } else if (!strcmp(p, "cert-key")) {
521 newsrv->pp_opts |= SRV_PP_V2_SSL;
522 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
523 } else if (!strcmp(p, "cert-sig")) {
524 newsrv->pp_opts |= SRV_PP_V2_SSL;
525 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
526 } else if (!strcmp(p, "ssl-cipher")) {
527 newsrv->pp_opts |= SRV_PP_V2_SSL;
528 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100529 } else if (!strcmp(p, "authority")) {
530 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100531 } else if (!strcmp(p, "crc32c")) {
532 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100533 } else
534 goto fail;
535 }
536 return 0;
537 fail:
538 if (err)
539 memprintf(err, "'%s' : proxy v2 option not implemented", p);
540 return ERR_ALERT | ERR_FATAL;
541}
542
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100543/* Parse the "observe" server keyword */
544static int srv_parse_observe(char **args, int *cur_arg,
545 struct proxy *curproxy, struct server *newsrv, char **err)
546{
547 char *arg;
548
549 arg = args[*cur_arg + 1];
550 if (!*arg) {
551 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
552 return ERR_ALERT | ERR_FATAL;
553 }
554
555 if (!strcmp(arg, "none")) {
556 newsrv->observe = HANA_OBS_NONE;
557 }
558 else if (!strcmp(arg, "layer4")) {
559 newsrv->observe = HANA_OBS_LAYER4;
560 }
561 else if (!strcmp(arg, "layer7")) {
562 if (curproxy->mode != PR_MODE_HTTP) {
563 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
564 return ERR_ALERT;
565 }
566 newsrv->observe = HANA_OBS_LAYER7;
567 }
568 else {
569 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
570 "but got '%s'\n", args[*cur_arg], arg);
571 return ERR_ALERT | ERR_FATAL;
572 }
573
574 return 0;
575}
576
Frédéric Lécaille16186232017-03-14 16:42:49 +0100577/* Parse the "redir" server keyword */
578static int srv_parse_redir(char **args, int *cur_arg,
579 struct proxy *curproxy, struct server *newsrv, char **err)
580{
581 char *arg;
582
583 arg = args[*cur_arg + 1];
584 if (!*arg) {
585 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
586 return ERR_ALERT | ERR_FATAL;
587 }
588
589 free(newsrv->rdr_pfx);
590 newsrv->rdr_pfx = strdup(arg);
591 newsrv->rdr_len = strlen(arg);
592
593 return 0;
594}
595
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100596/* Parse the "send-proxy" server keyword */
597static int srv_parse_send_proxy(char **args, int *cur_arg,
598 struct proxy *curproxy, struct server *newsrv, char **err)
599{
600 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
601}
602
603/* Parse the "send-proxy-v2" server keyword */
604static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
605 struct proxy *curproxy, struct server *newsrv, char **err)
606{
607 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
608}
609
Frédéric Lécailledba97072017-03-17 15:33:50 +0100610
611/* Parse the "source" server keyword */
612static int srv_parse_source(char **args, int *cur_arg,
613 struct proxy *curproxy, struct server *newsrv, char **err)
614{
615 char *errmsg;
616 int port_low, port_high;
617 struct sockaddr_storage *sk;
618 struct protocol *proto;
619
620 errmsg = NULL;
621
622 if (!*args[*cur_arg + 1]) {
623 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
624 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
625 goto err;
626 }
627
628 /* 'sk' is statically allocated (no need to be freed). */
629 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, &errmsg, NULL, NULL, 1);
630 if (!sk) {
631 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
632 goto err;
633 }
634
635 proto = protocol_by_family(sk->ss_family);
636 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100637 ha_alert("'%s %s' : connect() not supported for this address family.\n",
638 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100639 goto err;
640 }
641
642 newsrv->conn_src.opts |= CO_SRC_BIND;
643 newsrv->conn_src.source_addr = *sk;
644
645 if (port_low != port_high) {
646 int i;
647
648 if (!port_low || !port_high) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100649 ha_alert("'%s' does not support port offsets (found '%s').\n",
650 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100651 goto err;
652 }
653
654 if (port_low <= 0 || port_low > 65535 ||
655 port_high <= 0 || port_high > 65535 ||
656 port_low > port_high) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100657 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 +0100658 goto err;
659 }
660 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
661 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
662 newsrv->conn_src.sport_range->ports[i] = port_low + i;
663 }
664
665 *cur_arg += 2;
666 while (*(args[*cur_arg])) {
667 if (!strcmp(args[*cur_arg], "usesrc")) { /* address to use outside */
668#if defined(CONFIG_HAP_TRANSPARENT)
669 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100670 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
671 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +0100672 goto err;
673 }
674 if (!strcmp(args[*cur_arg + 1], "client")) {
675 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
676 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
677 }
678 else if (!strcmp(args[*cur_arg + 1], "clientip")) {
679 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
680 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
681 }
682 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
683 char *name, *end;
684
685 name = args[*cur_arg + 1] + 7;
686 while (isspace(*name))
687 name++;
688
689 end = name;
690 while (*end && !isspace(*end) && *end != ',' && *end != ')')
691 end++;
692
693 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
694 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
695 free(newsrv->conn_src.bind_hdr_name);
696 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
697 newsrv->conn_src.bind_hdr_len = end - name;
698 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
699 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
700 newsrv->conn_src.bind_hdr_occ = -1;
701
702 /* now look for an occurrence number */
703 while (isspace(*end))
704 end++;
705 if (*end == ',') {
706 end++;
707 name = end;
708 if (*end == '-')
709 end++;
710 while (isdigit((int)*end))
711 end++;
712 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
713 }
714
715 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100716 ha_alert("usesrc hdr_ip(name,num) does not support negative"
717 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100718 goto err;
719 }
720 }
721 else {
722 struct sockaddr_storage *sk;
723 int port1, port2;
724
725 /* 'sk' is statically allocated (no need to be freed). */
726 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
727 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100728 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100729 goto err;
730 }
731
732 proto = protocol_by_family(sk->ss_family);
733 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100734 ha_alert("'%s %s' : connect() not supported for this address family.\n",
735 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100736 goto err;
737 }
738
739 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100740 ha_alert("'%s' : port ranges and offsets are not allowed in '%s'\n",
741 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100742 goto err;
743 }
744 newsrv->conn_src.tproxy_addr = *sk;
745 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
746 }
747 global.last_checks |= LSTCHK_NETADM;
748 *cur_arg += 2;
749 continue;
750#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100751 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 +0100752 goto err;
753#endif /* defined(CONFIG_HAP_TRANSPARENT) */
754 } /* "usesrc" */
755
756 if (!strcmp(args[*cur_arg], "interface")) { /* specifically bind to this interface */
757#ifdef SO_BINDTODEVICE
758 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100759 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100760 goto err;
761 }
762 free(newsrv->conn_src.iface_name);
763 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
764 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
765 global.last_checks |= LSTCHK_NETADM;
766#else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100767 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100768 goto err;
769#endif
770 *cur_arg += 2;
771 continue;
772 }
773 /* this keyword in not an option of "source" */
774 break;
775 } /* while */
776
777 return 0;
778
779 err:
780 free(errmsg);
781 return ERR_ALERT | ERR_FATAL;
782}
783
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100784/* Parse the "stick" server keyword */
785static int srv_parse_stick(char **args, int *cur_arg,
786 struct proxy *curproxy, struct server *newsrv, char **err)
787{
788 newsrv->flags &= ~SRV_F_NON_STICK;
789 return 0;
790}
791
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100792/* Parse the "track" server keyword */
793static int srv_parse_track(char **args, int *cur_arg,
794 struct proxy *curproxy, struct server *newsrv, char **err)
795{
796 char *arg;
797
798 arg = args[*cur_arg + 1];
799 if (!*arg) {
800 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
801 return ERR_ALERT | ERR_FATAL;
802 }
803
804 free(newsrv->trackit);
805 newsrv->trackit = strdup(arg);
806
807 return 0;
808}
809
Frédéric Lécailledba97072017-03-17 15:33:50 +0100810
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200811/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +0200812 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200813 * shutdown.
814 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200815void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200816{
Willy Tarreau87b09662015-04-03 00:22:06 +0200817 struct stream *stream, *stream_bck;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200818
Willy Tarreau87b09662015-04-03 00:22:06 +0200819 list_for_each_entry_safe(stream, stream_bck, &srv->actconns, by_srv)
820 if (stream->srv_conn == srv)
821 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200822}
823
824/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +0200825 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200826 * the reason for the shutdown.
827 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200828void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200829{
830 struct server *srv;
831
832 for (srv = px->srv; srv != NULL; srv = srv->next)
833 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +0200834 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200835}
836
Willy Tarreaubda92272014-05-20 21:55:30 +0200837/* Appends some information to a message string related to a server going UP or
838 * DOWN. If both <forced> and <reason> are null and the server tracks another
839 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +0200840 * If <check> is non-null, an entire string describing the check result will be
841 * appended after a comma and a space (eg: to report some information from the
842 * check that changed the state). In the other case, the string will be built
843 * using the check results stored into the struct server if present.
844 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +0200845 * provided.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200846 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200847void srv_append_status(struct buffer *msg, struct server *s,
848 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200849{
Emeric Brun5a133512017-10-19 14:42:30 +0200850 short status = s->op_st_chg.status;
851 short code = s->op_st_chg.code;
852 long duration = s->op_st_chg.duration;
853 char *desc = s->op_st_chg.reason;
854
855 if (check) {
856 status = check->status;
857 code = check->code;
858 duration = check->duration;
859 desc = check->desc;
860 }
861
862 if (status != -1) {
863 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
864
865 if (status >= HCHK_STATUS_L57DATA)
866 chunk_appendf(msg, ", code: %d", code);
867
868 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +0200869 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +0200870
871 chunk_appendf(msg, ", info: \"");
872
873 chunk_initlen(&src, desc, 0, strlen(desc));
874 chunk_asciiencode(msg, &src, '"');
875
876 chunk_appendf(msg, "\"");
877 }
878
879 if (duration >= 0)
880 chunk_appendf(msg, ", check duration: %ldms", duration);
881 }
882 else if (desc && *desc) {
883 chunk_appendf(msg, ", %s", desc);
884 }
885 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +0200886 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +0200887 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200888
889 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200890 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200891 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
892 " %d sessions active, %d requeued, %d remaining in queue",
893 s->proxy->srv_act, s->proxy->srv_bck,
894 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
895 s->cur_sess, xferred, s->nbpend);
896 else
897 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
898 " %d sessions requeued, %d total in queue",
899 s->proxy->srv_act, s->proxy->srv_bck,
900 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
901 xferred, s->nbpend);
902 }
903}
904
Emeric Brun5a133512017-10-19 14:42:30 +0200905/* Marks server <s> down, regardless of its checks' statuses. The server is
906 * registered in a list to postpone the counting of the remaining servers on
907 * the proxy and transfers queued streams whenever possible to other servers at
908 * a sync point. Maintenance servers are ignored. It stores the <reason> if
909 * non-null as the reason for going down or the available data from the check
910 * struct to recompute this reason later.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200911 */
Emeric Brun5a133512017-10-19 14:42:30 +0200912void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200913{
914 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200915
Emeric Brun64cc49c2017-10-03 14:46:45 +0200916 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200917 return;
918
Emeric Brun52a91d32017-08-31 14:41:55 +0200919 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +0200920 *s->op_st_chg.reason = 0;
921 s->op_st_chg.status = -1;
922 if (reason) {
923 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
924 }
925 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +0100926 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +0200927 s->op_st_chg.code = check->code;
928 s->op_st_chg.status = check->status;
929 s->op_st_chg.duration = check->duration;
930 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200931
Christopher Faulet5d42e092017-10-16 12:00:40 +0200932 srv_register_update(s);
Emeric Brun9f0b4582017-10-23 14:39:51 +0200933 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100934 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +0200935 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100936 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +0200937 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200938}
939
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200940/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +0200941 * in maintenance. The server is registered in a list to postpone the counting
942 * of the remaining servers on the proxy and tries to grab requests from the
943 * proxy at a sync point. Maintenance servers are ignored. It stores the
944 * <reason> if non-null as the reason for going down or the available data
945 * from the check struct to recompute this reason later.
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200946 */
Emeric Brun5a133512017-10-19 14:42:30 +0200947void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200948{
949 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200950
Emeric Brun64cc49c2017-10-03 14:46:45 +0200951 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200952 return;
953
Emeric Brun52a91d32017-08-31 14:41:55 +0200954 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200955 return;
956
Emeric Brun52a91d32017-08-31 14:41:55 +0200957 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +0200958 *s->op_st_chg.reason = 0;
959 s->op_st_chg.status = -1;
960 if (reason) {
961 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
962 }
963 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +0100964 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +0200965 s->op_st_chg.code = check->code;
966 s->op_st_chg.status = check->status;
967 s->op_st_chg.duration = check->duration;
968 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200969
Emeric Brun64cc49c2017-10-03 14:46:45 +0200970 if (s->slowstart <= 0)
971 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200972
Christopher Faulet5d42e092017-10-16 12:00:40 +0200973 srv_register_update(s);
Emeric Brun9f0b4582017-10-23 14:39:51 +0200974 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100975 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +0200976 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100977 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +0200978 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200979}
980
Willy Tarreau8eb77842014-05-21 13:54:57 +0200981/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +0200982 * isn't in maintenance. The server is registered in a list to postpone the
983 * counting of the remaining servers on the proxy and tries to grab requests
984 * from the proxy. Maintenance servers are ignored. It stores the
985 * <reason> if non-null as the reason for going down or the available data
986 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +0200987 * up. Note that it makes use of the trash to build the log strings, so <reason>
988 * must not be placed there.
989 */
Emeric Brun5a133512017-10-19 14:42:30 +0200990void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +0200991{
992 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +0200993
Emeric Brun64cc49c2017-10-03 14:46:45 +0200994 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +0200995 return;
996
Emeric Brun52a91d32017-08-31 14:41:55 +0200997 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +0200998 return;
999
Emeric Brun52a91d32017-08-31 14:41:55 +02001000 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001001 *s->op_st_chg.reason = 0;
1002 s->op_st_chg.status = -1;
1003 if (reason) {
1004 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1005 }
1006 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001007 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001008 s->op_st_chg.code = check->code;
1009 s->op_st_chg.status = check->status;
1010 s->op_st_chg.duration = check->duration;
1011 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001012
Christopher Faulet5d42e092017-10-16 12:00:40 +02001013 srv_register_update(s);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001014 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001015 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001016 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001017 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001018 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001019}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001020
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001021/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1022 * enforce either maint mode or drain mode. It is not allowed to set more than
1023 * one flag at once. The equivalent "inherited" flag is propagated to all
1024 * tracking servers. Maintenance mode disables health checks (but not agent
1025 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001026 * is done. If <cause> is non-null, it will be displayed at the end of the log
1027 * lines to justify the state change.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001028 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001029void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001030{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001031 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001032
1033 if (!mode)
1034 return;
1035
1036 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001037 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001038 return;
1039
Emeric Brun52a91d32017-08-31 14:41:55 +02001040 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001041 if (cause)
1042 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1043
Christopher Faulet5d42e092017-10-16 12:00:40 +02001044 srv_register_update(s);
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001045
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001046 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001047 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1048 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001049 return;
1050
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001051 /* compute the inherited flag to propagate */
1052 if (mode & SRV_ADMF_MAINT)
1053 mode = SRV_ADMF_IMAINT;
1054 else if (mode & SRV_ADMF_DRAIN)
1055 mode = SRV_ADMF_IDRAIN;
1056
Emeric Brun9f0b4582017-10-23 14:39:51 +02001057 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001058 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001059 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001060 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001061 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001062}
1063
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001064/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1065 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1066 * than one flag at once. The equivalent "inherited" flag is propagated to all
1067 * tracking servers. Leaving maintenance mode re-enables health checks. When
1068 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001069 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001070void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001071{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001072 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001073
1074 if (!mode)
1075 return;
1076
1077 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001078 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001079 return;
1080
Emeric Brun52a91d32017-08-31 14:41:55 +02001081 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001082
Christopher Faulet5d42e092017-10-16 12:00:40 +02001083 srv_register_update(s);
1084
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001085 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001086 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1087 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001088 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001089
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001090 if (mode & SRV_ADMF_MAINT)
1091 mode = SRV_ADMF_IMAINT;
1092 else if (mode & SRV_ADMF_DRAIN)
1093 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001094
Emeric Brun9f0b4582017-10-23 14:39:51 +02001095 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001096 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001097 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001098 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001099 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001100}
1101
Willy Tarreau757478e2016-11-03 19:22:19 +01001102/* principle: propagate maint and drain to tracking servers. This is useful
1103 * upon startup so that inherited states are correct.
1104 */
1105static void srv_propagate_admin_state(struct server *srv)
1106{
1107 struct server *srv2;
1108
1109 if (!srv->trackers)
1110 return;
1111
1112 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001113 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001114 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001115 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001116
Emeric Brun52a91d32017-08-31 14:41:55 +02001117 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001118 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001119 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001120 }
1121}
1122
1123/* Compute and propagate the admin states for all servers in proxy <px>.
1124 * Only servers *not* tracking another one are considered, because other
1125 * ones will be handled when the server they track is visited.
1126 */
1127void srv_compute_all_admin_states(struct proxy *px)
1128{
1129 struct server *srv;
1130
1131 for (srv = px->srv; srv; srv = srv->next) {
1132 if (srv->track)
1133 continue;
1134 srv_propagate_admin_state(srv);
1135 }
1136}
1137
Willy Tarreaudff55432012-10-10 17:51:05 +02001138/* Note: must not be declared <const> as its list will be overwritten.
1139 * Please take care of keeping this list alphabetically sorted, doing so helps
1140 * all code contributors.
1141 * Optional keywords are also declared with a NULL ->parse() function so that
1142 * the config parser can report an appropriate error when a known keyword was
1143 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001144 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001145 */
1146static struct srv_kw_list srv_kws = { "ALL", { }, {
Frédéric Lécaille6e5e0d82017-03-20 16:30:18 +01001147 { "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 +01001148 { "agent-check", srv_parse_agent_check, 0, 1 }, /* Enable an auxiliary agent check */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001149 { "backup", srv_parse_backup, 0, 1 }, /* Flag as backup server */
Frédéric Lécaille65aa3562017-03-14 11:20:13 +01001150 { "check", srv_parse_check, 0, 1 }, /* enable health checks */
Frédéric Lécaille25df8902017-03-10 14:04:31 +01001151 { "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 +01001152 { "cookie", srv_parse_cookie, 1, 1 }, /* Assign a cookie to the server */
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +01001153 { "disabled", srv_parse_disabled, 0, 1 }, /* Start the server in 'disabled' state */
1154 { "enabled", srv_parse_enabled, 0, 1 }, /* Start the server in 'enabled' state */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001155 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
Frédéric Lécaille22f41a22017-03-16 17:17:36 +01001156 { "namespace", srv_parse_namespace, 1, 1 }, /* Namespace the server socket belongs to (if supported) */
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001157 { "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 +01001158 { "no-backup", srv_parse_no_backup, 0, 1 }, /* Flag as non-backup server */
Frédéric Lécaille65aa3562017-03-14 11:20:13 +01001159 { "no-check", srv_parse_no_check, 0, 1 }, /* disable health checks */
Frédéric Lécaille25df8902017-03-10 14:04:31 +01001160 { "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 +01001161 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1 }, /* Disable use of PROXY V1 protocol */
1162 { "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 +01001163 { "non-stick", srv_parse_non_stick, 0, 1 }, /* Disable stick-table persistence */
Frédéric Lécaille547356e2017-03-15 08:55:39 +01001164 { "observe", srv_parse_observe, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
Emmanuel Hocdetf643b802018-02-01 15:20:32 +01001165 { "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 +01001166 { "redir", srv_parse_redir, 1, 1 }, /* Enable redirection mode */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001167 { "send-proxy", srv_parse_send_proxy, 0, 1 }, /* Enforce use of PROXY V1 protocol */
1168 { "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 +02001169 { "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 +01001170 { "stick", srv_parse_stick, 0, 1 }, /* Enable stick-table persistence */
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001171 { "track", srv_parse_track, 1, 1 }, /* Set the current state of the server, tracking another one */
Willy Tarreaudff55432012-10-10 17:51:05 +02001172 { NULL, NULL, 0 },
1173}};
1174
1175__attribute__((constructor))
1176static void __listener_init(void)
1177{
1178 srv_register_keywords(&srv_kws);
1179}
1180
Willy Tarreau004e0452013-11-21 11:22:01 +01001181/* Recomputes the server's eweight based on its state, uweight, the current time,
1182 * and the proxy's algorihtm. To be used after updating sv->uweight. The warmup
1183 * state is automatically disabled if the time is elapsed.
1184 */
1185void server_recalc_eweight(struct server *sv)
1186{
1187 struct proxy *px = sv->proxy;
1188 unsigned w;
1189
1190 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1191 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001192 if (sv->next_state == SRV_ST_STARTING)
1193 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001194 }
1195
1196 /* We must take care of not pushing the server to full throttle during slow starts.
1197 * It must also start immediately, at least at the minimal step when leaving maintenance.
1198 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001199 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001200 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1201 else
1202 w = px->lbprm.wdiv;
1203
Emeric Brun52a91d32017-08-31 14:41:55 +02001204 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001205
Christopher Faulet5d42e092017-10-16 12:00:40 +02001206 srv_register_update(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001207}
1208
Willy Tarreaubaaee002006-06-26 02:48:02 +02001209/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001210 * Parses weight_str and configures sv accordingly.
1211 * Returns NULL on success, error message string otherwise.
1212 */
1213const char *server_parse_weight_change_request(struct server *sv,
1214 const char *weight_str)
1215{
1216 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001217 long int w;
1218 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001219
1220 px = sv->proxy;
1221
1222 /* if the weight is terminated with '%', it is set relative to
1223 * the initial weight, otherwise it is absolute.
1224 */
1225 if (!*weight_str)
1226 return "Require <weight> or <weight%>.\n";
1227
Simon Hormanb796afa2013-02-12 10:45:53 +09001228 w = strtol(weight_str, &end, 10);
1229 if (end == weight_str)
1230 return "Empty weight string empty or preceded by garbage";
1231 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001232 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001233 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001234 /* Avoid integer overflow */
1235 if (w > 25600)
1236 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001237 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001238 if (w > 256)
1239 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001240 }
1241 else if (w < 0 || w > 256)
1242 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001243 else if (end[0] != '\0')
1244 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001245
1246 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1247 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1248
1249 sv->uweight = w;
Willy Tarreau004e0452013-11-21 11:22:01 +01001250 server_recalc_eweight(sv);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001251
1252 return NULL;
1253}
1254
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001255/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001256 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1257 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001258 * Returns:
1259 * - error string on error
1260 * - NULL on success
1261 */
1262const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001263 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001264{
1265 unsigned char ip[INET6_ADDRSTRLEN];
1266
1267 if (inet_pton(AF_INET6, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001268 update_server_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001269 return NULL;
1270 }
1271 if (inet_pton(AF_INET, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001272 update_server_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001273 return NULL;
1274 }
1275
1276 return "Could not understand IP address format.\n";
1277}
1278
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001279const char *server_parse_maxconn_change_request(struct server *sv,
1280 const char *maxconn_str)
1281{
1282 long int v;
1283 char *end;
1284
1285 if (!*maxconn_str)
1286 return "Require <maxconn>.\n";
1287
1288 v = strtol(maxconn_str, &end, 10);
1289 if (end == maxconn_str)
1290 return "maxconn string empty or preceded by garbage";
1291 else if (end[0] != '\0')
1292 return "Trailing garbage in maxconn string";
1293
1294 if (sv->maxconn == sv->minconn) { // static maxconn
1295 sv->maxconn = sv->minconn = v;
1296 } else { // dynamic maxconn
1297 sv->maxconn = v;
1298 }
1299
1300 if (may_dequeue_tasks(sv, sv->proxy))
1301 process_srv_queue(sv);
1302
1303 return NULL;
1304}
1305
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001306#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001307static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1308 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001309{
1310 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001311 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001312 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001313 NULL,
1314 };
1315
1316 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001317 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001318
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001319 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args);
1320}
1321
1322static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1323{
1324 struct sample_expr *expr;
1325
1326 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 +01001327 if (!expr) {
1328 memprintf(err, "error detected while parsing sni expression : %s", *err);
1329 return ERR_ALERT | ERR_FATAL;
1330 }
1331
1332 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1333 memprintf(err, "error detected while parsing sni expression : "
1334 " fetch method '%s' extracts information from '%s', "
1335 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001336 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001337 return ERR_ALERT | ERR_FATAL;
1338 }
1339
1340 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1341 release_sample_expr(newsrv->ssl_ctx.sni);
1342 newsrv->ssl_ctx.sni = expr;
1343
1344 return 0;
1345}
1346#endif
1347
1348static void display_parser_err(const char *file, int linenum, char **args, int cur_arg, char **err)
1349{
1350 if (err && *err) {
1351 indent_msg(err, 2);
Christopher Faulet767a84b2017-11-24 16:50:31 +01001352 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 +01001353 }
1354 else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001355 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while processing '%s'.\n",
1356 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001357}
1358
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001359static void srv_conn_src_sport_range_cpy(struct server *srv,
1360 struct server *src)
1361{
1362 int range_sz;
1363
1364 range_sz = src->conn_src.sport_range->size;
1365 if (range_sz > 0) {
1366 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1367 if (srv->conn_src.sport_range != NULL) {
1368 int i;
1369
1370 for (i = 0; i < range_sz; i++) {
1371 srv->conn_src.sport_range->ports[i] =
1372 src->conn_src.sport_range->ports[i];
1373 }
1374 }
1375 }
1376}
1377
1378/*
1379 * Copy <src> server connection source settings to <srv> server everything needed.
1380 */
1381static void srv_conn_src_cpy(struct server *srv, struct server *src)
1382{
1383 srv->conn_src.opts = src->conn_src.opts;
1384 srv->conn_src.source_addr = src->conn_src.source_addr;
1385
1386 /* Source port range copy. */
1387 if (src->conn_src.sport_range != NULL)
1388 srv_conn_src_sport_range_cpy(srv, src);
1389
1390#ifdef CONFIG_HAP_TRANSPARENT
1391 if (src->conn_src.bind_hdr_name != NULL) {
1392 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1393 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1394 }
1395 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1396 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1397#endif
1398 if (src->conn_src.iface_name != NULL)
1399 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1400}
1401
1402/*
1403 * Copy <src> server SSL settings to <srv> server allocating
1404 * everything needed.
1405 */
1406#if defined(USE_OPENSSL)
1407static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1408{
1409 if (src->ssl_ctx.ca_file != NULL)
1410 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1411 if (src->ssl_ctx.crl_file != NULL)
1412 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
1413 if (src->ssl_ctx.client_crt != NULL)
1414 srv->ssl_ctx.client_crt = strdup(src->ssl_ctx.client_crt);
1415
1416 srv->ssl_ctx.verify = src->ssl_ctx.verify;
1417
1418 if (src->ssl_ctx.verify_host != NULL)
1419 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
1420 if (src->ssl_ctx.ciphers != NULL)
1421 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
1422 if (src->sni_expr != NULL)
1423 srv->sni_expr = strdup(src->sni_expr);
1424}
1425#endif
1426
1427/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001428 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001429 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001430 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001431 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001432static int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001433{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001434 char *hostname_dn;
1435 int hostname_len, hostname_dn_len;
1436
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001437 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001438 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001439
Christopher Faulet67957bd2017-09-27 11:00:59 +02001440 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001441 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001442 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
1443 hostname_dn, trash.size);
1444 if (hostname_dn_len == -1)
1445 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001446
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001447
Christopher Faulet67957bd2017-09-27 11:00:59 +02001448 free(srv->hostname);
1449 free(srv->hostname_dn);
1450 srv->hostname = strdup(hostname);
1451 srv->hostname_dn = strdup(hostname_dn);
1452 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001453 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001454 goto err;
1455
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001456 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001457
1458 err:
Christopher Faulet67957bd2017-09-27 11:00:59 +02001459 free(srv->hostname); srv->hostname = NULL;
1460 free(srv->hostname_dn); srv->hostname_dn = NULL;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001461 return -1;
1462}
1463
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001464/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001465 * Copy <src> server settings to <srv> server allocating
1466 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001467 * This function is not supposed to be called at any time, but only
1468 * during server settings parsing or during server allocations from
1469 * a server template, and just after having calloc()'ed a new server.
1470 * So, <src> may only be a default server (when parsing server settings)
1471 * or a server template (during server allocations from a server template).
1472 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
1473 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001474 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001475static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001476{
1477 /* Connection source settings copy */
1478 srv_conn_src_cpy(srv, src);
1479
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001480 if (srv_tmpl) {
1481 srv->addr = src->addr;
1482 srv->svc_port = src->svc_port;
1483 }
1484
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001485 srv->pp_opts = src->pp_opts;
1486 if (src->rdr_pfx != NULL) {
1487 srv->rdr_pfx = strdup(src->rdr_pfx);
1488 srv->rdr_len = src->rdr_len;
1489 }
1490 if (src->cookie != NULL) {
1491 srv->cookie = strdup(src->cookie);
1492 srv->cklen = src->cklen;
1493 }
1494 srv->use_ssl = src->use_ssl;
1495 srv->check.addr = srv->agent.addr = src->check.addr;
1496 srv->check.use_ssl = src->check.use_ssl;
1497 srv->check.port = src->check.port;
1498 /* Note: 'flags' field has potentially been already initialized. */
1499 srv->flags |= src->flags;
1500 srv->do_check = src->do_check;
1501 srv->do_agent = src->do_agent;
1502 if (srv->check.port)
1503 srv->flags |= SRV_F_CHECKPORT;
1504 srv->check.inter = src->check.inter;
1505 srv->check.fastinter = src->check.fastinter;
1506 srv->check.downinter = src->check.downinter;
1507 srv->agent.use_ssl = src->agent.use_ssl;
1508 srv->agent.port = src->agent.port;
1509 if (src->agent.send_string != NULL)
1510 srv->agent.send_string = strdup(src->agent.send_string);
1511 srv->agent.send_string_len = src->agent.send_string_len;
1512 srv->agent.inter = src->agent.inter;
1513 srv->agent.fastinter = src->agent.fastinter;
1514 srv->agent.downinter = src->agent.downinter;
1515 srv->maxqueue = src->maxqueue;
1516 srv->minconn = src->minconn;
1517 srv->maxconn = src->maxconn;
1518 srv->slowstart = src->slowstart;
1519 srv->observe = src->observe;
1520 srv->onerror = src->onerror;
1521 srv->onmarkeddown = src->onmarkeddown;
1522 srv->onmarkedup = src->onmarkedup;
1523 if (src->trackit != NULL)
1524 srv->trackit = strdup(src->trackit);
1525 srv->consecutive_errors_limit = src->consecutive_errors_limit;
1526 srv->uweight = srv->iweight = src->iweight;
1527
1528 srv->check.send_proxy = src->check.send_proxy;
1529 /* health: up, but will fall down at first failure */
1530 srv->check.rise = srv->check.health = src->check.rise;
1531 srv->check.fall = src->check.fall;
1532
1533 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001534 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
1535 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
1536 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001537 srv->check.state |= CHK_ST_PAUSED;
1538 srv->check.health = 0;
1539 }
1540
1541 /* health: up but will fall down at first failure */
1542 srv->agent.rise = srv->agent.health = src->agent.rise;
1543 srv->agent.fall = src->agent.fall;
1544
1545 if (src->resolvers_id != NULL)
1546 srv->resolvers_id = strdup(src->resolvers_id);
1547 srv->dns_opts.family_prio = src->dns_opts.family_prio;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001548 srv->dns_opts.accept_duplicate_ip = src->dns_opts.accept_duplicate_ip;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001549 if (srv->dns_opts.family_prio == AF_UNSPEC)
1550 srv->dns_opts.family_prio = AF_INET6;
1551 memcpy(srv->dns_opts.pref_net,
1552 src->dns_opts.pref_net,
1553 sizeof srv->dns_opts.pref_net);
1554 srv->dns_opts.pref_net_nb = src->dns_opts.pref_net_nb;
1555
1556 srv->init_addr_methods = src->init_addr_methods;
1557 srv->init_addr = src->init_addr;
1558#if defined(USE_OPENSSL)
1559 srv_ssl_settings_cpy(srv, src);
1560#endif
1561#ifdef TCP_USER_TIMEOUT
1562 srv->tcp_ut = src->tcp_ut;
1563#endif
Olivier Houchard8da5f982017-08-04 18:35:36 +02001564 if (srv_tmpl)
1565 srv->srvrq = src->srvrq;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001566}
1567
1568static struct server *new_server(struct proxy *proxy)
1569{
1570 struct server *srv;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001571 int i;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001572
1573 srv = calloc(1, sizeof *srv);
1574 if (!srv)
1575 return NULL;
1576
1577 srv->obj_type = OBJ_TYPE_SERVER;
1578 srv->proxy = proxy;
1579 LIST_INIT(&srv->actconns);
1580 LIST_INIT(&srv->pendconns);
Christopher Faulet40a007c2017-07-03 15:41:01 +02001581
1582 if ((srv->priv_conns = calloc(global.nbthread, sizeof(*srv->priv_conns))) == NULL)
1583 goto free_srv;
1584 if ((srv->idle_conns = calloc(global.nbthread, sizeof(*srv->idle_conns))) == NULL)
1585 goto free_priv_conns;
1586 if ((srv->safe_conns = calloc(global.nbthread, sizeof(*srv->safe_conns))) == NULL)
1587 goto free_idle_conns;
1588
1589 for (i = 0; i < global.nbthread; i++) {
1590 LIST_INIT(&srv->priv_conns[i]);
1591 LIST_INIT(&srv->idle_conns[i]);
1592 LIST_INIT(&srv->safe_conns[i]);
1593 }
1594
Emeric Brun64cc49c2017-10-03 14:46:45 +02001595 LIST_INIT(&srv->update_status);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001596
Emeric Brun52a91d32017-08-31 14:41:55 +02001597 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001598 srv->last_change = now.tv_sec;
1599
1600 srv->check.status = HCHK_STATUS_INI;
1601 srv->check.server = srv;
1602 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
1603
1604 srv->agent.status = HCHK_STATUS_INI;
1605 srv->agent.server = srv;
1606 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
1607
1608 return srv;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001609
1610 free_idle_conns:
1611 free(srv->idle_conns);
1612 free_priv_conns:
1613 free(srv->priv_conns);
1614 free_srv:
1615 free(srv);
1616 return NULL;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001617}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001618
1619/*
1620 * Validate <srv> server health-check settings.
1621 * Returns 0 if everything is OK, -1 if not.
1622 */
1623static int server_healthcheck_validate(const char *file, int linenum, struct server *srv)
1624{
1625 struct tcpcheck_rule *r = NULL;
1626 struct list *l;
1627
1628 /*
1629 * We need at least a service port, a check port or the first tcp-check rule must
1630 * be a 'connect' one when checking an IPv4/IPv6 server.
1631 */
1632 if ((srv_check_healthcheck_port(&srv->check) != 0) ||
1633 (!is_inet_addr(&srv->check.addr) && (is_addr(&srv->check.addr) || !is_inet_addr(&srv->addr))))
1634 return 0;
1635
1636 r = (struct tcpcheck_rule *)srv->proxy->tcpcheck_rules.n;
1637 if (!r) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001638 ha_alert("parsing [%s:%d] : server %s has neither service port nor check port. "
1639 "Check has been disabled.\n",
1640 file, linenum, srv->id);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001641 return -1;
1642 }
1643
1644 /* search the first action (connect / send / expect) in the list */
1645 l = &srv->proxy->tcpcheck_rules;
1646 list_for_each_entry(r, l, list) {
1647 if (r->action != TCPCHK_ACT_COMMENT)
1648 break;
1649 }
1650
1651 if ((r->action != TCPCHK_ACT_CONNECT) || !r->port) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001652 ha_alert("parsing [%s:%d] : server %s has neither service port nor check port "
1653 "nor tcp_check rule 'connect' with port information. Check has been disabled.\n",
1654 file, linenum, srv->id);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001655 return -1;
1656 }
1657
1658 /* scan the tcp-check ruleset to ensure a port has been configured */
1659 l = &srv->proxy->tcpcheck_rules;
1660 list_for_each_entry(r, l, list) {
1661 if ((r->action == TCPCHK_ACT_CONNECT) && (!r->port)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001662 ha_alert("parsing [%s:%d] : server %s has neither service port nor check port, "
1663 "and a tcp_check rule 'connect' with no port information. Check has been disabled.\n",
1664 file, linenum, srv->id);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001665 return -1;
1666 }
1667 }
1668
1669 return 0;
1670}
1671
1672/*
1673 * Initialize <srv> health-check structure.
1674 * Returns the error string in case of memory allocation failure, NULL if not.
1675 */
1676static const char *do_health_check_init(struct server *srv, int check_type, int state)
1677{
1678 const char *ret;
1679
1680 if (!srv->do_check)
1681 return NULL;
1682
1683 ret = init_check(&srv->check, check_type);
1684 if (ret)
1685 return ret;
1686
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001687 srv->check.state |= state;
1688 global.maxsock++;
1689
1690 return NULL;
1691}
1692
1693static int server_health_check_init(const char *file, int linenum,
1694 struct server *srv, struct proxy *curproxy)
1695{
1696 const char *ret;
1697
1698 if (!srv->do_check)
1699 return 0;
1700
1701 if (srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001702 ha_alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1703 file, linenum);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001704 return ERR_ALERT | ERR_FATAL;
1705 }
1706
1707 if (server_healthcheck_validate(file, linenum, srv) < 0)
1708 return ERR_ALERT | ERR_ABORT;
1709
1710 /* note: check type will be set during the config review phase */
1711 ret = do_health_check_init(srv, 0, CHK_ST_CONFIGURED | CHK_ST_ENABLED);
1712 if (ret) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001713 ha_alert("parsing [%s:%d] : %s.\n", file, linenum, ret);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001714 return ERR_ALERT | ERR_ABORT;
1715 }
1716
1717 return 0;
1718}
1719
1720/*
1721 * Initialize <srv> agent check structure.
1722 * Returns the error string in case of memory allocation failure, NULL if not.
1723 */
1724static const char *do_server_agent_check_init(struct server *srv, int state)
1725{
1726 const char *ret;
1727
1728 if (!srv->do_agent)
1729 return NULL;
1730
1731 ret = init_check(&srv->agent, PR_O2_LB_AGENT_CHK);
1732 if (ret)
1733 return ret;
1734
1735 if (!srv->agent.inter)
1736 srv->agent.inter = srv->check.inter;
1737
1738 srv->agent.state |= state;
1739 global.maxsock++;
1740
1741 return NULL;
1742}
1743
1744static int server_agent_check_init(const char *file, int linenum,
1745 struct server *srv, struct proxy *curproxy)
1746{
1747 const char *ret;
1748
1749 if (!srv->do_agent)
1750 return 0;
1751
1752 if (!srv->agent.port) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001753 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 +02001754 file, linenum, srv->id);
1755 return ERR_ALERT | ERR_FATAL;
1756 }
1757
1758 ret = do_server_agent_check_init(srv, CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_AGENT);
1759 if (ret) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001760 ha_alert("parsing [%s:%d] : %s.\n", file, linenum, ret);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001761 return ERR_ALERT | ERR_ABORT;
1762 }
1763
1764 return 0;
1765}
1766
1767#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1768static int server_sni_expr_init(const char *file, int linenum, char **args, int cur_arg,
1769 struct server *srv, struct proxy *proxy)
1770{
1771 int ret;
1772 char *err = NULL;
1773
1774 if (!srv->sni_expr)
1775 return 0;
1776
1777 ret = server_parse_sni_expr(srv, proxy, &err);
1778 if (!ret)
1779 return 0;
1780
1781 display_parser_err(file, linenum, args, cur_arg, &err);
1782 free(err);
1783
1784 return ret;
1785}
1786#endif
1787
1788/*
1789 * Server initializations finalization.
1790 * Initialize health check, agent check and SNI expression if enabled.
1791 * Must not be called for a default server instance.
1792 */
1793static int server_finalize_init(const char *file, int linenum, char **args, int cur_arg,
1794 struct server *srv, struct proxy *px)
1795{
1796 int ret;
1797
1798 if ((ret = server_health_check_init(file, linenum, srv, px)) != 0 ||
1799 (ret = server_agent_check_init(file, linenum, srv, px)) != 0) {
1800 return ret;
1801 }
1802
1803#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1804 if ((ret = server_sni_expr_init(file, linenum, args, cur_arg, srv, px)) != 0)
1805 return ret;
1806#endif
1807
1808 if (srv->flags & SRV_F_BACKUP)
1809 px->srv_bck++;
1810 else
1811 px->srv_act++;
1812 srv_lb_commit_status(srv);
1813
1814 return 0;
1815}
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001816
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001817/*
1818 * Parse as much as possible such a range string argument: low[-high]
1819 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
1820 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
1821 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
1822 * Returns 0 if succeeded, -1 if not.
1823 */
1824static int srv_tmpl_parse_range(struct server *srv, const char *arg, int *nb_low, int *nb_high)
1825{
1826 char *nb_high_arg;
1827
1828 *nb_high = 0;
1829 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001830 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001831
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001832 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001833 *nb_high_arg++ = '\0';
1834 *nb_high = atoi(nb_high_arg);
1835 }
1836 else {
1837 *nb_high += *nb_low;
1838 *nb_low = 1;
1839 }
1840
1841 if (*nb_low < 0 || *nb_high < *nb_low)
1842 return -1;
1843
1844 return 0;
1845}
1846
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001847static inline void srv_set_id_from_prefix(struct server *srv, const char *prefix, int nb)
1848{
1849 chunk_printf(&trash, "%s%d", prefix, nb);
1850 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001851 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001852}
1853
1854/*
1855 * Initialize as much as possible servers from <srv> server template.
1856 * Note that a server template is a special server with
1857 * a few different parameters than a server which has
1858 * been parsed mostly the same way as a server.
1859 * Returns the number of servers succesfully allocated,
1860 * 'srv' template included.
1861 */
1862static int server_template_init(struct server *srv, struct proxy *px)
1863{
1864 int i;
1865 struct server *newsrv;
1866
1867 for (i = srv->tmpl_info.nb_low + 1; i <= srv->tmpl_info.nb_high; i++) {
1868 int check_init_state;
1869 int agent_init_state;
1870
1871 newsrv = new_server(px);
1872 if (!newsrv)
1873 goto err;
1874
1875 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001876 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001877#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1878 if (newsrv->sni_expr) {
1879 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
1880 if (!newsrv->ssl_ctx.sni)
1881 goto err;
1882 }
1883#endif
1884 /* Set this new server ID. */
1885 srv_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
1886
1887 /* Initial checks states. */
1888 check_init_state = CHK_ST_CONFIGURED | CHK_ST_ENABLED;
1889 agent_init_state = CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_AGENT;
1890
1891 if (do_health_check_init(newsrv, px->options2 & PR_O2_CHK_ANY, check_init_state) ||
1892 do_server_agent_check_init(newsrv, agent_init_state))
1893 goto err;
1894
1895 /* Linked backwards first. This will be restablished after parsing. */
1896 newsrv->next = px->srv;
1897 px->srv = newsrv;
1898 }
1899 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1900
1901 return i - srv->tmpl_info.nb_low;
1902
1903 err:
1904 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1905 if (newsrv) {
1906#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1907 release_sample_expr(newsrv->ssl_ctx.sni);
1908#endif
1909 free_check(&newsrv->agent);
1910 free_check(&newsrv->check);
1911 }
1912 free(newsrv);
1913 return i - srv->tmpl_info.nb_low;
1914}
1915
Willy Tarreau272adea2014-03-31 10:39:59 +02001916int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy, struct proxy *defproxy)
1917{
1918 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001919 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001920 char *errmsg = NULL;
1921 int err_code = 0;
1922 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +02001923 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001924
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001925 if (!strcmp(args[0], "server") ||
1926 !strcmp(args[0], "default-server") ||
1927 !strcmp(args[0], "server-template")) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001928 int cur_arg;
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001929 int defsrv = (*args[0] == 'd');
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001930 int srv = !defsrv && !strcmp(args[0], "server");
1931 int srv_tmpl = !defsrv && !srv;
1932 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02001933
1934 if (!defsrv && curproxy == defproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001935 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001936 err_code |= ERR_ALERT | ERR_FATAL;
1937 goto out;
1938 }
1939 else if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL))
Olivier Houchard306e6532018-07-24 16:48:59 +02001940 err_code |= ERR_WARN;
Willy Tarreau272adea2014-03-31 10:39:59 +02001941
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001942 /* There is no mandatory first arguments for default server. */
1943 if (srv) {
1944 if (!*args[2]) {
1945 /* 'server' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001946 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001947 file, linenum, args[0]);
1948 err_code |= ERR_ALERT | ERR_FATAL;
1949 goto out;
1950 }
1951
1952 err = invalid_char(args[1]);
1953 }
1954 else if (srv_tmpl) {
1955 if (!*args[3]) {
1956 /* 'server-template' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001957 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 +02001958 file, linenum, args[0]);
1959 err_code |= ERR_ALERT | ERR_FATAL;
1960 goto out;
1961 }
1962
1963 err = invalid_prefix_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001964 }
1965
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001966 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001967 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 +02001968 file, linenum, *err, args[0], srv ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001969 err_code |= ERR_ALERT | ERR_FATAL;
1970 goto out;
1971 }
1972
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001973 cur_arg = 2;
1974 if (srv_tmpl) {
1975 /* Parse server-template <nb | range> arg. */
1976 if (srv_tmpl_parse_range(newsrv, args[cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001977 ha_alert("parsing [%s:%d] : Wrong %s number or range arg '%s'.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001978 file, linenum, args[0], args[cur_arg]);
1979 err_code |= ERR_ALERT | ERR_FATAL;
1980 goto out;
1981 }
1982 cur_arg++;
1983 }
1984
Willy Tarreau272adea2014-03-31 10:39:59 +02001985 if (!defsrv) {
1986 struct sockaddr_storage *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01001987 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02001988 struct protocol *proto;
1989
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001990 newsrv = new_server(curproxy);
1991 if (!newsrv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001992 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Willy Tarreau272adea2014-03-31 10:39:59 +02001993 err_code |= ERR_ALERT | ERR_ABORT;
1994 goto out;
1995 }
1996
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001997 if (srv_tmpl) {
1998 newsrv->tmpl_info.nb_low = tmpl_range_low;
1999 newsrv->tmpl_info.nb_high = tmpl_range_high;
2000 }
2001
Willy Tarreau272adea2014-03-31 10:39:59 +02002002 /* the servers are linked backwards first */
2003 newsrv->next = curproxy->srv;
2004 curproxy->srv = newsrv;
Willy Tarreau272adea2014-03-31 10:39:59 +02002005 newsrv->conf.file = strdup(file);
2006 newsrv->conf.line = linenum;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002007 /* Note: for a server template, its id is its prefix.
2008 * This is a temporary id which will be used for server allocations to come
2009 * after parsing.
2010 */
2011 if (srv)
2012 newsrv->id = strdup(args[1]);
2013 else
2014 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002015
2016 /* several ways to check the port component :
2017 * - IP => port=+0, relative (IPv4 only)
2018 * - IP: => port=+0, relative
2019 * - IP:N => port=N, absolute
2020 * - IP:+N => port=+N, relative
2021 * - IP:-N => port=-N, relative
2022 */
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002023 sk = str2sa_range(args[cur_arg], &port, &port1, &port2, &errmsg, NULL, &fqdn, 0);
Willy Tarreau272adea2014-03-31 10:39:59 +02002024 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002025 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau272adea2014-03-31 10:39:59 +02002026 err_code |= ERR_ALERT | ERR_FATAL;
2027 goto out;
2028 }
2029
2030 proto = protocol_by_family(sk->ss_family);
Willy Tarreau9698f4b2017-01-06 18:42:57 +01002031 if (!fqdn && (!proto || !proto->connect)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002032 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002033 file, linenum, args[0], args[1]);
2034 err_code |= ERR_ALERT | ERR_FATAL;
2035 goto out;
2036 }
2037
2038 if (!port1 || !port2) {
2039 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +02002040 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +02002041 }
2042 else if (port1 != port2) {
2043 /* port range */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002044 ha_alert("parsing [%s:%d] : '%s %s' : port ranges are not allowed in '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002045 file, linenum, args[0], args[1], args[2]);
2046 err_code |= ERR_ALERT | ERR_FATAL;
2047 goto out;
2048 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002049
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002050 /* save hostname and create associated name resolution */
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002051 if (fqdn) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002052 if (fqdn[0] == '_') { /* SRV record */
Olivier Houchard8da5f982017-08-04 18:35:36 +02002053 /* Check if a SRV request already exists, and if not, create it */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002054 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2055 newsrv->srvrq = new_dns_srvrq(newsrv, fqdn);
2056 if (newsrv->srvrq == NULL) {
Olivier Houchard8da5f982017-08-04 18:35:36 +02002057 err_code |= ERR_ALERT | ERR_FATAL;
2058 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002059 }
2060 }
2061 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002062 ha_alert("parsing [%s:%d] : Can't create DNS resolution for server '%s'\n",
Christopher Faulet67957bd2017-09-27 11:00:59 +02002063 file, linenum, newsrv->id);
2064 err_code |= ERR_ALERT | ERR_FATAL;
2065 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002066 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002067 }
2068
Willy Tarreau272adea2014-03-31 10:39:59 +02002069 newsrv->addr = *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002070 newsrv->svc_port = port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002071
Olivier Houchard8da5f982017-08-04 18:35:36 +02002072 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002073 ha_alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002074 file, linenum, newsrv->addr.ss_family, args[cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002075 err_code |= ERR_ALERT | ERR_FATAL;
2076 goto out;
2077 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002078
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002079 /* Copy default server settings to new server settings. */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002080 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002081 HA_SPIN_INIT(&newsrv->lock);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002082 cur_arg++;
Willy Tarreau272adea2014-03-31 10:39:59 +02002083 } else {
2084 newsrv = &curproxy->defsrv;
2085 cur_arg = 1;
Thierry Fournierada34842016-02-17 21:25:09 +01002086 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002087 newsrv->dns_opts.accept_duplicate_ip = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002088 }
2089
2090 while (*args[cur_arg]) {
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01002091 if (!strcmp(args[cur_arg], "agent-inter")) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002092 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2093 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002094 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'agent-inter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002095 file, linenum, *err, newsrv->id);
2096 err_code |= ERR_ALERT | ERR_FATAL;
2097 goto out;
2098 }
2099 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002100 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002101 file, linenum, val, args[cur_arg], newsrv->id);
2102 err_code |= ERR_ALERT | ERR_FATAL;
2103 goto out;
2104 }
2105 newsrv->agent.inter = val;
2106 cur_arg += 2;
2107 }
Misiekea849332017-01-09 09:39:51 +01002108 else if (!strcmp(args[cur_arg], "agent-addr")) {
2109 if(str2ip(args[cur_arg + 1], &newsrv->agent.addr) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002110 ha_alert("parsing agent-addr failed. Check if %s is correct address.\n", args[cur_arg + 1]);
Misiekea849332017-01-09 09:39:51 +01002111 goto out;
2112 }
2113
2114 cur_arg += 2;
2115 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002116 else if (!strcmp(args[cur_arg], "agent-port")) {
2117 global.maxsock++;
2118 newsrv->agent.port = atol(args[cur_arg + 1]);
2119 cur_arg += 2;
2120 }
James Brown55f9ff12015-10-21 18:19:05 -07002121 else if (!strcmp(args[cur_arg], "agent-send")) {
2122 global.maxsock++;
2123 free(newsrv->agent.send_string);
2124 newsrv->agent.send_string_len = strlen(args[cur_arg + 1]);
2125 newsrv->agent.send_string = calloc(1, newsrv->agent.send_string_len + 1);
2126 memcpy(newsrv->agent.send_string, args[cur_arg + 1], newsrv->agent.send_string_len);
2127 cur_arg += 2;
2128 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002129 else if (!strcmp(args[cur_arg], "init-addr")) {
2130 char *p, *end;
2131 int done;
Willy Tarreau4310d362016-11-02 15:05:56 +01002132 struct sockaddr_storage sa;
Baptiste Assmann25938272016-09-21 20:26:16 +02002133
2134 newsrv->init_addr_methods = 0;
2135 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
2136
2137 for (p = args[cur_arg + 1]; *p; p = end) {
2138 /* cut on next comma */
2139 for (end = p; *end && *end != ','; end++);
2140 if (*end)
2141 *(end++) = 0;
2142
Willy Tarreau4310d362016-11-02 15:05:56 +01002143 memset(&sa, 0, sizeof(sa));
Baptiste Assmann25938272016-09-21 20:26:16 +02002144 if (!strcmp(p, "libc")) {
2145 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
2146 }
2147 else if (!strcmp(p, "last")) {
2148 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
2149 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01002150 else if (!strcmp(p, "none")) {
2151 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
2152 }
Willy Tarreau4310d362016-11-02 15:05:56 +01002153 else if (str2ip2(p, &sa, 0)) {
2154 if (is_addr(&newsrv->init_addr)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002155 ha_alert("parsing [%s:%d]: '%s' : initial address already specified, cannot add '%s'.\n",
Willy Tarreau4310d362016-11-02 15:05:56 +01002156 file, linenum, args[cur_arg], p);
2157 err_code |= ERR_ALERT | ERR_FATAL;
2158 goto out;
2159 }
2160 newsrv->init_addr = sa;
2161 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
2162 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002163 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002164 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 +02002165 file, linenum, args[cur_arg], p);
2166 err_code |= ERR_ALERT | ERR_FATAL;
2167 goto out;
2168 }
2169 if (!done) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002170 ha_alert("parsing [%s:%d]: '%s' : too many init-addr methods when trying to add '%s'\n",
Baptiste Assmann25938272016-09-21 20:26:16 +02002171 file, linenum, args[cur_arg], p);
2172 err_code |= ERR_ALERT | ERR_FATAL;
2173 goto out;
2174 }
2175 }
2176 cur_arg += 2;
2177 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002178 else if (!strcmp(args[cur_arg], "resolvers")) {
Frédéric Lécailledaa2fe62017-04-20 12:17:50 +02002179 free(newsrv->resolvers_id);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002180 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
2181 cur_arg += 2;
2182 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002183 else if (!strcmp(args[cur_arg], "resolve-opts")) {
2184 char *p, *end;
2185
2186 for (p = args[cur_arg + 1]; *p; p = end) {
2187 /* cut on next comma */
2188 for (end = p; *end && *end != ','; end++);
2189 if (*end)
2190 *(end++) = 0;
2191
2192 if (!strcmp(p, "allow-dup-ip")) {
2193 newsrv->dns_opts.accept_duplicate_ip = 1;
2194 }
2195 else if (!strcmp(p, "prevent-dup-ip")) {
2196 newsrv->dns_opts.accept_duplicate_ip = 0;
2197 }
2198 else {
2199 ha_alert("parsing [%s:%d]: '%s' : unknown resolve-opts option '%s', supported methods are 'allow-dup-ip' and 'prevent-dup-ip'.\n",
2200 file, linenum, args[cur_arg], p);
2201 err_code |= ERR_ALERT | ERR_FATAL;
2202 goto out;
2203 }
2204 }
2205
2206 cur_arg += 2;
2207 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002208 else if (!strcmp(args[cur_arg], "resolve-prefer")) {
2209 if (!strcmp(args[cur_arg + 1], "ipv4"))
Thierry Fournierada34842016-02-17 21:25:09 +01002210 newsrv->dns_opts.family_prio = AF_INET;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002211 else if (!strcmp(args[cur_arg + 1], "ipv6"))
Thierry Fournierada34842016-02-17 21:25:09 +01002212 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002213 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002214 ha_alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002215 file, linenum, args[cur_arg]);
2216 err_code |= ERR_ALERT | ERR_FATAL;
2217 goto out;
2218 }
2219 cur_arg += 2;
2220 }
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002221 else if (!strcmp(args[cur_arg], "resolve-net")) {
2222 char *p, *e;
2223 unsigned char mask;
2224 struct dns_options *opt;
2225
2226 if (!args[cur_arg + 1] || args[cur_arg + 1][0] == '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002227 ha_alert("parsing [%s:%d]: '%s' expects a list of networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002228 file, linenum, args[cur_arg]);
2229 err_code |= ERR_ALERT | ERR_FATAL;
2230 goto out;
2231 }
2232
2233 opt = &newsrv->dns_opts;
2234
2235 /* Split arguments by comma, and convert it from ipv4 or ipv6
2236 * string network in in_addr or in6_addr.
2237 */
2238 p = args[cur_arg + 1];
2239 e = p;
2240 while (*p != '\0') {
2241 /* If no room avalaible, return error. */
David Carlierd10025c2016-04-08 10:26:44 +01002242 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002243 ha_alert("parsing [%s:%d]: '%s' exceed %d networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002244 file, linenum, args[cur_arg], SRV_MAX_PREF_NET);
2245 err_code |= ERR_ALERT | ERR_FATAL;
2246 goto out;
2247 }
2248 /* look for end or comma. */
2249 while (*e != ',' && *e != '\0')
2250 e++;
2251 if (*e == ',') {
2252 *e = '\0';
2253 e++;
2254 }
2255 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
2256 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
2257 /* Try to convert input string from ipv4 or ipv6 network. */
2258 opt->pref_net[opt->pref_net_nb].family = AF_INET;
2259 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
2260 &mask)) {
2261 /* Try to convert input string from ipv6 network. */
2262 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
2263 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
2264 } else {
2265 /* All network conversions fail, retrun error. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002266 ha_alert("parsing [%s:%d]: '%s': invalid network '%s'.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002267 file, linenum, args[cur_arg], p);
2268 err_code |= ERR_ALERT | ERR_FATAL;
2269 goto out;
2270 }
2271 opt->pref_net_nb++;
2272 p = e;
2273 }
2274
2275 cur_arg += 2;
2276 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002277 else if (!strcmp(args[cur_arg], "rise")) {
2278 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002279 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002280 file, linenum, args[cur_arg]);
2281 err_code |= ERR_ALERT | ERR_FATAL;
2282 goto out;
2283 }
2284
2285 newsrv->check.rise = atol(args[cur_arg + 1]);
2286 if (newsrv->check.rise <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002287 ha_alert("parsing [%s:%d]: '%s' has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002288 file, linenum, args[cur_arg]);
2289 err_code |= ERR_ALERT | ERR_FATAL;
2290 goto out;
2291 }
2292
2293 if (newsrv->check.health)
2294 newsrv->check.health = newsrv->check.rise;
2295 cur_arg += 2;
2296 }
2297 else if (!strcmp(args[cur_arg], "fall")) {
2298 newsrv->check.fall = atol(args[cur_arg + 1]);
2299
2300 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002301 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002302 file, linenum, args[cur_arg]);
2303 err_code |= ERR_ALERT | ERR_FATAL;
2304 goto out;
2305 }
2306
2307 if (newsrv->check.fall <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002308 ha_alert("parsing [%s:%d]: '%s' has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002309 file, linenum, args[cur_arg]);
2310 err_code |= ERR_ALERT | ERR_FATAL;
2311 goto out;
2312 }
2313
2314 cur_arg += 2;
2315 }
2316 else if (!strcmp(args[cur_arg], "inter")) {
2317 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2318 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002319 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'inter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002320 file, linenum, *err, newsrv->id);
2321 err_code |= ERR_ALERT | ERR_FATAL;
2322 goto out;
2323 }
2324 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002325 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002326 file, linenum, val, args[cur_arg], newsrv->id);
2327 err_code |= ERR_ALERT | ERR_FATAL;
2328 goto out;
2329 }
2330 newsrv->check.inter = val;
2331 cur_arg += 2;
2332 }
2333 else if (!strcmp(args[cur_arg], "fastinter")) {
2334 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2335 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002336 ha_alert("parsing [%s:%d]: unexpected character '%c' in 'fastinter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002337 file, linenum, *err, newsrv->id);
2338 err_code |= ERR_ALERT | ERR_FATAL;
2339 goto out;
2340 }
2341 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002342 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002343 file, linenum, val, args[cur_arg], newsrv->id);
2344 err_code |= ERR_ALERT | ERR_FATAL;
2345 goto out;
2346 }
2347 newsrv->check.fastinter = val;
2348 cur_arg += 2;
2349 }
2350 else if (!strcmp(args[cur_arg], "downinter")) {
2351 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2352 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002353 ha_alert("parsing [%s:%d]: unexpected character '%c' in 'downinter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002354 file, linenum, *err, newsrv->id);
2355 err_code |= ERR_ALERT | ERR_FATAL;
2356 goto out;
2357 }
2358 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002359 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002360 file, linenum, val, args[cur_arg], newsrv->id);
2361 err_code |= ERR_ALERT | ERR_FATAL;
2362 goto out;
2363 }
2364 newsrv->check.downinter = val;
2365 cur_arg += 2;
2366 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002367 else if (!strcmp(args[cur_arg], "port")) {
2368 newsrv->check.port = atol(args[cur_arg + 1]);
Baptiste Assmann6b453f12016-08-11 23:12:18 +02002369 newsrv->flags |= SRV_F_CHECKPORT;
Willy Tarreau272adea2014-03-31 10:39:59 +02002370 cur_arg += 2;
2371 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002372 else if (!strcmp(args[cur_arg], "weight")) {
2373 int w;
2374 w = atol(args[cur_arg + 1]);
2375 if (w < 0 || w > SRV_UWGHT_MAX) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002376 ha_alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002377 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
2378 err_code |= ERR_ALERT | ERR_FATAL;
2379 goto out;
2380 }
2381 newsrv->uweight = newsrv->iweight = w;
2382 cur_arg += 2;
2383 }
2384 else if (!strcmp(args[cur_arg], "minconn")) {
2385 newsrv->minconn = atol(args[cur_arg + 1]);
2386 cur_arg += 2;
2387 }
2388 else if (!strcmp(args[cur_arg], "maxconn")) {
2389 newsrv->maxconn = atol(args[cur_arg + 1]);
2390 cur_arg += 2;
2391 }
2392 else if (!strcmp(args[cur_arg], "maxqueue")) {
2393 newsrv->maxqueue = atol(args[cur_arg + 1]);
2394 cur_arg += 2;
2395 }
2396 else if (!strcmp(args[cur_arg], "slowstart")) {
2397 /* slowstart is stored in seconds */
2398 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2399 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002400 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002401 file, linenum, *err, newsrv->id);
2402 err_code |= ERR_ALERT | ERR_FATAL;
2403 goto out;
2404 }
2405 newsrv->slowstart = (val + 999) / 1000;
2406 cur_arg += 2;
2407 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002408 else if (!strcmp(args[cur_arg], "on-error")) {
2409 if (!strcmp(args[cur_arg + 1], "fastinter"))
2410 newsrv->onerror = HANA_ONERR_FASTINTER;
2411 else if (!strcmp(args[cur_arg + 1], "fail-check"))
2412 newsrv->onerror = HANA_ONERR_FAILCHK;
2413 else if (!strcmp(args[cur_arg + 1], "sudden-death"))
2414 newsrv->onerror = HANA_ONERR_SUDDTH;
2415 else if (!strcmp(args[cur_arg + 1], "mark-down"))
2416 newsrv->onerror = HANA_ONERR_MARKDWN;
2417 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002418 ha_alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
Willy Tarreau272adea2014-03-31 10:39:59 +02002419 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
2420 file, linenum, args[cur_arg], args[cur_arg + 1]);
2421 err_code |= ERR_ALERT | ERR_FATAL;
2422 goto out;
2423 }
2424
2425 cur_arg += 2;
2426 }
2427 else if (!strcmp(args[cur_arg], "on-marked-down")) {
2428 if (!strcmp(args[cur_arg + 1], "shutdown-sessions"))
2429 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
2430 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002431 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002432 file, linenum, args[cur_arg], args[cur_arg + 1]);
2433 err_code |= ERR_ALERT | ERR_FATAL;
2434 goto out;
2435 }
2436
2437 cur_arg += 2;
2438 }
2439 else if (!strcmp(args[cur_arg], "on-marked-up")) {
2440 if (!strcmp(args[cur_arg + 1], "shutdown-backup-sessions"))
2441 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
2442 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002443 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002444 file, linenum, args[cur_arg], args[cur_arg + 1]);
2445 err_code |= ERR_ALERT | ERR_FATAL;
2446 goto out;
2447 }
2448
2449 cur_arg += 2;
2450 }
2451 else if (!strcmp(args[cur_arg], "error-limit")) {
2452 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002453 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002454 file, linenum, args[cur_arg]);
2455 err_code |= ERR_ALERT | ERR_FATAL;
2456 goto out;
2457 }
2458
2459 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
2460
2461 if (newsrv->consecutive_errors_limit <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002462 ha_alert("parsing [%s:%d]: %s has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002463 file, linenum, args[cur_arg]);
2464 err_code |= ERR_ALERT | ERR_FATAL;
2465 goto out;
2466 }
2467 cur_arg += 2;
2468 }
Frédéric Lécaille8d083ed2017-04-14 15:19:56 +02002469 else if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside: needs "source" first */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002470 ha_alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002471 file, linenum, "usesrc", "source");
2472 err_code |= ERR_ALERT | ERR_FATAL;
2473 goto out;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002474 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002475 else {
2476 static int srv_dumped;
2477 struct srv_kw *kw;
2478 char *err;
2479
2480 kw = srv_find_kw(args[cur_arg]);
2481 if (kw) {
2482 char *err = NULL;
2483 int code;
2484
2485 if (!kw->parse) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002486 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 +02002487 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002488 if (kw->skip != -1)
2489 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002490 err_code |= ERR_ALERT | ERR_FATAL;
2491 goto out;
2492 }
2493
2494 if (defsrv && !kw->default_ok) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002495 ha_alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002496 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002497 if (kw->skip != -1)
2498 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002499 err_code |= ERR_ALERT;
2500 continue;
2501 }
2502
2503 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
2504 err_code |= code;
2505
2506 if (code) {
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002507 display_parser_err(file, linenum, args, cur_arg, &err);
Willy Tarreau272adea2014-03-31 10:39:59 +02002508 if (code & ERR_FATAL) {
2509 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002510 if (kw->skip != -1)
2511 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002512 goto out;
2513 }
2514 }
2515 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002516 if (kw->skip != -1)
2517 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002518 continue;
2519 }
2520
2521 err = NULL;
2522 if (!srv_dumped) {
2523 srv_dump_kws(&err);
2524 indent_msg(&err, 4);
2525 srv_dumped = 1;
2526 }
2527
Christopher Faulet767a84b2017-11-24 16:50:31 +01002528 ha_alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002529 file, linenum, args[0], args[1], args[cur_arg],
2530 err ? " Registered keywords :" : "", err ? err : "");
2531 free(err);
2532
2533 err_code |= ERR_ALERT | ERR_FATAL;
2534 goto out;
2535 }
2536 }
2537
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002538 if (!defsrv)
2539 err_code |= server_finalize_init(file, linenum, args, cur_arg, newsrv, curproxy);
2540 if (err_code & ERR_FATAL)
2541 goto out;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002542 if (srv_tmpl)
2543 server_template_init(newsrv, curproxy);
Willy Tarreau272adea2014-03-31 10:39:59 +02002544 }
Willy Tarreau07101d52015-09-08 16:16:35 +02002545 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002546 return 0;
2547
2548 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02002549 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002550 free(errmsg);
2551 return err_code;
2552}
2553
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002554/* Returns a pointer to the first server matching either id <id>.
2555 * NULL is returned if no match is found.
2556 * the lookup is performed in the backend <bk>
2557 */
2558struct server *server_find_by_id(struct proxy *bk, int id)
2559{
2560 struct eb32_node *eb32;
2561 struct server *curserver;
2562
2563 if (!bk || (id ==0))
2564 return NULL;
2565
2566 /* <bk> has no backend capabilities, so it can't have a server */
2567 if (!(bk->cap & PR_CAP_BE))
2568 return NULL;
2569
2570 curserver = NULL;
2571
2572 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2573 if (eb32)
2574 curserver = container_of(eb32, struct server, conf.id);
2575
2576 return curserver;
2577}
2578
2579/* Returns a pointer to the first server matching either name <name>, or id
2580 * if <name> starts with a '#'. NULL is returned if no match is found.
2581 * the lookup is performed in the backend <bk>
2582 */
2583struct server *server_find_by_name(struct proxy *bk, const char *name)
2584{
2585 struct server *curserver;
2586
2587 if (!bk || !name)
2588 return NULL;
2589
2590 /* <bk> has no backend capabilities, so it can't have a server */
2591 if (!(bk->cap & PR_CAP_BE))
2592 return NULL;
2593
2594 curserver = NULL;
2595 if (*name == '#') {
2596 curserver = server_find_by_id(bk, atoi(name + 1));
2597 if (curserver)
2598 return curserver;
2599 }
2600 else {
2601 curserver = bk->srv;
2602
2603 while (curserver && (strcmp(curserver->id, name) != 0))
2604 curserver = curserver->next;
2605
2606 if (curserver)
2607 return curserver;
2608 }
2609
2610 return NULL;
2611}
2612
2613struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2614{
2615 struct server *byname;
2616 struct server *byid;
2617
2618 if (!name && !id)
2619 return NULL;
2620
2621 if (diff)
2622 *diff = 0;
2623
2624 byname = byid = NULL;
2625
2626 if (name) {
2627 byname = server_find_by_name(bk, name);
2628 if (byname && (!id || byname->puid == id))
2629 return byname;
2630 }
2631
2632 /* remaining possibilities :
2633 * - name not set
2634 * - name set but not found
2635 * - name found but ID doesn't match
2636 */
2637 if (id) {
2638 byid = server_find_by_id(bk, id);
2639 if (byid) {
2640 if (byname) {
2641 /* use id only if forced by configuration */
2642 if (byid->flags & SRV_F_FORCED_ID) {
2643 if (diff)
2644 *diff |= 2;
2645 return byid;
2646 }
2647 else {
2648 if (diff)
2649 *diff |= 1;
2650 return byname;
2651 }
2652 }
2653
2654 /* remaining possibilities:
2655 * - name not set
2656 * - name set but not found
2657 */
2658 if (name && diff)
2659 *diff |= 2;
2660 return byid;
2661 }
2662
2663 /* id bot found */
2664 if (byname) {
2665 if (diff)
2666 *diff |= 1;
2667 return byname;
2668 }
2669 }
2670
2671 return NULL;
2672}
2673
Christopher Faulet5d42e092017-10-16 12:00:40 +02002674/* Registers changes to be applied asynchronously */
2675static void srv_register_update(struct server *srv)
2676{
2677 if (LIST_ISEMPTY(&srv->update_status)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002678 HA_SPIN_LOCK(UPDATED_SERVERS_LOCK, &updated_servers_lock);
Christopher Faulet5d42e092017-10-16 12:00:40 +02002679 if (LIST_ISEMPTY(&srv->update_status))
2680 LIST_ADDQ(&updated_servers, &srv->update_status);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002681 HA_SPIN_UNLOCK(UPDATED_SERVERS_LOCK, &updated_servers_lock);
Christopher Faulet5d42e092017-10-16 12:00:40 +02002682 }
2683}
2684
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002685/* Update a server state using the parameters available in the params list */
2686static void srv_update_state(struct server *srv, int version, char **params)
2687{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002688 char *p;
Willy Tarreau83061a82018-07-13 11:56:34 +02002689 struct buffer *msg;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002690
2691 /* fields since version 1
2692 * and common to all other upcoming versions
2693 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002694 enum srv_state srv_op_state;
2695 enum srv_admin srv_admin_state;
2696 unsigned srv_uweight, srv_iweight;
2697 unsigned long srv_last_time_change;
2698 short srv_check_status;
2699 enum chk_result srv_check_result;
2700 int srv_check_health;
2701 int srv_check_state, srv_agent_state;
2702 int bk_f_forced_id;
2703 int srv_f_forced_id;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002704 int fqdn_set_by_cli;
2705 const char *fqdn;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002706 const char *port_str;
2707 unsigned int port;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002708
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002709 fqdn = NULL;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002710 port = 0;
Willy Tarreau31138fa2015-09-29 18:38:47 +02002711 msg = get_trash_chunk();
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002712 switch (version) {
2713 case 1:
2714 /*
2715 * now we can proceed with server's state update:
2716 * srv_addr: params[0]
2717 * srv_op_state: params[1]
2718 * srv_admin_state: params[2]
2719 * srv_uweight: params[3]
2720 * srv_iweight: params[4]
2721 * srv_last_time_change: params[5]
2722 * srv_check_status: params[6]
2723 * srv_check_result: params[7]
2724 * srv_check_health: params[8]
2725 * srv_check_state: params[9]
2726 * srv_agent_state: params[10]
2727 * bk_f_forced_id: params[11]
2728 * srv_f_forced_id: params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002729 * srv_fqdn: params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02002730 * srv_port: params[14]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002731 */
2732
2733 /* validating srv_op_state */
2734 p = NULL;
2735 errno = 0;
2736 srv_op_state = strtol(params[1], &p, 10);
2737 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
2738 (srv_op_state != SRV_ST_STOPPED &&
2739 srv_op_state != SRV_ST_STARTING &&
2740 srv_op_state != SRV_ST_RUNNING &&
2741 srv_op_state != SRV_ST_STOPPING)) {
2742 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
2743 }
2744
2745 /* validating srv_admin_state */
2746 p = NULL;
2747 errno = 0;
2748 srv_admin_state = strtol(params[2], &p, 10);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002749 fqdn_set_by_cli = !!(srv_admin_state & SRV_ADMF_HMAINT);
Willy Tarreau757478e2016-11-03 19:22:19 +01002750
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002751 /* inherited statuses will be recomputed later.
2752 * Also disable SRV_ADMF_HMAINT flag (set from stats socket fqdn).
2753 */
2754 srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_HMAINT;
Willy Tarreau757478e2016-11-03 19:22:19 +01002755
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002756 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
2757 (srv_admin_state != 0 &&
2758 srv_admin_state != SRV_ADMF_FMAINT &&
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002759 srv_admin_state != SRV_ADMF_CMAINT &&
2760 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
Willy Tarreaue1bde142016-11-03 18:33:25 +01002761 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FDRAIN) &&
Willy Tarreau757478e2016-11-03 19:22:19 +01002762 srv_admin_state != SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002763 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
2764 }
2765
2766 /* validating srv_uweight */
2767 p = NULL;
2768 errno = 0;
2769 srv_uweight = strtol(params[3], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002770 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002771 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
2772
2773 /* validating srv_iweight */
2774 p = NULL;
2775 errno = 0;
2776 srv_iweight = strtol(params[4], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002777 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002778 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
2779
2780 /* validating srv_last_time_change */
2781 p = NULL;
2782 errno = 0;
2783 srv_last_time_change = strtol(params[5], &p, 10);
2784 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2785 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
2786
2787 /* validating srv_check_status */
2788 p = NULL;
2789 errno = 0;
2790 srv_check_status = strtol(params[6], &p, 10);
2791 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2792 (srv_check_status >= HCHK_STATUS_SIZE))
2793 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
2794
2795 /* validating srv_check_result */
2796 p = NULL;
2797 errno = 0;
2798 srv_check_result = strtol(params[7], &p, 10);
2799 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2800 (srv_check_result != CHK_RES_UNKNOWN &&
2801 srv_check_result != CHK_RES_NEUTRAL &&
2802 srv_check_result != CHK_RES_FAILED &&
2803 srv_check_result != CHK_RES_PASSED &&
2804 srv_check_result != CHK_RES_CONDPASS)) {
2805 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2806 }
2807
2808 /* validating srv_check_health */
2809 p = NULL;
2810 errno = 0;
2811 srv_check_health = strtol(params[8], &p, 10);
2812 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2813 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
2814
2815 /* validating srv_check_state */
2816 p = NULL;
2817 errno = 0;
2818 srv_check_state = strtol(params[9], &p, 10);
2819 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2820 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2821 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
2822
2823 /* validating srv_agent_state */
2824 p = NULL;
2825 errno = 0;
2826 srv_agent_state = strtol(params[10], &p, 10);
2827 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2828 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2829 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
2830
2831 /* validating bk_f_forced_id */
2832 p = NULL;
2833 errno = 0;
2834 bk_f_forced_id = strtol(params[11], &p, 10);
2835 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
2836 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
2837
2838 /* validating srv_f_forced_id */
2839 p = NULL;
2840 errno = 0;
2841 srv_f_forced_id = strtol(params[12], &p, 10);
2842 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
2843 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
2844
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002845 /* validating srv_fqdn */
2846 fqdn = params[13];
2847 if (fqdn && *fqdn == '-')
2848 fqdn = NULL;
2849 if (fqdn && (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn))) {
2850 chunk_appendf(msg, ", invalid srv_fqdn value '%s'", params[13]);
2851 fqdn = NULL;
2852 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002853
Frédéric Lécaille31694712017-08-01 08:47:19 +02002854 port_str = params[14];
2855 if (port_str) {
2856 port = strl2uic(port_str, strlen(port_str));
2857 if (port > USHRT_MAX) {
2858 chunk_appendf(msg, ", invalid srv_port value '%s'", port_str);
2859 port_str = NULL;
2860 }
2861 }
2862
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002863 /* don't apply anything if one error has been detected */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002864 if (msg->data)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002865 goto out;
2866
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002867 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002868 /* recover operational state and apply it to this server
2869 * and all servers tracking this one */
2870 switch (srv_op_state) {
2871 case SRV_ST_STOPPED:
2872 srv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02002873 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002874 break;
2875 case SRV_ST_STARTING:
Emeric Brun52a91d32017-08-31 14:41:55 +02002876 srv->next_state = srv_op_state;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002877 break;
2878 case SRV_ST_STOPPING:
2879 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02002880 srv_set_stopping(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002881 break;
2882 case SRV_ST_RUNNING:
2883 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02002884 srv_set_running(srv, "", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002885 break;
2886 }
2887
2888 /* When applying server state, the following rules apply:
2889 * - in case of a configuration change, we apply the setting from the new
2890 * configuration, regardless of old running state
2891 * - if no configuration change, we apply old running state only if old running
2892 * state is different from new configuration state
2893 */
2894 /* configuration has changed */
Emeric Brun52a91d32017-08-31 14:41:55 +02002895 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->next_admin & SRV_ADMF_CMAINT)) {
2896 if (srv->next_admin & SRV_ADMF_CMAINT)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002897 srv_adm_set_maint(srv);
2898 else
2899 srv_adm_set_ready(srv);
2900 }
2901 /* configuration is the same, let's compate old running state and new conf state */
2902 else {
Emeric Brun52a91d32017-08-31 14:41:55 +02002903 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002904 srv_adm_set_maint(srv);
Emeric Brun52a91d32017-08-31 14:41:55 +02002905 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002906 srv_adm_set_ready(srv);
2907 }
2908 /* apply drain mode if server is currently enabled */
Emeric Brun52a91d32017-08-31 14:41:55 +02002909 if (!(srv->next_admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002910 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
Willy Tarreau22cace22016-11-03 18:19:49 +01002911 * (srv->iweight is the weight set up in configuration).
2912 * There are two possible reasons for FDRAIN to have been present :
2913 * - previous config weight was zero
2914 * - "set server b/s drain" was sent to the CLI
2915 *
2916 * In the first case, we simply want to drop this drain state
2917 * if the new weight is not zero anymore, meaning the administrator
2918 * has intentionally turned the weight back to a positive value to
2919 * enable the server again after an operation. In the second case,
2920 * the drain state was forced on the CLI regardless of the config's
2921 * weight so we don't want a change to the config weight to lose this
2922 * status. What this means is :
2923 * - if previous weight was 0 and new one is >0, drop the DRAIN state.
2924 * - if the previous weight was >0, keep it.
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002925 */
Willy Tarreau22cace22016-11-03 18:19:49 +01002926 if (srv_iweight > 0 || srv->iweight == 0)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002927 srv_adm_set_drain(srv);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002928 }
2929
2930 srv->last_change = date.tv_sec - srv_last_time_change;
2931 srv->check.status = srv_check_status;
2932 srv->check.result = srv_check_result;
2933 srv->check.health = srv_check_health;
2934
2935 /* Only case we want to apply is removing ENABLED flag which could have been
2936 * done by the "disable health" command over the stats socket
2937 */
2938 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2939 (srv_check_state & CHK_ST_CONFIGURED) &&
2940 !(srv_check_state & CHK_ST_ENABLED))
2941 srv->check.state &= ~CHK_ST_ENABLED;
2942
2943 /* Only case we want to apply is removing ENABLED flag which could have been
2944 * done by the "disable agent" command over the stats socket
2945 */
2946 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
2947 (srv_agent_state & CHK_ST_CONFIGURED) &&
2948 !(srv_agent_state & CHK_ST_ENABLED))
2949 srv->agent.state &= ~CHK_ST_ENABLED;
2950
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002951 /* We want to apply the previous 'running' weight (srv_uweight) only if there
2952 * was no change in the configuration: both previous and new iweight are equals
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002953 *
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002954 * It means that a configuration file change has precedence over a unix socket change
2955 * for server's weight
2956 *
2957 * by default, HAProxy applies the following weight when parsing the configuration
2958 * srv->uweight = srv->iweight
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002959 */
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002960 if (srv_iweight == srv->iweight) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002961 srv->uweight = srv_uweight;
2962 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002963 server_recalc_eweight(srv);
2964
Willy Tarreaue5a60682016-11-09 14:54:53 +01002965 /* load server IP address */
Daniel Corbett9215ffa2018-05-19 19:43:24 -04002966 if (strcmp(params[0], "-"))
2967 srv->lastaddr = strdup(params[0]);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002968
2969 if (fqdn && srv->hostname) {
2970 if (!strcmp(srv->hostname, fqdn)) {
2971 /* Here we reset the 'set from stats socket FQDN' flag
2972 * to support such transitions:
2973 * Let's say initial FQDN value is foo1 (in configuration file).
2974 * - FQDN changed from stats socket, from foo1 to foo2 value,
2975 * - FQDN changed again from file configuration (with the same previous value
2976 set from stats socket, from foo1 to foo2 value),
2977 * - reload for any other reason than a FQDN modification,
2978 * the configuration file FQDN matches the fqdn server state file value.
2979 * So we must reset the 'set from stats socket FQDN' flag to be consistent with
2980 * any futher FQDN modification.
2981 */
Emeric Brun52a91d32017-08-31 14:41:55 +02002982 srv->next_admin &= ~SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002983 }
2984 else {
2985 /* If the FDQN has been changed from stats socket,
2986 * apply fqdn state file value (which is the value set
2987 * from stats socket).
2988 */
2989 if (fqdn_set_by_cli) {
Olivier Houchardd16bfe62017-10-31 15:21:19 +01002990 srv_set_fqdn(srv, fqdn, 0);
Emeric Brun52a91d32017-08-31 14:41:55 +02002991 srv->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002992 }
2993 }
2994 }
2995
Frédéric Lécaille31694712017-08-01 08:47:19 +02002996 if (port_str)
2997 srv->svc_port = port;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002998 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Frédéric Lécaille31694712017-08-01 08:47:19 +02002999
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003000 break;
3001 default:
3002 chunk_appendf(msg, ", version '%d' not supported", version);
3003 }
3004
3005 out:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003006 if (msg->data) {
Baptiste Assmann0821bb92016-01-21 00:20:50 +01003007 chunk_appendf(msg, "\n");
Christopher Faulet767a84b2017-11-24 16:50:31 +01003008 ha_warning("server-state application failed for server '%s/%s'%s",
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003009 srv->proxy->id, srv->id, msg->area);
Baptiste Assmann0821bb92016-01-21 00:20:50 +01003010 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003011}
3012
3013/* This function parses all the proxies and only take care of the backends (since we're looking for server)
3014 * For each proxy, it does the following:
3015 * - opens its server state file (either one or local one)
3016 * - read whole file, line by line
3017 * - analyse each line to check if it matches our current backend:
3018 * - backend name matches
3019 * - backend id matches if id is forced and name doesn't match
3020 * - if the server pointed by the line is found, then state is applied
3021 *
3022 * If the running backend uuid or id differs from the state file, then HAProxy reports
3023 * a warning.
3024 */
3025void apply_server_state(void)
3026{
3027 char *cur, *end;
3028 char mybuf[SRV_STATE_LINE_MAXLEN];
3029 int mybuflen;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003030 char *params[SRV_STATE_FILE_MAX_FIELDS] = {0};
3031 char *srv_params[SRV_STATE_FILE_MAX_FIELDS] = {0};
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003032 int arg, srv_arg, version, diff;
3033 FILE *f;
3034 char *filepath;
3035 char globalfilepath[MAXPATHLEN + 1];
3036 char localfilepath[MAXPATHLEN + 1];
3037 int len, fileopenerr, globalfilepathlen, localfilepathlen;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003038 struct proxy *curproxy, *bk;
3039 struct server *srv;
3040
3041 globalfilepathlen = 0;
3042 /* create the globalfilepath variable */
3043 if (global.server_state_file) {
3044 /* absolute path or no base directory provided */
3045 if ((global.server_state_file[0] == '/') || (!global.server_state_base)) {
3046 len = strlen(global.server_state_file);
3047 if (len > MAXPATHLEN) {
3048 globalfilepathlen = 0;
3049 goto globalfileerror;
3050 }
3051 memcpy(globalfilepath, global.server_state_file, len);
3052 globalfilepath[len] = '\0';
3053 globalfilepathlen = len;
3054 }
3055 else if (global.server_state_base) {
3056 len = strlen(global.server_state_base);
3057 globalfilepathlen += len;
3058
3059 if (globalfilepathlen > MAXPATHLEN) {
3060 globalfilepathlen = 0;
3061 goto globalfileerror;
3062 }
3063 strncpy(globalfilepath, global.server_state_base, len);
3064 globalfilepath[globalfilepathlen] = 0;
3065
3066 /* append a slash if needed */
3067 if (!globalfilepathlen || globalfilepath[globalfilepathlen - 1] != '/') {
3068 if (globalfilepathlen + 1 > MAXPATHLEN) {
3069 globalfilepathlen = 0;
3070 goto globalfileerror;
3071 }
3072 globalfilepath[globalfilepathlen++] = '/';
3073 }
3074
3075 len = strlen(global.server_state_file);
3076 if (globalfilepathlen + len > MAXPATHLEN) {
3077 globalfilepathlen = 0;
3078 goto globalfileerror;
3079 }
3080 memcpy(globalfilepath + globalfilepathlen, global.server_state_file, len);
3081 globalfilepathlen += len;
3082 globalfilepath[globalfilepathlen++] = 0;
3083 }
3084 }
3085 globalfileerror:
3086 if (globalfilepathlen == 0)
3087 globalfilepath[0] = '\0';
3088
3089 /* read servers state from local file */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003090 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003091 /* servers are only in backends */
3092 if (!(curproxy->cap & PR_CAP_BE))
3093 continue;
3094 fileopenerr = 0;
3095 filepath = NULL;
3096
3097 /* search server state file path and name */
3098 switch (curproxy->load_server_state_from_file) {
3099 /* read servers state from global file */
3100 case PR_SRV_STATE_FILE_GLOBAL:
3101 /* there was an error while generating global server state file path */
3102 if (globalfilepathlen == 0)
3103 continue;
3104 filepath = globalfilepath;
3105 fileopenerr = 1;
3106 break;
3107 /* this backend has its own file */
3108 case PR_SRV_STATE_FILE_LOCAL:
3109 localfilepathlen = 0;
3110 localfilepath[0] = '\0';
3111 len = 0;
3112 /* create the localfilepath variable */
3113 /* absolute path or no base directory provided */
3114 if ((curproxy->server_state_file_name[0] == '/') || (!global.server_state_base)) {
3115 len = strlen(curproxy->server_state_file_name);
3116 if (len > MAXPATHLEN) {
3117 localfilepathlen = 0;
3118 goto localfileerror;
3119 }
3120 memcpy(localfilepath, curproxy->server_state_file_name, len);
3121 localfilepath[len] = '\0';
3122 localfilepathlen = len;
3123 }
3124 else if (global.server_state_base) {
3125 len = strlen(global.server_state_base);
3126 localfilepathlen += len;
3127
3128 if (localfilepathlen > MAXPATHLEN) {
3129 localfilepathlen = 0;
3130 goto localfileerror;
3131 }
3132 strncpy(localfilepath, global.server_state_base, len);
3133 localfilepath[localfilepathlen] = 0;
3134
3135 /* append a slash if needed */
3136 if (!localfilepathlen || localfilepath[localfilepathlen - 1] != '/') {
3137 if (localfilepathlen + 1 > MAXPATHLEN) {
3138 localfilepathlen = 0;
3139 goto localfileerror;
3140 }
3141 localfilepath[localfilepathlen++] = '/';
3142 }
3143
3144 len = strlen(curproxy->server_state_file_name);
3145 if (localfilepathlen + len > MAXPATHLEN) {
3146 localfilepathlen = 0;
3147 goto localfileerror;
3148 }
3149 memcpy(localfilepath + localfilepathlen, curproxy->server_state_file_name, len);
3150 localfilepathlen += len;
3151 localfilepath[localfilepathlen++] = 0;
3152 }
3153 filepath = localfilepath;
3154 localfileerror:
3155 if (localfilepathlen == 0)
3156 localfilepath[0] = '\0';
3157
3158 break;
3159 case PR_SRV_STATE_FILE_NONE:
3160 default:
3161 continue;
3162 }
3163
3164 /* preload global state file */
3165 errno = 0;
3166 f = fopen(filepath, "r");
3167 if (errno && fileopenerr)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003168 ha_warning("Can't open server state file '%s': %s\n", filepath, strerror(errno));
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003169 if (!f)
3170 continue;
3171
3172 mybuf[0] = '\0';
3173 mybuflen = 0;
3174 version = 0;
3175
3176 /* first character of first line of the file must contain the version of the export */
Dragan Dosencf4fb032015-11-04 23:03:26 +01003177 if (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003178 ha_warning("Can't read first line of the server state file '%s'\n", filepath);
Dragan Dosencf4fb032015-11-04 23:03:26 +01003179 goto fileclose;
3180 }
3181
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003182 cur = mybuf;
3183 version = atoi(cur);
3184 if ((version < SRV_STATE_FILE_VERSION_MIN) ||
3185 (version > SRV_STATE_FILE_VERSION_MAX))
Dragan Dosencf4fb032015-11-04 23:03:26 +01003186 goto fileclose;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003187
3188 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3189 int bk_f_forced_id = 0;
3190 int check_id = 0;
3191 int check_name = 0;
3192
3193 mybuflen = strlen(mybuf);
3194 cur = mybuf;
3195 end = cur + mybuflen;
3196
3197 bk = NULL;
3198 srv = NULL;
3199
3200 /* we need at least one character */
3201 if (mybuflen == 0)
3202 continue;
3203
3204 /* ignore blank characters at the beginning of the line */
3205 while (isspace(*cur))
3206 ++cur;
3207
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003208 /* Ignore empty or commented lines */
3209 if (cur == end || *cur == '#')
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003210 continue;
3211
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003212 /* truncated lines */
3213 if (mybuf[mybuflen - 1] != '\n') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003214 ha_warning("server-state file '%s': truncated line\n", filepath);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003215 continue;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003216 }
3217
3218 /* Removes trailing '\n' */
3219 mybuf[mybuflen - 1] = '\0';
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003220
3221 /* we're now ready to move the line into *srv_params[] */
3222 params[0] = cur;
3223 arg = 1;
3224 srv_arg = 0;
3225 while (*cur && arg < SRV_STATE_FILE_MAX_FIELDS) {
3226 if (isspace(*cur)) {
3227 *cur = '\0';
3228 ++cur;
3229 while (isspace(*cur))
3230 ++cur;
3231 switch (version) {
3232 case 1:
3233 /*
3234 * srv_addr: params[4] => srv_params[0]
3235 * srv_op_state: params[5] => srv_params[1]
3236 * srv_admin_state: params[6] => srv_params[2]
3237 * srv_uweight: params[7] => srv_params[3]
3238 * srv_iweight: params[8] => srv_params[4]
3239 * srv_last_time_change: params[9] => srv_params[5]
3240 * srv_check_status: params[10] => srv_params[6]
3241 * srv_check_result: params[11] => srv_params[7]
3242 * srv_check_health: params[12] => srv_params[8]
3243 * srv_check_state: params[13] => srv_params[9]
3244 * srv_agent_state: params[14] => srv_params[10]
3245 * bk_f_forced_id: params[15] => srv_params[11]
3246 * srv_f_forced_id: params[16] => srv_params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003247 * srv_fqdn: params[17] => srv_params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02003248 * srv_port: params[18] => srv_params[14]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003249 */
3250 if (arg >= 4) {
3251 srv_params[srv_arg] = cur;
3252 ++srv_arg;
3253 }
3254 break;
3255 }
3256
3257 params[arg] = cur;
3258 ++arg;
3259 }
3260 else {
3261 ++cur;
3262 }
3263 }
3264
3265 /* if line is incomplete line, then ignore it.
3266 * otherwise, update useful flags */
3267 switch (version) {
3268 case 1:
3269 if (arg < SRV_STATE_FILE_NB_FIELDS_VERSION_1)
3270 continue;
3271 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
3272 check_id = (atoi(params[0]) == curproxy->uuid);
3273 check_name = (strcmp(curproxy->id, params[1]) == 0);
3274 break;
3275 }
3276
3277 diff = 0;
3278 bk = curproxy;
3279
3280 /* if backend can't be found, let's continue */
3281 if (!check_id && !check_name)
3282 continue;
3283 else if (!check_id && check_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003284 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 +02003285 send_log(bk, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3286 }
3287 else if (check_id && !check_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003288 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 +02003289 send_log(bk, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3290 /* if name doesn't match, we still want to update curproxy if the backend id
3291 * was forced in previous the previous configuration */
3292 if (!bk_f_forced_id)
3293 continue;
3294 }
3295
3296 /* look for the server by its id: param[2] */
3297 /* else look for the server by its name: param[3] */
3298 diff = 0;
3299 srv = server_find_best_match(bk, params[3], atoi(params[2]), &diff);
3300
3301 if (!srv) {
3302 /* if no server found, then warning and continue with next line */
Christopher Faulet767a84b2017-11-24 16:50:31 +01003303 ha_warning("can't find server '%s' with id '%s' in backend with id '%s' or name '%s'\n",
3304 params[3], params[2], params[0], params[1]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003305 send_log(bk, LOG_NOTICE, "can't find server '%s' with id '%s' in backend with id '%s' or name '%s'\n",
3306 params[3], params[2], params[0], params[1]);
3307 continue;
3308 }
3309 else if (diff & PR_FBM_MISMATCH_ID) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003310 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 +02003311 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 +02003312 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003313 }
3314 else if (diff & PR_FBM_MISMATCH_NAME) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003315 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 +02003316 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 +02003317 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003318 }
3319
3320 /* now we can proceed with server's state update */
3321 srv_update_state(srv, version, srv_params);
3322 }
Dragan Dosencf4fb032015-11-04 23:03:26 +01003323fileclose:
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003324 fclose(f);
3325 }
3326}
3327
Simon Horman7d09b9a2013-02-12 10:45:51 +09003328/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003329 * update a server's current IP address.
3330 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3331 * ip is in network format.
3332 * updater is a string which contains an information about the requester of the update.
3333 * updater is used if not NULL.
3334 *
3335 * A log line and a stderr warning message is generated based on server's backend options.
3336 */
Thierry Fournierd35b7a62016-02-24 08:23:22 +01003337int update_server_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003338{
3339 /* generates a log line and a warning on stderr */
3340 if (1) {
3341 /* book enough space for both IPv4 and IPv6 */
3342 char oldip[INET6_ADDRSTRLEN];
3343 char newip[INET6_ADDRSTRLEN];
3344
3345 memset(oldip, '\0', INET6_ADDRSTRLEN);
3346 memset(newip, '\0', INET6_ADDRSTRLEN);
3347
3348 /* copy old IP address in a string */
3349 switch (s->addr.ss_family) {
3350 case AF_INET:
3351 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3352 break;
3353 case AF_INET6:
3354 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3355 break;
3356 };
3357
3358 /* copy new IP address in a string */
3359 switch (ip_sin_family) {
3360 case AF_INET:
3361 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3362 break;
3363 case AF_INET6:
3364 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3365 break;
3366 };
3367
3368 /* save log line into a buffer */
3369 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3370 s->proxy->id, s->id, oldip, newip, updater);
3371
3372 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003373 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003374
3375 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003376 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003377 }
3378
3379 /* save the new IP family */
3380 s->addr.ss_family = ip_sin_family;
3381 /* save the new IP address */
3382 switch (ip_sin_family) {
3383 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003384 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003385 break;
3386 case AF_INET6:
3387 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3388 break;
3389 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003390 srv_set_dyncookie(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003391
3392 return 0;
3393}
3394
3395/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003396 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3397 *
3398 * Caller can pass its name through <updater> to get it integrated in the response message
3399 * returned by the function.
3400 *
3401 * The function first does the following, in that order:
3402 * - validates the new addr and/or port
3403 * - checks if an update is required (new IP or port is different than current ones)
3404 * - checks the update is allowed:
3405 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3406 * - allow all changes if no CHECKS are configured
3407 * - if CHECK is configured:
3408 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3409 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3410 * conditions are met
3411 */
3412const char *update_server_addr_port(struct server *s, const char *addr, const char *port, char *updater)
3413{
3414 struct sockaddr_storage sa;
3415 int ret, port_change_required;
3416 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003417 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003418 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003419 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003420
3421 msg = get_trash_chunk();
3422 chunk_reset(msg);
3423
3424 if (addr) {
3425 memset(&sa, 0, sizeof(struct sockaddr_storage));
3426 if (str2ip2(addr, &sa, 0) == NULL) {
3427 chunk_printf(msg, "Invalid addr '%s'", addr);
3428 goto out;
3429 }
3430
3431 /* changes are allowed on AF_INET* families only */
3432 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3433 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3434 goto out;
3435 }
3436
3437 /* collecting data currently setup */
3438 memset(current_addr, '\0', sizeof(current_addr));
3439 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3440 /* changes are allowed on AF_INET* families only */
3441 if ((ret != AF_INET) && (ret != AF_INET6)) {
3442 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3443 goto out;
3444 }
3445
3446 /* applying ADDR changes if required and allowed
3447 * ipcmp returns 0 when both ADDR are the same
3448 */
3449 if (ipcmp(&s->addr, &sa) == 0) {
3450 chunk_appendf(msg, "no need to change the addr");
3451 goto port;
3452 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003453 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003454 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003455
3456 /* we also need to update check's ADDR only if it uses the server's one */
3457 if ((s->check.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_CHECKADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003458 ipcpy(&sa, &s->check.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003459 }
3460
3461 /* we also need to update agent ADDR only if it use the server's one */
3462 if ((s->agent.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_AGENTADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003463 ipcpy(&sa, &s->agent.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003464 }
3465
3466 /* update report for caller */
3467 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3468 }
3469
3470 port:
3471 if (port) {
3472 char sign = '\0';
3473 char *endptr;
3474
3475 if (addr)
3476 chunk_appendf(msg, ", ");
3477
3478 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003479 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003480
3481 /* check if PORT change is required */
3482 port_change_required = 0;
3483
3484 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003485 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003486 new_port = strtol(port, &endptr, 10);
3487 if ((errno != 0) || (port == endptr)) {
3488 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3489 goto out;
3490 }
3491
3492 /* check if caller triggers a port mapped or offset */
3493 if (sign == '-' || (sign == '+')) {
3494 /* check if server currently uses port map */
3495 if (!(s->flags & SRV_F_MAPPORTS)) {
3496 /* switch from fixed port to port map mandatorily triggers
3497 * a port change */
3498 port_change_required = 1;
3499 /* check is configured
3500 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3501 * prevent PORT change if check doesn't have it's dedicated port while switching
3502 * to port mapping */
3503 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3504 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.");
3505 goto out;
3506 }
3507 }
3508 /* we're already using port maps */
3509 else {
3510 port_change_required = current_port != new_port;
3511 }
3512 }
3513 /* fixed port */
3514 else {
3515 port_change_required = current_port != new_port;
3516 }
3517
3518 /* applying PORT changes if required and update response message */
3519 if (port_change_required) {
3520 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003521 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003522 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003523
3524 /* prepare message */
3525 chunk_appendf(msg, "port changed from '");
3526 if (s->flags & SRV_F_MAPPORTS)
3527 chunk_appendf(msg, "+");
3528 chunk_appendf(msg, "%d' to '", current_port);
3529
3530 if (sign == '-') {
3531 s->flags |= SRV_F_MAPPORTS;
3532 chunk_appendf(msg, "%c", sign);
3533 /* just use for result output */
3534 new_port = -new_port;
3535 }
3536 else if (sign == '+') {
3537 s->flags |= SRV_F_MAPPORTS;
3538 chunk_appendf(msg, "%c", sign);
3539 }
3540 else {
3541 s->flags &= ~SRV_F_MAPPORTS;
3542 }
3543
3544 chunk_appendf(msg, "%d'", new_port);
3545
3546 /* we also need to update health checks port only if it uses server's realport */
3547 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3548 s->check.port = new_port;
3549 }
3550 }
3551 else {
3552 chunk_appendf(msg, "no need to change the port");
3553 }
3554 }
3555
3556out:
Olivier Houchard4e694042017-03-14 20:01:29 +01003557 if (changed)
3558 srv_set_dyncookie(s);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003559 if (updater)
3560 chunk_appendf(msg, " by '%s'", updater);
3561 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003562 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003563}
3564
3565
3566/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003567 * update server status based on result of name resolution
3568 * returns:
3569 * 0 if server status is updated
3570 * 1 if server status has not changed
3571 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003572int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003573{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003574 struct dns_resolvers *resolvers = s->resolvers;
3575 struct dns_resolution *resolution = s->dns_requester->resolution;
3576 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003577
3578 switch (resolution->status) {
3579 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003580 /* status when HAProxy has just (re)started.
3581 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003582 break;
3583
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003584 case RSLV_STATUS_VALID:
3585 /*
3586 * resume health checks
3587 * server will be turned back on if health check is safe
3588 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003589 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003590 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003591 return 1;
3592 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3593 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003594 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003595 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003596
Emeric Brun52a91d32017-08-31 14:41:55 +02003597 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003598 return 1;
3599 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3600 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3601 s->proxy->id, s->id);
3602
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003603 ha_warning("%s.\n", trash.area);
3604 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003605 return 0;
3606
3607 case RSLV_STATUS_NX:
3608 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003609 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3610 if (!tick_is_expired(exp, now_ms))
3611 break;
3612
3613 if (s->next_admin & SRV_ADMF_RMAINT)
3614 return 1;
3615 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3616 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003617
3618 case RSLV_STATUS_TIMEOUT:
3619 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003620 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3621 if (!tick_is_expired(exp, now_ms))
3622 break;
3623
3624 if (s->next_admin & SRV_ADMF_RMAINT)
3625 return 1;
3626 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3627 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003628
3629 case RSLV_STATUS_REFUSED:
3630 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003631 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3632 if (!tick_is_expired(exp, now_ms))
3633 break;
3634
3635 if (s->next_admin & SRV_ADMF_RMAINT)
3636 return 1;
3637 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3638 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003639
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003640 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003641 /* stop server if resolution failed for a long enough period */
3642 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3643 if (!tick_is_expired(exp, now_ms))
3644 break;
3645
3646 if (s->next_admin & SRV_ADMF_RMAINT)
3647 return 1;
3648 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3649 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003650 }
3651
3652 return 1;
3653}
3654
3655/*
3656 * Server Name Resolution valid response callback
3657 * It expects:
3658 * - <nameserver>: the name server which answered the valid response
3659 * - <response>: buffer containing a valid DNS response
3660 * - <response_len>: size of <response>
3661 * It performs the following actions:
3662 * - ignore response if current ip found and server family not met
3663 * - update with first new ip found if family is met and current IP is not found
3664 * returns:
3665 * 0 on error
3666 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003667 *
3668 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003669 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003670int snr_resolution_cb(struct dns_requester *requester, struct dns_nameserver *nameserver)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003671{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003672 struct server *s = NULL;
3673 struct dns_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003674 void *serverip, *firstip;
3675 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003676 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003677 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003678 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003679
Christopher Faulet67957bd2017-09-27 11:00:59 +02003680 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003681 if (!s)
3682 return 1;
3683
Christopher Faulet67957bd2017-09-27 11:00:59 +02003684 resolution = s->dns_requester->resolution;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003685
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003686 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003687 firstip = NULL; /* pointer to the first valid response found */
3688 /* it will be used as the new IP if a change is required */
3689 firstip_sin_family = AF_UNSPEC;
3690 serverip = NULL; /* current server IP address */
3691
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003692 /* initializing server IP pointer */
3693 server_sin_family = s->addr.ss_family;
3694 switch (server_sin_family) {
3695 case AF_INET:
3696 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3697 break;
3698
3699 case AF_INET6:
3700 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3701 break;
3702
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003703 case AF_UNSPEC:
3704 break;
3705
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003706 default:
3707 goto invalid;
3708 }
3709
Baptiste Assmann729c9012017-05-22 15:13:10 +02003710 ret = dns_get_ip_from_response(&resolution->response, &s->dns_opts,
Thierry Fournierada34842016-02-17 21:25:09 +01003711 serverip, server_sin_family, &firstip,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003712 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003713
3714 switch (ret) {
3715 case DNS_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003716 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003717
3718 case DNS_UPD_SRVIP_NOT_FOUND:
3719 goto save_ip;
3720
3721 case DNS_UPD_CNAME:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003722 goto invalid;
3723
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003724 case DNS_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003725 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003726 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003727
Baptiste Assmannfad03182015-10-28 02:03:32 +01003728 case DNS_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003729 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003730 resolution->status = RSLV_STATUS_OTHER;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003731 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003732
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003733 default:
3734 goto invalid;
3735
3736 }
3737
3738 save_ip:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003739 if (nameserver) {
3740 nameserver->counters.update++;
3741 /* save the first ip we found */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003742 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003743 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003744 else
3745 chunk_printf(chk, "DNS cache");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003746 update_server_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003747
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003748 update_status:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003749 snr_update_srv_status(s, has_no_ip);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003750 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003751
3752 invalid:
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003753 if (nameserver) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02003754 nameserver->counters.invalid++;
3755 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003756 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003757 snr_update_srv_status(s, has_no_ip);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003758 return 0;
3759}
3760
3761/*
3762 * Server Name Resolution error management callback
3763 * returns:
3764 * 0 on error
3765 * 1 when no error or safe ignore
3766 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003767int snr_resolution_error_cb(struct dns_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003768{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003769 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003770
Christopher Faulet67957bd2017-09-27 11:00:59 +02003771 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003772 if (!s)
3773 return 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003774 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003775 snr_update_srv_status(s, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003776 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003777 return 1;
3778}
3779
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003780/*
3781 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003782 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003783 * It returns a pointer to the first server found or NULL if <ip> is not yet
3784 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003785 *
3786 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003787 */
3788struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3789{
3790 struct server *tmpsrv;
3791 struct proxy *be;
3792
3793 if (!srv)
3794 return NULL;
3795
3796 be = srv->proxy;
3797 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003798 /* we found the current server is the same, ignore it */
3799 if (srv == tmpsrv)
3800 continue;
3801
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003802 /* We want to compare the IP in the record with the IP of the servers in the
3803 * same backend, only if:
3804 * * DNS resolution is enabled on the server
3805 * * the hostname used for the resolution by our server is the same than the
3806 * one used for the server found in the backend
3807 * * the server found in the backend is not our current server
3808 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003809 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003810 if ((tmpsrv->hostname_dn == NULL) ||
3811 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
3812 (strcmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01003813 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003814 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003815 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003816 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003817
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003818 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01003819 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003820 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003821 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003822 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003823
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003824 /* At this point, we have 2 different servers using the same DNS hostname
3825 * for their respective resolution.
3826 */
3827 if (*ip_family == tmpsrv->addr.ss_family &&
3828 ((tmpsrv->addr.ss_family == AF_INET &&
3829 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
3830 (tmpsrv->addr.ss_family == AF_INET6 &&
3831 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003832 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003833 return tmpsrv;
3834 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003835 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003836 }
3837
Emeric Brune9fd6b52017-11-02 17:20:39 +01003838
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003839 return NULL;
3840}
3841
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003842/* Sets the server's address (srv->addr) from srv->hostname using the libc's
3843 * resolver. This is suited for initial address configuration. Returns 0 on
3844 * success otherwise a non-zero error code. In case of error, *err_code, if
3845 * not NULL, is filled up.
3846 */
3847int srv_set_addr_via_libc(struct server *srv, int *err_code)
3848{
3849 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003850 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01003851 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003852 return 1;
3853 }
3854 return 0;
3855}
3856
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003857/* Set the server's FDQN (->hostname) from <hostname>.
3858 * Returns -1 if failed, 0 if not.
3859 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01003860int srv_set_fqdn(struct server *srv, const char *hostname, int dns_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003861{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003862 struct dns_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003863 char *hostname_dn;
3864 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003865
Olivier Houchardd16bfe62017-10-31 15:21:19 +01003866 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003867 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003868 /* run time DNS resolution was not active for this server
3869 * and we can't enable it at run time for now.
3870 */
3871 if (!srv->dns_requester)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003872 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003873
3874 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003875 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003876 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003877 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
3878 hostname_dn, trash.size);
3879 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003880 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003881
Christopher Faulet67957bd2017-09-27 11:00:59 +02003882 resolution = srv->dns_requester->resolution;
3883 if (resolution &&
3884 resolution->hostname_dn &&
3885 !strcmp(resolution->hostname_dn, hostname_dn))
Christopher Fauletb2812a62017-10-04 16:17:58 +02003886 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003887
Christopher Faulet67957bd2017-09-27 11:00:59 +02003888 dns_unlink_resolution(srv->dns_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003889
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003890 free(srv->hostname);
3891 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003892 srv->hostname = strdup(hostname);
3893 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003894 srv->hostname_dn_len = hostname_dn_len;
3895 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003896 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003897
Olivier Houchard55dcdf42017-11-06 15:15:04 +01003898 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003899 goto err;
3900
3901 end:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01003902 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003903 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003904 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02003905
3906 err:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01003907 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003908 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02003909 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003910}
3911
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003912/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
3913 * from the state file. This is suited for initial address configuration.
3914 * Returns 0 on success otherwise a non-zero error code. In case of error,
3915 * *err_code, if not NULL, is filled up.
3916 */
3917static int srv_apply_lastaddr(struct server *srv, int *err_code)
3918{
3919 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
3920 if (err_code)
3921 *err_code |= ERR_WARN;
3922 return 1;
3923 }
3924 return 0;
3925}
3926
Willy Tarreau25e51522016-11-04 15:10:17 +01003927/* returns 0 if no error, otherwise a combination of ERR_* flags */
3928static int srv_iterate_initaddr(struct server *srv)
3929{
3930 int return_code = 0;
3931 int err_code;
3932 unsigned int methods;
3933
3934 methods = srv->init_addr_methods;
3935 if (!methods) { // default to "last,libc"
3936 srv_append_initaddr(&methods, SRV_IADDR_LAST);
3937 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
3938 }
3939
Willy Tarreau3eed10e2016-11-07 21:03:16 +01003940 /* "-dr" : always append "none" so that server addresses resolution
3941 * failures are silently ignored, this is convenient to validate some
3942 * configs out of their environment.
3943 */
3944 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
3945 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3946
Willy Tarreau25e51522016-11-04 15:10:17 +01003947 while (methods) {
3948 err_code = 0;
3949 switch (srv_get_next_initaddr(&methods)) {
3950 case SRV_IADDR_LAST:
3951 if (!srv->lastaddr)
3952 continue;
3953 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003954 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003955 return_code |= err_code;
3956 break;
3957
3958 case SRV_IADDR_LIBC:
3959 if (!srv->hostname)
3960 continue;
3961 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003962 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003963 return_code |= err_code;
3964 break;
3965
Willy Tarreau37ebe122016-11-04 15:17:58 +01003966 case SRV_IADDR_NONE:
3967 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003968 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003969 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
3970 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003971 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01003972 return return_code;
3973
Willy Tarreau4310d362016-11-02 15:05:56 +01003974 case SRV_IADDR_IP:
3975 ipcpy(&srv->init_addr, &srv->addr);
3976 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003977 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', falling back to configured address.\n",
3978 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
Willy Tarreau4310d362016-11-02 15:05:56 +01003979 }
Olivier Houchard4e694042017-03-14 20:01:29 +01003980 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01003981
Willy Tarreau25e51522016-11-04 15:10:17 +01003982 default: /* unhandled method */
3983 break;
3984 }
3985 }
3986
3987 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003988 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Willy Tarreau25e51522016-11-04 15:10:17 +01003989 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
3990 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01003991 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003992 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Willy Tarreau465b6e52016-11-07 19:19:22 +01003993 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
3994 }
Willy Tarreau25e51522016-11-04 15:10:17 +01003995
3996 return_code |= ERR_ALERT | ERR_FATAL;
3997 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01003998out:
3999 srv_set_dyncookie(srv);
4000 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01004001}
4002
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004003/*
4004 * This function parses all backends and all servers within each backend
4005 * and performs servers' addr resolution based on information provided by:
4006 * - configuration file
4007 * - server-state file (states provided by an 'old' haproxy process)
4008 *
4009 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
4010 */
4011int srv_init_addr(void)
4012{
4013 struct proxy *curproxy;
4014 int return_code = 0;
4015
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004016 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004017 while (curproxy) {
4018 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004019
4020 /* servers are in backend only */
4021 if (!(curproxy->cap & PR_CAP_BE))
4022 goto srv_init_addr_next;
4023
Willy Tarreau25e51522016-11-04 15:10:17 +01004024 for (srv = curproxy->srv; srv; srv = srv->next)
Willy Tarreau3d609a72017-09-06 14:22:45 +02004025 if (srv->hostname)
4026 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004027
4028 srv_init_addr_next:
4029 curproxy = curproxy->next;
4030 }
4031
4032 return return_code;
4033}
4034
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004035const 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 +02004036{
4037
Willy Tarreau83061a82018-07-13 11:56:34 +02004038 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004039
4040 msg = get_trash_chunk();
4041 chunk_reset(msg);
4042
Olivier Houchard8da5f982017-08-04 18:35:36 +02004043 if (server->hostname && !strcmp(fqdn, server->hostname)) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004044 chunk_appendf(msg, "no need to change the FDQN");
4045 goto out;
4046 }
4047
4048 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4049 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4050 goto out;
4051 }
4052
4053 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4054 server->proxy->id, server->id, server->hostname, fqdn);
4055
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004056 if (srv_set_fqdn(server, fqdn, dns_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004057 chunk_reset(msg);
4058 chunk_appendf(msg, "could not update %s/%s FQDN",
4059 server->proxy->id, server->id);
4060 goto out;
4061 }
4062
4063 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004064 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004065
4066 out:
4067 if (updater)
4068 chunk_appendf(msg, " by '%s'", updater);
4069 chunk_appendf(msg, "\n");
4070
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004071 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004072}
4073
4074
Willy Tarreau21b069d2016-11-23 17:15:08 +01004075/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4076 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004077 * 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 +01004078 * used for CLI commands requiring a server name.
4079 * Important: the <arg> is modified to remove the '/'.
4080 */
4081struct server *cli_find_server(struct appctx *appctx, char *arg)
4082{
4083 struct proxy *px;
4084 struct server *sv;
4085 char *line;
4086
4087 /* split "backend/server" and make <line> point to server */
4088 for (line = arg; *line; line++)
4089 if (*line == '/') {
4090 *line++ = '\0';
4091 break;
4092 }
4093
4094 if (!*line || !*arg) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004095 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004096 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004097 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004098 return NULL;
4099 }
4100
4101 if (!get_backend_server(arg, line, &px, &sv)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004102 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004103 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004104 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004105 return NULL;
4106 }
4107
4108 if (px->state == PR_STSTOPPED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004109 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004110 appctx->ctx.cli.msg = "Proxy is disabled.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004111 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004112 return NULL;
4113 }
4114
4115 return sv;
4116}
4117
William Lallemand222baf22016-11-19 02:00:33 +01004118
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004119static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004120{
4121 struct server *sv;
4122 const char *warning;
4123
4124 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4125 return 1;
4126
4127 sv = cli_find_server(appctx, args[2]);
4128 if (!sv)
4129 return 1;
4130
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004131 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02004132
William Lallemand222baf22016-11-19 02:00:33 +01004133 if (strcmp(args[3], "weight") == 0) {
4134 warning = server_parse_weight_change_request(sv, args[4]);
4135 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004136 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004137 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004138 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004139 }
4140 }
4141 else if (strcmp(args[3], "state") == 0) {
4142 if (strcmp(args[4], "ready") == 0)
4143 srv_adm_set_ready(sv);
4144 else if (strcmp(args[4], "drain") == 0)
4145 srv_adm_set_drain(sv);
4146 else if (strcmp(args[4], "maint") == 0)
4147 srv_adm_set_maint(sv);
4148 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004149 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004150 appctx->ctx.cli.msg = "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004151 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004152 }
4153 }
4154 else if (strcmp(args[3], "health") == 0) {
4155 if (sv->track) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004156 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004157 appctx->ctx.cli.msg = "cannot change health on a tracking server.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004158 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004159 }
4160 else if (strcmp(args[4], "up") == 0) {
4161 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004162 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004163 }
4164 else if (strcmp(args[4], "stopping") == 0) {
4165 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004166 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004167 }
4168 else if (strcmp(args[4], "down") == 0) {
4169 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004170 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004171 }
4172 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004173 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004174 appctx->ctx.cli.msg = "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004175 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004176 }
4177 }
4178 else if (strcmp(args[3], "agent") == 0) {
4179 if (!(sv->agent.state & CHK_ST_ENABLED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004180 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004181 appctx->ctx.cli.msg = "agent checks are not enabled on this server.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004182 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004183 }
4184 else if (strcmp(args[4], "up") == 0) {
4185 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004186 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004187 }
4188 else if (strcmp(args[4], "down") == 0) {
4189 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004190 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004191 }
4192 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004193 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004194 appctx->ctx.cli.msg = "'set server <srv> agent' expects 'up' or 'down'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004195 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004196 }
4197 }
Misiek2da082d2017-01-09 09:40:42 +01004198 else if (strcmp(args[3], "agent-addr") == 0) {
4199 if (!(sv->agent.state & CHK_ST_ENABLED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004200 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004201 appctx->ctx.cli.msg = "agent checks are not enabled on this server.\n";
4202 appctx->st0 = CLI_ST_PRINT;
4203 } else {
4204 if (str2ip(args[4], &sv->agent.addr) == NULL) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004205 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004206 appctx->ctx.cli.msg = "incorrect addr address given for agent.\n";
4207 appctx->st0 = CLI_ST_PRINT;
4208 }
4209 }
4210 }
4211 else if (strcmp(args[3], "agent-send") == 0) {
4212 if (!(sv->agent.state & CHK_ST_ENABLED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004213 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004214 appctx->ctx.cli.msg = "agent checks are not enabled on this server.\n";
4215 appctx->st0 = CLI_ST_PRINT;
4216 } else {
4217 char *nss = strdup(args[4]);
4218 if (!nss) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004219 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004220 appctx->ctx.cli.msg = "cannot allocate memory for new string.\n";
4221 appctx->st0 = CLI_ST_PRINT;
4222 } else {
4223 free(sv->agent.send_string);
4224 sv->agent.send_string = nss;
4225 sv->agent.send_string_len = strlen(args[4]);
4226 }
4227 }
4228 }
William Lallemand222baf22016-11-19 02:00:33 +01004229 else if (strcmp(args[3], "check-port") == 0) {
4230 int i = 0;
4231 if (strl2irc(args[4], strlen(args[4]), &i) != 0) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004232 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004233 appctx->ctx.cli.msg = "'set server <srv> check-port' expects an integer as argument.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004234 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004235 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004236 }
4237 if ((i < 0) || (i > 65535)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004238 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004239 appctx->ctx.cli.msg = "provided port is not valid.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004240 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004241 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004242 }
4243 /* prevent the update of port to 0 if MAPPORTS are in use */
4244 if ((sv->flags & SRV_F_MAPPORTS) && (i == 0)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004245 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004246 appctx->ctx.cli.msg = "can't unset 'port' since MAPPORTS is in use.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004247 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004248 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004249 }
4250 sv->check.port = i;
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004251 appctx->ctx.cli.severity = LOG_NOTICE;
William Lallemand222baf22016-11-19 02:00:33 +01004252 appctx->ctx.cli.msg = "health check port updated.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004253 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004254 }
4255 else if (strcmp(args[3], "addr") == 0) {
4256 char *addr = NULL;
4257 char *port = NULL;
4258 if (strlen(args[4]) == 0) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004259 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004260 appctx->ctx.cli.msg = "set server <b>/<s> addr requires an address and optionally a port.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004261 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004262 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004263 }
4264 else {
4265 addr = args[4];
4266 }
4267 if (strcmp(args[5], "port") == 0) {
4268 port = args[6];
4269 }
4270 warning = update_server_addr_port(sv, addr, port, "stats socket command");
4271 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004272 appctx->ctx.cli.severity = LOG_WARNING;
William Lallemand222baf22016-11-19 02:00:33 +01004273 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004274 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004275 }
4276 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
4277 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004278 else if (strcmp(args[3], "fqdn") == 0) {
4279 if (!*args[4]) {
Willy Tarreaua0752582017-11-05 10:17:49 +01004280 appctx->ctx.cli.severity = LOG_ERR;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004281 appctx->ctx.cli.msg = "set server <b>/<s> fqdn requires a FQDN.\n";
4282 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004283 goto out_unlock;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004284 }
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004285 warning = update_server_fqdn(sv, args[4], "stats socket command", 0);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004286 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004287 appctx->ctx.cli.severity = LOG_WARNING;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004288 appctx->ctx.cli.msg = warning;
4289 appctx->st0 = CLI_ST_PRINT;
4290 }
4291 }
William Lallemand222baf22016-11-19 02:00:33 +01004292 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004293 appctx->ctx.cli.severity = LOG_ERR;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004294 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 +01004295 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004296 }
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004297 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004298 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004299 return 1;
4300}
4301
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004302static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004303{
4304 struct stream_interface *si = appctx->owner;
4305 struct proxy *px;
4306 struct server *sv;
4307 char *line;
4308
4309
4310 /* split "backend/server" and make <line> point to server */
4311 for (line = args[2]; *line; line++)
4312 if (*line == '/') {
4313 *line++ = '\0';
4314 break;
4315 }
4316
4317 if (!*line) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004318 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand6b160942016-11-22 12:34:35 +01004319 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004320 appctx->st0 = CLI_ST_PRINT;
William Lallemand6b160942016-11-22 12:34:35 +01004321 return 1;
4322 }
4323
4324 if (!get_backend_server(args[2], line, &px, &sv)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004325 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand6b160942016-11-22 12:34:35 +01004326 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004327 appctx->st0 = CLI_ST_PRINT;
William Lallemand6b160942016-11-22 12:34:35 +01004328 return 1;
4329 }
4330
4331 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004332 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4333 sv->iweight);
4334 if (ci_putstr(si_ic(si), trash.area) == -1) {
William Lallemand6b160942016-11-22 12:34:35 +01004335 si_applet_cant_put(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004336 return 0;
4337 }
William Lallemand6b160942016-11-22 12:34:35 +01004338 return 1;
4339}
4340
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004341static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004342{
4343 struct server *sv;
4344 const char *warning;
4345
4346 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4347 return 1;
4348
4349 sv = cli_find_server(appctx, args[2]);
4350 if (!sv)
4351 return 1;
4352
4353 warning = server_parse_weight_change_request(sv, args[3]);
4354 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004355 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand6b160942016-11-22 12:34:35 +01004356 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004357 appctx->st0 = CLI_ST_PRINT;
William Lallemand6b160942016-11-22 12:34:35 +01004358 }
4359 return 1;
4360}
4361
Willy Tarreaub8026272016-11-23 11:26:56 +01004362/* parse a "set maxconn server" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004363static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004364{
4365 struct server *sv;
4366 const char *warning;
4367
4368 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4369 return 1;
4370
4371 sv = cli_find_server(appctx, args[3]);
4372 if (!sv)
4373 return 1;
4374
4375 warning = server_parse_maxconn_change_request(sv, args[4]);
4376 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004377 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreaub8026272016-11-23 11:26:56 +01004378 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004379 appctx->st0 = CLI_ST_PRINT;
Willy Tarreaub8026272016-11-23 11:26:56 +01004380 }
4381 return 1;
4382}
William Lallemand6b160942016-11-22 12:34:35 +01004383
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004384/* parse a "disable agent" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004385static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004386{
4387 struct server *sv;
4388
4389 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4390 return 1;
4391
4392 sv = cli_find_server(appctx, args[2]);
4393 if (!sv)
4394 return 1;
4395
4396 sv->agent.state &= ~CHK_ST_ENABLED;
4397 return 1;
4398}
4399
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004400/* parse a "disable health" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004401static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004402{
4403 struct server *sv;
4404
4405 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4406 return 1;
4407
4408 sv = cli_find_server(appctx, args[2]);
4409 if (!sv)
4410 return 1;
4411
4412 sv->check.state &= ~CHK_ST_ENABLED;
4413 return 1;
4414}
4415
Willy Tarreauffb4d582016-11-24 12:47:00 +01004416/* parse a "disable server" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004417static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004418{
4419 struct server *sv;
4420
4421 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4422 return 1;
4423
4424 sv = cli_find_server(appctx, args[2]);
4425 if (!sv)
4426 return 1;
4427
4428 srv_adm_set_maint(sv);
4429 return 1;
4430}
4431
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004432/* parse a "enable agent" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004433static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004434{
4435 struct server *sv;
4436
4437 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4438 return 1;
4439
4440 sv = cli_find_server(appctx, args[2]);
4441 if (!sv)
4442 return 1;
4443
4444 if (!(sv->agent.state & CHK_ST_CONFIGURED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004445 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004446 appctx->ctx.cli.msg = "Agent was not configured on this server, cannot enable.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004447 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004448 return 1;
4449 }
4450
4451 sv->agent.state |= CHK_ST_ENABLED;
4452 return 1;
4453}
4454
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004455/* parse a "enable health" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004456static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004457{
4458 struct server *sv;
4459
4460 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4461 return 1;
4462
4463 sv = cli_find_server(appctx, args[2]);
4464 if (!sv)
4465 return 1;
4466
4467 sv->check.state |= CHK_ST_ENABLED;
4468 return 1;
4469}
4470
Willy Tarreauffb4d582016-11-24 12:47:00 +01004471/* parse a "enable server" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004472static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004473{
4474 struct server *sv;
4475
4476 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4477 return 1;
4478
4479 sv = cli_find_server(appctx, args[2]);
4480 if (!sv)
4481 return 1;
4482
4483 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004484 if (!(sv->flags & SRV_F_COOKIESET)
4485 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4486 sv->cookie)
4487 srv_check_for_dup_dyncookie(sv);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004488 return 1;
4489}
4490
William Lallemand222baf22016-11-19 02:00:33 +01004491/* register cli keywords */
4492static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004493 { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004494 { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004495 { { "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 +01004496 { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004497 { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004498 { { "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 +01004499 { { "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 +01004500 { { "set", "server", NULL }, "set server : change a server's state, weight or address", cli_parse_set_server },
William Lallemand6b160942016-11-22 12:34:35 +01004501 { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight },
4502 { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight },
4503
William Lallemand222baf22016-11-19 02:00:33 +01004504 {{},}
4505}};
4506
4507__attribute__((constructor))
4508static void __server_init(void)
4509{
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004510 HA_SPIN_INIT(&updated_servers_lock);
William Lallemand222baf22016-11-19 02:00:33 +01004511 cli_register_kw(&cli_kws);
4512}
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004513
Emeric Brun64cc49c2017-10-03 14:46:45 +02004514/*
4515 * This function applies server's status changes, it is
4516 * is designed to be called asynchronously.
4517 *
4518 */
4519void srv_update_status(struct server *s)
4520{
4521 struct check *check = &s->check;
4522 int xferred;
4523 struct proxy *px = s->proxy;
4524 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4525 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4526 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004527 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004528
4529
4530 /* If currently main is not set we try to apply pending state changes */
4531 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4532 int next_admin;
4533
4534 /* Backup next admin */
4535 next_admin = s->next_admin;
4536
4537 /* restore current admin state */
4538 s->next_admin = s->cur_admin;
4539
4540 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4541 s->last_change = now.tv_sec;
4542 if (s->proxy->lbprm.set_server_status_down)
4543 s->proxy->lbprm.set_server_status_down(s);
4544
4545 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4546 srv_shutdown_streams(s, SF_ERR_DOWN);
4547
4548 /* we might have streams queued on this server and waiting for
4549 * a connection. Those which are redispatchable will be queued
4550 * to another server or to the proxy itself.
4551 */
4552 xferred = pendconn_redistribute(s);
4553
4554 tmptrash = alloc_trash_chunk();
4555 if (tmptrash) {
4556 chunk_printf(tmptrash,
4557 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4558 s->proxy->id, s->id);
4559
Emeric Brun5a133512017-10-19 14:42:30 +02004560 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004561 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004562
4563 /* we don't send an alert if the server was previously paused */
4564 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004565 send_log(s->proxy, log_level, "%s.\n",
4566 tmptrash->area);
4567 send_email_alert(s, log_level, "%s",
4568 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004569 free_trash_chunk(tmptrash);
4570 tmptrash = NULL;
4571 }
4572 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4573 set_backend_down(s->proxy);
4574
4575 s->counters.down_trans++;
4576 }
4577 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4578 s->last_change = now.tv_sec;
4579 if (s->proxy->lbprm.set_server_status_down)
4580 s->proxy->lbprm.set_server_status_down(s);
4581
4582 /* we might have streams queued on this server and waiting for
4583 * a connection. Those which are redispatchable will be queued
4584 * to another server or to the proxy itself.
4585 */
4586 xferred = pendconn_redistribute(s);
4587
4588 tmptrash = alloc_trash_chunk();
4589 if (tmptrash) {
4590 chunk_printf(tmptrash,
4591 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4592 s->proxy->id, s->id);
4593
Emeric Brun5a133512017-10-19 14:42:30 +02004594 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004595
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004596 ha_warning("%s.\n", tmptrash->area);
4597 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4598 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004599 free_trash_chunk(tmptrash);
4600 tmptrash = NULL;
4601 }
4602
4603 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4604 set_backend_down(s->proxy);
4605 }
4606 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4607 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4608 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4609 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4610 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4611 s->proxy->last_change = now.tv_sec;
4612 }
4613
4614 if (s->next_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
4615 s->down_time += now.tv_sec - s->last_change;
4616
4617 s->last_change = now.tv_sec;
4618 if (s->next_state == SRV_ST_STARTING)
4619 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4620
4621 server_recalc_eweight(s);
4622 /* now propagate the status change to any LB algorithms */
4623 if (px->lbprm.update_server_eweight)
4624 px->lbprm.update_server_eweight(s);
4625 else if (srv_willbe_usable(s)) {
4626 if (px->lbprm.set_server_status_up)
4627 px->lbprm.set_server_status_up(s);
4628 }
4629 else {
4630 if (px->lbprm.set_server_status_down)
4631 px->lbprm.set_server_status_down(s);
4632 }
4633
4634 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4635 * and it's not a backup server and its effective weight is > 0,
4636 * then it can accept new connections, so we shut down all streams
4637 * on all backup servers.
4638 */
4639 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4640 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4641 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4642
4643 /* check if we can handle some connections queued at the proxy. We
4644 * will take as many as we can handle.
4645 */
4646 xferred = pendconn_grab_from_px(s);
4647
4648 tmptrash = alloc_trash_chunk();
4649 if (tmptrash) {
4650 chunk_printf(tmptrash,
4651 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
4652 s->proxy->id, s->id);
4653
Emeric Brun5a133512017-10-19 14:42:30 +02004654 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004655 ha_warning("%s.\n", tmptrash->area);
4656 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4657 tmptrash->area);
4658 send_email_alert(s, LOG_NOTICE, "%s",
4659 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004660 free_trash_chunk(tmptrash);
4661 tmptrash = NULL;
4662 }
4663
4664 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4665 set_backend_down(s->proxy);
4666 }
4667 else if (s->cur_eweight != s->next_eweight) {
4668 /* now propagate the status change to any LB algorithms */
4669 if (px->lbprm.update_server_eweight)
4670 px->lbprm.update_server_eweight(s);
4671 else if (srv_willbe_usable(s)) {
4672 if (px->lbprm.set_server_status_up)
4673 px->lbprm.set_server_status_up(s);
4674 }
4675 else {
4676 if (px->lbprm.set_server_status_down)
4677 px->lbprm.set_server_status_down(s);
4678 }
4679
4680 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4681 set_backend_down(s->proxy);
4682 }
4683
4684 s->next_admin = next_admin;
4685 }
4686
Emeric Brun5a133512017-10-19 14:42:30 +02004687 /* reset operational state change */
4688 *s->op_st_chg.reason = 0;
4689 s->op_st_chg.status = s->op_st_chg.code = -1;
4690 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004691
4692 /* Now we try to apply pending admin changes */
4693
4694 /* Maintenance must also disable health checks */
4695 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
4696 if (s->check.state & CHK_ST_ENABLED) {
4697 s->check.state |= CHK_ST_PAUSED;
4698 check->health = 0;
4699 }
4700
4701 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02004702 tmptrash = alloc_trash_chunk();
4703 if (tmptrash) {
4704 chunk_printf(tmptrash,
4705 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
4706 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4707 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02004708
Olivier Houchard796a2b32017-10-24 17:42:47 +02004709 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02004710
Olivier Houchard796a2b32017-10-24 17:42:47 +02004711 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004712 ha_warning("%s.\n", tmptrash->area);
4713 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4714 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02004715 }
4716 free_trash_chunk(tmptrash);
4717 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004718 }
Emeric Brun8f298292017-12-06 16:47:17 +01004719 /* commit new admin status */
4720
4721 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004722 }
4723 else { /* server was still running */
4724 check->health = 0; /* failure */
4725 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01004726
4727 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004728 if (s->proxy->lbprm.set_server_status_down)
4729 s->proxy->lbprm.set_server_status_down(s);
4730
Emeric Brun64cc49c2017-10-03 14:46:45 +02004731 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4732 srv_shutdown_streams(s, SF_ERR_DOWN);
4733
4734 /* we might have streams queued on this server and waiting for
4735 * a connection. Those which are redispatchable will be queued
4736 * to another server or to the proxy itself.
4737 */
4738 xferred = pendconn_redistribute(s);
4739
4740 tmptrash = alloc_trash_chunk();
4741 if (tmptrash) {
4742 chunk_printf(tmptrash,
4743 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
4744 s->flags & SRV_F_BACKUP ? "Backup " : "",
4745 s->proxy->id, s->id,
4746 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
4747
4748 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
4749
4750 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004751 ha_warning("%s.\n", tmptrash->area);
4752 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
4753 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004754 }
4755 free_trash_chunk(tmptrash);
4756 tmptrash = NULL;
4757 }
4758 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4759 set_backend_down(s->proxy);
4760
4761 s->counters.down_trans++;
4762 }
4763 }
4764 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
4765 /* OK here we're leaving maintenance, we have many things to check,
4766 * because the server might possibly be coming back up depending on
4767 * its state. In practice, leaving maintenance means that we should
4768 * immediately turn to UP (more or less the slowstart) under the
4769 * following conditions :
4770 * - server is neither checked nor tracked
4771 * - server tracks another server which is not checked
4772 * - server tracks another server which is already up
4773 * Which sums up as something simpler :
4774 * "either the tracking server is up or the server's checks are disabled
4775 * or up". Otherwise we only re-enable health checks. There's a special
4776 * case associated to the stopping state which can be inherited. Note
4777 * that the server might still be in drain mode, which is naturally dealt
4778 * with by the lower level functions.
4779 */
4780
4781 if (s->check.state & CHK_ST_ENABLED) {
4782 s->check.state &= ~CHK_ST_PAUSED;
4783 check->health = check->rise; /* start OK but check immediately */
4784 }
4785
4786 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
4787 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
4788 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
4789 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
4790 s->next_state = SRV_ST_STOPPING;
4791 }
4792 else {
4793 s->next_state = SRV_ST_STARTING;
4794 if (s->slowstart > 0)
4795 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4796 else
4797 s->next_state = SRV_ST_RUNNING;
4798 }
4799
4800 }
4801
4802 tmptrash = alloc_trash_chunk();
4803 if (tmptrash) {
4804 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
4805 chunk_printf(tmptrash,
4806 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
4807 s->flags & SRV_F_BACKUP ? "Backup " : "",
4808 s->proxy->id, s->id,
4809 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4810 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4811 }
4812 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
4813 chunk_printf(tmptrash,
4814 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
4815 s->flags & SRV_F_BACKUP ? "Backup " : "",
4816 s->proxy->id, s->id, s->hostname,
4817 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4818 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4819 }
4820 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
4821 chunk_printf(tmptrash,
4822 "%sServer %s/%s is %s/%s (leaving maintenance)",
4823 s->flags & SRV_F_BACKUP ? "Backup " : "",
4824 s->proxy->id, s->id,
4825 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4826 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4827 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004828 ha_warning("%s.\n", tmptrash->area);
4829 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4830 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004831 free_trash_chunk(tmptrash);
4832 tmptrash = NULL;
4833 }
4834
4835 server_recalc_eweight(s);
4836 /* now propagate the status change to any LB algorithms */
4837 if (px->lbprm.update_server_eweight)
4838 px->lbprm.update_server_eweight(s);
4839 else if (srv_willbe_usable(s)) {
4840 if (px->lbprm.set_server_status_up)
4841 px->lbprm.set_server_status_up(s);
4842 }
4843 else {
4844 if (px->lbprm.set_server_status_down)
4845 px->lbprm.set_server_status_down(s);
4846 }
4847
4848 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4849 set_backend_down(s->proxy);
4850
Willy Tarreau6a78e612018-08-07 10:14:53 +02004851 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4852 * and it's not a backup server and its effective weight is > 0,
4853 * then it can accept new connections, so we shut down all streams
4854 * on all backup servers.
4855 */
4856 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4857 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4858 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4859
4860 /* check if we can handle some connections queued at the proxy. We
4861 * will take as many as we can handle.
4862 */
4863 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004864 }
4865 else if (s->next_admin & SRV_ADMF_MAINT) {
4866 /* remaining in maintenance mode, let's inform precisely about the
4867 * situation.
4868 */
4869 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
4870 tmptrash = alloc_trash_chunk();
4871 if (tmptrash) {
4872 chunk_printf(tmptrash,
4873 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
4874 s->flags & SRV_F_BACKUP ? "Backup " : "",
4875 s->proxy->id, s->id);
4876
4877 if (s->track) /* normally it's mandatory here */
4878 chunk_appendf(tmptrash, " via %s/%s",
4879 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004880 ha_warning("%s.\n", tmptrash->area);
4881 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4882 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004883 free_trash_chunk(tmptrash);
4884 tmptrash = NULL;
4885 }
4886 }
4887 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
4888 tmptrash = alloc_trash_chunk();
4889 if (tmptrash) {
4890 chunk_printf(tmptrash,
4891 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
4892 s->flags & SRV_F_BACKUP ? "Backup " : "",
4893 s->proxy->id, s->id, s->hostname);
4894
4895 if (s->track) /* normally it's mandatory here */
4896 chunk_appendf(tmptrash, " via %s/%s",
4897 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004898 ha_warning("%s.\n", tmptrash->area);
4899 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4900 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004901 free_trash_chunk(tmptrash);
4902 tmptrash = NULL;
4903 }
4904 }
4905 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
4906 tmptrash = alloc_trash_chunk();
4907 if (tmptrash) {
4908 chunk_printf(tmptrash,
4909 "%sServer %s/%s remains in forced maintenance",
4910 s->flags & SRV_F_BACKUP ? "Backup " : "",
4911 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004912 ha_warning("%s.\n", tmptrash->area);
4913 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4914 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004915 free_trash_chunk(tmptrash);
4916 tmptrash = NULL;
4917 }
4918 }
4919 /* don't report anything when leaving drain mode and remaining in maintenance */
4920
4921 s->cur_admin = s->next_admin;
4922 }
4923
4924 if (!(s->next_admin & SRV_ADMF_MAINT)) {
4925 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
4926 /* drain state is applied only if not yet in maint */
4927
4928 s->last_change = now.tv_sec;
4929 if (px->lbprm.set_server_status_down)
4930 px->lbprm.set_server_status_down(s);
4931
4932 /* we might have streams queued on this server and waiting for
4933 * a connection. Those which are redispatchable will be queued
4934 * to another server or to the proxy itself.
4935 */
4936 xferred = pendconn_redistribute(s);
4937
4938 tmptrash = alloc_trash_chunk();
4939 if (tmptrash) {
4940 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
4941 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4942 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
4943
4944 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
4945
4946 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004947 ha_warning("%s.\n", tmptrash->area);
4948 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4949 tmptrash->area);
4950 send_email_alert(s, LOG_NOTICE, "%s",
4951 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004952 }
4953 free_trash_chunk(tmptrash);
4954 tmptrash = NULL;
4955 }
4956
4957 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4958 set_backend_down(s->proxy);
4959 }
4960 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
4961 /* OK completely leaving drain mode */
4962 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4963 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4964 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4965 s->proxy->last_change = now.tv_sec;
4966 }
4967
4968 if (s->last_change < now.tv_sec) // ignore negative times
4969 s->down_time += now.tv_sec - s->last_change;
4970 s->last_change = now.tv_sec;
4971 server_recalc_eweight(s);
4972
4973 tmptrash = alloc_trash_chunk();
4974 if (tmptrash) {
4975 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
4976 chunk_printf(tmptrash,
4977 "%sServer %s/%s is %s (leaving forced drain)",
4978 s->flags & SRV_F_BACKUP ? "Backup " : "",
4979 s->proxy->id, s->id,
4980 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
4981 }
4982 else {
4983 chunk_printf(tmptrash,
4984 "%sServer %s/%s is %s (leaving drain)",
4985 s->flags & SRV_F_BACKUP ? "Backup " : "",
4986 s->proxy->id, s->id,
4987 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
4988 if (s->track) /* normally it's mandatory here */
4989 chunk_appendf(tmptrash, " via %s/%s",
4990 s->track->proxy->id, s->track->id);
4991 }
4992
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004993 ha_warning("%s.\n", tmptrash->area);
4994 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4995 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004996 free_trash_chunk(tmptrash);
4997 tmptrash = NULL;
4998 }
4999
5000 /* now propagate the status change to any LB algorithms */
5001 if (px->lbprm.update_server_eweight)
5002 px->lbprm.update_server_eweight(s);
5003 else if (srv_willbe_usable(s)) {
5004 if (px->lbprm.set_server_status_up)
5005 px->lbprm.set_server_status_up(s);
5006 }
5007 else {
5008 if (px->lbprm.set_server_status_down)
5009 px->lbprm.set_server_status_down(s);
5010 }
5011 }
5012 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5013 /* remaining in drain mode after removing one of its flags */
5014
5015 tmptrash = alloc_trash_chunk();
5016 if (tmptrash) {
5017 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5018 chunk_printf(tmptrash,
5019 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5020 s->flags & SRV_F_BACKUP ? "Backup " : "",
5021 s->proxy->id, s->id);
5022
5023 if (s->track) /* normally it's mandatory here */
5024 chunk_appendf(tmptrash, " via %s/%s",
5025 s->track->proxy->id, s->track->id);
5026 }
5027 else {
5028 chunk_printf(tmptrash,
5029 "%sServer %s/%s remains in forced drain mode",
5030 s->flags & SRV_F_BACKUP ? "Backup " : "",
5031 s->proxy->id, s->id);
5032 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005033 ha_warning("%s.\n", tmptrash->area);
5034 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5035 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005036 free_trash_chunk(tmptrash);
5037 tmptrash = NULL;
5038 }
5039
5040 /* commit new admin status */
5041
5042 s->cur_admin = s->next_admin;
5043 }
5044 }
5045
5046 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005047 *s->adm_st_chg_cause = 0;
5048}
5049/*
5050 * This function loops on servers registered for asynchronous
5051 * status changes
Christopher Faulet5d42e092017-10-16 12:00:40 +02005052 *
5053 * NOTE: No needs to lock <updated_servers> list because it is called inside the
5054 * sync point.
Emeric Brun64cc49c2017-10-03 14:46:45 +02005055 */
5056void servers_update_status(void) {
5057 struct server *s, *stmp;
5058
5059 list_for_each_entry_safe(s, stmp, &updated_servers, update_status) {
5060 srv_update_status(s);
5061 LIST_DEL(&s->update_status);
5062 LIST_INIT(&s->update_status);
5063 }
5064}
5065
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005066/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005067 * Local variables:
5068 * c-indent-level: 8
5069 * c-basic-offset: 8
5070 * End:
5071 */