blob: 50c6da131794b95e994ac4412922b9b0e625b284 [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 Tarreau0a4b0ab2020-06-11 11:22:44 +020014#include <sys/types.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020015#include <netinet/tcp.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020016#include <ctype.h>
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020017#include <errno.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020018
Willy Tarreaub2551052020-06-09 09:07:15 +020019#include <import/ebsttree.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020020#include <import/xxhash.h>
21
Willy Tarreaub2551052020-06-09 09:07:15 +020022#include <haproxy/api.h>
Willy Tarreau3f0f82e2020-06-04 19:42:41 +020023#include <haproxy/applet-t.h>
Willy Tarreau49801602020-06-04 22:50:02 +020024#include <haproxy/backend.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020025#include <haproxy/cfgparse.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020026#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020027#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020028#include <haproxy/connection.h>
Willy Tarreau3afc4c42020-06-03 18:23:19 +020029#include <haproxy/dict-t.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020030#include <haproxy/dns.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020031#include <haproxy/errors.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020032#include <haproxy/global.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020033#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020034#include <haproxy/mailers.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +020035#include <haproxy/namespace.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020036#include <haproxy/port_range.h>
37#include <haproxy/protocol.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020038#include <haproxy/queue.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020039#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020040#include <haproxy/server.h>
William Dauchyf6370442020-11-14 19:25:33 +010041#include <haproxy/ssl_sock.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020042#include <haproxy/stats-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020043#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020044#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020045#include <haproxy/task.h>
Willy Tarreau51cd5952020-06-05 12:25:38 +020046#include <haproxy/tcpcheck.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020047#include <haproxy/time.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020048
Baptiste Assmannda29fe22019-06-13 13:24:29 +020049
Willy Tarreau3ff577e2018-08-02 11:48:52 +020050static void srv_update_status(struct server *s);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020051static void srv_update_state(struct server *srv, int version, char **params);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +010052static int srv_apply_lastaddr(struct server *srv, int *err_code);
Olivier Houchardd16bfe62017-10-31 15:21:19 +010053static int srv_set_fqdn(struct server *srv, const char *fqdn, int dns_locked);
Baptiste Assmannda29fe22019-06-13 13:24:29 +020054static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params);
55static int srv_state_get_version(FILE *f);
William Dauchy6318d332020-05-02 21:52:36 +020056static void srv_cleanup_connections(struct server *srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +020057
Willy Tarreau21faa912012-10-10 08:27:36 +020058/* List head of all known server keywords */
59static struct srv_kw_list srv_keywords = {
60 .list = LIST_HEAD_INIT(srv_keywords.list)
61};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020062
Willy Tarreauaf613e82020-06-05 08:40:51 +020063__decl_thread(HA_SPINLOCK_T idle_conn_srv_lock);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010064struct eb_root idle_conn_srv = EB_ROOT;
65struct task *idle_conn_task = NULL;
Olivier Houchard9ea5d362019-02-14 18:29:09 +010066
Frédéric Lécaille7da71292019-05-20 09:47:07 +020067/* The server names dictionary */
Thayne McCombs92149f92020-11-20 01:28:26 -070068struct dict server_key_dict = {
69 .name = "server keys",
Frédéric Lécaille7da71292019-05-20 09:47:07 +020070 .values = EB_ROOT_UNIQUE,
71};
72
Baptiste Assmannda29fe22019-06-13 13:24:29 +020073/* tree where global state_file is loaded */
Willy Tarreaufd1aa012019-12-20 17:23:40 +010074struct eb_root state_file = EB_ROOT_UNIQUE;
Baptiste Assmannda29fe22019-06-13 13:24:29 +020075
Simon Hormana3608442013-11-01 16:46:15 +090076int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020077{
Amaury Denoyellee6ba7912020-10-29 15:59:05 +010078 if ((s->cur_state != SRV_ST_STOPPED) || s->last_change >= now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020079 return s->down_time;
80
81 return now.tv_sec - s->last_change + s->down_time;
82}
Willy Tarreaubaaee002006-06-26 02:48:02 +020083
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050084int srv_lastsession(const struct server *s)
85{
86 if (s->counters.last_sess)
87 return now.tv_sec - s->counters.last_sess;
88
89 return -1;
90}
91
Simon Horman4a741432013-02-23 15:35:38 +090092int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020093{
Simon Horman4a741432013-02-23 15:35:38 +090094 const struct server *s = check->server;
95
Willy Tarreauff5ae352013-12-11 20:36:34 +010096 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +090097 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010098
Emeric Brun52a91d32017-08-31 14:41:55 +020099 if ((s->next_state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +0900100 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100101
Simon Horman4a741432013-02-23 15:35:38 +0900102 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100103}
104
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100105/*
106 * Check that we did not get a hash collision.
Willy Tarreau595e7672020-10-20 17:30:08 +0200107 * Unlikely, but it can happen. The server's proxy must be at least
108 * read-locked.
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100109 */
110static inline void srv_check_for_dup_dyncookie(struct server *s)
Olivier Houchard4e694042017-03-14 20:01:29 +0100111{
112 struct proxy *p = s->proxy;
113 struct server *tmpserv;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100114
115 for (tmpserv = p->srv; tmpserv != NULL;
116 tmpserv = tmpserv->next) {
117 if (tmpserv == s)
118 continue;
119 if (tmpserv->next_admin & SRV_ADMF_FMAINT)
120 continue;
121 if (tmpserv->cookie &&
122 strcmp(tmpserv->cookie, s->cookie) == 0) {
123 ha_warning("We generated two equal cookies for two different servers.\n"
124 "Please change the secret key for '%s'.\n",
125 s->proxy->id);
126 }
127 }
128
129}
130
Willy Tarreau46b7f532018-08-21 11:54:26 +0200131/*
Willy Tarreau595e7672020-10-20 17:30:08 +0200132 * Must be called with the server lock held, and will read-lock the proxy.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200133 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100134void srv_set_dyncookie(struct server *s)
135{
136 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100137 char *tmpbuf;
138 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100139 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100140 size_t buffer_len;
141 int addr_len;
142 int port;
143
Willy Tarreau595e7672020-10-20 17:30:08 +0200144 HA_RWLOCK_RDLOCK(PROXY_LOCK, &p->lock);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200145
Olivier Houchard4e694042017-03-14 20:01:29 +0100146 if ((s->flags & SRV_F_COOKIESET) ||
147 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
148 s->proxy->dyncookie_key == NULL)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200149 goto out;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100150 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100151
152 if (s->addr.ss_family != AF_INET &&
153 s->addr.ss_family != AF_INET6)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200154 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100155 /*
156 * Buffer to calculate the cookie value.
157 * The buffer contains the secret key + the server IP address
158 * + the TCP port.
159 */
160 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
161 /*
162 * The TCP port should use only 2 bytes, but is stored in
163 * an unsigned int in struct server, so let's use 4, to be
164 * on the safe side.
165 */
166 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200167 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100168 memcpy(tmpbuf, p->dyncookie_key, key_len);
169 memcpy(&(tmpbuf[key_len]),
170 s->addr.ss_family == AF_INET ?
171 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
172 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
173 addr_len);
174 /*
175 * Make sure it's the same across all the load balancers,
176 * no matter their endianness.
177 */
178 port = htonl(s->svc_port);
179 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
180 hash_value = XXH64(tmpbuf, buffer_len, 0);
181 memprintf(&s->cookie, "%016llx", hash_value);
182 if (!s->cookie)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200183 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100184 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100185
186 /* Don't bother checking if the dyncookie is duplicated if
187 * the server is marked as "disabled", maybe it doesn't have
188 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100189 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100190 if (!(s->next_admin & SRV_ADMF_FMAINT))
191 srv_check_for_dup_dyncookie(s);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200192 out:
Willy Tarreau595e7672020-10-20 17:30:08 +0200193 HA_RWLOCK_RDUNLOCK(PROXY_LOCK, &p->lock);
Olivier Houchard4e694042017-03-14 20:01:29 +0100194}
195
Willy Tarreau21faa912012-10-10 08:27:36 +0200196/*
Thayne McCombs92149f92020-11-20 01:28:26 -0700197 * Must be called with the server lock held, and will write-lock the proxy.
198 */
199static void srv_set_addr_desc(struct server *s)
200{
201 struct proxy *p = s->proxy;
202 char *key;
203
204 key = sa2str(&s->addr, s->svc_port, s->flags & SRV_F_MAPPORTS);
205
206 if (s->addr_node.key) {
207 if (strcmp(key, s->addr_node.key) == 0) {
208 free(key);
209 return;
210 }
211
212 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
213 ebpt_delete(&s->addr_node);
214 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
215
216 free(s->addr_node.key);
217 }
218
219 s->addr_node.key = key;
220
221 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
222 ebis_insert(&p->used_server_addr, &s->addr_node);
223 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
224}
225
226/*
Willy Tarreau21faa912012-10-10 08:27:36 +0200227 * Registers the server keyword list <kwl> as a list of valid keywords for next
228 * parsing sessions.
229 */
230void srv_register_keywords(struct srv_kw_list *kwl)
231{
232 LIST_ADDQ(&srv_keywords.list, &kwl->list);
233}
234
235/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
236 * keyword is found with a NULL ->parse() function, then an attempt is made to
237 * find one with a valid ->parse() function. This way it is possible to declare
238 * platform-dependant, known keywords as NULL, then only declare them as valid
239 * if some options are met. Note that if the requested keyword contains an
240 * opening parenthesis, everything from this point is ignored.
241 */
242struct srv_kw *srv_find_kw(const char *kw)
243{
244 int index;
245 const char *kwend;
246 struct srv_kw_list *kwl;
247 struct srv_kw *ret = NULL;
248
249 kwend = strchr(kw, '(');
250 if (!kwend)
251 kwend = kw + strlen(kw);
252
253 list_for_each_entry(kwl, &srv_keywords.list, list) {
254 for (index = 0; kwl->kw[index].kw != NULL; index++) {
255 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
256 kwl->kw[index].kw[kwend-kw] == 0) {
257 if (kwl->kw[index].parse)
258 return &kwl->kw[index]; /* found it !*/
259 else
260 ret = &kwl->kw[index]; /* may be OK */
261 }
262 }
263 }
264 return ret;
265}
266
267/* Dumps all registered "server" keywords to the <out> string pointer. The
268 * unsupported keywords are only dumped if their supported form was not
269 * found.
270 */
271void srv_dump_kws(char **out)
272{
273 struct srv_kw_list *kwl;
274 int index;
275
Christopher Faulet784063e2020-05-18 12:14:18 +0200276 if (!out)
277 return;
278
Willy Tarreau21faa912012-10-10 08:27:36 +0200279 *out = NULL;
280 list_for_each_entry(kwl, &srv_keywords.list, list) {
281 for (index = 0; kwl->kw[index].kw != NULL; index++) {
282 if (kwl->kw[index].parse ||
283 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
284 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
285 kwl->scope,
286 kwl->kw[index].kw,
287 kwl->kw[index].skip ? " <arg>" : "",
288 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
289 kwl->kw[index].parse ? "" : " (not supported)");
290 }
291 }
292 }
293}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100294
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100295/* Parse the "backup" server keyword */
296static int srv_parse_backup(char **args, int *cur_arg,
297 struct proxy *curproxy, struct server *newsrv, char **err)
298{
299 newsrv->flags |= SRV_F_BACKUP;
300 return 0;
301}
302
Alexander Liu2a54bb72019-05-22 19:44:48 +0800303
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100304/* Parse the "cookie" server keyword */
305static int srv_parse_cookie(char **args, int *cur_arg,
306 struct proxy *curproxy, struct server *newsrv, char **err)
307{
308 char *arg;
309
310 arg = args[*cur_arg + 1];
311 if (!*arg) {
312 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
313 return ERR_ALERT | ERR_FATAL;
314 }
315
316 free(newsrv->cookie);
317 newsrv->cookie = strdup(arg);
318 newsrv->cklen = strlen(arg);
319 newsrv->flags |= SRV_F_COOKIESET;
320 return 0;
321}
322
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100323/* Parse the "disabled" server keyword */
324static int srv_parse_disabled(char **args, int *cur_arg,
325 struct proxy *curproxy, struct server *newsrv, char **err)
326{
Emeric Brun52a91d32017-08-31 14:41:55 +0200327 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
328 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100329 newsrv->check.state |= CHK_ST_PAUSED;
330 newsrv->check.health = 0;
331 return 0;
332}
333
334/* Parse the "enabled" server keyword */
335static int srv_parse_enabled(char **args, int *cur_arg,
336 struct proxy *curproxy, struct server *newsrv, char **err)
337{
Emeric Brun52a91d32017-08-31 14:41:55 +0200338 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
339 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100340 newsrv->check.state &= ~CHK_ST_PAUSED;
341 newsrv->check.health = newsrv->check.rise;
342 return 0;
343}
344
Willy Tarreau9c538e02019-01-23 10:21:49 +0100345static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
346{
347 char *arg;
348
349 arg = args[*cur_arg + 1];
350 if (!*arg) {
351 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
352 return ERR_ALERT | ERR_FATAL;
353 }
354 newsrv->max_reuse = atoi(arg);
355
356 return 0;
357}
358
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100359static 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 +0100360{
361 const char *res;
362 char *arg;
363 unsigned int time;
364
365 arg = args[*cur_arg + 1];
366 if (!*arg) {
367 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
368 return ERR_ALERT | ERR_FATAL;
369 }
370 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200371 if (res == PARSE_TIME_OVER) {
372 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
373 args[*cur_arg+1], args[*cur_arg]);
374 return ERR_ALERT | ERR_FATAL;
375 }
376 else if (res == PARSE_TIME_UNDER) {
377 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
378 args[*cur_arg+1], args[*cur_arg]);
379 return ERR_ALERT | ERR_FATAL;
380 }
381 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100382 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
383 *res, args[*cur_arg]);
384 return ERR_ALERT | ERR_FATAL;
385 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100386 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100387
388 return 0;
389}
390
Willy Tarreau2f3f4d32020-07-01 07:43:51 +0200391static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
392{
393 char *arg;
394
395 arg = args[*cur_arg + 1];
396 if (!*arg) {
397 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
398 return ERR_ALERT | ERR_FATAL;
399 }
400
401 newsrv->low_idle_conns = atoi(arg);
402 return 0;
403}
404
Olivier Houchard006e3102018-12-10 18:30:32 +0100405static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
406{
407 char *arg;
408
409 arg = args[*cur_arg + 1];
410 if (!*arg) {
411 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
412 return ERR_ALERT | ERR_FATAL;
413 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100414
Olivier Houchard006e3102018-12-10 18:30:32 +0100415 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100416 if ((int)newsrv->max_idle_conns < -1) {
417 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
418 return ERR_ALERT | ERR_FATAL;
419 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100420
421 return 0;
422}
423
Willy Tarreaudff55432012-10-10 17:51:05 +0200424/* parse the "id" server keyword */
425static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
426{
427 struct eb32_node *node;
428
429 if (!*args[*cur_arg + 1]) {
430 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
431 return ERR_ALERT | ERR_FATAL;
432 }
433
434 newsrv->puid = atol(args[*cur_arg + 1]);
435 newsrv->conf.id.key = newsrv->puid;
436
437 if (newsrv->puid <= 0) {
438 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
439 return ERR_ALERT | ERR_FATAL;
440 }
441
442 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
443 if (node) {
444 struct server *target = container_of(node, struct server, conf.id);
445 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
446 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
447 target->id);
448 return ERR_ALERT | ERR_FATAL;
449 }
450
451 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200452 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200453 return 0;
454}
455
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100456/* Parse the "namespace" server keyword */
457static int srv_parse_namespace(char **args, int *cur_arg,
458 struct proxy *curproxy, struct server *newsrv, char **err)
459{
Willy Tarreaue5733232019-05-22 19:24:06 +0200460#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100461 char *arg;
462
463 arg = args[*cur_arg + 1];
464 if (!*arg) {
465 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
466 return ERR_ALERT | ERR_FATAL;
467 }
468
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100469 if (strcmp(arg, "*") == 0) {
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100470 /* Use the namespace associated with the connection (if present). */
471 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
472 return 0;
473 }
474
475 /*
476 * As this parser may be called several times for the same 'default-server'
477 * object, or for a new 'server' instance deriving from a 'default-server'
478 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
479 */
480 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
481
482 newsrv->netns = netns_store_lookup(arg, strlen(arg));
483 if (!newsrv->netns)
484 newsrv->netns = netns_store_insert(arg);
485
486 if (!newsrv->netns) {
487 memprintf(err, "Cannot open namespace '%s'", arg);
488 return ERR_ALERT | ERR_FATAL;
489 }
490
491 return 0;
492#else
493 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
494 return ERR_ALERT | ERR_FATAL;
495#endif
496}
497
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100498/* Parse the "no-backup" server keyword */
499static int srv_parse_no_backup(char **args, int *cur_arg,
500 struct proxy *curproxy, struct server *newsrv, char **err)
501{
502 newsrv->flags &= ~SRV_F_BACKUP;
503 return 0;
504}
505
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100506
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100507/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200508static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100509{
510 srv->pp_opts &= ~flags;
511 return 0;
512}
513
514/* Parse the "no-send-proxy" server keyword */
515static int srv_parse_no_send_proxy(char **args, int *cur_arg,
516 struct proxy *curproxy, struct server *newsrv, char **err)
517{
518 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
519}
520
521/* Parse the "no-send-proxy-v2" server keyword */
522static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
523 struct proxy *curproxy, struct server *newsrv, char **err)
524{
525 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
526}
527
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200528/* Parse the "no-tfo" server keyword */
529static int srv_parse_no_tfo(char **args, int *cur_arg,
530 struct proxy *curproxy, struct server *newsrv, char **err)
531{
532 newsrv->flags &= ~SRV_F_FASTOPEN;
533 return 0;
534}
535
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100536/* Parse the "non-stick" server keyword */
537static int srv_parse_non_stick(char **args, int *cur_arg,
538 struct proxy *curproxy, struct server *newsrv, char **err)
539{
540 newsrv->flags |= SRV_F_NON_STICK;
541 return 0;
542}
543
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100544/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200545static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100546{
547 srv->pp_opts |= flags;
548 return 0;
549}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200550/* parse the "proto" server keyword */
551static int srv_parse_proto(char **args, int *cur_arg,
552 struct proxy *px, struct server *newsrv, char **err)
553{
554 struct ist proto;
555
556 if (!*args[*cur_arg + 1]) {
557 memprintf(err, "'%s' : missing value", args[*cur_arg]);
558 return ERR_ALERT | ERR_FATAL;
559 }
560 proto = ist2(args[*cur_arg + 1], strlen(args[*cur_arg + 1]));
561 newsrv->mux_proto = get_mux_proto(proto);
562 if (!newsrv->mux_proto) {
563 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
564 return ERR_ALERT | ERR_FATAL;
565 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200566 return 0;
567}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100568
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100569/* parse the "proxy-v2-options" */
570static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
571 struct proxy *px, struct server *newsrv, char **err)
572{
573 char *p, *n;
574 for (p = args[*cur_arg+1]; p; p = n) {
575 n = strchr(p, ',');
576 if (n)
577 *n++ = '\0';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100578 if (strcmp(p, "ssl") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100579 newsrv->pp_opts |= SRV_PP_V2_SSL;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100580 } else if (strcmp(p, "cert-cn") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100581 newsrv->pp_opts |= SRV_PP_V2_SSL;
582 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100583 } else if (strcmp(p, "cert-key") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100584 newsrv->pp_opts |= SRV_PP_V2_SSL;
585 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100586 } else if (strcmp(p, "cert-sig") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100587 newsrv->pp_opts |= SRV_PP_V2_SSL;
588 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100589 } else if (strcmp(p, "ssl-cipher") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100590 newsrv->pp_opts |= SRV_PP_V2_SSL;
591 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100592 } else if (strcmp(p, "authority") == 0) {
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100593 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100594 } else if (strcmp(p, "crc32c") == 0) {
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100595 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100596 } else if (strcmp(p, "unique-id") == 0) {
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100597 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100598 } else
599 goto fail;
600 }
601 return 0;
602 fail:
603 if (err)
604 memprintf(err, "'%s' : proxy v2 option not implemented", p);
605 return ERR_ALERT | ERR_FATAL;
606}
607
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100608/* Parse the "observe" server keyword */
609static int srv_parse_observe(char **args, int *cur_arg,
610 struct proxy *curproxy, struct server *newsrv, char **err)
611{
612 char *arg;
613
614 arg = args[*cur_arg + 1];
615 if (!*arg) {
616 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
617 return ERR_ALERT | ERR_FATAL;
618 }
619
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100620 if (strcmp(arg, "none") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100621 newsrv->observe = HANA_OBS_NONE;
622 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100623 else if (strcmp(arg, "layer4") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100624 newsrv->observe = HANA_OBS_LAYER4;
625 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100626 else if (strcmp(arg, "layer7") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100627 if (curproxy->mode != PR_MODE_HTTP) {
628 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
629 return ERR_ALERT;
630 }
631 newsrv->observe = HANA_OBS_LAYER7;
632 }
633 else {
634 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
635 "but got '%s'\n", args[*cur_arg], arg);
636 return ERR_ALERT | ERR_FATAL;
637 }
638
639 return 0;
640}
641
Frédéric Lécaille16186232017-03-14 16:42:49 +0100642/* Parse the "redir" server keyword */
643static int srv_parse_redir(char **args, int *cur_arg,
644 struct proxy *curproxy, struct server *newsrv, char **err)
645{
646 char *arg;
647
648 arg = args[*cur_arg + 1];
649 if (!*arg) {
650 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
651 return ERR_ALERT | ERR_FATAL;
652 }
653
654 free(newsrv->rdr_pfx);
655 newsrv->rdr_pfx = strdup(arg);
656 newsrv->rdr_len = strlen(arg);
657
658 return 0;
659}
660
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100661/* Parse the "send-proxy" server keyword */
662static int srv_parse_send_proxy(char **args, int *cur_arg,
663 struct proxy *curproxy, struct server *newsrv, char **err)
664{
665 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
666}
667
668/* Parse the "send-proxy-v2" server keyword */
669static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
670 struct proxy *curproxy, struct server *newsrv, char **err)
671{
672 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
673}
674
Frédéric Lécailledba97072017-03-17 15:33:50 +0100675
676/* Parse the "source" server keyword */
677static int srv_parse_source(char **args, int *cur_arg,
678 struct proxy *curproxy, struct server *newsrv, char **err)
679{
680 char *errmsg;
681 int port_low, port_high;
682 struct sockaddr_storage *sk;
Frédéric Lécailledba97072017-03-17 15:33:50 +0100683
684 errmsg = NULL;
685
686 if (!*args[*cur_arg + 1]) {
687 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
688 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
689 goto err;
690 }
691
692 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200693 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
694 &errmsg, NULL, NULL,
695 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_RANGE | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100696 if (!sk) {
697 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
698 goto err;
699 }
700
Frédéric Lécailledba97072017-03-17 15:33:50 +0100701 newsrv->conn_src.opts |= CO_SRC_BIND;
702 newsrv->conn_src.source_addr = *sk;
703
704 if (port_low != port_high) {
705 int i;
706
Frédéric Lécailledba97072017-03-17 15:33:50 +0100707 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
708 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
709 newsrv->conn_src.sport_range->ports[i] = port_low + i;
710 }
711
712 *cur_arg += 2;
713 while (*(args[*cur_arg])) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100714 if (strcmp(args[*cur_arg], "usesrc") == 0) { /* address to use outside */
Frédéric Lécailledba97072017-03-17 15:33:50 +0100715#if defined(CONFIG_HAP_TRANSPARENT)
716 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100717 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
718 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +0100719 goto err;
720 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100721 if (strcmp(args[*cur_arg + 1], "client") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +0100722 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
723 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
724 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100725 else if (strcmp(args[*cur_arg + 1], "clientip") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +0100726 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
727 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
728 }
729 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
730 char *name, *end;
731
732 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +0100733 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100734 name++;
735
736 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +0100737 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +0100738 end++;
739
740 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
741 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
742 free(newsrv->conn_src.bind_hdr_name);
743 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
744 newsrv->conn_src.bind_hdr_len = end - name;
745 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
746 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
747 newsrv->conn_src.bind_hdr_occ = -1;
748
749 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +0100750 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100751 end++;
752 if (*end == ',') {
753 end++;
754 name = end;
755 if (*end == '-')
756 end++;
Willy Tarreau90807112020-02-25 08:16:33 +0100757 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100758 end++;
759 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
760 }
761
762 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100763 ha_alert("usesrc hdr_ip(name,num) does not support negative"
764 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100765 goto err;
766 }
767 }
768 else {
769 struct sockaddr_storage *sk;
770 int port1, port2;
771
772 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200773 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL,
774 &errmsg, NULL, NULL,
775 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100776 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100777 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100778 goto err;
779 }
780
Frédéric Lécailledba97072017-03-17 15:33:50 +0100781 newsrv->conn_src.tproxy_addr = *sk;
782 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
783 }
784 global.last_checks |= LSTCHK_NETADM;
785 *cur_arg += 2;
786 continue;
787#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100788 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 +0100789 goto err;
790#endif /* defined(CONFIG_HAP_TRANSPARENT) */
791 } /* "usesrc" */
792
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100793 if (strcmp(args[*cur_arg], "interface") == 0) { /* specifically bind to this interface */
Frédéric Lécailledba97072017-03-17 15:33:50 +0100794#ifdef SO_BINDTODEVICE
795 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100796 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100797 goto err;
798 }
799 free(newsrv->conn_src.iface_name);
800 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
801 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
802 global.last_checks |= LSTCHK_NETADM;
803#else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100804 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100805 goto err;
806#endif
807 *cur_arg += 2;
808 continue;
809 }
810 /* this keyword in not an option of "source" */
811 break;
812 } /* while */
813
814 return 0;
815
816 err:
817 free(errmsg);
818 return ERR_ALERT | ERR_FATAL;
819}
820
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100821/* Parse the "stick" server keyword */
822static int srv_parse_stick(char **args, int *cur_arg,
823 struct proxy *curproxy, struct server *newsrv, char **err)
824{
825 newsrv->flags &= ~SRV_F_NON_STICK;
826 return 0;
827}
828
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100829/* Parse the "track" server keyword */
830static int srv_parse_track(char **args, int *cur_arg,
831 struct proxy *curproxy, struct server *newsrv, char **err)
832{
833 char *arg;
834
835 arg = args[*cur_arg + 1];
836 if (!*arg) {
837 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
838 return ERR_ALERT | ERR_FATAL;
839 }
840
841 free(newsrv->trackit);
842 newsrv->trackit = strdup(arg);
843
844 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800845}
846
847/* Parse the "socks4" server keyword */
848static int srv_parse_socks4(char **args, int *cur_arg,
849 struct proxy *curproxy, struct server *newsrv, char **err)
850{
851 char *errmsg;
852 int port_low, port_high;
853 struct sockaddr_storage *sk;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800854
855 errmsg = NULL;
856
857 if (!*args[*cur_arg + 1]) {
858 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
859 goto err;
860 }
861
862 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200863 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
864 &errmsg, NULL, NULL,
865 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT);
Alexander Liu2a54bb72019-05-22 19:44:48 +0800866 if (!sk) {
867 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
868 goto err;
869 }
870
Alexander Liu2a54bb72019-05-22 19:44:48 +0800871 newsrv->flags |= SRV_F_SOCKS4_PROXY;
872 newsrv->socks4_addr = *sk;
873
Alexander Liu2a54bb72019-05-22 19:44:48 +0800874 return 0;
875
876 err:
877 free(errmsg);
878 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100879}
880
Frédéric Lécailledba97072017-03-17 15:33:50 +0100881
Willy Tarreau034c88c2017-01-23 23:36:45 +0100882/* parse the "tfo" server keyword */
883static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
884{
885 newsrv->flags |= SRV_F_FASTOPEN;
886 return 0;
887}
888
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200889/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +0200890 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200891 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200892 *
893 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200894 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200895void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200896{
Willy Tarreau87b09662015-04-03 00:22:06 +0200897 struct stream *stream, *stream_bck;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200898
Willy Tarreau87b09662015-04-03 00:22:06 +0200899 list_for_each_entry_safe(stream, stream_bck, &srv->actconns, by_srv)
900 if (stream->srv_conn == srv)
901 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200902}
903
904/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +0200905 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200906 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200907 *
908 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200909 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200910void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200911{
912 struct server *srv;
913
914 for (srv = px->srv; srv != NULL; srv = srv->next)
915 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +0200916 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200917}
918
Willy Tarreaubda92272014-05-20 21:55:30 +0200919/* Appends some information to a message string related to a server going UP or
920 * DOWN. If both <forced> and <reason> are null and the server tracks another
921 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +0200922 * If <check> is non-null, an entire string describing the check result will be
923 * appended after a comma and a space (eg: to report some information from the
924 * check that changed the state). In the other case, the string will be built
925 * using the check results stored into the struct server if present.
926 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +0200927 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200928 *
929 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200930 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200931void srv_append_status(struct buffer *msg, struct server *s,
932 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200933{
Emeric Brun5a133512017-10-19 14:42:30 +0200934 short status = s->op_st_chg.status;
935 short code = s->op_st_chg.code;
936 long duration = s->op_st_chg.duration;
937 char *desc = s->op_st_chg.reason;
938
939 if (check) {
940 status = check->status;
941 code = check->code;
942 duration = check->duration;
943 desc = check->desc;
944 }
945
946 if (status != -1) {
947 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
948
949 if (status >= HCHK_STATUS_L57DATA)
950 chunk_appendf(msg, ", code: %d", code);
951
952 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +0200953 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +0200954
955 chunk_appendf(msg, ", info: \"");
956
957 chunk_initlen(&src, desc, 0, strlen(desc));
958 chunk_asciiencode(msg, &src, '"');
959
960 chunk_appendf(msg, "\"");
961 }
962
963 if (duration >= 0)
964 chunk_appendf(msg, ", check duration: %ldms", duration);
965 }
966 else if (desc && *desc) {
967 chunk_appendf(msg, ", %s", desc);
968 }
969 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +0200970 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +0200971 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200972
973 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200974 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200975 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
976 " %d sessions active, %d requeued, %d remaining in queue",
977 s->proxy->srv_act, s->proxy->srv_bck,
978 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
979 s->cur_sess, xferred, s->nbpend);
980 else
981 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
982 " %d sessions requeued, %d total in queue",
983 s->proxy->srv_act, s->proxy->srv_bck,
984 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
985 xferred, s->nbpend);
986 }
987}
988
Emeric Brun5a133512017-10-19 14:42:30 +0200989/* Marks server <s> down, regardless of its checks' statuses. The server is
990 * registered in a list to postpone the counting of the remaining servers on
991 * the proxy and transfers queued streams whenever possible to other servers at
992 * a sync point. Maintenance servers are ignored. It stores the <reason> if
993 * non-null as the reason for going down or the available data from the check
994 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200995 *
996 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200997 */
Emeric Brun5a133512017-10-19 14:42:30 +0200998void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200999{
1000 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001001
Emeric Brun64cc49c2017-10-03 14:46:45 +02001002 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001003 return;
1004
Emeric Brun52a91d32017-08-31 14:41:55 +02001005 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +02001006 *s->op_st_chg.reason = 0;
1007 s->op_st_chg.status = -1;
1008 if (reason) {
1009 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1010 }
1011 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001012 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001013 s->op_st_chg.code = check->code;
1014 s->op_st_chg.status = check->status;
1015 s->op_st_chg.duration = check->duration;
1016 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001017
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001018 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001019 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001020
Emeric Brun9f0b4582017-10-23 14:39:51 +02001021 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001022 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001023 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001024 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001025 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001026}
1027
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001028/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001029 * in maintenance. The server is registered in a list to postpone the counting
1030 * of the remaining servers on the proxy and tries to grab requests from the
1031 * proxy at a sync point. Maintenance servers are ignored. It stores the
1032 * <reason> if non-null as the reason for going down or the available data
1033 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001034 *
1035 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001036 */
Emeric Brun5a133512017-10-19 14:42:30 +02001037void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001038{
1039 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001040
Emeric Brun64cc49c2017-10-03 14:46:45 +02001041 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001042 return;
1043
Emeric Brun52a91d32017-08-31 14:41:55 +02001044 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001045 return;
1046
Emeric Brun52a91d32017-08-31 14:41:55 +02001047 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001048 *s->op_st_chg.reason = 0;
1049 s->op_st_chg.status = -1;
1050 if (reason) {
1051 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1052 }
1053 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001054 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001055 s->op_st_chg.code = check->code;
1056 s->op_st_chg.status = check->status;
1057 s->op_st_chg.duration = check->duration;
1058 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001059
Emeric Brun64cc49c2017-10-03 14:46:45 +02001060 if (s->slowstart <= 0)
1061 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001062
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001063 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001064 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001065
Emeric Brun9f0b4582017-10-23 14:39:51 +02001066 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001067 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001068 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001069 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001070 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001071}
1072
Willy Tarreau8eb77842014-05-21 13:54:57 +02001073/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001074 * isn't in maintenance. The server is registered in a list to postpone the
1075 * counting of the remaining servers on the proxy and tries to grab requests
1076 * from the proxy. Maintenance servers are ignored. It stores the
1077 * <reason> if non-null as the reason for going down or the available data
1078 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001079 * up. Note that it makes use of the trash to build the log strings, so <reason>
1080 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001081 *
1082 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001083 */
Emeric Brun5a133512017-10-19 14:42:30 +02001084void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001085{
1086 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001087
Emeric Brun64cc49c2017-10-03 14:46:45 +02001088 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001089 return;
1090
Emeric Brun52a91d32017-08-31 14:41:55 +02001091 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001092 return;
1093
Emeric Brun52a91d32017-08-31 14:41:55 +02001094 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001095 *s->op_st_chg.reason = 0;
1096 s->op_st_chg.status = -1;
1097 if (reason) {
1098 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1099 }
1100 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001101 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001102 s->op_st_chg.code = check->code;
1103 s->op_st_chg.status = check->status;
1104 s->op_st_chg.duration = check->duration;
1105 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001106
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001107 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001108 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001109
Emeric Brun9f0b4582017-10-23 14:39:51 +02001110 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001111 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001112 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001113 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001114 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001115}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001116
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001117/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1118 * enforce either maint mode or drain mode. It is not allowed to set more than
1119 * one flag at once. The equivalent "inherited" flag is propagated to all
1120 * tracking servers. Maintenance mode disables health checks (but not agent
1121 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001122 * is done. If <cause> is non-null, it will be displayed at the end of the log
1123 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001124 *
1125 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001126 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001127void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001128{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001129 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001130
1131 if (!mode)
1132 return;
1133
1134 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001135 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001136 return;
1137
Emeric Brun52a91d32017-08-31 14:41:55 +02001138 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001139 if (cause)
1140 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1141
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001142 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001143 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001144
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001145 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001146 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1147 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001148 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001149
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001150 /* compute the inherited flag to propagate */
1151 if (mode & SRV_ADMF_MAINT)
1152 mode = SRV_ADMF_IMAINT;
1153 else if (mode & SRV_ADMF_DRAIN)
1154 mode = SRV_ADMF_IDRAIN;
1155
Emeric Brun9f0b4582017-10-23 14:39:51 +02001156 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001157 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001158 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001159 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001160 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001161}
1162
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001163/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1164 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1165 * than one flag at once. The equivalent "inherited" flag is propagated to all
1166 * tracking servers. Leaving maintenance mode re-enables health checks. When
1167 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001168 *
1169 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001170 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001171void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001172{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001173 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001174
1175 if (!mode)
1176 return;
1177
1178 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001179 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001180 return;
1181
Emeric Brun52a91d32017-08-31 14:41:55 +02001182 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001183
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001184 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001185 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001186
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001187 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001188 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1189 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001190 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001191
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001192 if (mode & SRV_ADMF_MAINT)
1193 mode = SRV_ADMF_IMAINT;
1194 else if (mode & SRV_ADMF_DRAIN)
1195 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001196
Emeric Brun9f0b4582017-10-23 14:39:51 +02001197 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001198 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001199 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001200 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001201 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001202}
1203
Willy Tarreau757478e2016-11-03 19:22:19 +01001204/* principle: propagate maint and drain to tracking servers. This is useful
1205 * upon startup so that inherited states are correct.
1206 */
1207static void srv_propagate_admin_state(struct server *srv)
1208{
1209 struct server *srv2;
1210
1211 if (!srv->trackers)
1212 return;
1213
1214 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001215 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001216 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001217 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001218
Emeric Brun52a91d32017-08-31 14:41:55 +02001219 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001220 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001221 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001222 }
1223}
1224
1225/* Compute and propagate the admin states for all servers in proxy <px>.
1226 * Only servers *not* tracking another one are considered, because other
1227 * ones will be handled when the server they track is visited.
1228 */
1229void srv_compute_all_admin_states(struct proxy *px)
1230{
1231 struct server *srv;
1232
1233 for (srv = px->srv; srv; srv = srv->next) {
1234 if (srv->track)
1235 continue;
1236 srv_propagate_admin_state(srv);
1237 }
1238}
1239
Willy Tarreaudff55432012-10-10 17:51:05 +02001240/* Note: must not be declared <const> as its list will be overwritten.
1241 * Please take care of keeping this list alphabetically sorted, doing so helps
1242 * all code contributors.
1243 * Optional keywords are also declared with a NULL ->parse() function so that
1244 * the config parser can report an appropriate error when a known keyword was
1245 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001246 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001247 */
1248static struct srv_kw_list srv_kws = { "ALL", { }, {
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001249 { "backup", srv_parse_backup, 0, 1 }, /* Flag as backup server */
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +01001250 { "cookie", srv_parse_cookie, 1, 1 }, /* Assign a cookie to the server */
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +01001251 { "disabled", srv_parse_disabled, 0, 1 }, /* Start the server in 'disabled' state */
1252 { "enabled", srv_parse_enabled, 0, 1 }, /* Start the server in 'enabled' state */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001253 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
Willy Tarreau9c538e02019-01-23 10:21:49 +01001254 { "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 +01001255 { "namespace", srv_parse_namespace, 1, 1 }, /* Namespace the server socket belongs to (if supported) */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001256 { "no-backup", srv_parse_no_backup, 0, 1 }, /* Flag as non-backup server */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001257 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1 }, /* Disable use of PROXY V1 protocol */
1258 { "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 +02001259 { "no-tfo", srv_parse_no_tfo, 0, 1 }, /* Disable use of TCP Fast Open */
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001260 { "non-stick", srv_parse_non_stick, 0, 1 }, /* Disable stick-table persistence */
Frédéric Lécaille547356e2017-03-15 08:55:39 +01001261 { "observe", srv_parse_observe, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001262 { "pool-low-conn", srv_parse_pool_low_conn, 1, 1 }, /* Set the min number of orphan idle connecbefore being allowed to pick from other threads */
Olivier Houchard006e3102018-12-10 18:30:32 +01001263 { "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 +01001264 { "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 +02001265 { "proto", srv_parse_proto, 1, 1 }, /* Set the proto to use for all outgoing connections */
Emmanuel Hocdetf643b802018-02-01 15:20:32 +01001266 { "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 +01001267 { "redir", srv_parse_redir, 1, 1 }, /* Enable redirection mode */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001268 { "send-proxy", srv_parse_send_proxy, 0, 1 }, /* Enforce use of PROXY V1 protocol */
1269 { "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 +02001270 { "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 +01001271 { "stick", srv_parse_stick, 0, 1 }, /* Enable stick-table persistence */
Olivier Houchard8d82db72019-07-04 13:34:10 +02001272 { "tfo", srv_parse_tfo, 0, 1 }, /* enable TCP Fast Open of server */
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001273 { "track", srv_parse_track, 1, 1 }, /* Set the current state of the server, tracking another one */
Alexander Liu2a54bb72019-05-22 19:44:48 +08001274 { "socks4", srv_parse_socks4, 1, 1 }, /* Set the socks4 proxy of the server*/
Willy Tarreaudff55432012-10-10 17:51:05 +02001275 { NULL, NULL, 0 },
1276}};
1277
Willy Tarreau0108d902018-11-25 19:14:37 +01001278INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001279
Willy Tarreau004e0452013-11-21 11:22:01 +01001280/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001281 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001282 * state is automatically disabled if the time is elapsed. If <must_update> is
1283 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001284 *
1285 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001286 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001287void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001288{
1289 struct proxy *px = sv->proxy;
1290 unsigned w;
1291
1292 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1293 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001294 if (sv->next_state == SRV_ST_STARTING)
1295 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001296 }
1297
1298 /* We must take care of not pushing the server to full throttle during slow starts.
1299 * It must also start immediately, at least at the minimal step when leaving maintenance.
1300 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001301 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001302 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1303 else
1304 w = px->lbprm.wdiv;
1305
Emeric Brun52a91d32017-08-31 14:41:55 +02001306 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001307
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001308 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001309 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001310 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001311}
1312
Willy Tarreaubaaee002006-06-26 02:48:02 +02001313/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001314 * Parses weight_str and configures sv accordingly.
1315 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001316 *
1317 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001318 */
1319const char *server_parse_weight_change_request(struct server *sv,
1320 const char *weight_str)
1321{
1322 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001323 long int w;
1324 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001325
1326 px = sv->proxy;
1327
1328 /* if the weight is terminated with '%', it is set relative to
1329 * the initial weight, otherwise it is absolute.
1330 */
1331 if (!*weight_str)
1332 return "Require <weight> or <weight%>.\n";
1333
Simon Hormanb796afa2013-02-12 10:45:53 +09001334 w = strtol(weight_str, &end, 10);
1335 if (end == weight_str)
1336 return "Empty weight string empty or preceded by garbage";
1337 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001338 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001339 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001340 /* Avoid integer overflow */
1341 if (w > 25600)
1342 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001343 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001344 if (w > 256)
1345 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001346 }
1347 else if (w < 0 || w > 256)
1348 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001349 else if (end[0] != '\0')
1350 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001351
1352 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1353 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1354
1355 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001356 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001357
1358 return NULL;
1359}
1360
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001361/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001362 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1363 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001364 * Returns:
1365 * - error string on error
1366 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001367 *
1368 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001369 */
1370const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001371 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001372{
1373 unsigned char ip[INET6_ADDRSTRLEN];
1374
1375 if (inet_pton(AF_INET6, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001376 update_server_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001377 return NULL;
1378 }
1379 if (inet_pton(AF_INET, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001380 update_server_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001381 return NULL;
1382 }
1383
1384 return "Could not understand IP address format.\n";
1385}
1386
Willy Tarreau46b7f532018-08-21 11:54:26 +02001387/*
1388 * Must be called with the server lock held.
1389 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001390const char *server_parse_maxconn_change_request(struct server *sv,
1391 const char *maxconn_str)
1392{
1393 long int v;
1394 char *end;
1395
1396 if (!*maxconn_str)
1397 return "Require <maxconn>.\n";
1398
1399 v = strtol(maxconn_str, &end, 10);
1400 if (end == maxconn_str)
1401 return "maxconn string empty or preceded by garbage";
1402 else if (end[0] != '\0')
1403 return "Trailing garbage in maxconn string";
1404
1405 if (sv->maxconn == sv->minconn) { // static maxconn
1406 sv->maxconn = sv->minconn = v;
1407 } else { // dynamic maxconn
1408 sv->maxconn = v;
1409 }
1410
1411 if (may_dequeue_tasks(sv, sv->proxy))
1412 process_srv_queue(sv);
1413
1414 return NULL;
1415}
1416
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001417#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001418static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1419 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001420{
1421 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001422 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001423 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001424 NULL,
1425 };
1426
1427 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001428 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001429
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001430 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001431}
1432
1433static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1434{
1435 struct sample_expr *expr;
1436
1437 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 +01001438 if (!expr) {
1439 memprintf(err, "error detected while parsing sni expression : %s", *err);
1440 return ERR_ALERT | ERR_FATAL;
1441 }
1442
1443 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1444 memprintf(err, "error detected while parsing sni expression : "
1445 " fetch method '%s' extracts information from '%s', "
1446 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001447 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001448 return ERR_ALERT | ERR_FATAL;
1449 }
1450
1451 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1452 release_sample_expr(newsrv->ssl_ctx.sni);
1453 newsrv->ssl_ctx.sni = expr;
1454
1455 return 0;
1456}
1457#endif
1458
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001459static 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 +01001460{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001461 char *msg = "error encountered while processing ";
1462 char *quote = "'";
1463 char *token = args[cur_arg];
1464
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001465 if (err && *err) {
1466 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001467 msg = *err;
1468 quote = "";
1469 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001470 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001471
1472 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
1473 ha_warning("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 else
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001477 ha_alert("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1478 file, linenum, args[0], args[1],
1479 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001480}
1481
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001482static void srv_conn_src_sport_range_cpy(struct server *srv,
1483 struct server *src)
1484{
1485 int range_sz;
1486
1487 range_sz = src->conn_src.sport_range->size;
1488 if (range_sz > 0) {
1489 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1490 if (srv->conn_src.sport_range != NULL) {
1491 int i;
1492
1493 for (i = 0; i < range_sz; i++) {
1494 srv->conn_src.sport_range->ports[i] =
1495 src->conn_src.sport_range->ports[i];
1496 }
1497 }
1498 }
1499}
1500
1501/*
1502 * Copy <src> server connection source settings to <srv> server everything needed.
1503 */
1504static void srv_conn_src_cpy(struct server *srv, struct server *src)
1505{
1506 srv->conn_src.opts = src->conn_src.opts;
1507 srv->conn_src.source_addr = src->conn_src.source_addr;
1508
1509 /* Source port range copy. */
1510 if (src->conn_src.sport_range != NULL)
1511 srv_conn_src_sport_range_cpy(srv, src);
1512
1513#ifdef CONFIG_HAP_TRANSPARENT
1514 if (src->conn_src.bind_hdr_name != NULL) {
1515 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1516 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1517 }
1518 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1519 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1520#endif
1521 if (src->conn_src.iface_name != NULL)
1522 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1523}
1524
1525/*
1526 * Copy <src> server SSL settings to <srv> server allocating
1527 * everything needed.
1528 */
1529#if defined(USE_OPENSSL)
1530static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1531{
1532 if (src->ssl_ctx.ca_file != NULL)
1533 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1534 if (src->ssl_ctx.crl_file != NULL)
1535 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
1536 if (src->ssl_ctx.client_crt != NULL)
1537 srv->ssl_ctx.client_crt = strdup(src->ssl_ctx.client_crt);
1538
1539 srv->ssl_ctx.verify = src->ssl_ctx.verify;
1540
1541 if (src->ssl_ctx.verify_host != NULL)
1542 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
1543 if (src->ssl_ctx.ciphers != NULL)
1544 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02001545 if (src->ssl_ctx.options)
1546 srv->ssl_ctx.options = src->ssl_ctx.options;
1547 if (src->ssl_ctx.methods.flags)
1548 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
1549 if (src->ssl_ctx.methods.min)
1550 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
1551 if (src->ssl_ctx.methods.max)
1552 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
1553
Willy Tarreau5db847a2019-05-09 14:13:35 +02001554#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02001555 if (src->ssl_ctx.ciphersuites != NULL)
1556 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
1557#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001558 if (src->sni_expr != NULL)
1559 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01001560
1561#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
1562 if (src->ssl_ctx.alpn_str) {
1563 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
1564 if (srv->ssl_ctx.alpn_str) {
1565 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
1566 src->ssl_ctx.alpn_len);
1567 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
1568 }
1569 }
1570#endif
1571#ifdef OPENSSL_NPN_NEGOTIATED
1572 if (src->ssl_ctx.npn_str) {
1573 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
1574 if (srv->ssl_ctx.npn_str) {
1575 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
1576 src->ssl_ctx.npn_len);
1577 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
1578 }
1579 }
1580#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001581}
1582#endif
1583
1584/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001585 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001586 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001587 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001588 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001589static int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001590{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001591 char *hostname_dn;
1592 int hostname_len, hostname_dn_len;
1593
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001594 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001595 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001596
Christopher Faulet67957bd2017-09-27 11:00:59 +02001597 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001598 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001599 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
1600 hostname_dn, trash.size);
1601 if (hostname_dn_len == -1)
1602 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001603
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001604
Christopher Faulet67957bd2017-09-27 11:00:59 +02001605 free(srv->hostname);
1606 free(srv->hostname_dn);
1607 srv->hostname = strdup(hostname);
1608 srv->hostname_dn = strdup(hostname_dn);
1609 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001610 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001611 goto err;
1612
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001613 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001614
1615 err:
Christopher Faulet67957bd2017-09-27 11:00:59 +02001616 free(srv->hostname); srv->hostname = NULL;
1617 free(srv->hostname_dn); srv->hostname_dn = NULL;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001618 return -1;
1619}
1620
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001621/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001622 * Copy <src> server settings to <srv> server allocating
1623 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001624 * This function is not supposed to be called at any time, but only
1625 * during server settings parsing or during server allocations from
1626 * a server template, and just after having calloc()'ed a new server.
1627 * So, <src> may only be a default server (when parsing server settings)
1628 * or a server template (during server allocations from a server template).
1629 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
1630 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001631 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001632static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001633{
1634 /* Connection source settings copy */
1635 srv_conn_src_cpy(srv, src);
1636
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001637 if (srv_tmpl) {
1638 srv->addr = src->addr;
1639 srv->svc_port = src->svc_port;
1640 }
1641
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001642 srv->pp_opts = src->pp_opts;
1643 if (src->rdr_pfx != NULL) {
1644 srv->rdr_pfx = strdup(src->rdr_pfx);
1645 srv->rdr_len = src->rdr_len;
1646 }
1647 if (src->cookie != NULL) {
1648 srv->cookie = strdup(src->cookie);
1649 srv->cklen = src->cklen;
1650 }
1651 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01001652 srv->check.addr = src->check.addr;
1653 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001654 srv->check.use_ssl = src->check.use_ssl;
1655 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01001656 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01001657 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05001658 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001659 /* Note: 'flags' field has potentially been already initialized. */
1660 srv->flags |= src->flags;
1661 srv->do_check = src->do_check;
1662 srv->do_agent = src->do_agent;
1663 if (srv->check.port)
1664 srv->flags |= SRV_F_CHECKPORT;
1665 srv->check.inter = src->check.inter;
1666 srv->check.fastinter = src->check.fastinter;
1667 srv->check.downinter = src->check.downinter;
1668 srv->agent.use_ssl = src->agent.use_ssl;
1669 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001670
1671 if (src->agent.tcpcheck_rules) {
1672 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
1673 if (srv->agent.tcpcheck_rules) {
1674 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
1675 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
1676 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
1677 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
1678 &src->agent.tcpcheck_rules->preset_vars);
1679 }
1680 }
1681
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001682 srv->agent.inter = src->agent.inter;
1683 srv->agent.fastinter = src->agent.fastinter;
1684 srv->agent.downinter = src->agent.downinter;
1685 srv->maxqueue = src->maxqueue;
1686 srv->minconn = src->minconn;
1687 srv->maxconn = src->maxconn;
1688 srv->slowstart = src->slowstart;
1689 srv->observe = src->observe;
1690 srv->onerror = src->onerror;
1691 srv->onmarkeddown = src->onmarkeddown;
1692 srv->onmarkedup = src->onmarkedup;
1693 if (src->trackit != NULL)
1694 srv->trackit = strdup(src->trackit);
1695 srv->consecutive_errors_limit = src->consecutive_errors_limit;
1696 srv->uweight = srv->iweight = src->iweight;
1697
1698 srv->check.send_proxy = src->check.send_proxy;
1699 /* health: up, but will fall down at first failure */
1700 srv->check.rise = srv->check.health = src->check.rise;
1701 srv->check.fall = src->check.fall;
1702
1703 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001704 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
1705 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
1706 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001707 srv->check.state |= CHK_ST_PAUSED;
1708 srv->check.health = 0;
1709 }
1710
1711 /* health: up but will fall down at first failure */
1712 srv->agent.rise = srv->agent.health = src->agent.rise;
1713 srv->agent.fall = src->agent.fall;
1714
1715 if (src->resolvers_id != NULL)
1716 srv->resolvers_id = strdup(src->resolvers_id);
1717 srv->dns_opts.family_prio = src->dns_opts.family_prio;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001718 srv->dns_opts.accept_duplicate_ip = src->dns_opts.accept_duplicate_ip;
Daniel Corbettf8716912019-11-17 09:48:56 -05001719 srv->dns_opts.ignore_weight = src->dns_opts.ignore_weight;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001720 if (srv->dns_opts.family_prio == AF_UNSPEC)
1721 srv->dns_opts.family_prio = AF_INET6;
1722 memcpy(srv->dns_opts.pref_net,
1723 src->dns_opts.pref_net,
1724 sizeof srv->dns_opts.pref_net);
1725 srv->dns_opts.pref_net_nb = src->dns_opts.pref_net_nb;
1726
1727 srv->init_addr_methods = src->init_addr_methods;
1728 srv->init_addr = src->init_addr;
1729#if defined(USE_OPENSSL)
1730 srv_ssl_settings_cpy(srv, src);
1731#endif
1732#ifdef TCP_USER_TIMEOUT
1733 srv->tcp_ut = src->tcp_ut;
1734#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001735 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001736 srv->pool_purge_delay = src->pool_purge_delay;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001737 srv->low_idle_conns = src->low_idle_conns;
Olivier Houchard006e3102018-12-10 18:30:32 +01001738 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01001739 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001740
Olivier Houchard8da5f982017-08-04 18:35:36 +02001741 if (srv_tmpl)
1742 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001743
1744 srv->check.via_socks4 = src->check.via_socks4;
1745 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001746}
1747
William Lallemand313bfd12018-10-26 14:47:32 +02001748struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001749{
1750 struct server *srv;
1751
1752 srv = calloc(1, sizeof *srv);
1753 if (!srv)
1754 return NULL;
1755
1756 srv->obj_type = OBJ_TYPE_SERVER;
1757 srv->proxy = proxy;
1758 LIST_INIT(&srv->actconns);
Patrick Hemmer0355dab2018-05-11 12:52:31 -04001759 srv->pendconns = EB_ROOT;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001760
Emeric Brun52a91d32017-08-31 14:41:55 +02001761 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001762 srv->last_change = now.tv_sec;
1763
Christopher Faulet38290462020-04-21 11:46:40 +02001764 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001765 srv->check.status = HCHK_STATUS_INI;
1766 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01001767 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02001768 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001769
Christopher Faulet38290462020-04-21 11:46:40 +02001770 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001771 srv->agent.status = HCHK_STATUS_INI;
1772 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01001773 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001774 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
Frédéric Lécaillef46c10c2020-11-23 14:29:28 +01001775#if defined(USE_QUIC)
1776 srv->cids = EB_ROOT_UNIQUE;
1777#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001778
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01001779 srv->extra_counters = NULL;
1780
Willy Tarreau975b1552019-06-06 16:25:55 +02001781 /* please don't put default server settings here, they are set in
1782 * init_default_instance().
1783 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001784 return srv;
1785}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001786
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001787#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1788static int server_sni_expr_init(const char *file, int linenum, char **args, int cur_arg,
1789 struct server *srv, struct proxy *proxy)
1790{
1791 int ret;
1792 char *err = NULL;
1793
1794 if (!srv->sni_expr)
1795 return 0;
1796
1797 ret = server_parse_sni_expr(srv, proxy, &err);
1798 if (!ret)
1799 return 0;
1800
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001801 display_parser_err(file, linenum, args, cur_arg, ret, &err);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001802 free(err);
1803
1804 return ret;
1805}
1806#endif
1807
1808/*
1809 * Server initializations finalization.
1810 * Initialize health check, agent check and SNI expression if enabled.
1811 * Must not be called for a default server instance.
1812 */
1813static int server_finalize_init(const char *file, int linenum, char **args, int cur_arg,
1814 struct server *srv, struct proxy *px)
1815{
Christopher Fauletb3b53522020-04-27 11:17:10 +02001816#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001817 int ret;
Christopher Fauletb3b53522020-04-27 11:17:10 +02001818#endif
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001819
Christopher Faulet8892e5d2020-03-26 19:48:20 +01001820 if (srv->do_check && srv->trackit) {
1821 ha_alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1822 file, linenum);
1823 return ERR_ALERT | ERR_FATAL;
1824 }
1825
1826 if (srv->do_agent && !srv->agent.port) {
1827 ha_alert("parsing [%s:%d] : server %s does not have agent port. Agent check has been disabled.\n",
1828 file, linenum, srv->id);
1829 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001830 }
1831
1832#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1833 if ((ret = server_sni_expr_init(file, linenum, args, cur_arg, srv, px)) != 0)
1834 return ret;
1835#endif
1836
1837 if (srv->flags & SRV_F_BACKUP)
1838 px->srv_bck++;
1839 else
1840 px->srv_act++;
1841 srv_lb_commit_status(srv);
1842
1843 return 0;
1844}
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001845
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001846/*
1847 * Parse as much as possible such a range string argument: low[-high]
1848 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
1849 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
1850 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
1851 * Returns 0 if succeeded, -1 if not.
1852 */
1853static int srv_tmpl_parse_range(struct server *srv, const char *arg, int *nb_low, int *nb_high)
1854{
1855 char *nb_high_arg;
1856
1857 *nb_high = 0;
1858 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001859 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001860
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001861 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001862 *nb_high_arg++ = '\0';
1863 *nb_high = atoi(nb_high_arg);
1864 }
1865 else {
1866 *nb_high += *nb_low;
1867 *nb_low = 1;
1868 }
1869
1870 if (*nb_low < 0 || *nb_high < *nb_low)
1871 return -1;
1872
1873 return 0;
1874}
1875
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001876static inline void srv_set_id_from_prefix(struct server *srv, const char *prefix, int nb)
1877{
1878 chunk_printf(&trash, "%s%d", prefix, nb);
1879 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001880 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001881}
1882
1883/*
1884 * Initialize as much as possible servers from <srv> server template.
1885 * Note that a server template is a special server with
1886 * a few different parameters than a server which has
1887 * been parsed mostly the same way as a server.
Joseph Herlant44466822018-11-15 08:57:51 -08001888 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001889 * 'srv' template included.
1890 */
1891static int server_template_init(struct server *srv, struct proxy *px)
1892{
1893 int i;
1894 struct server *newsrv;
1895
1896 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 +02001897 newsrv = new_server(px);
1898 if (!newsrv)
1899 goto err;
1900
Christopher Faulet75bef002020-11-02 22:04:55 +01001901 newsrv->conf.file = strdup(srv->conf.file);
1902 newsrv->conf.line = srv->conf.line;
1903
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001904 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001905 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001906#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1907 if (newsrv->sni_expr) {
1908 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
1909 if (!newsrv->ssl_ctx.sni)
1910 goto err;
1911 }
1912#endif
1913 /* Set this new server ID. */
1914 srv_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
1915
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001916 /* Linked backwards first. This will be restablished after parsing. */
1917 newsrv->next = px->srv;
1918 px->srv = newsrv;
1919 }
1920 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1921
1922 return i - srv->tmpl_info.nb_low;
1923
1924 err:
1925 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1926 if (newsrv) {
1927#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1928 release_sample_expr(newsrv->ssl_ctx.sni);
1929#endif
1930 free_check(&newsrv->agent);
1931 free_check(&newsrv->check);
1932 }
1933 free(newsrv);
1934 return i - srv->tmpl_info.nb_low;
1935}
1936
Emeric Brund3db3842020-07-21 16:54:36 +02001937int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy,
1938 struct proxy *defproxy, int parse_addr, int in_peers_section, int initial_resolve)
Willy Tarreau272adea2014-03-31 10:39:59 +02001939{
1940 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001941 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001942 char *errmsg = NULL;
1943 int err_code = 0;
1944 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +02001945 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001946
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001947 if (strcmp(args[0], "server") == 0 ||
1948 strcmp(args[0], "peer") == 0 ||
1949 strcmp(args[0], "default-server") == 0 ||
1950 strcmp(args[0], "server-template") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001951 int cur_arg;
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001952 int defsrv = (*args[0] == 'd');
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001953 int srv = !defsrv && (*args[0] == 'p' || strcmp(args[0], "server") == 0);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001954 int srv_tmpl = !defsrv && !srv;
1955 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02001956
1957 if (!defsrv && curproxy == defproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001958 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001959 err_code |= ERR_ALERT | ERR_FATAL;
1960 goto out;
1961 }
1962 else if (warnifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL))
Olivier Houchard306e6532018-07-24 16:48:59 +02001963 err_code |= ERR_WARN;
Willy Tarreau272adea2014-03-31 10:39:59 +02001964
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001965 /* There is no mandatory first arguments for default server. */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01001966 if (srv && parse_addr) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001967 if (!*args[2]) {
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +02001968 if (in_peers_section) {
1969 return 0;
1970 }
1971 else {
1972 /* 'server' line number of argument check. */
1973 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1974 file, linenum, args[0]);
1975 err_code |= ERR_ALERT | ERR_FATAL;
1976 goto out;
1977 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001978 }
1979
1980 err = invalid_char(args[1]);
1981 }
1982 else if (srv_tmpl) {
1983 if (!*args[3]) {
1984 /* 'server-template' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001985 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 +02001986 file, linenum, args[0]);
1987 err_code |= ERR_ALERT | ERR_FATAL;
1988 goto out;
1989 }
1990
1991 err = invalid_prefix_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001992 }
1993
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001994 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001995 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 +02001996 file, linenum, *err, args[0], srv ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001997 err_code |= ERR_ALERT | ERR_FATAL;
1998 goto out;
1999 }
2000
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002001 cur_arg = 2;
2002 if (srv_tmpl) {
2003 /* Parse server-template <nb | range> arg. */
2004 if (srv_tmpl_parse_range(newsrv, args[cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002005 ha_alert("parsing [%s:%d] : Wrong %s number or range arg '%s'.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002006 file, linenum, args[0], args[cur_arg]);
2007 err_code |= ERR_ALERT | ERR_FATAL;
2008 goto out;
2009 }
2010 cur_arg++;
2011 }
2012
Willy Tarreau272adea2014-03-31 10:39:59 +02002013 if (!defsrv) {
2014 struct sockaddr_storage *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002015 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002016
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002017 newsrv = new_server(curproxy);
2018 if (!newsrv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002019 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Willy Tarreau272adea2014-03-31 10:39:59 +02002020 err_code |= ERR_ALERT | ERR_ABORT;
2021 goto out;
2022 }
2023
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002024 if (srv_tmpl) {
2025 newsrv->tmpl_info.nb_low = tmpl_range_low;
2026 newsrv->tmpl_info.nb_high = tmpl_range_high;
2027 }
2028
Willy Tarreau272adea2014-03-31 10:39:59 +02002029 /* the servers are linked backwards first */
2030 newsrv->next = curproxy->srv;
2031 curproxy->srv = newsrv;
Willy Tarreau272adea2014-03-31 10:39:59 +02002032 newsrv->conf.file = strdup(file);
2033 newsrv->conf.line = linenum;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002034 /* Note: for a server template, its id is its prefix.
2035 * This is a temporary id which will be used for server allocations to come
2036 * after parsing.
2037 */
2038 if (srv)
2039 newsrv->id = strdup(args[1]);
2040 else
2041 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002042
2043 /* several ways to check the port component :
2044 * - IP => port=+0, relative (IPv4 only)
2045 * - IP: => port=+0, relative
2046 * - IP:N => port=N, absolute
2047 * - IP:+N => port=+N, relative
2048 * - IP:-N => port=-N, relative
2049 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002050 if (!parse_addr)
2051 goto skip_addr;
2052
Willy Tarreau65ec4e32020-09-16 19:17:08 +02002053 sk = str2sa_range(args[cur_arg], &port, &port1, &port2, NULL, NULL,
2054 &errmsg, NULL, &fqdn,
2055 (initial_resolve ? PA_O_RESOLVE : 0) | PA_O_PORT_OK | PA_O_PORT_OFS | PA_O_STREAM | PA_O_XPRT | PA_O_CONNECT);
Willy Tarreau272adea2014-03-31 10:39:59 +02002056 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002057 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau272adea2014-03-31 10:39:59 +02002058 err_code |= ERR_ALERT | ERR_FATAL;
2059 goto out;
2060 }
2061
Willy Tarreau272adea2014-03-31 10:39:59 +02002062 if (!port1 || !port2) {
2063 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +02002064 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +02002065 }
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;
Thayne McCombs92149f92020-11-20 01:28:26 -07002088 // we don't need to lock the server here, because
2089 // we are in the process of initializing
2090 srv_set_addr_desc(newsrv);
Willy Tarreau272adea2014-03-31 10:39:59 +02002091
Olivier Houchard8da5f982017-08-04 18:35:36 +02002092 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002093 ha_alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002094 file, linenum, newsrv->addr.ss_family, args[cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002095 err_code |= ERR_ALERT | ERR_FATAL;
2096 goto out;
2097 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002098
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002099 cur_arg++;
2100 skip_addr:
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002101 /* Copy default server settings to new server settings. */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002102 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002103 HA_SPIN_INIT(&newsrv->lock);
Willy Tarreau272adea2014-03-31 10:39:59 +02002104 } else {
2105 newsrv = &curproxy->defsrv;
2106 cur_arg = 1;
Thierry Fournierada34842016-02-17 21:25:09 +01002107 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002108 newsrv->dns_opts.accept_duplicate_ip = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002109 }
2110
2111 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002112 if (strcmp(args[cur_arg], "init-addr") == 0) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002113 char *p, *end;
2114 int done;
Willy Tarreau4310d362016-11-02 15:05:56 +01002115 struct sockaddr_storage sa;
Baptiste Assmann25938272016-09-21 20:26:16 +02002116
2117 newsrv->init_addr_methods = 0;
2118 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
2119
2120 for (p = args[cur_arg + 1]; *p; p = end) {
2121 /* cut on next comma */
2122 for (end = p; *end && *end != ','; end++);
2123 if (*end)
2124 *(end++) = 0;
2125
Willy Tarreau4310d362016-11-02 15:05:56 +01002126 memset(&sa, 0, sizeof(sa));
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002127 if (strcmp(p, "libc") == 0) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002128 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
2129 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002130 else if (strcmp(p, "last") == 0) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002131 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
2132 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002133 else if (strcmp(p, "none") == 0) {
Willy Tarreau37ebe122016-11-04 15:17:58 +01002134 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
2135 }
Willy Tarreau4310d362016-11-02 15:05:56 +01002136 else if (str2ip2(p, &sa, 0)) {
2137 if (is_addr(&newsrv->init_addr)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002138 ha_alert("parsing [%s:%d]: '%s' : initial address already specified, cannot add '%s'.\n",
Willy Tarreau4310d362016-11-02 15:05:56 +01002139 file, linenum, args[cur_arg], p);
2140 err_code |= ERR_ALERT | ERR_FATAL;
2141 goto out;
2142 }
2143 newsrv->init_addr = sa;
2144 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
2145 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002146 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002147 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 +02002148 file, linenum, args[cur_arg], p);
2149 err_code |= ERR_ALERT | ERR_FATAL;
2150 goto out;
2151 }
2152 if (!done) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002153 ha_alert("parsing [%s:%d]: '%s' : too many init-addr methods when trying to add '%s'\n",
Baptiste Assmann25938272016-09-21 20:26:16 +02002154 file, linenum, args[cur_arg], p);
2155 err_code |= ERR_ALERT | ERR_FATAL;
2156 goto out;
2157 }
2158 }
2159 cur_arg += 2;
2160 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002161 else if (strcmp(args[cur_arg], "resolvers") == 0) {
Frédéric Lécailledaa2fe62017-04-20 12:17:50 +02002162 free(newsrv->resolvers_id);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002163 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
2164 cur_arg += 2;
2165 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002166 else if (strcmp(args[cur_arg], "resolve-opts") == 0) {
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002167 char *p, *end;
2168
2169 for (p = args[cur_arg + 1]; *p; p = end) {
2170 /* cut on next comma */
2171 for (end = p; *end && *end != ','; end++);
2172 if (*end)
2173 *(end++) = 0;
2174
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002175 if (strcmp(p, "allow-dup-ip") == 0) {
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002176 newsrv->dns_opts.accept_duplicate_ip = 1;
2177 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002178 else if (strcmp(p, "ignore-weight") == 0) {
Daniel Corbettf8716912019-11-17 09:48:56 -05002179 newsrv->dns_opts.ignore_weight = 1;
2180 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002181 else if (strcmp(p, "prevent-dup-ip") == 0) {
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002182 newsrv->dns_opts.accept_duplicate_ip = 0;
2183 }
2184 else {
Daniel Corbettf8716912019-11-17 09:48:56 -05002185 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 +02002186 file, linenum, args[cur_arg], p);
2187 err_code |= ERR_ALERT | ERR_FATAL;
2188 goto out;
2189 }
2190 }
2191
2192 cur_arg += 2;
2193 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002194 else if (strcmp(args[cur_arg], "resolve-prefer") == 0) {
2195 if (strcmp(args[cur_arg + 1], "ipv4") == 0)
Thierry Fournierada34842016-02-17 21:25:09 +01002196 newsrv->dns_opts.family_prio = AF_INET;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002197 else if (strcmp(args[cur_arg + 1], "ipv6") == 0)
Thierry Fournierada34842016-02-17 21:25:09 +01002198 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002199 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002200 ha_alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002201 file, linenum, args[cur_arg]);
2202 err_code |= ERR_ALERT | ERR_FATAL;
2203 goto out;
2204 }
2205 cur_arg += 2;
2206 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002207 else if (strcmp(args[cur_arg], "resolve-net") == 0) {
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002208 char *p, *e;
2209 unsigned char mask;
2210 struct dns_options *opt;
2211
2212 if (!args[cur_arg + 1] || args[cur_arg + 1][0] == '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002213 ha_alert("parsing [%s:%d]: '%s' expects a list of networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002214 file, linenum, args[cur_arg]);
2215 err_code |= ERR_ALERT | ERR_FATAL;
2216 goto out;
2217 }
2218
2219 opt = &newsrv->dns_opts;
2220
2221 /* Split arguments by comma, and convert it from ipv4 or ipv6
2222 * string network in in_addr or in6_addr.
2223 */
2224 p = args[cur_arg + 1];
2225 e = p;
2226 while (*p != '\0') {
Joseph Herlant44466822018-11-15 08:57:51 -08002227 /* If no room available, return error. */
David Carlierd10025c2016-04-08 10:26:44 +01002228 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002229 ha_alert("parsing [%s:%d]: '%s' exceed %d networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002230 file, linenum, args[cur_arg], SRV_MAX_PREF_NET);
2231 err_code |= ERR_ALERT | ERR_FATAL;
2232 goto out;
2233 }
2234 /* look for end or comma. */
2235 while (*e != ',' && *e != '\0')
2236 e++;
2237 if (*e == ',') {
2238 *e = '\0';
2239 e++;
2240 }
2241 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
2242 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
2243 /* Try to convert input string from ipv4 or ipv6 network. */
2244 opt->pref_net[opt->pref_net_nb].family = AF_INET;
2245 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
2246 &mask)) {
2247 /* Try to convert input string from ipv6 network. */
2248 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
2249 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
2250 } else {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05002251 /* All network conversions fail, return error. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002252 ha_alert("parsing [%s:%d]: '%s': invalid network '%s'.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002253 file, linenum, args[cur_arg], p);
2254 err_code |= ERR_ALERT | ERR_FATAL;
2255 goto out;
2256 }
2257 opt->pref_net_nb++;
2258 p = e;
2259 }
2260
2261 cur_arg += 2;
2262 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002263 else if (strcmp(args[cur_arg], "weight") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002264 int w;
2265 w = atol(args[cur_arg + 1]);
2266 if (w < 0 || w > SRV_UWGHT_MAX) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002267 ha_alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002268 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
2269 err_code |= ERR_ALERT | ERR_FATAL;
2270 goto out;
2271 }
2272 newsrv->uweight = newsrv->iweight = w;
2273 cur_arg += 2;
2274 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002275 else if (strcmp(args[cur_arg], "log-proto") == 0) {
2276 if (strcmp(args[cur_arg + 1], "legacy") == 0)
Emeric Brun97556472020-05-30 01:42:45 +02002277 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002278 else if (strcmp(args[cur_arg + 1], "octet-count") == 0)
Emeric Brun97556472020-05-30 01:42:45 +02002279 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
2280 else {
2281 ha_alert("parsing [%s:%d]: '%s' expects one of 'legacy' or "
2282 "'octet-count' but got '%s'\n",
2283 file, linenum, args[cur_arg], args[cur_arg + 1]);
2284 err_code |= ERR_ALERT | ERR_FATAL;
2285 goto out;
2286 }
2287 cur_arg += 2;
2288 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002289 else if (strcmp(args[cur_arg], "minconn") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002290 newsrv->minconn = atol(args[cur_arg + 1]);
2291 cur_arg += 2;
2292 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002293 else if (strcmp(args[cur_arg], "maxconn") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002294 newsrv->maxconn = atol(args[cur_arg + 1]);
2295 cur_arg += 2;
2296 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002297 else if (strcmp(args[cur_arg], "maxqueue") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002298 newsrv->maxqueue = atol(args[cur_arg + 1]);
2299 cur_arg += 2;
2300 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002301 else if (strcmp(args[cur_arg], "slowstart") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002302 /* slowstart is stored in seconds */
2303 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02002304
2305 if (err == PARSE_TIME_OVER) {
2306 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).\n",
2307 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2308 err_code |= ERR_ALERT | ERR_FATAL;
2309 goto out;
2310 }
2311 else if (err == PARSE_TIME_UNDER) {
2312 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.\n",
2313 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2314 err_code |= ERR_ALERT | ERR_FATAL;
2315 goto out;
2316 }
2317 else if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002318 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002319 file, linenum, *err, newsrv->id);
2320 err_code |= ERR_ALERT | ERR_FATAL;
2321 goto out;
2322 }
2323 newsrv->slowstart = (val + 999) / 1000;
2324 cur_arg += 2;
2325 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002326 else if (strcmp(args[cur_arg], "on-error") == 0) {
2327 if (strcmp(args[cur_arg + 1], "fastinter") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002328 newsrv->onerror = HANA_ONERR_FASTINTER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002329 else if (strcmp(args[cur_arg + 1], "fail-check") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002330 newsrv->onerror = HANA_ONERR_FAILCHK;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002331 else if (strcmp(args[cur_arg + 1], "sudden-death") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002332 newsrv->onerror = HANA_ONERR_SUDDTH;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002333 else if (strcmp(args[cur_arg + 1], "mark-down") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002334 newsrv->onerror = HANA_ONERR_MARKDWN;
2335 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002336 ha_alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
Willy Tarreau272adea2014-03-31 10:39:59 +02002337 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
2338 file, linenum, args[cur_arg], args[cur_arg + 1]);
2339 err_code |= ERR_ALERT | ERR_FATAL;
2340 goto out;
2341 }
2342
2343 cur_arg += 2;
2344 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002345 else if (strcmp(args[cur_arg], "on-marked-down") == 0) {
2346 if (strcmp(args[cur_arg + 1], "shutdown-sessions") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002347 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
2348 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002349 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002350 file, linenum, args[cur_arg], args[cur_arg + 1]);
2351 err_code |= ERR_ALERT | ERR_FATAL;
2352 goto out;
2353 }
2354
2355 cur_arg += 2;
2356 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002357 else if (strcmp(args[cur_arg], "on-marked-up") == 0) {
2358 if (strcmp(args[cur_arg + 1], "shutdown-backup-sessions") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002359 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
2360 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002361 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002362 file, linenum, args[cur_arg], args[cur_arg + 1]);
2363 err_code |= ERR_ALERT | ERR_FATAL;
2364 goto out;
2365 }
2366
2367 cur_arg += 2;
2368 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002369 else if (strcmp(args[cur_arg], "error-limit") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002370 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002371 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002372 file, linenum, args[cur_arg]);
2373 err_code |= ERR_ALERT | ERR_FATAL;
2374 goto out;
2375 }
2376
2377 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
2378
2379 if (newsrv->consecutive_errors_limit <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002380 ha_alert("parsing [%s:%d]: %s has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002381 file, linenum, args[cur_arg]);
2382 err_code |= ERR_ALERT | ERR_FATAL;
2383 goto out;
2384 }
2385 cur_arg += 2;
2386 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002387 else if (strcmp(args[cur_arg], "usesrc") == 0) { /* address to use outside: needs "source" first */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002388 ha_alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002389 file, linenum, "usesrc", "source");
2390 err_code |= ERR_ALERT | ERR_FATAL;
2391 goto out;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002392 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002393 else {
2394 static int srv_dumped;
2395 struct srv_kw *kw;
2396 char *err;
2397
2398 kw = srv_find_kw(args[cur_arg]);
2399 if (kw) {
2400 char *err = NULL;
2401 int code;
2402
2403 if (!kw->parse) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002404 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 +02002405 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002406 if (kw->skip != -1)
2407 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002408 err_code |= ERR_ALERT | ERR_FATAL;
2409 goto out;
2410 }
2411
2412 if (defsrv && !kw->default_ok) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002413 ha_alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002414 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002415 if (kw->skip != -1)
2416 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002417 err_code |= ERR_ALERT;
2418 continue;
2419 }
2420
2421 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
2422 err_code |= code;
2423
2424 if (code) {
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002425 display_parser_err(file, linenum, args, cur_arg, code, &err);
Willy Tarreau272adea2014-03-31 10:39:59 +02002426 if (code & ERR_FATAL) {
2427 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002428 if (kw->skip != -1)
2429 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002430 goto out;
2431 }
2432 }
2433 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002434 if (kw->skip != -1)
2435 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002436 continue;
2437 }
2438
2439 err = NULL;
2440 if (!srv_dumped) {
2441 srv_dump_kws(&err);
2442 indent_msg(&err, 4);
2443 srv_dumped = 1;
2444 }
2445
Christopher Faulet767a84b2017-11-24 16:50:31 +01002446 ha_alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002447 file, linenum, args[0], args[1], args[cur_arg],
2448 err ? " Registered keywords :" : "", err ? err : "");
2449 free(err);
2450
2451 err_code |= ERR_ALERT | ERR_FATAL;
2452 goto out;
2453 }
2454 }
2455
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002456 if (!defsrv)
2457 err_code |= server_finalize_init(file, linenum, args, cur_arg, newsrv, curproxy);
2458 if (err_code & ERR_FATAL)
2459 goto out;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002460 if (srv_tmpl)
2461 server_template_init(newsrv, curproxy);
Willy Tarreau272adea2014-03-31 10:39:59 +02002462 }
Willy Tarreau07101d52015-09-08 16:16:35 +02002463 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002464 return 0;
2465
2466 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02002467 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002468 free(errmsg);
2469 return err_code;
2470}
2471
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002472/* Returns a pointer to the first server matching either id <id>.
2473 * NULL is returned if no match is found.
2474 * the lookup is performed in the backend <bk>
2475 */
2476struct server *server_find_by_id(struct proxy *bk, int id)
2477{
2478 struct eb32_node *eb32;
2479 struct server *curserver;
2480
2481 if (!bk || (id ==0))
2482 return NULL;
2483
2484 /* <bk> has no backend capabilities, so it can't have a server */
2485 if (!(bk->cap & PR_CAP_BE))
2486 return NULL;
2487
2488 curserver = NULL;
2489
2490 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2491 if (eb32)
2492 curserver = container_of(eb32, struct server, conf.id);
2493
2494 return curserver;
2495}
2496
2497/* Returns a pointer to the first server matching either name <name>, or id
2498 * if <name> starts with a '#'. NULL is returned if no match is found.
2499 * the lookup is performed in the backend <bk>
2500 */
2501struct server *server_find_by_name(struct proxy *bk, const char *name)
2502{
2503 struct server *curserver;
2504
2505 if (!bk || !name)
2506 return NULL;
2507
2508 /* <bk> has no backend capabilities, so it can't have a server */
2509 if (!(bk->cap & PR_CAP_BE))
2510 return NULL;
2511
2512 curserver = NULL;
2513 if (*name == '#') {
2514 curserver = server_find_by_id(bk, atoi(name + 1));
2515 if (curserver)
2516 return curserver;
2517 }
2518 else {
2519 curserver = bk->srv;
2520
2521 while (curserver && (strcmp(curserver->id, name) != 0))
2522 curserver = curserver->next;
2523
2524 if (curserver)
2525 return curserver;
2526 }
2527
2528 return NULL;
2529}
2530
2531struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2532{
2533 struct server *byname;
2534 struct server *byid;
2535
2536 if (!name && !id)
2537 return NULL;
2538
2539 if (diff)
2540 *diff = 0;
2541
2542 byname = byid = NULL;
2543
2544 if (name) {
2545 byname = server_find_by_name(bk, name);
2546 if (byname && (!id || byname->puid == id))
2547 return byname;
2548 }
2549
2550 /* remaining possibilities :
2551 * - name not set
2552 * - name set but not found
2553 * - name found but ID doesn't match
2554 */
2555 if (id) {
2556 byid = server_find_by_id(bk, id);
2557 if (byid) {
2558 if (byname) {
2559 /* use id only if forced by configuration */
2560 if (byid->flags & SRV_F_FORCED_ID) {
2561 if (diff)
2562 *diff |= 2;
2563 return byid;
2564 }
2565 else {
2566 if (diff)
2567 *diff |= 1;
2568 return byname;
2569 }
2570 }
2571
2572 /* remaining possibilities:
2573 * - name not set
2574 * - name set but not found
2575 */
2576 if (name && diff)
2577 *diff |= 2;
2578 return byid;
2579 }
2580
2581 /* id bot found */
2582 if (byname) {
2583 if (diff)
2584 *diff |= 1;
2585 return byname;
2586 }
2587 }
2588
2589 return NULL;
2590}
2591
Willy Tarreau46b7f532018-08-21 11:54:26 +02002592/* Update a server state using the parameters available in the params list.
2593 *
2594 * Grabs the server lock during operation.
2595 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002596static void srv_update_state(struct server *srv, int version, char **params)
2597{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002598 char *p;
Willy Tarreau83061a82018-07-13 11:56:34 +02002599 struct buffer *msg;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002600
2601 /* fields since version 1
2602 * and common to all other upcoming versions
2603 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002604 enum srv_state srv_op_state;
2605 enum srv_admin srv_admin_state;
2606 unsigned srv_uweight, srv_iweight;
2607 unsigned long srv_last_time_change;
2608 short srv_check_status;
2609 enum chk_result srv_check_result;
2610 int srv_check_health;
2611 int srv_check_state, srv_agent_state;
2612 int bk_f_forced_id;
2613 int srv_f_forced_id;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002614 int fqdn_set_by_cli;
2615 const char *fqdn;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002616 const char *port_str;
2617 unsigned int port;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002618 char *srvrecord;
William Dauchyf6370442020-11-14 19:25:33 +01002619#ifdef USE_OPENSSL
2620 int use_ssl;
2621#endif
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002622
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002623 fqdn = NULL;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002624 port = 0;
Willy Tarreau31138fa2015-09-29 18:38:47 +02002625 msg = get_trash_chunk();
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002626 switch (version) {
2627 case 1:
2628 /*
2629 * now we can proceed with server's state update:
2630 * srv_addr: params[0]
2631 * srv_op_state: params[1]
2632 * srv_admin_state: params[2]
2633 * srv_uweight: params[3]
2634 * srv_iweight: params[4]
2635 * srv_last_time_change: params[5]
2636 * srv_check_status: params[6]
2637 * srv_check_result: params[7]
2638 * srv_check_health: params[8]
2639 * srv_check_state: params[9]
2640 * srv_agent_state: params[10]
2641 * bk_f_forced_id: params[11]
2642 * srv_f_forced_id: params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002643 * srv_fqdn: params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02002644 * srv_port: params[14]
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002645 * srvrecord: params[15]
William Dauchyf6370442020-11-14 19:25:33 +01002646 * srv_use_ssl: params[16]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002647 */
2648
2649 /* validating srv_op_state */
2650 p = NULL;
2651 errno = 0;
2652 srv_op_state = strtol(params[1], &p, 10);
2653 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
2654 (srv_op_state != SRV_ST_STOPPED &&
2655 srv_op_state != SRV_ST_STARTING &&
2656 srv_op_state != SRV_ST_RUNNING &&
2657 srv_op_state != SRV_ST_STOPPING)) {
2658 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
2659 }
2660
2661 /* validating srv_admin_state */
2662 p = NULL;
2663 errno = 0;
2664 srv_admin_state = strtol(params[2], &p, 10);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002665 fqdn_set_by_cli = !!(srv_admin_state & SRV_ADMF_HMAINT);
Willy Tarreau757478e2016-11-03 19:22:19 +01002666
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002667 /* inherited statuses will be recomputed later.
2668 * Also disable SRV_ADMF_HMAINT flag (set from stats socket fqdn).
2669 */
2670 srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_HMAINT;
Willy Tarreau757478e2016-11-03 19:22:19 +01002671
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002672 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
2673 (srv_admin_state != 0 &&
2674 srv_admin_state != SRV_ADMF_FMAINT &&
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002675 srv_admin_state != SRV_ADMF_CMAINT &&
2676 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
Willy Tarreaue1bde142016-11-03 18:33:25 +01002677 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FDRAIN) &&
Willy Tarreau757478e2016-11-03 19:22:19 +01002678 srv_admin_state != SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002679 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
2680 }
2681
2682 /* validating srv_uweight */
2683 p = NULL;
2684 errno = 0;
2685 srv_uweight = strtol(params[3], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002686 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002687 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
2688
2689 /* validating srv_iweight */
2690 p = NULL;
2691 errno = 0;
2692 srv_iweight = strtol(params[4], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002693 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002694 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
2695
2696 /* validating srv_last_time_change */
2697 p = NULL;
2698 errno = 0;
2699 srv_last_time_change = strtol(params[5], &p, 10);
2700 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2701 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
2702
2703 /* validating srv_check_status */
2704 p = NULL;
2705 errno = 0;
2706 srv_check_status = strtol(params[6], &p, 10);
2707 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2708 (srv_check_status >= HCHK_STATUS_SIZE))
2709 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
2710
2711 /* validating srv_check_result */
2712 p = NULL;
2713 errno = 0;
2714 srv_check_result = strtol(params[7], &p, 10);
2715 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2716 (srv_check_result != CHK_RES_UNKNOWN &&
2717 srv_check_result != CHK_RES_NEUTRAL &&
2718 srv_check_result != CHK_RES_FAILED &&
2719 srv_check_result != CHK_RES_PASSED &&
2720 srv_check_result != CHK_RES_CONDPASS)) {
2721 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2722 }
2723
2724 /* validating srv_check_health */
2725 p = NULL;
2726 errno = 0;
2727 srv_check_health = strtol(params[8], &p, 10);
2728 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2729 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
2730
2731 /* validating srv_check_state */
2732 p = NULL;
2733 errno = 0;
2734 srv_check_state = strtol(params[9], &p, 10);
2735 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2736 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2737 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
2738
2739 /* validating srv_agent_state */
2740 p = NULL;
2741 errno = 0;
2742 srv_agent_state = strtol(params[10], &p, 10);
2743 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2744 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2745 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
2746
2747 /* validating bk_f_forced_id */
2748 p = NULL;
2749 errno = 0;
2750 bk_f_forced_id = strtol(params[11], &p, 10);
2751 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
2752 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
2753
2754 /* validating srv_f_forced_id */
2755 p = NULL;
2756 errno = 0;
2757 srv_f_forced_id = strtol(params[12], &p, 10);
2758 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
2759 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
2760
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002761 /* validating srv_fqdn */
2762 fqdn = params[13];
2763 if (fqdn && *fqdn == '-')
2764 fqdn = NULL;
2765 if (fqdn && (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn))) {
2766 chunk_appendf(msg, ", invalid srv_fqdn value '%s'", params[13]);
2767 fqdn = NULL;
2768 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002769
Frédéric Lécaille31694712017-08-01 08:47:19 +02002770 port_str = params[14];
2771 if (port_str) {
2772 port = strl2uic(port_str, strlen(port_str));
2773 if (port > USHRT_MAX) {
2774 chunk_appendf(msg, ", invalid srv_port value '%s'", port_str);
2775 port_str = NULL;
2776 }
2777 }
2778
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002779 /* SRV record
2780 * NOTE: in HAProxy, SRV records must start with an underscore '_'
2781 */
2782 srvrecord = params[15];
2783 if (srvrecord && *srvrecord != '_')
2784 srvrecord = NULL;
2785
William Dauchyf6370442020-11-14 19:25:33 +01002786#ifdef USE_OPENSSL
2787 use_ssl = strtol(params[16], &p, 10);
2788#endif
2789
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002790 /* don't apply anything if one error has been detected */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002791 if (msg->data)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002792 goto out;
2793
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002794 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002795 /* recover operational state and apply it to this server
2796 * and all servers tracking this one */
Jérôme Magninf57afa42019-01-20 11:27:40 +01002797 srv->check.health = srv_check_health;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002798 switch (srv_op_state) {
2799 case SRV_ST_STOPPED:
2800 srv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02002801 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002802 break;
2803 case SRV_ST_STARTING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002804 /* If rise == 1 there is no STARTING state, let's switch to
2805 * RUNNING
2806 */
2807 if (srv->check.rise == 1) {
2808 srv->check.health = srv->check.rise + srv->check.fall - 1;
2809 srv_set_running(srv, "", NULL);
2810 break;
2811 }
2812 if (srv->check.health < 1 || srv->check.health >= srv->check.rise)
2813 srv->check.health = srv->check.rise - 1;
Emeric Brun52a91d32017-08-31 14:41:55 +02002814 srv->next_state = srv_op_state;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002815 break;
2816 case SRV_ST_STOPPING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002817 /* If fall == 1 there is no STOPPING state, let's switch to
2818 * STOPPED
2819 */
2820 if (srv->check.fall == 1) {
2821 srv->check.health = 0;
2822 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
2823 break;
2824 }
2825 if (srv->check.health < srv->check.rise ||
2826 srv->check.health > srv->check.rise + srv->check.fall - 2)
2827 srv->check.health = srv->check.rise;
Emeric Brun5a133512017-10-19 14:42:30 +02002828 srv_set_stopping(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002829 break;
2830 case SRV_ST_RUNNING:
2831 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02002832 srv_set_running(srv, "", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002833 break;
2834 }
2835
2836 /* When applying server state, the following rules apply:
2837 * - in case of a configuration change, we apply the setting from the new
2838 * configuration, regardless of old running state
2839 * - if no configuration change, we apply old running state only if old running
2840 * state is different from new configuration state
2841 */
2842 /* configuration has changed */
Emeric Brun52a91d32017-08-31 14:41:55 +02002843 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->next_admin & SRV_ADMF_CMAINT)) {
2844 if (srv->next_admin & SRV_ADMF_CMAINT)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002845 srv_adm_set_maint(srv);
2846 else
2847 srv_adm_set_ready(srv);
2848 }
2849 /* configuration is the same, let's compate old running state and new conf state */
2850 else {
Emeric Brun52a91d32017-08-31 14:41:55 +02002851 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002852 srv_adm_set_maint(srv);
Emeric Brun52a91d32017-08-31 14:41:55 +02002853 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002854 srv_adm_set_ready(srv);
2855 }
2856 /* apply drain mode if server is currently enabled */
Emeric Brun52a91d32017-08-31 14:41:55 +02002857 if (!(srv->next_admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002858 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
Willy Tarreau22cace22016-11-03 18:19:49 +01002859 * (srv->iweight is the weight set up in configuration).
2860 * There are two possible reasons for FDRAIN to have been present :
2861 * - previous config weight was zero
2862 * - "set server b/s drain" was sent to the CLI
2863 *
2864 * In the first case, we simply want to drop this drain state
2865 * if the new weight is not zero anymore, meaning the administrator
2866 * has intentionally turned the weight back to a positive value to
2867 * enable the server again after an operation. In the second case,
2868 * the drain state was forced on the CLI regardless of the config's
2869 * weight so we don't want a change to the config weight to lose this
2870 * status. What this means is :
2871 * - if previous weight was 0 and new one is >0, drop the DRAIN state.
2872 * - if the previous weight was >0, keep it.
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002873 */
Willy Tarreau22cace22016-11-03 18:19:49 +01002874 if (srv_iweight > 0 || srv->iweight == 0)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002875 srv_adm_set_drain(srv);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002876 }
2877
2878 srv->last_change = date.tv_sec - srv_last_time_change;
2879 srv->check.status = srv_check_status;
2880 srv->check.result = srv_check_result;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002881
2882 /* Only case we want to apply is removing ENABLED flag which could have been
2883 * done by the "disable health" command over the stats socket
2884 */
2885 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2886 (srv_check_state & CHK_ST_CONFIGURED) &&
2887 !(srv_check_state & CHK_ST_ENABLED))
2888 srv->check.state &= ~CHK_ST_ENABLED;
2889
2890 /* Only case we want to apply is removing ENABLED flag which could have been
2891 * done by the "disable agent" command over the stats socket
2892 */
2893 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
2894 (srv_agent_state & CHK_ST_CONFIGURED) &&
2895 !(srv_agent_state & CHK_ST_ENABLED))
2896 srv->agent.state &= ~CHK_ST_ENABLED;
2897
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002898 /* We want to apply the previous 'running' weight (srv_uweight) only if there
2899 * was no change in the configuration: both previous and new iweight are equals
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002900 *
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002901 * It means that a configuration file change has precedence over a unix socket change
2902 * for server's weight
2903 *
2904 * by default, HAProxy applies the following weight when parsing the configuration
2905 * srv->uweight = srv->iweight
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002906 */
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002907 if (srv_iweight == srv->iweight) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002908 srv->uweight = srv_uweight;
2909 }
Willy Tarreau3ff577e2018-08-02 11:48:52 +02002910 server_recalc_eweight(srv, 1);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002911
Willy Tarreaue5a60682016-11-09 14:54:53 +01002912 /* load server IP address */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002913 if (strcmp(params[0], "-") != 0)
Daniel Corbett9215ffa2018-05-19 19:43:24 -04002914 srv->lastaddr = strdup(params[0]);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002915
2916 if (fqdn && srv->hostname) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002917 if (strcmp(srv->hostname, fqdn) == 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002918 /* Here we reset the 'set from stats socket FQDN' flag
2919 * to support such transitions:
2920 * Let's say initial FQDN value is foo1 (in configuration file).
2921 * - FQDN changed from stats socket, from foo1 to foo2 value,
2922 * - FQDN changed again from file configuration (with the same previous value
2923 set from stats socket, from foo1 to foo2 value),
2924 * - reload for any other reason than a FQDN modification,
2925 * the configuration file FQDN matches the fqdn server state file value.
2926 * So we must reset the 'set from stats socket FQDN' flag to be consistent with
Joseph Herlant44466822018-11-15 08:57:51 -08002927 * any further FQDN modification.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002928 */
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 else {
2932 /* If the FDQN has been changed from stats socket,
2933 * apply fqdn state file value (which is the value set
2934 * from stats socket).
Baptiste Assmann13a92322019-06-07 09:40:55 +02002935 * Also ensure the runtime resolver will process this resolution.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002936 */
2937 if (fqdn_set_by_cli) {
Olivier Houchardd16bfe62017-10-31 15:21:19 +01002938 srv_set_fqdn(srv, fqdn, 0);
Baptiste Assmann13a92322019-06-07 09:40:55 +02002939 srv->flags &= ~SRV_F_NO_RESOLUTION;
Emeric Brun52a91d32017-08-31 14:41:55 +02002940 srv->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002941 }
2942 }
2943 }
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002944 /* If all the conditions below are validated, this means
2945 * we're evaluating a server managed by SRV resolution
2946 */
2947 else if (fqdn && !srv->hostname && srvrecord) {
2948 int res;
2949
2950 /* we can't apply previous state if SRV record has changed */
2951 if (srv->srvrq && strcmp(srv->srvrq->name, srvrecord) != 0) {
2952 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);
2953 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2954 goto out;
2955 }
2956
2957 /* create or find a SRV resolution for this srv record */
2958 if (srv->srvrq == NULL && (srv->srvrq = find_srvrq_by_name(srvrecord, srv->proxy)) == NULL)
2959 srv->srvrq = new_dns_srvrq(srv, srvrecord);
2960 if (srv->srvrq == NULL) {
2961 chunk_appendf(msg, ", can't create or find SRV resolution '%s' for server '%s'", srvrecord, srv->id);
2962 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2963 goto out;
2964 }
2965
2966 /* prepare DNS resolution for this server */
2967 res = srv_prepare_for_resolution(srv, fqdn);
2968 if (res == -1) {
2969 chunk_appendf(msg, ", can't allocate memory for DNS resolution for server '%s'", srv->id);
2970 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2971 goto out;
2972 }
2973
2974 /* configure check.port accordingly */
2975 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2976 !(srv->flags & SRV_F_CHECKPORT))
2977 srv->check.port = port;
2978
2979 /* Unset SRV_F_MAPPORTS for SRV records.
2980 * SRV_F_MAPPORTS is unfortunately set by parse_server()
2981 * because no ports are provided in the configuration file.
2982 * This is because HAProxy will use the port found into the SRV record.
2983 */
2984 srv->flags &= ~SRV_F_MAPPORTS;
2985 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002986
Frédéric Lécaille31694712017-08-01 08:47:19 +02002987 if (port_str)
2988 srv->svc_port = port;
William Dauchyf6370442020-11-14 19:25:33 +01002989
2990#ifdef USE_OPENSSL
Ilya Shipitsinf38a0182020-12-21 01:16:17 +05002991 /* configure ssl if connection has been initiated at startup */
William Dauchyf6370442020-11-14 19:25:33 +01002992 if (srv->ssl_ctx.ctx != NULL)
2993 ssl_sock_set_srv(srv, use_ssl);
2994#endif
2995
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002996 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Frédéric Lécaille31694712017-08-01 08:47:19 +02002997
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002998 break;
2999 default:
3000 chunk_appendf(msg, ", version '%d' not supported", version);
3001 }
3002
3003 out:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003004 if (msg->data) {
Baptiste Assmann0821bb92016-01-21 00:20:50 +01003005 chunk_appendf(msg, "\n");
Christopher Faulet767a84b2017-11-24 16:50:31 +01003006 ha_warning("server-state application failed for server '%s/%s'%s",
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003007 srv->proxy->id, srv->id, msg->area);
Baptiste Assmann0821bb92016-01-21 00:20:50 +01003008 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003009}
3010
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003011
3012/*
3013 * read next line from file <f> and return the server state version if one found.
3014 * If no version is found, then 0 is returned
3015 * Note that this should be the first read on <f>
3016 */
3017static int srv_state_get_version(FILE *f) {
3018 char buf[2];
3019 int ret;
3020
3021 /* first character of first line of the file must contain the version of the export */
3022 if (fgets(buf, 2, f) == NULL) {
3023 return 0;
3024 }
3025
3026 ret = atoi(buf);
3027 if ((ret < SRV_STATE_FILE_VERSION_MIN) ||
3028 (ret > SRV_STATE_FILE_VERSION_MAX))
3029 return 0;
3030
3031 return ret;
3032}
3033
3034
3035/*
3036 * parses server state line stored in <buf> and supposedly in version <version>.
3037 * Set <params> and <srv_params> accordingly.
3038 * In case of error, params[0] is set to NULL.
3039 */
3040static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params)
3041{
3042 int buflen, arg, srv_arg;
3043 char *cur, *end;
3044
3045 buflen = strlen(buf);
3046 cur = buf;
3047 end = cur + buflen;
3048
3049 /* we need at least one character */
3050 if (buflen == 0) {
3051 params[0] = NULL;
3052 return;
3053 }
3054
3055 /* ignore blank characters at the beginning of the line */
Willy Tarreau90807112020-02-25 08:16:33 +01003056 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003057 ++cur;
3058
3059 /* Ignore empty or commented lines */
3060 if (cur == end || *cur == '#') {
3061 params[0] = NULL;
3062 return;
3063 }
3064
3065 /* truncated lines */
3066 if (buf[buflen - 1] != '\n') {
3067 //ha_warning("server-state file '%s': truncated line\n", filepath);
3068 params[0] = NULL;
3069 return;
3070 }
3071
3072 /* Removes trailing '\n' */
3073 buf[buflen - 1] = '\0';
3074
3075 /* we're now ready to move the line into *srv_params[] */
3076 params[0] = cur;
3077 arg = 1;
3078 srv_arg = 0;
3079 while (*cur && arg < SRV_STATE_FILE_MAX_FIELDS) {
Willy Tarreau90807112020-02-25 08:16:33 +01003080 if (isspace((unsigned char)*cur)) {
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003081 *cur = '\0';
3082 ++cur;
Willy Tarreau90807112020-02-25 08:16:33 +01003083 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003084 ++cur;
3085 switch (version) {
3086 case 1:
3087 /*
3088 * srv_addr: params[4] => srv_params[0]
3089 * srv_op_state: params[5] => srv_params[1]
3090 * srv_admin_state: params[6] => srv_params[2]
3091 * srv_uweight: params[7] => srv_params[3]
3092 * srv_iweight: params[8] => srv_params[4]
3093 * srv_last_time_change: params[9] => srv_params[5]
3094 * srv_check_status: params[10] => srv_params[6]
3095 * srv_check_result: params[11] => srv_params[7]
3096 * srv_check_health: params[12] => srv_params[8]
3097 * srv_check_state: params[13] => srv_params[9]
3098 * srv_agent_state: params[14] => srv_params[10]
3099 * bk_f_forced_id: params[15] => srv_params[11]
3100 * srv_f_forced_id: params[16] => srv_params[12]
3101 * srv_fqdn: params[17] => srv_params[13]
3102 * srv_port: params[18] => srv_params[14]
3103 * srvrecord: params[19] => srv_params[15]
3104 */
3105 if (arg >= 4) {
3106 srv_params[srv_arg] = cur;
3107 ++srv_arg;
3108 }
3109 break;
3110 }
3111
3112 params[arg] = cur;
3113 ++arg;
3114 }
3115 else {
3116 ++cur;
3117 }
3118 }
3119
3120 /* if line is incomplete line, then ignore it.
3121 * otherwise, update useful flags */
3122 switch (version) {
3123 case 1:
3124 if (arg < SRV_STATE_FILE_NB_FIELDS_VERSION_1) {
3125 params[0] = NULL;
3126 return;
3127 }
3128 break;
3129 }
3130
3131 return;
3132}
3133
3134
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003135/* This function parses all the proxies and only take care of the backends (since we're looking for server)
3136 * For each proxy, it does the following:
3137 * - opens its server state file (either one or local one)
3138 * - read whole file, line by line
3139 * - analyse each line to check if it matches our current backend:
3140 * - backend name matches
3141 * - backend id matches if id is forced and name doesn't match
3142 * - if the server pointed by the line is found, then state is applied
3143 *
3144 * If the running backend uuid or id differs from the state file, then HAProxy reports
3145 * a warning.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003146 *
3147 * Grabs the server's lock via srv_update_state().
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003148 */
3149void apply_server_state(void)
3150{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003151 char mybuf[SRV_STATE_LINE_MAXLEN];
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003152 char *params[SRV_STATE_FILE_MAX_FIELDS] = {0};
3153 char *srv_params[SRV_STATE_FILE_MAX_FIELDS] = {0};
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003154 int version, global_file_version;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003155 FILE *f;
3156 char *filepath;
3157 char globalfilepath[MAXPATHLEN + 1];
3158 char localfilepath[MAXPATHLEN + 1];
3159 int len, fileopenerr, globalfilepathlen, localfilepathlen;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003160 struct proxy *curproxy, *bk;
3161 struct server *srv;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003162 char *line;
3163 char *bkname, *srvname;
3164 struct state_line *st;
3165 struct ebmb_node *node, *next_node;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003166
Willy Tarreau2d067f92020-07-16 06:40:27 +02003167 f = NULL;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003168 global_file_version = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003169 globalfilepathlen = 0;
3170 /* create the globalfilepath variable */
3171 if (global.server_state_file) {
3172 /* absolute path or no base directory provided */
3173 if ((global.server_state_file[0] == '/') || (!global.server_state_base)) {
3174 len = strlen(global.server_state_file);
3175 if (len > MAXPATHLEN) {
3176 globalfilepathlen = 0;
3177 goto globalfileerror;
3178 }
3179 memcpy(globalfilepath, global.server_state_file, len);
3180 globalfilepath[len] = '\0';
3181 globalfilepathlen = len;
3182 }
3183 else if (global.server_state_base) {
3184 len = strlen(global.server_state_base);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003185 if (len > MAXPATHLEN) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003186 globalfilepathlen = 0;
3187 goto globalfileerror;
3188 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003189 memcpy(globalfilepath, global.server_state_base, len);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003190 globalfilepath[len] = 0;
3191 globalfilepathlen = len;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003192
3193 /* append a slash if needed */
3194 if (!globalfilepathlen || globalfilepath[globalfilepathlen - 1] != '/') {
3195 if (globalfilepathlen + 1 > MAXPATHLEN) {
3196 globalfilepathlen = 0;
3197 goto globalfileerror;
3198 }
3199 globalfilepath[globalfilepathlen++] = '/';
3200 }
3201
3202 len = strlen(global.server_state_file);
3203 if (globalfilepathlen + len > MAXPATHLEN) {
3204 globalfilepathlen = 0;
3205 goto globalfileerror;
3206 }
3207 memcpy(globalfilepath + globalfilepathlen, global.server_state_file, len);
3208 globalfilepathlen += len;
3209 globalfilepath[globalfilepathlen++] = 0;
3210 }
3211 }
3212 globalfileerror:
3213 if (globalfilepathlen == 0)
3214 globalfilepath[0] = '\0';
3215
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003216 /* Load global server state in a tree */
3217 if (globalfilepathlen > 0) {
3218 errno = 0;
3219 f = fopen(globalfilepath, "r");
3220 if (errno)
3221 ha_warning("Can't open global server state file '%s': %s\n", globalfilepath, strerror(errno));
Vedran Furac5d486272019-10-16 14:49:38 +02003222 if (!f)
3223 goto out_load_server_state_in_tree;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003224
3225 global_file_version = srv_state_get_version(f);
3226 if (global_file_version == 0)
3227 goto out_load_server_state_in_tree;
3228
3229 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3230 line = NULL;
3231
3232 line = strdup(mybuf);
3233 if (line == NULL)
3234 continue;
3235
3236 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3237 if (params[0] == NULL)
Willy Tarreauca7a5af2019-12-20 17:26:27 +01003238 goto nextline;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003239
3240 /* bkname */
3241 bkname = params[1];
3242 /* srvname */
3243 srvname = params[3];
3244
3245 /* key */
3246 chunk_printf(&trash, "%s %s", bkname, srvname);
3247
3248 /* store line in tree */
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003249 st = calloc(1, sizeof(*st) + trash.data + 1);
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003250 if (st == NULL) {
3251 goto nextline;
3252 }
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003253 memcpy(st->name_name.key, trash.area, trash.data + 1);
Willy Tarreaufd1aa012019-12-20 17:23:40 +01003254 if (ebst_insert(&state_file, &st->name_name) != &st->name_name) {
3255 /* this is a duplicate key, probably a hand-crafted file,
3256 * drop it!
3257 */
3258 goto nextline;
3259 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003260
3261 /* save line */
3262 st->line = line;
3263
3264 continue;
3265
3266 nextline:
3267 /* free up memory in case of error during the processing of the line */
3268 free(line);
3269 }
3270 }
3271 out_load_server_state_in_tree:
3272
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003273 if (f) {
3274 fclose(f);
3275 f = NULL;
3276 }
3277
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003278 /* parse all proxies and load states form tree (global file) or from local file */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003279 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003280 /* servers are only in backends */
3281 if (!(curproxy->cap & PR_CAP_BE))
3282 continue;
3283 fileopenerr = 0;
3284 filepath = NULL;
3285
3286 /* search server state file path and name */
3287 switch (curproxy->load_server_state_from_file) {
3288 /* read servers state from global file */
3289 case PR_SRV_STATE_FILE_GLOBAL:
3290 /* there was an error while generating global server state file path */
3291 if (globalfilepathlen == 0)
3292 continue;
3293 filepath = globalfilepath;
3294 fileopenerr = 1;
3295 break;
3296 /* this backend has its own file */
3297 case PR_SRV_STATE_FILE_LOCAL:
3298 localfilepathlen = 0;
3299 localfilepath[0] = '\0';
3300 len = 0;
3301 /* create the localfilepath variable */
3302 /* absolute path or no base directory provided */
3303 if ((curproxy->server_state_file_name[0] == '/') || (!global.server_state_base)) {
3304 len = strlen(curproxy->server_state_file_name);
3305 if (len > MAXPATHLEN) {
3306 localfilepathlen = 0;
3307 goto localfileerror;
3308 }
3309 memcpy(localfilepath, curproxy->server_state_file_name, len);
3310 localfilepath[len] = '\0';
3311 localfilepathlen = len;
3312 }
3313 else if (global.server_state_base) {
3314 len = strlen(global.server_state_base);
3315 localfilepathlen += len;
3316
3317 if (localfilepathlen > MAXPATHLEN) {
3318 localfilepathlen = 0;
3319 goto localfileerror;
3320 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003321 memcpy(localfilepath, global.server_state_base, len);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003322 localfilepath[localfilepathlen] = 0;
3323
3324 /* append a slash if needed */
3325 if (!localfilepathlen || localfilepath[localfilepathlen - 1] != '/') {
3326 if (localfilepathlen + 1 > MAXPATHLEN) {
3327 localfilepathlen = 0;
3328 goto localfileerror;
3329 }
3330 localfilepath[localfilepathlen++] = '/';
3331 }
3332
3333 len = strlen(curproxy->server_state_file_name);
3334 if (localfilepathlen + len > MAXPATHLEN) {
3335 localfilepathlen = 0;
3336 goto localfileerror;
3337 }
3338 memcpy(localfilepath + localfilepathlen, curproxy->server_state_file_name, len);
3339 localfilepathlen += len;
3340 localfilepath[localfilepathlen++] = 0;
3341 }
3342 filepath = localfilepath;
3343 localfileerror:
3344 if (localfilepathlen == 0)
3345 localfilepath[0] = '\0';
3346
3347 break;
3348 case PR_SRV_STATE_FILE_NONE:
3349 default:
3350 continue;
3351 }
3352
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003353 /* when global file is used, we get data from the tree
3354 * Note that in such case we don't check backend name neither uuid.
3355 * Backend name can't be wrong since it's used as a key to retrieve the server state
3356 * line from the tree.
3357 */
3358 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_GLOBAL) {
3359 struct server *srv = curproxy->srv;
3360 while (srv) {
3361 struct ebmb_node *node;
3362 struct state_line *st;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003363
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003364 chunk_printf(&trash, "%s %s", curproxy->id, srv->id);
3365 node = ebst_lookup(&state_file, trash.area);
3366 if (!node)
3367 goto next;
Dragan Dosencf4fb032015-11-04 23:03:26 +01003368
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003369 st = container_of(node, struct state_line, name_name);
3370 memcpy(mybuf, st->line, strlen(st->line));
3371 mybuf[strlen(st->line)] = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003372
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003373 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3374 if (params[0] == NULL)
3375 goto next;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003376
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003377 srv_update_state(srv, global_file_version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003378
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003379 next:
3380 srv = srv->next;
3381 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003382
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003383 continue; /* next proxy in list */
3384 }
3385 else {
3386 /* load 'local' state file */
3387 errno = 0;
3388 f = fopen(filepath, "r");
3389 if (errno && fileopenerr)
3390 ha_warning("Can't open server state file '%s': %s\n", filepath, strerror(errno));
3391 if (!f)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003392 continue;
3393
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003394 mybuf[0] = '\0';
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003395
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003396 /* first character of first line of the file must contain the version of the export */
3397 version = srv_state_get_version(f);
3398 if (version == 0) {
3399 ha_warning("Can't get version of the server state file '%s'\n", filepath);
3400 goto fileclose;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003401 }
3402
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003403 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3404 int bk_f_forced_id = 0;
3405 int check_id = 0;
3406 int check_name = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003407
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003408 srv_state_parse_line(mybuf, version, params, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003409
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003410 if (params[0] == NULL) {
3411 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003412 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003413
3414 /* if line is incomplete line, then ignore it.
3415 * otherwise, update useful flags */
3416 switch (version) {
3417 case 1:
3418 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
3419 check_id = (atoi(params[0]) == curproxy->uuid);
3420 check_name = (strcmp(curproxy->id, params[1]) == 0);
3421 break;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003422 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003423
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003424 bk = curproxy;
3425
3426 /* if backend can't be found, let's continue */
3427 if (!check_id && !check_name)
3428 continue;
3429 else if (!check_id && check_name) {
3430 ha_warning("backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3431 send_log(bk, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3432 }
3433 else if (check_id && !check_name) {
3434 ha_warning("backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3435 send_log(bk, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3436 /* if name doesn't match, we still want to update curproxy if the backend id
3437 * was forced in previous the previous configuration */
3438 if (!bk_f_forced_id)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003439 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003440 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003441
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003442 /* look for the server by its name: param[3] */
3443 srv = server_find_best_match(bk, params[3], 0, NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003444
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003445 if (!srv) {
3446 /* if no server found, then warning and continue with next line */
3447 ha_warning("can't find server '%s' in backend '%s'\n",
3448 params[3], params[1]);
3449 send_log(bk, LOG_NOTICE, "can't find server '%s' in backend '%s'\n",
3450 params[3], params[1]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003451 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003452 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003453
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003454 /* now we can proceed with server's state update */
3455 srv_update_state(srv, version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003456 }
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003457
3458 fileclose:
3459 fclose(f);
3460
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003461 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003462 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003463
3464 /* now free memory allocated for the tree */
3465 for (node = ebmb_first(&state_file), next_node = node ? ebmb_next(node) : NULL;
3466 node;
3467 node = next_node, next_node = node ? ebmb_next(node) : NULL) {
3468 st = container_of(node, struct state_line, name_name);
3469 ebmb_delete(&st->name_name);
3470 free(st->line);
3471 free(st);
3472 }
3473
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003474}
3475
Simon Horman7d09b9a2013-02-12 10:45:51 +09003476/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003477 * update a server's current IP address.
3478 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3479 * ip is in network format.
3480 * updater is a string which contains an information about the requester of the update.
3481 * updater is used if not NULL.
3482 *
3483 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003484 *
3485 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003486 */
Thierry Fournierd35b7a62016-02-24 08:23:22 +01003487int update_server_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003488{
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +02003489 /* save the new IP family & address if necessary */
3490 switch (ip_sin_family) {
3491 case AF_INET:
3492 if (s->addr.ss_family == ip_sin_family &&
3493 !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4))
3494 return 0;
3495 break;
3496 case AF_INET6:
3497 if (s->addr.ss_family == ip_sin_family &&
3498 !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16))
3499 return 0;
3500 break;
3501 };
3502
Baptiste Assmann14e40142015-04-14 01:13:07 +02003503 /* generates a log line and a warning on stderr */
3504 if (1) {
3505 /* book enough space for both IPv4 and IPv6 */
3506 char oldip[INET6_ADDRSTRLEN];
3507 char newip[INET6_ADDRSTRLEN];
3508
3509 memset(oldip, '\0', INET6_ADDRSTRLEN);
3510 memset(newip, '\0', INET6_ADDRSTRLEN);
3511
3512 /* copy old IP address in a string */
3513 switch (s->addr.ss_family) {
3514 case AF_INET:
3515 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3516 break;
3517 case AF_INET6:
3518 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3519 break;
Christopher Fauletb0b76072020-09-08 10:38:40 +02003520 default:
3521 strcpy(oldip, "(none)");
3522 break;
Baptiste Assmann14e40142015-04-14 01:13:07 +02003523 };
3524
3525 /* copy new IP address in a string */
3526 switch (ip_sin_family) {
3527 case AF_INET:
3528 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3529 break;
3530 case AF_INET6:
3531 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3532 break;
3533 };
3534
3535 /* save log line into a buffer */
3536 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3537 s->proxy->id, s->id, oldip, newip, updater);
3538
3539 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003540 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003541
3542 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003543 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003544 }
3545
3546 /* save the new IP family */
3547 s->addr.ss_family = ip_sin_family;
3548 /* save the new IP address */
3549 switch (ip_sin_family) {
3550 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003551 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003552 break;
3553 case AF_INET6:
3554 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3555 break;
3556 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003557 srv_set_dyncookie(s);
Thayne McCombs92149f92020-11-20 01:28:26 -07003558 srv_set_addr_desc(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003559
3560 return 0;
3561}
3562
3563/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003564 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3565 *
3566 * Caller can pass its name through <updater> to get it integrated in the response message
3567 * returned by the function.
3568 *
3569 * The function first does the following, in that order:
3570 * - validates the new addr and/or port
3571 * - checks if an update is required (new IP or port is different than current ones)
3572 * - checks the update is allowed:
3573 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3574 * - allow all changes if no CHECKS are configured
3575 * - if CHECK is configured:
3576 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3577 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3578 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003579 *
3580 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003581 */
3582const char *update_server_addr_port(struct server *s, const char *addr, const char *port, char *updater)
3583{
3584 struct sockaddr_storage sa;
3585 int ret, port_change_required;
3586 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003587 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003588 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003589 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003590
3591 msg = get_trash_chunk();
3592 chunk_reset(msg);
3593
3594 if (addr) {
3595 memset(&sa, 0, sizeof(struct sockaddr_storage));
3596 if (str2ip2(addr, &sa, 0) == NULL) {
3597 chunk_printf(msg, "Invalid addr '%s'", addr);
3598 goto out;
3599 }
3600
3601 /* changes are allowed on AF_INET* families only */
3602 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3603 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3604 goto out;
3605 }
3606
3607 /* collecting data currently setup */
3608 memset(current_addr, '\0', sizeof(current_addr));
3609 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3610 /* changes are allowed on AF_INET* families only */
3611 if ((ret != AF_INET) && (ret != AF_INET6)) {
3612 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3613 goto out;
3614 }
3615
3616 /* applying ADDR changes if required and allowed
3617 * ipcmp returns 0 when both ADDR are the same
3618 */
3619 if (ipcmp(&s->addr, &sa) == 0) {
3620 chunk_appendf(msg, "no need to change the addr");
3621 goto port;
3622 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003623 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003624 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003625
3626 /* we also need to update check's ADDR only if it uses the server's one */
3627 if ((s->check.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_CHECKADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003628 ipcpy(&sa, &s->check.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003629 }
3630
3631 /* we also need to update agent ADDR only if it use the server's one */
3632 if ((s->agent.state & CHK_ST_CONFIGURED) && (s->flags & SRV_F_AGENTADDR)) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003633 ipcpy(&sa, &s->agent.addr);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003634 }
3635
3636 /* update report for caller */
3637 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3638 }
3639
3640 port:
3641 if (port) {
3642 char sign = '\0';
3643 char *endptr;
3644
3645 if (addr)
3646 chunk_appendf(msg, ", ");
3647
3648 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003649 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003650
3651 /* check if PORT change is required */
3652 port_change_required = 0;
3653
3654 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003655 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003656 new_port = strtol(port, &endptr, 10);
3657 if ((errno != 0) || (port == endptr)) {
3658 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3659 goto out;
3660 }
3661
3662 /* check if caller triggers a port mapped or offset */
3663 if (sign == '-' || (sign == '+')) {
3664 /* check if server currently uses port map */
3665 if (!(s->flags & SRV_F_MAPPORTS)) {
3666 /* switch from fixed port to port map mandatorily triggers
3667 * a port change */
3668 port_change_required = 1;
3669 /* check is configured
3670 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3671 * prevent PORT change if check doesn't have it's dedicated port while switching
3672 * to port mapping */
3673 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3674 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.");
3675 goto out;
3676 }
3677 }
3678 /* we're already using port maps */
3679 else {
3680 port_change_required = current_port != new_port;
3681 }
3682 }
3683 /* fixed port */
3684 else {
3685 port_change_required = current_port != new_port;
3686 }
3687
3688 /* applying PORT changes if required and update response message */
3689 if (port_change_required) {
3690 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003691 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003692 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003693
3694 /* prepare message */
3695 chunk_appendf(msg, "port changed from '");
3696 if (s->flags & SRV_F_MAPPORTS)
3697 chunk_appendf(msg, "+");
3698 chunk_appendf(msg, "%d' to '", current_port);
3699
3700 if (sign == '-') {
3701 s->flags |= SRV_F_MAPPORTS;
3702 chunk_appendf(msg, "%c", sign);
3703 /* just use for result output */
3704 new_port = -new_port;
3705 }
3706 else if (sign == '+') {
3707 s->flags |= SRV_F_MAPPORTS;
3708 chunk_appendf(msg, "%c", sign);
3709 }
3710 else {
3711 s->flags &= ~SRV_F_MAPPORTS;
3712 }
3713
3714 chunk_appendf(msg, "%d'", new_port);
3715
3716 /* we also need to update health checks port only if it uses server's realport */
3717 if ((s->check.state & CHK_ST_CONFIGURED) && !(s->flags & SRV_F_CHECKPORT)) {
3718 s->check.port = new_port;
3719 }
3720 }
3721 else {
3722 chunk_appendf(msg, "no need to change the port");
3723 }
3724 }
3725
3726out:
William Dauchy6318d332020-05-02 21:52:36 +02003727 if (changed) {
3728 /* force connection cleanup on the given server */
3729 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003730 srv_set_dyncookie(s);
Thayne McCombs92149f92020-11-20 01:28:26 -07003731 srv_set_addr_desc(s);
William Dauchy6318d332020-05-02 21:52:36 +02003732 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003733 if (updater)
3734 chunk_appendf(msg, " by '%s'", updater);
3735 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003736 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003737}
3738
3739
3740/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003741 * update server status based on result of name resolution
3742 * returns:
3743 * 0 if server status is updated
3744 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003745 *
3746 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003747 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003748int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003749{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003750 struct dns_resolvers *resolvers = s->resolvers;
3751 struct dns_resolution *resolution = s->dns_requester->resolution;
3752 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003753
Jerome Magnin012261a2020-07-28 13:38:22 +02003754 /* If resolution is NULL we're dealing with SRV records Additional records */
3755 if (resolution == NULL) {
Baptiste Assmann87138c32020-08-04 10:57:21 +02003756 /* since this server has an IP, it can go back in production */
3757 if (has_no_ip == 0) {
3758 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3759 return 1;
3760 }
3761
Jerome Magnin012261a2020-07-28 13:38:22 +02003762 if (s->next_admin & SRV_ADMF_RMAINT)
3763 return 1;
3764
3765 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record");
3766 return 0;
3767 }
3768
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003769 switch (resolution->status) {
3770 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003771 /* status when HAProxy has just (re)started.
3772 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003773 break;
3774
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003775 case RSLV_STATUS_VALID:
3776 /*
3777 * resume health checks
3778 * server will be turned back on if health check is safe
3779 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003780 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003781 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003782 return 1;
3783 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3784 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003785 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003786 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003787
Emeric Brun52a91d32017-08-31 14:41:55 +02003788 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003789 return 1;
3790 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3791 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3792 s->proxy->id, s->id);
3793
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003794 ha_warning("%s.\n", trash.area);
3795 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003796 return 0;
3797
3798 case RSLV_STATUS_NX:
3799 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003800 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3801 if (!tick_is_expired(exp, now_ms))
3802 break;
3803
3804 if (s->next_admin & SRV_ADMF_RMAINT)
3805 return 1;
3806 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3807 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003808
3809 case RSLV_STATUS_TIMEOUT:
3810 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003811 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3812 if (!tick_is_expired(exp, now_ms))
3813 break;
3814
3815 if (s->next_admin & SRV_ADMF_RMAINT)
3816 return 1;
3817 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3818 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003819
3820 case RSLV_STATUS_REFUSED:
3821 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003822 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3823 if (!tick_is_expired(exp, now_ms))
3824 break;
3825
3826 if (s->next_admin & SRV_ADMF_RMAINT)
3827 return 1;
3828 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3829 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003830
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003831 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003832 /* stop server if resolution failed for a long enough period */
3833 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3834 if (!tick_is_expired(exp, now_ms))
3835 break;
3836
3837 if (s->next_admin & SRV_ADMF_RMAINT)
3838 return 1;
3839 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3840 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003841 }
3842
3843 return 1;
3844}
3845
3846/*
3847 * Server Name Resolution valid response callback
3848 * It expects:
3849 * - <nameserver>: the name server which answered the valid response
3850 * - <response>: buffer containing a valid DNS response
3851 * - <response_len>: size of <response>
3852 * It performs the following actions:
3853 * - ignore response if current ip found and server family not met
3854 * - update with first new ip found if family is met and current IP is not found
3855 * returns:
3856 * 0 on error
3857 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003858 *
3859 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003860 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003861int snr_resolution_cb(struct dns_requester *requester, struct dns_nameserver *nameserver)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003862{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003863 struct server *s = NULL;
3864 struct dns_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003865 void *serverip, *firstip;
3866 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003867 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003868 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003869 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003870
Christopher Faulet67957bd2017-09-27 11:00:59 +02003871 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003872 if (!s)
3873 return 1;
3874
Christopher Faulet67957bd2017-09-27 11:00:59 +02003875 resolution = s->dns_requester->resolution;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003876
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003877 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003878 firstip = NULL; /* pointer to the first valid response found */
3879 /* it will be used as the new IP if a change is required */
3880 firstip_sin_family = AF_UNSPEC;
3881 serverip = NULL; /* current server IP address */
3882
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003883 /* initializing server IP pointer */
3884 server_sin_family = s->addr.ss_family;
3885 switch (server_sin_family) {
3886 case AF_INET:
3887 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3888 break;
3889
3890 case AF_INET6:
3891 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3892 break;
3893
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003894 case AF_UNSPEC:
3895 break;
3896
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003897 default:
3898 goto invalid;
3899 }
3900
Baptiste Assmann729c9012017-05-22 15:13:10 +02003901 ret = dns_get_ip_from_response(&resolution->response, &s->dns_opts,
Thierry Fournierada34842016-02-17 21:25:09 +01003902 serverip, server_sin_family, &firstip,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003903 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003904
3905 switch (ret) {
3906 case DNS_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003907 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003908
3909 case DNS_UPD_SRVIP_NOT_FOUND:
3910 goto save_ip;
3911
3912 case DNS_UPD_CNAME:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003913 goto invalid;
3914
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003915 case DNS_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003916 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003917 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003918
Baptiste Assmannfad03182015-10-28 02:03:32 +01003919 case DNS_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003920 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003921 resolution->status = RSLV_STATUS_OTHER;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003922 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003923
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003924 default:
3925 goto invalid;
3926
3927 }
3928
3929 save_ip:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003930 if (nameserver) {
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003931 nameserver->counters->update++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003932 /* save the first ip we found */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003933 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003934 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003935 else
3936 chunk_printf(chk, "DNS cache");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003937 update_server_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003938
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003939 update_status:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003940 snr_update_srv_status(s, has_no_ip);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003941 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003942
3943 invalid:
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003944 if (nameserver) {
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003945 nameserver->counters->invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003946 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003947 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003948 snr_update_srv_status(s, has_no_ip);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003949 return 0;
3950}
3951
3952/*
3953 * Server Name Resolution error management callback
3954 * returns:
3955 * 0 on error
3956 * 1 when no error or safe ignore
Willy Tarreau46b7f532018-08-21 11:54:26 +02003957 *
3958 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003959 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003960int snr_resolution_error_cb(struct dns_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003961{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003962 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003963
Christopher Faulet67957bd2017-09-27 11:00:59 +02003964 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003965 if (!s)
3966 return 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003967 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003968 snr_update_srv_status(s, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003969 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003970 return 1;
3971}
3972
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003973/*
3974 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003975 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003976 * It returns a pointer to the first server found or NULL if <ip> is not yet
3977 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003978 *
3979 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003980 */
3981struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3982{
3983 struct server *tmpsrv;
3984 struct proxy *be;
3985
3986 if (!srv)
3987 return NULL;
3988
3989 be = srv->proxy;
3990 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003991 /* we found the current server is the same, ignore it */
3992 if (srv == tmpsrv)
3993 continue;
3994
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003995 /* We want to compare the IP in the record with the IP of the servers in the
3996 * same backend, only if:
3997 * * DNS resolution is enabled on the server
3998 * * the hostname used for the resolution by our server is the same than the
3999 * one used for the server found in the backend
4000 * * the server found in the backend is not our current server
4001 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004002 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004003 if ((tmpsrv->hostname_dn == NULL) ||
4004 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
4005 (strcmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01004006 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004007 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004008 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004009 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004010
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004011 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01004012 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004013 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004014 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004015 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004016
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004017 /* At this point, we have 2 different servers using the same DNS hostname
4018 * for their respective resolution.
4019 */
4020 if (*ip_family == tmpsrv->addr.ss_family &&
4021 ((tmpsrv->addr.ss_family == AF_INET &&
4022 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
4023 (tmpsrv->addr.ss_family == AF_INET6 &&
4024 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004025 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004026 return tmpsrv;
4027 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004028 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004029 }
4030
Emeric Brune9fd6b52017-11-02 17:20:39 +01004031
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004032 return NULL;
4033}
4034
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004035/* Sets the server's address (srv->addr) from srv->hostname using the libc's
4036 * resolver. This is suited for initial address configuration. Returns 0 on
4037 * success otherwise a non-zero error code. In case of error, *err_code, if
4038 * not NULL, is filled up.
4039 */
4040int srv_set_addr_via_libc(struct server *srv, int *err_code)
4041{
4042 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004043 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01004044 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004045 return 1;
4046 }
4047 return 0;
4048}
4049
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004050/* Set the server's FDQN (->hostname) from <hostname>.
4051 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004052 *
4053 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004054 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004055int srv_set_fqdn(struct server *srv, const char *hostname, int dns_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004056{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004057 struct dns_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004058 char *hostname_dn;
4059 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004060
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02004061 /* Note that the server lock is already held. */
4062 if (!srv->resolvers)
4063 return -1;
4064
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004065 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004066 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004067 /* run time DNS resolution was not active for this server
4068 * and we can't enable it at run time for now.
4069 */
4070 if (!srv->dns_requester)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004071 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004072
4073 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004074 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004075 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004076 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
4077 hostname_dn, trash.size);
4078 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004079 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004080
Christopher Faulet67957bd2017-09-27 11:00:59 +02004081 resolution = srv->dns_requester->resolution;
4082 if (resolution &&
4083 resolution->hostname_dn &&
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004084 strcmp(resolution->hostname_dn, hostname_dn) == 0)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004085 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004086
Christopher Faulet67957bd2017-09-27 11:00:59 +02004087 dns_unlink_resolution(srv->dns_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004088
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004089 free(srv->hostname);
4090 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004091 srv->hostname = strdup(hostname);
4092 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004093 srv->hostname_dn_len = hostname_dn_len;
4094 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004095 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004096
Baptiste Assmann13a92322019-06-07 09:40:55 +02004097 if (srv->flags & SRV_F_NO_RESOLUTION)
4098 goto end;
4099
Olivier Houchard55dcdf42017-11-06 15:15:04 +01004100 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004101 goto err;
4102
4103 end:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004104 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004105 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004106 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02004107
4108 err:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004109 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004110 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02004111 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004112}
4113
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004114/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
4115 * from the state file. This is suited for initial address configuration.
4116 * Returns 0 on success otherwise a non-zero error code. In case of error,
4117 * *err_code, if not NULL, is filled up.
4118 */
4119static int srv_apply_lastaddr(struct server *srv, int *err_code)
4120{
4121 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
4122 if (err_code)
4123 *err_code |= ERR_WARN;
4124 return 1;
4125 }
4126 return 0;
4127}
4128
Willy Tarreau25e51522016-11-04 15:10:17 +01004129/* returns 0 if no error, otherwise a combination of ERR_* flags */
4130static int srv_iterate_initaddr(struct server *srv)
4131{
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004132 char *name = srv->hostname;
Willy Tarreau25e51522016-11-04 15:10:17 +01004133 int return_code = 0;
4134 int err_code;
4135 unsigned int methods;
4136
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004137 /* If no addr and no hostname set, get the name from the DNS SRV request */
4138 if (!name && srv->srvrq)
4139 name = srv->srvrq->name;
4140
Willy Tarreau25e51522016-11-04 15:10:17 +01004141 methods = srv->init_addr_methods;
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004142 if (!methods) {
4143 /* otherwise default to "last,libc" */
Willy Tarreau25e51522016-11-04 15:10:17 +01004144 srv_append_initaddr(&methods, SRV_IADDR_LAST);
4145 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004146 if (srv->resolvers_id) {
4147 /* dns resolution is configured, add "none" to not fail on startup */
4148 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4149 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004150 }
4151
Willy Tarreau3eed10e2016-11-07 21:03:16 +01004152 /* "-dr" : always append "none" so that server addresses resolution
4153 * failures are silently ignored, this is convenient to validate some
4154 * configs out of their environment.
4155 */
4156 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
4157 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4158
Willy Tarreau25e51522016-11-04 15:10:17 +01004159 while (methods) {
4160 err_code = 0;
4161 switch (srv_get_next_initaddr(&methods)) {
4162 case SRV_IADDR_LAST:
4163 if (!srv->lastaddr)
4164 continue;
4165 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004166 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004167 return_code |= err_code;
4168 break;
4169
4170 case SRV_IADDR_LIBC:
4171 if (!srv->hostname)
4172 continue;
4173 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004174 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004175 return_code |= err_code;
4176 break;
4177
Willy Tarreau37ebe122016-11-04 15:17:58 +01004178 case SRV_IADDR_NONE:
4179 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004180 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004181 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004182 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004183 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01004184 return return_code;
4185
Willy Tarreau4310d362016-11-02 15:05:56 +01004186 case SRV_IADDR_IP:
4187 ipcpy(&srv->init_addr, &srv->addr);
4188 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004189 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', falling back to configured address.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004190 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau4310d362016-11-02 15:05:56 +01004191 }
Olivier Houchard4e694042017-03-14 20:01:29 +01004192 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01004193
Willy Tarreau25e51522016-11-04 15:10:17 +01004194 default: /* unhandled method */
4195 break;
4196 }
4197 }
4198
4199 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004200 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004201 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau25e51522016-11-04 15:10:17 +01004202 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01004203 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004204 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004205 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004206 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004207
4208 return_code |= ERR_ALERT | ERR_FATAL;
4209 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01004210out:
4211 srv_set_dyncookie(srv);
Thayne McCombs92149f92020-11-20 01:28:26 -07004212 srv_set_addr_desc(srv);
Olivier Houchard4e694042017-03-14 20:01:29 +01004213 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01004214}
4215
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004216/*
4217 * This function parses all backends and all servers within each backend
4218 * and performs servers' addr resolution based on information provided by:
4219 * - configuration file
4220 * - server-state file (states provided by an 'old' haproxy process)
4221 *
4222 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
4223 */
4224int srv_init_addr(void)
4225{
4226 struct proxy *curproxy;
4227 int return_code = 0;
4228
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004229 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004230 while (curproxy) {
4231 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004232
4233 /* servers are in backend only */
4234 if (!(curproxy->cap & PR_CAP_BE))
4235 goto srv_init_addr_next;
4236
Willy Tarreau25e51522016-11-04 15:10:17 +01004237 for (srv = curproxy->srv; srv; srv = srv->next)
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004238 if (srv->hostname || srv->srvrq)
Willy Tarreau3d609a72017-09-06 14:22:45 +02004239 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004240
4241 srv_init_addr_next:
4242 curproxy = curproxy->next;
4243 }
4244
4245 return return_code;
4246}
4247
Willy Tarreau46b7f532018-08-21 11:54:26 +02004248/*
4249 * Must be called with the server lock held.
4250 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004251const 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 +02004252{
4253
Willy Tarreau83061a82018-07-13 11:56:34 +02004254 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004255
4256 msg = get_trash_chunk();
4257 chunk_reset(msg);
4258
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004259 if (server->hostname && strcmp(fqdn, server->hostname) == 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004260 chunk_appendf(msg, "no need to change the FDQN");
4261 goto out;
4262 }
4263
4264 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4265 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4266 goto out;
4267 }
4268
4269 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4270 server->proxy->id, server->id, server->hostname, fqdn);
4271
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004272 if (srv_set_fqdn(server, fqdn, dns_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004273 chunk_reset(msg);
4274 chunk_appendf(msg, "could not update %s/%s FQDN",
4275 server->proxy->id, server->id);
4276 goto out;
4277 }
4278
4279 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004280 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004281
4282 out:
4283 if (updater)
4284 chunk_appendf(msg, " by '%s'", updater);
4285 chunk_appendf(msg, "\n");
4286
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004287 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004288}
4289
4290
Willy Tarreau21b069d2016-11-23 17:15:08 +01004291/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4292 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004293 * 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 +01004294 * used for CLI commands requiring a server name.
4295 * Important: the <arg> is modified to remove the '/'.
4296 */
4297struct server *cli_find_server(struct appctx *appctx, char *arg)
4298{
4299 struct proxy *px;
4300 struct server *sv;
4301 char *line;
4302
4303 /* split "backend/server" and make <line> point to server */
4304 for (line = arg; *line; line++)
4305 if (*line == '/') {
4306 *line++ = '\0';
4307 break;
4308 }
4309
4310 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004311 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004312 return NULL;
4313 }
4314
4315 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004316 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004317 return NULL;
4318 }
4319
Willy Tarreauc3914d42020-09-24 08:39:22 +02004320 if (px->disabled) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004321 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004322 return NULL;
4323 }
4324
4325 return sv;
4326}
4327
William Lallemand222baf22016-11-19 02:00:33 +01004328
Willy Tarreau46b7f532018-08-21 11:54:26 +02004329/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004330static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004331{
4332 struct server *sv;
4333 const char *warning;
4334
4335 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4336 return 1;
4337
4338 sv = cli_find_server(appctx, args[2]);
4339 if (!sv)
4340 return 1;
4341
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004342 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02004343
William Lallemand222baf22016-11-19 02:00:33 +01004344 if (strcmp(args[3], "weight") == 0) {
4345 warning = server_parse_weight_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004346 if (warning)
4347 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004348 }
4349 else if (strcmp(args[3], "state") == 0) {
4350 if (strcmp(args[4], "ready") == 0)
4351 srv_adm_set_ready(sv);
4352 else if (strcmp(args[4], "drain") == 0)
4353 srv_adm_set_drain(sv);
4354 else if (strcmp(args[4], "maint") == 0)
4355 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02004356 else
4357 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004358 }
4359 else if (strcmp(args[3], "health") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004360 if (sv->track)
4361 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004362 else if (strcmp(args[4], "up") == 0) {
4363 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004364 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004365 }
4366 else if (strcmp(args[4], "stopping") == 0) {
4367 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004368 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004369 }
4370 else if (strcmp(args[4], "down") == 0) {
4371 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004372 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004373 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004374 else
4375 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004376 }
4377 else if (strcmp(args[3], "agent") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004378 if (!(sv->agent.state & CHK_ST_ENABLED))
4379 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004380 else if (strcmp(args[4], "up") == 0) {
4381 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004382 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004383 }
4384 else if (strcmp(args[4], "down") == 0) {
4385 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004386 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004387 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004388 else
4389 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004390 }
Misiek2da082d2017-01-09 09:40:42 +01004391 else if (strcmp(args[3], "agent-addr") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004392 if (!(sv->agent.state & CHK_ST_ENABLED))
4393 cli_err(appctx, "agent checks are not enabled on this server.\n");
4394 else if (str2ip(args[4], &sv->agent.addr) == NULL)
4395 cli_err(appctx, "incorrect addr address given for agent.\n");
Misiek2da082d2017-01-09 09:40:42 +01004396 }
4397 else if (strcmp(args[3], "agent-send") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004398 if (!(sv->agent.state & CHK_ST_ENABLED))
4399 cli_err(appctx, "agent checks are not enabled on this server.\n");
4400 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004401 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004402 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004403 }
4404 }
William Lallemand222baf22016-11-19 02:00:33 +01004405 else if (strcmp(args[3], "check-port") == 0) {
4406 int i = 0;
4407 if (strl2irc(args[4], strlen(args[4]), &i) != 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004408 cli_err(appctx, "'set server <srv> check-port' expects an integer as argument.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004409 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004410 }
4411 if ((i < 0) || (i > 65535)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004412 cli_err(appctx, "provided port is not valid.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004413 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004414 }
4415 /* prevent the update of port to 0 if MAPPORTS are in use */
4416 if ((sv->flags & SRV_F_MAPPORTS) && (i == 0)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004417 cli_err(appctx, "can't unset 'port' since MAPPORTS is in use.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004418 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004419 }
4420 sv->check.port = i;
Willy Tarreau9d008692019-08-09 11:21:01 +02004421 cli_msg(appctx, LOG_NOTICE, "health check port updated.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004422 }
4423 else if (strcmp(args[3], "addr") == 0) {
4424 char *addr = NULL;
4425 char *port = NULL;
4426 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004427 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004428 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004429 }
4430 else {
4431 addr = args[4];
4432 }
4433 if (strcmp(args[5], "port") == 0) {
4434 port = args[6];
4435 }
4436 warning = update_server_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004437 if (warning)
4438 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004439 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
4440 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004441 else if (strcmp(args[3], "fqdn") == 0) {
4442 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004443 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004444 goto out_unlock;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004445 }
Baptiste Assmann13a92322019-06-07 09:40:55 +02004446 /* ensure runtime resolver will process this new fqdn */
4447 if (sv->flags & SRV_F_NO_RESOLUTION) {
4448 sv->flags &= ~SRV_F_NO_RESOLUTION;
4449 }
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004450 warning = update_server_fqdn(sv, args[4], "stats socket command", 0);
Willy Tarreau9d008692019-08-09 11:21:01 +02004451 if (warning)
4452 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004453 }
William Dauchyf6370442020-11-14 19:25:33 +01004454 else if (strcmp(args[3], "ssl") == 0) {
4455#ifdef USE_OPENSSL
4456 if (sv->ssl_ctx.ctx == NULL) {
4457 cli_err(appctx, "'set server <srv> ssl' cannot be set. "
4458 " default-server should define ssl settings\n");
4459 goto out_unlock;
4460 } else if (strcmp(args[4], "on") == 0) {
4461 ssl_sock_set_srv(sv, 1);
4462 } else if (strcmp(args[4], "off") == 0) {
4463 ssl_sock_set_srv(sv, 0);
4464 } else {
4465 cli_err(appctx, "'set server <srv> ssl' expects 'on' or 'off'.\n");
4466 goto out_unlock;
4467 }
4468 srv_cleanup_connections(sv);
4469 cli_msg(appctx, LOG_NOTICE, "server ssl setting updated.\n");
4470#else
4471 cli_msg(appctx, LOG_NOTICE, "server ssl setting not supported.\n");
4472#endif
4473 } else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004474 cli_err(appctx,
4475 "'set server <srv>' only supports 'agent', 'health', 'state',"
William Dauchyf6370442020-11-14 19:25:33 +01004476 " 'weight', 'addr', 'fqdn', 'check-port' and 'ssl'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004477 }
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004478 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004479 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004480 return 1;
4481}
4482
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004483static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004484{
4485 struct stream_interface *si = appctx->owner;
4486 struct proxy *px;
4487 struct server *sv;
4488 char *line;
4489
4490
4491 /* split "backend/server" and make <line> point to server */
4492 for (line = args[2]; *line; line++)
4493 if (*line == '/') {
4494 *line++ = '\0';
4495 break;
4496 }
4497
Willy Tarreau9d008692019-08-09 11:21:01 +02004498 if (!*line)
4499 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004500
Willy Tarreau9d008692019-08-09 11:21:01 +02004501 if (!get_backend_server(args[2], line, &px, &sv))
4502 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004503
4504 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004505 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4506 sv->iweight);
4507 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004508 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004509 return 0;
4510 }
William Lallemand6b160942016-11-22 12:34:35 +01004511 return 1;
4512}
4513
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004514/* Parse a "set weight" command.
4515 *
4516 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004517 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004518static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004519{
4520 struct server *sv;
4521 const char *warning;
4522
4523 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4524 return 1;
4525
4526 sv = cli_find_server(appctx, args[2]);
4527 if (!sv)
4528 return 1;
4529
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004530 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4531
William Lallemand6b160942016-11-22 12:34:35 +01004532 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004533 if (warning)
4534 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004535
4536 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4537
William Lallemand6b160942016-11-22 12:34:35 +01004538 return 1;
4539}
4540
Willy Tarreau46b7f532018-08-21 11:54:26 +02004541/* parse a "set maxconn server" command. It always returns 1.
4542 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004543 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004544 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004545static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004546{
4547 struct server *sv;
4548 const char *warning;
4549
4550 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4551 return 1;
4552
4553 sv = cli_find_server(appctx, args[3]);
4554 if (!sv)
4555 return 1;
4556
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004557 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4558
Willy Tarreaub8026272016-11-23 11:26:56 +01004559 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004560 if (warning)
4561 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004562
4563 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4564
Willy Tarreaub8026272016-11-23 11:26:56 +01004565 return 1;
4566}
William Lallemand6b160942016-11-22 12:34:35 +01004567
Willy Tarreau46b7f532018-08-21 11:54:26 +02004568/* parse a "disable agent" command. It always returns 1.
4569 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004570 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004571 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004572static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004573{
4574 struct server *sv;
4575
4576 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4577 return 1;
4578
4579 sv = cli_find_server(appctx, args[2]);
4580 if (!sv)
4581 return 1;
4582
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004583 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004584 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004585 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004586 return 1;
4587}
4588
Willy Tarreau46b7f532018-08-21 11:54:26 +02004589/* parse a "disable health" command. It always returns 1.
4590 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004591 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004592 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004593static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004594{
4595 struct server *sv;
4596
4597 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4598 return 1;
4599
4600 sv = cli_find_server(appctx, args[2]);
4601 if (!sv)
4602 return 1;
4603
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004604 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004605 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004606 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004607 return 1;
4608}
4609
Willy Tarreau46b7f532018-08-21 11:54:26 +02004610/* parse a "disable server" command. It always returns 1.
4611 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004612 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004613 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004614static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004615{
4616 struct server *sv;
4617
4618 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4619 return 1;
4620
4621 sv = cli_find_server(appctx, args[2]);
4622 if (!sv)
4623 return 1;
4624
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004625 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004626 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004627 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004628 return 1;
4629}
4630
Willy Tarreau46b7f532018-08-21 11:54:26 +02004631/* parse a "enable agent" command. It always returns 1.
4632 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004633 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004634 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004635static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004636{
4637 struct server *sv;
4638
4639 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4640 return 1;
4641
4642 sv = cli_find_server(appctx, args[2]);
4643 if (!sv)
4644 return 1;
4645
Willy Tarreau9d008692019-08-09 11:21:01 +02004646 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4647 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004648
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004649 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004650 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004651 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004652 return 1;
4653}
4654
Willy Tarreau46b7f532018-08-21 11:54:26 +02004655/* parse a "enable health" command. It always returns 1.
4656 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004657 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004658 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004659static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004660{
4661 struct server *sv;
4662
4663 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4664 return 1;
4665
4666 sv = cli_find_server(appctx, args[2]);
4667 if (!sv)
4668 return 1;
4669
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004670 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004671 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004672 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004673 return 1;
4674}
4675
Willy Tarreau46b7f532018-08-21 11:54:26 +02004676/* parse a "enable server" command. It always returns 1.
4677 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004678 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004679 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004680static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004681{
4682 struct server *sv;
4683
4684 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4685 return 1;
4686
4687 sv = cli_find_server(appctx, args[2]);
4688 if (!sv)
4689 return 1;
4690
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004691 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004692 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004693 if (!(sv->flags & SRV_F_COOKIESET)
4694 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4695 sv->cookie)
4696 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004697 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004698 return 1;
4699}
4700
William Lallemand222baf22016-11-19 02:00:33 +01004701/* register cli keywords */
4702static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004703 { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004704 { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004705 { { "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 +01004706 { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004707 { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004708 { { "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 +01004709 { { "set", "maxconn", "server", NULL }, "set maxconn server : change a server's maxconn setting", cli_parse_set_maxconn_server, NULL },
William Dauchyf6370442020-11-14 19:25:33 +01004710 { { "set", "server", NULL }, "set server : change a server's state, weight, address or ssl", cli_parse_set_server },
William Lallemand6b160942016-11-22 12:34:35 +01004711 { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight },
4712 { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight },
4713
William Lallemand222baf22016-11-19 02:00:33 +01004714 {{},}
4715}};
4716
Willy Tarreau0108d902018-11-25 19:14:37 +01004717INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004718
Emeric Brun64cc49c2017-10-03 14:46:45 +02004719/*
4720 * This function applies server's status changes, it is
4721 * is designed to be called asynchronously.
4722 *
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004723 * Must be called with the server lock held. This may also be called at init
4724 * time as the result of parsing the state file, in which case no lock will be
4725 * held, and the server's warmup task can be null.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004726 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004727static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004728{
4729 struct check *check = &s->check;
4730 int xferred;
4731 struct proxy *px = s->proxy;
4732 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4733 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4734 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004735 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004736
Emeric Brun64cc49c2017-10-03 14:46:45 +02004737 /* If currently main is not set we try to apply pending state changes */
4738 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4739 int next_admin;
4740
4741 /* Backup next admin */
4742 next_admin = s->next_admin;
4743
4744 /* restore current admin state */
4745 s->next_admin = s->cur_admin;
4746
4747 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4748 s->last_change = now.tv_sec;
4749 if (s->proxy->lbprm.set_server_status_down)
4750 s->proxy->lbprm.set_server_status_down(s);
4751
4752 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4753 srv_shutdown_streams(s, SF_ERR_DOWN);
4754
4755 /* we might have streams queued on this server and waiting for
4756 * a connection. Those which are redispatchable will be queued
4757 * to another server or to the proxy itself.
4758 */
4759 xferred = pendconn_redistribute(s);
4760
4761 tmptrash = alloc_trash_chunk();
4762 if (tmptrash) {
4763 chunk_printf(tmptrash,
4764 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4765 s->proxy->id, s->id);
4766
Emeric Brun5a133512017-10-19 14:42:30 +02004767 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004768 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004769
4770 /* we don't send an alert if the server was previously paused */
4771 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004772 send_log(s->proxy, log_level, "%s.\n",
4773 tmptrash->area);
4774 send_email_alert(s, log_level, "%s",
4775 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004776 free_trash_chunk(tmptrash);
4777 tmptrash = NULL;
4778 }
4779 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4780 set_backend_down(s->proxy);
4781
4782 s->counters.down_trans++;
4783 }
4784 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4785 s->last_change = now.tv_sec;
4786 if (s->proxy->lbprm.set_server_status_down)
4787 s->proxy->lbprm.set_server_status_down(s);
4788
4789 /* we might have streams queued on this server and waiting for
4790 * a connection. Those which are redispatchable will be queued
4791 * to another server or to the proxy itself.
4792 */
4793 xferred = pendconn_redistribute(s);
4794
4795 tmptrash = alloc_trash_chunk();
4796 if (tmptrash) {
4797 chunk_printf(tmptrash,
4798 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4799 s->proxy->id, s->id);
4800
Emeric Brun5a133512017-10-19 14:42:30 +02004801 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004802
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004803 ha_warning("%s.\n", tmptrash->area);
4804 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4805 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004806 free_trash_chunk(tmptrash);
4807 tmptrash = NULL;
4808 }
4809
4810 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4811 set_backend_down(s->proxy);
4812 }
4813 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4814 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4815 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4816 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4817 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4818 s->proxy->last_change = now.tv_sec;
4819 }
4820
Amaury Denoyellefe2bf092020-10-29 15:59:04 +01004821 if (s->cur_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
Emeric Brun64cc49c2017-10-03 14:46:45 +02004822 s->down_time += now.tv_sec - s->last_change;
4823
4824 s->last_change = now.tv_sec;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004825 if (s->next_state == SRV_ST_STARTING && s->warmup)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004826 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4827
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004828 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004829 /* now propagate the status change to any LB algorithms */
4830 if (px->lbprm.update_server_eweight)
4831 px->lbprm.update_server_eweight(s);
4832 else if (srv_willbe_usable(s)) {
4833 if (px->lbprm.set_server_status_up)
4834 px->lbprm.set_server_status_up(s);
4835 }
4836 else {
4837 if (px->lbprm.set_server_status_down)
4838 px->lbprm.set_server_status_down(s);
4839 }
4840
4841 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4842 * and it's not a backup server and its effective weight is > 0,
4843 * then it can accept new connections, so we shut down all streams
4844 * on all backup servers.
4845 */
4846 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4847 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4848 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4849
4850 /* check if we can handle some connections queued at the proxy. We
4851 * will take as many as we can handle.
4852 */
4853 xferred = pendconn_grab_from_px(s);
4854
4855 tmptrash = alloc_trash_chunk();
4856 if (tmptrash) {
4857 chunk_printf(tmptrash,
4858 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
4859 s->proxy->id, s->id);
4860
Emeric Brun5a133512017-10-19 14:42:30 +02004861 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004862 ha_warning("%s.\n", tmptrash->area);
4863 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4864 tmptrash->area);
4865 send_email_alert(s, LOG_NOTICE, "%s",
4866 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004867 free_trash_chunk(tmptrash);
4868 tmptrash = NULL;
4869 }
4870
4871 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4872 set_backend_down(s->proxy);
4873 }
4874 else if (s->cur_eweight != s->next_eweight) {
4875 /* now propagate the status change to any LB algorithms */
4876 if (px->lbprm.update_server_eweight)
4877 px->lbprm.update_server_eweight(s);
4878 else if (srv_willbe_usable(s)) {
4879 if (px->lbprm.set_server_status_up)
4880 px->lbprm.set_server_status_up(s);
4881 }
4882 else {
4883 if (px->lbprm.set_server_status_down)
4884 px->lbprm.set_server_status_down(s);
4885 }
4886
4887 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4888 set_backend_down(s->proxy);
4889 }
4890
4891 s->next_admin = next_admin;
4892 }
4893
Emeric Brun5a133512017-10-19 14:42:30 +02004894 /* reset operational state change */
4895 *s->op_st_chg.reason = 0;
4896 s->op_st_chg.status = s->op_st_chg.code = -1;
4897 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004898
4899 /* Now we try to apply pending admin changes */
4900
4901 /* Maintenance must also disable health checks */
4902 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
4903 if (s->check.state & CHK_ST_ENABLED) {
4904 s->check.state |= CHK_ST_PAUSED;
4905 check->health = 0;
4906 }
4907
4908 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02004909 tmptrash = alloc_trash_chunk();
4910 if (tmptrash) {
4911 chunk_printf(tmptrash,
4912 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
4913 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4914 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02004915
Olivier Houchard796a2b32017-10-24 17:42:47 +02004916 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02004917
Olivier Houchard796a2b32017-10-24 17:42:47 +02004918 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004919 ha_warning("%s.\n", tmptrash->area);
4920 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4921 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02004922 }
4923 free_trash_chunk(tmptrash);
4924 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004925 }
Emeric Brun8f298292017-12-06 16:47:17 +01004926 /* commit new admin status */
4927
4928 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004929 }
4930 else { /* server was still running */
4931 check->health = 0; /* failure */
4932 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01004933
4934 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004935 if (s->proxy->lbprm.set_server_status_down)
4936 s->proxy->lbprm.set_server_status_down(s);
4937
Emeric Brun64cc49c2017-10-03 14:46:45 +02004938 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4939 srv_shutdown_streams(s, SF_ERR_DOWN);
4940
William Dauchy6318d332020-05-02 21:52:36 +02004941 /* force connection cleanup on the given server */
4942 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004943 /* we might have streams queued on this server and waiting for
4944 * a connection. Those which are redispatchable will be queued
4945 * to another server or to the proxy itself.
4946 */
4947 xferred = pendconn_redistribute(s);
4948
4949 tmptrash = alloc_trash_chunk();
4950 if (tmptrash) {
4951 chunk_printf(tmptrash,
4952 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
4953 s->flags & SRV_F_BACKUP ? "Backup " : "",
4954 s->proxy->id, s->id,
4955 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
4956
4957 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
4958
4959 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004960 ha_warning("%s.\n", tmptrash->area);
4961 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
4962 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004963 }
4964 free_trash_chunk(tmptrash);
4965 tmptrash = NULL;
4966 }
4967 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4968 set_backend_down(s->proxy);
4969
4970 s->counters.down_trans++;
4971 }
4972 }
4973 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
4974 /* OK here we're leaving maintenance, we have many things to check,
4975 * because the server might possibly be coming back up depending on
4976 * its state. In practice, leaving maintenance means that we should
4977 * immediately turn to UP (more or less the slowstart) under the
4978 * following conditions :
4979 * - server is neither checked nor tracked
4980 * - server tracks another server which is not checked
4981 * - server tracks another server which is already up
4982 * Which sums up as something simpler :
4983 * "either the tracking server is up or the server's checks are disabled
4984 * or up". Otherwise we only re-enable health checks. There's a special
4985 * case associated to the stopping state which can be inherited. Note
4986 * that the server might still be in drain mode, which is naturally dealt
4987 * with by the lower level functions.
4988 */
4989
4990 if (s->check.state & CHK_ST_ENABLED) {
4991 s->check.state &= ~CHK_ST_PAUSED;
4992 check->health = check->rise; /* start OK but check immediately */
4993 }
4994
4995 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
4996 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
4997 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
4998 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
4999 s->next_state = SRV_ST_STOPPING;
5000 }
5001 else {
5002 s->next_state = SRV_ST_STARTING;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005003 if (s->slowstart > 0) {
5004 if (s->warmup)
5005 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5006 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005007 else
5008 s->next_state = SRV_ST_RUNNING;
5009 }
5010
5011 }
5012
5013 tmptrash = alloc_trash_chunk();
5014 if (tmptrash) {
5015 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5016 chunk_printf(tmptrash,
5017 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
5018 s->flags & SRV_F_BACKUP ? "Backup " : "",
5019 s->proxy->id, s->id,
5020 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5021 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5022 }
5023 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5024 chunk_printf(tmptrash,
5025 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
5026 s->flags & SRV_F_BACKUP ? "Backup " : "",
5027 s->proxy->id, s->id, s->hostname,
5028 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5029 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5030 }
5031 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5032 chunk_printf(tmptrash,
5033 "%sServer %s/%s is %s/%s (leaving maintenance)",
5034 s->flags & SRV_F_BACKUP ? "Backup " : "",
5035 s->proxy->id, s->id,
5036 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5037 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5038 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005039 ha_warning("%s.\n", tmptrash->area);
5040 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5041 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005042 free_trash_chunk(tmptrash);
5043 tmptrash = NULL;
5044 }
5045
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005046 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005047 /* now propagate the status change to any LB algorithms */
5048 if (px->lbprm.update_server_eweight)
5049 px->lbprm.update_server_eweight(s);
5050 else if (srv_willbe_usable(s)) {
5051 if (px->lbprm.set_server_status_up)
5052 px->lbprm.set_server_status_up(s);
5053 }
5054 else {
5055 if (px->lbprm.set_server_status_down)
5056 px->lbprm.set_server_status_down(s);
5057 }
5058
5059 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5060 set_backend_down(s->proxy);
5061
Willy Tarreau6a78e612018-08-07 10:14:53 +02005062 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5063 * and it's not a backup server and its effective weight is > 0,
5064 * then it can accept new connections, so we shut down all streams
5065 * on all backup servers.
5066 */
5067 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5068 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5069 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5070
5071 /* check if we can handle some connections queued at the proxy. We
5072 * will take as many as we can handle.
5073 */
5074 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005075 }
5076 else if (s->next_admin & SRV_ADMF_MAINT) {
5077 /* remaining in maintenance mode, let's inform precisely about the
5078 * situation.
5079 */
5080 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5081 tmptrash = alloc_trash_chunk();
5082 if (tmptrash) {
5083 chunk_printf(tmptrash,
5084 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5085 s->flags & SRV_F_BACKUP ? "Backup " : "",
5086 s->proxy->id, s->id);
5087
5088 if (s->track) /* normally it's mandatory here */
5089 chunk_appendf(tmptrash, " via %s/%s",
5090 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005091 ha_warning("%s.\n", tmptrash->area);
5092 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5093 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005094 free_trash_chunk(tmptrash);
5095 tmptrash = NULL;
5096 }
5097 }
5098 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5099 tmptrash = alloc_trash_chunk();
5100 if (tmptrash) {
5101 chunk_printf(tmptrash,
5102 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5103 s->flags & SRV_F_BACKUP ? "Backup " : "",
5104 s->proxy->id, s->id, s->hostname);
5105
5106 if (s->track) /* normally it's mandatory here */
5107 chunk_appendf(tmptrash, " via %s/%s",
5108 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005109 ha_warning("%s.\n", tmptrash->area);
5110 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5111 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005112 free_trash_chunk(tmptrash);
5113 tmptrash = NULL;
5114 }
5115 }
5116 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5117 tmptrash = alloc_trash_chunk();
5118 if (tmptrash) {
5119 chunk_printf(tmptrash,
5120 "%sServer %s/%s remains in forced maintenance",
5121 s->flags & SRV_F_BACKUP ? "Backup " : "",
5122 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005123 ha_warning("%s.\n", tmptrash->area);
5124 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5125 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005126 free_trash_chunk(tmptrash);
5127 tmptrash = NULL;
5128 }
5129 }
5130 /* don't report anything when leaving drain mode and remaining in maintenance */
5131
5132 s->cur_admin = s->next_admin;
5133 }
5134
5135 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5136 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5137 /* drain state is applied only if not yet in maint */
5138
5139 s->last_change = now.tv_sec;
5140 if (px->lbprm.set_server_status_down)
5141 px->lbprm.set_server_status_down(s);
5142
5143 /* we might have streams queued on this server and waiting for
5144 * a connection. Those which are redispatchable will be queued
5145 * to another server or to the proxy itself.
5146 */
5147 xferred = pendconn_redistribute(s);
5148
5149 tmptrash = alloc_trash_chunk();
5150 if (tmptrash) {
5151 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5152 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5153 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5154
5155 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5156
5157 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005158 ha_warning("%s.\n", tmptrash->area);
5159 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5160 tmptrash->area);
5161 send_email_alert(s, LOG_NOTICE, "%s",
5162 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005163 }
5164 free_trash_chunk(tmptrash);
5165 tmptrash = NULL;
5166 }
5167
5168 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5169 set_backend_down(s->proxy);
5170 }
5171 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5172 /* OK completely leaving drain mode */
5173 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5174 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5175 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5176 s->proxy->last_change = now.tv_sec;
5177 }
5178
5179 if (s->last_change < now.tv_sec) // ignore negative times
5180 s->down_time += now.tv_sec - s->last_change;
5181 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005182 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005183
5184 tmptrash = alloc_trash_chunk();
5185 if (tmptrash) {
5186 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5187 chunk_printf(tmptrash,
5188 "%sServer %s/%s is %s (leaving forced drain)",
5189 s->flags & SRV_F_BACKUP ? "Backup " : "",
5190 s->proxy->id, s->id,
5191 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5192 }
5193 else {
5194 chunk_printf(tmptrash,
5195 "%sServer %s/%s is %s (leaving drain)",
5196 s->flags & SRV_F_BACKUP ? "Backup " : "",
5197 s->proxy->id, s->id,
5198 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5199 if (s->track) /* normally it's mandatory here */
5200 chunk_appendf(tmptrash, " via %s/%s",
5201 s->track->proxy->id, s->track->id);
5202 }
5203
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005204 ha_warning("%s.\n", tmptrash->area);
5205 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5206 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005207 free_trash_chunk(tmptrash);
5208 tmptrash = NULL;
5209 }
5210
5211 /* now propagate the status change to any LB algorithms */
5212 if (px->lbprm.update_server_eweight)
5213 px->lbprm.update_server_eweight(s);
5214 else if (srv_willbe_usable(s)) {
5215 if (px->lbprm.set_server_status_up)
5216 px->lbprm.set_server_status_up(s);
5217 }
5218 else {
5219 if (px->lbprm.set_server_status_down)
5220 px->lbprm.set_server_status_down(s);
5221 }
5222 }
5223 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5224 /* remaining in drain mode after removing one of its flags */
5225
5226 tmptrash = alloc_trash_chunk();
5227 if (tmptrash) {
5228 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5229 chunk_printf(tmptrash,
5230 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5231 s->flags & SRV_F_BACKUP ? "Backup " : "",
5232 s->proxy->id, s->id);
5233
5234 if (s->track) /* normally it's mandatory here */
5235 chunk_appendf(tmptrash, " via %s/%s",
5236 s->track->proxy->id, s->track->id);
5237 }
5238 else {
5239 chunk_printf(tmptrash,
5240 "%sServer %s/%s remains in forced drain mode",
5241 s->flags & SRV_F_BACKUP ? "Backup " : "",
5242 s->proxy->id, s->id);
5243 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005244 ha_warning("%s.\n", tmptrash->area);
5245 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5246 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005247 free_trash_chunk(tmptrash);
5248 tmptrash = NULL;
5249 }
5250
5251 /* commit new admin status */
5252
5253 s->cur_admin = s->next_admin;
5254 }
5255 }
5256
5257 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005258 *s->adm_st_chg_cause = 0;
5259}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005260
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005261struct task *srv_cleanup_toremove_connections(struct task *task, void *context, unsigned short state)
5262{
5263 struct connection *conn;
5264
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005265 while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns,
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005266 struct connection *, list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005267 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005268 }
5269
5270 return task;
5271}
5272
Olivier Houchardff1d0922020-06-29 20:15:59 +02005273/* Move toremove_nb connections from idle_list to toremove_list, -1 means
5274 * moving them all.
5275 * Returns the number of connections moved.
5276 */
5277static int srv_migrate_conns_to_remove(struct mt_list *idle_list, struct mt_list *toremove_list, int toremove_nb)
5278{
5279 struct mt_list *elt1, elt2;
5280 struct connection *conn;
5281 int i = 0;
5282
5283 mt_list_for_each_entry_safe(conn, idle_list, list, elt1, elt2) {
5284 if (toremove_nb != -1 && i >= toremove_nb)
5285 break;
5286 MT_LIST_DEL_SAFE_NOINIT(elt1);
Willy Tarreaude4db172020-07-10 08:10:29 +02005287 MT_LIST_ADDQ(toremove_list, &conn->list);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005288 i++;
5289 }
5290 return i;
5291}
William Dauchy6318d332020-05-02 21:52:36 +02005292/* cleanup connections for a given server
5293 * might be useful when going on forced maintenance or live changing ip/port
5294 */
William Dauchy707ad322020-05-04 13:52:40 +02005295static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005296{
William Dauchy6318d332020-05-02 21:52:36 +02005297 int did_remove;
5298 int i;
William Dauchy6318d332020-05-02 21:52:36 +02005299
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005300 /* check all threads starting with ours */
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005301 for (i = tid;;) {
William Dauchy6318d332020-05-02 21:52:36 +02005302 did_remove = 0;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005303 if (srv_migrate_conns_to_remove(&srv->idle_conns[i], &idle_conns[i].toremove_conns, -1) > 0)
William Dauchy6318d332020-05-02 21:52:36 +02005304 did_remove = 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005305 if (srv_migrate_conns_to_remove(&srv->safe_conns[i], &idle_conns[i].toremove_conns, -1) > 0)
5306 did_remove = 1;
William Dauchy6318d332020-05-02 21:52:36 +02005307 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005308 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005309
5310 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5311 break;
William Dauchy6318d332020-05-02 21:52:36 +02005312 }
William Dauchy6318d332020-05-02 21:52:36 +02005313}
5314
Willy Tarreau980855b2019-02-07 14:59:29 +01005315struct task *srv_cleanup_idle_connections(struct task *task, void *context, unsigned short state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005316{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005317 struct server *srv;
5318 struct eb32_node *eb;
5319 int i;
5320 unsigned int next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005321
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005322 next_wakeup = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005323 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5324 while (1) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005325 int exceed_conns;
5326 int to_kill;
5327 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005328
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005329 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5330 if (!eb) {
5331 /* we might have reached the end of the tree, typically because
5332 * <now_ms> is in the first half and we're first scanning the last
5333 * half. Let's loop back to the beginning of the tree now.
5334 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005335
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005336 eb = eb32_first(&idle_conn_srv);
5337 if (likely(!eb))
5338 break;
5339 }
5340 if (tick_is_lt(now_ms, eb->key)) {
5341 /* timer not expired yet, revisit it later */
5342 next_wakeup = eb->key;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005343 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005344 }
5345 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005346
5347 /* Calculate how many idle connections we want to kill :
5348 * we want to remove half the difference between the total
5349 * of established connections (used or idle) and the max
5350 * number of used connections.
5351 */
5352 curr_idle = srv->curr_idle_conns;
5353 if (curr_idle == 0)
5354 goto remove;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005355 exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005356 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005357
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005358 srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns) / 2;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005359 if (srv->est_need_conns < srv->max_used_conns)
5360 srv->est_need_conns = srv->max_used_conns;
5361
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005362 srv->max_used_conns = srv->curr_used_conns;
5363
Willy Tarreau18ed7892020-07-02 19:05:30 +02005364 if (exceed_conns <= 0)
5365 goto remove;
5366
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005367 /* check all threads starting with ours */
5368 for (i = tid;;) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005369 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005370 int j;
5371 int did_remove = 0;
5372
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005373 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5374 curr_idle + 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005375
5376 j = srv_migrate_conns_to_remove(&srv->idle_conns[i], &idle_conns[i].toremove_conns, max_conn);
5377 if (j > 0)
5378 did_remove = 1;
5379 if (max_conn - j > 0 &&
5380 srv_migrate_conns_to_remove(&srv->safe_conns[i], &idle_conns[i].toremove_conns, max_conn - j) > 0)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005381 did_remove = 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005382
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005383 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005384 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005385
5386 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5387 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005388 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005389remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005390 eb32_delete(&srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005391
5392 if (srv->curr_idle_conns) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005393 /* There are still more idle connections, add the
5394 * server back in the tree.
5395 */
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005396 srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005397 eb32_insert(&idle_conn_srv, &srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005398 next_wakeup = tick_first(next_wakeup, srv->idle_node.key);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005399 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005400 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005401 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5402
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005403 task->expire = next_wakeup;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005404 return task;
5405}
Olivier Houchard88698d92019-04-16 19:07:22 +02005406
Willy Tarreau76cc6992020-07-01 18:49:24 +02005407/* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */
5408static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx,
5409 struct proxy *defpx, const char *file, int line,
5410 char **err)
5411{
5412 if (too_many_args(1, args, err, NULL))
5413 return -1;
5414
5415 if (strcmp(args[1], "on") == 0)
5416 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
5417 else if (strcmp(args[1], "off") == 0)
5418 global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
5419 else {
5420 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
5421 return -1;
5422 }
5423 return 0;
5424}
5425
Olivier Houchard88698d92019-04-16 19:07:22 +02005426/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5427static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
5428 struct proxy *defpx, const char *file, int line,
5429 char **err)
5430{
5431 int arg = -1;
5432
5433 if (too_many_args(1, args, err, NULL))
5434 return -1;
5435
5436 if (*(args[1]) != 0)
5437 arg = atoi(args[1]);
5438
5439 if (arg < 0 || arg > 100) {
5440 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5441 return -1;
5442 }
5443
5444 if (args[0][10] == 'h')
5445 global.tune.pool_high_ratio = arg;
5446 else
5447 global.tune.pool_low_ratio = arg;
5448 return 0;
5449}
5450
5451/* config keyword parsers */
5452static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau76cc6992020-07-01 18:49:24 +02005453 { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared },
Olivier Houchard88698d92019-04-16 19:07:22 +02005454 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5455 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5456 { 0, NULL, NULL }
5457}};
5458
5459INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5460
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005461/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005462 * Local variables:
5463 * c-indent-level: 8
5464 * c-basic-offset: 8
5465 * End:
5466 */