blob: df90b22401a2a05af5c901ab9a5e4a87768f3252 [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
Willy Tarreau3f0f82e2020-06-04 19:42:41 +020017#include <haproxy/applet-t.h>
Willy Tarreau49801602020-06-04 22:50:02 +020018#include <haproxy/backend.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020019#include <haproxy/api.h>
Olivier Houchard4e694042017-03-14 20:01:29 +010020#include <import/xxhash.h>
21
Willy Tarreau272adea2014-03-31 10:39:59 +020022#include <common/cfgparse.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020023#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020024#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020025#include <haproxy/connection.h>
Willy Tarreau3afc4c42020-06-03 18:23:19 +020026#include <haproxy/dict-t.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020027#include <haproxy/dns.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020028#include <haproxy/errors.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020029#include <haproxy/global.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +020030#include <haproxy/namespace.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020031#include <haproxy/sample.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020032#include <haproxy/stats-t.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020033#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020034#include <haproxy/task.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020035#include <haproxy/time.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020036
Willy Tarreaufc8f6a82020-06-03 19:20:59 +020037#include <haproxy/port_range.h>
Willy Tarreau2dd7c352020-06-03 15:26:55 +020038#include <haproxy/protocol.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020039#include <proto/queue.h>
Willy Tarreauec6c5df2008-07-15 00:22:45 +020040#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020041#include <proto/stream.h>
David Carlier6f182082017-04-03 21:58:04 +010042#include <netinet/tcp.h>
Willy Tarreau4aac7db2014-05-16 11:48:10 +020043
Willy Tarreau8d2b7772020-05-27 10:58:19 +020044#include <import/ebsttree.h>
Baptiste Assmannda29fe22019-06-13 13:24:29 +020045
Willy Tarreau3ff577e2018-08-02 11:48:52 +020046static void srv_update_status(struct server *s);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020047static void srv_update_state(struct server *srv, int version, char **params);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +010048static int srv_apply_lastaddr(struct server *srv, int *err_code);
Olivier Houchardd16bfe62017-10-31 15:21:19 +010049static int srv_set_fqdn(struct server *srv, const char *fqdn, int dns_locked);
Baptiste Assmannda29fe22019-06-13 13:24:29 +020050static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params);
51static int srv_state_get_version(FILE *f);
William Dauchy6318d332020-05-02 21:52:36 +020052static void srv_cleanup_connections(struct server *srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +020053
Willy Tarreau21faa912012-10-10 08:27:36 +020054/* List head of all known server keywords */
55static struct srv_kw_list srv_keywords = {
56 .list = LIST_HEAD_INIT(srv_keywords.list)
57};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020058
Willy Tarreauaf613e82020-06-05 08:40:51 +020059__decl_thread(HA_SPINLOCK_T idle_conn_srv_lock);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010060struct eb_root idle_conn_srv = EB_ROOT;
61struct task *idle_conn_task = NULL;
62struct task *idle_conn_cleanup[MAX_THREADS] = { NULL };
Olivier Houchard859dc802019-08-08 15:47:21 +020063struct mt_list toremove_connections[MAX_THREADS];
Willy Tarreauaf613e82020-06-05 08:40:51 +020064__decl_thread(HA_SPINLOCK_T toremove_lock[MAX_THREADS]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010065
Frédéric Lécaille7da71292019-05-20 09:47:07 +020066/* The server names dictionary */
67struct dict server_name_dict = {
68 .name = "server names",
69 .values = EB_ROOT_UNIQUE,
70};
71
Baptiste Assmannda29fe22019-06-13 13:24:29 +020072/* tree where global state_file is loaded */
Willy Tarreaufd1aa012019-12-20 17:23:40 +010073struct eb_root state_file = EB_ROOT_UNIQUE;
Baptiste Assmannda29fe22019-06-13 13:24:29 +020074
Simon Hormana3608442013-11-01 16:46:15 +090075int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020076{
Emeric Brun52a91d32017-08-31 14:41:55 +020077 if ((s->cur_state != SRV_ST_STOPPED) && s->last_change < now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020078 return s->down_time;
79
80 return now.tv_sec - s->last_change + s->down_time;
81}
Willy Tarreaubaaee002006-06-26 02:48:02 +020082
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050083int srv_lastsession(const struct server *s)
84{
85 if (s->counters.last_sess)
86 return now.tv_sec - s->counters.last_sess;
87
88 return -1;
89}
90
Simon Horman4a741432013-02-23 15:35:38 +090091int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020092{
Simon Horman4a741432013-02-23 15:35:38 +090093 const struct server *s = check->server;
94
Willy Tarreauff5ae352013-12-11 20:36:34 +010095 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +090096 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010097
Emeric Brun52a91d32017-08-31 14:41:55 +020098 if ((s->next_state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +090099 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100100
Simon Horman4a741432013-02-23 15:35:38 +0900101 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100102}
103
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100104/*
105 * Check that we did not get a hash collision.
106 * Unlikely, but it can happen.
107 */
108static inline void srv_check_for_dup_dyncookie(struct server *s)
Olivier Houchard4e694042017-03-14 20:01:29 +0100109{
110 struct proxy *p = s->proxy;
111 struct server *tmpserv;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100112
113 for (tmpserv = p->srv; tmpserv != NULL;
114 tmpserv = tmpserv->next) {
115 if (tmpserv == s)
116 continue;
117 if (tmpserv->next_admin & SRV_ADMF_FMAINT)
118 continue;
119 if (tmpserv->cookie &&
120 strcmp(tmpserv->cookie, s->cookie) == 0) {
121 ha_warning("We generated two equal cookies for two different servers.\n"
122 "Please change the secret key for '%s'.\n",
123 s->proxy->id);
124 }
125 }
126
127}
128
Willy Tarreau46b7f532018-08-21 11:54:26 +0200129/*
Willy Tarreau5e83d992019-07-30 11:59:34 +0200130 * Must be called with the server lock held, and will grab the proxy lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200131 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100132void srv_set_dyncookie(struct server *s)
133{
134 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100135 char *tmpbuf;
136 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100137 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100138 size_t buffer_len;
139 int addr_len;
140 int port;
141
Willy Tarreau5e83d992019-07-30 11:59:34 +0200142 HA_SPIN_LOCK(PROXY_LOCK, &p->lock);
143
Olivier Houchard4e694042017-03-14 20:01:29 +0100144 if ((s->flags & SRV_F_COOKIESET) ||
145 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
146 s->proxy->dyncookie_key == NULL)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200147 goto out;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100148 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100149
150 if (s->addr.ss_family != AF_INET &&
151 s->addr.ss_family != AF_INET6)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200152 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100153 /*
154 * Buffer to calculate the cookie value.
155 * The buffer contains the secret key + the server IP address
156 * + the TCP port.
157 */
158 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
159 /*
160 * The TCP port should use only 2 bytes, but is stored in
161 * an unsigned int in struct server, so let's use 4, to be
162 * on the safe side.
163 */
164 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200165 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100166 memcpy(tmpbuf, p->dyncookie_key, key_len);
167 memcpy(&(tmpbuf[key_len]),
168 s->addr.ss_family == AF_INET ?
169 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
170 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
171 addr_len);
172 /*
173 * Make sure it's the same across all the load balancers,
174 * no matter their endianness.
175 */
176 port = htonl(s->svc_port);
177 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
178 hash_value = XXH64(tmpbuf, buffer_len, 0);
179 memprintf(&s->cookie, "%016llx", hash_value);
180 if (!s->cookie)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200181 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100182 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100183
184 /* Don't bother checking if the dyncookie is duplicated if
185 * the server is marked as "disabled", maybe it doesn't have
186 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100187 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100188 if (!(s->next_admin & SRV_ADMF_FMAINT))
189 srv_check_for_dup_dyncookie(s);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200190 out:
191 HA_SPIN_UNLOCK(PROXY_LOCK, &p->lock);
Olivier Houchard4e694042017-03-14 20:01:29 +0100192}
193
Willy Tarreau21faa912012-10-10 08:27:36 +0200194/*
195 * Registers the server keyword list <kwl> as a list of valid keywords for next
196 * parsing sessions.
197 */
198void srv_register_keywords(struct srv_kw_list *kwl)
199{
200 LIST_ADDQ(&srv_keywords.list, &kwl->list);
201}
202
203/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
204 * keyword is found with a NULL ->parse() function, then an attempt is made to
205 * find one with a valid ->parse() function. This way it is possible to declare
206 * platform-dependant, known keywords as NULL, then only declare them as valid
207 * if some options are met. Note that if the requested keyword contains an
208 * opening parenthesis, everything from this point is ignored.
209 */
210struct srv_kw *srv_find_kw(const char *kw)
211{
212 int index;
213 const char *kwend;
214 struct srv_kw_list *kwl;
215 struct srv_kw *ret = NULL;
216
217 kwend = strchr(kw, '(');
218 if (!kwend)
219 kwend = kw + strlen(kw);
220
221 list_for_each_entry(kwl, &srv_keywords.list, list) {
222 for (index = 0; kwl->kw[index].kw != NULL; index++) {
223 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
224 kwl->kw[index].kw[kwend-kw] == 0) {
225 if (kwl->kw[index].parse)
226 return &kwl->kw[index]; /* found it !*/
227 else
228 ret = &kwl->kw[index]; /* may be OK */
229 }
230 }
231 }
232 return ret;
233}
234
235/* Dumps all registered "server" keywords to the <out> string pointer. The
236 * unsupported keywords are only dumped if their supported form was not
237 * found.
238 */
239void srv_dump_kws(char **out)
240{
241 struct srv_kw_list *kwl;
242 int index;
243
Christopher Faulet784063e2020-05-18 12:14:18 +0200244 if (!out)
245 return;
246
Willy Tarreau21faa912012-10-10 08:27:36 +0200247 *out = NULL;
248 list_for_each_entry(kwl, &srv_keywords.list, list) {
249 for (index = 0; kwl->kw[index].kw != NULL; index++) {
250 if (kwl->kw[index].parse ||
251 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
252 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
253 kwl->scope,
254 kwl->kw[index].kw,
255 kwl->kw[index].skip ? " <arg>" : "",
256 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
257 kwl->kw[index].parse ? "" : " (not supported)");
258 }
259 }
260 }
261}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100262
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100263/* Parse the "backup" server keyword */
264static int srv_parse_backup(char **args, int *cur_arg,
265 struct proxy *curproxy, struct server *newsrv, char **err)
266{
267 newsrv->flags |= SRV_F_BACKUP;
268 return 0;
269}
270
Alexander Liu2a54bb72019-05-22 19:44:48 +0800271
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100272/* Parse the "cookie" server keyword */
273static int srv_parse_cookie(char **args, int *cur_arg,
274 struct proxy *curproxy, struct server *newsrv, char **err)
275{
276 char *arg;
277
278 arg = args[*cur_arg + 1];
279 if (!*arg) {
280 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
281 return ERR_ALERT | ERR_FATAL;
282 }
283
284 free(newsrv->cookie);
285 newsrv->cookie = strdup(arg);
286 newsrv->cklen = strlen(arg);
287 newsrv->flags |= SRV_F_COOKIESET;
288 return 0;
289}
290
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100291/* Parse the "disabled" server keyword */
292static int srv_parse_disabled(char **args, int *cur_arg,
293 struct proxy *curproxy, struct server *newsrv, char **err)
294{
Emeric Brun52a91d32017-08-31 14:41:55 +0200295 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
296 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100297 newsrv->check.state |= CHK_ST_PAUSED;
298 newsrv->check.health = 0;
299 return 0;
300}
301
302/* Parse the "enabled" server keyword */
303static int srv_parse_enabled(char **args, int *cur_arg,
304 struct proxy *curproxy, struct server *newsrv, char **err)
305{
Emeric Brun52a91d32017-08-31 14:41:55 +0200306 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
307 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100308 newsrv->check.state &= ~CHK_ST_PAUSED;
309 newsrv->check.health = newsrv->check.rise;
310 return 0;
311}
312
Willy Tarreau9c538e02019-01-23 10:21:49 +0100313static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
314{
315 char *arg;
316
317 arg = args[*cur_arg + 1];
318 if (!*arg) {
319 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
320 return ERR_ALERT | ERR_FATAL;
321 }
322 newsrv->max_reuse = atoi(arg);
323
324 return 0;
325}
326
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100327static int srv_parse_pool_purge_delay(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100328{
329 const char *res;
330 char *arg;
331 unsigned int time;
332
333 arg = args[*cur_arg + 1];
334 if (!*arg) {
335 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
336 return ERR_ALERT | ERR_FATAL;
337 }
338 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200339 if (res == PARSE_TIME_OVER) {
340 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
341 args[*cur_arg+1], args[*cur_arg]);
342 return ERR_ALERT | ERR_FATAL;
343 }
344 else if (res == PARSE_TIME_UNDER) {
345 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
346 args[*cur_arg+1], args[*cur_arg]);
347 return ERR_ALERT | ERR_FATAL;
348 }
349 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100350 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
351 *res, args[*cur_arg]);
352 return ERR_ALERT | ERR_FATAL;
353 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100354 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100355
356 return 0;
357}
358
Olivier Houchard006e3102018-12-10 18:30:32 +0100359static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
360{
361 char *arg;
362
363 arg = args[*cur_arg + 1];
364 if (!*arg) {
365 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
366 return ERR_ALERT | ERR_FATAL;
367 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100368
Olivier Houchard006e3102018-12-10 18:30:32 +0100369 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100370 if ((int)newsrv->max_idle_conns < -1) {
371 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
372 return ERR_ALERT | ERR_FATAL;
373 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100374
375 return 0;
376}
377
Willy Tarreaudff55432012-10-10 17:51:05 +0200378/* parse the "id" server keyword */
379static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
380{
381 struct eb32_node *node;
382
383 if (!*args[*cur_arg + 1]) {
384 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
385 return ERR_ALERT | ERR_FATAL;
386 }
387
388 newsrv->puid = atol(args[*cur_arg + 1]);
389 newsrv->conf.id.key = newsrv->puid;
390
391 if (newsrv->puid <= 0) {
392 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
393 return ERR_ALERT | ERR_FATAL;
394 }
395
396 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
397 if (node) {
398 struct server *target = container_of(node, struct server, conf.id);
399 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
400 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
401 target->id);
402 return ERR_ALERT | ERR_FATAL;
403 }
404
405 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200406 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200407 return 0;
408}
409
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100410/* Parse the "namespace" server keyword */
411static int srv_parse_namespace(char **args, int *cur_arg,
412 struct proxy *curproxy, struct server *newsrv, char **err)
413{
Willy Tarreaue5733232019-05-22 19:24:06 +0200414#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100415 char *arg;
416
417 arg = args[*cur_arg + 1];
418 if (!*arg) {
419 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
420 return ERR_ALERT | ERR_FATAL;
421 }
422
423 if (!strcmp(arg, "*")) {
424 /* Use the namespace associated with the connection (if present). */
425 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
426 return 0;
427 }
428
429 /*
430 * As this parser may be called several times for the same 'default-server'
431 * object, or for a new 'server' instance deriving from a 'default-server'
432 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
433 */
434 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
435
436 newsrv->netns = netns_store_lookup(arg, strlen(arg));
437 if (!newsrv->netns)
438 newsrv->netns = netns_store_insert(arg);
439
440 if (!newsrv->netns) {
441 memprintf(err, "Cannot open namespace '%s'", arg);
442 return ERR_ALERT | ERR_FATAL;
443 }
444
445 return 0;
446#else
447 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
448 return ERR_ALERT | ERR_FATAL;
449#endif
450}
451
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100452/* Parse the "no-backup" server keyword */
453static int srv_parse_no_backup(char **args, int *cur_arg,
454 struct proxy *curproxy, struct server *newsrv, char **err)
455{
456 newsrv->flags &= ~SRV_F_BACKUP;
457 return 0;
458}
459
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100460
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100461/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200462static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100463{
464 srv->pp_opts &= ~flags;
465 return 0;
466}
467
468/* Parse the "no-send-proxy" server keyword */
469static int srv_parse_no_send_proxy(char **args, int *cur_arg,
470 struct proxy *curproxy, struct server *newsrv, char **err)
471{
472 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
473}
474
475/* Parse the "no-send-proxy-v2" server keyword */
476static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
477 struct proxy *curproxy, struct server *newsrv, char **err)
478{
479 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
480}
481
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200482/* Parse the "no-tfo" server keyword */
483static int srv_parse_no_tfo(char **args, int *cur_arg,
484 struct proxy *curproxy, struct server *newsrv, char **err)
485{
486 newsrv->flags &= ~SRV_F_FASTOPEN;
487 return 0;
488}
489
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100490/* Parse the "non-stick" server keyword */
491static int srv_parse_non_stick(char **args, int *cur_arg,
492 struct proxy *curproxy, struct server *newsrv, char **err)
493{
494 newsrv->flags |= SRV_F_NON_STICK;
495 return 0;
496}
497
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100498/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200499static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100500{
501 srv->pp_opts |= flags;
502 return 0;
503}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200504/* parse the "proto" server keyword */
505static int srv_parse_proto(char **args, int *cur_arg,
506 struct proxy *px, struct server *newsrv, char **err)
507{
508 struct ist proto;
509
510 if (!*args[*cur_arg + 1]) {
511 memprintf(err, "'%s' : missing value", args[*cur_arg]);
512 return ERR_ALERT | ERR_FATAL;
513 }
514 proto = ist2(args[*cur_arg + 1], strlen(args[*cur_arg + 1]));
515 newsrv->mux_proto = get_mux_proto(proto);
516 if (!newsrv->mux_proto) {
517 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
518 return ERR_ALERT | ERR_FATAL;
519 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200520 return 0;
521}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100522
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100523/* parse the "proxy-v2-options" */
524static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
525 struct proxy *px, struct server *newsrv, char **err)
526{
527 char *p, *n;
528 for (p = args[*cur_arg+1]; p; p = n) {
529 n = strchr(p, ',');
530 if (n)
531 *n++ = '\0';
532 if (!strcmp(p, "ssl")) {
533 newsrv->pp_opts |= SRV_PP_V2_SSL;
534 } else if (!strcmp(p, "cert-cn")) {
535 newsrv->pp_opts |= SRV_PP_V2_SSL;
536 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100537 } else if (!strcmp(p, "cert-key")) {
538 newsrv->pp_opts |= SRV_PP_V2_SSL;
539 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
540 } else if (!strcmp(p, "cert-sig")) {
541 newsrv->pp_opts |= SRV_PP_V2_SSL;
542 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
543 } else if (!strcmp(p, "ssl-cipher")) {
544 newsrv->pp_opts |= SRV_PP_V2_SSL;
545 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100546 } else if (!strcmp(p, "authority")) {
547 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100548 } else if (!strcmp(p, "crc32c")) {
549 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100550 } else if (!strcmp(p, "unique-id")) {
551 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100552 } else
553 goto fail;
554 }
555 return 0;
556 fail:
557 if (err)
558 memprintf(err, "'%s' : proxy v2 option not implemented", p);
559 return ERR_ALERT | ERR_FATAL;
560}
561
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100562/* Parse the "observe" server keyword */
563static int srv_parse_observe(char **args, int *cur_arg,
564 struct proxy *curproxy, struct server *newsrv, char **err)
565{
566 char *arg;
567
568 arg = args[*cur_arg + 1];
569 if (!*arg) {
570 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
571 return ERR_ALERT | ERR_FATAL;
572 }
573
574 if (!strcmp(arg, "none")) {
575 newsrv->observe = HANA_OBS_NONE;
576 }
577 else if (!strcmp(arg, "layer4")) {
578 newsrv->observe = HANA_OBS_LAYER4;
579 }
580 else if (!strcmp(arg, "layer7")) {
581 if (curproxy->mode != PR_MODE_HTTP) {
582 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
583 return ERR_ALERT;
584 }
585 newsrv->observe = HANA_OBS_LAYER7;
586 }
587 else {
588 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
589 "but got '%s'\n", args[*cur_arg], arg);
590 return ERR_ALERT | ERR_FATAL;
591 }
592
593 return 0;
594}
595
Frédéric Lécaille16186232017-03-14 16:42:49 +0100596/* Parse the "redir" server keyword */
597static int srv_parse_redir(char **args, int *cur_arg,
598 struct proxy *curproxy, struct server *newsrv, char **err)
599{
600 char *arg;
601
602 arg = args[*cur_arg + 1];
603 if (!*arg) {
604 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
605 return ERR_ALERT | ERR_FATAL;
606 }
607
608 free(newsrv->rdr_pfx);
609 newsrv->rdr_pfx = strdup(arg);
610 newsrv->rdr_len = strlen(arg);
611
612 return 0;
613}
614
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100615/* Parse the "send-proxy" server keyword */
616static int srv_parse_send_proxy(char **args, int *cur_arg,
617 struct proxy *curproxy, struct server *newsrv, char **err)
618{
619 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
620}
621
622/* Parse the "send-proxy-v2" server keyword */
623static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
624 struct proxy *curproxy, struct server *newsrv, char **err)
625{
626 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
627}
628
Frédéric Lécailledba97072017-03-17 15:33:50 +0100629
630/* Parse the "source" server keyword */
631static int srv_parse_source(char **args, int *cur_arg,
632 struct proxy *curproxy, struct server *newsrv, char **err)
633{
634 char *errmsg;
635 int port_low, port_high;
636 struct sockaddr_storage *sk;
637 struct protocol *proto;
638
639 errmsg = NULL;
640
641 if (!*args[*cur_arg + 1]) {
642 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
643 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
644 goto err;
645 }
646
647 /* 'sk' is statically allocated (no need to be freed). */
648 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, &errmsg, NULL, NULL, 1);
649 if (!sk) {
650 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
651 goto err;
652 }
653
654 proto = protocol_by_family(sk->ss_family);
655 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100656 ha_alert("'%s %s' : connect() not supported for this address family.\n",
657 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100658 goto err;
659 }
660
661 newsrv->conn_src.opts |= CO_SRC_BIND;
662 newsrv->conn_src.source_addr = *sk;
663
664 if (port_low != port_high) {
665 int i;
666
667 if (!port_low || !port_high) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100668 ha_alert("'%s' does not support port offsets (found '%s').\n",
669 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100670 goto err;
671 }
672
673 if (port_low <= 0 || port_low > 65535 ||
674 port_high <= 0 || port_high > 65535 ||
675 port_low > port_high) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100676 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 +0100677 goto err;
678 }
679 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
680 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
681 newsrv->conn_src.sport_range->ports[i] = port_low + i;
682 }
683
684 *cur_arg += 2;
685 while (*(args[*cur_arg])) {
686 if (!strcmp(args[*cur_arg], "usesrc")) { /* address to use outside */
687#if defined(CONFIG_HAP_TRANSPARENT)
688 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100689 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
690 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +0100691 goto err;
692 }
693 if (!strcmp(args[*cur_arg + 1], "client")) {
694 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
695 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
696 }
697 else if (!strcmp(args[*cur_arg + 1], "clientip")) {
698 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
699 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
700 }
701 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
702 char *name, *end;
703
704 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +0100705 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100706 name++;
707
708 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +0100709 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +0100710 end++;
711
712 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
713 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
714 free(newsrv->conn_src.bind_hdr_name);
715 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
716 newsrv->conn_src.bind_hdr_len = end - name;
717 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
718 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
719 newsrv->conn_src.bind_hdr_occ = -1;
720
721 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +0100722 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100723 end++;
724 if (*end == ',') {
725 end++;
726 name = end;
727 if (*end == '-')
728 end++;
Willy Tarreau90807112020-02-25 08:16:33 +0100729 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100730 end++;
731 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
732 }
733
734 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100735 ha_alert("usesrc hdr_ip(name,num) does not support negative"
736 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100737 goto err;
738 }
739 }
740 else {
741 struct sockaddr_storage *sk;
742 int port1, port2;
743
744 /* 'sk' is statically allocated (no need to be freed). */
745 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
746 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100747 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100748 goto err;
749 }
750
751 proto = protocol_by_family(sk->ss_family);
752 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100753 ha_alert("'%s %s' : connect() not supported for this address family.\n",
754 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100755 goto err;
756 }
757
758 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100759 ha_alert("'%s' : port ranges and offsets are not allowed in '%s'\n",
760 args[*cur_arg], args[*cur_arg + 1]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100761 goto err;
762 }
763 newsrv->conn_src.tproxy_addr = *sk;
764 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
765 }
766 global.last_checks |= LSTCHK_NETADM;
767 *cur_arg += 2;
768 continue;
769#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100770 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 +0100771 goto err;
772#endif /* defined(CONFIG_HAP_TRANSPARENT) */
773 } /* "usesrc" */
774
775 if (!strcmp(args[*cur_arg], "interface")) { /* specifically bind to this interface */
776#ifdef SO_BINDTODEVICE
777 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100778 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100779 goto err;
780 }
781 free(newsrv->conn_src.iface_name);
782 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
783 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
784 global.last_checks |= LSTCHK_NETADM;
785#else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100786 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100787 goto err;
788#endif
789 *cur_arg += 2;
790 continue;
791 }
792 /* this keyword in not an option of "source" */
793 break;
794 } /* while */
795
796 return 0;
797
798 err:
799 free(errmsg);
800 return ERR_ALERT | ERR_FATAL;
801}
802
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100803/* Parse the "stick" server keyword */
804static int srv_parse_stick(char **args, int *cur_arg,
805 struct proxy *curproxy, struct server *newsrv, char **err)
806{
807 newsrv->flags &= ~SRV_F_NON_STICK;
808 return 0;
809}
810
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100811/* Parse the "track" server keyword */
812static int srv_parse_track(char **args, int *cur_arg,
813 struct proxy *curproxy, struct server *newsrv, char **err)
814{
815 char *arg;
816
817 arg = args[*cur_arg + 1];
818 if (!*arg) {
819 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
820 return ERR_ALERT | ERR_FATAL;
821 }
822
823 free(newsrv->trackit);
824 newsrv->trackit = strdup(arg);
825
826 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800827}
828
829/* Parse the "socks4" server keyword */
830static int srv_parse_socks4(char **args, int *cur_arg,
831 struct proxy *curproxy, struct server *newsrv, char **err)
832{
833 char *errmsg;
834 int port_low, port_high;
835 struct sockaddr_storage *sk;
836 struct protocol *proto;
837
838 errmsg = NULL;
839
840 if (!*args[*cur_arg + 1]) {
841 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
842 goto err;
843 }
844
845 /* 'sk' is statically allocated (no need to be freed). */
846 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, &errmsg, NULL, NULL, 1);
847 if (!sk) {
848 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
849 goto err;
850 }
851
852 proto = protocol_by_family(sk->ss_family);
853 if (!proto || !proto->connect) {
854 ha_alert("'%s %s' : connect() not supported for this address family.\n", args[*cur_arg], args[*cur_arg + 1]);
855 goto err;
856 }
857
858 newsrv->flags |= SRV_F_SOCKS4_PROXY;
859 newsrv->socks4_addr = *sk;
860
861 if (port_low != port_high) {
862 ha_alert("'%s' does not support port offsets (found '%s').\n", args[*cur_arg], args[*cur_arg + 1]);
863 goto err;
864 }
865
866 if (!port_low) {
867 ha_alert("'%s': invalid port range %d-%d.\n", args[*cur_arg], port_low, port_high);
868 goto err;
869 }
870
871 return 0;
872
873 err:
874 free(errmsg);
875 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100876}
877
Frédéric Lécailledba97072017-03-17 15:33:50 +0100878
Willy Tarreau034c88c2017-01-23 23:36:45 +0100879/* parse the "tfo" server keyword */
880static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
881{
882 newsrv->flags |= SRV_F_FASTOPEN;
883 return 0;
884}
885
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200886/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +0200887 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200888 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200889 *
890 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200891 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200892void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200893{
Willy Tarreau87b09662015-04-03 00:22:06 +0200894 struct stream *stream, *stream_bck;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200895
Willy Tarreau87b09662015-04-03 00:22:06 +0200896 list_for_each_entry_safe(stream, stream_bck, &srv->actconns, by_srv)
897 if (stream->srv_conn == srv)
898 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200899}
900
901/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +0200902 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200903 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200904 *
905 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200906 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200907void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200908{
909 struct server *srv;
910
911 for (srv = px->srv; srv != NULL; srv = srv->next)
912 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +0200913 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200914}
915
Willy Tarreaubda92272014-05-20 21:55:30 +0200916/* Appends some information to a message string related to a server going UP or
917 * DOWN. If both <forced> and <reason> are null and the server tracks another
918 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +0200919 * If <check> is non-null, an entire string describing the check result will be
920 * appended after a comma and a space (eg: to report some information from the
921 * check that changed the state). In the other case, the string will be built
922 * using the check results stored into the struct server if present.
923 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +0200924 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200925 *
926 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200927 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200928void srv_append_status(struct buffer *msg, struct server *s,
929 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200930{
Emeric Brun5a133512017-10-19 14:42:30 +0200931 short status = s->op_st_chg.status;
932 short code = s->op_st_chg.code;
933 long duration = s->op_st_chg.duration;
934 char *desc = s->op_st_chg.reason;
935
936 if (check) {
937 status = check->status;
938 code = check->code;
939 duration = check->duration;
940 desc = check->desc;
941 }
942
943 if (status != -1) {
944 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
945
946 if (status >= HCHK_STATUS_L57DATA)
947 chunk_appendf(msg, ", code: %d", code);
948
949 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +0200950 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +0200951
952 chunk_appendf(msg, ", info: \"");
953
954 chunk_initlen(&src, desc, 0, strlen(desc));
955 chunk_asciiencode(msg, &src, '"');
956
957 chunk_appendf(msg, "\"");
958 }
959
960 if (duration >= 0)
961 chunk_appendf(msg, ", check duration: %ldms", duration);
962 }
963 else if (desc && *desc) {
964 chunk_appendf(msg, ", %s", desc);
965 }
966 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +0200967 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +0200968 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200969
970 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200971 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200972 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
973 " %d sessions active, %d requeued, %d remaining in queue",
974 s->proxy->srv_act, s->proxy->srv_bck,
975 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
976 s->cur_sess, xferred, s->nbpend);
977 else
978 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
979 " %d sessions requeued, %d total in queue",
980 s->proxy->srv_act, s->proxy->srv_bck,
981 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
982 xferred, s->nbpend);
983 }
984}
985
Emeric Brun5a133512017-10-19 14:42:30 +0200986/* Marks server <s> down, regardless of its checks' statuses. The server is
987 * registered in a list to postpone the counting of the remaining servers on
988 * the proxy and transfers queued streams whenever possible to other servers at
989 * a sync point. Maintenance servers are ignored. It stores the <reason> if
990 * non-null as the reason for going down or the available data from the check
991 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200992 *
993 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200994 */
Emeric Brun5a133512017-10-19 14:42:30 +0200995void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200996{
997 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200998
Emeric Brun64cc49c2017-10-03 14:46:45 +0200999 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001000 return;
1001
Emeric Brun52a91d32017-08-31 14:41:55 +02001002 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +02001003 *s->op_st_chg.reason = 0;
1004 s->op_st_chg.status = -1;
1005 if (reason) {
1006 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1007 }
1008 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001009 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001010 s->op_st_chg.code = check->code;
1011 s->op_st_chg.status = check->status;
1012 s->op_st_chg.duration = check->duration;
1013 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001014
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001015 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001016 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001017
Emeric Brun9f0b4582017-10-23 14:39:51 +02001018 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001019 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001020 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001021 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001022 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001023}
1024
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001025/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001026 * in maintenance. The server is registered in a list to postpone the counting
1027 * of the remaining servers on the proxy and tries to grab requests from the
1028 * proxy at a sync point. Maintenance servers are ignored. It stores the
1029 * <reason> if non-null as the reason for going down or the available data
1030 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001031 *
1032 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001033 */
Emeric Brun5a133512017-10-19 14:42:30 +02001034void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001035{
1036 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001037
Emeric Brun64cc49c2017-10-03 14:46:45 +02001038 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001039 return;
1040
Emeric Brun52a91d32017-08-31 14:41:55 +02001041 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001042 return;
1043
Emeric Brun52a91d32017-08-31 14:41:55 +02001044 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001045 *s->op_st_chg.reason = 0;
1046 s->op_st_chg.status = -1;
1047 if (reason) {
1048 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1049 }
1050 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001051 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001052 s->op_st_chg.code = check->code;
1053 s->op_st_chg.status = check->status;
1054 s->op_st_chg.duration = check->duration;
1055 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001056
Emeric Brun64cc49c2017-10-03 14:46:45 +02001057 if (s->slowstart <= 0)
1058 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001059
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001060 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001061 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001062
Emeric Brun9f0b4582017-10-23 14:39:51 +02001063 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001064 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001065 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001066 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001067 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001068}
1069
Willy Tarreau8eb77842014-05-21 13:54:57 +02001070/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001071 * isn't in maintenance. The server is registered in a list to postpone the
1072 * counting of the remaining servers on the proxy and tries to grab requests
1073 * from the proxy. Maintenance servers are ignored. It stores the
1074 * <reason> if non-null as the reason for going down or the available data
1075 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001076 * up. Note that it makes use of the trash to build the log strings, so <reason>
1077 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001078 *
1079 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001080 */
Emeric Brun5a133512017-10-19 14:42:30 +02001081void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001082{
1083 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001084
Emeric Brun64cc49c2017-10-03 14:46:45 +02001085 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001086 return;
1087
Emeric Brun52a91d32017-08-31 14:41:55 +02001088 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001089 return;
1090
Emeric Brun52a91d32017-08-31 14:41:55 +02001091 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001092 *s->op_st_chg.reason = 0;
1093 s->op_st_chg.status = -1;
1094 if (reason) {
1095 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1096 }
1097 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001098 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001099 s->op_st_chg.code = check->code;
1100 s->op_st_chg.status = check->status;
1101 s->op_st_chg.duration = check->duration;
1102 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001103
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001104 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001105 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001106
Emeric Brun9f0b4582017-10-23 14:39:51 +02001107 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001108 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001109 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001110 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001111 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001112}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001113
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001114/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1115 * enforce either maint mode or drain mode. It is not allowed to set more than
1116 * one flag at once. The equivalent "inherited" flag is propagated to all
1117 * tracking servers. Maintenance mode disables health checks (but not agent
1118 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001119 * is done. If <cause> is non-null, it will be displayed at the end of the log
1120 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001121 *
1122 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001123 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001124void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001125{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001126 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001127
1128 if (!mode)
1129 return;
1130
1131 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001132 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001133 return;
1134
Emeric Brun52a91d32017-08-31 14:41:55 +02001135 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001136 if (cause)
1137 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1138
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001139 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001140 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001141
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001142 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001143 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1144 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001145 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001146
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001147 /* compute the inherited flag to propagate */
1148 if (mode & SRV_ADMF_MAINT)
1149 mode = SRV_ADMF_IMAINT;
1150 else if (mode & SRV_ADMF_DRAIN)
1151 mode = SRV_ADMF_IDRAIN;
1152
Emeric Brun9f0b4582017-10-23 14:39:51 +02001153 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001154 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001155 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001156 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001157 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001158}
1159
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001160/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1161 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1162 * than one flag at once. The equivalent "inherited" flag is propagated to all
1163 * tracking servers. Leaving maintenance mode re-enables health checks. When
1164 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001165 *
1166 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001167 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001168void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001169{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001170 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001171
1172 if (!mode)
1173 return;
1174
1175 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001176 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001177 return;
1178
Emeric Brun52a91d32017-08-31 14:41:55 +02001179 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001180
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001181 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001182 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001183
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001184 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001185 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1186 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001187 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001188
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001189 if (mode & SRV_ADMF_MAINT)
1190 mode = SRV_ADMF_IMAINT;
1191 else if (mode & SRV_ADMF_DRAIN)
1192 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001193
Emeric Brun9f0b4582017-10-23 14:39:51 +02001194 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001195 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001196 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001197 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001198 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001199}
1200
Willy Tarreau757478e2016-11-03 19:22:19 +01001201/* principle: propagate maint and drain to tracking servers. This is useful
1202 * upon startup so that inherited states are correct.
1203 */
1204static void srv_propagate_admin_state(struct server *srv)
1205{
1206 struct server *srv2;
1207
1208 if (!srv->trackers)
1209 return;
1210
1211 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001212 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001213 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001214 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001215
Emeric Brun52a91d32017-08-31 14:41:55 +02001216 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001217 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001218 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001219 }
1220}
1221
1222/* Compute and propagate the admin states for all servers in proxy <px>.
1223 * Only servers *not* tracking another one are considered, because other
1224 * ones will be handled when the server they track is visited.
1225 */
1226void srv_compute_all_admin_states(struct proxy *px)
1227{
1228 struct server *srv;
1229
1230 for (srv = px->srv; srv; srv = srv->next) {
1231 if (srv->track)
1232 continue;
1233 srv_propagate_admin_state(srv);
1234 }
1235}
1236
Willy Tarreaudff55432012-10-10 17:51:05 +02001237/* Note: must not be declared <const> as its list will be overwritten.
1238 * Please take care of keeping this list alphabetically sorted, doing so helps
1239 * all code contributors.
1240 * Optional keywords are also declared with a NULL ->parse() function so that
1241 * the config parser can report an appropriate error when a known keyword was
1242 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001243 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001244 */
1245static struct srv_kw_list srv_kws = { "ALL", { }, {
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001246 { "backup", srv_parse_backup, 0, 1 }, /* Flag as backup server */
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +01001247 { "cookie", srv_parse_cookie, 1, 1 }, /* Assign a cookie to the server */
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +01001248 { "disabled", srv_parse_disabled, 0, 1 }, /* Start the server in 'disabled' state */
1249 { "enabled", srv_parse_enabled, 0, 1 }, /* Start the server in 'enabled' state */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001250 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
Willy Tarreau9c538e02019-01-23 10:21:49 +01001251 { "max-reuse", srv_parse_max_reuse, 1, 1 }, /* Set the max number of requests on a connection, -1 means unlimited */
Frédéric Lécaille22f41a22017-03-16 17:17:36 +01001252 { "namespace", srv_parse_namespace, 1, 1 }, /* Namespace the server socket belongs to (if supported) */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001253 { "no-backup", srv_parse_no_backup, 0, 1 }, /* Flag as non-backup server */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001254 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1 }, /* Disable use of PROXY V1 protocol */
1255 { "no-send-proxy-v2", srv_parse_no_send_proxy_v2, 0, 1 }, /* Disable use of PROXY V2 protocol */
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +02001256 { "no-tfo", srv_parse_no_tfo, 0, 1 }, /* Disable use of TCP Fast Open */
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001257 { "non-stick", srv_parse_non_stick, 0, 1 }, /* Disable stick-table persistence */
Frédéric Lécaille547356e2017-03-15 08:55:39 +01001258 { "observe", srv_parse_observe, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
Olivier Houchard006e3102018-12-10 18:30:32 +01001259 { "pool-max-conn", srv_parse_pool_max_conn, 1, 1 }, /* Set the max number of orphan idle connections, 0 means unlimited */
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001260 { "pool-purge-delay", srv_parse_pool_purge_delay, 1, 1 }, /* Set the time before we destroy orphan idle connections, defaults to 1s */
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001261 { "proto", srv_parse_proto, 1, 1 }, /* Set the proto to use for all outgoing connections */
Emmanuel Hocdetf643b802018-02-01 15:20:32 +01001262 { "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 +01001263 { "redir", srv_parse_redir, 1, 1 }, /* Enable redirection mode */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001264 { "send-proxy", srv_parse_send_proxy, 0, 1 }, /* Enforce use of PROXY V1 protocol */
1265 { "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 +02001266 { "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 +01001267 { "stick", srv_parse_stick, 0, 1 }, /* Enable stick-table persistence */
Olivier Houchard8d82db72019-07-04 13:34:10 +02001268 { "tfo", srv_parse_tfo, 0, 1 }, /* enable TCP Fast Open of server */
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001269 { "track", srv_parse_track, 1, 1 }, /* Set the current state of the server, tracking another one */
Alexander Liu2a54bb72019-05-22 19:44:48 +08001270 { "socks4", srv_parse_socks4, 1, 1 }, /* Set the socks4 proxy of the server*/
Willy Tarreaudff55432012-10-10 17:51:05 +02001271 { NULL, NULL, 0 },
1272}};
1273
Willy Tarreau0108d902018-11-25 19:14:37 +01001274INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001275
Willy Tarreau004e0452013-11-21 11:22:01 +01001276/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001277 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001278 * state is automatically disabled if the time is elapsed. If <must_update> is
1279 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001280 *
1281 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001282 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001283void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001284{
1285 struct proxy *px = sv->proxy;
1286 unsigned w;
1287
1288 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1289 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001290 if (sv->next_state == SRV_ST_STARTING)
1291 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001292 }
1293
1294 /* We must take care of not pushing the server to full throttle during slow starts.
1295 * It must also start immediately, at least at the minimal step when leaving maintenance.
1296 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001297 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001298 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1299 else
1300 w = px->lbprm.wdiv;
1301
Emeric Brun52a91d32017-08-31 14:41:55 +02001302 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001303
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001304 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001305 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001306 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001307}
1308
Willy Tarreaubaaee002006-06-26 02:48:02 +02001309/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001310 * Parses weight_str and configures sv accordingly.
1311 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001312 *
1313 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001314 */
1315const char *server_parse_weight_change_request(struct server *sv,
1316 const char *weight_str)
1317{
1318 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001319 long int w;
1320 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001321
1322 px = sv->proxy;
1323
1324 /* if the weight is terminated with '%', it is set relative to
1325 * the initial weight, otherwise it is absolute.
1326 */
1327 if (!*weight_str)
1328 return "Require <weight> or <weight%>.\n";
1329
Simon Hormanb796afa2013-02-12 10:45:53 +09001330 w = strtol(weight_str, &end, 10);
1331 if (end == weight_str)
1332 return "Empty weight string empty or preceded by garbage";
1333 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001334 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001335 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001336 /* Avoid integer overflow */
1337 if (w > 25600)
1338 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001339 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001340 if (w > 256)
1341 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001342 }
1343 else if (w < 0 || w > 256)
1344 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001345 else if (end[0] != '\0')
1346 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001347
1348 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1349 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1350
1351 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001352 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001353
1354 return NULL;
1355}
1356
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001357/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001358 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1359 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001360 * Returns:
1361 * - error string on error
1362 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001363 *
1364 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001365 */
1366const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001367 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001368{
1369 unsigned char ip[INET6_ADDRSTRLEN];
1370
1371 if (inet_pton(AF_INET6, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001372 update_server_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001373 return NULL;
1374 }
1375 if (inet_pton(AF_INET, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001376 update_server_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001377 return NULL;
1378 }
1379
1380 return "Could not understand IP address format.\n";
1381}
1382
Willy Tarreau46b7f532018-08-21 11:54:26 +02001383/*
1384 * Must be called with the server lock held.
1385 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001386const char *server_parse_maxconn_change_request(struct server *sv,
1387 const char *maxconn_str)
1388{
1389 long int v;
1390 char *end;
1391
1392 if (!*maxconn_str)
1393 return "Require <maxconn>.\n";
1394
1395 v = strtol(maxconn_str, &end, 10);
1396 if (end == maxconn_str)
1397 return "maxconn string empty or preceded by garbage";
1398 else if (end[0] != '\0')
1399 return "Trailing garbage in maxconn string";
1400
1401 if (sv->maxconn == sv->minconn) { // static maxconn
1402 sv->maxconn = sv->minconn = v;
1403 } else { // dynamic maxconn
1404 sv->maxconn = v;
1405 }
1406
1407 if (may_dequeue_tasks(sv, sv->proxy))
1408 process_srv_queue(sv);
1409
1410 return NULL;
1411}
1412
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001413#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001414static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1415 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001416{
1417 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001418 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001419 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001420 NULL,
1421 };
1422
1423 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001424 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001425
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001426 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001427}
1428
1429static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1430{
1431 struct sample_expr *expr;
1432
1433 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 +01001434 if (!expr) {
1435 memprintf(err, "error detected while parsing sni expression : %s", *err);
1436 return ERR_ALERT | ERR_FATAL;
1437 }
1438
1439 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1440 memprintf(err, "error detected while parsing sni expression : "
1441 " fetch method '%s' extracts information from '%s', "
1442 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001443 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001444 return ERR_ALERT | ERR_FATAL;
1445 }
1446
1447 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1448 release_sample_expr(newsrv->ssl_ctx.sni);
1449 newsrv->ssl_ctx.sni = expr;
1450
1451 return 0;
1452}
1453#endif
1454
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001455static void display_parser_err(const char *file, int linenum, char **args, int cur_arg, int err_code, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001456{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001457 char *msg = "error encountered while processing ";
1458 char *quote = "'";
1459 char *token = args[cur_arg];
1460
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001461 if (err && *err) {
1462 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001463 msg = *err;
1464 quote = "";
1465 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001466 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001467
1468 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
1469 ha_warning("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1470 file, linenum, args[0], args[1],
1471 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001472 else
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001473 ha_alert("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1474 file, linenum, args[0], args[1],
1475 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001476}
1477
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001478static void srv_conn_src_sport_range_cpy(struct server *srv,
1479 struct server *src)
1480{
1481 int range_sz;
1482
1483 range_sz = src->conn_src.sport_range->size;
1484 if (range_sz > 0) {
1485 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1486 if (srv->conn_src.sport_range != NULL) {
1487 int i;
1488
1489 for (i = 0; i < range_sz; i++) {
1490 srv->conn_src.sport_range->ports[i] =
1491 src->conn_src.sport_range->ports[i];
1492 }
1493 }
1494 }
1495}
1496
1497/*
1498 * Copy <src> server connection source settings to <srv> server everything needed.
1499 */
1500static void srv_conn_src_cpy(struct server *srv, struct server *src)
1501{
1502 srv->conn_src.opts = src->conn_src.opts;
1503 srv->conn_src.source_addr = src->conn_src.source_addr;
1504
1505 /* Source port range copy. */
1506 if (src->conn_src.sport_range != NULL)
1507 srv_conn_src_sport_range_cpy(srv, src);
1508
1509#ifdef CONFIG_HAP_TRANSPARENT
1510 if (src->conn_src.bind_hdr_name != NULL) {
1511 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1512 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1513 }
1514 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1515 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1516#endif
1517 if (src->conn_src.iface_name != NULL)
1518 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1519}
1520
1521/*
1522 * Copy <src> server SSL settings to <srv> server allocating
1523 * everything needed.
1524 */
1525#if defined(USE_OPENSSL)
1526static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1527{
1528 if (src->ssl_ctx.ca_file != NULL)
1529 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1530 if (src->ssl_ctx.crl_file != NULL)
1531 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
1532 if (src->ssl_ctx.client_crt != NULL)
1533 srv->ssl_ctx.client_crt = strdup(src->ssl_ctx.client_crt);
1534
1535 srv->ssl_ctx.verify = src->ssl_ctx.verify;
1536
1537 if (src->ssl_ctx.verify_host != NULL)
1538 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
1539 if (src->ssl_ctx.ciphers != NULL)
1540 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02001541 if (src->ssl_ctx.options)
1542 srv->ssl_ctx.options = src->ssl_ctx.options;
1543 if (src->ssl_ctx.methods.flags)
1544 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
1545 if (src->ssl_ctx.methods.min)
1546 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
1547 if (src->ssl_ctx.methods.max)
1548 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
1549
Willy Tarreau5db847a2019-05-09 14:13:35 +02001550#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02001551 if (src->ssl_ctx.ciphersuites != NULL)
1552 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
1553#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001554 if (src->sni_expr != NULL)
1555 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01001556
1557#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
1558 if (src->ssl_ctx.alpn_str) {
1559 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
1560 if (srv->ssl_ctx.alpn_str) {
1561 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
1562 src->ssl_ctx.alpn_len);
1563 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
1564 }
1565 }
1566#endif
1567#ifdef OPENSSL_NPN_NEGOTIATED
1568 if (src->ssl_ctx.npn_str) {
1569 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
1570 if (srv->ssl_ctx.npn_str) {
1571 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
1572 src->ssl_ctx.npn_len);
1573 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
1574 }
1575 }
1576#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001577}
1578#endif
1579
1580/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001581 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001582 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001583 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001584 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001585static int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001586{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001587 char *hostname_dn;
1588 int hostname_len, hostname_dn_len;
1589
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001590 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001591 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001592
Christopher Faulet67957bd2017-09-27 11:00:59 +02001593 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001594 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001595 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
1596 hostname_dn, trash.size);
1597 if (hostname_dn_len == -1)
1598 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001599
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001600
Christopher Faulet67957bd2017-09-27 11:00:59 +02001601 free(srv->hostname);
1602 free(srv->hostname_dn);
1603 srv->hostname = strdup(hostname);
1604 srv->hostname_dn = strdup(hostname_dn);
1605 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001606 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001607 goto err;
1608
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001609 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001610
1611 err:
Christopher Faulet67957bd2017-09-27 11:00:59 +02001612 free(srv->hostname); srv->hostname = NULL;
1613 free(srv->hostname_dn); srv->hostname_dn = NULL;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001614 return -1;
1615}
1616
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001617/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001618 * Copy <src> server settings to <srv> server allocating
1619 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001620 * This function is not supposed to be called at any time, but only
1621 * during server settings parsing or during server allocations from
1622 * a server template, and just after having calloc()'ed a new server.
1623 * So, <src> may only be a default server (when parsing server settings)
1624 * or a server template (during server allocations from a server template).
1625 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
1626 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001627 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001628static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001629{
1630 /* Connection source settings copy */
1631 srv_conn_src_cpy(srv, src);
1632
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001633 if (srv_tmpl) {
1634 srv->addr = src->addr;
1635 srv->svc_port = src->svc_port;
1636 }
1637
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001638 srv->pp_opts = src->pp_opts;
1639 if (src->rdr_pfx != NULL) {
1640 srv->rdr_pfx = strdup(src->rdr_pfx);
1641 srv->rdr_len = src->rdr_len;
1642 }
1643 if (src->cookie != NULL) {
1644 srv->cookie = strdup(src->cookie);
1645 srv->cklen = src->cklen;
1646 }
1647 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01001648 srv->check.addr = src->check.addr;
1649 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001650 srv->check.use_ssl = src->check.use_ssl;
1651 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01001652 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01001653 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05001654 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001655 /* Note: 'flags' field has potentially been already initialized. */
1656 srv->flags |= src->flags;
1657 srv->do_check = src->do_check;
1658 srv->do_agent = src->do_agent;
1659 if (srv->check.port)
1660 srv->flags |= SRV_F_CHECKPORT;
1661 srv->check.inter = src->check.inter;
1662 srv->check.fastinter = src->check.fastinter;
1663 srv->check.downinter = src->check.downinter;
1664 srv->agent.use_ssl = src->agent.use_ssl;
1665 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001666
1667 if (src->agent.tcpcheck_rules) {
1668 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
1669 if (srv->agent.tcpcheck_rules) {
1670 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
1671 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
1672 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
1673 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
1674 &src->agent.tcpcheck_rules->preset_vars);
1675 }
1676 }
1677
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001678 srv->agent.inter = src->agent.inter;
1679 srv->agent.fastinter = src->agent.fastinter;
1680 srv->agent.downinter = src->agent.downinter;
1681 srv->maxqueue = src->maxqueue;
1682 srv->minconn = src->minconn;
1683 srv->maxconn = src->maxconn;
1684 srv->slowstart = src->slowstart;
1685 srv->observe = src->observe;
1686 srv->onerror = src->onerror;
1687 srv->onmarkeddown = src->onmarkeddown;
1688 srv->onmarkedup = src->onmarkedup;
1689 if (src->trackit != NULL)
1690 srv->trackit = strdup(src->trackit);
1691 srv->consecutive_errors_limit = src->consecutive_errors_limit;
1692 srv->uweight = srv->iweight = src->iweight;
1693
1694 srv->check.send_proxy = src->check.send_proxy;
1695 /* health: up, but will fall down at first failure */
1696 srv->check.rise = srv->check.health = src->check.rise;
1697 srv->check.fall = src->check.fall;
1698
1699 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001700 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
1701 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
1702 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001703 srv->check.state |= CHK_ST_PAUSED;
1704 srv->check.health = 0;
1705 }
1706
1707 /* health: up but will fall down at first failure */
1708 srv->agent.rise = srv->agent.health = src->agent.rise;
1709 srv->agent.fall = src->agent.fall;
1710
1711 if (src->resolvers_id != NULL)
1712 srv->resolvers_id = strdup(src->resolvers_id);
1713 srv->dns_opts.family_prio = src->dns_opts.family_prio;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001714 srv->dns_opts.accept_duplicate_ip = src->dns_opts.accept_duplicate_ip;
Daniel Corbettf8716912019-11-17 09:48:56 -05001715 srv->dns_opts.ignore_weight = src->dns_opts.ignore_weight;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001716 if (srv->dns_opts.family_prio == AF_UNSPEC)
1717 srv->dns_opts.family_prio = AF_INET6;
1718 memcpy(srv->dns_opts.pref_net,
1719 src->dns_opts.pref_net,
1720 sizeof srv->dns_opts.pref_net);
1721 srv->dns_opts.pref_net_nb = src->dns_opts.pref_net_nb;
1722
1723 srv->init_addr_methods = src->init_addr_methods;
1724 srv->init_addr = src->init_addr;
1725#if defined(USE_OPENSSL)
1726 srv_ssl_settings_cpy(srv, src);
1727#endif
1728#ifdef TCP_USER_TIMEOUT
1729 srv->tcp_ut = src->tcp_ut;
1730#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001731 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001732 srv->pool_purge_delay = src->pool_purge_delay;
Olivier Houchard006e3102018-12-10 18:30:32 +01001733 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01001734 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001735
Olivier Houchard8da5f982017-08-04 18:35:36 +02001736 if (srv_tmpl)
1737 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001738
1739 srv->check.via_socks4 = src->check.via_socks4;
1740 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001741}
1742
William Lallemand313bfd12018-10-26 14:47:32 +02001743struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001744{
1745 struct server *srv;
1746
1747 srv = calloc(1, sizeof *srv);
1748 if (!srv)
1749 return NULL;
1750
1751 srv->obj_type = OBJ_TYPE_SERVER;
1752 srv->proxy = proxy;
1753 LIST_INIT(&srv->actconns);
Patrick Hemmer0355dab2018-05-11 12:52:31 -04001754 srv->pendconns = EB_ROOT;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001755
Emeric Brun52a91d32017-08-31 14:41:55 +02001756 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001757 srv->last_change = now.tv_sec;
1758
Christopher Faulet38290462020-04-21 11:46:40 +02001759 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001760 srv->check.status = HCHK_STATUS_INI;
1761 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01001762 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02001763 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001764
Christopher Faulet38290462020-04-21 11:46:40 +02001765 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001766 srv->agent.status = HCHK_STATUS_INI;
1767 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01001768 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001769 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
1770
Willy Tarreau975b1552019-06-06 16:25:55 +02001771 /* please don't put default server settings here, they are set in
1772 * init_default_instance().
1773 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001774 return srv;
1775}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001776
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001777#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1778static int server_sni_expr_init(const char *file, int linenum, char **args, int cur_arg,
1779 struct server *srv, struct proxy *proxy)
1780{
1781 int ret;
1782 char *err = NULL;
1783
1784 if (!srv->sni_expr)
1785 return 0;
1786
1787 ret = server_parse_sni_expr(srv, proxy, &err);
1788 if (!ret)
1789 return 0;
1790
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001791 display_parser_err(file, linenum, args, cur_arg, ret, &err);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001792 free(err);
1793
1794 return ret;
1795}
1796#endif
1797
1798/*
1799 * Server initializations finalization.
1800 * Initialize health check, agent check and SNI expression if enabled.
1801 * Must not be called for a default server instance.
1802 */
1803static int server_finalize_init(const char *file, int linenum, char **args, int cur_arg,
1804 struct server *srv, struct proxy *px)
1805{
Christopher Fauletb3b53522020-04-27 11:17:10 +02001806#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001807 int ret;
Christopher Fauletb3b53522020-04-27 11:17:10 +02001808#endif
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001809
Christopher Faulet8892e5d2020-03-26 19:48:20 +01001810 if (srv->do_check && srv->trackit) {
1811 ha_alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1812 file, linenum);
1813 return ERR_ALERT | ERR_FATAL;
1814 }
1815
1816 if (srv->do_agent && !srv->agent.port) {
1817 ha_alert("parsing [%s:%d] : server %s does not have agent port. Agent check has been disabled.\n",
1818 file, linenum, srv->id);
1819 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001820 }
1821
1822#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1823 if ((ret = server_sni_expr_init(file, linenum, args, cur_arg, srv, px)) != 0)
1824 return ret;
1825#endif
1826
1827 if (srv->flags & SRV_F_BACKUP)
1828 px->srv_bck++;
1829 else
1830 px->srv_act++;
1831 srv_lb_commit_status(srv);
1832
1833 return 0;
1834}
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001835
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001836/*
1837 * Parse as much as possible such a range string argument: low[-high]
1838 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
1839 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
1840 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
1841 * Returns 0 if succeeded, -1 if not.
1842 */
1843static int srv_tmpl_parse_range(struct server *srv, const char *arg, int *nb_low, int *nb_high)
1844{
1845 char *nb_high_arg;
1846
1847 *nb_high = 0;
1848 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001849 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001850
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001851 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001852 *nb_high_arg++ = '\0';
1853 *nb_high = atoi(nb_high_arg);
1854 }
1855 else {
1856 *nb_high += *nb_low;
1857 *nb_low = 1;
1858 }
1859
1860 if (*nb_low < 0 || *nb_high < *nb_low)
1861 return -1;
1862
1863 return 0;
1864}
1865
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001866static inline void srv_set_id_from_prefix(struct server *srv, const char *prefix, int nb)
1867{
1868 chunk_printf(&trash, "%s%d", prefix, nb);
1869 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001870 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001871}
1872
1873/*
1874 * Initialize as much as possible servers from <srv> server template.
1875 * Note that a server template is a special server with
1876 * a few different parameters than a server which has
1877 * been parsed mostly the same way as a server.
Joseph Herlant44466822018-11-15 08:57:51 -08001878 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001879 * 'srv' template included.
1880 */
1881static int server_template_init(struct server *srv, struct proxy *px)
1882{
1883 int i;
1884 struct server *newsrv;
1885
1886 for (i = srv->tmpl_info.nb_low + 1; i <= srv->tmpl_info.nb_high; i++) {
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001887 newsrv = new_server(px);
1888 if (!newsrv)
1889 goto err;
1890
1891 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001892 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001893#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1894 if (newsrv->sni_expr) {
1895 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
1896 if (!newsrv->ssl_ctx.sni)
1897 goto err;
1898 }
1899#endif
1900 /* Set this new server ID. */
1901 srv_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
1902
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001903 /* Linked backwards first. This will be restablished after parsing. */
1904 newsrv->next = px->srv;
1905 px->srv = newsrv;
1906 }
1907 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1908
1909 return i - srv->tmpl_info.nb_low;
1910
1911 err:
1912 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1913 if (newsrv) {
1914#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1915 release_sample_expr(newsrv->ssl_ctx.sni);
1916#endif
1917 free_check(&newsrv->agent);
1918 free_check(&newsrv->check);
1919 }
1920 free(newsrv);
1921 return i - srv->tmpl_info.nb_low;
1922}
1923
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +02001924int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy, struct proxy *defproxy, int parse_addr, int in_peers_section)
Willy Tarreau272adea2014-03-31 10:39:59 +02001925{
1926 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001927 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001928 char *errmsg = NULL;
1929 int err_code = 0;
1930 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +02001931 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001932
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001933 if (!strcmp(args[0], "server") ||
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02001934 !strcmp(args[0], "peer") ||
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001935 !strcmp(args[0], "default-server") ||
1936 !strcmp(args[0], "server-template")) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001937 int cur_arg;
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001938 int defsrv = (*args[0] == 'd');
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +02001939 int srv = !defsrv && (*args[0] == 'p' || !strcmp(args[0], "server"));
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001940 int srv_tmpl = !defsrv && !srv;
1941 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02001942
1943 if (!defsrv && curproxy == defproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001944 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001945 err_code |= ERR_ALERT | ERR_FATAL;
1946 goto out;
1947 }
1948 else if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL))
Olivier Houchard306e6532018-07-24 16:48:59 +02001949 err_code |= ERR_WARN;
Willy Tarreau272adea2014-03-31 10:39:59 +02001950
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001951 /* There is no mandatory first arguments for default server. */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01001952 if (srv && parse_addr) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001953 if (!*args[2]) {
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +02001954 if (in_peers_section) {
1955 return 0;
1956 }
1957 else {
1958 /* 'server' line number of argument check. */
1959 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1960 file, linenum, args[0]);
1961 err_code |= ERR_ALERT | ERR_FATAL;
1962 goto out;
1963 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001964 }
1965
1966 err = invalid_char(args[1]);
1967 }
1968 else if (srv_tmpl) {
1969 if (!*args[3]) {
1970 /* 'server-template' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001971 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 +02001972 file, linenum, args[0]);
1973 err_code |= ERR_ALERT | ERR_FATAL;
1974 goto out;
1975 }
1976
1977 err = invalid_prefix_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001978 }
1979
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001980 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001981 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 +02001982 file, linenum, *err, args[0], srv ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001983 err_code |= ERR_ALERT | ERR_FATAL;
1984 goto out;
1985 }
1986
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001987 cur_arg = 2;
1988 if (srv_tmpl) {
1989 /* Parse server-template <nb | range> arg. */
1990 if (srv_tmpl_parse_range(newsrv, args[cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001991 ha_alert("parsing [%s:%d] : Wrong %s number or range arg '%s'.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001992 file, linenum, args[0], args[cur_arg]);
1993 err_code |= ERR_ALERT | ERR_FATAL;
1994 goto out;
1995 }
1996 cur_arg++;
1997 }
1998
Willy Tarreau272adea2014-03-31 10:39:59 +02001999 if (!defsrv) {
2000 struct sockaddr_storage *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002001 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002002 struct protocol *proto;
2003
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002004 newsrv = new_server(curproxy);
2005 if (!newsrv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002006 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Willy Tarreau272adea2014-03-31 10:39:59 +02002007 err_code |= ERR_ALERT | ERR_ABORT;
2008 goto out;
2009 }
2010
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002011 if (srv_tmpl) {
2012 newsrv->tmpl_info.nb_low = tmpl_range_low;
2013 newsrv->tmpl_info.nb_high = tmpl_range_high;
2014 }
2015
Willy Tarreau272adea2014-03-31 10:39:59 +02002016 /* the servers are linked backwards first */
2017 newsrv->next = curproxy->srv;
2018 curproxy->srv = newsrv;
Willy Tarreau272adea2014-03-31 10:39:59 +02002019 newsrv->conf.file = strdup(file);
2020 newsrv->conf.line = linenum;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002021 /* Note: for a server template, its id is its prefix.
2022 * This is a temporary id which will be used for server allocations to come
2023 * after parsing.
2024 */
2025 if (srv)
2026 newsrv->id = strdup(args[1]);
2027 else
2028 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002029
2030 /* several ways to check the port component :
2031 * - IP => port=+0, relative (IPv4 only)
2032 * - IP: => port=+0, relative
2033 * - IP:N => port=N, absolute
2034 * - IP:+N => port=+N, relative
2035 * - IP:-N => port=-N, relative
2036 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002037 if (!parse_addr)
2038 goto skip_addr;
2039
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002040 sk = str2sa_range(args[cur_arg], &port, &port1, &port2, &errmsg, NULL, &fqdn, 0);
Willy Tarreau272adea2014-03-31 10:39:59 +02002041 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002042 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau272adea2014-03-31 10:39:59 +02002043 err_code |= ERR_ALERT | ERR_FATAL;
2044 goto out;
2045 }
2046
2047 proto = protocol_by_family(sk->ss_family);
Willy Tarreau9698f4b2017-01-06 18:42:57 +01002048 if (!fqdn && (!proto || !proto->connect)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002049 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002050 file, linenum, args[0], args[1]);
2051 err_code |= ERR_ALERT | ERR_FATAL;
2052 goto out;
2053 }
2054
2055 if (!port1 || !port2) {
2056 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +02002057 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +02002058 }
2059 else if (port1 != port2) {
2060 /* port range */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002061 ha_alert("parsing [%s:%d] : '%s %s' : port ranges are not allowed in '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002062 file, linenum, args[0], args[1], args[2]);
2063 err_code |= ERR_ALERT | ERR_FATAL;
2064 goto out;
2065 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002066
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002067 /* save hostname and create associated name resolution */
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002068 if (fqdn) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002069 if (fqdn[0] == '_') { /* SRV record */
Olivier Houchard8da5f982017-08-04 18:35:36 +02002070 /* Check if a SRV request already exists, and if not, create it */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002071 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2072 newsrv->srvrq = new_dns_srvrq(newsrv, fqdn);
2073 if (newsrv->srvrq == NULL) {
Olivier Houchard8da5f982017-08-04 18:35:36 +02002074 err_code |= ERR_ALERT | ERR_FATAL;
2075 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002076 }
2077 }
2078 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002079 ha_alert("parsing [%s:%d] : Can't create DNS resolution for server '%s'\n",
Christopher Faulet67957bd2017-09-27 11:00:59 +02002080 file, linenum, newsrv->id);
2081 err_code |= ERR_ALERT | ERR_FATAL;
2082 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002083 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002084 }
2085
Willy Tarreau272adea2014-03-31 10:39:59 +02002086 newsrv->addr = *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002087 newsrv->svc_port = port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002088
Olivier Houchard8da5f982017-08-04 18:35:36 +02002089 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002090 ha_alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002091 file, linenum, newsrv->addr.ss_family, args[cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002092 err_code |= ERR_ALERT | ERR_FATAL;
2093 goto out;
2094 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002095
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002096 cur_arg++;
2097 skip_addr:
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002098 /* Copy default server settings to new server settings. */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002099 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002100 HA_SPIN_INIT(&newsrv->lock);
Willy Tarreau272adea2014-03-31 10:39:59 +02002101 } else {
2102 newsrv = &curproxy->defsrv;
2103 cur_arg = 1;
Thierry Fournierada34842016-02-17 21:25:09 +01002104 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002105 newsrv->dns_opts.accept_duplicate_ip = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002106 }
2107
2108 while (*args[cur_arg]) {
Christopher Fauletcbba66c2020-04-06 14:26:30 +02002109 if (!strcmp(args[cur_arg], "init-addr")) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002110 char *p, *end;
2111 int done;
Willy Tarreau4310d362016-11-02 15:05:56 +01002112 struct sockaddr_storage sa;
Baptiste Assmann25938272016-09-21 20:26:16 +02002113
2114 newsrv->init_addr_methods = 0;
2115 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
2116
2117 for (p = args[cur_arg + 1]; *p; p = end) {
2118 /* cut on next comma */
2119 for (end = p; *end && *end != ','; end++);
2120 if (*end)
2121 *(end++) = 0;
2122
Willy Tarreau4310d362016-11-02 15:05:56 +01002123 memset(&sa, 0, sizeof(sa));
Baptiste Assmann25938272016-09-21 20:26:16 +02002124 if (!strcmp(p, "libc")) {
2125 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
2126 }
2127 else if (!strcmp(p, "last")) {
2128 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
2129 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01002130 else if (!strcmp(p, "none")) {
2131 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
2132 }
Willy Tarreau4310d362016-11-02 15:05:56 +01002133 else if (str2ip2(p, &sa, 0)) {
2134 if (is_addr(&newsrv->init_addr)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002135 ha_alert("parsing [%s:%d]: '%s' : initial address already specified, cannot add '%s'.\n",
Willy Tarreau4310d362016-11-02 15:05:56 +01002136 file, linenum, args[cur_arg], p);
2137 err_code |= ERR_ALERT | ERR_FATAL;
2138 goto out;
2139 }
2140 newsrv->init_addr = sa;
2141 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
2142 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002143 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002144 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 +02002145 file, linenum, args[cur_arg], p);
2146 err_code |= ERR_ALERT | ERR_FATAL;
2147 goto out;
2148 }
2149 if (!done) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002150 ha_alert("parsing [%s:%d]: '%s' : too many init-addr methods when trying to add '%s'\n",
Baptiste Assmann25938272016-09-21 20:26:16 +02002151 file, linenum, args[cur_arg], p);
2152 err_code |= ERR_ALERT | ERR_FATAL;
2153 goto out;
2154 }
2155 }
2156 cur_arg += 2;
2157 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002158 else if (!strcmp(args[cur_arg], "resolvers")) {
Frédéric Lécailledaa2fe62017-04-20 12:17:50 +02002159 free(newsrv->resolvers_id);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002160 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
2161 cur_arg += 2;
2162 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002163 else if (!strcmp(args[cur_arg], "resolve-opts")) {
2164 char *p, *end;
2165
2166 for (p = args[cur_arg + 1]; *p; p = end) {
2167 /* cut on next comma */
2168 for (end = p; *end && *end != ','; end++);
2169 if (*end)
2170 *(end++) = 0;
2171
2172 if (!strcmp(p, "allow-dup-ip")) {
2173 newsrv->dns_opts.accept_duplicate_ip = 1;
2174 }
Daniel Corbettf8716912019-11-17 09:48:56 -05002175 else if (!strcmp(p, "ignore-weight")) {
2176 newsrv->dns_opts.ignore_weight = 1;
2177 }
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002178 else if (!strcmp(p, "prevent-dup-ip")) {
2179 newsrv->dns_opts.accept_duplicate_ip = 0;
2180 }
2181 else {
Daniel Corbettf8716912019-11-17 09:48:56 -05002182 ha_alert("parsing [%s:%d]: '%s' : unknown resolve-opts option '%s', supported methods are 'allow-dup-ip', 'ignore-weight', and 'prevent-dup-ip'.\n",
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002183 file, linenum, args[cur_arg], p);
2184 err_code |= ERR_ALERT | ERR_FATAL;
2185 goto out;
2186 }
2187 }
2188
2189 cur_arg += 2;
2190 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002191 else if (!strcmp(args[cur_arg], "resolve-prefer")) {
2192 if (!strcmp(args[cur_arg + 1], "ipv4"))
Thierry Fournierada34842016-02-17 21:25:09 +01002193 newsrv->dns_opts.family_prio = AF_INET;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002194 else if (!strcmp(args[cur_arg + 1], "ipv6"))
Thierry Fournierada34842016-02-17 21:25:09 +01002195 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002196 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002197 ha_alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002198 file, linenum, args[cur_arg]);
2199 err_code |= ERR_ALERT | ERR_FATAL;
2200 goto out;
2201 }
2202 cur_arg += 2;
2203 }
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002204 else if (!strcmp(args[cur_arg], "resolve-net")) {
2205 char *p, *e;
2206 unsigned char mask;
2207 struct dns_options *opt;
2208
2209 if (!args[cur_arg + 1] || args[cur_arg + 1][0] == '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002210 ha_alert("parsing [%s:%d]: '%s' expects a list of networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002211 file, linenum, args[cur_arg]);
2212 err_code |= ERR_ALERT | ERR_FATAL;
2213 goto out;
2214 }
2215
2216 opt = &newsrv->dns_opts;
2217
2218 /* Split arguments by comma, and convert it from ipv4 or ipv6
2219 * string network in in_addr or in6_addr.
2220 */
2221 p = args[cur_arg + 1];
2222 e = p;
2223 while (*p != '\0') {
Joseph Herlant44466822018-11-15 08:57:51 -08002224 /* If no room available, return error. */
David Carlierd10025c2016-04-08 10:26:44 +01002225 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002226 ha_alert("parsing [%s:%d]: '%s' exceed %d networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002227 file, linenum, args[cur_arg], SRV_MAX_PREF_NET);
2228 err_code |= ERR_ALERT | ERR_FATAL;
2229 goto out;
2230 }
2231 /* look for end or comma. */
2232 while (*e != ',' && *e != '\0')
2233 e++;
2234 if (*e == ',') {
2235 *e = '\0';
2236 e++;
2237 }
2238 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
2239 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
2240 /* Try to convert input string from ipv4 or ipv6 network. */
2241 opt->pref_net[opt->pref_net_nb].family = AF_INET;
2242 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
2243 &mask)) {
2244 /* Try to convert input string from ipv6 network. */
2245 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
2246 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
2247 } else {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05002248 /* All network conversions fail, return error. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002249 ha_alert("parsing [%s:%d]: '%s': invalid network '%s'.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002250 file, linenum, args[cur_arg], p);
2251 err_code |= ERR_ALERT | ERR_FATAL;
2252 goto out;
2253 }
2254 opt->pref_net_nb++;
2255 p = e;
2256 }
2257
2258 cur_arg += 2;
2259 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002260 else if (!strcmp(args[cur_arg], "weight")) {
2261 int w;
2262 w = atol(args[cur_arg + 1]);
2263 if (w < 0 || w > SRV_UWGHT_MAX) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002264 ha_alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002265 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
2266 err_code |= ERR_ALERT | ERR_FATAL;
2267 goto out;
2268 }
2269 newsrv->uweight = newsrv->iweight = w;
2270 cur_arg += 2;
2271 }
Emeric Brun97556472020-05-30 01:42:45 +02002272 else if (!strcmp(args[cur_arg], "log-proto")) {
2273 if (!strcmp(args[cur_arg + 1], "legacy"))
2274 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
2275 else if (!strcmp(args[cur_arg + 1], "octet-count"))
2276 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
2277 else {
2278 ha_alert("parsing [%s:%d]: '%s' expects one of 'legacy' or "
2279 "'octet-count' but got '%s'\n",
2280 file, linenum, args[cur_arg], args[cur_arg + 1]);
2281 err_code |= ERR_ALERT | ERR_FATAL;
2282 goto out;
2283 }
2284 cur_arg += 2;
2285 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002286 else if (!strcmp(args[cur_arg], "minconn")) {
2287 newsrv->minconn = atol(args[cur_arg + 1]);
2288 cur_arg += 2;
2289 }
2290 else if (!strcmp(args[cur_arg], "maxconn")) {
2291 newsrv->maxconn = atol(args[cur_arg + 1]);
2292 cur_arg += 2;
2293 }
2294 else if (!strcmp(args[cur_arg], "maxqueue")) {
2295 newsrv->maxqueue = atol(args[cur_arg + 1]);
2296 cur_arg += 2;
2297 }
2298 else if (!strcmp(args[cur_arg], "slowstart")) {
2299 /* slowstart is stored in seconds */
2300 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02002301
2302 if (err == PARSE_TIME_OVER) {
2303 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).\n",
2304 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2305 err_code |= ERR_ALERT | ERR_FATAL;
2306 goto out;
2307 }
2308 else if (err == PARSE_TIME_UNDER) {
2309 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.\n",
2310 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2311 err_code |= ERR_ALERT | ERR_FATAL;
2312 goto out;
2313 }
2314 else if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002315 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002316 file, linenum, *err, newsrv->id);
2317 err_code |= ERR_ALERT | ERR_FATAL;
2318 goto out;
2319 }
2320 newsrv->slowstart = (val + 999) / 1000;
2321 cur_arg += 2;
2322 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002323 else if (!strcmp(args[cur_arg], "on-error")) {
2324 if (!strcmp(args[cur_arg + 1], "fastinter"))
2325 newsrv->onerror = HANA_ONERR_FASTINTER;
2326 else if (!strcmp(args[cur_arg + 1], "fail-check"))
2327 newsrv->onerror = HANA_ONERR_FAILCHK;
2328 else if (!strcmp(args[cur_arg + 1], "sudden-death"))
2329 newsrv->onerror = HANA_ONERR_SUDDTH;
2330 else if (!strcmp(args[cur_arg + 1], "mark-down"))
2331 newsrv->onerror = HANA_ONERR_MARKDWN;
2332 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002333 ha_alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
Willy Tarreau272adea2014-03-31 10:39:59 +02002334 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
2335 file, linenum, args[cur_arg], args[cur_arg + 1]);
2336 err_code |= ERR_ALERT | ERR_FATAL;
2337 goto out;
2338 }
2339
2340 cur_arg += 2;
2341 }
2342 else if (!strcmp(args[cur_arg], "on-marked-down")) {
2343 if (!strcmp(args[cur_arg + 1], "shutdown-sessions"))
2344 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
2345 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002346 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002347 file, linenum, args[cur_arg], args[cur_arg + 1]);
2348 err_code |= ERR_ALERT | ERR_FATAL;
2349 goto out;
2350 }
2351
2352 cur_arg += 2;
2353 }
2354 else if (!strcmp(args[cur_arg], "on-marked-up")) {
2355 if (!strcmp(args[cur_arg + 1], "shutdown-backup-sessions"))
2356 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
2357 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002358 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002359 file, linenum, args[cur_arg], args[cur_arg + 1]);
2360 err_code |= ERR_ALERT | ERR_FATAL;
2361 goto out;
2362 }
2363
2364 cur_arg += 2;
2365 }
2366 else if (!strcmp(args[cur_arg], "error-limit")) {
2367 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002368 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002369 file, linenum, args[cur_arg]);
2370 err_code |= ERR_ALERT | ERR_FATAL;
2371 goto out;
2372 }
2373
2374 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
2375
2376 if (newsrv->consecutive_errors_limit <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002377 ha_alert("parsing [%s:%d]: %s has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002378 file, linenum, args[cur_arg]);
2379 err_code |= ERR_ALERT | ERR_FATAL;
2380 goto out;
2381 }
2382 cur_arg += 2;
2383 }
Frédéric Lécaille8d083ed2017-04-14 15:19:56 +02002384 else if (!strcmp(args[cur_arg], "usesrc")) { /* address to use outside: needs "source" first */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002385 ha_alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002386 file, linenum, "usesrc", "source");
2387 err_code |= ERR_ALERT | ERR_FATAL;
2388 goto out;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002389 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002390 else {
2391 static int srv_dumped;
2392 struct srv_kw *kw;
2393 char *err;
2394
2395 kw = srv_find_kw(args[cur_arg]);
2396 if (kw) {
2397 char *err = NULL;
2398 int code;
2399
2400 if (!kw->parse) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002401 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 +02002402 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002403 if (kw->skip != -1)
2404 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002405 err_code |= ERR_ALERT | ERR_FATAL;
2406 goto out;
2407 }
2408
2409 if (defsrv && !kw->default_ok) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002410 ha_alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002411 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002412 if (kw->skip != -1)
2413 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002414 err_code |= ERR_ALERT;
2415 continue;
2416 }
2417
2418 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
2419 err_code |= code;
2420
2421 if (code) {
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002422 display_parser_err(file, linenum, args, cur_arg, code, &err);
Willy Tarreau272adea2014-03-31 10:39:59 +02002423 if (code & ERR_FATAL) {
2424 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002425 if (kw->skip != -1)
2426 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002427 goto out;
2428 }
2429 }
2430 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002431 if (kw->skip != -1)
2432 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002433 continue;
2434 }
2435
2436 err = NULL;
2437 if (!srv_dumped) {
2438 srv_dump_kws(&err);
2439 indent_msg(&err, 4);
2440 srv_dumped = 1;
2441 }
2442
Christopher Faulet767a84b2017-11-24 16:50:31 +01002443 ha_alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002444 file, linenum, args[0], args[1], args[cur_arg],
2445 err ? " Registered keywords :" : "", err ? err : "");
2446 free(err);
2447
2448 err_code |= ERR_ALERT | ERR_FATAL;
2449 goto out;
2450 }
2451 }
2452
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002453 if (!defsrv)
2454 err_code |= server_finalize_init(file, linenum, args, cur_arg, newsrv, curproxy);
2455 if (err_code & ERR_FATAL)
2456 goto out;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002457 if (srv_tmpl)
2458 server_template_init(newsrv, curproxy);
Willy Tarreau272adea2014-03-31 10:39:59 +02002459 }
Willy Tarreau07101d52015-09-08 16:16:35 +02002460 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002461 return 0;
2462
2463 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02002464 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002465 free(errmsg);
2466 return err_code;
2467}
2468
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002469/* Returns a pointer to the first server matching either id <id>.
2470 * NULL is returned if no match is found.
2471 * the lookup is performed in the backend <bk>
2472 */
2473struct server *server_find_by_id(struct proxy *bk, int id)
2474{
2475 struct eb32_node *eb32;
2476 struct server *curserver;
2477
2478 if (!bk || (id ==0))
2479 return NULL;
2480
2481 /* <bk> has no backend capabilities, so it can't have a server */
2482 if (!(bk->cap & PR_CAP_BE))
2483 return NULL;
2484
2485 curserver = NULL;
2486
2487 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2488 if (eb32)
2489 curserver = container_of(eb32, struct server, conf.id);
2490
2491 return curserver;
2492}
2493
2494/* Returns a pointer to the first server matching either name <name>, or id
2495 * if <name> starts with a '#'. NULL is returned if no match is found.
2496 * the lookup is performed in the backend <bk>
2497 */
2498struct server *server_find_by_name(struct proxy *bk, const char *name)
2499{
2500 struct server *curserver;
2501
2502 if (!bk || !name)
2503 return NULL;
2504
2505 /* <bk> has no backend capabilities, so it can't have a server */
2506 if (!(bk->cap & PR_CAP_BE))
2507 return NULL;
2508
2509 curserver = NULL;
2510 if (*name == '#') {
2511 curserver = server_find_by_id(bk, atoi(name + 1));
2512 if (curserver)
2513 return curserver;
2514 }
2515 else {
2516 curserver = bk->srv;
2517
2518 while (curserver && (strcmp(curserver->id, name) != 0))
2519 curserver = curserver->next;
2520
2521 if (curserver)
2522 return curserver;
2523 }
2524
2525 return NULL;
2526}
2527
2528struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2529{
2530 struct server *byname;
2531 struct server *byid;
2532
2533 if (!name && !id)
2534 return NULL;
2535
2536 if (diff)
2537 *diff = 0;
2538
2539 byname = byid = NULL;
2540
2541 if (name) {
2542 byname = server_find_by_name(bk, name);
2543 if (byname && (!id || byname->puid == id))
2544 return byname;
2545 }
2546
2547 /* remaining possibilities :
2548 * - name not set
2549 * - name set but not found
2550 * - name found but ID doesn't match
2551 */
2552 if (id) {
2553 byid = server_find_by_id(bk, id);
2554 if (byid) {
2555 if (byname) {
2556 /* use id only if forced by configuration */
2557 if (byid->flags & SRV_F_FORCED_ID) {
2558 if (diff)
2559 *diff |= 2;
2560 return byid;
2561 }
2562 else {
2563 if (diff)
2564 *diff |= 1;
2565 return byname;
2566 }
2567 }
2568
2569 /* remaining possibilities:
2570 * - name not set
2571 * - name set but not found
2572 */
2573 if (name && diff)
2574 *diff |= 2;
2575 return byid;
2576 }
2577
2578 /* id bot found */
2579 if (byname) {
2580 if (diff)
2581 *diff |= 1;
2582 return byname;
2583 }
2584 }
2585
2586 return NULL;
2587}
2588
Willy Tarreau46b7f532018-08-21 11:54:26 +02002589/* Update a server state using the parameters available in the params list.
2590 *
2591 * Grabs the server lock during operation.
2592 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002593static void srv_update_state(struct server *srv, int version, char **params)
2594{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002595 char *p;
Willy Tarreau83061a82018-07-13 11:56:34 +02002596 struct buffer *msg;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002597
2598 /* fields since version 1
2599 * and common to all other upcoming versions
2600 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002601 enum srv_state srv_op_state;
2602 enum srv_admin srv_admin_state;
2603 unsigned srv_uweight, srv_iweight;
2604 unsigned long srv_last_time_change;
2605 short srv_check_status;
2606 enum chk_result srv_check_result;
2607 int srv_check_health;
2608 int srv_check_state, srv_agent_state;
2609 int bk_f_forced_id;
2610 int srv_f_forced_id;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002611 int fqdn_set_by_cli;
2612 const char *fqdn;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002613 const char *port_str;
2614 unsigned int port;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002615 char *srvrecord;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002616
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002617 fqdn = NULL;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002618 port = 0;
Willy Tarreau31138fa2015-09-29 18:38:47 +02002619 msg = get_trash_chunk();
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002620 switch (version) {
2621 case 1:
2622 /*
2623 * now we can proceed with server's state update:
2624 * srv_addr: params[0]
2625 * srv_op_state: params[1]
2626 * srv_admin_state: params[2]
2627 * srv_uweight: params[3]
2628 * srv_iweight: params[4]
2629 * srv_last_time_change: params[5]
2630 * srv_check_status: params[6]
2631 * srv_check_result: params[7]
2632 * srv_check_health: params[8]
2633 * srv_check_state: params[9]
2634 * srv_agent_state: params[10]
2635 * bk_f_forced_id: params[11]
2636 * srv_f_forced_id: params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002637 * srv_fqdn: params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02002638 * srv_port: params[14]
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002639 * srvrecord: params[15]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002640 */
2641
2642 /* validating srv_op_state */
2643 p = NULL;
2644 errno = 0;
2645 srv_op_state = strtol(params[1], &p, 10);
2646 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
2647 (srv_op_state != SRV_ST_STOPPED &&
2648 srv_op_state != SRV_ST_STARTING &&
2649 srv_op_state != SRV_ST_RUNNING &&
2650 srv_op_state != SRV_ST_STOPPING)) {
2651 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
2652 }
2653
2654 /* validating srv_admin_state */
2655 p = NULL;
2656 errno = 0;
2657 srv_admin_state = strtol(params[2], &p, 10);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002658 fqdn_set_by_cli = !!(srv_admin_state & SRV_ADMF_HMAINT);
Willy Tarreau757478e2016-11-03 19:22:19 +01002659
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002660 /* inherited statuses will be recomputed later.
2661 * Also disable SRV_ADMF_HMAINT flag (set from stats socket fqdn).
2662 */
2663 srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_HMAINT;
Willy Tarreau757478e2016-11-03 19:22:19 +01002664
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002665 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
2666 (srv_admin_state != 0 &&
2667 srv_admin_state != SRV_ADMF_FMAINT &&
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002668 srv_admin_state != SRV_ADMF_CMAINT &&
2669 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
Willy Tarreaue1bde142016-11-03 18:33:25 +01002670 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FDRAIN) &&
Willy Tarreau757478e2016-11-03 19:22:19 +01002671 srv_admin_state != SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002672 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
2673 }
2674
2675 /* validating srv_uweight */
2676 p = NULL;
2677 errno = 0;
2678 srv_uweight = strtol(params[3], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002679 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002680 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
2681
2682 /* validating srv_iweight */
2683 p = NULL;
2684 errno = 0;
2685 srv_iweight = strtol(params[4], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002686 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002687 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
2688
2689 /* validating srv_last_time_change */
2690 p = NULL;
2691 errno = 0;
2692 srv_last_time_change = strtol(params[5], &p, 10);
2693 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2694 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
2695
2696 /* validating srv_check_status */
2697 p = NULL;
2698 errno = 0;
2699 srv_check_status = strtol(params[6], &p, 10);
2700 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2701 (srv_check_status >= HCHK_STATUS_SIZE))
2702 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
2703
2704 /* validating srv_check_result */
2705 p = NULL;
2706 errno = 0;
2707 srv_check_result = strtol(params[7], &p, 10);
2708 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2709 (srv_check_result != CHK_RES_UNKNOWN &&
2710 srv_check_result != CHK_RES_NEUTRAL &&
2711 srv_check_result != CHK_RES_FAILED &&
2712 srv_check_result != CHK_RES_PASSED &&
2713 srv_check_result != CHK_RES_CONDPASS)) {
2714 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2715 }
2716
2717 /* validating srv_check_health */
2718 p = NULL;
2719 errno = 0;
2720 srv_check_health = strtol(params[8], &p, 10);
2721 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2722 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
2723
2724 /* validating srv_check_state */
2725 p = NULL;
2726 errno = 0;
2727 srv_check_state = strtol(params[9], &p, 10);
2728 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2729 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2730 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
2731
2732 /* validating srv_agent_state */
2733 p = NULL;
2734 errno = 0;
2735 srv_agent_state = strtol(params[10], &p, 10);
2736 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2737 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2738 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
2739
2740 /* validating bk_f_forced_id */
2741 p = NULL;
2742 errno = 0;
2743 bk_f_forced_id = strtol(params[11], &p, 10);
2744 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
2745 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
2746
2747 /* validating srv_f_forced_id */
2748 p = NULL;
2749 errno = 0;
2750 srv_f_forced_id = strtol(params[12], &p, 10);
2751 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
2752 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
2753
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002754 /* validating srv_fqdn */
2755 fqdn = params[13];
2756 if (fqdn && *fqdn == '-')
2757 fqdn = NULL;
2758 if (fqdn && (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn))) {
2759 chunk_appendf(msg, ", invalid srv_fqdn value '%s'", params[13]);
2760 fqdn = NULL;
2761 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002762
Frédéric Lécaille31694712017-08-01 08:47:19 +02002763 port_str = params[14];
2764 if (port_str) {
2765 port = strl2uic(port_str, strlen(port_str));
2766 if (port > USHRT_MAX) {
2767 chunk_appendf(msg, ", invalid srv_port value '%s'", port_str);
2768 port_str = NULL;
2769 }
2770 }
2771
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002772 /* SRV record
2773 * NOTE: in HAProxy, SRV records must start with an underscore '_'
2774 */
2775 srvrecord = params[15];
2776 if (srvrecord && *srvrecord != '_')
2777 srvrecord = NULL;
2778
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002779 /* don't apply anything if one error has been detected */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002780 if (msg->data)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002781 goto out;
2782
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002783 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002784 /* recover operational state and apply it to this server
2785 * and all servers tracking this one */
Jérôme Magninf57afa42019-01-20 11:27:40 +01002786 srv->check.health = srv_check_health;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002787 switch (srv_op_state) {
2788 case SRV_ST_STOPPED:
2789 srv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02002790 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002791 break;
2792 case SRV_ST_STARTING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002793 /* If rise == 1 there is no STARTING state, let's switch to
2794 * RUNNING
2795 */
2796 if (srv->check.rise == 1) {
2797 srv->check.health = srv->check.rise + srv->check.fall - 1;
2798 srv_set_running(srv, "", NULL);
2799 break;
2800 }
2801 if (srv->check.health < 1 || srv->check.health >= srv->check.rise)
2802 srv->check.health = srv->check.rise - 1;
Emeric Brun52a91d32017-08-31 14:41:55 +02002803 srv->next_state = srv_op_state;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002804 break;
2805 case SRV_ST_STOPPING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002806 /* If fall == 1 there is no STOPPING state, let's switch to
2807 * STOPPED
2808 */
2809 if (srv->check.fall == 1) {
2810 srv->check.health = 0;
2811 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
2812 break;
2813 }
2814 if (srv->check.health < srv->check.rise ||
2815 srv->check.health > srv->check.rise + srv->check.fall - 2)
2816 srv->check.health = srv->check.rise;
Emeric Brun5a133512017-10-19 14:42:30 +02002817 srv_set_stopping(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002818 break;
2819 case SRV_ST_RUNNING:
2820 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02002821 srv_set_running(srv, "", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002822 break;
2823 }
2824
2825 /* When applying server state, the following rules apply:
2826 * - in case of a configuration change, we apply the setting from the new
2827 * configuration, regardless of old running state
2828 * - if no configuration change, we apply old running state only if old running
2829 * state is different from new configuration state
2830 */
2831 /* configuration has changed */
Emeric Brun52a91d32017-08-31 14:41:55 +02002832 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->next_admin & SRV_ADMF_CMAINT)) {
2833 if (srv->next_admin & SRV_ADMF_CMAINT)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002834 srv_adm_set_maint(srv);
2835 else
2836 srv_adm_set_ready(srv);
2837 }
2838 /* configuration is the same, let's compate old running state and new conf state */
2839 else {
Emeric Brun52a91d32017-08-31 14:41:55 +02002840 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002841 srv_adm_set_maint(srv);
Emeric Brun52a91d32017-08-31 14:41:55 +02002842 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002843 srv_adm_set_ready(srv);
2844 }
2845 /* apply drain mode if server is currently enabled */
Emeric Brun52a91d32017-08-31 14:41:55 +02002846 if (!(srv->next_admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002847 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
Willy Tarreau22cace22016-11-03 18:19:49 +01002848 * (srv->iweight is the weight set up in configuration).
2849 * There are two possible reasons for FDRAIN to have been present :
2850 * - previous config weight was zero
2851 * - "set server b/s drain" was sent to the CLI
2852 *
2853 * In the first case, we simply want to drop this drain state
2854 * if the new weight is not zero anymore, meaning the administrator
2855 * has intentionally turned the weight back to a positive value to
2856 * enable the server again after an operation. In the second case,
2857 * the drain state was forced on the CLI regardless of the config's
2858 * weight so we don't want a change to the config weight to lose this
2859 * status. What this means is :
2860 * - if previous weight was 0 and new one is >0, drop the DRAIN state.
2861 * - if the previous weight was >0, keep it.
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002862 */
Willy Tarreau22cace22016-11-03 18:19:49 +01002863 if (srv_iweight > 0 || srv->iweight == 0)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002864 srv_adm_set_drain(srv);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002865 }
2866
2867 srv->last_change = date.tv_sec - srv_last_time_change;
2868 srv->check.status = srv_check_status;
2869 srv->check.result = srv_check_result;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002870
2871 /* Only case we want to apply is removing ENABLED flag which could have been
2872 * done by the "disable health" command over the stats socket
2873 */
2874 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2875 (srv_check_state & CHK_ST_CONFIGURED) &&
2876 !(srv_check_state & CHK_ST_ENABLED))
2877 srv->check.state &= ~CHK_ST_ENABLED;
2878
2879 /* Only case we want to apply is removing ENABLED flag which could have been
2880 * done by the "disable agent" command over the stats socket
2881 */
2882 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
2883 (srv_agent_state & CHK_ST_CONFIGURED) &&
2884 !(srv_agent_state & CHK_ST_ENABLED))
2885 srv->agent.state &= ~CHK_ST_ENABLED;
2886
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002887 /* We want to apply the previous 'running' weight (srv_uweight) only if there
2888 * was no change in the configuration: both previous and new iweight are equals
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002889 *
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002890 * It means that a configuration file change has precedence over a unix socket change
2891 * for server's weight
2892 *
2893 * by default, HAProxy applies the following weight when parsing the configuration
2894 * srv->uweight = srv->iweight
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002895 */
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002896 if (srv_iweight == srv->iweight) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002897 srv->uweight = srv_uweight;
2898 }
Willy Tarreau3ff577e2018-08-02 11:48:52 +02002899 server_recalc_eweight(srv, 1);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002900
Willy Tarreaue5a60682016-11-09 14:54:53 +01002901 /* load server IP address */
Daniel Corbett9215ffa2018-05-19 19:43:24 -04002902 if (strcmp(params[0], "-"))
2903 srv->lastaddr = strdup(params[0]);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002904
2905 if (fqdn && srv->hostname) {
2906 if (!strcmp(srv->hostname, fqdn)) {
2907 /* Here we reset the 'set from stats socket FQDN' flag
2908 * to support such transitions:
2909 * Let's say initial FQDN value is foo1 (in configuration file).
2910 * - FQDN changed from stats socket, from foo1 to foo2 value,
2911 * - FQDN changed again from file configuration (with the same previous value
2912 set from stats socket, from foo1 to foo2 value),
2913 * - reload for any other reason than a FQDN modification,
2914 * the configuration file FQDN matches the fqdn server state file value.
2915 * So we must reset the 'set from stats socket FQDN' flag to be consistent with
Joseph Herlant44466822018-11-15 08:57:51 -08002916 * any further FQDN modification.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002917 */
Emeric Brun52a91d32017-08-31 14:41:55 +02002918 srv->next_admin &= ~SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002919 }
2920 else {
2921 /* If the FDQN has been changed from stats socket,
2922 * apply fqdn state file value (which is the value set
2923 * from stats socket).
Baptiste Assmann13a92322019-06-07 09:40:55 +02002924 * Also ensure the runtime resolver will process this resolution.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002925 */
2926 if (fqdn_set_by_cli) {
Olivier Houchardd16bfe62017-10-31 15:21:19 +01002927 srv_set_fqdn(srv, fqdn, 0);
Baptiste Assmann13a92322019-06-07 09:40:55 +02002928 srv->flags &= ~SRV_F_NO_RESOLUTION;
Emeric Brun52a91d32017-08-31 14:41:55 +02002929 srv->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002930 }
2931 }
2932 }
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002933 /* If all the conditions below are validated, this means
2934 * we're evaluating a server managed by SRV resolution
2935 */
2936 else if (fqdn && !srv->hostname && srvrecord) {
2937 int res;
2938
2939 /* we can't apply previous state if SRV record has changed */
2940 if (srv->srvrq && strcmp(srv->srvrq->name, srvrecord) != 0) {
2941 chunk_appendf(msg, ", SRV record mismatch between configuration ('%s') and state file ('%s) for server '%s'. Previous state not applied", srv->srvrq->name, srvrecord, srv->id);
2942 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2943 goto out;
2944 }
2945
2946 /* create or find a SRV resolution for this srv record */
2947 if (srv->srvrq == NULL && (srv->srvrq = find_srvrq_by_name(srvrecord, srv->proxy)) == NULL)
2948 srv->srvrq = new_dns_srvrq(srv, srvrecord);
2949 if (srv->srvrq == NULL) {
2950 chunk_appendf(msg, ", can't create or find SRV resolution '%s' for server '%s'", srvrecord, srv->id);
2951 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2952 goto out;
2953 }
2954
2955 /* prepare DNS resolution for this server */
2956 res = srv_prepare_for_resolution(srv, fqdn);
2957 if (res == -1) {
2958 chunk_appendf(msg, ", can't allocate memory for DNS resolution for server '%s'", srv->id);
2959 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2960 goto out;
2961 }
2962
2963 /* configure check.port accordingly */
2964 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2965 !(srv->flags & SRV_F_CHECKPORT))
2966 srv->check.port = port;
2967
2968 /* Unset SRV_F_MAPPORTS for SRV records.
2969 * SRV_F_MAPPORTS is unfortunately set by parse_server()
2970 * because no ports are provided in the configuration file.
2971 * This is because HAProxy will use the port found into the SRV record.
2972 */
2973 srv->flags &= ~SRV_F_MAPPORTS;
2974 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002975
Frédéric Lécaille31694712017-08-01 08:47:19 +02002976 if (port_str)
2977 srv->svc_port = port;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002978 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Frédéric Lécaille31694712017-08-01 08:47:19 +02002979
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002980 break;
2981 default:
2982 chunk_appendf(msg, ", version '%d' not supported", version);
2983 }
2984
2985 out:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002986 if (msg->data) {
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002987 chunk_appendf(msg, "\n");
Christopher Faulet767a84b2017-11-24 16:50:31 +01002988 ha_warning("server-state application failed for server '%s/%s'%s",
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002989 srv->proxy->id, srv->id, msg->area);
Baptiste Assmann0821bb92016-01-21 00:20:50 +01002990 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002991}
2992
Baptiste Assmannda29fe22019-06-13 13:24:29 +02002993
2994/*
2995 * read next line from file <f> and return the server state version if one found.
2996 * If no version is found, then 0 is returned
2997 * Note that this should be the first read on <f>
2998 */
2999static int srv_state_get_version(FILE *f) {
3000 char buf[2];
3001 int ret;
3002
3003 /* first character of first line of the file must contain the version of the export */
3004 if (fgets(buf, 2, f) == NULL) {
3005 return 0;
3006 }
3007
3008 ret = atoi(buf);
3009 if ((ret < SRV_STATE_FILE_VERSION_MIN) ||
3010 (ret > SRV_STATE_FILE_VERSION_MAX))
3011 return 0;
3012
3013 return ret;
3014}
3015
3016
3017/*
3018 * parses server state line stored in <buf> and supposedly in version <version>.
3019 * Set <params> and <srv_params> accordingly.
3020 * In case of error, params[0] is set to NULL.
3021 */
3022static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params)
3023{
3024 int buflen, arg, srv_arg;
3025 char *cur, *end;
3026
3027 buflen = strlen(buf);
3028 cur = buf;
3029 end = cur + buflen;
3030
3031 /* we need at least one character */
3032 if (buflen == 0) {
3033 params[0] = NULL;
3034 return;
3035 }
3036
3037 /* ignore blank characters at the beginning of the line */
Willy Tarreau90807112020-02-25 08:16:33 +01003038 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003039 ++cur;
3040
3041 /* Ignore empty or commented lines */
3042 if (cur == end || *cur == '#') {
3043 params[0] = NULL;
3044 return;
3045 }
3046
3047 /* truncated lines */
3048 if (buf[buflen - 1] != '\n') {
3049 //ha_warning("server-state file '%s': truncated line\n", filepath);
3050 params[0] = NULL;
3051 return;
3052 }
3053
3054 /* Removes trailing '\n' */
3055 buf[buflen - 1] = '\0';
3056
3057 /* we're now ready to move the line into *srv_params[] */
3058 params[0] = cur;
3059 arg = 1;
3060 srv_arg = 0;
3061 while (*cur && arg < SRV_STATE_FILE_MAX_FIELDS) {
Willy Tarreau90807112020-02-25 08:16:33 +01003062 if (isspace((unsigned char)*cur)) {
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003063 *cur = '\0';
3064 ++cur;
Willy Tarreau90807112020-02-25 08:16:33 +01003065 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003066 ++cur;
3067 switch (version) {
3068 case 1:
3069 /*
3070 * srv_addr: params[4] => srv_params[0]
3071 * srv_op_state: params[5] => srv_params[1]
3072 * srv_admin_state: params[6] => srv_params[2]
3073 * srv_uweight: params[7] => srv_params[3]
3074 * srv_iweight: params[8] => srv_params[4]
3075 * srv_last_time_change: params[9] => srv_params[5]
3076 * srv_check_status: params[10] => srv_params[6]
3077 * srv_check_result: params[11] => srv_params[7]
3078 * srv_check_health: params[12] => srv_params[8]
3079 * srv_check_state: params[13] => srv_params[9]
3080 * srv_agent_state: params[14] => srv_params[10]
3081 * bk_f_forced_id: params[15] => srv_params[11]
3082 * srv_f_forced_id: params[16] => srv_params[12]
3083 * srv_fqdn: params[17] => srv_params[13]
3084 * srv_port: params[18] => srv_params[14]
3085 * srvrecord: params[19] => srv_params[15]
3086 */
3087 if (arg >= 4) {
3088 srv_params[srv_arg] = cur;
3089 ++srv_arg;
3090 }
3091 break;
3092 }
3093
3094 params[arg] = cur;
3095 ++arg;
3096 }
3097 else {
3098 ++cur;
3099 }
3100 }
3101
3102 /* if line is incomplete line, then ignore it.
3103 * otherwise, update useful flags */
3104 switch (version) {
3105 case 1:
3106 if (arg < SRV_STATE_FILE_NB_FIELDS_VERSION_1) {
3107 params[0] = NULL;
3108 return;
3109 }
3110 break;
3111 }
3112
3113 return;
3114}
3115
3116
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003117/* This function parses all the proxies and only take care of the backends (since we're looking for server)
3118 * For each proxy, it does the following:
3119 * - opens its server state file (either one or local one)
3120 * - read whole file, line by line
3121 * - analyse each line to check if it matches our current backend:
3122 * - backend name matches
3123 * - backend id matches if id is forced and name doesn't match
3124 * - if the server pointed by the line is found, then state is applied
3125 *
3126 * If the running backend uuid or id differs from the state file, then HAProxy reports
3127 * a warning.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003128 *
3129 * Grabs the server's lock via srv_update_state().
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003130 */
3131void apply_server_state(void)
3132{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003133 char mybuf[SRV_STATE_LINE_MAXLEN];
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003134 char *params[SRV_STATE_FILE_MAX_FIELDS] = {0};
3135 char *srv_params[SRV_STATE_FILE_MAX_FIELDS] = {0};
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003136 int version, global_file_version;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003137 FILE *f;
3138 char *filepath;
3139 char globalfilepath[MAXPATHLEN + 1];
3140 char localfilepath[MAXPATHLEN + 1];
3141 int len, fileopenerr, globalfilepathlen, localfilepathlen;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003142 struct proxy *curproxy, *bk;
3143 struct server *srv;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003144 char *line;
3145 char *bkname, *srvname;
3146 struct state_line *st;
3147 struct ebmb_node *node, *next_node;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003148
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003149
3150 global_file_version = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003151 globalfilepathlen = 0;
3152 /* create the globalfilepath variable */
3153 if (global.server_state_file) {
3154 /* absolute path or no base directory provided */
3155 if ((global.server_state_file[0] == '/') || (!global.server_state_base)) {
3156 len = strlen(global.server_state_file);
3157 if (len > MAXPATHLEN) {
3158 globalfilepathlen = 0;
3159 goto globalfileerror;
3160 }
3161 memcpy(globalfilepath, global.server_state_file, len);
3162 globalfilepath[len] = '\0';
3163 globalfilepathlen = len;
3164 }
3165 else if (global.server_state_base) {
3166 len = strlen(global.server_state_base);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003167 if (len > MAXPATHLEN) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003168 globalfilepathlen = 0;
3169 goto globalfileerror;
3170 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003171 memcpy(globalfilepath, global.server_state_base, len);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003172 globalfilepath[len] = 0;
3173 globalfilepathlen = len;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003174
3175 /* append a slash if needed */
3176 if (!globalfilepathlen || globalfilepath[globalfilepathlen - 1] != '/') {
3177 if (globalfilepathlen + 1 > MAXPATHLEN) {
3178 globalfilepathlen = 0;
3179 goto globalfileerror;
3180 }
3181 globalfilepath[globalfilepathlen++] = '/';
3182 }
3183
3184 len = strlen(global.server_state_file);
3185 if (globalfilepathlen + len > MAXPATHLEN) {
3186 globalfilepathlen = 0;
3187 goto globalfileerror;
3188 }
3189 memcpy(globalfilepath + globalfilepathlen, global.server_state_file, len);
3190 globalfilepathlen += len;
3191 globalfilepath[globalfilepathlen++] = 0;
3192 }
3193 }
3194 globalfileerror:
3195 if (globalfilepathlen == 0)
3196 globalfilepath[0] = '\0';
3197
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003198 /* Load global server state in a tree */
3199 if (globalfilepathlen > 0) {
3200 errno = 0;
3201 f = fopen(globalfilepath, "r");
3202 if (errno)
3203 ha_warning("Can't open global server state file '%s': %s\n", globalfilepath, strerror(errno));
Vedran Furac5d486272019-10-16 14:49:38 +02003204 if (!f)
3205 goto out_load_server_state_in_tree;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003206
3207 global_file_version = srv_state_get_version(f);
3208 if (global_file_version == 0)
3209 goto out_load_server_state_in_tree;
3210
3211 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3212 line = NULL;
3213
3214 line = strdup(mybuf);
3215 if (line == NULL)
3216 continue;
3217
3218 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3219 if (params[0] == NULL)
Willy Tarreauca7a5af2019-12-20 17:26:27 +01003220 goto nextline;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003221
3222 /* bkname */
3223 bkname = params[1];
3224 /* srvname */
3225 srvname = params[3];
3226
3227 /* key */
3228 chunk_printf(&trash, "%s %s", bkname, srvname);
3229
3230 /* store line in tree */
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003231 st = calloc(1, sizeof(*st) + trash.data + 1);
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003232 if (st == NULL) {
3233 goto nextline;
3234 }
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003235 memcpy(st->name_name.key, trash.area, trash.data + 1);
Willy Tarreaufd1aa012019-12-20 17:23:40 +01003236 if (ebst_insert(&state_file, &st->name_name) != &st->name_name) {
3237 /* this is a duplicate key, probably a hand-crafted file,
3238 * drop it!
3239 */
3240 goto nextline;
3241 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003242
3243 /* save line */
3244 st->line = line;
3245
3246 continue;
3247
3248 nextline:
3249 /* free up memory in case of error during the processing of the line */
3250 free(line);
3251 }
3252 }
3253 out_load_server_state_in_tree:
3254
3255 /* parse all proxies and load states form tree (global file) or from local file */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003256 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003257 /* servers are only in backends */
3258 if (!(curproxy->cap & PR_CAP_BE))
3259 continue;
3260 fileopenerr = 0;
3261 filepath = NULL;
3262
3263 /* search server state file path and name */
3264 switch (curproxy->load_server_state_from_file) {
3265 /* read servers state from global file */
3266 case PR_SRV_STATE_FILE_GLOBAL:
3267 /* there was an error while generating global server state file path */
3268 if (globalfilepathlen == 0)
3269 continue;
3270 filepath = globalfilepath;
3271 fileopenerr = 1;
3272 break;
3273 /* this backend has its own file */
3274 case PR_SRV_STATE_FILE_LOCAL:
3275 localfilepathlen = 0;
3276 localfilepath[0] = '\0';
3277 len = 0;
3278 /* create the localfilepath variable */
3279 /* absolute path or no base directory provided */
3280 if ((curproxy->server_state_file_name[0] == '/') || (!global.server_state_base)) {
3281 len = strlen(curproxy->server_state_file_name);
3282 if (len > MAXPATHLEN) {
3283 localfilepathlen = 0;
3284 goto localfileerror;
3285 }
3286 memcpy(localfilepath, curproxy->server_state_file_name, len);
3287 localfilepath[len] = '\0';
3288 localfilepathlen = len;
3289 }
3290 else if (global.server_state_base) {
3291 len = strlen(global.server_state_base);
3292 localfilepathlen += len;
3293
3294 if (localfilepathlen > MAXPATHLEN) {
3295 localfilepathlen = 0;
3296 goto localfileerror;
3297 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003298 memcpy(localfilepath, global.server_state_base, len);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003299 localfilepath[localfilepathlen] = 0;
3300
3301 /* append a slash if needed */
3302 if (!localfilepathlen || localfilepath[localfilepathlen - 1] != '/') {
3303 if (localfilepathlen + 1 > MAXPATHLEN) {
3304 localfilepathlen = 0;
3305 goto localfileerror;
3306 }
3307 localfilepath[localfilepathlen++] = '/';
3308 }
3309
3310 len = strlen(curproxy->server_state_file_name);
3311 if (localfilepathlen + len > MAXPATHLEN) {
3312 localfilepathlen = 0;
3313 goto localfileerror;
3314 }
3315 memcpy(localfilepath + localfilepathlen, curproxy->server_state_file_name, len);
3316 localfilepathlen += len;
3317 localfilepath[localfilepathlen++] = 0;
3318 }
3319 filepath = localfilepath;
3320 localfileerror:
3321 if (localfilepathlen == 0)
3322 localfilepath[0] = '\0';
3323
3324 break;
3325 case PR_SRV_STATE_FILE_NONE:
3326 default:
3327 continue;
3328 }
3329
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003330 /* when global file is used, we get data from the tree
3331 * Note that in such case we don't check backend name neither uuid.
3332 * Backend name can't be wrong since it's used as a key to retrieve the server state
3333 * line from the tree.
3334 */
3335 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_GLOBAL) {
3336 struct server *srv = curproxy->srv;
3337 while (srv) {
3338 struct ebmb_node *node;
3339 struct state_line *st;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003340
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003341 chunk_printf(&trash, "%s %s", curproxy->id, srv->id);
3342 node = ebst_lookup(&state_file, trash.area);
3343 if (!node)
3344 goto next;
Dragan Dosencf4fb032015-11-04 23:03:26 +01003345
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003346 st = container_of(node, struct state_line, name_name);
3347 memcpy(mybuf, st->line, strlen(st->line));
3348 mybuf[strlen(st->line)] = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003349
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003350 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3351 if (params[0] == NULL)
3352 goto next;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003353
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003354 srv_update_state(srv, global_file_version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003355
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003356 next:
3357 srv = srv->next;
3358 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003359
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003360 continue; /* next proxy in list */
3361 }
3362 else {
3363 /* load 'local' state file */
3364 errno = 0;
3365 f = fopen(filepath, "r");
3366 if (errno && fileopenerr)
3367 ha_warning("Can't open server state file '%s': %s\n", filepath, strerror(errno));
3368 if (!f)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003369 continue;
3370
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003371 mybuf[0] = '\0';
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003372
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003373 /* first character of first line of the file must contain the version of the export */
3374 version = srv_state_get_version(f);
3375 if (version == 0) {
3376 ha_warning("Can't get version of the server state file '%s'\n", filepath);
3377 goto fileclose;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003378 }
3379
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003380 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3381 int bk_f_forced_id = 0;
3382 int check_id = 0;
3383 int check_name = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003384
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003385 srv_state_parse_line(mybuf, version, params, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003386
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003387 if (params[0] == NULL) {
3388 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003389 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003390
3391 /* if line is incomplete line, then ignore it.
3392 * otherwise, update useful flags */
3393 switch (version) {
3394 case 1:
3395 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
3396 check_id = (atoi(params[0]) == curproxy->uuid);
3397 check_name = (strcmp(curproxy->id, params[1]) == 0);
3398 break;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003399 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003400
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003401 bk = curproxy;
3402
3403 /* if backend can't be found, let's continue */
3404 if (!check_id && !check_name)
3405 continue;
3406 else if (!check_id && check_name) {
3407 ha_warning("backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3408 send_log(bk, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3409 }
3410 else if (check_id && !check_name) {
3411 ha_warning("backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3412 send_log(bk, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3413 /* if name doesn't match, we still want to update curproxy if the backend id
3414 * was forced in previous the previous configuration */
3415 if (!bk_f_forced_id)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003416 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003417 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003418
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003419 /* look for the server by its name: param[3] */
3420 srv = server_find_best_match(bk, params[3], 0, NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003421
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003422 if (!srv) {
3423 /* if no server found, then warning and continue with next line */
3424 ha_warning("can't find server '%s' in backend '%s'\n",
3425 params[3], params[1]);
3426 send_log(bk, LOG_NOTICE, "can't find server '%s' in backend '%s'\n",
3427 params[3], params[1]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003428 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003429 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003430
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003431 /* now we can proceed with server's state update */
3432 srv_update_state(srv, version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003433 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003434 }
Dragan Dosencf4fb032015-11-04 23:03:26 +01003435fileclose:
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003436 fclose(f);
3437 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003438
3439 /* now free memory allocated for the tree */
3440 for (node = ebmb_first(&state_file), next_node = node ? ebmb_next(node) : NULL;
3441 node;
3442 node = next_node, next_node = node ? ebmb_next(node) : NULL) {
3443 st = container_of(node, struct state_line, name_name);
3444 ebmb_delete(&st->name_name);
3445 free(st->line);
3446 free(st);
3447 }
3448
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003449}
3450
Simon Horman7d09b9a2013-02-12 10:45:51 +09003451/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003452 * update a server's current IP address.
3453 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3454 * ip is in network format.
3455 * updater is a string which contains an information about the requester of the update.
3456 * updater is used if not NULL.
3457 *
3458 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003459 *
3460 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003461 */
Thierry Fournierd35b7a62016-02-24 08:23:22 +01003462int update_server_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003463{
3464 /* generates a log line and a warning on stderr */
3465 if (1) {
3466 /* book enough space for both IPv4 and IPv6 */
3467 char oldip[INET6_ADDRSTRLEN];
3468 char newip[INET6_ADDRSTRLEN];
3469
3470 memset(oldip, '\0', INET6_ADDRSTRLEN);
3471 memset(newip, '\0', INET6_ADDRSTRLEN);
3472
3473 /* copy old IP address in a string */
3474 switch (s->addr.ss_family) {
3475 case AF_INET:
3476 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3477 break;
3478 case AF_INET6:
3479 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3480 break;
3481 };
3482
3483 /* copy new IP address in a string */
3484 switch (ip_sin_family) {
3485 case AF_INET:
3486 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3487 break;
3488 case AF_INET6:
3489 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3490 break;
3491 };
3492
3493 /* save log line into a buffer */
3494 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3495 s->proxy->id, s->id, oldip, newip, updater);
3496
3497 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003498 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003499
3500 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003501 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003502 }
3503
3504 /* save the new IP family */
3505 s->addr.ss_family = ip_sin_family;
3506 /* save the new IP address */
3507 switch (ip_sin_family) {
3508 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003509 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003510 break;
3511 case AF_INET6:
3512 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3513 break;
3514 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003515 srv_set_dyncookie(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003516
3517 return 0;
3518}
3519
3520/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003521 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3522 *
3523 * Caller can pass its name through <updater> to get it integrated in the response message
3524 * returned by the function.
3525 *
3526 * The function first does the following, in that order:
3527 * - validates the new addr and/or port
3528 * - checks if an update is required (new IP or port is different than current ones)
3529 * - checks the update is allowed:
3530 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3531 * - allow all changes if no CHECKS are configured
3532 * - if CHECK is configured:
3533 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3534 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3535 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003536 *
3537 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003538 */
3539const char *update_server_addr_port(struct server *s, const char *addr, const char *port, char *updater)
3540{
3541 struct sockaddr_storage sa;
3542 int ret, port_change_required;
3543 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003544 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003545 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003546 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003547
3548 msg = get_trash_chunk();
3549 chunk_reset(msg);
3550
3551 if (addr) {
3552 memset(&sa, 0, sizeof(struct sockaddr_storage));
3553 if (str2ip2(addr, &sa, 0) == NULL) {
3554 chunk_printf(msg, "Invalid addr '%s'", addr);
3555 goto out;
3556 }
3557
3558 /* changes are allowed on AF_INET* families only */
3559 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3560 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3561 goto out;
3562 }
3563
3564 /* collecting data currently setup */
3565 memset(current_addr, '\0', sizeof(current_addr));
3566 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3567 /* changes are allowed on AF_INET* families only */
3568 if ((ret != AF_INET) && (ret != AF_INET6)) {
3569 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3570 goto out;
3571 }
3572
3573 /* applying ADDR changes if required and allowed
3574 * ipcmp returns 0 when both ADDR are the same
3575 */
3576 if (ipcmp(&s->addr, &sa) == 0) {
3577 chunk_appendf(msg, "no need to change the addr");
3578 goto port;
3579 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003580 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003581 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003582
3583 /* we also need to update check's ADDR only if it uses the server's one */
3584 if ((s->check.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_CHECKADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003585 ipcpy(&sa, &s->check.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003586 }
3587
3588 /* we also need to update agent ADDR only if it use the server's one */
3589 if ((s->agent.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_AGENTADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003590 ipcpy(&sa, &s->agent.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003591 }
3592
3593 /* update report for caller */
3594 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3595 }
3596
3597 port:
3598 if (port) {
3599 char sign = '\0';
3600 char *endptr;
3601
3602 if (addr)
3603 chunk_appendf(msg, ", ");
3604
3605 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003606 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003607
3608 /* check if PORT change is required */
3609 port_change_required = 0;
3610
3611 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003612 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003613 new_port = strtol(port, &endptr, 10);
3614 if ((errno != 0) || (port == endptr)) {
3615 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3616 goto out;
3617 }
3618
3619 /* check if caller triggers a port mapped or offset */
3620 if (sign == '-' || (sign == '+')) {
3621 /* check if server currently uses port map */
3622 if (!(s->flags & SRV_F_MAPPORTS)) {
3623 /* switch from fixed port to port map mandatorily triggers
3624 * a port change */
3625 port_change_required = 1;
3626 /* check is configured
3627 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3628 * prevent PORT change if check doesn't have it's dedicated port while switching
3629 * to port mapping */
3630 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3631 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.");
3632 goto out;
3633 }
3634 }
3635 /* we're already using port maps */
3636 else {
3637 port_change_required = current_port != new_port;
3638 }
3639 }
3640 /* fixed port */
3641 else {
3642 port_change_required = current_port != new_port;
3643 }
3644
3645 /* applying PORT changes if required and update response message */
3646 if (port_change_required) {
3647 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003648 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003649 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003650
3651 /* prepare message */
3652 chunk_appendf(msg, "port changed from '");
3653 if (s->flags & SRV_F_MAPPORTS)
3654 chunk_appendf(msg, "+");
3655 chunk_appendf(msg, "%d' to '", current_port);
3656
3657 if (sign == '-') {
3658 s->flags |= SRV_F_MAPPORTS;
3659 chunk_appendf(msg, "%c", sign);
3660 /* just use for result output */
3661 new_port = -new_port;
3662 }
3663 else if (sign == '+') {
3664 s->flags |= SRV_F_MAPPORTS;
3665 chunk_appendf(msg, "%c", sign);
3666 }
3667 else {
3668 s->flags &= ~SRV_F_MAPPORTS;
3669 }
3670
3671 chunk_appendf(msg, "%d'", new_port);
3672
3673 /* we also need to update health checks port only if it uses server's realport */
3674 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3675 s->check.port = new_port;
3676 }
3677 }
3678 else {
3679 chunk_appendf(msg, "no need to change the port");
3680 }
3681 }
3682
3683out:
William Dauchy6318d332020-05-02 21:52:36 +02003684 if (changed) {
3685 /* force connection cleanup on the given server */
3686 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003687 srv_set_dyncookie(s);
William Dauchy6318d332020-05-02 21:52:36 +02003688 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003689 if (updater)
3690 chunk_appendf(msg, " by '%s'", updater);
3691 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003692 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003693}
3694
3695
3696/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003697 * update server status based on result of name resolution
3698 * returns:
3699 * 0 if server status is updated
3700 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003701 *
3702 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003703 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003704int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003705{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003706 struct dns_resolvers *resolvers = s->resolvers;
3707 struct dns_resolution *resolution = s->dns_requester->resolution;
3708 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003709
3710 switch (resolution->status) {
3711 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003712 /* status when HAProxy has just (re)started.
3713 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003714 break;
3715
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003716 case RSLV_STATUS_VALID:
3717 /*
3718 * resume health checks
3719 * server will be turned back on if health check is safe
3720 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003721 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003722 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003723 return 1;
3724 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3725 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003726 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003727 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003728
Emeric Brun52a91d32017-08-31 14:41:55 +02003729 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003730 return 1;
3731 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3732 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3733 s->proxy->id, s->id);
3734
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003735 ha_warning("%s.\n", trash.area);
3736 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003737 return 0;
3738
3739 case RSLV_STATUS_NX:
3740 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003741 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3742 if (!tick_is_expired(exp, now_ms))
3743 break;
3744
3745 if (s->next_admin & SRV_ADMF_RMAINT)
3746 return 1;
3747 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3748 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003749
3750 case RSLV_STATUS_TIMEOUT:
3751 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003752 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3753 if (!tick_is_expired(exp, now_ms))
3754 break;
3755
3756 if (s->next_admin & SRV_ADMF_RMAINT)
3757 return 1;
3758 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3759 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003760
3761 case RSLV_STATUS_REFUSED:
3762 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003763 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3764 if (!tick_is_expired(exp, now_ms))
3765 break;
3766
3767 if (s->next_admin & SRV_ADMF_RMAINT)
3768 return 1;
3769 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3770 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003771
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003772 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003773 /* stop server if resolution failed for a long enough period */
3774 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3775 if (!tick_is_expired(exp, now_ms))
3776 break;
3777
3778 if (s->next_admin & SRV_ADMF_RMAINT)
3779 return 1;
3780 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3781 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003782 }
3783
3784 return 1;
3785}
3786
3787/*
3788 * Server Name Resolution valid response callback
3789 * It expects:
3790 * - <nameserver>: the name server which answered the valid response
3791 * - <response>: buffer containing a valid DNS response
3792 * - <response_len>: size of <response>
3793 * It performs the following actions:
3794 * - ignore response if current ip found and server family not met
3795 * - update with first new ip found if family is met and current IP is not found
3796 * returns:
3797 * 0 on error
3798 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003799 *
3800 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003801 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003802int snr_resolution_cb(struct dns_requester *requester, struct dns_nameserver *nameserver)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003803{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003804 struct server *s = NULL;
3805 struct dns_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003806 void *serverip, *firstip;
3807 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003808 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003809 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003810 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003811
Christopher Faulet67957bd2017-09-27 11:00:59 +02003812 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003813 if (!s)
3814 return 1;
3815
Christopher Faulet67957bd2017-09-27 11:00:59 +02003816 resolution = s->dns_requester->resolution;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003817
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003818 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003819 firstip = NULL; /* pointer to the first valid response found */
3820 /* it will be used as the new IP if a change is required */
3821 firstip_sin_family = AF_UNSPEC;
3822 serverip = NULL; /* current server IP address */
3823
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003824 /* initializing server IP pointer */
3825 server_sin_family = s->addr.ss_family;
3826 switch (server_sin_family) {
3827 case AF_INET:
3828 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3829 break;
3830
3831 case AF_INET6:
3832 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3833 break;
3834
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003835 case AF_UNSPEC:
3836 break;
3837
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003838 default:
3839 goto invalid;
3840 }
3841
Baptiste Assmann729c9012017-05-22 15:13:10 +02003842 ret = dns_get_ip_from_response(&resolution->response, &s->dns_opts,
Thierry Fournierada34842016-02-17 21:25:09 +01003843 serverip, server_sin_family, &firstip,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003844 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003845
3846 switch (ret) {
3847 case DNS_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003848 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003849
3850 case DNS_UPD_SRVIP_NOT_FOUND:
3851 goto save_ip;
3852
3853 case DNS_UPD_CNAME:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003854 goto invalid;
3855
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003856 case DNS_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003857 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003858 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003859
Baptiste Assmannfad03182015-10-28 02:03:32 +01003860 case DNS_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003861 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003862 resolution->status = RSLV_STATUS_OTHER;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003863 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003864
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003865 default:
3866 goto invalid;
3867
3868 }
3869
3870 save_ip:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003871 if (nameserver) {
3872 nameserver->counters.update++;
3873 /* save the first ip we found */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003874 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003875 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003876 else
3877 chunk_printf(chk, "DNS cache");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003878 update_server_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003879
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003880 update_status:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003881 snr_update_srv_status(s, has_no_ip);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003882 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003883
3884 invalid:
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003885 if (nameserver) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02003886 nameserver->counters.invalid++;
3887 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003888 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003889 snr_update_srv_status(s, has_no_ip);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003890 return 0;
3891}
3892
3893/*
3894 * Server Name Resolution error management callback
3895 * returns:
3896 * 0 on error
3897 * 1 when no error or safe ignore
Willy Tarreau46b7f532018-08-21 11:54:26 +02003898 *
3899 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003900 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003901int snr_resolution_error_cb(struct dns_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003902{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003903 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003904
Christopher Faulet67957bd2017-09-27 11:00:59 +02003905 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003906 if (!s)
3907 return 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003908 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003909 snr_update_srv_status(s, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003910 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003911 return 1;
3912}
3913
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003914/*
3915 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003916 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003917 * It returns a pointer to the first server found or NULL if <ip> is not yet
3918 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003919 *
3920 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003921 */
3922struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3923{
3924 struct server *tmpsrv;
3925 struct proxy *be;
3926
3927 if (!srv)
3928 return NULL;
3929
3930 be = srv->proxy;
3931 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003932 /* we found the current server is the same, ignore it */
3933 if (srv == tmpsrv)
3934 continue;
3935
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003936 /* We want to compare the IP in the record with the IP of the servers in the
3937 * same backend, only if:
3938 * * DNS resolution is enabled on the server
3939 * * the hostname used for the resolution by our server is the same than the
3940 * one used for the server found in the backend
3941 * * the server found in the backend is not our current server
3942 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003943 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003944 if ((tmpsrv->hostname_dn == NULL) ||
3945 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
3946 (strcmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01003947 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003948 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003949 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003950 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003951
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003952 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01003953 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003954 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003955 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003956 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003957
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003958 /* At this point, we have 2 different servers using the same DNS hostname
3959 * for their respective resolution.
3960 */
3961 if (*ip_family == tmpsrv->addr.ss_family &&
3962 ((tmpsrv->addr.ss_family == AF_INET &&
3963 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
3964 (tmpsrv->addr.ss_family == AF_INET6 &&
3965 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003966 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003967 return tmpsrv;
3968 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003969 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003970 }
3971
Emeric Brune9fd6b52017-11-02 17:20:39 +01003972
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003973 return NULL;
3974}
3975
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003976/* Sets the server's address (srv->addr) from srv->hostname using the libc's
3977 * resolver. This is suited for initial address configuration. Returns 0 on
3978 * success otherwise a non-zero error code. In case of error, *err_code, if
3979 * not NULL, is filled up.
3980 */
3981int srv_set_addr_via_libc(struct server *srv, int *err_code)
3982{
3983 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003984 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01003985 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003986 return 1;
3987 }
3988 return 0;
3989}
3990
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003991/* Set the server's FDQN (->hostname) from <hostname>.
3992 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003993 *
3994 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003995 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01003996int srv_set_fqdn(struct server *srv, const char *hostname, int dns_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003997{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003998 struct dns_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003999 char *hostname_dn;
4000 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004001
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02004002 /* Note that the server lock is already held. */
4003 if (!srv->resolvers)
4004 return -1;
4005
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004006 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004007 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004008 /* run time DNS resolution was not active for this server
4009 * and we can't enable it at run time for now.
4010 */
4011 if (!srv->dns_requester)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004012 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004013
4014 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004015 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004016 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004017 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
4018 hostname_dn, trash.size);
4019 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004020 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004021
Christopher Faulet67957bd2017-09-27 11:00:59 +02004022 resolution = srv->dns_requester->resolution;
4023 if (resolution &&
4024 resolution->hostname_dn &&
4025 !strcmp(resolution->hostname_dn, hostname_dn))
Christopher Fauletb2812a62017-10-04 16:17:58 +02004026 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004027
Christopher Faulet67957bd2017-09-27 11:00:59 +02004028 dns_unlink_resolution(srv->dns_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004029
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004030 free(srv->hostname);
4031 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004032 srv->hostname = strdup(hostname);
4033 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004034 srv->hostname_dn_len = hostname_dn_len;
4035 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004036 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004037
Baptiste Assmann13a92322019-06-07 09:40:55 +02004038 if (srv->flags & SRV_F_NO_RESOLUTION)
4039 goto end;
4040
Olivier Houchard55dcdf42017-11-06 15:15:04 +01004041 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004042 goto err;
4043
4044 end:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004045 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004046 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004047 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02004048
4049 err:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004050 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004051 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02004052 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004053}
4054
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004055/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
4056 * from the state file. This is suited for initial address configuration.
4057 * Returns 0 on success otherwise a non-zero error code. In case of error,
4058 * *err_code, if not NULL, is filled up.
4059 */
4060static int srv_apply_lastaddr(struct server *srv, int *err_code)
4061{
4062 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
4063 if (err_code)
4064 *err_code |= ERR_WARN;
4065 return 1;
4066 }
4067 return 0;
4068}
4069
Willy Tarreau25e51522016-11-04 15:10:17 +01004070/* returns 0 if no error, otherwise a combination of ERR_* flags */
4071static int srv_iterate_initaddr(struct server *srv)
4072{
4073 int return_code = 0;
4074 int err_code;
4075 unsigned int methods;
4076
4077 methods = srv->init_addr_methods;
4078 if (!methods) { // default to "last,libc"
4079 srv_append_initaddr(&methods, SRV_IADDR_LAST);
4080 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
4081 }
4082
Willy Tarreau3eed10e2016-11-07 21:03:16 +01004083 /* "-dr" : always append "none" so that server addresses resolution
4084 * failures are silently ignored, this is convenient to validate some
4085 * configs out of their environment.
4086 */
4087 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
4088 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4089
Willy Tarreau25e51522016-11-04 15:10:17 +01004090 while (methods) {
4091 err_code = 0;
4092 switch (srv_get_next_initaddr(&methods)) {
4093 case SRV_IADDR_LAST:
4094 if (!srv->lastaddr)
4095 continue;
4096 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004097 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004098 return_code |= err_code;
4099 break;
4100
4101 case SRV_IADDR_LIBC:
4102 if (!srv->hostname)
4103 continue;
4104 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004105 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004106 return_code |= err_code;
4107 break;
4108
Willy Tarreau37ebe122016-11-04 15:17:58 +01004109 case SRV_IADDR_NONE:
4110 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004111 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004112 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
4113 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004114 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01004115 return return_code;
4116
Willy Tarreau4310d362016-11-02 15:05:56 +01004117 case SRV_IADDR_IP:
4118 ipcpy(&srv->init_addr, &srv->addr);
4119 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004120 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', falling back to configured address.\n",
4121 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
Willy Tarreau4310d362016-11-02 15:05:56 +01004122 }
Olivier Houchard4e694042017-03-14 20:01:29 +01004123 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01004124
Willy Tarreau25e51522016-11-04 15:10:17 +01004125 default: /* unhandled method */
4126 break;
4127 }
4128 }
4129
4130 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004131 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Willy Tarreau25e51522016-11-04 15:10:17 +01004132 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
4133 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01004134 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004135 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Willy Tarreau465b6e52016-11-07 19:19:22 +01004136 srv->conf.file, srv->conf.line, srv->id, srv->hostname);
4137 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004138
4139 return_code |= ERR_ALERT | ERR_FATAL;
4140 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01004141out:
4142 srv_set_dyncookie(srv);
4143 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01004144}
4145
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004146/*
4147 * This function parses all backends and all servers within each backend
4148 * and performs servers' addr resolution based on information provided by:
4149 * - configuration file
4150 * - server-state file (states provided by an 'old' haproxy process)
4151 *
4152 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
4153 */
4154int srv_init_addr(void)
4155{
4156 struct proxy *curproxy;
4157 int return_code = 0;
4158
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004159 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004160 while (curproxy) {
4161 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004162
4163 /* servers are in backend only */
4164 if (!(curproxy->cap & PR_CAP_BE))
4165 goto srv_init_addr_next;
4166
Willy Tarreau25e51522016-11-04 15:10:17 +01004167 for (srv = curproxy->srv; srv; srv = srv->next)
Willy Tarreau3d609a72017-09-06 14:22:45 +02004168 if (srv->hostname)
4169 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004170
4171 srv_init_addr_next:
4172 curproxy = curproxy->next;
4173 }
4174
4175 return return_code;
4176}
4177
Willy Tarreau46b7f532018-08-21 11:54:26 +02004178/*
4179 * Must be called with the server lock held.
4180 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004181const 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 +02004182{
4183
Willy Tarreau83061a82018-07-13 11:56:34 +02004184 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004185
4186 msg = get_trash_chunk();
4187 chunk_reset(msg);
4188
Olivier Houchard8da5f982017-08-04 18:35:36 +02004189 if (server->hostname && !strcmp(fqdn, server->hostname)) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004190 chunk_appendf(msg, "no need to change the FDQN");
4191 goto out;
4192 }
4193
4194 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4195 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4196 goto out;
4197 }
4198
4199 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4200 server->proxy->id, server->id, server->hostname, fqdn);
4201
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004202 if (srv_set_fqdn(server, fqdn, dns_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004203 chunk_reset(msg);
4204 chunk_appendf(msg, "could not update %s/%s FQDN",
4205 server->proxy->id, server->id);
4206 goto out;
4207 }
4208
4209 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004210 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004211
4212 out:
4213 if (updater)
4214 chunk_appendf(msg, " by '%s'", updater);
4215 chunk_appendf(msg, "\n");
4216
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004217 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004218}
4219
4220
Willy Tarreau21b069d2016-11-23 17:15:08 +01004221/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4222 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004223 * 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 +01004224 * used for CLI commands requiring a server name.
4225 * Important: the <arg> is modified to remove the '/'.
4226 */
4227struct server *cli_find_server(struct appctx *appctx, char *arg)
4228{
4229 struct proxy *px;
4230 struct server *sv;
4231 char *line;
4232
4233 /* split "backend/server" and make <line> point to server */
4234 for (line = arg; *line; line++)
4235 if (*line == '/') {
4236 *line++ = '\0';
4237 break;
4238 }
4239
4240 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004241 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004242 return NULL;
4243 }
4244
4245 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004246 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004247 return NULL;
4248 }
4249
4250 if (px->state == PR_STSTOPPED) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004251 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004252 return NULL;
4253 }
4254
4255 return sv;
4256}
4257
William Lallemand222baf22016-11-19 02:00:33 +01004258
Willy Tarreau46b7f532018-08-21 11:54:26 +02004259/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004260static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004261{
4262 struct server *sv;
4263 const char *warning;
4264
4265 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4266 return 1;
4267
4268 sv = cli_find_server(appctx, args[2]);
4269 if (!sv)
4270 return 1;
4271
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004272 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02004273
William Lallemand222baf22016-11-19 02:00:33 +01004274 if (strcmp(args[3], "weight") == 0) {
4275 warning = server_parse_weight_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004276 if (warning)
4277 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004278 }
4279 else if (strcmp(args[3], "state") == 0) {
4280 if (strcmp(args[4], "ready") == 0)
4281 srv_adm_set_ready(sv);
4282 else if (strcmp(args[4], "drain") == 0)
4283 srv_adm_set_drain(sv);
4284 else if (strcmp(args[4], "maint") == 0)
4285 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02004286 else
4287 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004288 }
4289 else if (strcmp(args[3], "health") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004290 if (sv->track)
4291 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004292 else if (strcmp(args[4], "up") == 0) {
4293 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004294 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004295 }
4296 else if (strcmp(args[4], "stopping") == 0) {
4297 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004298 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004299 }
4300 else if (strcmp(args[4], "down") == 0) {
4301 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004302 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004303 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004304 else
4305 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004306 }
4307 else if (strcmp(args[3], "agent") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004308 if (!(sv->agent.state & CHK_ST_ENABLED))
4309 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004310 else if (strcmp(args[4], "up") == 0) {
4311 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004312 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004313 }
4314 else if (strcmp(args[4], "down") == 0) {
4315 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004316 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004317 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004318 else
4319 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004320 }
Misiek2da082d2017-01-09 09:40:42 +01004321 else if (strcmp(args[3], "agent-addr") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004322 if (!(sv->agent.state & CHK_ST_ENABLED))
4323 cli_err(appctx, "agent checks are not enabled on this server.\n");
4324 else if (str2ip(args[4], &sv->agent.addr) == NULL)
4325 cli_err(appctx, "incorrect addr address given for agent.\n");
Misiek2da082d2017-01-09 09:40:42 +01004326 }
4327 else if (strcmp(args[3], "agent-send") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004328 if (!(sv->agent.state & CHK_ST_ENABLED))
4329 cli_err(appctx, "agent checks are not enabled on this server.\n");
4330 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004331 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004332 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004333 }
4334 }
William Lallemand222baf22016-11-19 02:00:33 +01004335 else if (strcmp(args[3], "check-port") == 0) {
4336 int i = 0;
4337 if (strl2irc(args[4], strlen(args[4]), &i) != 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004338 cli_err(appctx, "'set server <srv> check-port' expects an integer as argument.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004339 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004340 }
4341 if ((i < 0) || (i > 65535)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004342 cli_err(appctx, "provided port is not valid.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004343 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004344 }
4345 /* prevent the update of port to 0 if MAPPORTS are in use */
4346 if ((sv->flags & SRV_F_MAPPORTS) && (i == 0)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004347 cli_err(appctx, "can't unset 'port' since MAPPORTS is in use.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004348 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004349 }
4350 sv->check.port = i;
Willy Tarreau9d008692019-08-09 11:21:01 +02004351 cli_msg(appctx, LOG_NOTICE, "health check port updated.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004352 }
4353 else if (strcmp(args[3], "addr") == 0) {
4354 char *addr = NULL;
4355 char *port = NULL;
4356 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004357 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004358 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004359 }
4360 else {
4361 addr = args[4];
4362 }
4363 if (strcmp(args[5], "port") == 0) {
4364 port = args[6];
4365 }
4366 warning = update_server_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004367 if (warning)
4368 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004369 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
4370 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004371 else if (strcmp(args[3], "fqdn") == 0) {
4372 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004373 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004374 goto out_unlock;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004375 }
Baptiste Assmann13a92322019-06-07 09:40:55 +02004376 /* ensure runtime resolver will process this new fqdn */
4377 if (sv->flags & SRV_F_NO_RESOLUTION) {
4378 sv->flags &= ~SRV_F_NO_RESOLUTION;
4379 }
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004380 warning = update_server_fqdn(sv, args[4], "stats socket command", 0);
Willy Tarreau9d008692019-08-09 11:21:01 +02004381 if (warning)
4382 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004383 }
William Lallemand222baf22016-11-19 02:00:33 +01004384 else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004385 cli_err(appctx,
4386 "'set server <srv>' only supports 'agent', 'health', 'state',"
4387 " 'weight', 'addr', 'fqdn' and 'check-port'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004388 }
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004389 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004390 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004391 return 1;
4392}
4393
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004394static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004395{
4396 struct stream_interface *si = appctx->owner;
4397 struct proxy *px;
4398 struct server *sv;
4399 char *line;
4400
4401
4402 /* split "backend/server" and make <line> point to server */
4403 for (line = args[2]; *line; line++)
4404 if (*line == '/') {
4405 *line++ = '\0';
4406 break;
4407 }
4408
Willy Tarreau9d008692019-08-09 11:21:01 +02004409 if (!*line)
4410 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004411
Willy Tarreau9d008692019-08-09 11:21:01 +02004412 if (!get_backend_server(args[2], line, &px, &sv))
4413 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004414
4415 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004416 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4417 sv->iweight);
4418 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004419 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004420 return 0;
4421 }
William Lallemand6b160942016-11-22 12:34:35 +01004422 return 1;
4423}
4424
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004425/* Parse a "set weight" command.
4426 *
4427 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004428 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004429static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004430{
4431 struct server *sv;
4432 const char *warning;
4433
4434 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4435 return 1;
4436
4437 sv = cli_find_server(appctx, args[2]);
4438 if (!sv)
4439 return 1;
4440
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004441 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4442
William Lallemand6b160942016-11-22 12:34:35 +01004443 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004444 if (warning)
4445 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004446
4447 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4448
William Lallemand6b160942016-11-22 12:34:35 +01004449 return 1;
4450}
4451
Willy Tarreau46b7f532018-08-21 11:54:26 +02004452/* parse a "set maxconn server" command. It always returns 1.
4453 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004454 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004455 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004456static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004457{
4458 struct server *sv;
4459 const char *warning;
4460
4461 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4462 return 1;
4463
4464 sv = cli_find_server(appctx, args[3]);
4465 if (!sv)
4466 return 1;
4467
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004468 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4469
Willy Tarreaub8026272016-11-23 11:26:56 +01004470 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004471 if (warning)
4472 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004473
4474 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4475
Willy Tarreaub8026272016-11-23 11:26:56 +01004476 return 1;
4477}
William Lallemand6b160942016-11-22 12:34:35 +01004478
Willy Tarreau46b7f532018-08-21 11:54:26 +02004479/* parse a "disable agent" command. It always returns 1.
4480 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004481 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004482 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004483static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004484{
4485 struct server *sv;
4486
4487 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4488 return 1;
4489
4490 sv = cli_find_server(appctx, args[2]);
4491 if (!sv)
4492 return 1;
4493
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004494 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004495 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004496 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004497 return 1;
4498}
4499
Willy Tarreau46b7f532018-08-21 11:54:26 +02004500/* parse a "disable health" command. It always returns 1.
4501 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004502 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004503 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004504static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004505{
4506 struct server *sv;
4507
4508 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4509 return 1;
4510
4511 sv = cli_find_server(appctx, args[2]);
4512 if (!sv)
4513 return 1;
4514
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004515 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004516 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004517 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004518 return 1;
4519}
4520
Willy Tarreau46b7f532018-08-21 11:54:26 +02004521/* parse a "disable server" command. It always returns 1.
4522 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004523 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004524 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004525static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004526{
4527 struct server *sv;
4528
4529 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4530 return 1;
4531
4532 sv = cli_find_server(appctx, args[2]);
4533 if (!sv)
4534 return 1;
4535
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004536 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004537 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004538 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004539 return 1;
4540}
4541
Willy Tarreau46b7f532018-08-21 11:54:26 +02004542/* parse a "enable agent" command. It always returns 1.
4543 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004544 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004545 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004546static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004547{
4548 struct server *sv;
4549
4550 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4551 return 1;
4552
4553 sv = cli_find_server(appctx, args[2]);
4554 if (!sv)
4555 return 1;
4556
Willy Tarreau9d008692019-08-09 11:21:01 +02004557 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4558 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004559
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004560 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004561 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004562 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004563 return 1;
4564}
4565
Willy Tarreau46b7f532018-08-21 11:54:26 +02004566/* parse a "enable health" command. It always returns 1.
4567 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004568 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004569 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004570static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004571{
4572 struct server *sv;
4573
4574 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4575 return 1;
4576
4577 sv = cli_find_server(appctx, args[2]);
4578 if (!sv)
4579 return 1;
4580
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004581 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004582 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004583 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004584 return 1;
4585}
4586
Willy Tarreau46b7f532018-08-21 11:54:26 +02004587/* parse a "enable server" command. It always returns 1.
4588 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004589 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004590 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004591static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004592{
4593 struct server *sv;
4594
4595 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4596 return 1;
4597
4598 sv = cli_find_server(appctx, args[2]);
4599 if (!sv)
4600 return 1;
4601
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004602 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004603 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004604 if (!(sv->flags & SRV_F_COOKIESET)
4605 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4606 sv->cookie)
4607 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004608 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004609 return 1;
4610}
4611
William Lallemand222baf22016-11-19 02:00:33 +01004612/* register cli keywords */
4613static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004614 { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004615 { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004616 { { "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 +01004617 { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004618 { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004619 { { "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 +01004620 { { "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 +01004621 { { "set", "server", NULL }, "set server : change a server's state, weight or address", cli_parse_set_server },
William Lallemand6b160942016-11-22 12:34:35 +01004622 { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight },
4623 { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight },
4624
William Lallemand222baf22016-11-19 02:00:33 +01004625 {{},}
4626}};
4627
Willy Tarreau0108d902018-11-25 19:14:37 +01004628INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004629
Emeric Brun64cc49c2017-10-03 14:46:45 +02004630/*
4631 * This function applies server's status changes, it is
4632 * is designed to be called asynchronously.
4633 *
Willy Tarreau46b7f532018-08-21 11:54:26 +02004634 * Must be called with the server lock held.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004635 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004636static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004637{
4638 struct check *check = &s->check;
4639 int xferred;
4640 struct proxy *px = s->proxy;
4641 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4642 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4643 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004644 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004645
Emeric Brun64cc49c2017-10-03 14:46:45 +02004646 /* If currently main is not set we try to apply pending state changes */
4647 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4648 int next_admin;
4649
4650 /* Backup next admin */
4651 next_admin = s->next_admin;
4652
4653 /* restore current admin state */
4654 s->next_admin = s->cur_admin;
4655
4656 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4657 s->last_change = now.tv_sec;
4658 if (s->proxy->lbprm.set_server_status_down)
4659 s->proxy->lbprm.set_server_status_down(s);
4660
4661 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4662 srv_shutdown_streams(s, SF_ERR_DOWN);
4663
4664 /* we might have streams queued on this server and waiting for
4665 * a connection. Those which are redispatchable will be queued
4666 * to another server or to the proxy itself.
4667 */
4668 xferred = pendconn_redistribute(s);
4669
4670 tmptrash = alloc_trash_chunk();
4671 if (tmptrash) {
4672 chunk_printf(tmptrash,
4673 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4674 s->proxy->id, s->id);
4675
Emeric Brun5a133512017-10-19 14:42:30 +02004676 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004677 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004678
4679 /* we don't send an alert if the server was previously paused */
4680 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004681 send_log(s->proxy, log_level, "%s.\n",
4682 tmptrash->area);
4683 send_email_alert(s, log_level, "%s",
4684 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004685 free_trash_chunk(tmptrash);
4686 tmptrash = NULL;
4687 }
4688 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4689 set_backend_down(s->proxy);
4690
4691 s->counters.down_trans++;
4692 }
4693 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4694 s->last_change = now.tv_sec;
4695 if (s->proxy->lbprm.set_server_status_down)
4696 s->proxy->lbprm.set_server_status_down(s);
4697
4698 /* we might have streams queued on this server and waiting for
4699 * a connection. Those which are redispatchable will be queued
4700 * to another server or to the proxy itself.
4701 */
4702 xferred = pendconn_redistribute(s);
4703
4704 tmptrash = alloc_trash_chunk();
4705 if (tmptrash) {
4706 chunk_printf(tmptrash,
4707 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4708 s->proxy->id, s->id);
4709
Emeric Brun5a133512017-10-19 14:42:30 +02004710 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004711
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004712 ha_warning("%s.\n", tmptrash->area);
4713 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4714 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004715 free_trash_chunk(tmptrash);
4716 tmptrash = NULL;
4717 }
4718
4719 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4720 set_backend_down(s->proxy);
4721 }
4722 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4723 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4724 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4725 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4726 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4727 s->proxy->last_change = now.tv_sec;
4728 }
4729
4730 if (s->next_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
4731 s->down_time += now.tv_sec - s->last_change;
4732
4733 s->last_change = now.tv_sec;
4734 if (s->next_state == SRV_ST_STARTING)
4735 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4736
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004737 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004738 /* now propagate the status change to any LB algorithms */
4739 if (px->lbprm.update_server_eweight)
4740 px->lbprm.update_server_eweight(s);
4741 else if (srv_willbe_usable(s)) {
4742 if (px->lbprm.set_server_status_up)
4743 px->lbprm.set_server_status_up(s);
4744 }
4745 else {
4746 if (px->lbprm.set_server_status_down)
4747 px->lbprm.set_server_status_down(s);
4748 }
4749
4750 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4751 * and it's not a backup server and its effective weight is > 0,
4752 * then it can accept new connections, so we shut down all streams
4753 * on all backup servers.
4754 */
4755 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4756 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4757 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4758
4759 /* check if we can handle some connections queued at the proxy. We
4760 * will take as many as we can handle.
4761 */
4762 xferred = pendconn_grab_from_px(s);
4763
4764 tmptrash = alloc_trash_chunk();
4765 if (tmptrash) {
4766 chunk_printf(tmptrash,
4767 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
4768 s->proxy->id, s->id);
4769
Emeric Brun5a133512017-10-19 14:42:30 +02004770 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004771 ha_warning("%s.\n", tmptrash->area);
4772 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4773 tmptrash->area);
4774 send_email_alert(s, LOG_NOTICE, "%s",
4775 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004776 free_trash_chunk(tmptrash);
4777 tmptrash = NULL;
4778 }
4779
4780 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4781 set_backend_down(s->proxy);
4782 }
4783 else if (s->cur_eweight != s->next_eweight) {
4784 /* now propagate the status change to any LB algorithms */
4785 if (px->lbprm.update_server_eweight)
4786 px->lbprm.update_server_eweight(s);
4787 else if (srv_willbe_usable(s)) {
4788 if (px->lbprm.set_server_status_up)
4789 px->lbprm.set_server_status_up(s);
4790 }
4791 else {
4792 if (px->lbprm.set_server_status_down)
4793 px->lbprm.set_server_status_down(s);
4794 }
4795
4796 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4797 set_backend_down(s->proxy);
4798 }
4799
4800 s->next_admin = next_admin;
4801 }
4802
Emeric Brun5a133512017-10-19 14:42:30 +02004803 /* reset operational state change */
4804 *s->op_st_chg.reason = 0;
4805 s->op_st_chg.status = s->op_st_chg.code = -1;
4806 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004807
4808 /* Now we try to apply pending admin changes */
4809
4810 /* Maintenance must also disable health checks */
4811 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
4812 if (s->check.state & CHK_ST_ENABLED) {
4813 s->check.state |= CHK_ST_PAUSED;
4814 check->health = 0;
4815 }
4816
4817 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02004818 tmptrash = alloc_trash_chunk();
4819 if (tmptrash) {
4820 chunk_printf(tmptrash,
4821 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
4822 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4823 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02004824
Olivier Houchard796a2b32017-10-24 17:42:47 +02004825 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02004826
Olivier Houchard796a2b32017-10-24 17:42:47 +02004827 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004828 ha_warning("%s.\n", tmptrash->area);
4829 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4830 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02004831 }
4832 free_trash_chunk(tmptrash);
4833 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004834 }
Emeric Brun8f298292017-12-06 16:47:17 +01004835 /* commit new admin status */
4836
4837 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004838 }
4839 else { /* server was still running */
4840 check->health = 0; /* failure */
4841 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01004842
4843 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004844 if (s->proxy->lbprm.set_server_status_down)
4845 s->proxy->lbprm.set_server_status_down(s);
4846
Emeric Brun64cc49c2017-10-03 14:46:45 +02004847 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4848 srv_shutdown_streams(s, SF_ERR_DOWN);
4849
William Dauchy6318d332020-05-02 21:52:36 +02004850 /* force connection cleanup on the given server */
4851 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004852 /* we might have streams queued on this server and waiting for
4853 * a connection. Those which are redispatchable will be queued
4854 * to another server or to the proxy itself.
4855 */
4856 xferred = pendconn_redistribute(s);
4857
4858 tmptrash = alloc_trash_chunk();
4859 if (tmptrash) {
4860 chunk_printf(tmptrash,
4861 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
4862 s->flags & SRV_F_BACKUP ? "Backup " : "",
4863 s->proxy->id, s->id,
4864 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
4865
4866 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
4867
4868 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004869 ha_warning("%s.\n", tmptrash->area);
4870 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
4871 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004872 }
4873 free_trash_chunk(tmptrash);
4874 tmptrash = NULL;
4875 }
4876 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4877 set_backend_down(s->proxy);
4878
4879 s->counters.down_trans++;
4880 }
4881 }
4882 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
4883 /* OK here we're leaving maintenance, we have many things to check,
4884 * because the server might possibly be coming back up depending on
4885 * its state. In practice, leaving maintenance means that we should
4886 * immediately turn to UP (more or less the slowstart) under the
4887 * following conditions :
4888 * - server is neither checked nor tracked
4889 * - server tracks another server which is not checked
4890 * - server tracks another server which is already up
4891 * Which sums up as something simpler :
4892 * "either the tracking server is up or the server's checks are disabled
4893 * or up". Otherwise we only re-enable health checks. There's a special
4894 * case associated to the stopping state which can be inherited. Note
4895 * that the server might still be in drain mode, which is naturally dealt
4896 * with by the lower level functions.
4897 */
4898
4899 if (s->check.state & CHK_ST_ENABLED) {
4900 s->check.state &= ~CHK_ST_PAUSED;
4901 check->health = check->rise; /* start OK but check immediately */
4902 }
4903
4904 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
4905 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
4906 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
4907 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
4908 s->next_state = SRV_ST_STOPPING;
4909 }
4910 else {
4911 s->next_state = SRV_ST_STARTING;
4912 if (s->slowstart > 0)
4913 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4914 else
4915 s->next_state = SRV_ST_RUNNING;
4916 }
4917
4918 }
4919
4920 tmptrash = alloc_trash_chunk();
4921 if (tmptrash) {
4922 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
4923 chunk_printf(tmptrash,
4924 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
4925 s->flags & SRV_F_BACKUP ? "Backup " : "",
4926 s->proxy->id, s->id,
4927 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4928 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4929 }
4930 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
4931 chunk_printf(tmptrash,
4932 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
4933 s->flags & SRV_F_BACKUP ? "Backup " : "",
4934 s->proxy->id, s->id, s->hostname,
4935 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4936 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4937 }
4938 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
4939 chunk_printf(tmptrash,
4940 "%sServer %s/%s is %s/%s (leaving maintenance)",
4941 s->flags & SRV_F_BACKUP ? "Backup " : "",
4942 s->proxy->id, s->id,
4943 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
4944 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
4945 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004946 ha_warning("%s.\n", tmptrash->area);
4947 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4948 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004949 free_trash_chunk(tmptrash);
4950 tmptrash = NULL;
4951 }
4952
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004953 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004954 /* now propagate the status change to any LB algorithms */
4955 if (px->lbprm.update_server_eweight)
4956 px->lbprm.update_server_eweight(s);
4957 else if (srv_willbe_usable(s)) {
4958 if (px->lbprm.set_server_status_up)
4959 px->lbprm.set_server_status_up(s);
4960 }
4961 else {
4962 if (px->lbprm.set_server_status_down)
4963 px->lbprm.set_server_status_down(s);
4964 }
4965
4966 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4967 set_backend_down(s->proxy);
4968
Willy Tarreau6a78e612018-08-07 10:14:53 +02004969 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4970 * and it's not a backup server and its effective weight is > 0,
4971 * then it can accept new connections, so we shut down all streams
4972 * on all backup servers.
4973 */
4974 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4975 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4976 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4977
4978 /* check if we can handle some connections queued at the proxy. We
4979 * will take as many as we can handle.
4980 */
4981 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004982 }
4983 else if (s->next_admin & SRV_ADMF_MAINT) {
4984 /* remaining in maintenance mode, let's inform precisely about the
4985 * situation.
4986 */
4987 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
4988 tmptrash = alloc_trash_chunk();
4989 if (tmptrash) {
4990 chunk_printf(tmptrash,
4991 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
4992 s->flags & SRV_F_BACKUP ? "Backup " : "",
4993 s->proxy->id, s->id);
4994
4995 if (s->track) /* normally it's mandatory here */
4996 chunk_appendf(tmptrash, " via %s/%s",
4997 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004998 ha_warning("%s.\n", tmptrash->area);
4999 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5000 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005001 free_trash_chunk(tmptrash);
5002 tmptrash = NULL;
5003 }
5004 }
5005 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5006 tmptrash = alloc_trash_chunk();
5007 if (tmptrash) {
5008 chunk_printf(tmptrash,
5009 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5010 s->flags & SRV_F_BACKUP ? "Backup " : "",
5011 s->proxy->id, s->id, s->hostname);
5012
5013 if (s->track) /* normally it's mandatory here */
5014 chunk_appendf(tmptrash, " via %s/%s",
5015 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005016 ha_warning("%s.\n", tmptrash->area);
5017 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5018 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005019 free_trash_chunk(tmptrash);
5020 tmptrash = NULL;
5021 }
5022 }
5023 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5024 tmptrash = alloc_trash_chunk();
5025 if (tmptrash) {
5026 chunk_printf(tmptrash,
5027 "%sServer %s/%s remains in forced maintenance",
5028 s->flags & SRV_F_BACKUP ? "Backup " : "",
5029 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005030 ha_warning("%s.\n", tmptrash->area);
5031 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5032 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005033 free_trash_chunk(tmptrash);
5034 tmptrash = NULL;
5035 }
5036 }
5037 /* don't report anything when leaving drain mode and remaining in maintenance */
5038
5039 s->cur_admin = s->next_admin;
5040 }
5041
5042 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5043 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5044 /* drain state is applied only if not yet in maint */
5045
5046 s->last_change = now.tv_sec;
5047 if (px->lbprm.set_server_status_down)
5048 px->lbprm.set_server_status_down(s);
5049
5050 /* we might have streams queued on this server and waiting for
5051 * a connection. Those which are redispatchable will be queued
5052 * to another server or to the proxy itself.
5053 */
5054 xferred = pendconn_redistribute(s);
5055
5056 tmptrash = alloc_trash_chunk();
5057 if (tmptrash) {
5058 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5059 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5060 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5061
5062 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5063
5064 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005065 ha_warning("%s.\n", tmptrash->area);
5066 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5067 tmptrash->area);
5068 send_email_alert(s, LOG_NOTICE, "%s",
5069 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005070 }
5071 free_trash_chunk(tmptrash);
5072 tmptrash = NULL;
5073 }
5074
5075 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5076 set_backend_down(s->proxy);
5077 }
5078 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5079 /* OK completely leaving drain mode */
5080 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5081 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5082 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5083 s->proxy->last_change = now.tv_sec;
5084 }
5085
5086 if (s->last_change < now.tv_sec) // ignore negative times
5087 s->down_time += now.tv_sec - s->last_change;
5088 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005089 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005090
5091 tmptrash = alloc_trash_chunk();
5092 if (tmptrash) {
5093 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5094 chunk_printf(tmptrash,
5095 "%sServer %s/%s is %s (leaving forced drain)",
5096 s->flags & SRV_F_BACKUP ? "Backup " : "",
5097 s->proxy->id, s->id,
5098 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5099 }
5100 else {
5101 chunk_printf(tmptrash,
5102 "%sServer %s/%s is %s (leaving drain)",
5103 s->flags & SRV_F_BACKUP ? "Backup " : "",
5104 s->proxy->id, s->id,
5105 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5106 if (s->track) /* normally it's mandatory here */
5107 chunk_appendf(tmptrash, " via %s/%s",
5108 s->track->proxy->id, s->track->id);
5109 }
5110
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005111 ha_warning("%s.\n", tmptrash->area);
5112 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5113 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005114 free_trash_chunk(tmptrash);
5115 tmptrash = NULL;
5116 }
5117
5118 /* now propagate the status change to any LB algorithms */
5119 if (px->lbprm.update_server_eweight)
5120 px->lbprm.update_server_eweight(s);
5121 else if (srv_willbe_usable(s)) {
5122 if (px->lbprm.set_server_status_up)
5123 px->lbprm.set_server_status_up(s);
5124 }
5125 else {
5126 if (px->lbprm.set_server_status_down)
5127 px->lbprm.set_server_status_down(s);
5128 }
5129 }
5130 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5131 /* remaining in drain mode after removing one of its flags */
5132
5133 tmptrash = alloc_trash_chunk();
5134 if (tmptrash) {
5135 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5136 chunk_printf(tmptrash,
5137 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5138 s->flags & SRV_F_BACKUP ? "Backup " : "",
5139 s->proxy->id, s->id);
5140
5141 if (s->track) /* normally it's mandatory here */
5142 chunk_appendf(tmptrash, " via %s/%s",
5143 s->track->proxy->id, s->track->id);
5144 }
5145 else {
5146 chunk_printf(tmptrash,
5147 "%sServer %s/%s remains in forced drain mode",
5148 s->flags & SRV_F_BACKUP ? "Backup " : "",
5149 s->proxy->id, s->id);
5150 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005151 ha_warning("%s.\n", tmptrash->area);
5152 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5153 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005154 free_trash_chunk(tmptrash);
5155 tmptrash = NULL;
5156 }
5157
5158 /* commit new admin status */
5159
5160 s->cur_admin = s->next_admin;
5161 }
5162 }
5163
5164 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005165 *s->adm_st_chg_cause = 0;
5166}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005167
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005168struct task *srv_cleanup_toremove_connections(struct task *task, void *context, unsigned short state)
5169{
5170 struct connection *conn;
5171
Olivier Houchard859dc802019-08-08 15:47:21 +02005172 while ((conn = MT_LIST_POP(&toremove_connections[tid],
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005173 struct connection *, list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005174 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005175 }
5176
5177 return task;
5178}
5179
William Dauchy6318d332020-05-02 21:52:36 +02005180/* cleanup connections for a given server
5181 * might be useful when going on forced maintenance or live changing ip/port
5182 */
William Dauchy707ad322020-05-04 13:52:40 +02005183static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005184{
5185 struct connection *conn;
5186 int did_remove;
5187 int i;
5188 int j;
5189
5190 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5191 for (i = 0; i < global.nbthread; i++) {
5192 did_remove = 0;
5193 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[i]);
5194 for (j = 0; j < srv->curr_idle_conns; j++) {
5195 conn = MT_LIST_POP(&srv->idle_conns[i], struct connection *, list);
5196 if (!conn)
5197 conn = MT_LIST_POP(&srv->safe_conns[i],
5198 struct connection *, list);
5199 if (!conn)
5200 break;
5201 did_remove = 1;
5202 MT_LIST_ADDQ(&toremove_connections[i], (struct mt_list *)&conn->list);
5203 }
5204 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[i]);
5205 if (did_remove)
5206 task_wakeup(idle_conn_cleanup[i], TASK_WOKEN_OTHER);
5207 }
5208 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5209}
5210
Willy Tarreau980855b2019-02-07 14:59:29 +01005211struct task *srv_cleanup_idle_connections(struct task *task, void *context, unsigned short state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005212{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005213 struct server *srv;
5214 struct eb32_node *eb;
5215 int i;
5216 unsigned int next_wakeup;
5217 int need_wakeup = 0;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005218
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005219 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5220 while (1) {
5221 int srv_is_empty = 1;
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005222 int exceed_conns;
5223 int to_kill;
5224 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005225
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005226 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5227 if (!eb) {
5228 /* we might have reached the end of the tree, typically because
5229 * <now_ms> is in the first half and we're first scanning the last
5230 * half. Let's loop back to the beginning of the tree now.
5231 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005232
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005233 eb = eb32_first(&idle_conn_srv);
5234 if (likely(!eb))
5235 break;
5236 }
5237 if (tick_is_lt(now_ms, eb->key)) {
5238 /* timer not expired yet, revisit it later */
5239 next_wakeup = eb->key;
5240 need_wakeup = 1;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005241 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005242 }
5243 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005244
5245 /* Calculate how many idle connections we want to kill :
5246 * we want to remove half the difference between the total
5247 * of established connections (used or idle) and the max
5248 * number of used connections.
5249 */
5250 curr_idle = srv->curr_idle_conns;
5251 if (curr_idle == 0)
5252 goto remove;
5253 exceed_conns = srv->curr_used_conns + curr_idle -
5254 srv->max_used_conns;
5255 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
5256 srv->max_used_conns = srv->curr_used_conns;
5257
5258 for (i = 0; i < global.nbthread && to_kill > 0; i++) {
5259 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005260 int j;
5261 int did_remove = 0;
5262
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005263 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5264 curr_idle + 1;
Olivier Houchard4be71902019-07-11 15:49:00 +02005265 HA_SPIN_LOCK(OTHER_LOCK, &toremove_lock[i]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005266 for (j = 0; j < max_conn; j++) {
Olivier Houcharddc2f2752020-02-13 19:12:07 +01005267 struct connection *conn = MT_LIST_POP(&srv->idle_conns[i], struct connection *, list);
5268 if (!conn)
5269 conn = MT_LIST_POP(&srv->safe_conns[i],
5270 struct connection *, list);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005271 if (!conn)
5272 break;
5273 did_remove = 1;
Olivier Houchard859dc802019-08-08 15:47:21 +02005274 MT_LIST_ADDQ(&toremove_connections[i], (struct mt_list *)&conn->list);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005275 }
Olivier Houchard4be71902019-07-11 15:49:00 +02005276 HA_SPIN_UNLOCK(OTHER_LOCK, &toremove_lock[i]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005277 if (did_remove && max_conn < srv->curr_idle_thr[i])
5278 srv_is_empty = 0;
5279 if (did_remove)
5280 task_wakeup(idle_conn_cleanup[i], TASK_WOKEN_OTHER);
5281 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005282remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005283 eb32_delete(&srv->idle_node);
5284 if (!srv_is_empty) {
5285 /* There are still more idle connections, add the
5286 * server back in the tree.
5287 */
5288 srv->idle_node.key = tick_add(srv->pool_purge_delay,
5289 now_ms);
5290 eb32_insert(&idle_conn_srv, &srv->idle_node);
5291 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005292 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005293 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5294
5295 if (need_wakeup)
5296 task->expire = next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005297 else
5298 task->expire = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005299
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005300 return task;
5301}
Olivier Houchard88698d92019-04-16 19:07:22 +02005302
5303/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5304static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
5305 struct proxy *defpx, const char *file, int line,
5306 char **err)
5307{
5308 int arg = -1;
5309
5310 if (too_many_args(1, args, err, NULL))
5311 return -1;
5312
5313 if (*(args[1]) != 0)
5314 arg = atoi(args[1]);
5315
5316 if (arg < 0 || arg > 100) {
5317 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5318 return -1;
5319 }
5320
5321 if (args[0][10] == 'h')
5322 global.tune.pool_high_ratio = arg;
5323 else
5324 global.tune.pool_low_ratio = arg;
5325 return 0;
5326}
5327
5328/* config keyword parsers */
5329static struct cfg_kw_list cfg_kws = {ILH, {
5330 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5331 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5332 { 0, NULL, NULL }
5333}};
5334
5335INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5336
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005337/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005338 * Local variables:
5339 * c-indent-level: 8
5340 * c-basic-offset: 8
5341 * End:
5342 */