blob: 277d1405e78393d3004d8a8ebfe11f0f81e9f7b0 [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;
145 tmpbuf = trash.str;
146 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 */
Emeric Brun5a133512017-10-19 14:42:30 +0200847void srv_append_status(struct chunk *msg, struct server *s, struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200848{
Emeric Brun5a133512017-10-19 14:42:30 +0200849 short status = s->op_st_chg.status;
850 short code = s->op_st_chg.code;
851 long duration = s->op_st_chg.duration;
852 char *desc = s->op_st_chg.reason;
853
854 if (check) {
855 status = check->status;
856 code = check->code;
857 duration = check->duration;
858 desc = check->desc;
859 }
860
861 if (status != -1) {
862 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
863
864 if (status >= HCHK_STATUS_L57DATA)
865 chunk_appendf(msg, ", code: %d", code);
866
867 if (desc && *desc) {
868 struct chunk src;
869
870 chunk_appendf(msg, ", info: \"");
871
872 chunk_initlen(&src, desc, 0, strlen(desc));
873 chunk_asciiencode(msg, &src, '"');
874
875 chunk_appendf(msg, "\"");
876 }
877
878 if (duration >= 0)
879 chunk_appendf(msg, ", check duration: %ldms", duration);
880 }
881 else if (desc && *desc) {
882 chunk_appendf(msg, ", %s", desc);
883 }
884 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +0200885 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +0200886 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200887
888 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200889 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200890 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
891 " %d sessions active, %d requeued, %d remaining in queue",
892 s->proxy->srv_act, s->proxy->srv_bck,
893 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
894 s->cur_sess, xferred, s->nbpend);
895 else
896 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
897 " %d sessions requeued, %d total in queue",
898 s->proxy->srv_act, s->proxy->srv_bck,
899 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
900 xferred, s->nbpend);
901 }
902}
903
Emeric Brun5a133512017-10-19 14:42:30 +0200904/* Marks server <s> down, regardless of its checks' statuses. The server is
905 * registered in a list to postpone the counting of the remaining servers on
906 * the proxy and transfers queued streams whenever possible to other servers at
907 * a sync point. Maintenance servers are ignored. It stores the <reason> if
908 * non-null as the reason for going down or the available data from the check
909 * struct to recompute this reason later.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200910 */
Emeric Brun5a133512017-10-19 14:42:30 +0200911void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200912{
913 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200914
Emeric Brun64cc49c2017-10-03 14:46:45 +0200915 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200916 return;
917
Emeric Brun52a91d32017-08-31 14:41:55 +0200918 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +0200919 *s->op_st_chg.reason = 0;
920 s->op_st_chg.status = -1;
921 if (reason) {
922 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
923 }
924 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +0100925 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +0200926 s->op_st_chg.code = check->code;
927 s->op_st_chg.status = check->status;
928 s->op_st_chg.duration = check->duration;
929 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200930
Christopher Faulet5d42e092017-10-16 12:00:40 +0200931 srv_register_update(s);
Emeric Brun9f0b4582017-10-23 14:39:51 +0200932 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100933 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +0200934 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100935 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +0200936 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200937}
938
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200939/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +0200940 * in maintenance. The server is registered in a list to postpone the counting
941 * of the remaining servers on the proxy and tries to grab requests from the
942 * proxy at a sync point. Maintenance servers are ignored. It stores the
943 * <reason> if non-null as the reason for going down or the available data
944 * from the check struct to recompute this reason later.
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200945 */
Emeric Brun5a133512017-10-19 14:42:30 +0200946void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200947{
948 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200949
Emeric Brun64cc49c2017-10-03 14:46:45 +0200950 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200951 return;
952
Emeric Brun52a91d32017-08-31 14:41:55 +0200953 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200954 return;
955
Emeric Brun52a91d32017-08-31 14:41:55 +0200956 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +0200957 *s->op_st_chg.reason = 0;
958 s->op_st_chg.status = -1;
959 if (reason) {
960 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
961 }
962 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +0100963 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +0200964 s->op_st_chg.code = check->code;
965 s->op_st_chg.status = check->status;
966 s->op_st_chg.duration = check->duration;
967 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200968
Emeric Brun64cc49c2017-10-03 14:46:45 +0200969 if (s->slowstart <= 0)
970 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200971
Christopher Faulet5d42e092017-10-16 12:00:40 +0200972 srv_register_update(s);
Emeric Brun9f0b4582017-10-23 14:39:51 +0200973 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100974 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +0200975 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100976 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +0200977 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +0200978}
979
Willy Tarreau8eb77842014-05-21 13:54:57 +0200980/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +0200981 * isn't in maintenance. The server is registered in a list to postpone the
982 * counting of the remaining servers on the proxy and tries to grab requests
983 * from the proxy. Maintenance servers are ignored. It stores the
984 * <reason> if non-null as the reason for going down or the available data
985 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +0200986 * up. Note that it makes use of the trash to build the log strings, so <reason>
987 * must not be placed there.
988 */
Emeric Brun5a133512017-10-19 14:42:30 +0200989void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +0200990{
991 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +0200992
Emeric Brun64cc49c2017-10-03 14:46:45 +0200993 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +0200994 return;
995
Emeric Brun52a91d32017-08-31 14:41:55 +0200996 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +0200997 return;
998
Emeric Brun52a91d32017-08-31 14:41:55 +0200999 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001000 *s->op_st_chg.reason = 0;
1001 s->op_st_chg.status = -1;
1002 if (reason) {
1003 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1004 }
1005 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001006 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001007 s->op_st_chg.code = check->code;
1008 s->op_st_chg.status = check->status;
1009 s->op_st_chg.duration = check->duration;
1010 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001011
Christopher Faulet5d42e092017-10-16 12:00:40 +02001012 srv_register_update(s);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001013 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001014 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001015 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001016 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001017 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001018}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001019
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001020/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1021 * enforce either maint mode or drain mode. It is not allowed to set more than
1022 * one flag at once. The equivalent "inherited" flag is propagated to all
1023 * tracking servers. Maintenance mode disables health checks (but not agent
1024 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001025 * is done. If <cause> is non-null, it will be displayed at the end of the log
1026 * lines to justify the state change.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001027 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001028void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001029{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001030 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001031
1032 if (!mode)
1033 return;
1034
1035 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001036 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001037 return;
1038
Emeric Brun52a91d32017-08-31 14:41:55 +02001039 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001040 if (cause)
1041 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1042
Christopher Faulet5d42e092017-10-16 12:00:40 +02001043 srv_register_update(s);
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001044
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001045 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001046 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1047 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001048 return;
1049
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001050 /* compute the inherited flag to propagate */
1051 if (mode & SRV_ADMF_MAINT)
1052 mode = SRV_ADMF_IMAINT;
1053 else if (mode & SRV_ADMF_DRAIN)
1054 mode = SRV_ADMF_IDRAIN;
1055
Emeric Brun9f0b4582017-10-23 14:39:51 +02001056 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001057 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001058 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001059 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001060 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001061}
1062
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001063/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1064 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1065 * than one flag at once. The equivalent "inherited" flag is propagated to all
1066 * tracking servers. Leaving maintenance mode re-enables health checks. When
1067 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001068 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001069void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001070{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001071 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001072
1073 if (!mode)
1074 return;
1075
1076 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001077 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001078 return;
1079
Emeric Brun52a91d32017-08-31 14:41:55 +02001080 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001081
Christopher Faulet5d42e092017-10-16 12:00:40 +02001082 srv_register_update(s);
1083
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001084 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001085 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1086 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001087 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001088
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001089 if (mode & SRV_ADMF_MAINT)
1090 mode = SRV_ADMF_IMAINT;
1091 else if (mode & SRV_ADMF_DRAIN)
1092 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001093
Emeric Brun9f0b4582017-10-23 14:39:51 +02001094 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001095 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001096 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001097 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001098 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001099}
1100
Willy Tarreau757478e2016-11-03 19:22:19 +01001101/* principle: propagate maint and drain to tracking servers. This is useful
1102 * upon startup so that inherited states are correct.
1103 */
1104static void srv_propagate_admin_state(struct server *srv)
1105{
1106 struct server *srv2;
1107
1108 if (!srv->trackers)
1109 return;
1110
1111 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001112 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001113 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001114 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001115
Emeric Brun52a91d32017-08-31 14:41:55 +02001116 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001117 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001118 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001119 }
1120}
1121
1122/* Compute and propagate the admin states for all servers in proxy <px>.
1123 * Only servers *not* tracking another one are considered, because other
1124 * ones will be handled when the server they track is visited.
1125 */
1126void srv_compute_all_admin_states(struct proxy *px)
1127{
1128 struct server *srv;
1129
1130 for (srv = px->srv; srv; srv = srv->next) {
1131 if (srv->track)
1132 continue;
1133 srv_propagate_admin_state(srv);
1134 }
1135}
1136
Willy Tarreaudff55432012-10-10 17:51:05 +02001137/* Note: must not be declared <const> as its list will be overwritten.
1138 * Please take care of keeping this list alphabetically sorted, doing so helps
1139 * all code contributors.
1140 * Optional keywords are also declared with a NULL ->parse() function so that
1141 * the config parser can report an appropriate error when a known keyword was
1142 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001143 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001144 */
1145static struct srv_kw_list srv_kws = { "ALL", { }, {
Frédéric Lécaille6e5e0d82017-03-20 16:30:18 +01001146 { "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 +01001147 { "agent-check", srv_parse_agent_check, 0, 1 }, /* Enable an auxiliary agent check */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001148 { "backup", srv_parse_backup, 0, 1 }, /* Flag as backup server */
Frédéric Lécaille65aa3562017-03-14 11:20:13 +01001149 { "check", srv_parse_check, 0, 1 }, /* enable health checks */
Frédéric Lécaille25df8902017-03-10 14:04:31 +01001150 { "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 +01001151 { "cookie", srv_parse_cookie, 1, 1 }, /* Assign a cookie to the server */
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +01001152 { "disabled", srv_parse_disabled, 0, 1 }, /* Start the server in 'disabled' state */
1153 { "enabled", srv_parse_enabled, 0, 1 }, /* Start the server in 'enabled' state */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001154 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
Frédéric Lécaille22f41a22017-03-16 17:17:36 +01001155 { "namespace", srv_parse_namespace, 1, 1 }, /* Namespace the server socket belongs to (if supported) */
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001156 { "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 +01001157 { "no-backup", srv_parse_no_backup, 0, 1 }, /* Flag as non-backup server */
Frédéric Lécaille65aa3562017-03-14 11:20:13 +01001158 { "no-check", srv_parse_no_check, 0, 1 }, /* disable health checks */
Frédéric Lécaille25df8902017-03-10 14:04:31 +01001159 { "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 +01001160 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1 }, /* Disable use of PROXY V1 protocol */
1161 { "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 +01001162 { "non-stick", srv_parse_non_stick, 0, 1 }, /* Disable stick-table persistence */
Frédéric Lécaille547356e2017-03-15 08:55:39 +01001163 { "observe", srv_parse_observe, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
Emmanuel Hocdetf643b802018-02-01 15:20:32 +01001164 { "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 +01001165 { "redir", srv_parse_redir, 1, 1 }, /* Enable redirection mode */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001166 { "send-proxy", srv_parse_send_proxy, 0, 1 }, /* Enforce use of PROXY V1 protocol */
1167 { "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 +02001168 { "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 +01001169 { "stick", srv_parse_stick, 0, 1 }, /* Enable stick-table persistence */
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001170 { "track", srv_parse_track, 1, 1 }, /* Set the current state of the server, tracking another one */
Willy Tarreaudff55432012-10-10 17:51:05 +02001171 { NULL, NULL, 0 },
1172}};
1173
1174__attribute__((constructor))
1175static void __listener_init(void)
1176{
1177 srv_register_keywords(&srv_kws);
1178}
1179
Willy Tarreau004e0452013-11-21 11:22:01 +01001180/* Recomputes the server's eweight based on its state, uweight, the current time,
1181 * and the proxy's algorihtm. To be used after updating sv->uweight. The warmup
1182 * state is automatically disabled if the time is elapsed.
1183 */
1184void server_recalc_eweight(struct server *sv)
1185{
1186 struct proxy *px = sv->proxy;
1187 unsigned w;
1188
1189 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1190 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001191 if (sv->next_state == SRV_ST_STARTING)
1192 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001193 }
1194
1195 /* We must take care of not pushing the server to full throttle during slow starts.
1196 * It must also start immediately, at least at the minimal step when leaving maintenance.
1197 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001198 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001199 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1200 else
1201 w = px->lbprm.wdiv;
1202
Emeric Brun52a91d32017-08-31 14:41:55 +02001203 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001204
Christopher Faulet5d42e092017-10-16 12:00:40 +02001205 srv_register_update(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001206}
1207
Willy Tarreaubaaee002006-06-26 02:48:02 +02001208/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001209 * Parses weight_str and configures sv accordingly.
1210 * Returns NULL on success, error message string otherwise.
1211 */
1212const char *server_parse_weight_change_request(struct server *sv,
1213 const char *weight_str)
1214{
1215 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001216 long int w;
1217 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001218
1219 px = sv->proxy;
1220
1221 /* if the weight is terminated with '%', it is set relative to
1222 * the initial weight, otherwise it is absolute.
1223 */
1224 if (!*weight_str)
1225 return "Require <weight> or <weight%>.\n";
1226
Simon Hormanb796afa2013-02-12 10:45:53 +09001227 w = strtol(weight_str, &end, 10);
1228 if (end == weight_str)
1229 return "Empty weight string empty or preceded by garbage";
1230 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001231 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001232 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001233 /* Avoid integer overflow */
1234 if (w > 25600)
1235 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001236 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001237 if (w > 256)
1238 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001239 }
1240 else if (w < 0 || w > 256)
1241 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001242 else if (end[0] != '\0')
1243 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001244
1245 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1246 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1247
1248 sv->uweight = w;
Willy Tarreau004e0452013-11-21 11:22:01 +01001249 server_recalc_eweight(sv);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001250
1251 return NULL;
1252}
1253
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001254/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001255 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1256 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001257 * Returns:
1258 * - error string on error
1259 * - NULL on success
1260 */
1261const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001262 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001263{
1264 unsigned char ip[INET6_ADDRSTRLEN];
1265
1266 if (inet_pton(AF_INET6, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001267 update_server_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001268 return NULL;
1269 }
1270 if (inet_pton(AF_INET, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001271 update_server_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001272 return NULL;
1273 }
1274
1275 return "Could not understand IP address format.\n";
1276}
1277
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001278const char *server_parse_maxconn_change_request(struct server *sv,
1279 const char *maxconn_str)
1280{
1281 long int v;
1282 char *end;
1283
1284 if (!*maxconn_str)
1285 return "Require <maxconn>.\n";
1286
1287 v = strtol(maxconn_str, &end, 10);
1288 if (end == maxconn_str)
1289 return "maxconn string empty or preceded by garbage";
1290 else if (end[0] != '\0')
1291 return "Trailing garbage in maxconn string";
1292
1293 if (sv->maxconn == sv->minconn) { // static maxconn
1294 sv->maxconn = sv->minconn = v;
1295 } else { // dynamic maxconn
1296 sv->maxconn = v;
1297 }
1298
1299 if (may_dequeue_tasks(sv, sv->proxy))
1300 process_srv_queue(sv);
1301
1302 return NULL;
1303}
1304
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001305#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001306static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1307 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001308{
1309 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001310 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001311 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001312 NULL,
1313 };
1314
1315 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001316 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001317
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001318 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args);
1319}
1320
1321static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1322{
1323 struct sample_expr *expr;
1324
1325 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 +01001326 if (!expr) {
1327 memprintf(err, "error detected while parsing sni expression : %s", *err);
1328 return ERR_ALERT | ERR_FATAL;
1329 }
1330
1331 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1332 memprintf(err, "error detected while parsing sni expression : "
1333 " fetch method '%s' extracts information from '%s', "
1334 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001335 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001336 return ERR_ALERT | ERR_FATAL;
1337 }
1338
1339 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1340 release_sample_expr(newsrv->ssl_ctx.sni);
1341 newsrv->ssl_ctx.sni = expr;
1342
1343 return 0;
1344}
1345#endif
1346
1347static void display_parser_err(const char *file, int linenum, char **args, int cur_arg, char **err)
1348{
1349 if (err && *err) {
1350 indent_msg(err, 2);
Christopher Faulet767a84b2017-11-24 16:50:31 +01001351 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 +01001352 }
1353 else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001354 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while processing '%s'.\n",
1355 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001356}
1357
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001358static void srv_conn_src_sport_range_cpy(struct server *srv,
1359 struct server *src)
1360{
1361 int range_sz;
1362
1363 range_sz = src->conn_src.sport_range->size;
1364 if (range_sz > 0) {
1365 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1366 if (srv->conn_src.sport_range != NULL) {
1367 int i;
1368
1369 for (i = 0; i < range_sz; i++) {
1370 srv->conn_src.sport_range->ports[i] =
1371 src->conn_src.sport_range->ports[i];
1372 }
1373 }
1374 }
1375}
1376
1377/*
1378 * Copy <src> server connection source settings to <srv> server everything needed.
1379 */
1380static void srv_conn_src_cpy(struct server *srv, struct server *src)
1381{
1382 srv->conn_src.opts = src->conn_src.opts;
1383 srv->conn_src.source_addr = src->conn_src.source_addr;
1384
1385 /* Source port range copy. */
1386 if (src->conn_src.sport_range != NULL)
1387 srv_conn_src_sport_range_cpy(srv, src);
1388
1389#ifdef CONFIG_HAP_TRANSPARENT
1390 if (src->conn_src.bind_hdr_name != NULL) {
1391 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1392 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1393 }
1394 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1395 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1396#endif
1397 if (src->conn_src.iface_name != NULL)
1398 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1399}
1400
1401/*
1402 * Copy <src> server SSL settings to <srv> server allocating
1403 * everything needed.
1404 */
1405#if defined(USE_OPENSSL)
1406static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1407{
1408 if (src->ssl_ctx.ca_file != NULL)
1409 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1410 if (src->ssl_ctx.crl_file != NULL)
1411 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
1412 if (src->ssl_ctx.client_crt != NULL)
1413 srv->ssl_ctx.client_crt = strdup(src->ssl_ctx.client_crt);
1414
1415 srv->ssl_ctx.verify = src->ssl_ctx.verify;
1416
1417 if (src->ssl_ctx.verify_host != NULL)
1418 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
1419 if (src->ssl_ctx.ciphers != NULL)
1420 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
1421 if (src->sni_expr != NULL)
1422 srv->sni_expr = strdup(src->sni_expr);
1423}
1424#endif
1425
1426/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001427 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001428 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001429 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001430 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001431static int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001432{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001433 char *hostname_dn;
1434 int hostname_len, hostname_dn_len;
1435
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001436 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001437 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001438
Christopher Faulet67957bd2017-09-27 11:00:59 +02001439 hostname_len = strlen(hostname);
1440 hostname_dn = trash.str;
1441 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
1442 hostname_dn, trash.size);
1443 if (hostname_dn_len == -1)
1444 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001445
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001446
Christopher Faulet67957bd2017-09-27 11:00:59 +02001447 free(srv->hostname);
1448 free(srv->hostname_dn);
1449 srv->hostname = strdup(hostname);
1450 srv->hostname_dn = strdup(hostname_dn);
1451 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001452 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001453 goto err;
1454
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001455 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001456
1457 err:
Christopher Faulet67957bd2017-09-27 11:00:59 +02001458 free(srv->hostname); srv->hostname = NULL;
1459 free(srv->hostname_dn); srv->hostname_dn = NULL;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001460 return -1;
1461}
1462
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001463/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001464 * Copy <src> server settings to <srv> server allocating
1465 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001466 * This function is not supposed to be called at any time, but only
1467 * during server settings parsing or during server allocations from
1468 * a server template, and just after having calloc()'ed a new server.
1469 * So, <src> may only be a default server (when parsing server settings)
1470 * or a server template (during server allocations from a server template).
1471 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
1472 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001473 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001474static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001475{
1476 /* Connection source settings copy */
1477 srv_conn_src_cpy(srv, src);
1478
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001479 if (srv_tmpl) {
1480 srv->addr = src->addr;
1481 srv->svc_port = src->svc_port;
1482 }
1483
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001484 srv->pp_opts = src->pp_opts;
1485 if (src->rdr_pfx != NULL) {
1486 srv->rdr_pfx = strdup(src->rdr_pfx);
1487 srv->rdr_len = src->rdr_len;
1488 }
1489 if (src->cookie != NULL) {
1490 srv->cookie = strdup(src->cookie);
1491 srv->cklen = src->cklen;
1492 }
1493 srv->use_ssl = src->use_ssl;
1494 srv->check.addr = srv->agent.addr = src->check.addr;
1495 srv->check.use_ssl = src->check.use_ssl;
1496 srv->check.port = src->check.port;
1497 /* Note: 'flags' field has potentially been already initialized. */
1498 srv->flags |= src->flags;
1499 srv->do_check = src->do_check;
1500 srv->do_agent = src->do_agent;
1501 if (srv->check.port)
1502 srv->flags |= SRV_F_CHECKPORT;
1503 srv->check.inter = src->check.inter;
1504 srv->check.fastinter = src->check.fastinter;
1505 srv->check.downinter = src->check.downinter;
1506 srv->agent.use_ssl = src->agent.use_ssl;
1507 srv->agent.port = src->agent.port;
1508 if (src->agent.send_string != NULL)
1509 srv->agent.send_string = strdup(src->agent.send_string);
1510 srv->agent.send_string_len = src->agent.send_string_len;
1511 srv->agent.inter = src->agent.inter;
1512 srv->agent.fastinter = src->agent.fastinter;
1513 srv->agent.downinter = src->agent.downinter;
1514 srv->maxqueue = src->maxqueue;
1515 srv->minconn = src->minconn;
1516 srv->maxconn = src->maxconn;
1517 srv->slowstart = src->slowstart;
1518 srv->observe = src->observe;
1519 srv->onerror = src->onerror;
1520 srv->onmarkeddown = src->onmarkeddown;
1521 srv->onmarkedup = src->onmarkedup;
1522 if (src->trackit != NULL)
1523 srv->trackit = strdup(src->trackit);
1524 srv->consecutive_errors_limit = src->consecutive_errors_limit;
1525 srv->uweight = srv->iweight = src->iweight;
1526
1527 srv->check.send_proxy = src->check.send_proxy;
1528 /* health: up, but will fall down at first failure */
1529 srv->check.rise = srv->check.health = src->check.rise;
1530 srv->check.fall = src->check.fall;
1531
1532 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001533 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
1534 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
1535 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001536 srv->check.state |= CHK_ST_PAUSED;
1537 srv->check.health = 0;
1538 }
1539
1540 /* health: up but will fall down at first failure */
1541 srv->agent.rise = srv->agent.health = src->agent.rise;
1542 srv->agent.fall = src->agent.fall;
1543
1544 if (src->resolvers_id != NULL)
1545 srv->resolvers_id = strdup(src->resolvers_id);
1546 srv->dns_opts.family_prio = src->dns_opts.family_prio;
1547 if (srv->dns_opts.family_prio == AF_UNSPEC)
1548 srv->dns_opts.family_prio = AF_INET6;
1549 memcpy(srv->dns_opts.pref_net,
1550 src->dns_opts.pref_net,
1551 sizeof srv->dns_opts.pref_net);
1552 srv->dns_opts.pref_net_nb = src->dns_opts.pref_net_nb;
1553
1554 srv->init_addr_methods = src->init_addr_methods;
1555 srv->init_addr = src->init_addr;
1556#if defined(USE_OPENSSL)
1557 srv_ssl_settings_cpy(srv, src);
1558#endif
1559#ifdef TCP_USER_TIMEOUT
1560 srv->tcp_ut = src->tcp_ut;
1561#endif
Olivier Houchard8da5f982017-08-04 18:35:36 +02001562 if (srv_tmpl)
1563 srv->srvrq = src->srvrq;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001564}
1565
1566static struct server *new_server(struct proxy *proxy)
1567{
1568 struct server *srv;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001569 int i;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001570
1571 srv = calloc(1, sizeof *srv);
1572 if (!srv)
1573 return NULL;
1574
1575 srv->obj_type = OBJ_TYPE_SERVER;
1576 srv->proxy = proxy;
1577 LIST_INIT(&srv->actconns);
1578 LIST_INIT(&srv->pendconns);
Christopher Faulet40a007c2017-07-03 15:41:01 +02001579
1580 if ((srv->priv_conns = calloc(global.nbthread, sizeof(*srv->priv_conns))) == NULL)
1581 goto free_srv;
1582 if ((srv->idle_conns = calloc(global.nbthread, sizeof(*srv->idle_conns))) == NULL)
1583 goto free_priv_conns;
1584 if ((srv->safe_conns = calloc(global.nbthread, sizeof(*srv->safe_conns))) == NULL)
1585 goto free_idle_conns;
1586
1587 for (i = 0; i < global.nbthread; i++) {
1588 LIST_INIT(&srv->priv_conns[i]);
1589 LIST_INIT(&srv->idle_conns[i]);
1590 LIST_INIT(&srv->safe_conns[i]);
1591 }
1592
Emeric Brun64cc49c2017-10-03 14:46:45 +02001593 LIST_INIT(&srv->update_status);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001594
Emeric Brun52a91d32017-08-31 14:41:55 +02001595 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001596 srv->last_change = now.tv_sec;
1597
1598 srv->check.status = HCHK_STATUS_INI;
1599 srv->check.server = srv;
1600 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
1601
1602 srv->agent.status = HCHK_STATUS_INI;
1603 srv->agent.server = srv;
1604 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
1605
1606 return srv;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001607
1608 free_idle_conns:
1609 free(srv->idle_conns);
1610 free_priv_conns:
1611 free(srv->priv_conns);
1612 free_srv:
1613 free(srv);
1614 return NULL;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001615}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001616
1617/*
1618 * Validate <srv> server health-check settings.
1619 * Returns 0 if everything is OK, -1 if not.
1620 */
1621static int server_healthcheck_validate(const char *file, int linenum, struct server *srv)
1622{
1623 struct tcpcheck_rule *r = NULL;
1624 struct list *l;
1625
1626 /*
1627 * We need at least a service port, a check port or the first tcp-check rule must
1628 * be a 'connect' one when checking an IPv4/IPv6 server.
1629 */
1630 if ((srv_check_healthcheck_port(&srv->check) != 0) ||
1631 (!is_inet_addr(&srv->check.addr) && (is_addr(&srv->check.addr) || !is_inet_addr(&srv->addr))))
1632 return 0;
1633
1634 r = (struct tcpcheck_rule *)srv->proxy->tcpcheck_rules.n;
1635 if (!r) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001636 ha_alert("parsing [%s:%d] : server %s has neither service port nor check port. "
1637 "Check has been disabled.\n",
1638 file, linenum, srv->id);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001639 return -1;
1640 }
1641
1642 /* search the first action (connect / send / expect) in the list */
1643 l = &srv->proxy->tcpcheck_rules;
1644 list_for_each_entry(r, l, list) {
1645 if (r->action != TCPCHK_ACT_COMMENT)
1646 break;
1647 }
1648
1649 if ((r->action != TCPCHK_ACT_CONNECT) || !r->port) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001650 ha_alert("parsing [%s:%d] : server %s has neither service port nor check port "
1651 "nor tcp_check rule 'connect' with port information. Check has been disabled.\n",
1652 file, linenum, srv->id);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001653 return -1;
1654 }
1655
1656 /* scan the tcp-check ruleset to ensure a port has been configured */
1657 l = &srv->proxy->tcpcheck_rules;
1658 list_for_each_entry(r, l, list) {
1659 if ((r->action == TCPCHK_ACT_CONNECT) && (!r->port)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001660 ha_alert("parsing [%s:%d] : server %s has neither service port nor check port, "
1661 "and a tcp_check rule 'connect' with no port information. Check has been disabled.\n",
1662 file, linenum, srv->id);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001663 return -1;
1664 }
1665 }
1666
1667 return 0;
1668}
1669
1670/*
1671 * Initialize <srv> health-check structure.
1672 * Returns the error string in case of memory allocation failure, NULL if not.
1673 */
1674static const char *do_health_check_init(struct server *srv, int check_type, int state)
1675{
1676 const char *ret;
1677
1678 if (!srv->do_check)
1679 return NULL;
1680
1681 ret = init_check(&srv->check, check_type);
1682 if (ret)
1683 return ret;
1684
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001685 srv->check.state |= state;
1686 global.maxsock++;
1687
1688 return NULL;
1689}
1690
1691static int server_health_check_init(const char *file, int linenum,
1692 struct server *srv, struct proxy *curproxy)
1693{
1694 const char *ret;
1695
1696 if (!srv->do_check)
1697 return 0;
1698
1699 if (srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001700 ha_alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1701 file, linenum);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001702 return ERR_ALERT | ERR_FATAL;
1703 }
1704
1705 if (server_healthcheck_validate(file, linenum, srv) < 0)
1706 return ERR_ALERT | ERR_ABORT;
1707
1708 /* note: check type will be set during the config review phase */
1709 ret = do_health_check_init(srv, 0, CHK_ST_CONFIGURED | CHK_ST_ENABLED);
1710 if (ret) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001711 ha_alert("parsing [%s:%d] : %s.\n", file, linenum, ret);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001712 return ERR_ALERT | ERR_ABORT;
1713 }
1714
1715 return 0;
1716}
1717
1718/*
1719 * Initialize <srv> agent check structure.
1720 * Returns the error string in case of memory allocation failure, NULL if not.
1721 */
1722static const char *do_server_agent_check_init(struct server *srv, int state)
1723{
1724 const char *ret;
1725
1726 if (!srv->do_agent)
1727 return NULL;
1728
1729 ret = init_check(&srv->agent, PR_O2_LB_AGENT_CHK);
1730 if (ret)
1731 return ret;
1732
1733 if (!srv->agent.inter)
1734 srv->agent.inter = srv->check.inter;
1735
1736 srv->agent.state |= state;
1737 global.maxsock++;
1738
1739 return NULL;
1740}
1741
1742static int server_agent_check_init(const char *file, int linenum,
1743 struct server *srv, struct proxy *curproxy)
1744{
1745 const char *ret;
1746
1747 if (!srv->do_agent)
1748 return 0;
1749
1750 if (!srv->agent.port) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001751 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 +02001752 file, linenum, srv->id);
1753 return ERR_ALERT | ERR_FATAL;
1754 }
1755
1756 ret = do_server_agent_check_init(srv, CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_AGENT);
1757 if (ret) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001758 ha_alert("parsing [%s:%d] : %s.\n", file, linenum, ret);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001759 return ERR_ALERT | ERR_ABORT;
1760 }
1761
1762 return 0;
1763}
1764
1765#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1766static int server_sni_expr_init(const char *file, int linenum, char **args, int cur_arg,
1767 struct server *srv, struct proxy *proxy)
1768{
1769 int ret;
1770 char *err = NULL;
1771
1772 if (!srv->sni_expr)
1773 return 0;
1774
1775 ret = server_parse_sni_expr(srv, proxy, &err);
1776 if (!ret)
1777 return 0;
1778
1779 display_parser_err(file, linenum, args, cur_arg, &err);
1780 free(err);
1781
1782 return ret;
1783}
1784#endif
1785
1786/*
1787 * Server initializations finalization.
1788 * Initialize health check, agent check and SNI expression if enabled.
1789 * Must not be called for a default server instance.
1790 */
1791static int server_finalize_init(const char *file, int linenum, char **args, int cur_arg,
1792 struct server *srv, struct proxy *px)
1793{
1794 int ret;
1795
1796 if ((ret = server_health_check_init(file, linenum, srv, px)) != 0 ||
1797 (ret = server_agent_check_init(file, linenum, srv, px)) != 0) {
1798 return ret;
1799 }
1800
1801#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1802 if ((ret = server_sni_expr_init(file, linenum, args, cur_arg, srv, px)) != 0)
1803 return ret;
1804#endif
1805
1806 if (srv->flags & SRV_F_BACKUP)
1807 px->srv_bck++;
1808 else
1809 px->srv_act++;
1810 srv_lb_commit_status(srv);
1811
1812 return 0;
1813}
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001814
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001815/*
1816 * Parse as much as possible such a range string argument: low[-high]
1817 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
1818 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
1819 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
1820 * Returns 0 if succeeded, -1 if not.
1821 */
1822static int srv_tmpl_parse_range(struct server *srv, const char *arg, int *nb_low, int *nb_high)
1823{
1824 char *nb_high_arg;
1825
1826 *nb_high = 0;
1827 chunk_printf(&trash, "%s", arg);
1828 *nb_low = atoi(trash.str);
1829
1830 if ((nb_high_arg = strchr(trash.str, '-'))) {
1831 *nb_high_arg++ = '\0';
1832 *nb_high = atoi(nb_high_arg);
1833 }
1834 else {
1835 *nb_high += *nb_low;
1836 *nb_low = 1;
1837 }
1838
1839 if (*nb_low < 0 || *nb_high < *nb_low)
1840 return -1;
1841
1842 return 0;
1843}
1844
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001845static inline void srv_set_id_from_prefix(struct server *srv, const char *prefix, int nb)
1846{
1847 chunk_printf(&trash, "%s%d", prefix, nb);
1848 free(srv->id);
1849 srv->id = strdup(trash.str);
1850}
1851
1852/*
1853 * Initialize as much as possible servers from <srv> server template.
1854 * Note that a server template is a special server with
1855 * a few different parameters than a server which has
1856 * been parsed mostly the same way as a server.
1857 * Returns the number of servers succesfully allocated,
1858 * 'srv' template included.
1859 */
1860static int server_template_init(struct server *srv, struct proxy *px)
1861{
1862 int i;
1863 struct server *newsrv;
1864
1865 for (i = srv->tmpl_info.nb_low + 1; i <= srv->tmpl_info.nb_high; i++) {
1866 int check_init_state;
1867 int agent_init_state;
1868
1869 newsrv = new_server(px);
1870 if (!newsrv)
1871 goto err;
1872
1873 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001874 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001875#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1876 if (newsrv->sni_expr) {
1877 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
1878 if (!newsrv->ssl_ctx.sni)
1879 goto err;
1880 }
1881#endif
1882 /* Set this new server ID. */
1883 srv_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
1884
1885 /* Initial checks states. */
1886 check_init_state = CHK_ST_CONFIGURED | CHK_ST_ENABLED;
1887 agent_init_state = CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_AGENT;
1888
1889 if (do_health_check_init(newsrv, px->options2 & PR_O2_CHK_ANY, check_init_state) ||
1890 do_server_agent_check_init(newsrv, agent_init_state))
1891 goto err;
1892
1893 /* Linked backwards first. This will be restablished after parsing. */
1894 newsrv->next = px->srv;
1895 px->srv = newsrv;
1896 }
1897 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1898
1899 return i - srv->tmpl_info.nb_low;
1900
1901 err:
1902 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1903 if (newsrv) {
1904#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1905 release_sample_expr(newsrv->ssl_ctx.sni);
1906#endif
1907 free_check(&newsrv->agent);
1908 free_check(&newsrv->check);
1909 }
1910 free(newsrv);
1911 return i - srv->tmpl_info.nb_low;
1912}
1913
Willy Tarreau272adea2014-03-31 10:39:59 +02001914int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy, struct proxy *defproxy)
1915{
1916 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001917 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001918 char *errmsg = NULL;
1919 int err_code = 0;
1920 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +02001921 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001922
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001923 if (!strcmp(args[0], "server") ||
1924 !strcmp(args[0], "default-server") ||
1925 !strcmp(args[0], "server-template")) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001926 int cur_arg;
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001927 int defsrv = (*args[0] == 'd');
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001928 int srv = !defsrv && !strcmp(args[0], "server");
1929 int srv_tmpl = !defsrv && !srv;
1930 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02001931
1932 if (!defsrv && curproxy == defproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001933 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001934 err_code |= ERR_ALERT | ERR_FATAL;
1935 goto out;
1936 }
1937 else if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL))
1938 err_code |= ERR_ALERT | ERR_FATAL;
1939
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001940 /* There is no mandatory first arguments for default server. */
1941 if (srv) {
1942 if (!*args[2]) {
1943 /* 'server' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001944 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001945 file, linenum, args[0]);
1946 err_code |= ERR_ALERT | ERR_FATAL;
1947 goto out;
1948 }
1949
1950 err = invalid_char(args[1]);
1951 }
1952 else if (srv_tmpl) {
1953 if (!*args[3]) {
1954 /* 'server-template' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001955 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 +02001956 file, linenum, args[0]);
1957 err_code |= ERR_ALERT | ERR_FATAL;
1958 goto out;
1959 }
1960
1961 err = invalid_prefix_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001962 }
1963
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001964 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001965 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 +02001966 file, linenum, *err, args[0], srv ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001967 err_code |= ERR_ALERT | ERR_FATAL;
1968 goto out;
1969 }
1970
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001971 cur_arg = 2;
1972 if (srv_tmpl) {
1973 /* Parse server-template <nb | range> arg. */
1974 if (srv_tmpl_parse_range(newsrv, args[cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001975 ha_alert("parsing [%s:%d] : Wrong %s number or range arg '%s'.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001976 file, linenum, args[0], args[cur_arg]);
1977 err_code |= ERR_ALERT | ERR_FATAL;
1978 goto out;
1979 }
1980 cur_arg++;
1981 }
1982
Willy Tarreau272adea2014-03-31 10:39:59 +02001983 if (!defsrv) {
1984 struct sockaddr_storage *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01001985 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02001986 struct protocol *proto;
1987
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001988 newsrv = new_server(curproxy);
1989 if (!newsrv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001990 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Willy Tarreau272adea2014-03-31 10:39:59 +02001991 err_code |= ERR_ALERT | ERR_ABORT;
1992 goto out;
1993 }
1994
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001995 if (srv_tmpl) {
1996 newsrv->tmpl_info.nb_low = tmpl_range_low;
1997 newsrv->tmpl_info.nb_high = tmpl_range_high;
1998 }
1999
Willy Tarreau272adea2014-03-31 10:39:59 +02002000 /* the servers are linked backwards first */
2001 newsrv->next = curproxy->srv;
2002 curproxy->srv = newsrv;
Willy Tarreau272adea2014-03-31 10:39:59 +02002003 newsrv->conf.file = strdup(file);
2004 newsrv->conf.line = linenum;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002005 /* Note: for a server template, its id is its prefix.
2006 * This is a temporary id which will be used for server allocations to come
2007 * after parsing.
2008 */
2009 if (srv)
2010 newsrv->id = strdup(args[1]);
2011 else
2012 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002013
2014 /* several ways to check the port component :
2015 * - IP => port=+0, relative (IPv4 only)
2016 * - IP: => port=+0, relative
2017 * - IP:N => port=N, absolute
2018 * - IP:+N => port=+N, relative
2019 * - IP:-N => port=-N, relative
2020 */
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002021 sk = str2sa_range(args[cur_arg], &port, &port1, &port2, &errmsg, NULL, &fqdn, 0);
Willy Tarreau272adea2014-03-31 10:39:59 +02002022 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002023 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau272adea2014-03-31 10:39:59 +02002024 err_code |= ERR_ALERT | ERR_FATAL;
2025 goto out;
2026 }
2027
2028 proto = protocol_by_family(sk->ss_family);
Willy Tarreau9698f4b2017-01-06 18:42:57 +01002029 if (!fqdn && (!proto || !proto->connect)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002030 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002031 file, linenum, args[0], args[1]);
2032 err_code |= ERR_ALERT | ERR_FATAL;
2033 goto out;
2034 }
2035
2036 if (!port1 || !port2) {
2037 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +02002038 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +02002039 }
2040 else if (port1 != port2) {
2041 /* port range */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002042 ha_alert("parsing [%s:%d] : '%s %s' : port ranges are not allowed in '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002043 file, linenum, args[0], args[1], args[2]);
2044 err_code |= ERR_ALERT | ERR_FATAL;
2045 goto out;
2046 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002047
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002048 /* save hostname and create associated name resolution */
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002049 if (fqdn) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002050 if (fqdn[0] == '_') { /* SRV record */
Olivier Houchard8da5f982017-08-04 18:35:36 +02002051 /* Check if a SRV request already exists, and if not, create it */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002052 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2053 newsrv->srvrq = new_dns_srvrq(newsrv, fqdn);
2054 if (newsrv->srvrq == NULL) {
Olivier Houchard8da5f982017-08-04 18:35:36 +02002055 err_code |= ERR_ALERT | ERR_FATAL;
2056 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002057 }
2058 }
2059 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002060 ha_alert("parsing [%s:%d] : Can't create DNS resolution for server '%s'\n",
Christopher Faulet67957bd2017-09-27 11:00:59 +02002061 file, linenum, newsrv->id);
2062 err_code |= ERR_ALERT | ERR_FATAL;
2063 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002064 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002065 }
2066
Willy Tarreau272adea2014-03-31 10:39:59 +02002067 newsrv->addr = *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002068 newsrv->svc_port = port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002069
Olivier Houchard8da5f982017-08-04 18:35:36 +02002070 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002071 ha_alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002072 file, linenum, newsrv->addr.ss_family, args[cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002073 err_code |= ERR_ALERT | ERR_FATAL;
2074 goto out;
2075 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002076
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002077 /* Copy default server settings to new server settings. */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002078 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002079 HA_SPIN_INIT(&newsrv->lock);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002080 cur_arg++;
Willy Tarreau272adea2014-03-31 10:39:59 +02002081 } else {
2082 newsrv = &curproxy->defsrv;
2083 cur_arg = 1;
Thierry Fournierada34842016-02-17 21:25:09 +01002084 newsrv->dns_opts.family_prio = AF_INET6;
Willy Tarreau272adea2014-03-31 10:39:59 +02002085 }
2086
2087 while (*args[cur_arg]) {
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01002088 if (!strcmp(args[cur_arg], "agent-inter")) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002089 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2090 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002091 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'agent-inter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002092 file, linenum, *err, newsrv->id);
2093 err_code |= ERR_ALERT | ERR_FATAL;
2094 goto out;
2095 }
2096 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002097 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002098 file, linenum, val, args[cur_arg], newsrv->id);
2099 err_code |= ERR_ALERT | ERR_FATAL;
2100 goto out;
2101 }
2102 newsrv->agent.inter = val;
2103 cur_arg += 2;
2104 }
Misiekea849332017-01-09 09:39:51 +01002105 else if (!strcmp(args[cur_arg], "agent-addr")) {
2106 if(str2ip(args[cur_arg + 1], &newsrv->agent.addr) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002107 ha_alert("parsing agent-addr failed. Check if %s is correct address.\n", args[cur_arg + 1]);
Misiekea849332017-01-09 09:39:51 +01002108 goto out;
2109 }
2110
2111 cur_arg += 2;
2112 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002113 else if (!strcmp(args[cur_arg], "agent-port")) {
2114 global.maxsock++;
2115 newsrv->agent.port = atol(args[cur_arg + 1]);
2116 cur_arg += 2;
2117 }
James Brown55f9ff12015-10-21 18:19:05 -07002118 else if (!strcmp(args[cur_arg], "agent-send")) {
2119 global.maxsock++;
2120 free(newsrv->agent.send_string);
2121 newsrv->agent.send_string_len = strlen(args[cur_arg + 1]);
2122 newsrv->agent.send_string = calloc(1, newsrv->agent.send_string_len + 1);
2123 memcpy(newsrv->agent.send_string, args[cur_arg + 1], newsrv->agent.send_string_len);
2124 cur_arg += 2;
2125 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002126 else if (!strcmp(args[cur_arg], "init-addr")) {
2127 char *p, *end;
2128 int done;
Willy Tarreau4310d362016-11-02 15:05:56 +01002129 struct sockaddr_storage sa;
Baptiste Assmann25938272016-09-21 20:26:16 +02002130
2131 newsrv->init_addr_methods = 0;
2132 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
2133
2134 for (p = args[cur_arg + 1]; *p; p = end) {
2135 /* cut on next comma */
2136 for (end = p; *end && *end != ','; end++);
2137 if (*end)
2138 *(end++) = 0;
2139
Willy Tarreau4310d362016-11-02 15:05:56 +01002140 memset(&sa, 0, sizeof(sa));
Baptiste Assmann25938272016-09-21 20:26:16 +02002141 if (!strcmp(p, "libc")) {
2142 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
2143 }
2144 else if (!strcmp(p, "last")) {
2145 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
2146 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01002147 else if (!strcmp(p, "none")) {
2148 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
2149 }
Willy Tarreau4310d362016-11-02 15:05:56 +01002150 else if (str2ip2(p, &sa, 0)) {
2151 if (is_addr(&newsrv->init_addr)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002152 ha_alert("parsing [%s:%d]: '%s' : initial address already specified, cannot add '%s'.\n",
Willy Tarreau4310d362016-11-02 15:05:56 +01002153 file, linenum, args[cur_arg], p);
2154 err_code |= ERR_ALERT | ERR_FATAL;
2155 goto out;
2156 }
2157 newsrv->init_addr = sa;
2158 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
2159 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002160 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002161 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 +02002162 file, linenum, args[cur_arg], p);
2163 err_code |= ERR_ALERT | ERR_FATAL;
2164 goto out;
2165 }
2166 if (!done) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002167 ha_alert("parsing [%s:%d]: '%s' : too many init-addr methods when trying to add '%s'\n",
Baptiste Assmann25938272016-09-21 20:26:16 +02002168 file, linenum, args[cur_arg], p);
2169 err_code |= ERR_ALERT | ERR_FATAL;
2170 goto out;
2171 }
2172 }
2173 cur_arg += 2;
2174 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002175 else if (!strcmp(args[cur_arg], "resolvers")) {
Frédéric Lécailledaa2fe62017-04-20 12:17:50 +02002176 free(newsrv->resolvers_id);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002177 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
2178 cur_arg += 2;
2179 }
2180 else if (!strcmp(args[cur_arg], "resolve-prefer")) {
2181 if (!strcmp(args[cur_arg + 1], "ipv4"))
Thierry Fournierada34842016-02-17 21:25:09 +01002182 newsrv->dns_opts.family_prio = AF_INET;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002183 else if (!strcmp(args[cur_arg + 1], "ipv6"))
Thierry Fournierada34842016-02-17 21:25:09 +01002184 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002185 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002186 ha_alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002187 file, linenum, args[cur_arg]);
2188 err_code |= ERR_ALERT | ERR_FATAL;
2189 goto out;
2190 }
2191 cur_arg += 2;
2192 }
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002193 else if (!strcmp(args[cur_arg], "resolve-net")) {
2194 char *p, *e;
2195 unsigned char mask;
2196 struct dns_options *opt;
2197
2198 if (!args[cur_arg + 1] || args[cur_arg + 1][0] == '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002199 ha_alert("parsing [%s:%d]: '%s' expects a list of networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002200 file, linenum, args[cur_arg]);
2201 err_code |= ERR_ALERT | ERR_FATAL;
2202 goto out;
2203 }
2204
2205 opt = &newsrv->dns_opts;
2206
2207 /* Split arguments by comma, and convert it from ipv4 or ipv6
2208 * string network in in_addr or in6_addr.
2209 */
2210 p = args[cur_arg + 1];
2211 e = p;
2212 while (*p != '\0') {
2213 /* If no room avalaible, return error. */
David Carlierd10025c2016-04-08 10:26:44 +01002214 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002215 ha_alert("parsing [%s:%d]: '%s' exceed %d networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002216 file, linenum, args[cur_arg], SRV_MAX_PREF_NET);
2217 err_code |= ERR_ALERT | ERR_FATAL;
2218 goto out;
2219 }
2220 /* look for end or comma. */
2221 while (*e != ',' && *e != '\0')
2222 e++;
2223 if (*e == ',') {
2224 *e = '\0';
2225 e++;
2226 }
2227 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
2228 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
2229 /* Try to convert input string from ipv4 or ipv6 network. */
2230 opt->pref_net[opt->pref_net_nb].family = AF_INET;
2231 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
2232 &mask)) {
2233 /* Try to convert input string from ipv6 network. */
2234 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
2235 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
2236 } else {
2237 /* All network conversions fail, retrun error. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002238 ha_alert("parsing [%s:%d]: '%s': invalid network '%s'.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002239 file, linenum, args[cur_arg], p);
2240 err_code |= ERR_ALERT | ERR_FATAL;
2241 goto out;
2242 }
2243 opt->pref_net_nb++;
2244 p = e;
2245 }
2246
2247 cur_arg += 2;
2248 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002249 else if (!strcmp(args[cur_arg], "rise")) {
2250 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002251 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002252 file, linenum, args[cur_arg]);
2253 err_code |= ERR_ALERT | ERR_FATAL;
2254 goto out;
2255 }
2256
2257 newsrv->check.rise = atol(args[cur_arg + 1]);
2258 if (newsrv->check.rise <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002259 ha_alert("parsing [%s:%d]: '%s' has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002260 file, linenum, args[cur_arg]);
2261 err_code |= ERR_ALERT | ERR_FATAL;
2262 goto out;
2263 }
2264
2265 if (newsrv->check.health)
2266 newsrv->check.health = newsrv->check.rise;
2267 cur_arg += 2;
2268 }
2269 else if (!strcmp(args[cur_arg], "fall")) {
2270 newsrv->check.fall = atol(args[cur_arg + 1]);
2271
2272 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002273 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002274 file, linenum, args[cur_arg]);
2275 err_code |= ERR_ALERT | ERR_FATAL;
2276 goto out;
2277 }
2278
2279 if (newsrv->check.fall <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002280 ha_alert("parsing [%s:%d]: '%s' has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002281 file, linenum, args[cur_arg]);
2282 err_code |= ERR_ALERT | ERR_FATAL;
2283 goto out;
2284 }
2285
2286 cur_arg += 2;
2287 }
2288 else if (!strcmp(args[cur_arg], "inter")) {
2289 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2290 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002291 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'inter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002292 file, linenum, *err, newsrv->id);
2293 err_code |= ERR_ALERT | ERR_FATAL;
2294 goto out;
2295 }
2296 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002297 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002298 file, linenum, val, args[cur_arg], newsrv->id);
2299 err_code |= ERR_ALERT | ERR_FATAL;
2300 goto out;
2301 }
2302 newsrv->check.inter = val;
2303 cur_arg += 2;
2304 }
2305 else if (!strcmp(args[cur_arg], "fastinter")) {
2306 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2307 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002308 ha_alert("parsing [%s:%d]: unexpected character '%c' in 'fastinter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002309 file, linenum, *err, newsrv->id);
2310 err_code |= ERR_ALERT | ERR_FATAL;
2311 goto out;
2312 }
2313 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002314 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002315 file, linenum, val, args[cur_arg], newsrv->id);
2316 err_code |= ERR_ALERT | ERR_FATAL;
2317 goto out;
2318 }
2319 newsrv->check.fastinter = val;
2320 cur_arg += 2;
2321 }
2322 else if (!strcmp(args[cur_arg], "downinter")) {
2323 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2324 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002325 ha_alert("parsing [%s:%d]: unexpected character '%c' in 'downinter' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002326 file, linenum, *err, newsrv->id);
2327 err_code |= ERR_ALERT | ERR_FATAL;
2328 goto out;
2329 }
2330 if (val <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002331 ha_alert("parsing [%s:%d]: invalid value %d for argument '%s' of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002332 file, linenum, val, args[cur_arg], newsrv->id);
2333 err_code |= ERR_ALERT | ERR_FATAL;
2334 goto out;
2335 }
2336 newsrv->check.downinter = val;
2337 cur_arg += 2;
2338 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002339 else if (!strcmp(args[cur_arg], "port")) {
2340 newsrv->check.port = atol(args[cur_arg + 1]);
Baptiste Assmann6b453f12016-08-11 23:12:18 +02002341 newsrv->flags |= SRV_F_CHECKPORT;
Willy Tarreau272adea2014-03-31 10:39:59 +02002342 cur_arg += 2;
2343 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002344 else if (!strcmp(args[cur_arg], "weight")) {
2345 int w;
2346 w = atol(args[cur_arg + 1]);
2347 if (w < 0 || w > SRV_UWGHT_MAX) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002348 ha_alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002349 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
2350 err_code |= ERR_ALERT | ERR_FATAL;
2351 goto out;
2352 }
2353 newsrv->uweight = newsrv->iweight = w;
2354 cur_arg += 2;
2355 }
2356 else if (!strcmp(args[cur_arg], "minconn")) {
2357 newsrv->minconn = atol(args[cur_arg + 1]);
2358 cur_arg += 2;
2359 }
2360 else if (!strcmp(args[cur_arg], "maxconn")) {
2361 newsrv->maxconn = atol(args[cur_arg + 1]);
2362 cur_arg += 2;
2363 }
2364 else if (!strcmp(args[cur_arg], "maxqueue")) {
2365 newsrv->maxqueue = atol(args[cur_arg + 1]);
2366 cur_arg += 2;
2367 }
2368 else if (!strcmp(args[cur_arg], "slowstart")) {
2369 /* slowstart is stored in seconds */
2370 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
2371 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002372 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002373 file, linenum, *err, newsrv->id);
2374 err_code |= ERR_ALERT | ERR_FATAL;
2375 goto out;
2376 }
2377 newsrv->slowstart = (val + 999) / 1000;
2378 cur_arg += 2;
2379 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002380 else if (!strcmp(args[cur_arg], "on-error")) {
2381 if (!strcmp(args[cur_arg + 1], "fastinter"))
2382 newsrv->onerror = HANA_ONERR_FASTINTER;
2383 else if (!strcmp(args[cur_arg + 1], "fail-check"))
2384 newsrv->onerror = HANA_ONERR_FAILCHK;
2385 else if (!strcmp(args[cur_arg + 1], "sudden-death"))
2386 newsrv->onerror = HANA_ONERR_SUDDTH;
2387 else if (!strcmp(args[cur_arg + 1], "mark-down"))
2388 newsrv->onerror = HANA_ONERR_MARKDWN;
2389 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002390 ha_alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
Willy Tarreau272adea2014-03-31 10:39:59 +02002391 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
2392 file, linenum, args[cur_arg], args[cur_arg + 1]);
2393 err_code |= ERR_ALERT | ERR_FATAL;
2394 goto out;
2395 }
2396
2397 cur_arg += 2;
2398 }
2399 else if (!strcmp(args[cur_arg], "on-marked-down")) {
2400 if (!strcmp(args[cur_arg + 1], "shutdown-sessions"))
2401 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
2402 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002403 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002404 file, linenum, args[cur_arg], args[cur_arg + 1]);
2405 err_code |= ERR_ALERT | ERR_FATAL;
2406 goto out;
2407 }
2408
2409 cur_arg += 2;
2410 }
2411 else if (!strcmp(args[cur_arg], "on-marked-up")) {
2412 if (!strcmp(args[cur_arg + 1], "shutdown-backup-sessions"))
2413 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
2414 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002415 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002416 file, linenum, args[cur_arg], args[cur_arg + 1]);
2417 err_code |= ERR_ALERT | ERR_FATAL;
2418 goto out;
2419 }
2420
2421 cur_arg += 2;
2422 }
2423 else if (!strcmp(args[cur_arg], "error-limit")) {
2424 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002425 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002426 file, linenum, args[cur_arg]);
2427 err_code |= ERR_ALERT | ERR_FATAL;
2428 goto out;
2429 }
2430
2431 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
2432
2433 if (newsrv->consecutive_errors_limit <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002434 ha_alert("parsing [%s:%d]: %s has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002435 file, linenum, args[cur_arg]);
2436 err_code |= ERR_ALERT | ERR_FATAL;
2437 goto out;
2438 }
2439 cur_arg += 2;
2440 }
Frédéric Lécaille8d083ed2017-04-14 15:19:56 +02002441 else if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside: needs "source" first */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002442 ha_alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002443 file, linenum, "usesrc", "source");
2444 err_code |= ERR_ALERT | ERR_FATAL;
2445 goto out;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002446 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002447 else {
2448 static int srv_dumped;
2449 struct srv_kw *kw;
2450 char *err;
2451
2452 kw = srv_find_kw(args[cur_arg]);
2453 if (kw) {
2454 char *err = NULL;
2455 int code;
2456
2457 if (!kw->parse) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002458 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 +02002459 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002460 if (kw->skip != -1)
2461 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002462 err_code |= ERR_ALERT | ERR_FATAL;
2463 goto out;
2464 }
2465
2466 if (defsrv && !kw->default_ok) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002467 ha_alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002468 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002469 if (kw->skip != -1)
2470 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002471 err_code |= ERR_ALERT;
2472 continue;
2473 }
2474
2475 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
2476 err_code |= code;
2477
2478 if (code) {
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002479 display_parser_err(file, linenum, args, cur_arg, &err);
Willy Tarreau272adea2014-03-31 10:39:59 +02002480 if (code & ERR_FATAL) {
2481 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002482 if (kw->skip != -1)
2483 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002484 goto out;
2485 }
2486 }
2487 free(err);
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 continue;
2491 }
2492
2493 err = NULL;
2494 if (!srv_dumped) {
2495 srv_dump_kws(&err);
2496 indent_msg(&err, 4);
2497 srv_dumped = 1;
2498 }
2499
Christopher Faulet767a84b2017-11-24 16:50:31 +01002500 ha_alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002501 file, linenum, args[0], args[1], args[cur_arg],
2502 err ? " Registered keywords :" : "", err ? err : "");
2503 free(err);
2504
2505 err_code |= ERR_ALERT | ERR_FATAL;
2506 goto out;
2507 }
2508 }
2509
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002510 if (!defsrv)
2511 err_code |= server_finalize_init(file, linenum, args, cur_arg, newsrv, curproxy);
2512 if (err_code & ERR_FATAL)
2513 goto out;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002514 if (srv_tmpl)
2515 server_template_init(newsrv, curproxy);
Willy Tarreau272adea2014-03-31 10:39:59 +02002516 }
Willy Tarreau07101d52015-09-08 16:16:35 +02002517 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002518 return 0;
2519
2520 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02002521 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002522 free(errmsg);
2523 return err_code;
2524}
2525
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002526/* Returns a pointer to the first server matching either id <id>.
2527 * NULL is returned if no match is found.
2528 * the lookup is performed in the backend <bk>
2529 */
2530struct server *server_find_by_id(struct proxy *bk, int id)
2531{
2532 struct eb32_node *eb32;
2533 struct server *curserver;
2534
2535 if (!bk || (id ==0))
2536 return NULL;
2537
2538 /* <bk> has no backend capabilities, so it can't have a server */
2539 if (!(bk->cap & PR_CAP_BE))
2540 return NULL;
2541
2542 curserver = NULL;
2543
2544 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2545 if (eb32)
2546 curserver = container_of(eb32, struct server, conf.id);
2547
2548 return curserver;
2549}
2550
2551/* Returns a pointer to the first server matching either name <name>, or id
2552 * if <name> starts with a '#'. NULL is returned if no match is found.
2553 * the lookup is performed in the backend <bk>
2554 */
2555struct server *server_find_by_name(struct proxy *bk, const char *name)
2556{
2557 struct server *curserver;
2558
2559 if (!bk || !name)
2560 return NULL;
2561
2562 /* <bk> has no backend capabilities, so it can't have a server */
2563 if (!(bk->cap & PR_CAP_BE))
2564 return NULL;
2565
2566 curserver = NULL;
2567 if (*name == '#') {
2568 curserver = server_find_by_id(bk, atoi(name + 1));
2569 if (curserver)
2570 return curserver;
2571 }
2572 else {
2573 curserver = bk->srv;
2574
2575 while (curserver && (strcmp(curserver->id, name) != 0))
2576 curserver = curserver->next;
2577
2578 if (curserver)
2579 return curserver;
2580 }
2581
2582 return NULL;
2583}
2584
2585struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2586{
2587 struct server *byname;
2588 struct server *byid;
2589
2590 if (!name && !id)
2591 return NULL;
2592
2593 if (diff)
2594 *diff = 0;
2595
2596 byname = byid = NULL;
2597
2598 if (name) {
2599 byname = server_find_by_name(bk, name);
2600 if (byname && (!id || byname->puid == id))
2601 return byname;
2602 }
2603
2604 /* remaining possibilities :
2605 * - name not set
2606 * - name set but not found
2607 * - name found but ID doesn't match
2608 */
2609 if (id) {
2610 byid = server_find_by_id(bk, id);
2611 if (byid) {
2612 if (byname) {
2613 /* use id only if forced by configuration */
2614 if (byid->flags & SRV_F_FORCED_ID) {
2615 if (diff)
2616 *diff |= 2;
2617 return byid;
2618 }
2619 else {
2620 if (diff)
2621 *diff |= 1;
2622 return byname;
2623 }
2624 }
2625
2626 /* remaining possibilities:
2627 * - name not set
2628 * - name set but not found
2629 */
2630 if (name && diff)
2631 *diff |= 2;
2632 return byid;
2633 }
2634
2635 /* id bot found */
2636 if (byname) {
2637 if (diff)
2638 *diff |= 1;
2639 return byname;
2640 }
2641 }
2642
2643 return NULL;
2644}
2645
Christopher Faulet5d42e092017-10-16 12:00:40 +02002646/* Registers changes to be applied asynchronously */
2647static void srv_register_update(struct server *srv)
2648{
2649 if (LIST_ISEMPTY(&srv->update_status)) {
2650 THREAD_WANT_SYNC();
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002651 HA_SPIN_LOCK(UPDATED_SERVERS_LOCK, &updated_servers_lock);
Christopher Faulet5d42e092017-10-16 12:00:40 +02002652 if (LIST_ISEMPTY(&srv->update_status))
2653 LIST_ADDQ(&updated_servers, &srv->update_status);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002654 HA_SPIN_UNLOCK(UPDATED_SERVERS_LOCK, &updated_servers_lock);
Christopher Faulet5d42e092017-10-16 12:00:40 +02002655 }
2656}
2657
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002658/* Update a server state using the parameters available in the params list */
2659static void srv_update_state(struct server *srv, int version, char **params)
2660{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002661 char *p;
Willy Tarreau31138fa2015-09-29 18:38:47 +02002662 struct chunk *msg;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002663
2664 /* fields since version 1
2665 * and common to all other upcoming versions
2666 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002667 enum srv_state srv_op_state;
2668 enum srv_admin srv_admin_state;
2669 unsigned srv_uweight, srv_iweight;
2670 unsigned long srv_last_time_change;
2671 short srv_check_status;
2672 enum chk_result srv_check_result;
2673 int srv_check_health;
2674 int srv_check_state, srv_agent_state;
2675 int bk_f_forced_id;
2676 int srv_f_forced_id;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002677 int fqdn_set_by_cli;
2678 const char *fqdn;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002679 const char *port_str;
2680 unsigned int port;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002681
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002682 fqdn = NULL;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002683 port = 0;
Willy Tarreau31138fa2015-09-29 18:38:47 +02002684 msg = get_trash_chunk();
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002685 switch (version) {
2686 case 1:
2687 /*
2688 * now we can proceed with server's state update:
2689 * srv_addr: params[0]
2690 * srv_op_state: params[1]
2691 * srv_admin_state: params[2]
2692 * srv_uweight: params[3]
2693 * srv_iweight: params[4]
2694 * srv_last_time_change: params[5]
2695 * srv_check_status: params[6]
2696 * srv_check_result: params[7]
2697 * srv_check_health: params[8]
2698 * srv_check_state: params[9]
2699 * srv_agent_state: params[10]
2700 * bk_f_forced_id: params[11]
2701 * srv_f_forced_id: params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002702 * srv_fqdn: params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02002703 * srv_port: params[14]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002704 */
2705
2706 /* validating srv_op_state */
2707 p = NULL;
2708 errno = 0;
2709 srv_op_state = strtol(params[1], &p, 10);
2710 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
2711 (srv_op_state != SRV_ST_STOPPED &&
2712 srv_op_state != SRV_ST_STARTING &&
2713 srv_op_state != SRV_ST_RUNNING &&
2714 srv_op_state != SRV_ST_STOPPING)) {
2715 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
2716 }
2717
2718 /* validating srv_admin_state */
2719 p = NULL;
2720 errno = 0;
2721 srv_admin_state = strtol(params[2], &p, 10);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002722 fqdn_set_by_cli = !!(srv_admin_state & SRV_ADMF_HMAINT);
Willy Tarreau757478e2016-11-03 19:22:19 +01002723
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002724 /* inherited statuses will be recomputed later.
2725 * Also disable SRV_ADMF_HMAINT flag (set from stats socket fqdn).
2726 */
2727 srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_HMAINT;
Willy Tarreau757478e2016-11-03 19:22:19 +01002728
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002729 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
2730 (srv_admin_state != 0 &&
2731 srv_admin_state != SRV_ADMF_FMAINT &&
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002732 srv_admin_state != SRV_ADMF_CMAINT &&
2733 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
Willy Tarreaue1bde142016-11-03 18:33:25 +01002734 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FDRAIN) &&
Willy Tarreau757478e2016-11-03 19:22:19 +01002735 srv_admin_state != SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002736 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
2737 }
2738
2739 /* validating srv_uweight */
2740 p = NULL;
2741 errno = 0;
2742 srv_uweight = strtol(params[3], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002743 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002744 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
2745
2746 /* validating srv_iweight */
2747 p = NULL;
2748 errno = 0;
2749 srv_iweight = strtol(params[4], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002750 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002751 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
2752
2753 /* validating srv_last_time_change */
2754 p = NULL;
2755 errno = 0;
2756 srv_last_time_change = strtol(params[5], &p, 10);
2757 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2758 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
2759
2760 /* validating srv_check_status */
2761 p = NULL;
2762 errno = 0;
2763 srv_check_status = strtol(params[6], &p, 10);
2764 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2765 (srv_check_status >= HCHK_STATUS_SIZE))
2766 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
2767
2768 /* validating srv_check_result */
2769 p = NULL;
2770 errno = 0;
2771 srv_check_result = strtol(params[7], &p, 10);
2772 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2773 (srv_check_result != CHK_RES_UNKNOWN &&
2774 srv_check_result != CHK_RES_NEUTRAL &&
2775 srv_check_result != CHK_RES_FAILED &&
2776 srv_check_result != CHK_RES_PASSED &&
2777 srv_check_result != CHK_RES_CONDPASS)) {
2778 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2779 }
2780
2781 /* validating srv_check_health */
2782 p = NULL;
2783 errno = 0;
2784 srv_check_health = strtol(params[8], &p, 10);
2785 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2786 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
2787
2788 /* validating srv_check_state */
2789 p = NULL;
2790 errno = 0;
2791 srv_check_state = strtol(params[9], &p, 10);
2792 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2793 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2794 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
2795
2796 /* validating srv_agent_state */
2797 p = NULL;
2798 errno = 0;
2799 srv_agent_state = strtol(params[10], &p, 10);
2800 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2801 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2802 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
2803
2804 /* validating bk_f_forced_id */
2805 p = NULL;
2806 errno = 0;
2807 bk_f_forced_id = strtol(params[11], &p, 10);
2808 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
2809 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
2810
2811 /* validating srv_f_forced_id */
2812 p = NULL;
2813 errno = 0;
2814 srv_f_forced_id = strtol(params[12], &p, 10);
2815 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
2816 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
2817
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002818 /* validating srv_fqdn */
2819 fqdn = params[13];
2820 if (fqdn && *fqdn == '-')
2821 fqdn = NULL;
2822 if (fqdn && (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn))) {
2823 chunk_appendf(msg, ", invalid srv_fqdn value '%s'", params[13]);
2824 fqdn = NULL;
2825 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002826
Frédéric Lécaille31694712017-08-01 08:47:19 +02002827 port_str = params[14];
2828 if (port_str) {
2829 port = strl2uic(port_str, strlen(port_str));
2830 if (port > USHRT_MAX) {
2831 chunk_appendf(msg, ", invalid srv_port value '%s'", port_str);
2832 port_str = NULL;
2833 }
2834 }
2835
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002836 /* don't apply anything if one error has been detected */
Willy Tarreau31138fa2015-09-29 18:38:47 +02002837 if (msg->len)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002838 goto out;
2839
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002840 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002841 /* recover operational state and apply it to this server
2842 * and all servers tracking this one */
2843 switch (srv_op_state) {
2844 case SRV_ST_STOPPED:
2845 srv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02002846 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002847 break;
2848 case SRV_ST_STARTING:
Emeric Brun52a91d32017-08-31 14:41:55 +02002849 srv->next_state = srv_op_state;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002850 break;
2851 case SRV_ST_STOPPING:
2852 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02002853 srv_set_stopping(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002854 break;
2855 case SRV_ST_RUNNING:
2856 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02002857 srv_set_running(srv, "", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002858 break;
2859 }
2860
2861 /* When applying server state, the following rules apply:
2862 * - in case of a configuration change, we apply the setting from the new
2863 * configuration, regardless of old running state
2864 * - if no configuration change, we apply old running state only if old running
2865 * state is different from new configuration state
2866 */
2867 /* configuration has changed */
Emeric Brun52a91d32017-08-31 14:41:55 +02002868 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->next_admin & SRV_ADMF_CMAINT)) {
2869 if (srv->next_admin & SRV_ADMF_CMAINT)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002870 srv_adm_set_maint(srv);
2871 else
2872 srv_adm_set_ready(srv);
2873 }
2874 /* configuration is the same, let's compate old running state and new conf state */
2875 else {
Emeric Brun52a91d32017-08-31 14:41:55 +02002876 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002877 srv_adm_set_maint(srv);
Emeric Brun52a91d32017-08-31 14:41:55 +02002878 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002879 srv_adm_set_ready(srv);
2880 }
2881 /* apply drain mode if server is currently enabled */
Emeric Brun52a91d32017-08-31 14:41:55 +02002882 if (!(srv->next_admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002883 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
Willy Tarreau22cace22016-11-03 18:19:49 +01002884 * (srv->iweight is the weight set up in configuration).
2885 * There are two possible reasons for FDRAIN to have been present :
2886 * - previous config weight was zero
2887 * - "set server b/s drain" was sent to the CLI
2888 *
2889 * In the first case, we simply want to drop this drain state
2890 * if the new weight is not zero anymore, meaning the administrator
2891 * has intentionally turned the weight back to a positive value to
2892 * enable the server again after an operation. In the second case,
2893 * the drain state was forced on the CLI regardless of the config's
2894 * weight so we don't want a change to the config weight to lose this
2895 * status. What this means is :
2896 * - if previous weight was 0 and new one is >0, drop the DRAIN state.
2897 * - if the previous weight was >0, keep it.
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002898 */
Willy Tarreau22cace22016-11-03 18:19:49 +01002899 if (srv_iweight > 0 || srv->iweight == 0)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002900 srv_adm_set_drain(srv);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002901 }
2902
2903 srv->last_change = date.tv_sec - srv_last_time_change;
2904 srv->check.status = srv_check_status;
2905 srv->check.result = srv_check_result;
2906 srv->check.health = srv_check_health;
2907
2908 /* Only case we want to apply is removing ENABLED flag which could have been
2909 * done by the "disable health" command over the stats socket
2910 */
2911 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2912 (srv_check_state & CHK_ST_CONFIGURED) &&
2913 !(srv_check_state & CHK_ST_ENABLED))
2914 srv->check.state &= ~CHK_ST_ENABLED;
2915
2916 /* Only case we want to apply is removing ENABLED flag which could have been
2917 * done by the "disable agent" command over the stats socket
2918 */
2919 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
2920 (srv_agent_state & CHK_ST_CONFIGURED) &&
2921 !(srv_agent_state & CHK_ST_ENABLED))
2922 srv->agent.state &= ~CHK_ST_ENABLED;
2923
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002924 /* We want to apply the previous 'running' weight (srv_uweight) only if there
2925 * was no change in the configuration: both previous and new iweight are equals
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002926 *
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002927 * It means that a configuration file change has precedence over a unix socket change
2928 * for server's weight
2929 *
2930 * by default, HAProxy applies the following weight when parsing the configuration
2931 * srv->uweight = srv->iweight
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002932 */
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002933 if (srv_iweight == srv->iweight) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002934 srv->uweight = srv_uweight;
2935 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002936 server_recalc_eweight(srv);
2937
Willy Tarreaue5a60682016-11-09 14:54:53 +01002938 /* load server IP address */
Daniel Corbett9215ffa2018-05-19 19:43:24 -04002939 if (strcmp(params[0], "-"))
2940 srv->lastaddr = strdup(params[0]);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002941
2942 if (fqdn && srv->hostname) {
2943 if (!strcmp(srv->hostname, fqdn)) {
2944 /* Here we reset the 'set from stats socket FQDN' flag
2945 * to support such transitions:
2946 * Let's say initial FQDN value is foo1 (in configuration file).
2947 * - FQDN changed from stats socket, from foo1 to foo2 value,
2948 * - FQDN changed again from file configuration (with the same previous value
2949 set from stats socket, from foo1 to foo2 value),
2950 * - reload for any other reason than a FQDN modification,
2951 * the configuration file FQDN matches the fqdn server state file value.
2952 * So we must reset the 'set from stats socket FQDN' flag to be consistent with
2953 * any futher FQDN modification.
2954 */
Emeric Brun52a91d32017-08-31 14:41:55 +02002955 srv->next_admin &= ~SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002956 }
2957 else {
2958 /* If the FDQN has been changed from stats socket,
2959 * apply fqdn state file value (which is the value set
2960 * from stats socket).
2961 */
2962 if (fqdn_set_by_cli) {
Olivier Houchardd16bfe62017-10-31 15:21:19 +01002963 srv_set_fqdn(srv, fqdn, 0);
Emeric Brun52a91d32017-08-31 14:41:55 +02002964 srv->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002965 }
2966 }
2967 }
2968
Frédéric Lécaille31694712017-08-01 08:47:19 +02002969 if (port_str)
2970 srv->svc_port = port;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002971 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Frédéric Lécaille31694712017-08-01 08:47:19 +02002972
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002973 break;
2974 default:
2975 chunk_appendf(msg, ", version '%d' not supported", version);
2976 }
2977
2978 out:
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002979 if (msg->len) {
2980 chunk_appendf(msg, "\n");
Christopher Faulet767a84b2017-11-24 16:50:31 +01002981 ha_warning("server-state application failed for server '%s/%s'%s",
2982 srv->proxy->id, srv->id, msg->str);
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002983 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002984}
2985
2986/* This function parses all the proxies and only take care of the backends (since we're looking for server)
2987 * For each proxy, it does the following:
2988 * - opens its server state file (either one or local one)
2989 * - read whole file, line by line
2990 * - analyse each line to check if it matches our current backend:
2991 * - backend name matches
2992 * - backend id matches if id is forced and name doesn't match
2993 * - if the server pointed by the line is found, then state is applied
2994 *
2995 * If the running backend uuid or id differs from the state file, then HAProxy reports
2996 * a warning.
2997 */
2998void apply_server_state(void)
2999{
3000 char *cur, *end;
3001 char mybuf[SRV_STATE_LINE_MAXLEN];
3002 int mybuflen;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003003 char *params[SRV_STATE_FILE_MAX_FIELDS] = {0};
3004 char *srv_params[SRV_STATE_FILE_MAX_FIELDS] = {0};
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003005 int arg, srv_arg, version, diff;
3006 FILE *f;
3007 char *filepath;
3008 char globalfilepath[MAXPATHLEN + 1];
3009 char localfilepath[MAXPATHLEN + 1];
3010 int len, fileopenerr, globalfilepathlen, localfilepathlen;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003011 struct proxy *curproxy, *bk;
3012 struct server *srv;
3013
3014 globalfilepathlen = 0;
3015 /* create the globalfilepath variable */
3016 if (global.server_state_file) {
3017 /* absolute path or no base directory provided */
3018 if ((global.server_state_file[0] == '/') || (!global.server_state_base)) {
3019 len = strlen(global.server_state_file);
3020 if (len > MAXPATHLEN) {
3021 globalfilepathlen = 0;
3022 goto globalfileerror;
3023 }
3024 memcpy(globalfilepath, global.server_state_file, len);
3025 globalfilepath[len] = '\0';
3026 globalfilepathlen = len;
3027 }
3028 else if (global.server_state_base) {
3029 len = strlen(global.server_state_base);
3030 globalfilepathlen += len;
3031
3032 if (globalfilepathlen > MAXPATHLEN) {
3033 globalfilepathlen = 0;
3034 goto globalfileerror;
3035 }
3036 strncpy(globalfilepath, global.server_state_base, len);
3037 globalfilepath[globalfilepathlen] = 0;
3038
3039 /* append a slash if needed */
3040 if (!globalfilepathlen || globalfilepath[globalfilepathlen - 1] != '/') {
3041 if (globalfilepathlen + 1 > MAXPATHLEN) {
3042 globalfilepathlen = 0;
3043 goto globalfileerror;
3044 }
3045 globalfilepath[globalfilepathlen++] = '/';
3046 }
3047
3048 len = strlen(global.server_state_file);
3049 if (globalfilepathlen + len > MAXPATHLEN) {
3050 globalfilepathlen = 0;
3051 goto globalfileerror;
3052 }
3053 memcpy(globalfilepath + globalfilepathlen, global.server_state_file, len);
3054 globalfilepathlen += len;
3055 globalfilepath[globalfilepathlen++] = 0;
3056 }
3057 }
3058 globalfileerror:
3059 if (globalfilepathlen == 0)
3060 globalfilepath[0] = '\0';
3061
3062 /* read servers state from local file */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003063 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003064 /* servers are only in backends */
3065 if (!(curproxy->cap & PR_CAP_BE))
3066 continue;
3067 fileopenerr = 0;
3068 filepath = NULL;
3069
3070 /* search server state file path and name */
3071 switch (curproxy->load_server_state_from_file) {
3072 /* read servers state from global file */
3073 case PR_SRV_STATE_FILE_GLOBAL:
3074 /* there was an error while generating global server state file path */
3075 if (globalfilepathlen == 0)
3076 continue;
3077 filepath = globalfilepath;
3078 fileopenerr = 1;
3079 break;
3080 /* this backend has its own file */
3081 case PR_SRV_STATE_FILE_LOCAL:
3082 localfilepathlen = 0;
3083 localfilepath[0] = '\0';
3084 len = 0;
3085 /* create the localfilepath variable */
3086 /* absolute path or no base directory provided */
3087 if ((curproxy->server_state_file_name[0] == '/') || (!global.server_state_base)) {
3088 len = strlen(curproxy->server_state_file_name);
3089 if (len > MAXPATHLEN) {
3090 localfilepathlen = 0;
3091 goto localfileerror;
3092 }
3093 memcpy(localfilepath, curproxy->server_state_file_name, len);
3094 localfilepath[len] = '\0';
3095 localfilepathlen = len;
3096 }
3097 else if (global.server_state_base) {
3098 len = strlen(global.server_state_base);
3099 localfilepathlen += len;
3100
3101 if (localfilepathlen > MAXPATHLEN) {
3102 localfilepathlen = 0;
3103 goto localfileerror;
3104 }
3105 strncpy(localfilepath, global.server_state_base, len);
3106 localfilepath[localfilepathlen] = 0;
3107
3108 /* append a slash if needed */
3109 if (!localfilepathlen || localfilepath[localfilepathlen - 1] != '/') {
3110 if (localfilepathlen + 1 > MAXPATHLEN) {
3111 localfilepathlen = 0;
3112 goto localfileerror;
3113 }
3114 localfilepath[localfilepathlen++] = '/';
3115 }
3116
3117 len = strlen(curproxy->server_state_file_name);
3118 if (localfilepathlen + len > MAXPATHLEN) {
3119 localfilepathlen = 0;
3120 goto localfileerror;
3121 }
3122 memcpy(localfilepath + localfilepathlen, curproxy->server_state_file_name, len);
3123 localfilepathlen += len;
3124 localfilepath[localfilepathlen++] = 0;
3125 }
3126 filepath = localfilepath;
3127 localfileerror:
3128 if (localfilepathlen == 0)
3129 localfilepath[0] = '\0';
3130
3131 break;
3132 case PR_SRV_STATE_FILE_NONE:
3133 default:
3134 continue;
3135 }
3136
3137 /* preload global state file */
3138 errno = 0;
3139 f = fopen(filepath, "r");
3140 if (errno && fileopenerr)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003141 ha_warning("Can't open server state file '%s': %s\n", filepath, strerror(errno));
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003142 if (!f)
3143 continue;
3144
3145 mybuf[0] = '\0';
3146 mybuflen = 0;
3147 version = 0;
3148
3149 /* first character of first line of the file must contain the version of the export */
Dragan Dosencf4fb032015-11-04 23:03:26 +01003150 if (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003151 ha_warning("Can't read first line of the server state file '%s'\n", filepath);
Dragan Dosencf4fb032015-11-04 23:03:26 +01003152 goto fileclose;
3153 }
3154
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003155 cur = mybuf;
3156 version = atoi(cur);
3157 if ((version < SRV_STATE_FILE_VERSION_MIN) ||
3158 (version > SRV_STATE_FILE_VERSION_MAX))
Dragan Dosencf4fb032015-11-04 23:03:26 +01003159 goto fileclose;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003160
3161 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3162 int bk_f_forced_id = 0;
3163 int check_id = 0;
3164 int check_name = 0;
3165
3166 mybuflen = strlen(mybuf);
3167 cur = mybuf;
3168 end = cur + mybuflen;
3169
3170 bk = NULL;
3171 srv = NULL;
3172
3173 /* we need at least one character */
3174 if (mybuflen == 0)
3175 continue;
3176
3177 /* ignore blank characters at the beginning of the line */
3178 while (isspace(*cur))
3179 ++cur;
3180
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003181 /* Ignore empty or commented lines */
3182 if (cur == end || *cur == '#')
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003183 continue;
3184
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003185 /* truncated lines */
3186 if (mybuf[mybuflen - 1] != '\n') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003187 ha_warning("server-state file '%s': truncated line\n", filepath);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003188 continue;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003189 }
3190
3191 /* Removes trailing '\n' */
3192 mybuf[mybuflen - 1] = '\0';
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003193
3194 /* we're now ready to move the line into *srv_params[] */
3195 params[0] = cur;
3196 arg = 1;
3197 srv_arg = 0;
3198 while (*cur && arg < SRV_STATE_FILE_MAX_FIELDS) {
3199 if (isspace(*cur)) {
3200 *cur = '\0';
3201 ++cur;
3202 while (isspace(*cur))
3203 ++cur;
3204 switch (version) {
3205 case 1:
3206 /*
3207 * srv_addr: params[4] => srv_params[0]
3208 * srv_op_state: params[5] => srv_params[1]
3209 * srv_admin_state: params[6] => srv_params[2]
3210 * srv_uweight: params[7] => srv_params[3]
3211 * srv_iweight: params[8] => srv_params[4]
3212 * srv_last_time_change: params[9] => srv_params[5]
3213 * srv_check_status: params[10] => srv_params[6]
3214 * srv_check_result: params[11] => srv_params[7]
3215 * srv_check_health: params[12] => srv_params[8]
3216 * srv_check_state: params[13] => srv_params[9]
3217 * srv_agent_state: params[14] => srv_params[10]
3218 * bk_f_forced_id: params[15] => srv_params[11]
3219 * srv_f_forced_id: params[16] => srv_params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003220 * srv_fqdn: params[17] => srv_params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02003221 * srv_port: params[18] => srv_params[14]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003222 */
3223 if (arg >= 4) {
3224 srv_params[srv_arg] = cur;
3225 ++srv_arg;
3226 }
3227 break;
3228 }
3229
3230 params[arg] = cur;
3231 ++arg;
3232 }
3233 else {
3234 ++cur;
3235 }
3236 }
3237
3238 /* if line is incomplete line, then ignore it.
3239 * otherwise, update useful flags */
3240 switch (version) {
3241 case 1:
3242 if (arg < SRV_STATE_FILE_NB_FIELDS_VERSION_1)
3243 continue;
3244 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
3245 check_id = (atoi(params[0]) == curproxy->uuid);
3246 check_name = (strcmp(curproxy->id, params[1]) == 0);
3247 break;
3248 }
3249
3250 diff = 0;
3251 bk = curproxy;
3252
3253 /* if backend can't be found, let's continue */
3254 if (!check_id && !check_name)
3255 continue;
3256 else if (!check_id && check_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003257 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 +02003258 send_log(bk, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3259 }
3260 else if (check_id && !check_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003261 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 +02003262 send_log(bk, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3263 /* if name doesn't match, we still want to update curproxy if the backend id
3264 * was forced in previous the previous configuration */
3265 if (!bk_f_forced_id)
3266 continue;
3267 }
3268
3269 /* look for the server by its id: param[2] */
3270 /* else look for the server by its name: param[3] */
3271 diff = 0;
3272 srv = server_find_best_match(bk, params[3], atoi(params[2]), &diff);
3273
3274 if (!srv) {
3275 /* if no server found, then warning and continue with next line */
Christopher Faulet767a84b2017-11-24 16:50:31 +01003276 ha_warning("can't find server '%s' with id '%s' in backend with id '%s' or name '%s'\n",
3277 params[3], params[2], params[0], params[1]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003278 send_log(bk, LOG_NOTICE, "can't find server '%s' with id '%s' in backend with id '%s' or name '%s'\n",
3279 params[3], params[2], params[0], params[1]);
3280 continue;
3281 }
3282 else if (diff & PR_FBM_MISMATCH_ID) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003283 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 +02003284 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 +02003285 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003286 }
3287 else if (diff & PR_FBM_MISMATCH_NAME) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003288 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 +02003289 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 +02003290 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003291 }
3292
3293 /* now we can proceed with server's state update */
3294 srv_update_state(srv, version, srv_params);
3295 }
Dragan Dosencf4fb032015-11-04 23:03:26 +01003296fileclose:
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003297 fclose(f);
3298 }
3299}
3300
Simon Horman7d09b9a2013-02-12 10:45:51 +09003301/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003302 * update a server's current IP address.
3303 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3304 * ip is in network format.
3305 * updater is a string which contains an information about the requester of the update.
3306 * updater is used if not NULL.
3307 *
3308 * A log line and a stderr warning message is generated based on server's backend options.
3309 */
Thierry Fournierd35b7a62016-02-24 08:23:22 +01003310int update_server_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003311{
3312 /* generates a log line and a warning on stderr */
3313 if (1) {
3314 /* book enough space for both IPv4 and IPv6 */
3315 char oldip[INET6_ADDRSTRLEN];
3316 char newip[INET6_ADDRSTRLEN];
3317
3318 memset(oldip, '\0', INET6_ADDRSTRLEN);
3319 memset(newip, '\0', INET6_ADDRSTRLEN);
3320
3321 /* copy old IP address in a string */
3322 switch (s->addr.ss_family) {
3323 case AF_INET:
3324 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3325 break;
3326 case AF_INET6:
3327 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3328 break;
3329 };
3330
3331 /* copy new IP address in a string */
3332 switch (ip_sin_family) {
3333 case AF_INET:
3334 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3335 break;
3336 case AF_INET6:
3337 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3338 break;
3339 };
3340
3341 /* save log line into a buffer */
3342 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3343 s->proxy->id, s->id, oldip, newip, updater);
3344
3345 /* write the buffer on stderr */
Christopher Faulet767a84b2017-11-24 16:50:31 +01003346 ha_warning("%s.\n", trash.str);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003347
3348 /* send a log */
3349 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
3350 }
3351
3352 /* save the new IP family */
3353 s->addr.ss_family = ip_sin_family;
3354 /* save the new IP address */
3355 switch (ip_sin_family) {
3356 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003357 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003358 break;
3359 case AF_INET6:
3360 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3361 break;
3362 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003363 srv_set_dyncookie(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003364
3365 return 0;
3366}
3367
3368/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003369 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3370 *
3371 * Caller can pass its name through <updater> to get it integrated in the response message
3372 * returned by the function.
3373 *
3374 * The function first does the following, in that order:
3375 * - validates the new addr and/or port
3376 * - checks if an update is required (new IP or port is different than current ones)
3377 * - checks the update is allowed:
3378 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3379 * - allow all changes if no CHECKS are configured
3380 * - if CHECK is configured:
3381 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3382 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3383 * conditions are met
3384 */
3385const char *update_server_addr_port(struct server *s, const char *addr, const char *port, char *updater)
3386{
3387 struct sockaddr_storage sa;
3388 int ret, port_change_required;
3389 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003390 uint16_t current_port, new_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003391 struct chunk *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003392 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003393
3394 msg = get_trash_chunk();
3395 chunk_reset(msg);
3396
3397 if (addr) {
3398 memset(&sa, 0, sizeof(struct sockaddr_storage));
3399 if (str2ip2(addr, &sa, 0) == NULL) {
3400 chunk_printf(msg, "Invalid addr '%s'", addr);
3401 goto out;
3402 }
3403
3404 /* changes are allowed on AF_INET* families only */
3405 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3406 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3407 goto out;
3408 }
3409
3410 /* collecting data currently setup */
3411 memset(current_addr, '\0', sizeof(current_addr));
3412 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3413 /* changes are allowed on AF_INET* families only */
3414 if ((ret != AF_INET) && (ret != AF_INET6)) {
3415 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3416 goto out;
3417 }
3418
3419 /* applying ADDR changes if required and allowed
3420 * ipcmp returns 0 when both ADDR are the same
3421 */
3422 if (ipcmp(&s->addr, &sa) == 0) {
3423 chunk_appendf(msg, "no need to change the addr");
3424 goto port;
3425 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003426 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003427 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003428
3429 /* we also need to update check's ADDR only if it uses the server's one */
3430 if ((s->check.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_CHECKADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003431 ipcpy(&sa, &s->check.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003432 }
3433
3434 /* we also need to update agent ADDR only if it use the server's one */
3435 if ((s->agent.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_AGENTADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003436 ipcpy(&sa, &s->agent.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003437 }
3438
3439 /* update report for caller */
3440 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3441 }
3442
3443 port:
3444 if (port) {
3445 char sign = '\0';
3446 char *endptr;
3447
3448 if (addr)
3449 chunk_appendf(msg, ", ");
3450
3451 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003452 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003453
3454 /* check if PORT change is required */
3455 port_change_required = 0;
3456
3457 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003458 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003459 new_port = strtol(port, &endptr, 10);
3460 if ((errno != 0) || (port == endptr)) {
3461 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3462 goto out;
3463 }
3464
3465 /* check if caller triggers a port mapped or offset */
3466 if (sign == '-' || (sign == '+')) {
3467 /* check if server currently uses port map */
3468 if (!(s->flags & SRV_F_MAPPORTS)) {
3469 /* switch from fixed port to port map mandatorily triggers
3470 * a port change */
3471 port_change_required = 1;
3472 /* check is configured
3473 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3474 * prevent PORT change if check doesn't have it's dedicated port while switching
3475 * to port mapping */
3476 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3477 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.");
3478 goto out;
3479 }
3480 }
3481 /* we're already using port maps */
3482 else {
3483 port_change_required = current_port != new_port;
3484 }
3485 }
3486 /* fixed port */
3487 else {
3488 port_change_required = current_port != new_port;
3489 }
3490
3491 /* applying PORT changes if required and update response message */
3492 if (port_change_required) {
3493 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003494 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003495 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003496
3497 /* prepare message */
3498 chunk_appendf(msg, "port changed from '");
3499 if (s->flags & SRV_F_MAPPORTS)
3500 chunk_appendf(msg, "+");
3501 chunk_appendf(msg, "%d' to '", current_port);
3502
3503 if (sign == '-') {
3504 s->flags |= SRV_F_MAPPORTS;
3505 chunk_appendf(msg, "%c", sign);
3506 /* just use for result output */
3507 new_port = -new_port;
3508 }
3509 else if (sign == '+') {
3510 s->flags |= SRV_F_MAPPORTS;
3511 chunk_appendf(msg, "%c", sign);
3512 }
3513 else {
3514 s->flags &= ~SRV_F_MAPPORTS;
3515 }
3516
3517 chunk_appendf(msg, "%d'", new_port);
3518
3519 /* we also need to update health checks port only if it uses server's realport */
3520 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3521 s->check.port = new_port;
3522 }
3523 }
3524 else {
3525 chunk_appendf(msg, "no need to change the port");
3526 }
3527 }
3528
3529out:
Olivier Houchard4e694042017-03-14 20:01:29 +01003530 if (changed)
3531 srv_set_dyncookie(s);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003532 if (updater)
3533 chunk_appendf(msg, " by '%s'", updater);
3534 chunk_appendf(msg, "\n");
3535 return msg->str;
3536}
3537
3538
3539/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003540 * update server status based on result of name resolution
3541 * returns:
3542 * 0 if server status is updated
3543 * 1 if server status has not changed
3544 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003545int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003546{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003547 struct dns_resolvers *resolvers = s->resolvers;
3548 struct dns_resolution *resolution = s->dns_requester->resolution;
3549 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003550
3551 switch (resolution->status) {
3552 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003553 /* status when HAProxy has just (re)started.
3554 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003555 break;
3556
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003557 case RSLV_STATUS_VALID:
3558 /*
3559 * resume health checks
3560 * server will be turned back on if health check is safe
3561 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003562 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003563 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003564 return 1;
3565 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3566 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003567 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003568 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003569
Emeric Brun52a91d32017-08-31 14:41:55 +02003570 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003571 return 1;
3572 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3573 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3574 s->proxy->id, s->id);
3575
Christopher Faulet767a84b2017-11-24 16:50:31 +01003576 ha_warning("%s.\n", trash.str);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003577 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.str);
3578 return 0;
3579
3580 case RSLV_STATUS_NX:
3581 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003582 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3583 if (!tick_is_expired(exp, now_ms))
3584 break;
3585
3586 if (s->next_admin & SRV_ADMF_RMAINT)
3587 return 1;
3588 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3589 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003590
3591 case RSLV_STATUS_TIMEOUT:
3592 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003593 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3594 if (!tick_is_expired(exp, now_ms))
3595 break;
3596
3597 if (s->next_admin & SRV_ADMF_RMAINT)
3598 return 1;
3599 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3600 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003601
3602 case RSLV_STATUS_REFUSED:
3603 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003604 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3605 if (!tick_is_expired(exp, now_ms))
3606 break;
3607
3608 if (s->next_admin & SRV_ADMF_RMAINT)
3609 return 1;
3610 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3611 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003612
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003613 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003614 /* stop server if resolution failed for a long enough period */
3615 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3616 if (!tick_is_expired(exp, now_ms))
3617 break;
3618
3619 if (s->next_admin & SRV_ADMF_RMAINT)
3620 return 1;
3621 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3622 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003623 }
3624
3625 return 1;
3626}
3627
3628/*
3629 * Server Name Resolution valid response callback
3630 * It expects:
3631 * - <nameserver>: the name server which answered the valid response
3632 * - <response>: buffer containing a valid DNS response
3633 * - <response_len>: size of <response>
3634 * It performs the following actions:
3635 * - ignore response if current ip found and server family not met
3636 * - update with first new ip found if family is met and current IP is not found
3637 * returns:
3638 * 0 on error
3639 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003640 *
3641 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003642 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003643int snr_resolution_cb(struct dns_requester *requester, struct dns_nameserver *nameserver)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003644{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003645 struct server *s = NULL;
3646 struct dns_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003647 void *serverip, *firstip;
3648 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003649 int ret;
3650 struct chunk *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003651 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003652
Christopher Faulet67957bd2017-09-27 11:00:59 +02003653 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003654 if (!s)
3655 return 1;
3656
Christopher Faulet67957bd2017-09-27 11:00:59 +02003657 resolution = s->dns_requester->resolution;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003658
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003659 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003660 firstip = NULL; /* pointer to the first valid response found */
3661 /* it will be used as the new IP if a change is required */
3662 firstip_sin_family = AF_UNSPEC;
3663 serverip = NULL; /* current server IP address */
3664
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003665 /* initializing server IP pointer */
3666 server_sin_family = s->addr.ss_family;
3667 switch (server_sin_family) {
3668 case AF_INET:
3669 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3670 break;
3671
3672 case AF_INET6:
3673 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3674 break;
3675
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003676 case AF_UNSPEC:
3677 break;
3678
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003679 default:
3680 goto invalid;
3681 }
3682
Baptiste Assmann729c9012017-05-22 15:13:10 +02003683 ret = dns_get_ip_from_response(&resolution->response, &s->dns_opts,
Thierry Fournierada34842016-02-17 21:25:09 +01003684 serverip, server_sin_family, &firstip,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003685 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003686
3687 switch (ret) {
3688 case DNS_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003689 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003690
3691 case DNS_UPD_SRVIP_NOT_FOUND:
3692 goto save_ip;
3693
3694 case DNS_UPD_CNAME:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003695 goto invalid;
3696
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003697 case DNS_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003698 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003699 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003700
Baptiste Assmannfad03182015-10-28 02:03:32 +01003701 case DNS_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003702 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003703 resolution->status = RSLV_STATUS_OTHER;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003704 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003705
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003706 default:
3707 goto invalid;
3708
3709 }
3710
3711 save_ip:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003712 if (nameserver) {
3713 nameserver->counters.update++;
3714 /* save the first ip we found */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003715 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003716 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003717 else
3718 chunk_printf(chk, "DNS cache");
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003719 update_server_addr(s, firstip, firstip_sin_family, (char *)chk->str);
3720
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003721 update_status:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003722 snr_update_srv_status(s, has_no_ip);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003723 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003724
3725 invalid:
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003726 if (nameserver) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02003727 nameserver->counters.invalid++;
3728 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003729 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003730 snr_update_srv_status(s, has_no_ip);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003731 return 0;
3732}
3733
3734/*
3735 * Server Name Resolution error management callback
3736 * returns:
3737 * 0 on error
3738 * 1 when no error or safe ignore
3739 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003740int snr_resolution_error_cb(struct dns_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003741{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003742 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003743
Christopher Faulet67957bd2017-09-27 11:00:59 +02003744 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003745 if (!s)
3746 return 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003747 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003748 snr_update_srv_status(s, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003749 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003750 return 1;
3751}
3752
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003753/*
3754 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003755 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003756 * It returns a pointer to the first server found or NULL if <ip> is not yet
3757 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003758 *
3759 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003760 */
3761struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3762{
3763 struct server *tmpsrv;
3764 struct proxy *be;
3765
3766 if (!srv)
3767 return NULL;
3768
3769 be = srv->proxy;
3770 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003771 /* we found the current server is the same, ignore it */
3772 if (srv == tmpsrv)
3773 continue;
3774
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003775 /* We want to compare the IP in the record with the IP of the servers in the
3776 * same backend, only if:
3777 * * DNS resolution is enabled on the server
3778 * * the hostname used for the resolution by our server is the same than the
3779 * one used for the server found in the backend
3780 * * the server found in the backend is not our current server
3781 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003782 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003783 if ((tmpsrv->hostname_dn == NULL) ||
3784 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
3785 (strcmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01003786 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003787 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003788 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003789 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003790
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003791 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01003792 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003793 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003794 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003795 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003796
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003797 /* At this point, we have 2 different servers using the same DNS hostname
3798 * for their respective resolution.
3799 */
3800 if (*ip_family == tmpsrv->addr.ss_family &&
3801 ((tmpsrv->addr.ss_family == AF_INET &&
3802 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
3803 (tmpsrv->addr.ss_family == AF_INET6 &&
3804 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003805 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003806 return tmpsrv;
3807 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003808 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003809 }
3810
Emeric Brune9fd6b52017-11-02 17:20:39 +01003811
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003812 return NULL;
3813}
3814
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003815/* Sets the server's address (srv->addr) from srv->hostname using the libc's
3816 * resolver. This is suited for initial address configuration. Returns 0 on
3817 * success otherwise a non-zero error code. In case of error, *err_code, if
3818 * not NULL, is filled up.
3819 */
3820int srv_set_addr_via_libc(struct server *srv, int *err_code)
3821{
3822 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003823 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01003824 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003825 return 1;
3826 }
3827 return 0;
3828}
3829
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003830/* Set the server's FDQN (->hostname) from <hostname>.
3831 * Returns -1 if failed, 0 if not.
3832 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01003833int srv_set_fqdn(struct server *srv, const char *hostname, int dns_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003834{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003835 struct dns_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003836 char *hostname_dn;
3837 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003838
Olivier Houchardd16bfe62017-10-31 15:21:19 +01003839 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003840 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003841 /* run time DNS resolution was not active for this server
3842 * and we can't enable it at run time for now.
3843 */
3844 if (!srv->dns_requester)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003845 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003846
3847 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003848 hostname_len = strlen(hostname);
3849 hostname_dn = trash.str;
3850 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
3851 hostname_dn, trash.size);
3852 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003853 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003854
Christopher Faulet67957bd2017-09-27 11:00:59 +02003855 resolution = srv->dns_requester->resolution;
3856 if (resolution &&
3857 resolution->hostname_dn &&
3858 !strcmp(resolution->hostname_dn, hostname_dn))
Christopher Fauletb2812a62017-10-04 16:17:58 +02003859 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003860
Christopher Faulet67957bd2017-09-27 11:00:59 +02003861 dns_unlink_resolution(srv->dns_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003862
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003863 free(srv->hostname);
3864 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003865 srv->hostname = strdup(hostname);
3866 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003867 srv->hostname_dn_len = hostname_dn_len;
3868 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003869 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003870
Olivier Houchard55dcdf42017-11-06 15:15:04 +01003871 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003872 goto err;
3873
3874 end:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01003875 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003876 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003877 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02003878
3879 err:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01003880 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003881 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02003882 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003883}
3884
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003885/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
3886 * from the state file. This is suited for initial address configuration.
3887 * Returns 0 on success otherwise a non-zero error code. In case of error,
3888 * *err_code, if not NULL, is filled up.
3889 */
3890static int srv_apply_lastaddr(struct server *srv, int *err_code)
3891{
3892 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
3893 if (err_code)
3894 *err_code |= ERR_WARN;
3895 return 1;
3896 }
3897 return 0;
3898}
3899
Willy Tarreau25e51522016-11-04 15:10:17 +01003900/* returns 0 if no error, otherwise a combination of ERR_* flags */
3901static int srv_iterate_initaddr(struct server *srv)
3902{
3903 int return_code = 0;
3904 int err_code;
3905 unsigned int methods;
3906
3907 methods = srv->init_addr_methods;
3908 if (!methods) { // default to "last,libc"
3909 srv_append_initaddr(&methods, SRV_IADDR_LAST);
3910 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
3911 }
3912
Willy Tarreau3eed10e2016-11-07 21:03:16 +01003913 /* "-dr" : always append "none" so that server addresses resolution
3914 * failures are silently ignored, this is convenient to validate some
3915 * configs out of their environment.
3916 */
3917 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
3918 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3919
Willy Tarreau25e51522016-11-04 15:10:17 +01003920 while (methods) {
3921 err_code = 0;
3922 switch (srv_get_next_initaddr(&methods)) {
3923 case SRV_IADDR_LAST:
3924 if (!srv->lastaddr)
3925 continue;
3926 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003927 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003928 return_code |= err_code;
3929 break;
3930
3931 case SRV_IADDR_LIBC:
3932 if (!srv->hostname)
3933 continue;
3934 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003935 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003936 return_code |= err_code;
3937 break;
3938
Willy Tarreau37ebe122016-11-04 15:17:58 +01003939 case SRV_IADDR_NONE:
3940 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003941 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003942 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
3943 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003944 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01003945 return return_code;
3946
Willy Tarreau4310d362016-11-02 15:05:56 +01003947 case SRV_IADDR_IP:
3948 ipcpy(&srv->init_addr, &srv->addr);
3949 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003950 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', falling back to configured address.\n",
3951 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
Willy Tarreau4310d362016-11-02 15:05:56 +01003952 }
Olivier Houchard4e694042017-03-14 20:01:29 +01003953 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01003954
Willy Tarreau25e51522016-11-04 15:10:17 +01003955 default: /* unhandled method */
3956 break;
3957 }
3958 }
3959
3960 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003961 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Willy Tarreau25e51522016-11-04 15:10:17 +01003962 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
3963 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01003964 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003965 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Willy Tarreau465b6e52016-11-07 19:19:22 +01003966 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
3967 }
Willy Tarreau25e51522016-11-04 15:10:17 +01003968
3969 return_code |= ERR_ALERT | ERR_FATAL;
3970 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01003971out:
3972 srv_set_dyncookie(srv);
3973 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01003974}
3975
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003976/*
3977 * This function parses all backends and all servers within each backend
3978 * and performs servers' addr resolution based on information provided by:
3979 * - configuration file
3980 * - server-state file (states provided by an 'old' haproxy process)
3981 *
3982 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
3983 */
3984int srv_init_addr(void)
3985{
3986 struct proxy *curproxy;
3987 int return_code = 0;
3988
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003989 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003990 while (curproxy) {
3991 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003992
3993 /* servers are in backend only */
3994 if (!(curproxy->cap & PR_CAP_BE))
3995 goto srv_init_addr_next;
3996
Willy Tarreau25e51522016-11-04 15:10:17 +01003997 for (srv = curproxy->srv; srv; srv = srv->next)
Willy Tarreau3d609a72017-09-06 14:22:45 +02003998 if (srv->hostname)
3999 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004000
4001 srv_init_addr_next:
4002 curproxy = curproxy->next;
4003 }
4004
4005 return return_code;
4006}
4007
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004008const 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 +02004009{
4010
4011 struct chunk *msg;
4012
4013 msg = get_trash_chunk();
4014 chunk_reset(msg);
4015
Olivier Houchard8da5f982017-08-04 18:35:36 +02004016 if (server->hostname && !strcmp(fqdn, server->hostname)) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004017 chunk_appendf(msg, "no need to change the FDQN");
4018 goto out;
4019 }
4020
4021 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4022 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4023 goto out;
4024 }
4025
4026 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4027 server->proxy->id, server->id, server->hostname, fqdn);
4028
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004029 if (srv_set_fqdn(server, fqdn, dns_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004030 chunk_reset(msg);
4031 chunk_appendf(msg, "could not update %s/%s FQDN",
4032 server->proxy->id, server->id);
4033 goto out;
4034 }
4035
4036 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004037 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004038
4039 out:
4040 if (updater)
4041 chunk_appendf(msg, " by '%s'", updater);
4042 chunk_appendf(msg, "\n");
4043
4044 return msg->str;
4045}
4046
4047
Willy Tarreau21b069d2016-11-23 17:15:08 +01004048/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4049 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004050 * 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 +01004051 * used for CLI commands requiring a server name.
4052 * Important: the <arg> is modified to remove the '/'.
4053 */
4054struct server *cli_find_server(struct appctx *appctx, char *arg)
4055{
4056 struct proxy *px;
4057 struct server *sv;
4058 char *line;
4059
4060 /* split "backend/server" and make <line> point to server */
4061 for (line = arg; *line; line++)
4062 if (*line == '/') {
4063 *line++ = '\0';
4064 break;
4065 }
4066
4067 if (!*line || !*arg) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004068 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004069 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004070 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004071 return NULL;
4072 }
4073
4074 if (!get_backend_server(arg, line, &px, &sv)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004075 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004076 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004077 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004078 return NULL;
4079 }
4080
4081 if (px->state == PR_STSTOPPED) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004082 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004083 appctx->ctx.cli.msg = "Proxy is disabled.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004084 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau21b069d2016-11-23 17:15:08 +01004085 return NULL;
4086 }
4087
4088 return sv;
4089}
4090
William Lallemand222baf22016-11-19 02:00:33 +01004091
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004092static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004093{
4094 struct server *sv;
4095 const char *warning;
4096
4097 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4098 return 1;
4099
4100 sv = cli_find_server(appctx, args[2]);
4101 if (!sv)
4102 return 1;
4103
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004104 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02004105
William Lallemand222baf22016-11-19 02:00:33 +01004106 if (strcmp(args[3], "weight") == 0) {
4107 warning = server_parse_weight_change_request(sv, args[4]);
4108 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004109 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004110 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004111 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004112 }
4113 }
4114 else if (strcmp(args[3], "state") == 0) {
4115 if (strcmp(args[4], "ready") == 0)
4116 srv_adm_set_ready(sv);
4117 else if (strcmp(args[4], "drain") == 0)
4118 srv_adm_set_drain(sv);
4119 else if (strcmp(args[4], "maint") == 0)
4120 srv_adm_set_maint(sv);
4121 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004122 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004123 appctx->ctx.cli.msg = "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004124 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004125 }
4126 }
4127 else if (strcmp(args[3], "health") == 0) {
4128 if (sv->track) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004129 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004130 appctx->ctx.cli.msg = "cannot change health on a tracking server.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004131 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004132 }
4133 else if (strcmp(args[4], "up") == 0) {
4134 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004135 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004136 }
4137 else if (strcmp(args[4], "stopping") == 0) {
4138 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004139 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004140 }
4141 else if (strcmp(args[4], "down") == 0) {
4142 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004143 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004144 }
4145 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004146 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004147 appctx->ctx.cli.msg = "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004148 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004149 }
4150 }
4151 else if (strcmp(args[3], "agent") == 0) {
4152 if (!(sv->agent.state & CHK_ST_ENABLED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004153 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004154 appctx->ctx.cli.msg = "agent checks are not enabled on this server.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004155 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004156 }
4157 else if (strcmp(args[4], "up") == 0) {
4158 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004159 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004160 }
4161 else if (strcmp(args[4], "down") == 0) {
4162 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004163 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004164 }
4165 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004166 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004167 appctx->ctx.cli.msg = "'set server <srv> agent' expects 'up' or 'down'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004168 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004169 }
4170 }
Misiek2da082d2017-01-09 09:40:42 +01004171 else if (strcmp(args[3], "agent-addr") == 0) {
4172 if (!(sv->agent.state & CHK_ST_ENABLED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004173 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004174 appctx->ctx.cli.msg = "agent checks are not enabled on this server.\n";
4175 appctx->st0 = CLI_ST_PRINT;
4176 } else {
4177 if (str2ip(args[4], &sv->agent.addr) == NULL) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004178 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004179 appctx->ctx.cli.msg = "incorrect addr address given for agent.\n";
4180 appctx->st0 = CLI_ST_PRINT;
4181 }
4182 }
4183 }
4184 else if (strcmp(args[3], "agent-send") == 0) {
4185 if (!(sv->agent.state & CHK_ST_ENABLED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004186 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004187 appctx->ctx.cli.msg = "agent checks are not enabled on this server.\n";
4188 appctx->st0 = CLI_ST_PRINT;
4189 } else {
4190 char *nss = strdup(args[4]);
4191 if (!nss) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004192 appctx->ctx.cli.severity = LOG_ERR;
Misiek2da082d2017-01-09 09:40:42 +01004193 appctx->ctx.cli.msg = "cannot allocate memory for new string.\n";
4194 appctx->st0 = CLI_ST_PRINT;
4195 } else {
4196 free(sv->agent.send_string);
4197 sv->agent.send_string = nss;
4198 sv->agent.send_string_len = strlen(args[4]);
4199 }
4200 }
4201 }
William Lallemand222baf22016-11-19 02:00:33 +01004202 else if (strcmp(args[3], "check-port") == 0) {
4203 int i = 0;
4204 if (strl2irc(args[4], strlen(args[4]), &i) != 0) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004205 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004206 appctx->ctx.cli.msg = "'set server <srv> check-port' expects an integer as argument.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004207 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004208 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004209 }
4210 if ((i < 0) || (i > 65535)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004211 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004212 appctx->ctx.cli.msg = "provided port is not valid.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004213 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004214 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004215 }
4216 /* prevent the update of port to 0 if MAPPORTS are in use */
4217 if ((sv->flags & SRV_F_MAPPORTS) && (i == 0)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004218 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand222baf22016-11-19 02:00:33 +01004219 appctx->ctx.cli.msg = "can't unset 'port' since MAPPORTS is in use.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004220 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004221 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004222 }
4223 sv->check.port = i;
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004224 appctx->ctx.cli.severity = LOG_NOTICE;
William Lallemand222baf22016-11-19 02:00:33 +01004225 appctx->ctx.cli.msg = "health check port updated.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004226 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004227 }
4228 else if (strcmp(args[3], "addr") == 0) {
4229 char *addr = NULL;
4230 char *port = NULL;
4231 if (strlen(args[4]) == 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 <b>/<s> addr requires an address and optionally a port.\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 else {
4238 addr = args[4];
4239 }
4240 if (strcmp(args[5], "port") == 0) {
4241 port = args[6];
4242 }
4243 warning = update_server_addr_port(sv, addr, port, "stats socket command");
4244 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004245 appctx->ctx.cli.severity = LOG_WARNING;
William Lallemand222baf22016-11-19 02:00:33 +01004246 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004247 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004248 }
4249 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
4250 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004251 else if (strcmp(args[3], "fqdn") == 0) {
4252 if (!*args[4]) {
Willy Tarreaua0752582017-11-05 10:17:49 +01004253 appctx->ctx.cli.severity = LOG_ERR;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004254 appctx->ctx.cli.msg = "set server <b>/<s> fqdn requires a FQDN.\n";
4255 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004256 goto out_unlock;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004257 }
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004258 warning = update_server_fqdn(sv, args[4], "stats socket command", 0);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004259 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004260 appctx->ctx.cli.severity = LOG_WARNING;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004261 appctx->ctx.cli.msg = warning;
4262 appctx->st0 = CLI_ST_PRINT;
4263 }
4264 }
William Lallemand222baf22016-11-19 02:00:33 +01004265 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004266 appctx->ctx.cli.severity = LOG_ERR;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004267 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 +01004268 appctx->st0 = CLI_ST_PRINT;
William Lallemand222baf22016-11-19 02:00:33 +01004269 }
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004270 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004271 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004272 return 1;
4273}
4274
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004275static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004276{
4277 struct stream_interface *si = appctx->owner;
4278 struct proxy *px;
4279 struct server *sv;
4280 char *line;
4281
4282
4283 /* split "backend/server" and make <line> point to server */
4284 for (line = args[2]; *line; line++)
4285 if (*line == '/') {
4286 *line++ = '\0';
4287 break;
4288 }
4289
4290 if (!*line) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004291 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand6b160942016-11-22 12:34:35 +01004292 appctx->ctx.cli.msg = "Require 'backend/server'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004293 appctx->st0 = CLI_ST_PRINT;
William Lallemand6b160942016-11-22 12:34:35 +01004294 return 1;
4295 }
4296
4297 if (!get_backend_server(args[2], line, &px, &sv)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004298 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand6b160942016-11-22 12:34:35 +01004299 appctx->ctx.cli.msg = px ? "No such server.\n" : "No such backend.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004300 appctx->st0 = CLI_ST_PRINT;
William Lallemand6b160942016-11-22 12:34:35 +01004301 return 1;
4302 }
4303
4304 /* return server's effective weight at the moment */
4305 snprintf(trash.str, trash.size, "%d (initial %d)\n", sv->uweight, sv->iweight);
Willy Tarreau06d80a92017-10-19 14:32:15 +02004306 if (ci_putstr(si_ic(si), trash.str) == -1) {
William Lallemand6b160942016-11-22 12:34:35 +01004307 si_applet_cant_put(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004308 return 0;
4309 }
William Lallemand6b160942016-11-22 12:34:35 +01004310 return 1;
4311}
4312
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004313static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004314{
4315 struct server *sv;
4316 const char *warning;
4317
4318 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4319 return 1;
4320
4321 sv = cli_find_server(appctx, args[2]);
4322 if (!sv)
4323 return 1;
4324
4325 warning = server_parse_weight_change_request(sv, args[3]);
4326 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004327 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand6b160942016-11-22 12:34:35 +01004328 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004329 appctx->st0 = CLI_ST_PRINT;
William Lallemand6b160942016-11-22 12:34:35 +01004330 }
4331 return 1;
4332}
4333
Willy Tarreaub8026272016-11-23 11:26:56 +01004334/* parse a "set maxconn server" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004335static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004336{
4337 struct server *sv;
4338 const char *warning;
4339
4340 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4341 return 1;
4342
4343 sv = cli_find_server(appctx, args[3]);
4344 if (!sv)
4345 return 1;
4346
4347 warning = server_parse_maxconn_change_request(sv, args[4]);
4348 if (warning) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004349 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreaub8026272016-11-23 11:26:56 +01004350 appctx->ctx.cli.msg = warning;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004351 appctx->st0 = CLI_ST_PRINT;
Willy Tarreaub8026272016-11-23 11:26:56 +01004352 }
4353 return 1;
4354}
William Lallemand6b160942016-11-22 12:34:35 +01004355
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004356/* parse a "disable agent" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004357static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004358{
4359 struct server *sv;
4360
4361 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4362 return 1;
4363
4364 sv = cli_find_server(appctx, args[2]);
4365 if (!sv)
4366 return 1;
4367
4368 sv->agent.state &= ~CHK_ST_ENABLED;
4369 return 1;
4370}
4371
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004372/* parse a "disable health" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004373static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004374{
4375 struct server *sv;
4376
4377 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4378 return 1;
4379
4380 sv = cli_find_server(appctx, args[2]);
4381 if (!sv)
4382 return 1;
4383
4384 sv->check.state &= ~CHK_ST_ENABLED;
4385 return 1;
4386}
4387
Willy Tarreauffb4d582016-11-24 12:47:00 +01004388/* parse a "disable server" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004389static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004390{
4391 struct server *sv;
4392
4393 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4394 return 1;
4395
4396 sv = cli_find_server(appctx, args[2]);
4397 if (!sv)
4398 return 1;
4399
4400 srv_adm_set_maint(sv);
4401 return 1;
4402}
4403
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004404/* parse a "enable agent" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004405static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004406{
4407 struct server *sv;
4408
4409 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4410 return 1;
4411
4412 sv = cli_find_server(appctx, args[2]);
4413 if (!sv)
4414 return 1;
4415
4416 if (!(sv->agent.state & CHK_ST_CONFIGURED)) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02004417 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004418 appctx->ctx.cli.msg = "Agent was not configured on this server, cannot enable.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004419 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004420 return 1;
4421 }
4422
4423 sv->agent.state |= CHK_ST_ENABLED;
4424 return 1;
4425}
4426
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004427/* parse a "enable health" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004428static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004429{
4430 struct server *sv;
4431
4432 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4433 return 1;
4434
4435 sv = cli_find_server(appctx, args[2]);
4436 if (!sv)
4437 return 1;
4438
4439 sv->check.state |= CHK_ST_ENABLED;
4440 return 1;
4441}
4442
Willy Tarreauffb4d582016-11-24 12:47:00 +01004443/* parse a "enable server" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004444static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004445{
4446 struct server *sv;
4447
4448 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4449 return 1;
4450
4451 sv = cli_find_server(appctx, args[2]);
4452 if (!sv)
4453 return 1;
4454
4455 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004456 if (!(sv->flags & SRV_F_COOKIESET)
4457 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4458 sv->cookie)
4459 srv_check_for_dup_dyncookie(sv);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004460 return 1;
4461}
4462
William Lallemand222baf22016-11-19 02:00:33 +01004463/* register cli keywords */
4464static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004465 { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004466 { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004467 { { "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 +01004468 { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004469 { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004470 { { "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 +01004471 { { "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 +01004472 { { "set", "server", NULL }, "set server : change a server's state, weight or address", cli_parse_set_server },
William Lallemand6b160942016-11-22 12:34:35 +01004473 { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight },
4474 { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight },
4475
William Lallemand222baf22016-11-19 02:00:33 +01004476 {{},}
4477}};
4478
4479__attribute__((constructor))
4480static void __server_init(void)
4481{
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004482 HA_SPIN_INIT(&updated_servers_lock);
William Lallemand222baf22016-11-19 02:00:33 +01004483 cli_register_kw(&cli_kws);
4484}
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004485
Emeric Brun64cc49c2017-10-03 14:46:45 +02004486/*
4487 * This function applies server's status changes, it is
4488 * is designed to be called asynchronously.
4489 *
4490 */
4491void srv_update_status(struct server *s)
4492{
4493 struct check *check = &s->check;
4494 int xferred;
4495 struct proxy *px = s->proxy;
4496 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4497 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4498 int log_level;
4499 struct chunk *tmptrash = NULL;
4500
4501
4502 /* If currently main is not set we try to apply pending state changes */
4503 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4504 int next_admin;
4505
4506 /* Backup next admin */
4507 next_admin = s->next_admin;
4508
4509 /* restore current admin state */
4510 s->next_admin = s->cur_admin;
4511
4512 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4513 s->last_change = now.tv_sec;
4514 if (s->proxy->lbprm.set_server_status_down)
4515 s->proxy->lbprm.set_server_status_down(s);
4516
4517 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4518 srv_shutdown_streams(s, SF_ERR_DOWN);
4519
4520 /* we might have streams queued on this server and waiting for
4521 * a connection. Those which are redispatchable will be queued
4522 * to another server or to the proxy itself.
4523 */
4524 xferred = pendconn_redistribute(s);
4525
4526 tmptrash = alloc_trash_chunk();
4527 if (tmptrash) {
4528 chunk_printf(tmptrash,
4529 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4530 s->proxy->id, s->id);
4531
Emeric Brun5a133512017-10-19 14:42:30 +02004532 srv_append_status(tmptrash, s, NULL, xferred, 0);
Christopher Faulet767a84b2017-11-24 16:50:31 +01004533 ha_warning("%s.\n", tmptrash->str);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004534
4535 /* we don't send an alert if the server was previously paused */
4536 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
4537 send_log(s->proxy, log_level, "%s.\n", tmptrash->str);
4538 send_email_alert(s, log_level, "%s", tmptrash->str);
4539 free_trash_chunk(tmptrash);
4540 tmptrash = NULL;
4541 }
4542 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4543 set_backend_down(s->proxy);
4544
4545 s->counters.down_trans++;
4546 }
4547 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4548 s->last_change = now.tv_sec;
4549 if (s->proxy->lbprm.set_server_status_down)
4550 s->proxy->lbprm.set_server_status_down(s);
4551
4552 /* we might have streams queued on this server and waiting for
4553 * a connection. Those which are redispatchable will be queued
4554 * to another server or to the proxy itself.
4555 */
4556 xferred = pendconn_redistribute(s);
4557
4558 tmptrash = alloc_trash_chunk();
4559 if (tmptrash) {
4560 chunk_printf(tmptrash,
4561 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4562 s->proxy->id, s->id);
4563
Emeric Brun5a133512017-10-19 14:42:30 +02004564 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004565
Christopher Faulet767a84b2017-11-24 16:50:31 +01004566 ha_warning("%s.\n", tmptrash->str);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004567 send_log(s->proxy, LOG_NOTICE, "%s.\n", tmptrash->str);
4568 free_trash_chunk(tmptrash);
4569 tmptrash = NULL;
4570 }
4571
4572 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4573 set_backend_down(s->proxy);
4574 }
4575 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4576 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4577 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4578 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4579 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4580 s->proxy->last_change = now.tv_sec;
4581 }
4582
4583 if (s->next_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
4584 s->down_time += now.tv_sec - s->last_change;
4585
4586 s->last_change = now.tv_sec;
4587 if (s->next_state == SRV_ST_STARTING)
4588 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4589
4590 server_recalc_eweight(s);
4591 /* now propagate the status change to any LB algorithms */
4592 if (px->lbprm.update_server_eweight)
4593 px->lbprm.update_server_eweight(s);
4594 else if (srv_willbe_usable(s)) {
4595 if (px->lbprm.set_server_status_up)
4596 px->lbprm.set_server_status_up(s);
4597 }
4598 else {
4599 if (px->lbprm.set_server_status_down)
4600 px->lbprm.set_server_status_down(s);
4601 }
4602
4603 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4604 * and it's not a backup server and its effective weight is > 0,
4605 * then it can accept new connections, so we shut down all streams
4606 * on all backup servers.
4607 */
4608 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4609 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4610 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4611
4612 /* check if we can handle some connections queued at the proxy. We
4613 * will take as many as we can handle.
4614 */
4615 xferred = pendconn_grab_from_px(s);
4616
4617 tmptrash = alloc_trash_chunk();
4618 if (tmptrash) {
4619 chunk_printf(tmptrash,
4620 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
4621 s->proxy->id, s->id);
4622
Emeric Brun5a133512017-10-19 14:42:30 +02004623 srv_append_status(tmptrash, s, NULL, xferred, 0);
Christopher Faulet767a84b2017-11-24 16:50:31 +01004624 ha_warning("%s.\n", tmptrash->str);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004625 send_log(s->proxy, LOG_NOTICE, "%s.\n", tmptrash->str);
4626 send_email_alert(s, LOG_NOTICE, "%s", tmptrash->str);
4627 free_trash_chunk(tmptrash);
4628 tmptrash = NULL;
4629 }
4630
4631 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4632 set_backend_down(s->proxy);
4633 }
4634 else if (s->cur_eweight != s->next_eweight) {
4635 /* now propagate the status change to any LB algorithms */
4636 if (px->lbprm.update_server_eweight)
4637 px->lbprm.update_server_eweight(s);
4638 else if (srv_willbe_usable(s)) {
4639 if (px->lbprm.set_server_status_up)
4640 px->lbprm.set_server_status_up(s);
4641 }
4642 else {
4643 if (px->lbprm.set_server_status_down)
4644 px->lbprm.set_server_status_down(s);
4645 }
4646
4647 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4648 set_backend_down(s->proxy);
4649 }
4650
4651 s->next_admin = next_admin;
4652 }
4653
Emeric Brun5a133512017-10-19 14:42:30 +02004654 /* reset operational state change */
4655 *s->op_st_chg.reason = 0;
4656 s->op_st_chg.status = s->op_st_chg.code = -1;
4657 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004658
4659 /* Now we try to apply pending admin changes */
4660
4661 /* Maintenance must also disable health checks */
4662 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
4663 if (s->check.state & CHK_ST_ENABLED) {
4664 s->check.state |= CHK_ST_PAUSED;
4665 check->health = 0;
4666 }
4667
4668 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02004669 tmptrash = alloc_trash_chunk();
4670 if (tmptrash) {
4671 chunk_printf(tmptrash,
4672 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
4673 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4674 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02004675
Olivier Houchard796a2b32017-10-24 17:42:47 +02004676 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02004677
Olivier Houchard796a2b32017-10-24 17:42:47 +02004678 if (!(global.mode & MODE_STARTING)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004679 ha_warning("%s.\n", tmptrash->str);
Olivier Houchard796a2b32017-10-24 17:42:47 +02004680 send_log(s->proxy, LOG_NOTICE, "%s.\n", tmptrash->str);
4681 }
4682 free_trash_chunk(tmptrash);
4683 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004684 }
Emeric Brun8f298292017-12-06 16:47:17 +01004685 /* commit new admin status */
4686
4687 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004688 }
4689 else { /* server was still running */
4690 check->health = 0; /* failure */
4691 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01004692
4693 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004694 if (s->proxy->lbprm.set_server_status_down)
4695 s->proxy->lbprm.set_server_status_down(s);
4696
Emeric Brun64cc49c2017-10-03 14:46:45 +02004697 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4698 srv_shutdown_streams(s, SF_ERR_DOWN);
4699
4700 /* we might have streams queued on this server and waiting for
4701 * a connection. Those which are redispatchable will be queued
4702 * to another server or to the proxy itself.
4703 */
4704 xferred = pendconn_redistribute(s);
4705
4706 tmptrash = alloc_trash_chunk();
4707 if (tmptrash) {
4708 chunk_printf(tmptrash,
4709 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
4710 s->flags & SRV_F_BACKUP ? "Backup " : "",
4711 s->proxy->id, s->id,
4712 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
4713
4714 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
4715
4716 if (!(global.mode & MODE_STARTING)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004717 ha_warning("%s.\n", tmptrash->str);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004718 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n", tmptrash->str);
4719 }
4720 free_trash_chunk(tmptrash);
4721 tmptrash = NULL;
4722 }
4723 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4724 set_backend_down(s->proxy);
4725
4726 s->counters.down_trans++;
4727 }
4728 }
4729 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
4730 /* OK here we're leaving maintenance, we have many things to check,
4731 * because the server might possibly be coming back up depending on
4732 * its state. In practice, leaving maintenance means that we should
4733 * immediately turn to UP (more or less the slowstart) under the
4734 * following conditions :
4735 * - server is neither checked nor tracked
4736 * - server tracks another server which is not checked
4737 * - server tracks another server which is already up
4738 * Which sums up as something simpler :
4739 * "either the tracking server is up or the server's checks are disabled
4740 * or up". Otherwise we only re-enable health checks. There's a special
4741 * case associated to the stopping state which can be inherited. Note
4742 * that the server might still be in drain mode, which is naturally dealt
4743 * with by the lower level functions.
4744 */
4745
4746 if (s->check.state & CHK_ST_ENABLED) {
4747 s->check.state &= ~CHK_ST_PAUSED;
4748 check->health = check->rise; /* start OK but check immediately */
4749 }
4750
4751 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
4752 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
4753 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
4754 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
4755 s->next_state = SRV_ST_STOPPING;
4756 }
4757 else {
4758 s->next_state = SRV_ST_STARTING;
4759 if (s->slowstart > 0)
4760 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4761 else
4762 s->next_state = SRV_ST_RUNNING;
4763 }
4764
4765 }
4766
4767 tmptrash = alloc_trash_chunk();
4768 if (tmptrash) {
4769 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
4770 chunk_printf(tmptrash,
4771 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
4772 s->flags & SRV_F_BACKUP ? "Backup " : "",
4773 s->proxy->id, s->id,
4774 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4775 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4776 }
4777 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
4778 chunk_printf(tmptrash,
4779 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
4780 s->flags & SRV_F_BACKUP ? "Backup " : "",
4781 s->proxy->id, s->id, s->hostname,
4782 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4783 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4784 }
4785 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
4786 chunk_printf(tmptrash,
4787 "%sServer %s/%s is %s/%s (leaving maintenance)",
4788 s->flags & SRV_F_BACKUP ? "Backup " : "",
4789 s->proxy->id, s->id,
4790 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4791 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4792 }
Christopher Faulet767a84b2017-11-24 16:50:31 +01004793 ha_warning("%s.\n", tmptrash->str);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004794 send_log(s->proxy, LOG_NOTICE, "%s.\n", tmptrash->str);
4795 free_trash_chunk(tmptrash);
4796 tmptrash = NULL;
4797 }
4798
4799 server_recalc_eweight(s);
4800 /* now propagate the status change to any LB algorithms */
4801 if (px->lbprm.update_server_eweight)
4802 px->lbprm.update_server_eweight(s);
4803 else if (srv_willbe_usable(s)) {
4804 if (px->lbprm.set_server_status_up)
4805 px->lbprm.set_server_status_up(s);
4806 }
4807 else {
4808 if (px->lbprm.set_server_status_down)
4809 px->lbprm.set_server_status_down(s);
4810 }
4811
4812 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4813 set_backend_down(s->proxy);
4814
4815 }
4816 else if (s->next_admin & SRV_ADMF_MAINT) {
4817 /* remaining in maintenance mode, let's inform precisely about the
4818 * situation.
4819 */
4820 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
4821 tmptrash = alloc_trash_chunk();
4822 if (tmptrash) {
4823 chunk_printf(tmptrash,
4824 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
4825 s->flags & SRV_F_BACKUP ? "Backup " : "",
4826 s->proxy->id, s->id);
4827
4828 if (s->track) /* normally it's mandatory here */
4829 chunk_appendf(tmptrash, " via %s/%s",
4830 s->track->proxy->id, s->track->id);
Christopher Faulet767a84b2017-11-24 16:50:31 +01004831 ha_warning("%s.\n", tmptrash->str);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004832 send_log(s->proxy, LOG_NOTICE, "%s.\n", tmptrash->str);
4833 free_trash_chunk(tmptrash);
4834 tmptrash = NULL;
4835 }
4836 }
4837 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
4838 tmptrash = alloc_trash_chunk();
4839 if (tmptrash) {
4840 chunk_printf(tmptrash,
4841 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
4842 s->flags & SRV_F_BACKUP ? "Backup " : "",
4843 s->proxy->id, s->id, s->hostname);
4844
4845 if (s->track) /* normally it's mandatory here */
4846 chunk_appendf(tmptrash, " via %s/%s",
4847 s->track->proxy->id, s->track->id);
Christopher Faulet767a84b2017-11-24 16:50:31 +01004848 ha_warning("%s.\n", tmptrash->str);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004849 send_log(s->proxy, LOG_NOTICE, "%s.\n", tmptrash->str);
4850 free_trash_chunk(tmptrash);
4851 tmptrash = NULL;
4852 }
4853 }
4854 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
4855 tmptrash = alloc_trash_chunk();
4856 if (tmptrash) {
4857 chunk_printf(tmptrash,
4858 "%sServer %s/%s remains in forced maintenance",
4859 s->flags & SRV_F_BACKUP ? "Backup " : "",
4860 s->proxy->id, s->id);
Christopher Faulet767a84b2017-11-24 16:50:31 +01004861 ha_warning("%s.\n", tmptrash->str);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004862 send_log(s->proxy, LOG_NOTICE, "%s.\n", tmptrash->str);
4863 free_trash_chunk(tmptrash);
4864 tmptrash = NULL;
4865 }
4866 }
4867 /* don't report anything when leaving drain mode and remaining in maintenance */
4868
4869 s->cur_admin = s->next_admin;
4870 }
4871
4872 if (!(s->next_admin & SRV_ADMF_MAINT)) {
4873 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
4874 /* drain state is applied only if not yet in maint */
4875
4876 s->last_change = now.tv_sec;
4877 if (px->lbprm.set_server_status_down)
4878 px->lbprm.set_server_status_down(s);
4879
4880 /* we might have streams queued on this server and waiting for
4881 * a connection. Those which are redispatchable will be queued
4882 * to another server or to the proxy itself.
4883 */
4884 xferred = pendconn_redistribute(s);
4885
4886 tmptrash = alloc_trash_chunk();
4887 if (tmptrash) {
4888 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
4889 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4890 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
4891
4892 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
4893
4894 if (!(global.mode & MODE_STARTING)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004895 ha_warning("%s.\n", tmptrash->str);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004896 send_log(s->proxy, LOG_NOTICE, "%s.\n", tmptrash->str);
4897 send_email_alert(s, LOG_NOTICE, "%s", tmptrash->str);
4898 }
4899 free_trash_chunk(tmptrash);
4900 tmptrash = NULL;
4901 }
4902
4903 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4904 set_backend_down(s->proxy);
4905 }
4906 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
4907 /* OK completely leaving drain mode */
4908 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4909 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4910 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4911 s->proxy->last_change = now.tv_sec;
4912 }
4913
4914 if (s->last_change < now.tv_sec) // ignore negative times
4915 s->down_time += now.tv_sec - s->last_change;
4916 s->last_change = now.tv_sec;
4917 server_recalc_eweight(s);
4918
4919 tmptrash = alloc_trash_chunk();
4920 if (tmptrash) {
4921 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
4922 chunk_printf(tmptrash,
4923 "%sServer %s/%s is %s (leaving forced drain)",
4924 s->flags & SRV_F_BACKUP ? "Backup " : "",
4925 s->proxy->id, s->id,
4926 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
4927 }
4928 else {
4929 chunk_printf(tmptrash,
4930 "%sServer %s/%s is %s (leaving drain)",
4931 s->flags & SRV_F_BACKUP ? "Backup " : "",
4932 s->proxy->id, s->id,
4933 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
4934 if (s->track) /* normally it's mandatory here */
4935 chunk_appendf(tmptrash, " via %s/%s",
4936 s->track->proxy->id, s->track->id);
4937 }
4938
Christopher Faulet767a84b2017-11-24 16:50:31 +01004939 ha_warning("%s.\n", tmptrash->str);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004940 send_log(s->proxy, LOG_NOTICE, "%s.\n", tmptrash->str);
4941 free_trash_chunk(tmptrash);
4942 tmptrash = NULL;
4943 }
4944
4945 /* now propagate the status change to any LB algorithms */
4946 if (px->lbprm.update_server_eweight)
4947 px->lbprm.update_server_eweight(s);
4948 else if (srv_willbe_usable(s)) {
4949 if (px->lbprm.set_server_status_up)
4950 px->lbprm.set_server_status_up(s);
4951 }
4952 else {
4953 if (px->lbprm.set_server_status_down)
4954 px->lbprm.set_server_status_down(s);
4955 }
4956 }
4957 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
4958 /* remaining in drain mode after removing one of its flags */
4959
4960 tmptrash = alloc_trash_chunk();
4961 if (tmptrash) {
4962 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
4963 chunk_printf(tmptrash,
4964 "%sServer %s/%s is leaving forced drain but remains in drain mode",
4965 s->flags & SRV_F_BACKUP ? "Backup " : "",
4966 s->proxy->id, s->id);
4967
4968 if (s->track) /* normally it's mandatory here */
4969 chunk_appendf(tmptrash, " via %s/%s",
4970 s->track->proxy->id, s->track->id);
4971 }
4972 else {
4973 chunk_printf(tmptrash,
4974 "%sServer %s/%s remains in forced drain mode",
4975 s->flags & SRV_F_BACKUP ? "Backup " : "",
4976 s->proxy->id, s->id);
4977 }
Christopher Faulet767a84b2017-11-24 16:50:31 +01004978 ha_warning("%s.\n", tmptrash->str);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004979 send_log(s->proxy, LOG_NOTICE, "%s.\n", tmptrash->str);
4980 free_trash_chunk(tmptrash);
4981 tmptrash = NULL;
4982 }
4983
4984 /* commit new admin status */
4985
4986 s->cur_admin = s->next_admin;
4987 }
4988 }
4989
4990 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02004991 *s->adm_st_chg_cause = 0;
4992}
4993/*
4994 * This function loops on servers registered for asynchronous
4995 * status changes
Christopher Faulet5d42e092017-10-16 12:00:40 +02004996 *
4997 * NOTE: No needs to lock <updated_servers> list because it is called inside the
4998 * sync point.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004999 */
5000void servers_update_status(void) {
5001 struct server *s, *stmp;
5002
5003 list_for_each_entry_safe(s, stmp, &updated_servers, update_status) {
5004 srv_update_status(s);
5005 LIST_DEL(&s->update_status);
5006 LIST_INIT(&s->update_status);
5007 }
5008}
5009
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005010/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005011 * Local variables:
5012 * c-indent-level: 8
5013 * c-basic-offset: 8
5014 * End:
5015 */