blob: 453c598668720090a5e5ec34c4061ae0a7e6b743 [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) {
Thayne McCombs24da7e12021-01-05 23:10:09 -0700207 if (key && strcmp(key, s->addr_node.key) == 0) {
Thayne McCombs92149f92020-11-20 01:28:26 -0700208 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
Thayne McCombs24da7e12021-01-05 23:10:09 -0700221 if (s->addr_node.key) {
222 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
223 ebis_insert(&p->used_server_addr, &s->addr_node);
224 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
225 }
Thayne McCombs92149f92020-11-20 01:28:26 -0700226}
227
228/*
Willy Tarreau21faa912012-10-10 08:27:36 +0200229 * Registers the server keyword list <kwl> as a list of valid keywords for next
230 * parsing sessions.
231 */
232void srv_register_keywords(struct srv_kw_list *kwl)
233{
234 LIST_ADDQ(&srv_keywords.list, &kwl->list);
235}
236
237/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
238 * keyword is found with a NULL ->parse() function, then an attempt is made to
239 * find one with a valid ->parse() function. This way it is possible to declare
240 * platform-dependant, known keywords as NULL, then only declare them as valid
241 * if some options are met. Note that if the requested keyword contains an
242 * opening parenthesis, everything from this point is ignored.
243 */
244struct srv_kw *srv_find_kw(const char *kw)
245{
246 int index;
247 const char *kwend;
248 struct srv_kw_list *kwl;
249 struct srv_kw *ret = NULL;
250
251 kwend = strchr(kw, '(');
252 if (!kwend)
253 kwend = kw + strlen(kw);
254
255 list_for_each_entry(kwl, &srv_keywords.list, list) {
256 for (index = 0; kwl->kw[index].kw != NULL; index++) {
257 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
258 kwl->kw[index].kw[kwend-kw] == 0) {
259 if (kwl->kw[index].parse)
260 return &kwl->kw[index]; /* found it !*/
261 else
262 ret = &kwl->kw[index]; /* may be OK */
263 }
264 }
265 }
266 return ret;
267}
268
269/* Dumps all registered "server" keywords to the <out> string pointer. The
270 * unsupported keywords are only dumped if their supported form was not
271 * found.
272 */
273void srv_dump_kws(char **out)
274{
275 struct srv_kw_list *kwl;
276 int index;
277
Christopher Faulet784063e2020-05-18 12:14:18 +0200278 if (!out)
279 return;
280
Willy Tarreau21faa912012-10-10 08:27:36 +0200281 *out = NULL;
282 list_for_each_entry(kwl, &srv_keywords.list, list) {
283 for (index = 0; kwl->kw[index].kw != NULL; index++) {
284 if (kwl->kw[index].parse ||
285 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
286 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
287 kwl->scope,
288 kwl->kw[index].kw,
289 kwl->kw[index].skip ? " <arg>" : "",
290 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
291 kwl->kw[index].parse ? "" : " (not supported)");
292 }
293 }
294 }
295}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100296
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100297/* Parse the "backup" server keyword */
298static int srv_parse_backup(char **args, int *cur_arg,
299 struct proxy *curproxy, struct server *newsrv, char **err)
300{
301 newsrv->flags |= SRV_F_BACKUP;
302 return 0;
303}
304
Alexander Liu2a54bb72019-05-22 19:44:48 +0800305
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100306/* Parse the "cookie" server keyword */
307static int srv_parse_cookie(char **args, int *cur_arg,
308 struct proxy *curproxy, struct server *newsrv, char **err)
309{
310 char *arg;
311
312 arg = args[*cur_arg + 1];
313 if (!*arg) {
314 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
315 return ERR_ALERT | ERR_FATAL;
316 }
317
318 free(newsrv->cookie);
319 newsrv->cookie = strdup(arg);
320 newsrv->cklen = strlen(arg);
321 newsrv->flags |= SRV_F_COOKIESET;
322 return 0;
323}
324
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100325/* Parse the "disabled" server keyword */
326static int srv_parse_disabled(char **args, int *cur_arg,
327 struct proxy *curproxy, struct server *newsrv, char **err)
328{
Emeric Brun52a91d32017-08-31 14:41:55 +0200329 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
330 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100331 newsrv->check.state |= CHK_ST_PAUSED;
332 newsrv->check.health = 0;
333 return 0;
334}
335
336/* Parse the "enabled" server keyword */
337static int srv_parse_enabled(char **args, int *cur_arg,
338 struct proxy *curproxy, struct server *newsrv, char **err)
339{
Emeric Brun52a91d32017-08-31 14:41:55 +0200340 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
341 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100342 newsrv->check.state &= ~CHK_ST_PAUSED;
343 newsrv->check.health = newsrv->check.rise;
344 return 0;
345}
346
Willy Tarreau9c538e02019-01-23 10:21:49 +0100347static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
348{
349 char *arg;
350
351 arg = args[*cur_arg + 1];
352 if (!*arg) {
353 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
354 return ERR_ALERT | ERR_FATAL;
355 }
356 newsrv->max_reuse = atoi(arg);
357
358 return 0;
359}
360
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100361static int srv_parse_pool_purge_delay(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100362{
363 const char *res;
364 char *arg;
365 unsigned int time;
366
367 arg = args[*cur_arg + 1];
368 if (!*arg) {
369 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
370 return ERR_ALERT | ERR_FATAL;
371 }
372 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200373 if (res == PARSE_TIME_OVER) {
374 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
375 args[*cur_arg+1], args[*cur_arg]);
376 return ERR_ALERT | ERR_FATAL;
377 }
378 else if (res == PARSE_TIME_UNDER) {
379 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
380 args[*cur_arg+1], args[*cur_arg]);
381 return ERR_ALERT | ERR_FATAL;
382 }
383 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100384 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
385 *res, args[*cur_arg]);
386 return ERR_ALERT | ERR_FATAL;
387 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100388 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100389
390 return 0;
391}
392
Willy Tarreau2f3f4d32020-07-01 07:43:51 +0200393static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
394{
395 char *arg;
396
397 arg = args[*cur_arg + 1];
398 if (!*arg) {
399 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
400 return ERR_ALERT | ERR_FATAL;
401 }
402
403 newsrv->low_idle_conns = atoi(arg);
404 return 0;
405}
406
Olivier Houchard006e3102018-12-10 18:30:32 +0100407static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
408{
409 char *arg;
410
411 arg = args[*cur_arg + 1];
412 if (!*arg) {
413 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
414 return ERR_ALERT | ERR_FATAL;
415 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100416
Olivier Houchard006e3102018-12-10 18:30:32 +0100417 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100418 if ((int)newsrv->max_idle_conns < -1) {
419 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
420 return ERR_ALERT | ERR_FATAL;
421 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100422
423 return 0;
424}
425
Willy Tarreaudff55432012-10-10 17:51:05 +0200426/* parse the "id" server keyword */
427static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
428{
429 struct eb32_node *node;
430
431 if (!*args[*cur_arg + 1]) {
432 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
433 return ERR_ALERT | ERR_FATAL;
434 }
435
436 newsrv->puid = atol(args[*cur_arg + 1]);
437 newsrv->conf.id.key = newsrv->puid;
438
439 if (newsrv->puid <= 0) {
440 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
441 return ERR_ALERT | ERR_FATAL;
442 }
443
444 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
445 if (node) {
446 struct server *target = container_of(node, struct server, conf.id);
447 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
448 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
449 target->id);
450 return ERR_ALERT | ERR_FATAL;
451 }
452
453 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200454 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200455 return 0;
456}
457
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100458/* Parse the "namespace" server keyword */
459static int srv_parse_namespace(char **args, int *cur_arg,
460 struct proxy *curproxy, struct server *newsrv, char **err)
461{
Willy Tarreaue5733232019-05-22 19:24:06 +0200462#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100463 char *arg;
464
465 arg = args[*cur_arg + 1];
466 if (!*arg) {
467 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
468 return ERR_ALERT | ERR_FATAL;
469 }
470
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100471 if (strcmp(arg, "*") == 0) {
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100472 /* Use the namespace associated with the connection (if present). */
473 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
474 return 0;
475 }
476
477 /*
478 * As this parser may be called several times for the same 'default-server'
479 * object, or for a new 'server' instance deriving from a 'default-server'
480 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
481 */
482 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
483
484 newsrv->netns = netns_store_lookup(arg, strlen(arg));
485 if (!newsrv->netns)
486 newsrv->netns = netns_store_insert(arg);
487
488 if (!newsrv->netns) {
489 memprintf(err, "Cannot open namespace '%s'", arg);
490 return ERR_ALERT | ERR_FATAL;
491 }
492
493 return 0;
494#else
495 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
496 return ERR_ALERT | ERR_FATAL;
497#endif
498}
499
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100500/* Parse the "no-backup" server keyword */
501static int srv_parse_no_backup(char **args, int *cur_arg,
502 struct proxy *curproxy, struct server *newsrv, char **err)
503{
504 newsrv->flags &= ~SRV_F_BACKUP;
505 return 0;
506}
507
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100508
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100509/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200510static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100511{
512 srv->pp_opts &= ~flags;
513 return 0;
514}
515
516/* Parse the "no-send-proxy" server keyword */
517static int srv_parse_no_send_proxy(char **args, int *cur_arg,
518 struct proxy *curproxy, struct server *newsrv, char **err)
519{
520 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
521}
522
523/* Parse the "no-send-proxy-v2" server keyword */
524static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
525 struct proxy *curproxy, struct server *newsrv, char **err)
526{
527 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
528}
529
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200530/* Parse the "no-tfo" server keyword */
531static int srv_parse_no_tfo(char **args, int *cur_arg,
532 struct proxy *curproxy, struct server *newsrv, char **err)
533{
534 newsrv->flags &= ~SRV_F_FASTOPEN;
535 return 0;
536}
537
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100538/* Parse the "non-stick" server keyword */
539static int srv_parse_non_stick(char **args, int *cur_arg,
540 struct proxy *curproxy, struct server *newsrv, char **err)
541{
542 newsrv->flags |= SRV_F_NON_STICK;
543 return 0;
544}
545
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100546/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200547static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100548{
549 srv->pp_opts |= flags;
550 return 0;
551}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200552/* parse the "proto" server keyword */
553static int srv_parse_proto(char **args, int *cur_arg,
554 struct proxy *px, struct server *newsrv, char **err)
555{
556 struct ist proto;
557
558 if (!*args[*cur_arg + 1]) {
559 memprintf(err, "'%s' : missing value", args[*cur_arg]);
560 return ERR_ALERT | ERR_FATAL;
561 }
562 proto = ist2(args[*cur_arg + 1], strlen(args[*cur_arg + 1]));
563 newsrv->mux_proto = get_mux_proto(proto);
564 if (!newsrv->mux_proto) {
565 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
566 return ERR_ALERT | ERR_FATAL;
567 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200568 return 0;
569}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100570
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100571/* parse the "proxy-v2-options" */
572static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
573 struct proxy *px, struct server *newsrv, char **err)
574{
575 char *p, *n;
576 for (p = args[*cur_arg+1]; p; p = n) {
577 n = strchr(p, ',');
578 if (n)
579 *n++ = '\0';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100580 if (strcmp(p, "ssl") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100581 newsrv->pp_opts |= SRV_PP_V2_SSL;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100582 } else if (strcmp(p, "cert-cn") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100583 newsrv->pp_opts |= SRV_PP_V2_SSL;
584 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100585 } else if (strcmp(p, "cert-key") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100586 newsrv->pp_opts |= SRV_PP_V2_SSL;
587 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100588 } else if (strcmp(p, "cert-sig") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100589 newsrv->pp_opts |= SRV_PP_V2_SSL;
590 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100591 } else if (strcmp(p, "ssl-cipher") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100592 newsrv->pp_opts |= SRV_PP_V2_SSL;
593 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100594 } else if (strcmp(p, "authority") == 0) {
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100595 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100596 } else if (strcmp(p, "crc32c") == 0) {
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100597 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100598 } else if (strcmp(p, "unique-id") == 0) {
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100599 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100600 } else
601 goto fail;
602 }
603 return 0;
604 fail:
605 if (err)
606 memprintf(err, "'%s' : proxy v2 option not implemented", p);
607 return ERR_ALERT | ERR_FATAL;
608}
609
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100610/* Parse the "observe" server keyword */
611static int srv_parse_observe(char **args, int *cur_arg,
612 struct proxy *curproxy, struct server *newsrv, char **err)
613{
614 char *arg;
615
616 arg = args[*cur_arg + 1];
617 if (!*arg) {
618 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
619 return ERR_ALERT | ERR_FATAL;
620 }
621
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100622 if (strcmp(arg, "none") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100623 newsrv->observe = HANA_OBS_NONE;
624 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100625 else if (strcmp(arg, "layer4") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100626 newsrv->observe = HANA_OBS_LAYER4;
627 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100628 else if (strcmp(arg, "layer7") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100629 if (curproxy->mode != PR_MODE_HTTP) {
630 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
631 return ERR_ALERT;
632 }
633 newsrv->observe = HANA_OBS_LAYER7;
634 }
635 else {
636 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
637 "but got '%s'\n", args[*cur_arg], arg);
638 return ERR_ALERT | ERR_FATAL;
639 }
640
641 return 0;
642}
643
Frédéric Lécaille16186232017-03-14 16:42:49 +0100644/* Parse the "redir" server keyword */
645static int srv_parse_redir(char **args, int *cur_arg,
646 struct proxy *curproxy, struct server *newsrv, char **err)
647{
648 char *arg;
649
650 arg = args[*cur_arg + 1];
651 if (!*arg) {
652 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
653 return ERR_ALERT | ERR_FATAL;
654 }
655
656 free(newsrv->rdr_pfx);
657 newsrv->rdr_pfx = strdup(arg);
658 newsrv->rdr_len = strlen(arg);
659
660 return 0;
661}
662
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100663/* Parse the "send-proxy" server keyword */
664static int srv_parse_send_proxy(char **args, int *cur_arg,
665 struct proxy *curproxy, struct server *newsrv, char **err)
666{
667 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
668}
669
670/* Parse the "send-proxy-v2" server keyword */
671static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
672 struct proxy *curproxy, struct server *newsrv, char **err)
673{
674 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
675}
676
Frédéric Lécailledba97072017-03-17 15:33:50 +0100677
678/* Parse the "source" server keyword */
679static int srv_parse_source(char **args, int *cur_arg,
680 struct proxy *curproxy, struct server *newsrv, char **err)
681{
682 char *errmsg;
683 int port_low, port_high;
684 struct sockaddr_storage *sk;
Frédéric Lécailledba97072017-03-17 15:33:50 +0100685
686 errmsg = NULL;
687
688 if (!*args[*cur_arg + 1]) {
689 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
690 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
691 goto err;
692 }
693
694 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200695 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
696 &errmsg, NULL, NULL,
697 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 +0100698 if (!sk) {
699 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
700 goto err;
701 }
702
Frédéric Lécailledba97072017-03-17 15:33:50 +0100703 newsrv->conn_src.opts |= CO_SRC_BIND;
704 newsrv->conn_src.source_addr = *sk;
705
706 if (port_low != port_high) {
707 int i;
708
Frédéric Lécailledba97072017-03-17 15:33:50 +0100709 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
710 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
711 newsrv->conn_src.sport_range->ports[i] = port_low + i;
712 }
713
714 *cur_arg += 2;
715 while (*(args[*cur_arg])) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100716 if (strcmp(args[*cur_arg], "usesrc") == 0) { /* address to use outside */
Frédéric Lécailledba97072017-03-17 15:33:50 +0100717#if defined(CONFIG_HAP_TRANSPARENT)
718 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100719 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
720 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +0100721 goto err;
722 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100723 if (strcmp(args[*cur_arg + 1], "client") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +0100724 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
725 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
726 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100727 else if (strcmp(args[*cur_arg + 1], "clientip") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +0100728 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
729 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
730 }
731 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
732 char *name, *end;
733
734 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +0100735 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100736 name++;
737
738 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +0100739 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +0100740 end++;
741
742 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
743 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
744 free(newsrv->conn_src.bind_hdr_name);
745 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
746 newsrv->conn_src.bind_hdr_len = end - name;
747 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
748 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
749 newsrv->conn_src.bind_hdr_occ = -1;
750
751 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +0100752 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100753 end++;
754 if (*end == ',') {
755 end++;
756 name = end;
757 if (*end == '-')
758 end++;
Willy Tarreau90807112020-02-25 08:16:33 +0100759 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100760 end++;
761 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
762 }
763
764 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100765 ha_alert("usesrc hdr_ip(name,num) does not support negative"
766 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100767 goto err;
768 }
769 }
770 else {
771 struct sockaddr_storage *sk;
772 int port1, port2;
773
774 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200775 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL,
776 &errmsg, NULL, NULL,
777 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100778 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100779 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100780 goto err;
781 }
782
Frédéric Lécailledba97072017-03-17 15:33:50 +0100783 newsrv->conn_src.tproxy_addr = *sk;
784 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
785 }
786 global.last_checks |= LSTCHK_NETADM;
787 *cur_arg += 2;
788 continue;
789#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100790 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 +0100791 goto err;
792#endif /* defined(CONFIG_HAP_TRANSPARENT) */
793 } /* "usesrc" */
794
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100795 if (strcmp(args[*cur_arg], "interface") == 0) { /* specifically bind to this interface */
Frédéric Lécailledba97072017-03-17 15:33:50 +0100796#ifdef SO_BINDTODEVICE
797 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100798 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100799 goto err;
800 }
801 free(newsrv->conn_src.iface_name);
802 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
803 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
804 global.last_checks |= LSTCHK_NETADM;
805#else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100806 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100807 goto err;
808#endif
809 *cur_arg += 2;
810 continue;
811 }
812 /* this keyword in not an option of "source" */
813 break;
814 } /* while */
815
816 return 0;
817
818 err:
819 free(errmsg);
820 return ERR_ALERT | ERR_FATAL;
821}
822
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100823/* Parse the "stick" server keyword */
824static int srv_parse_stick(char **args, int *cur_arg,
825 struct proxy *curproxy, struct server *newsrv, char **err)
826{
827 newsrv->flags &= ~SRV_F_NON_STICK;
828 return 0;
829}
830
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100831/* Parse the "track" server keyword */
832static int srv_parse_track(char **args, int *cur_arg,
833 struct proxy *curproxy, struct server *newsrv, char **err)
834{
835 char *arg;
836
837 arg = args[*cur_arg + 1];
838 if (!*arg) {
839 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
840 return ERR_ALERT | ERR_FATAL;
841 }
842
843 free(newsrv->trackit);
844 newsrv->trackit = strdup(arg);
845
846 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800847}
848
849/* Parse the "socks4" server keyword */
850static int srv_parse_socks4(char **args, int *cur_arg,
851 struct proxy *curproxy, struct server *newsrv, char **err)
852{
853 char *errmsg;
854 int port_low, port_high;
855 struct sockaddr_storage *sk;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800856
857 errmsg = NULL;
858
859 if (!*args[*cur_arg + 1]) {
860 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
861 goto err;
862 }
863
864 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200865 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
866 &errmsg, NULL, NULL,
867 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT);
Alexander Liu2a54bb72019-05-22 19:44:48 +0800868 if (!sk) {
869 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
870 goto err;
871 }
872
Alexander Liu2a54bb72019-05-22 19:44:48 +0800873 newsrv->flags |= SRV_F_SOCKS4_PROXY;
874 newsrv->socks4_addr = *sk;
875
Alexander Liu2a54bb72019-05-22 19:44:48 +0800876 return 0;
877
878 err:
879 free(errmsg);
880 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100881}
882
Frédéric Lécailledba97072017-03-17 15:33:50 +0100883
Willy Tarreau034c88c2017-01-23 23:36:45 +0100884/* parse the "tfo" server keyword */
885static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
886{
887 newsrv->flags |= SRV_F_FASTOPEN;
888 return 0;
889}
890
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200891/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +0200892 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200893 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200894 *
895 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200896 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200897void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200898{
Willy Tarreau87b09662015-04-03 00:22:06 +0200899 struct stream *stream, *stream_bck;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200900
Willy Tarreau87b09662015-04-03 00:22:06 +0200901 list_for_each_entry_safe(stream, stream_bck, &srv->actconns, by_srv)
902 if (stream->srv_conn == srv)
903 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200904}
905
906/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +0200907 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200908 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200909 *
910 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200911 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200912void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200913{
914 struct server *srv;
915
916 for (srv = px->srv; srv != NULL; srv = srv->next)
917 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +0200918 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200919}
920
Willy Tarreaubda92272014-05-20 21:55:30 +0200921/* Appends some information to a message string related to a server going UP or
922 * DOWN. If both <forced> and <reason> are null and the server tracks another
923 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +0200924 * If <check> is non-null, an entire string describing the check result will be
925 * appended after a comma and a space (eg: to report some information from the
926 * check that changed the state). In the other case, the string will be built
927 * using the check results stored into the struct server if present.
928 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +0200929 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200930 *
931 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200932 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200933void srv_append_status(struct buffer *msg, struct server *s,
934 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200935{
Emeric Brun5a133512017-10-19 14:42:30 +0200936 short status = s->op_st_chg.status;
937 short code = s->op_st_chg.code;
938 long duration = s->op_st_chg.duration;
939 char *desc = s->op_st_chg.reason;
940
941 if (check) {
942 status = check->status;
943 code = check->code;
944 duration = check->duration;
945 desc = check->desc;
946 }
947
948 if (status != -1) {
949 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
950
951 if (status >= HCHK_STATUS_L57DATA)
952 chunk_appendf(msg, ", code: %d", code);
953
954 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +0200955 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +0200956
957 chunk_appendf(msg, ", info: \"");
958
959 chunk_initlen(&src, desc, 0, strlen(desc));
960 chunk_asciiencode(msg, &src, '"');
961
962 chunk_appendf(msg, "\"");
963 }
964
965 if (duration >= 0)
966 chunk_appendf(msg, ", check duration: %ldms", duration);
967 }
968 else if (desc && *desc) {
969 chunk_appendf(msg, ", %s", desc);
970 }
971 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +0200972 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +0200973 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200974
975 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200976 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200977 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
978 " %d sessions active, %d requeued, %d remaining in queue",
979 s->proxy->srv_act, s->proxy->srv_bck,
980 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
981 s->cur_sess, xferred, s->nbpend);
982 else
983 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
984 " %d sessions requeued, %d total in queue",
985 s->proxy->srv_act, s->proxy->srv_bck,
986 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
987 xferred, s->nbpend);
988 }
989}
990
Emeric Brun5a133512017-10-19 14:42:30 +0200991/* Marks server <s> down, regardless of its checks' statuses. The server is
992 * registered in a list to postpone the counting of the remaining servers on
993 * the proxy and transfers queued streams whenever possible to other servers at
994 * a sync point. Maintenance servers are ignored. It stores the <reason> if
995 * non-null as the reason for going down or the available data from the check
996 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200997 *
998 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +0200999 */
Emeric Brun5a133512017-10-19 14:42:30 +02001000void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001001{
1002 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001003
Emeric Brun64cc49c2017-10-03 14:46:45 +02001004 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001005 return;
1006
Emeric Brun52a91d32017-08-31 14:41:55 +02001007 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +02001008 *s->op_st_chg.reason = 0;
1009 s->op_st_chg.status = -1;
1010 if (reason) {
1011 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1012 }
1013 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001014 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001015 s->op_st_chg.code = check->code;
1016 s->op_st_chg.status = check->status;
1017 s->op_st_chg.duration = check->duration;
1018 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001019
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001020 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001021 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001022
Emeric Brun9f0b4582017-10-23 14:39:51 +02001023 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001024 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001025 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001026 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001027 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001028}
1029
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001030/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001031 * in maintenance. The server is registered in a list to postpone the counting
1032 * of the remaining servers on the proxy and tries to grab requests from the
1033 * proxy at a sync point. Maintenance servers are ignored. It stores the
1034 * <reason> if non-null as the reason for going down or the available data
1035 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001036 *
1037 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001038 */
Emeric Brun5a133512017-10-19 14:42:30 +02001039void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001040{
1041 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001042
Emeric Brun64cc49c2017-10-03 14:46:45 +02001043 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001044 return;
1045
Emeric Brun52a91d32017-08-31 14:41:55 +02001046 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001047 return;
1048
Emeric Brun52a91d32017-08-31 14:41:55 +02001049 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001050 *s->op_st_chg.reason = 0;
1051 s->op_st_chg.status = -1;
1052 if (reason) {
1053 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1054 }
1055 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001056 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001057 s->op_st_chg.code = check->code;
1058 s->op_st_chg.status = check->status;
1059 s->op_st_chg.duration = check->duration;
1060 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001061
Emeric Brun64cc49c2017-10-03 14:46:45 +02001062 if (s->slowstart <= 0)
1063 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001064
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001065 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001066 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001067
Emeric Brun9f0b4582017-10-23 14:39:51 +02001068 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001069 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001070 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001071 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001072 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001073}
1074
Willy Tarreau8eb77842014-05-21 13:54:57 +02001075/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001076 * isn't in maintenance. The server is registered in a list to postpone the
1077 * counting of the remaining servers on the proxy and tries to grab requests
1078 * from the proxy. Maintenance servers are ignored. It stores the
1079 * <reason> if non-null as the reason for going down or the available data
1080 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001081 * up. Note that it makes use of the trash to build the log strings, so <reason>
1082 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001083 *
1084 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001085 */
Emeric Brun5a133512017-10-19 14:42:30 +02001086void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001087{
1088 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001089
Emeric Brun64cc49c2017-10-03 14:46:45 +02001090 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001091 return;
1092
Emeric Brun52a91d32017-08-31 14:41:55 +02001093 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001094 return;
1095
Emeric Brun52a91d32017-08-31 14:41:55 +02001096 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001097 *s->op_st_chg.reason = 0;
1098 s->op_st_chg.status = -1;
1099 if (reason) {
1100 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1101 }
1102 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001103 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001104 s->op_st_chg.code = check->code;
1105 s->op_st_chg.status = check->status;
1106 s->op_st_chg.duration = check->duration;
1107 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001108
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001109 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001110 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001111
Emeric Brun9f0b4582017-10-23 14:39:51 +02001112 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001113 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001114 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001115 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001116 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001117}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001118
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001119/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1120 * enforce either maint mode or drain mode. It is not allowed to set more than
1121 * one flag at once. The equivalent "inherited" flag is propagated to all
1122 * tracking servers. Maintenance mode disables health checks (but not agent
1123 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001124 * is done. If <cause> is non-null, it will be displayed at the end of the log
1125 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001126 *
1127 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001128 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001129void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001130{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001131 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001132
1133 if (!mode)
1134 return;
1135
1136 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001137 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001138 return;
1139
Emeric Brun52a91d32017-08-31 14:41:55 +02001140 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001141 if (cause)
1142 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1143
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001144 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001145 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001146
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001147 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001148 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1149 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001150 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001151
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001152 /* compute the inherited flag to propagate */
1153 if (mode & SRV_ADMF_MAINT)
1154 mode = SRV_ADMF_IMAINT;
1155 else if (mode & SRV_ADMF_DRAIN)
1156 mode = SRV_ADMF_IDRAIN;
1157
Emeric Brun9f0b4582017-10-23 14:39:51 +02001158 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001159 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001160 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001161 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001162 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001163}
1164
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001165/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1166 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1167 * than one flag at once. The equivalent "inherited" flag is propagated to all
1168 * tracking servers. Leaving maintenance mode re-enables health checks. When
1169 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001170 *
1171 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001172 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001173void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001174{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001175 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001176
1177 if (!mode)
1178 return;
1179
1180 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001181 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001182 return;
1183
Emeric Brun52a91d32017-08-31 14:41:55 +02001184 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001185
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001186 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001187 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001188
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001189 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001190 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1191 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001192 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001193
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001194 if (mode & SRV_ADMF_MAINT)
1195 mode = SRV_ADMF_IMAINT;
1196 else if (mode & SRV_ADMF_DRAIN)
1197 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001198
Emeric Brun9f0b4582017-10-23 14:39:51 +02001199 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001200 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001201 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001202 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001203 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001204}
1205
Willy Tarreau757478e2016-11-03 19:22:19 +01001206/* principle: propagate maint and drain to tracking servers. This is useful
1207 * upon startup so that inherited states are correct.
1208 */
1209static void srv_propagate_admin_state(struct server *srv)
1210{
1211 struct server *srv2;
1212
1213 if (!srv->trackers)
1214 return;
1215
1216 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001217 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001218 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001219 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001220
Emeric Brun52a91d32017-08-31 14:41:55 +02001221 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001222 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001223 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001224 }
1225}
1226
1227/* Compute and propagate the admin states for all servers in proxy <px>.
1228 * Only servers *not* tracking another one are considered, because other
1229 * ones will be handled when the server they track is visited.
1230 */
1231void srv_compute_all_admin_states(struct proxy *px)
1232{
1233 struct server *srv;
1234
1235 for (srv = px->srv; srv; srv = srv->next) {
1236 if (srv->track)
1237 continue;
1238 srv_propagate_admin_state(srv);
1239 }
1240}
1241
Willy Tarreaudff55432012-10-10 17:51:05 +02001242/* Note: must not be declared <const> as its list will be overwritten.
1243 * Please take care of keeping this list alphabetically sorted, doing so helps
1244 * all code contributors.
1245 * Optional keywords are also declared with a NULL ->parse() function so that
1246 * the config parser can report an appropriate error when a known keyword was
1247 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001248 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001249 */
1250static struct srv_kw_list srv_kws = { "ALL", { }, {
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001251 { "backup", srv_parse_backup, 0, 1 }, /* Flag as backup server */
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +01001252 { "cookie", srv_parse_cookie, 1, 1 }, /* Assign a cookie to the server */
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +01001253 { "disabled", srv_parse_disabled, 0, 1 }, /* Start the server in 'disabled' state */
1254 { "enabled", srv_parse_enabled, 0, 1 }, /* Start the server in 'enabled' state */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001255 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
Willy Tarreau9c538e02019-01-23 10:21:49 +01001256 { "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 +01001257 { "namespace", srv_parse_namespace, 1, 1 }, /* Namespace the server socket belongs to (if supported) */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001258 { "no-backup", srv_parse_no_backup, 0, 1 }, /* Flag as non-backup server */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001259 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1 }, /* Disable use of PROXY V1 protocol */
1260 { "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 +02001261 { "no-tfo", srv_parse_no_tfo, 0, 1 }, /* Disable use of TCP Fast Open */
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001262 { "non-stick", srv_parse_non_stick, 0, 1 }, /* Disable stick-table persistence */
Frédéric Lécaille547356e2017-03-15 08:55:39 +01001263 { "observe", srv_parse_observe, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001264 { "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 */
Amaury Denoyelle18c68df2021-01-26 14:35:24 +01001265 { "pool-max-conn", srv_parse_pool_max_conn, 1, 1 }, /* Set the max number of orphan idle connections, -1 means unlimited */
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001266 { "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 +02001267 { "proto", srv_parse_proto, 1, 1 }, /* Set the proto to use for all outgoing connections */
Emmanuel Hocdetf643b802018-02-01 15:20:32 +01001268 { "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 +01001269 { "redir", srv_parse_redir, 1, 1 }, /* Enable redirection mode */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001270 { "send-proxy", srv_parse_send_proxy, 0, 1 }, /* Enforce use of PROXY V1 protocol */
1271 { "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 +02001272 { "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 +01001273 { "stick", srv_parse_stick, 0, 1 }, /* Enable stick-table persistence */
Olivier Houchard8d82db72019-07-04 13:34:10 +02001274 { "tfo", srv_parse_tfo, 0, 1 }, /* enable TCP Fast Open of server */
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001275 { "track", srv_parse_track, 1, 1 }, /* Set the current state of the server, tracking another one */
Alexander Liu2a54bb72019-05-22 19:44:48 +08001276 { "socks4", srv_parse_socks4, 1, 1 }, /* Set the socks4 proxy of the server*/
Willy Tarreaudff55432012-10-10 17:51:05 +02001277 { NULL, NULL, 0 },
1278}};
1279
Willy Tarreau0108d902018-11-25 19:14:37 +01001280INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001281
Willy Tarreau004e0452013-11-21 11:22:01 +01001282/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001283 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001284 * state is automatically disabled if the time is elapsed. If <must_update> is
1285 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001286 *
1287 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001288 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001289void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001290{
1291 struct proxy *px = sv->proxy;
1292 unsigned w;
1293
1294 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1295 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001296 if (sv->next_state == SRV_ST_STARTING)
1297 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001298 }
1299
1300 /* We must take care of not pushing the server to full throttle during slow starts.
1301 * It must also start immediately, at least at the minimal step when leaving maintenance.
1302 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001303 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001304 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1305 else
1306 w = px->lbprm.wdiv;
1307
Emeric Brun52a91d32017-08-31 14:41:55 +02001308 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001309
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001310 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001311 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001312 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001313}
1314
Willy Tarreaubaaee002006-06-26 02:48:02 +02001315/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001316 * Parses weight_str and configures sv accordingly.
1317 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001318 *
1319 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001320 */
1321const char *server_parse_weight_change_request(struct server *sv,
1322 const char *weight_str)
1323{
1324 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001325 long int w;
1326 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001327
1328 px = sv->proxy;
1329
1330 /* if the weight is terminated with '%', it is set relative to
1331 * the initial weight, otherwise it is absolute.
1332 */
1333 if (!*weight_str)
1334 return "Require <weight> or <weight%>.\n";
1335
Simon Hormanb796afa2013-02-12 10:45:53 +09001336 w = strtol(weight_str, &end, 10);
1337 if (end == weight_str)
1338 return "Empty weight string empty or preceded by garbage";
1339 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001340 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001341 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001342 /* Avoid integer overflow */
1343 if (w > 25600)
1344 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001345 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001346 if (w > 256)
1347 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001348 }
1349 else if (w < 0 || w > 256)
1350 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001351 else if (end[0] != '\0')
1352 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001353
1354 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1355 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1356
1357 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001358 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001359
1360 return NULL;
1361}
1362
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001363/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001364 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1365 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001366 * Returns:
1367 * - error string on error
1368 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001369 *
1370 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001371 */
1372const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001373 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001374{
1375 unsigned char ip[INET6_ADDRSTRLEN];
1376
1377 if (inet_pton(AF_INET6, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001378 update_server_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001379 return NULL;
1380 }
1381 if (inet_pton(AF_INET, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001382 update_server_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001383 return NULL;
1384 }
1385
1386 return "Could not understand IP address format.\n";
1387}
1388
Willy Tarreau46b7f532018-08-21 11:54:26 +02001389/*
1390 * Must be called with the server lock held.
1391 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001392const char *server_parse_maxconn_change_request(struct server *sv,
1393 const char *maxconn_str)
1394{
1395 long int v;
1396 char *end;
1397
1398 if (!*maxconn_str)
1399 return "Require <maxconn>.\n";
1400
1401 v = strtol(maxconn_str, &end, 10);
1402 if (end == maxconn_str)
1403 return "maxconn string empty or preceded by garbage";
1404 else if (end[0] != '\0')
1405 return "Trailing garbage in maxconn string";
1406
1407 if (sv->maxconn == sv->minconn) { // static maxconn
1408 sv->maxconn = sv->minconn = v;
1409 } else { // dynamic maxconn
1410 sv->maxconn = v;
1411 }
1412
1413 if (may_dequeue_tasks(sv, sv->proxy))
1414 process_srv_queue(sv);
1415
1416 return NULL;
1417}
1418
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001419#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001420static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1421 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001422{
1423 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001424 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001425 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001426 NULL,
1427 };
1428
1429 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001430 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001431
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001432 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001433}
1434
1435static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1436{
1437 struct sample_expr *expr;
1438
1439 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 +01001440 if (!expr) {
1441 memprintf(err, "error detected while parsing sni expression : %s", *err);
1442 return ERR_ALERT | ERR_FATAL;
1443 }
1444
1445 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1446 memprintf(err, "error detected while parsing sni expression : "
1447 " fetch method '%s' extracts information from '%s', "
1448 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001449 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001450 return ERR_ALERT | ERR_FATAL;
1451 }
1452
1453 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1454 release_sample_expr(newsrv->ssl_ctx.sni);
1455 newsrv->ssl_ctx.sni = expr;
1456
1457 return 0;
1458}
1459#endif
1460
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001461static 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 +01001462{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001463 char *msg = "error encountered while processing ";
1464 char *quote = "'";
1465 char *token = args[cur_arg];
1466
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001467 if (err && *err) {
1468 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001469 msg = *err;
1470 quote = "";
1471 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001472 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001473
1474 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
1475 ha_warning("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1476 file, linenum, args[0], args[1],
1477 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001478 else
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001479 ha_alert("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1480 file, linenum, args[0], args[1],
1481 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001482}
1483
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001484static void srv_conn_src_sport_range_cpy(struct server *srv,
1485 struct server *src)
1486{
1487 int range_sz;
1488
1489 range_sz = src->conn_src.sport_range->size;
1490 if (range_sz > 0) {
1491 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1492 if (srv->conn_src.sport_range != NULL) {
1493 int i;
1494
1495 for (i = 0; i < range_sz; i++) {
1496 srv->conn_src.sport_range->ports[i] =
1497 src->conn_src.sport_range->ports[i];
1498 }
1499 }
1500 }
1501}
1502
1503/*
1504 * Copy <src> server connection source settings to <srv> server everything needed.
1505 */
1506static void srv_conn_src_cpy(struct server *srv, struct server *src)
1507{
1508 srv->conn_src.opts = src->conn_src.opts;
1509 srv->conn_src.source_addr = src->conn_src.source_addr;
1510
1511 /* Source port range copy. */
1512 if (src->conn_src.sport_range != NULL)
1513 srv_conn_src_sport_range_cpy(srv, src);
1514
1515#ifdef CONFIG_HAP_TRANSPARENT
1516 if (src->conn_src.bind_hdr_name != NULL) {
1517 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1518 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1519 }
1520 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1521 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1522#endif
1523 if (src->conn_src.iface_name != NULL)
1524 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1525}
1526
1527/*
1528 * Copy <src> server SSL settings to <srv> server allocating
1529 * everything needed.
1530 */
1531#if defined(USE_OPENSSL)
1532static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1533{
1534 if (src->ssl_ctx.ca_file != NULL)
1535 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1536 if (src->ssl_ctx.crl_file != NULL)
1537 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001538
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
Ilya Shipitsin2aa4b3a2021-01-07 11:55:45 +05001554#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
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;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001663 srv->check.inter = src->check.inter;
1664 srv->check.fastinter = src->check.fastinter;
1665 srv->check.downinter = src->check.downinter;
1666 srv->agent.use_ssl = src->agent.use_ssl;
1667 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001668
1669 if (src->agent.tcpcheck_rules) {
1670 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
1671 if (srv->agent.tcpcheck_rules) {
1672 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
1673 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
1674 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
1675 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
1676 &src->agent.tcpcheck_rules->preset_vars);
1677 }
1678 }
1679
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001680 srv->agent.inter = src->agent.inter;
1681 srv->agent.fastinter = src->agent.fastinter;
1682 srv->agent.downinter = src->agent.downinter;
1683 srv->maxqueue = src->maxqueue;
1684 srv->minconn = src->minconn;
1685 srv->maxconn = src->maxconn;
1686 srv->slowstart = src->slowstart;
1687 srv->observe = src->observe;
1688 srv->onerror = src->onerror;
1689 srv->onmarkeddown = src->onmarkeddown;
1690 srv->onmarkedup = src->onmarkedup;
1691 if (src->trackit != NULL)
1692 srv->trackit = strdup(src->trackit);
1693 srv->consecutive_errors_limit = src->consecutive_errors_limit;
1694 srv->uweight = srv->iweight = src->iweight;
1695
1696 srv->check.send_proxy = src->check.send_proxy;
1697 /* health: up, but will fall down at first failure */
1698 srv->check.rise = srv->check.health = src->check.rise;
1699 srv->check.fall = src->check.fall;
1700
1701 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001702 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
1703 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
1704 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001705 srv->check.state |= CHK_ST_PAUSED;
1706 srv->check.health = 0;
1707 }
1708
1709 /* health: up but will fall down at first failure */
1710 srv->agent.rise = srv->agent.health = src->agent.rise;
1711 srv->agent.fall = src->agent.fall;
1712
1713 if (src->resolvers_id != NULL)
1714 srv->resolvers_id = strdup(src->resolvers_id);
1715 srv->dns_opts.family_prio = src->dns_opts.family_prio;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02001716 srv->dns_opts.accept_duplicate_ip = src->dns_opts.accept_duplicate_ip;
Daniel Corbettf8716912019-11-17 09:48:56 -05001717 srv->dns_opts.ignore_weight = src->dns_opts.ignore_weight;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001718 if (srv->dns_opts.family_prio == AF_UNSPEC)
1719 srv->dns_opts.family_prio = AF_INET6;
1720 memcpy(srv->dns_opts.pref_net,
1721 src->dns_opts.pref_net,
1722 sizeof srv->dns_opts.pref_net);
1723 srv->dns_opts.pref_net_nb = src->dns_opts.pref_net_nb;
1724
1725 srv->init_addr_methods = src->init_addr_methods;
1726 srv->init_addr = src->init_addr;
1727#if defined(USE_OPENSSL)
1728 srv_ssl_settings_cpy(srv, src);
1729#endif
1730#ifdef TCP_USER_TIMEOUT
1731 srv->tcp_ut = src->tcp_ut;
1732#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001733 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001734 srv->pool_purge_delay = src->pool_purge_delay;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001735 srv->low_idle_conns = src->low_idle_conns;
Olivier Houchard006e3102018-12-10 18:30:32 +01001736 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01001737 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001738
Olivier Houchard8da5f982017-08-04 18:35:36 +02001739 if (srv_tmpl)
1740 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001741
1742 srv->check.via_socks4 = src->check.via_socks4;
1743 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001744}
1745
William Lallemand313bfd12018-10-26 14:47:32 +02001746struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001747{
1748 struct server *srv;
1749
1750 srv = calloc(1, sizeof *srv);
1751 if (!srv)
1752 return NULL;
1753
1754 srv->obj_type = OBJ_TYPE_SERVER;
1755 srv->proxy = proxy;
1756 LIST_INIT(&srv->actconns);
Patrick Hemmer0355dab2018-05-11 12:52:31 -04001757 srv->pendconns = EB_ROOT;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001758
Emeric Brun52a91d32017-08-31 14:41:55 +02001759 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001760 srv->last_change = now.tv_sec;
1761
Christopher Faulet38290462020-04-21 11:46:40 +02001762 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001763 srv->check.status = HCHK_STATUS_INI;
1764 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01001765 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02001766 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001767
Christopher Faulet38290462020-04-21 11:46:40 +02001768 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001769 srv->agent.status = HCHK_STATUS_INI;
1770 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01001771 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001772 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
Frédéric Lécaillef46c10c2020-11-23 14:29:28 +01001773#if defined(USE_QUIC)
1774 srv->cids = EB_ROOT_UNIQUE;
1775#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001776
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01001777 srv->extra_counters = NULL;
William Lallemand3ce6eed2021-02-08 10:43:44 +01001778#ifdef USE_OPENSSL
1779 HA_RWLOCK_INIT(&srv->ssl_ctx.lock);
1780#endif
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01001781
Willy Tarreau975b1552019-06-06 16:25:55 +02001782 /* please don't put default server settings here, they are set in
1783 * init_default_instance().
1784 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001785 return srv;
1786}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001787
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001788#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1789static int server_sni_expr_init(const char *file, int linenum, char **args, int cur_arg,
1790 struct server *srv, struct proxy *proxy)
1791{
1792 int ret;
1793 char *err = NULL;
1794
1795 if (!srv->sni_expr)
1796 return 0;
1797
1798 ret = server_parse_sni_expr(srv, proxy, &err);
1799 if (!ret)
1800 return 0;
1801
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001802 display_parser_err(file, linenum, args, cur_arg, ret, &err);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001803 free(err);
1804
1805 return ret;
1806}
1807#endif
1808
1809/*
1810 * Server initializations finalization.
1811 * Initialize health check, agent check and SNI expression if enabled.
1812 * Must not be called for a default server instance.
1813 */
1814static int server_finalize_init(const char *file, int linenum, char **args, int cur_arg,
1815 struct server *srv, struct proxy *px)
1816{
Christopher Fauletb3b53522020-04-27 11:17:10 +02001817#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001818 int ret;
Christopher Fauletb3b53522020-04-27 11:17:10 +02001819#endif
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001820
Christopher Faulet8892e5d2020-03-26 19:48:20 +01001821 if (srv->do_check && srv->trackit) {
1822 ha_alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1823 file, linenum);
1824 return ERR_ALERT | ERR_FATAL;
1825 }
1826
1827 if (srv->do_agent && !srv->agent.port) {
1828 ha_alert("parsing [%s:%d] : server %s does not have agent port. Agent check has been disabled.\n",
1829 file, linenum, srv->id);
1830 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001831 }
1832
1833#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1834 if ((ret = server_sni_expr_init(file, linenum, args, cur_arg, srv, px)) != 0)
1835 return ret;
1836#endif
1837
1838 if (srv->flags & SRV_F_BACKUP)
1839 px->srv_bck++;
1840 else
1841 px->srv_act++;
1842 srv_lb_commit_status(srv);
1843
1844 return 0;
1845}
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001846
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001847/*
1848 * Parse as much as possible such a range string argument: low[-high]
1849 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
1850 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
1851 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
1852 * Returns 0 if succeeded, -1 if not.
1853 */
1854static int srv_tmpl_parse_range(struct server *srv, const char *arg, int *nb_low, int *nb_high)
1855{
1856 char *nb_high_arg;
1857
1858 *nb_high = 0;
1859 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001860 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001861
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001862 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001863 *nb_high_arg++ = '\0';
1864 *nb_high = atoi(nb_high_arg);
1865 }
1866 else {
1867 *nb_high += *nb_low;
1868 *nb_low = 1;
1869 }
1870
1871 if (*nb_low < 0 || *nb_high < *nb_low)
1872 return -1;
1873
1874 return 0;
1875}
1876
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001877static inline void srv_set_id_from_prefix(struct server *srv, const char *prefix, int nb)
1878{
1879 chunk_printf(&trash, "%s%d", prefix, nb);
1880 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001881 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001882}
1883
1884/*
1885 * Initialize as much as possible servers from <srv> server template.
1886 * Note that a server template is a special server with
1887 * a few different parameters than a server which has
1888 * been parsed mostly the same way as a server.
Joseph Herlant44466822018-11-15 08:57:51 -08001889 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001890 * 'srv' template included.
1891 */
1892static int server_template_init(struct server *srv, struct proxy *px)
1893{
1894 int i;
1895 struct server *newsrv;
1896
1897 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 +02001898 newsrv = new_server(px);
1899 if (!newsrv)
1900 goto err;
1901
Christopher Faulet75bef002020-11-02 22:04:55 +01001902 newsrv->conf.file = strdup(srv->conf.file);
1903 newsrv->conf.line = srv->conf.line;
1904
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001905 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001906 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001907#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1908 if (newsrv->sni_expr) {
1909 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
1910 if (!newsrv->ssl_ctx.sni)
1911 goto err;
1912 }
1913#endif
1914 /* Set this new server ID. */
1915 srv_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
1916
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001917 /* Linked backwards first. This will be restablished after parsing. */
1918 newsrv->next = px->srv;
1919 px->srv = newsrv;
1920 }
1921 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1922
1923 return i - srv->tmpl_info.nb_low;
1924
1925 err:
1926 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1927 if (newsrv) {
1928#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1929 release_sample_expr(newsrv->ssl_ctx.sni);
1930#endif
1931 free_check(&newsrv->agent);
1932 free_check(&newsrv->check);
1933 }
1934 free(newsrv);
1935 return i - srv->tmpl_info.nb_low;
1936}
1937
Emeric Brund3db3842020-07-21 16:54:36 +02001938int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy,
1939 struct proxy *defproxy, int parse_addr, int in_peers_section, int initial_resolve)
Willy Tarreau272adea2014-03-31 10:39:59 +02001940{
1941 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001942 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001943 char *errmsg = NULL;
1944 int err_code = 0;
1945 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +02001946 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001947
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001948 if (strcmp(args[0], "server") == 0 ||
1949 strcmp(args[0], "peer") == 0 ||
1950 strcmp(args[0], "default-server") == 0 ||
1951 strcmp(args[0], "server-template") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001952 int cur_arg;
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001953 int defsrv = (*args[0] == 'd');
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001954 int srv = !defsrv && (*args[0] == 'p' || strcmp(args[0], "server") == 0);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001955 int srv_tmpl = !defsrv && !srv;
1956 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02001957
1958 if (!defsrv && curproxy == defproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001959 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001960 err_code |= ERR_ALERT | ERR_FATAL;
1961 goto out;
1962 }
Christopher Faulete3bdc812021-01-13 13:14:13 +01001963 else if (failifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) {
1964 err_code |= ERR_ALERT | ERR_FATAL;
1965 goto out;
1966 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001967
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001968 /* There is no mandatory first arguments for default server. */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01001969 if (srv && parse_addr) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001970 if (!*args[2]) {
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +02001971 if (in_peers_section) {
1972 return 0;
1973 }
1974 else {
1975 /* 'server' line number of argument check. */
1976 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1977 file, linenum, args[0]);
1978 err_code |= ERR_ALERT | ERR_FATAL;
1979 goto out;
1980 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001981 }
1982
1983 err = invalid_char(args[1]);
1984 }
1985 else if (srv_tmpl) {
1986 if (!*args[3]) {
1987 /* 'server-template' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001988 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 +02001989 file, linenum, args[0]);
1990 err_code |= ERR_ALERT | ERR_FATAL;
1991 goto out;
1992 }
1993
1994 err = invalid_prefix_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001995 }
1996
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001997 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001998 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 +02001999 file, linenum, *err, args[0], srv ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002000 err_code |= ERR_ALERT | ERR_FATAL;
2001 goto out;
2002 }
2003
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002004 cur_arg = 2;
2005 if (srv_tmpl) {
2006 /* Parse server-template <nb | range> arg. */
2007 if (srv_tmpl_parse_range(newsrv, args[cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002008 ha_alert("parsing [%s:%d] : Wrong %s number or range arg '%s'.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002009 file, linenum, args[0], args[cur_arg]);
2010 err_code |= ERR_ALERT | ERR_FATAL;
2011 goto out;
2012 }
2013 cur_arg++;
2014 }
2015
Willy Tarreau272adea2014-03-31 10:39:59 +02002016 if (!defsrv) {
2017 struct sockaddr_storage *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002018 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002019
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002020 newsrv = new_server(curproxy);
2021 if (!newsrv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002022 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Willy Tarreau272adea2014-03-31 10:39:59 +02002023 err_code |= ERR_ALERT | ERR_ABORT;
2024 goto out;
2025 }
2026
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002027 if (srv_tmpl) {
2028 newsrv->tmpl_info.nb_low = tmpl_range_low;
2029 newsrv->tmpl_info.nb_high = tmpl_range_high;
2030 }
2031
Willy Tarreau272adea2014-03-31 10:39:59 +02002032 /* the servers are linked backwards first */
2033 newsrv->next = curproxy->srv;
2034 curproxy->srv = newsrv;
Willy Tarreau272adea2014-03-31 10:39:59 +02002035 newsrv->conf.file = strdup(file);
2036 newsrv->conf.line = linenum;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002037 /* Note: for a server template, its id is its prefix.
2038 * This is a temporary id which will be used for server allocations to come
2039 * after parsing.
2040 */
2041 if (srv)
2042 newsrv->id = strdup(args[1]);
2043 else
2044 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002045
2046 /* several ways to check the port component :
2047 * - IP => port=+0, relative (IPv4 only)
2048 * - IP: => port=+0, relative
2049 * - IP:N => port=N, absolute
2050 * - IP:+N => port=+N, relative
2051 * - IP:-N => port=-N, relative
2052 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002053 if (!parse_addr)
2054 goto skip_addr;
2055
Willy Tarreau65ec4e32020-09-16 19:17:08 +02002056 sk = str2sa_range(args[cur_arg], &port, &port1, &port2, NULL, NULL,
2057 &errmsg, NULL, &fqdn,
2058 (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 +02002059 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002060 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau272adea2014-03-31 10:39:59 +02002061 err_code |= ERR_ALERT | ERR_FATAL;
2062 goto out;
2063 }
2064
Willy Tarreau272adea2014-03-31 10:39:59 +02002065 if (!port1 || !port2) {
2066 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +02002067 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +02002068 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002069
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002070 /* save hostname and create associated name resolution */
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002071 if (fqdn) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002072 if (fqdn[0] == '_') { /* SRV record */
Olivier Houchard8da5f982017-08-04 18:35:36 +02002073 /* Check if a SRV request already exists, and if not, create it */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002074 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2075 newsrv->srvrq = new_dns_srvrq(newsrv, fqdn);
2076 if (newsrv->srvrq == NULL) {
Olivier Houchard8da5f982017-08-04 18:35:36 +02002077 err_code |= ERR_ALERT | ERR_FATAL;
2078 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002079 }
2080 }
2081 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002082 ha_alert("parsing [%s:%d] : Can't create DNS resolution for server '%s'\n",
Christopher Faulet67957bd2017-09-27 11:00:59 +02002083 file, linenum, newsrv->id);
2084 err_code |= ERR_ALERT | ERR_FATAL;
2085 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002086 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002087 }
2088
Willy Tarreau272adea2014-03-31 10:39:59 +02002089 newsrv->addr = *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002090 newsrv->svc_port = port;
Thayne McCombs92149f92020-11-20 01:28:26 -07002091 // we don't need to lock the server here, because
2092 // we are in the process of initializing
2093 srv_set_addr_desc(newsrv);
Willy Tarreau272adea2014-03-31 10:39:59 +02002094
Olivier Houchard8da5f982017-08-04 18:35:36 +02002095 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002096 ha_alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002097 file, linenum, newsrv->addr.ss_family, args[cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002098 err_code |= ERR_ALERT | ERR_FATAL;
2099 goto out;
2100 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002101
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002102 cur_arg++;
2103 skip_addr:
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002104 /* Copy default server settings to new server settings. */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002105 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002106 HA_SPIN_INIT(&newsrv->lock);
Willy Tarreau272adea2014-03-31 10:39:59 +02002107 } else {
2108 newsrv = &curproxy->defsrv;
2109 cur_arg = 1;
Thierry Fournierada34842016-02-17 21:25:09 +01002110 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002111 newsrv->dns_opts.accept_duplicate_ip = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002112 }
2113
2114 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002115 if (strcmp(args[cur_arg], "init-addr") == 0) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002116 char *p, *end;
2117 int done;
Willy Tarreau4310d362016-11-02 15:05:56 +01002118 struct sockaddr_storage sa;
Baptiste Assmann25938272016-09-21 20:26:16 +02002119
2120 newsrv->init_addr_methods = 0;
2121 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
2122
2123 for (p = args[cur_arg + 1]; *p; p = end) {
2124 /* cut on next comma */
2125 for (end = p; *end && *end != ','; end++);
2126 if (*end)
2127 *(end++) = 0;
2128
Willy Tarreau4310d362016-11-02 15:05:56 +01002129 memset(&sa, 0, sizeof(sa));
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002130 if (strcmp(p, "libc") == 0) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002131 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
2132 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002133 else if (strcmp(p, "last") == 0) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002134 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
2135 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002136 else if (strcmp(p, "none") == 0) {
Willy Tarreau37ebe122016-11-04 15:17:58 +01002137 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
2138 }
Willy Tarreau4310d362016-11-02 15:05:56 +01002139 else if (str2ip2(p, &sa, 0)) {
2140 if (is_addr(&newsrv->init_addr)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002141 ha_alert("parsing [%s:%d]: '%s' : initial address already specified, cannot add '%s'.\n",
Willy Tarreau4310d362016-11-02 15:05:56 +01002142 file, linenum, args[cur_arg], p);
2143 err_code |= ERR_ALERT | ERR_FATAL;
2144 goto out;
2145 }
2146 newsrv->init_addr = sa;
2147 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
2148 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002149 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002150 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 +02002151 file, linenum, args[cur_arg], p);
2152 err_code |= ERR_ALERT | ERR_FATAL;
2153 goto out;
2154 }
2155 if (!done) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002156 ha_alert("parsing [%s:%d]: '%s' : too many init-addr methods when trying to add '%s'\n",
Baptiste Assmann25938272016-09-21 20:26:16 +02002157 file, linenum, args[cur_arg], p);
2158 err_code |= ERR_ALERT | ERR_FATAL;
2159 goto out;
2160 }
2161 }
2162 cur_arg += 2;
2163 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002164 else if (strcmp(args[cur_arg], "resolvers") == 0) {
Frédéric Lécailledaa2fe62017-04-20 12:17:50 +02002165 free(newsrv->resolvers_id);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002166 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
2167 cur_arg += 2;
2168 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002169 else if (strcmp(args[cur_arg], "resolve-opts") == 0) {
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002170 char *p, *end;
2171
2172 for (p = args[cur_arg + 1]; *p; p = end) {
2173 /* cut on next comma */
2174 for (end = p; *end && *end != ','; end++);
2175 if (*end)
2176 *(end++) = 0;
2177
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002178 if (strcmp(p, "allow-dup-ip") == 0) {
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002179 newsrv->dns_opts.accept_duplicate_ip = 1;
2180 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002181 else if (strcmp(p, "ignore-weight") == 0) {
Daniel Corbettf8716912019-11-17 09:48:56 -05002182 newsrv->dns_opts.ignore_weight = 1;
2183 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002184 else if (strcmp(p, "prevent-dup-ip") == 0) {
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002185 newsrv->dns_opts.accept_duplicate_ip = 0;
2186 }
2187 else {
Daniel Corbettf8716912019-11-17 09:48:56 -05002188 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 +02002189 file, linenum, args[cur_arg], p);
2190 err_code |= ERR_ALERT | ERR_FATAL;
2191 goto out;
2192 }
2193 }
2194
2195 cur_arg += 2;
2196 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002197 else if (strcmp(args[cur_arg], "resolve-prefer") == 0) {
2198 if (strcmp(args[cur_arg + 1], "ipv4") == 0)
Thierry Fournierada34842016-02-17 21:25:09 +01002199 newsrv->dns_opts.family_prio = AF_INET;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002200 else if (strcmp(args[cur_arg + 1], "ipv6") == 0)
Thierry Fournierada34842016-02-17 21:25:09 +01002201 newsrv->dns_opts.family_prio = AF_INET6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002202 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002203 ha_alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002204 file, linenum, args[cur_arg]);
2205 err_code |= ERR_ALERT | ERR_FATAL;
2206 goto out;
2207 }
2208 cur_arg += 2;
2209 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002210 else if (strcmp(args[cur_arg], "resolve-net") == 0) {
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002211 char *p, *e;
2212 unsigned char mask;
2213 struct dns_options *opt;
2214
2215 if (!args[cur_arg + 1] || args[cur_arg + 1][0] == '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002216 ha_alert("parsing [%s:%d]: '%s' expects a list of networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002217 file, linenum, args[cur_arg]);
2218 err_code |= ERR_ALERT | ERR_FATAL;
2219 goto out;
2220 }
2221
2222 opt = &newsrv->dns_opts;
2223
2224 /* Split arguments by comma, and convert it from ipv4 or ipv6
2225 * string network in in_addr or in6_addr.
2226 */
2227 p = args[cur_arg + 1];
2228 e = p;
2229 while (*p != '\0') {
Joseph Herlant44466822018-11-15 08:57:51 -08002230 /* If no room available, return error. */
David Carlierd10025c2016-04-08 10:26:44 +01002231 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002232 ha_alert("parsing [%s:%d]: '%s' exceed %d networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002233 file, linenum, args[cur_arg], SRV_MAX_PREF_NET);
2234 err_code |= ERR_ALERT | ERR_FATAL;
2235 goto out;
2236 }
2237 /* look for end or comma. */
2238 while (*e != ',' && *e != '\0')
2239 e++;
2240 if (*e == ',') {
2241 *e = '\0';
2242 e++;
2243 }
2244 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
2245 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
2246 /* Try to convert input string from ipv4 or ipv6 network. */
2247 opt->pref_net[opt->pref_net_nb].family = AF_INET;
2248 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
2249 &mask)) {
2250 /* Try to convert input string from ipv6 network. */
2251 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
2252 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
2253 } else {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05002254 /* All network conversions fail, return error. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002255 ha_alert("parsing [%s:%d]: '%s': invalid network '%s'.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002256 file, linenum, args[cur_arg], p);
2257 err_code |= ERR_ALERT | ERR_FATAL;
2258 goto out;
2259 }
2260 opt->pref_net_nb++;
2261 p = e;
2262 }
2263
2264 cur_arg += 2;
2265 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002266 else if (strcmp(args[cur_arg], "weight") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002267 int w;
2268 w = atol(args[cur_arg + 1]);
2269 if (w < 0 || w > SRV_UWGHT_MAX) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002270 ha_alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002271 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
2272 err_code |= ERR_ALERT | ERR_FATAL;
2273 goto out;
2274 }
2275 newsrv->uweight = newsrv->iweight = w;
2276 cur_arg += 2;
2277 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002278 else if (strcmp(args[cur_arg], "log-proto") == 0) {
2279 if (strcmp(args[cur_arg + 1], "legacy") == 0)
Emeric Brun97556472020-05-30 01:42:45 +02002280 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002281 else if (strcmp(args[cur_arg + 1], "octet-count") == 0)
Emeric Brun97556472020-05-30 01:42:45 +02002282 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
2283 else {
2284 ha_alert("parsing [%s:%d]: '%s' expects one of 'legacy' or "
2285 "'octet-count' but got '%s'\n",
2286 file, linenum, args[cur_arg], args[cur_arg + 1]);
2287 err_code |= ERR_ALERT | ERR_FATAL;
2288 goto out;
2289 }
2290 cur_arg += 2;
2291 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002292 else if (strcmp(args[cur_arg], "minconn") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002293 newsrv->minconn = atol(args[cur_arg + 1]);
2294 cur_arg += 2;
2295 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002296 else if (strcmp(args[cur_arg], "maxconn") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002297 newsrv->maxconn = atol(args[cur_arg + 1]);
2298 cur_arg += 2;
2299 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002300 else if (strcmp(args[cur_arg], "maxqueue") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002301 newsrv->maxqueue = atol(args[cur_arg + 1]);
2302 cur_arg += 2;
2303 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002304 else if (strcmp(args[cur_arg], "slowstart") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002305 /* slowstart is stored in seconds */
2306 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02002307
2308 if (err == PARSE_TIME_OVER) {
2309 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).\n",
2310 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2311 err_code |= ERR_ALERT | ERR_FATAL;
2312 goto out;
2313 }
2314 else if (err == PARSE_TIME_UNDER) {
2315 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.\n",
2316 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2317 err_code |= ERR_ALERT | ERR_FATAL;
2318 goto out;
2319 }
2320 else if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002321 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002322 file, linenum, *err, newsrv->id);
2323 err_code |= ERR_ALERT | ERR_FATAL;
2324 goto out;
2325 }
2326 newsrv->slowstart = (val + 999) / 1000;
2327 cur_arg += 2;
2328 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002329 else if (strcmp(args[cur_arg], "on-error") == 0) {
2330 if (strcmp(args[cur_arg + 1], "fastinter") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002331 newsrv->onerror = HANA_ONERR_FASTINTER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002332 else if (strcmp(args[cur_arg + 1], "fail-check") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002333 newsrv->onerror = HANA_ONERR_FAILCHK;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002334 else if (strcmp(args[cur_arg + 1], "sudden-death") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002335 newsrv->onerror = HANA_ONERR_SUDDTH;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002336 else if (strcmp(args[cur_arg + 1], "mark-down") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002337 newsrv->onerror = HANA_ONERR_MARKDWN;
2338 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002339 ha_alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
Willy Tarreau272adea2014-03-31 10:39:59 +02002340 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
2341 file, linenum, args[cur_arg], args[cur_arg + 1]);
2342 err_code |= ERR_ALERT | ERR_FATAL;
2343 goto out;
2344 }
2345
2346 cur_arg += 2;
2347 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002348 else if (strcmp(args[cur_arg], "on-marked-down") == 0) {
2349 if (strcmp(args[cur_arg + 1], "shutdown-sessions") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002350 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
2351 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002352 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002353 file, linenum, args[cur_arg], args[cur_arg + 1]);
2354 err_code |= ERR_ALERT | ERR_FATAL;
2355 goto out;
2356 }
2357
2358 cur_arg += 2;
2359 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002360 else if (strcmp(args[cur_arg], "on-marked-up") == 0) {
2361 if (strcmp(args[cur_arg + 1], "shutdown-backup-sessions") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002362 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
2363 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002364 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002365 file, linenum, args[cur_arg], args[cur_arg + 1]);
2366 err_code |= ERR_ALERT | ERR_FATAL;
2367 goto out;
2368 }
2369
2370 cur_arg += 2;
2371 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002372 else if (strcmp(args[cur_arg], "error-limit") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002373 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002374 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002375 file, linenum, args[cur_arg]);
2376 err_code |= ERR_ALERT | ERR_FATAL;
2377 goto out;
2378 }
2379
2380 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
2381
2382 if (newsrv->consecutive_errors_limit <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002383 ha_alert("parsing [%s:%d]: %s has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002384 file, linenum, args[cur_arg]);
2385 err_code |= ERR_ALERT | ERR_FATAL;
2386 goto out;
2387 }
2388 cur_arg += 2;
2389 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002390 else if (strcmp(args[cur_arg], "usesrc") == 0) { /* address to use outside: needs "source" first */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002391 ha_alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002392 file, linenum, "usesrc", "source");
2393 err_code |= ERR_ALERT | ERR_FATAL;
2394 goto out;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002395 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002396 else {
2397 static int srv_dumped;
2398 struct srv_kw *kw;
2399 char *err;
2400
2401 kw = srv_find_kw(args[cur_arg]);
2402 if (kw) {
2403 char *err = NULL;
2404 int code;
2405
2406 if (!kw->parse) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002407 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 +02002408 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002409 if (kw->skip != -1)
2410 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002411 err_code |= ERR_ALERT | ERR_FATAL;
2412 goto out;
2413 }
2414
2415 if (defsrv && !kw->default_ok) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002416 ha_alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002417 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002418 if (kw->skip != -1)
2419 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002420 err_code |= ERR_ALERT;
2421 continue;
2422 }
2423
2424 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
2425 err_code |= code;
2426
2427 if (code) {
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002428 display_parser_err(file, linenum, args, cur_arg, code, &err);
Willy Tarreau272adea2014-03-31 10:39:59 +02002429 if (code & ERR_FATAL) {
2430 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002431 if (kw->skip != -1)
2432 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002433 goto out;
2434 }
2435 }
2436 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002437 if (kw->skip != -1)
2438 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002439 continue;
2440 }
2441
2442 err = NULL;
2443 if (!srv_dumped) {
2444 srv_dump_kws(&err);
2445 indent_msg(&err, 4);
2446 srv_dumped = 1;
2447 }
2448
Christopher Faulet767a84b2017-11-24 16:50:31 +01002449 ha_alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002450 file, linenum, args[0], args[1], args[cur_arg],
2451 err ? " Registered keywords :" : "", err ? err : "");
2452 free(err);
2453
2454 err_code |= ERR_ALERT | ERR_FATAL;
2455 goto out;
2456 }
2457 }
2458
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002459 if (!defsrv)
2460 err_code |= server_finalize_init(file, linenum, args, cur_arg, newsrv, curproxy);
2461 if (err_code & ERR_FATAL)
2462 goto out;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002463 if (srv_tmpl)
2464 server_template_init(newsrv, curproxy);
Willy Tarreau272adea2014-03-31 10:39:59 +02002465 }
Willy Tarreau07101d52015-09-08 16:16:35 +02002466 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002467 return 0;
2468
2469 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02002470 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002471 free(errmsg);
2472 return err_code;
2473}
2474
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002475/* Returns a pointer to the first server matching either id <id>.
2476 * NULL is returned if no match is found.
2477 * the lookup is performed in the backend <bk>
2478 */
2479struct server *server_find_by_id(struct proxy *bk, int id)
2480{
2481 struct eb32_node *eb32;
2482 struct server *curserver;
2483
2484 if (!bk || (id ==0))
2485 return NULL;
2486
2487 /* <bk> has no backend capabilities, so it can't have a server */
2488 if (!(bk->cap & PR_CAP_BE))
2489 return NULL;
2490
2491 curserver = NULL;
2492
2493 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2494 if (eb32)
2495 curserver = container_of(eb32, struct server, conf.id);
2496
2497 return curserver;
2498}
2499
2500/* Returns a pointer to the first server matching either name <name>, or id
2501 * if <name> starts with a '#'. NULL is returned if no match is found.
2502 * the lookup is performed in the backend <bk>
2503 */
2504struct server *server_find_by_name(struct proxy *bk, const char *name)
2505{
2506 struct server *curserver;
2507
2508 if (!bk || !name)
2509 return NULL;
2510
2511 /* <bk> has no backend capabilities, so it can't have a server */
2512 if (!(bk->cap & PR_CAP_BE))
2513 return NULL;
2514
2515 curserver = NULL;
2516 if (*name == '#') {
2517 curserver = server_find_by_id(bk, atoi(name + 1));
2518 if (curserver)
2519 return curserver;
2520 }
2521 else {
2522 curserver = bk->srv;
2523
2524 while (curserver && (strcmp(curserver->id, name) != 0))
2525 curserver = curserver->next;
2526
2527 if (curserver)
2528 return curserver;
2529 }
2530
2531 return NULL;
2532}
2533
2534struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2535{
2536 struct server *byname;
2537 struct server *byid;
2538
2539 if (!name && !id)
2540 return NULL;
2541
2542 if (diff)
2543 *diff = 0;
2544
2545 byname = byid = NULL;
2546
2547 if (name) {
2548 byname = server_find_by_name(bk, name);
2549 if (byname && (!id || byname->puid == id))
2550 return byname;
2551 }
2552
2553 /* remaining possibilities :
2554 * - name not set
2555 * - name set but not found
2556 * - name found but ID doesn't match
2557 */
2558 if (id) {
2559 byid = server_find_by_id(bk, id);
2560 if (byid) {
2561 if (byname) {
2562 /* use id only if forced by configuration */
2563 if (byid->flags & SRV_F_FORCED_ID) {
2564 if (diff)
2565 *diff |= 2;
2566 return byid;
2567 }
2568 else {
2569 if (diff)
2570 *diff |= 1;
2571 return byname;
2572 }
2573 }
2574
2575 /* remaining possibilities:
2576 * - name not set
2577 * - name set but not found
2578 */
2579 if (name && diff)
2580 *diff |= 2;
2581 return byid;
2582 }
2583
2584 /* id bot found */
2585 if (byname) {
2586 if (diff)
2587 *diff |= 1;
2588 return byname;
2589 }
2590 }
2591
2592 return NULL;
2593}
2594
Willy Tarreau46b7f532018-08-21 11:54:26 +02002595/* Update a server state using the parameters available in the params list.
2596 *
2597 * Grabs the server lock during operation.
2598 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002599static void srv_update_state(struct server *srv, int version, char **params)
2600{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002601 char *p;
Willy Tarreau83061a82018-07-13 11:56:34 +02002602 struct buffer *msg;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002603
2604 /* fields since version 1
2605 * and common to all other upcoming versions
2606 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002607 enum srv_state srv_op_state;
2608 enum srv_admin srv_admin_state;
2609 unsigned srv_uweight, srv_iweight;
2610 unsigned long srv_last_time_change;
2611 short srv_check_status;
2612 enum chk_result srv_check_result;
2613 int srv_check_health;
2614 int srv_check_state, srv_agent_state;
2615 int bk_f_forced_id;
2616 int srv_f_forced_id;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002617 int fqdn_set_by_cli;
2618 const char *fqdn;
William Dauchyfe03e7d2021-02-03 22:30:06 +01002619 const char *port_svc_st;
2620 const char *port_check_st;
2621 unsigned int port_svc;
2622 unsigned int port_check;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002623 char *srvrecord;
William Dauchyf6370442020-11-14 19:25:33 +01002624#ifdef USE_OPENSSL
2625 int use_ssl;
2626#endif
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002627
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002628 fqdn = NULL;
William Dauchyfe03e7d2021-02-03 22:30:06 +01002629 port_svc = port_check = 0;
Willy Tarreau31138fa2015-09-29 18:38:47 +02002630 msg = get_trash_chunk();
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002631 switch (version) {
2632 case 1:
2633 /*
2634 * now we can proceed with server's state update:
2635 * srv_addr: params[0]
2636 * srv_op_state: params[1]
2637 * srv_admin_state: params[2]
2638 * srv_uweight: params[3]
2639 * srv_iweight: params[4]
2640 * srv_last_time_change: params[5]
2641 * srv_check_status: params[6]
2642 * srv_check_result: params[7]
2643 * srv_check_health: params[8]
2644 * srv_check_state: params[9]
2645 * srv_agent_state: params[10]
2646 * bk_f_forced_id: params[11]
2647 * srv_f_forced_id: params[12]
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002648 * srv_fqdn: params[13]
Frédéric Lécaille31694712017-08-01 08:47:19 +02002649 * srv_port: params[14]
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002650 * srvrecord: params[15]
William Dauchyf6370442020-11-14 19:25:33 +01002651 * srv_use_ssl: params[16]
William Dauchyfe03e7d2021-02-03 22:30:06 +01002652 * srv_check_port: params[17]
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002653 */
2654
2655 /* validating srv_op_state */
2656 p = NULL;
2657 errno = 0;
2658 srv_op_state = strtol(params[1], &p, 10);
2659 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
2660 (srv_op_state != SRV_ST_STOPPED &&
2661 srv_op_state != SRV_ST_STARTING &&
2662 srv_op_state != SRV_ST_RUNNING &&
2663 srv_op_state != SRV_ST_STOPPING)) {
2664 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
2665 }
2666
2667 /* validating srv_admin_state */
2668 p = NULL;
2669 errno = 0;
2670 srv_admin_state = strtol(params[2], &p, 10);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002671 fqdn_set_by_cli = !!(srv_admin_state & SRV_ADMF_HMAINT);
Willy Tarreau757478e2016-11-03 19:22:19 +01002672
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002673 /* inherited statuses will be recomputed later.
2674 * Also disable SRV_ADMF_HMAINT flag (set from stats socket fqdn).
2675 */
2676 srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_HMAINT;
Willy Tarreau757478e2016-11-03 19:22:19 +01002677
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002678 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
2679 (srv_admin_state != 0 &&
2680 srv_admin_state != SRV_ADMF_FMAINT &&
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002681 srv_admin_state != SRV_ADMF_CMAINT &&
2682 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
Willy Tarreaue1bde142016-11-03 18:33:25 +01002683 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FDRAIN) &&
Willy Tarreau757478e2016-11-03 19:22:19 +01002684 srv_admin_state != SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002685 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
2686 }
2687
2688 /* validating srv_uweight */
2689 p = NULL;
2690 errno = 0;
2691 srv_uweight = strtol(params[3], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002692 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002693 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
2694
2695 /* validating srv_iweight */
2696 p = NULL;
2697 errno = 0;
2698 srv_iweight = strtol(params[4], &p, 10);
Willy Tarreaue1aebb22015-09-29 18:32:57 +02002699 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002700 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
2701
2702 /* validating srv_last_time_change */
2703 p = NULL;
2704 errno = 0;
2705 srv_last_time_change = strtol(params[5], &p, 10);
2706 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2707 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
2708
2709 /* validating srv_check_status */
2710 p = NULL;
2711 errno = 0;
2712 srv_check_status = strtol(params[6], &p, 10);
2713 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2714 (srv_check_status >= HCHK_STATUS_SIZE))
2715 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
2716
2717 /* validating srv_check_result */
2718 p = NULL;
2719 errno = 0;
2720 srv_check_result = strtol(params[7], &p, 10);
2721 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2722 (srv_check_result != CHK_RES_UNKNOWN &&
2723 srv_check_result != CHK_RES_NEUTRAL &&
2724 srv_check_result != CHK_RES_FAILED &&
2725 srv_check_result != CHK_RES_PASSED &&
2726 srv_check_result != CHK_RES_CONDPASS)) {
2727 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2728 }
2729
2730 /* validating srv_check_health */
2731 p = NULL;
2732 errno = 0;
2733 srv_check_health = strtol(params[8], &p, 10);
2734 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2735 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
2736
2737 /* validating srv_check_state */
2738 p = NULL;
2739 errno = 0;
2740 srv_check_state = strtol(params[9], &p, 10);
2741 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2742 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2743 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
2744
2745 /* validating srv_agent_state */
2746 p = NULL;
2747 errno = 0;
2748 srv_agent_state = strtol(params[10], &p, 10);
2749 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2750 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2751 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
2752
2753 /* validating bk_f_forced_id */
2754 p = NULL;
2755 errno = 0;
2756 bk_f_forced_id = strtol(params[11], &p, 10);
2757 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
2758 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
2759
2760 /* validating srv_f_forced_id */
2761 p = NULL;
2762 errno = 0;
2763 srv_f_forced_id = strtol(params[12], &p, 10);
2764 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
2765 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
2766
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002767 /* validating srv_fqdn */
2768 fqdn = params[13];
2769 if (fqdn && *fqdn == '-')
2770 fqdn = NULL;
2771 if (fqdn && (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn))) {
2772 chunk_appendf(msg, ", invalid srv_fqdn value '%s'", params[13]);
2773 fqdn = NULL;
2774 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002775
William Dauchyfe03e7d2021-02-03 22:30:06 +01002776 port_svc_st = params[14];
2777 if (port_svc_st) {
2778 port_svc = strl2uic(port_svc_st, strlen(port_svc_st));
2779 if (port_svc > USHRT_MAX) {
2780 chunk_appendf(msg, ", invalid srv_port value '%s'", port_svc_st);
2781 port_svc_st = NULL;
Frédéric Lécaille31694712017-08-01 08:47:19 +02002782 }
2783 }
William Dauchyfe03e7d2021-02-03 22:30:06 +01002784 port_check_st = params[17];
2785 if (port_check_st) {
2786 port_check = strl2uic(port_check_st, strlen(port_check_st));
2787 if (port_check > USHRT_MAX) {
2788 chunk_appendf(msg, ", invalid srv_port value '%s'", port_check_st);
2789 port_check_st = NULL;
2790 }
2791 }
Frédéric Lécaille31694712017-08-01 08:47:19 +02002792
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002793 /* SRV record
2794 * NOTE: in HAProxy, SRV records must start with an underscore '_'
2795 */
2796 srvrecord = params[15];
2797 if (srvrecord && *srvrecord != '_')
2798 srvrecord = NULL;
2799
William Dauchyf6370442020-11-14 19:25:33 +01002800#ifdef USE_OPENSSL
2801 use_ssl = strtol(params[16], &p, 10);
2802#endif
2803
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002804 /* don't apply anything if one error has been detected */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002805 if (msg->data)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002806 goto out;
2807
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002808 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002809 /* recover operational state and apply it to this server
2810 * and all servers tracking this one */
Jérôme Magninf57afa42019-01-20 11:27:40 +01002811 srv->check.health = srv_check_health;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002812 switch (srv_op_state) {
2813 case SRV_ST_STOPPED:
2814 srv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02002815 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002816 break;
2817 case SRV_ST_STARTING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002818 /* If rise == 1 there is no STARTING state, let's switch to
2819 * RUNNING
2820 */
2821 if (srv->check.rise == 1) {
2822 srv->check.health = srv->check.rise + srv->check.fall - 1;
2823 srv_set_running(srv, "", NULL);
2824 break;
2825 }
2826 if (srv->check.health < 1 || srv->check.health >= srv->check.rise)
2827 srv->check.health = srv->check.rise - 1;
Emeric Brun52a91d32017-08-31 14:41:55 +02002828 srv->next_state = srv_op_state;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002829 break;
2830 case SRV_ST_STOPPING:
Jérôme Magninf57afa42019-01-20 11:27:40 +01002831 /* If fall == 1 there is no STOPPING state, let's switch to
2832 * STOPPED
2833 */
2834 if (srv->check.fall == 1) {
2835 srv->check.health = 0;
2836 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
2837 break;
2838 }
2839 if (srv->check.health < srv->check.rise ||
2840 srv->check.health > srv->check.rise + srv->check.fall - 2)
2841 srv->check.health = srv->check.rise;
Emeric Brun5a133512017-10-19 14:42:30 +02002842 srv_set_stopping(srv, "changed from server-state after a reload", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002843 break;
2844 case SRV_ST_RUNNING:
2845 srv->check.health = srv->check.rise + srv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02002846 srv_set_running(srv, "", NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002847 break;
2848 }
2849
2850 /* When applying server state, the following rules apply:
2851 * - in case of a configuration change, we apply the setting from the new
2852 * configuration, regardless of old running state
2853 * - if no configuration change, we apply old running state only if old running
2854 * state is different from new configuration state
2855 */
2856 /* configuration has changed */
Emeric Brun52a91d32017-08-31 14:41:55 +02002857 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->next_admin & SRV_ADMF_CMAINT)) {
2858 if (srv->next_admin & SRV_ADMF_CMAINT)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002859 srv_adm_set_maint(srv);
2860 else
2861 srv_adm_set_ready(srv);
2862 }
2863 /* configuration is the same, let's compate old running state and new conf state */
2864 else {
Emeric Brun52a91d32017-08-31 14:41:55 +02002865 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002866 srv_adm_set_maint(srv);
Emeric Brun52a91d32017-08-31 14:41:55 +02002867 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->next_admin & SRV_ADMF_CMAINT))
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002868 srv_adm_set_ready(srv);
2869 }
2870 /* apply drain mode if server is currently enabled */
Emeric Brun52a91d32017-08-31 14:41:55 +02002871 if (!(srv->next_admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002872 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
Willy Tarreau22cace22016-11-03 18:19:49 +01002873 * (srv->iweight is the weight set up in configuration).
2874 * There are two possible reasons for FDRAIN to have been present :
2875 * - previous config weight was zero
2876 * - "set server b/s drain" was sent to the CLI
2877 *
2878 * In the first case, we simply want to drop this drain state
2879 * if the new weight is not zero anymore, meaning the administrator
2880 * has intentionally turned the weight back to a positive value to
2881 * enable the server again after an operation. In the second case,
2882 * the drain state was forced on the CLI regardless of the config's
2883 * weight so we don't want a change to the config weight to lose this
2884 * status. What this means is :
2885 * - if previous weight was 0 and new one is >0, drop the DRAIN state.
2886 * - if the previous weight was >0, keep it.
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002887 */
Willy Tarreau22cace22016-11-03 18:19:49 +01002888 if (srv_iweight > 0 || srv->iweight == 0)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002889 srv_adm_set_drain(srv);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002890 }
2891
2892 srv->last_change = date.tv_sec - srv_last_time_change;
2893 srv->check.status = srv_check_status;
2894 srv->check.result = srv_check_result;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002895
2896 /* Only case we want to apply is removing ENABLED flag which could have been
2897 * done by the "disable health" command over the stats socket
2898 */
2899 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2900 (srv_check_state & CHK_ST_CONFIGURED) &&
2901 !(srv_check_state & CHK_ST_ENABLED))
2902 srv->check.state &= ~CHK_ST_ENABLED;
2903
2904 /* Only case we want to apply is removing ENABLED flag which could have been
2905 * done by the "disable agent" command over the stats socket
2906 */
2907 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
2908 (srv_agent_state & CHK_ST_CONFIGURED) &&
2909 !(srv_agent_state & CHK_ST_ENABLED))
2910 srv->agent.state &= ~CHK_ST_ENABLED;
2911
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002912 /* We want to apply the previous 'running' weight (srv_uweight) only if there
2913 * was no change in the configuration: both previous and new iweight are equals
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002914 *
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002915 * It means that a configuration file change has precedence over a unix socket change
2916 * for server's weight
2917 *
2918 * by default, HAProxy applies the following weight when parsing the configuration
2919 * srv->uweight = srv->iweight
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002920 */
Baptiste Assmann6076d1c2015-09-17 22:53:59 +02002921 if (srv_iweight == srv->iweight) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002922 srv->uweight = srv_uweight;
2923 }
Willy Tarreau3ff577e2018-08-02 11:48:52 +02002924 server_recalc_eweight(srv, 1);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002925
Willy Tarreaue5a60682016-11-09 14:54:53 +01002926 /* load server IP address */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002927 if (strcmp(params[0], "-") != 0)
Daniel Corbett9215ffa2018-05-19 19:43:24 -04002928 srv->lastaddr = strdup(params[0]);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002929
2930 if (fqdn && srv->hostname) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002931 if (strcmp(srv->hostname, fqdn) == 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002932 /* Here we reset the 'set from stats socket FQDN' flag
2933 * to support such transitions:
2934 * Let's say initial FQDN value is foo1 (in configuration file).
2935 * - FQDN changed from stats socket, from foo1 to foo2 value,
2936 * - FQDN changed again from file configuration (with the same previous value
2937 set from stats socket, from foo1 to foo2 value),
2938 * - reload for any other reason than a FQDN modification,
2939 * the configuration file FQDN matches the fqdn server state file value.
2940 * So we must reset the 'set from stats socket FQDN' flag to be consistent with
Joseph Herlant44466822018-11-15 08:57:51 -08002941 * any further FQDN modification.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002942 */
Emeric Brun52a91d32017-08-31 14:41:55 +02002943 srv->next_admin &= ~SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002944 }
2945 else {
2946 /* If the FDQN has been changed from stats socket,
2947 * apply fqdn state file value (which is the value set
2948 * from stats socket).
Baptiste Assmann13a92322019-06-07 09:40:55 +02002949 * Also ensure the runtime resolver will process this resolution.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002950 */
2951 if (fqdn_set_by_cli) {
Olivier Houchardd16bfe62017-10-31 15:21:19 +01002952 srv_set_fqdn(srv, fqdn, 0);
Baptiste Assmann13a92322019-06-07 09:40:55 +02002953 srv->flags &= ~SRV_F_NO_RESOLUTION;
Emeric Brun52a91d32017-08-31 14:41:55 +02002954 srv->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002955 }
2956 }
2957 }
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002958 /* If all the conditions below are validated, this means
2959 * we're evaluating a server managed by SRV resolution
2960 */
2961 else if (fqdn && !srv->hostname && srvrecord) {
2962 int res;
2963
2964 /* we can't apply previous state if SRV record has changed */
2965 if (srv->srvrq && strcmp(srv->srvrq->name, srvrecord) != 0) {
2966 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);
2967 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2968 goto out;
2969 }
2970
2971 /* create or find a SRV resolution for this srv record */
2972 if (srv->srvrq == NULL && (srv->srvrq = find_srvrq_by_name(srvrecord, srv->proxy)) == NULL)
2973 srv->srvrq = new_dns_srvrq(srv, srvrecord);
2974 if (srv->srvrq == NULL) {
2975 chunk_appendf(msg, ", can't create or find SRV resolution '%s' for server '%s'", srvrecord, srv->id);
2976 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2977 goto out;
2978 }
2979
2980 /* prepare DNS resolution for this server */
2981 res = srv_prepare_for_resolution(srv, fqdn);
2982 if (res == -1) {
2983 chunk_appendf(msg, ", can't allocate memory for DNS resolution for server '%s'", srv->id);
2984 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
2985 goto out;
2986 }
2987
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002988 /* Unset SRV_F_MAPPORTS for SRV records.
2989 * SRV_F_MAPPORTS is unfortunately set by parse_server()
2990 * because no ports are provided in the configuration file.
2991 * This is because HAProxy will use the port found into the SRV record.
2992 */
2993 srv->flags &= ~SRV_F_MAPPORTS;
2994 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002995
William Dauchyfe03e7d2021-02-03 22:30:06 +01002996 if (port_svc_st)
2997 srv->svc_port = port_svc;
2998
2999 if (!srv->check.port)
3000 srv->check.port = port_check;
William Dauchyf6370442020-11-14 19:25:33 +01003001
3002#ifdef USE_OPENSSL
Ilya Shipitsinf38a0182020-12-21 01:16:17 +05003003 /* configure ssl if connection has been initiated at startup */
William Dauchyf6370442020-11-14 19:25:33 +01003004 if (srv->ssl_ctx.ctx != NULL)
3005 ssl_sock_set_srv(srv, use_ssl);
3006#endif
3007
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003008 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Frédéric Lécaille31694712017-08-01 08:47:19 +02003009
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003010 break;
3011 default:
3012 chunk_appendf(msg, ", version '%d' not supported", version);
3013 }
3014
3015 out:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003016 if (msg->data) {
Baptiste Assmann0821bb92016-01-21 00:20:50 +01003017 chunk_appendf(msg, "\n");
Christopher Faulet767a84b2017-11-24 16:50:31 +01003018 ha_warning("server-state application failed for server '%s/%s'%s",
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003019 srv->proxy->id, srv->id, msg->area);
Baptiste Assmann0821bb92016-01-21 00:20:50 +01003020 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003021}
3022
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003023
3024/*
3025 * read next line from file <f> and return the server state version if one found.
3026 * If no version is found, then 0 is returned
3027 * Note that this should be the first read on <f>
3028 */
3029static int srv_state_get_version(FILE *f) {
3030 char buf[2];
3031 int ret;
3032
3033 /* first character of first line of the file must contain the version of the export */
3034 if (fgets(buf, 2, f) == NULL) {
3035 return 0;
3036 }
3037
3038 ret = atoi(buf);
3039 if ((ret < SRV_STATE_FILE_VERSION_MIN) ||
3040 (ret > SRV_STATE_FILE_VERSION_MAX))
3041 return 0;
3042
3043 return ret;
3044}
3045
3046
3047/*
3048 * parses server state line stored in <buf> and supposedly in version <version>.
3049 * Set <params> and <srv_params> accordingly.
3050 * In case of error, params[0] is set to NULL.
3051 */
3052static void srv_state_parse_line(char *buf, const int version, char **params, char **srv_params)
3053{
3054 int buflen, arg, srv_arg;
3055 char *cur, *end;
3056
3057 buflen = strlen(buf);
3058 cur = buf;
3059 end = cur + buflen;
3060
3061 /* we need at least one character */
3062 if (buflen == 0) {
3063 params[0] = NULL;
3064 return;
3065 }
3066
3067 /* ignore blank characters at the beginning of the line */
Willy Tarreau90807112020-02-25 08:16:33 +01003068 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003069 ++cur;
3070
3071 /* Ignore empty or commented lines */
3072 if (cur == end || *cur == '#') {
3073 params[0] = NULL;
3074 return;
3075 }
3076
3077 /* truncated lines */
3078 if (buf[buflen - 1] != '\n') {
3079 //ha_warning("server-state file '%s': truncated line\n", filepath);
3080 params[0] = NULL;
3081 return;
3082 }
3083
3084 /* Removes trailing '\n' */
3085 buf[buflen - 1] = '\0';
3086
3087 /* we're now ready to move the line into *srv_params[] */
3088 params[0] = cur;
3089 arg = 1;
3090 srv_arg = 0;
3091 while (*cur && arg < SRV_STATE_FILE_MAX_FIELDS) {
Willy Tarreau90807112020-02-25 08:16:33 +01003092 if (isspace((unsigned char)*cur)) {
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003093 *cur = '\0';
3094 ++cur;
Willy Tarreau90807112020-02-25 08:16:33 +01003095 while (isspace((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003096 ++cur;
3097 switch (version) {
3098 case 1:
3099 /*
3100 * srv_addr: params[4] => srv_params[0]
3101 * srv_op_state: params[5] => srv_params[1]
3102 * srv_admin_state: params[6] => srv_params[2]
3103 * srv_uweight: params[7] => srv_params[3]
3104 * srv_iweight: params[8] => srv_params[4]
3105 * srv_last_time_change: params[9] => srv_params[5]
3106 * srv_check_status: params[10] => srv_params[6]
3107 * srv_check_result: params[11] => srv_params[7]
3108 * srv_check_health: params[12] => srv_params[8]
3109 * srv_check_state: params[13] => srv_params[9]
3110 * srv_agent_state: params[14] => srv_params[10]
3111 * bk_f_forced_id: params[15] => srv_params[11]
3112 * srv_f_forced_id: params[16] => srv_params[12]
3113 * srv_fqdn: params[17] => srv_params[13]
3114 * srv_port: params[18] => srv_params[14]
3115 * srvrecord: params[19] => srv_params[15]
Christopher Fauleta8979a92021-02-04 10:12:05 +01003116 * srv_use_ssl: params[20] => srv_params[16]
3117 * srv_check_port: params[21] => srv_params[17]
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003118 */
3119 if (arg >= 4) {
3120 srv_params[srv_arg] = cur;
3121 ++srv_arg;
3122 }
3123 break;
3124 }
3125
3126 params[arg] = cur;
3127 ++arg;
3128 }
3129 else {
3130 ++cur;
3131 }
3132 }
3133
3134 /* if line is incomplete line, then ignore it.
3135 * otherwise, update useful flags */
3136 switch (version) {
3137 case 1:
3138 if (arg < SRV_STATE_FILE_NB_FIELDS_VERSION_1) {
3139 params[0] = NULL;
3140 return;
3141 }
3142 break;
3143 }
3144
3145 return;
3146}
3147
3148
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003149/* This function parses all the proxies and only take care of the backends (since we're looking for server)
3150 * For each proxy, it does the following:
3151 * - opens its server state file (either one or local one)
3152 * - read whole file, line by line
3153 * - analyse each line to check if it matches our current backend:
3154 * - backend name matches
3155 * - backend id matches if id is forced and name doesn't match
3156 * - if the server pointed by the line is found, then state is applied
3157 *
3158 * If the running backend uuid or id differs from the state file, then HAProxy reports
3159 * a warning.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003160 *
3161 * Grabs the server's lock via srv_update_state().
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003162 */
3163void apply_server_state(void)
3164{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003165 char mybuf[SRV_STATE_LINE_MAXLEN];
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003166 char *params[SRV_STATE_FILE_MAX_FIELDS] = {0};
3167 char *srv_params[SRV_STATE_FILE_MAX_FIELDS] = {0};
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003168 int version, global_file_version;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003169 FILE *f;
3170 char *filepath;
3171 char globalfilepath[MAXPATHLEN + 1];
3172 char localfilepath[MAXPATHLEN + 1];
3173 int len, fileopenerr, globalfilepathlen, localfilepathlen;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003174 struct proxy *curproxy, *bk;
3175 struct server *srv;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003176 char *line;
3177 char *bkname, *srvname;
3178 struct state_line *st;
3179 struct ebmb_node *node, *next_node;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003180
Willy Tarreau2d067f92020-07-16 06:40:27 +02003181 f = NULL;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003182 global_file_version = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003183 globalfilepathlen = 0;
3184 /* create the globalfilepath variable */
3185 if (global.server_state_file) {
3186 /* absolute path or no base directory provided */
3187 if ((global.server_state_file[0] == '/') || (!global.server_state_base)) {
3188 len = strlen(global.server_state_file);
3189 if (len > MAXPATHLEN) {
3190 globalfilepathlen = 0;
3191 goto globalfileerror;
3192 }
3193 memcpy(globalfilepath, global.server_state_file, len);
3194 globalfilepath[len] = '\0';
3195 globalfilepathlen = len;
3196 }
3197 else if (global.server_state_base) {
3198 len = strlen(global.server_state_base);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003199 if (len > MAXPATHLEN) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003200 globalfilepathlen = 0;
3201 goto globalfileerror;
3202 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003203 memcpy(globalfilepath, global.server_state_base, len);
Willy Tarreau5dfb6c42018-10-16 19:26:12 +02003204 globalfilepath[len] = 0;
3205 globalfilepathlen = len;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003206
3207 /* append a slash if needed */
3208 if (!globalfilepathlen || globalfilepath[globalfilepathlen - 1] != '/') {
3209 if (globalfilepathlen + 1 > MAXPATHLEN) {
3210 globalfilepathlen = 0;
3211 goto globalfileerror;
3212 }
3213 globalfilepath[globalfilepathlen++] = '/';
3214 }
3215
3216 len = strlen(global.server_state_file);
3217 if (globalfilepathlen + len > MAXPATHLEN) {
3218 globalfilepathlen = 0;
3219 goto globalfileerror;
3220 }
3221 memcpy(globalfilepath + globalfilepathlen, global.server_state_file, len);
3222 globalfilepathlen += len;
3223 globalfilepath[globalfilepathlen++] = 0;
3224 }
3225 }
3226 globalfileerror:
3227 if (globalfilepathlen == 0)
3228 globalfilepath[0] = '\0';
3229
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003230 /* Load global server state in a tree */
3231 if (globalfilepathlen > 0) {
3232 errno = 0;
3233 f = fopen(globalfilepath, "r");
3234 if (errno)
3235 ha_warning("Can't open global server state file '%s': %s\n", globalfilepath, strerror(errno));
Vedran Furac5d486272019-10-16 14:49:38 +02003236 if (!f)
3237 goto out_load_server_state_in_tree;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003238
3239 global_file_version = srv_state_get_version(f);
3240 if (global_file_version == 0)
3241 goto out_load_server_state_in_tree;
3242
3243 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3244 line = NULL;
3245
3246 line = strdup(mybuf);
3247 if (line == NULL)
3248 continue;
3249
3250 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3251 if (params[0] == NULL)
Willy Tarreauca7a5af2019-12-20 17:26:27 +01003252 goto nextline;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003253
3254 /* bkname */
3255 bkname = params[1];
3256 /* srvname */
3257 srvname = params[3];
3258
3259 /* key */
3260 chunk_printf(&trash, "%s %s", bkname, srvname);
3261
3262 /* store line in tree */
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003263 st = calloc(1, sizeof(*st) + trash.data + 1);
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003264 if (st == NULL) {
3265 goto nextline;
3266 }
Willy Tarreau7d6a1fa2019-12-20 17:18:13 +01003267 memcpy(st->name_name.key, trash.area, trash.data + 1);
Willy Tarreaufd1aa012019-12-20 17:23:40 +01003268 if (ebst_insert(&state_file, &st->name_name) != &st->name_name) {
3269 /* this is a duplicate key, probably a hand-crafted file,
3270 * drop it!
3271 */
3272 goto nextline;
3273 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003274
3275 /* save line */
3276 st->line = line;
3277
3278 continue;
3279
3280 nextline:
3281 /* free up memory in case of error during the processing of the line */
3282 free(line);
3283 }
3284 }
3285 out_load_server_state_in_tree:
3286
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003287 if (f) {
3288 fclose(f);
3289 f = NULL;
3290 }
3291
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003292 /* parse all proxies and load states form tree (global file) or from local file */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003293 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003294 /* servers are only in backends */
3295 if (!(curproxy->cap & PR_CAP_BE))
3296 continue;
3297 fileopenerr = 0;
3298 filepath = NULL;
3299
3300 /* search server state file path and name */
3301 switch (curproxy->load_server_state_from_file) {
3302 /* read servers state from global file */
3303 case PR_SRV_STATE_FILE_GLOBAL:
3304 /* there was an error while generating global server state file path */
3305 if (globalfilepathlen == 0)
3306 continue;
3307 filepath = globalfilepath;
3308 fileopenerr = 1;
3309 break;
3310 /* this backend has its own file */
3311 case PR_SRV_STATE_FILE_LOCAL:
3312 localfilepathlen = 0;
3313 localfilepath[0] = '\0';
3314 len = 0;
3315 /* create the localfilepath variable */
3316 /* absolute path or no base directory provided */
3317 if ((curproxy->server_state_file_name[0] == '/') || (!global.server_state_base)) {
3318 len = strlen(curproxy->server_state_file_name);
3319 if (len > MAXPATHLEN) {
3320 localfilepathlen = 0;
3321 goto localfileerror;
3322 }
3323 memcpy(localfilepath, curproxy->server_state_file_name, len);
3324 localfilepath[len] = '\0';
3325 localfilepathlen = len;
3326 }
3327 else if (global.server_state_base) {
3328 len = strlen(global.server_state_base);
3329 localfilepathlen += len;
3330
3331 if (localfilepathlen > MAXPATHLEN) {
3332 localfilepathlen = 0;
3333 goto localfileerror;
3334 }
Olivier Houchard17f8b902018-10-16 18:35:01 +02003335 memcpy(localfilepath, global.server_state_base, len);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003336 localfilepath[localfilepathlen] = 0;
3337
3338 /* append a slash if needed */
3339 if (!localfilepathlen || localfilepath[localfilepathlen - 1] != '/') {
3340 if (localfilepathlen + 1 > MAXPATHLEN) {
3341 localfilepathlen = 0;
3342 goto localfileerror;
3343 }
3344 localfilepath[localfilepathlen++] = '/';
3345 }
3346
3347 len = strlen(curproxy->server_state_file_name);
3348 if (localfilepathlen + len > MAXPATHLEN) {
3349 localfilepathlen = 0;
3350 goto localfileerror;
3351 }
3352 memcpy(localfilepath + localfilepathlen, curproxy->server_state_file_name, len);
3353 localfilepathlen += len;
3354 localfilepath[localfilepathlen++] = 0;
3355 }
3356 filepath = localfilepath;
3357 localfileerror:
3358 if (localfilepathlen == 0)
3359 localfilepath[0] = '\0';
3360
3361 break;
3362 case PR_SRV_STATE_FILE_NONE:
3363 default:
3364 continue;
3365 }
3366
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003367 /* when global file is used, we get data from the tree
3368 * Note that in such case we don't check backend name neither uuid.
3369 * Backend name can't be wrong since it's used as a key to retrieve the server state
3370 * line from the tree.
3371 */
3372 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_GLOBAL) {
3373 struct server *srv = curproxy->srv;
3374 while (srv) {
3375 struct ebmb_node *node;
3376 struct state_line *st;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003377
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003378 chunk_printf(&trash, "%s %s", curproxy->id, srv->id);
3379 node = ebst_lookup(&state_file, trash.area);
3380 if (!node)
3381 goto next;
Dragan Dosencf4fb032015-11-04 23:03:26 +01003382
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003383 st = container_of(node, struct state_line, name_name);
3384 memcpy(mybuf, st->line, strlen(st->line));
3385 mybuf[strlen(st->line)] = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003386
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003387 srv_state_parse_line(mybuf, global_file_version, params, srv_params);
3388 if (params[0] == NULL)
3389 goto next;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003390
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003391 srv_update_state(srv, global_file_version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003392
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003393 next:
3394 srv = srv->next;
3395 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003396
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003397 continue; /* next proxy in list */
3398 }
3399 else {
3400 /* load 'local' state file */
3401 errno = 0;
3402 f = fopen(filepath, "r");
3403 if (errno && fileopenerr)
3404 ha_warning("Can't open server state file '%s': %s\n", filepath, strerror(errno));
3405 if (!f)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003406 continue;
3407
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003408 mybuf[0] = '\0';
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003409
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003410 /* first character of first line of the file must contain the version of the export */
3411 version = srv_state_get_version(f);
3412 if (version == 0) {
3413 ha_warning("Can't get version of the server state file '%s'\n", filepath);
3414 goto fileclose;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003415 }
3416
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003417 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3418 int bk_f_forced_id = 0;
3419 int check_id = 0;
3420 int check_name = 0;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003421
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003422 srv_state_parse_line(mybuf, version, params, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003423
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003424 if (params[0] == NULL) {
3425 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003426 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003427
3428 /* if line is incomplete line, then ignore it.
3429 * otherwise, update useful flags */
3430 switch (version) {
3431 case 1:
3432 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
3433 check_id = (atoi(params[0]) == curproxy->uuid);
3434 check_name = (strcmp(curproxy->id, params[1]) == 0);
3435 break;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003436 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003437
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003438 bk = curproxy;
3439
3440 /* if backend can't be found, let's continue */
3441 if (!check_id && !check_name)
3442 continue;
3443 else if (!check_id && check_name) {
3444 ha_warning("backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3445 send_log(bk, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n", params[0], bk->uuid);
3446 }
3447 else if (check_id && !check_name) {
3448 ha_warning("backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3449 send_log(bk, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n", params[1], bk->id);
3450 /* if name doesn't match, we still want to update curproxy if the backend id
3451 * was forced in previous the previous configuration */
3452 if (!bk_f_forced_id)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003453 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003454 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003455
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003456 /* look for the server by its name: param[3] */
3457 srv = server_find_best_match(bk, params[3], 0, NULL);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003458
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003459 if (!srv) {
3460 /* if no server found, then warning and continue with next line */
3461 ha_warning("can't find server '%s' in backend '%s'\n",
3462 params[3], params[1]);
3463 send_log(bk, LOG_NOTICE, "can't find server '%s' in backend '%s'\n",
3464 params[3], params[1]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003465 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003466 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003467
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003468 /* now we can proceed with server's state update */
3469 srv_update_state(srv, version, srv_params);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003470 }
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003471
3472 fileclose:
3473 fclose(f);
3474
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003475 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003476 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003477
3478 /* now free memory allocated for the tree */
3479 for (node = ebmb_first(&state_file), next_node = node ? ebmb_next(node) : NULL;
3480 node;
3481 node = next_node, next_node = node ? ebmb_next(node) : NULL) {
3482 st = container_of(node, struct state_line, name_name);
3483 ebmb_delete(&st->name_name);
3484 free(st->line);
3485 free(st);
3486 }
3487
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003488}
3489
Simon Horman7d09b9a2013-02-12 10:45:51 +09003490/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003491 * update a server's current IP address.
3492 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3493 * ip is in network format.
3494 * updater is a string which contains an information about the requester of the update.
3495 * updater is used if not NULL.
3496 *
3497 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003498 *
3499 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003500 */
Thierry Fournierd35b7a62016-02-24 08:23:22 +01003501int update_server_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003502{
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +02003503 /* save the new IP family & address if necessary */
3504 switch (ip_sin_family) {
3505 case AF_INET:
3506 if (s->addr.ss_family == ip_sin_family &&
3507 !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4))
3508 return 0;
3509 break;
3510 case AF_INET6:
3511 if (s->addr.ss_family == ip_sin_family &&
3512 !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16))
3513 return 0;
3514 break;
3515 };
3516
Baptiste Assmann14e40142015-04-14 01:13:07 +02003517 /* generates a log line and a warning on stderr */
3518 if (1) {
3519 /* book enough space for both IPv4 and IPv6 */
3520 char oldip[INET6_ADDRSTRLEN];
3521 char newip[INET6_ADDRSTRLEN];
3522
3523 memset(oldip, '\0', INET6_ADDRSTRLEN);
3524 memset(newip, '\0', INET6_ADDRSTRLEN);
3525
3526 /* copy old IP address in a string */
3527 switch (s->addr.ss_family) {
3528 case AF_INET:
3529 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3530 break;
3531 case AF_INET6:
3532 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3533 break;
Christopher Fauletb0b76072020-09-08 10:38:40 +02003534 default:
3535 strcpy(oldip, "(none)");
3536 break;
Baptiste Assmann14e40142015-04-14 01:13:07 +02003537 };
3538
3539 /* copy new IP address in a string */
3540 switch (ip_sin_family) {
3541 case AF_INET:
3542 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3543 break;
3544 case AF_INET6:
3545 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3546 break;
3547 };
3548
3549 /* save log line into a buffer */
3550 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3551 s->proxy->id, s->id, oldip, newip, updater);
3552
3553 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003554 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003555
3556 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003557 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003558 }
3559
3560 /* save the new IP family */
3561 s->addr.ss_family = ip_sin_family;
3562 /* save the new IP address */
3563 switch (ip_sin_family) {
3564 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003565 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003566 break;
3567 case AF_INET6:
3568 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3569 break;
3570 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003571 srv_set_dyncookie(s);
Thayne McCombs92149f92020-11-20 01:28:26 -07003572 srv_set_addr_desc(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003573
3574 return 0;
3575}
3576
3577/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003578 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3579 *
3580 * Caller can pass its name through <updater> to get it integrated in the response message
3581 * returned by the function.
3582 *
3583 * The function first does the following, in that order:
3584 * - validates the new addr and/or port
3585 * - checks if an update is required (new IP or port is different than current ones)
3586 * - checks the update is allowed:
3587 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3588 * - allow all changes if no CHECKS are configured
3589 * - if CHECK is configured:
3590 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3591 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3592 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003593 *
3594 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003595 */
3596const char *update_server_addr_port(struct server *s, const char *addr, const char *port, char *updater)
3597{
3598 struct sockaddr_storage sa;
3599 int ret, port_change_required;
3600 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003601 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003602 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003603 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003604
3605 msg = get_trash_chunk();
3606 chunk_reset(msg);
3607
3608 if (addr) {
3609 memset(&sa, 0, sizeof(struct sockaddr_storage));
3610 if (str2ip2(addr, &sa, 0) == NULL) {
3611 chunk_printf(msg, "Invalid addr '%s'", addr);
3612 goto out;
3613 }
3614
3615 /* changes are allowed on AF_INET* families only */
3616 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3617 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3618 goto out;
3619 }
3620
3621 /* collecting data currently setup */
3622 memset(current_addr, '\0', sizeof(current_addr));
3623 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3624 /* changes are allowed on AF_INET* families only */
3625 if ((ret != AF_INET) && (ret != AF_INET6)) {
3626 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3627 goto out;
3628 }
3629
3630 /* applying ADDR changes if required and allowed
3631 * ipcmp returns 0 when both ADDR are the same
3632 */
3633 if (ipcmp(&s->addr, &sa) == 0) {
3634 chunk_appendf(msg, "no need to change the addr");
3635 goto port;
3636 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003637 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003638 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003639
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003640 /* update report for caller */
3641 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3642 }
3643
3644 port:
3645 if (port) {
3646 char sign = '\0';
3647 char *endptr;
3648
3649 if (addr)
3650 chunk_appendf(msg, ", ");
3651
3652 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003653 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003654
3655 /* check if PORT change is required */
3656 port_change_required = 0;
3657
3658 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003659 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003660 new_port = strtol(port, &endptr, 10);
3661 if ((errno != 0) || (port == endptr)) {
3662 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3663 goto out;
3664 }
3665
3666 /* check if caller triggers a port mapped or offset */
3667 if (sign == '-' || (sign == '+')) {
3668 /* check if server currently uses port map */
3669 if (!(s->flags & SRV_F_MAPPORTS)) {
3670 /* switch from fixed port to port map mandatorily triggers
3671 * a port change */
3672 port_change_required = 1;
3673 /* check is configured
3674 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3675 * prevent PORT change if check doesn't have it's dedicated port while switching
3676 * to port mapping */
William Dauchy69f118d2021-02-03 22:30:07 +01003677 if (!s->check.port) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003678 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.");
3679 goto out;
3680 }
3681 }
3682 /* we're already using port maps */
3683 else {
3684 port_change_required = current_port != new_port;
3685 }
3686 }
3687 /* fixed port */
3688 else {
3689 port_change_required = current_port != new_port;
3690 }
3691
3692 /* applying PORT changes if required and update response message */
3693 if (port_change_required) {
3694 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003695 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003696 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003697
3698 /* prepare message */
3699 chunk_appendf(msg, "port changed from '");
3700 if (s->flags & SRV_F_MAPPORTS)
3701 chunk_appendf(msg, "+");
3702 chunk_appendf(msg, "%d' to '", current_port);
3703
3704 if (sign == '-') {
3705 s->flags |= SRV_F_MAPPORTS;
3706 chunk_appendf(msg, "%c", sign);
3707 /* just use for result output */
3708 new_port = -new_port;
3709 }
3710 else if (sign == '+') {
3711 s->flags |= SRV_F_MAPPORTS;
3712 chunk_appendf(msg, "%c", sign);
3713 }
3714 else {
3715 s->flags &= ~SRV_F_MAPPORTS;
3716 }
3717
3718 chunk_appendf(msg, "%d'", new_port);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003719 }
3720 else {
3721 chunk_appendf(msg, "no need to change the port");
3722 }
3723 }
3724
3725out:
William Dauchy6318d332020-05-02 21:52:36 +02003726 if (changed) {
3727 /* force connection cleanup on the given server */
3728 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003729 srv_set_dyncookie(s);
Thayne McCombs92149f92020-11-20 01:28:26 -07003730 srv_set_addr_desc(s);
William Dauchy6318d332020-05-02 21:52:36 +02003731 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003732 if (updater)
3733 chunk_appendf(msg, " by '%s'", updater);
3734 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003735 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003736}
3737
3738
3739/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003740 * update server status based on result of name resolution
3741 * returns:
3742 * 0 if server status is updated
3743 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003744 *
3745 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003746 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003747int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003748{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003749 struct dns_resolvers *resolvers = s->resolvers;
3750 struct dns_resolution *resolution = s->dns_requester->resolution;
3751 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003752
Jerome Magnin012261a2020-07-28 13:38:22 +02003753 /* If resolution is NULL we're dealing with SRV records Additional records */
3754 if (resolution == NULL) {
Baptiste Assmann87138c32020-08-04 10:57:21 +02003755 /* since this server has an IP, it can go back in production */
3756 if (has_no_ip == 0) {
3757 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3758 return 1;
3759 }
3760
Jerome Magnin012261a2020-07-28 13:38:22 +02003761 if (s->next_admin & SRV_ADMF_RMAINT)
3762 return 1;
3763
3764 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record");
3765 return 0;
3766 }
3767
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003768 switch (resolution->status) {
3769 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003770 /* status when HAProxy has just (re)started.
3771 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003772 break;
3773
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003774 case RSLV_STATUS_VALID:
3775 /*
3776 * resume health checks
3777 * server will be turned back on if health check is safe
3778 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003779 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003780 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003781 return 1;
3782 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3783 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003784 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003785 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003786
Emeric Brun52a91d32017-08-31 14:41:55 +02003787 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003788 return 1;
3789 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3790 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3791 s->proxy->id, s->id);
3792
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003793 ha_warning("%s.\n", trash.area);
3794 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003795 return 0;
3796
3797 case RSLV_STATUS_NX:
3798 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003799 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3800 if (!tick_is_expired(exp, now_ms))
3801 break;
3802
3803 if (s->next_admin & SRV_ADMF_RMAINT)
3804 return 1;
3805 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3806 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003807
3808 case RSLV_STATUS_TIMEOUT:
3809 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003810 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3811 if (!tick_is_expired(exp, now_ms))
3812 break;
3813
3814 if (s->next_admin & SRV_ADMF_RMAINT)
3815 return 1;
3816 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3817 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003818
3819 case RSLV_STATUS_REFUSED:
3820 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003821 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3822 if (!tick_is_expired(exp, now_ms))
3823 break;
3824
3825 if (s->next_admin & SRV_ADMF_RMAINT)
3826 return 1;
3827 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3828 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003829
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003830 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003831 /* stop server if resolution failed for a long enough period */
3832 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3833 if (!tick_is_expired(exp, now_ms))
3834 break;
3835
3836 if (s->next_admin & SRV_ADMF_RMAINT)
3837 return 1;
3838 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3839 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003840 }
3841
3842 return 1;
3843}
3844
3845/*
3846 * Server Name Resolution valid response callback
3847 * It expects:
3848 * - <nameserver>: the name server which answered the valid response
3849 * - <response>: buffer containing a valid DNS response
3850 * - <response_len>: size of <response>
3851 * It performs the following actions:
3852 * - ignore response if current ip found and server family not met
3853 * - update with first new ip found if family is met and current IP is not found
3854 * returns:
3855 * 0 on error
3856 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003857 *
3858 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003859 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003860int snr_resolution_cb(struct dns_requester *requester, struct dns_nameserver *nameserver)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003861{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003862 struct server *s = NULL;
3863 struct dns_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003864 void *serverip, *firstip;
3865 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003866 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003867 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003868 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003869
Christopher Faulet67957bd2017-09-27 11:00:59 +02003870 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003871 if (!s)
3872 return 1;
3873
Christopher Faulet67957bd2017-09-27 11:00:59 +02003874 resolution = s->dns_requester->resolution;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003875
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003876 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003877 firstip = NULL; /* pointer to the first valid response found */
3878 /* it will be used as the new IP if a change is required */
3879 firstip_sin_family = AF_UNSPEC;
3880 serverip = NULL; /* current server IP address */
3881
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003882 /* initializing server IP pointer */
3883 server_sin_family = s->addr.ss_family;
3884 switch (server_sin_family) {
3885 case AF_INET:
3886 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3887 break;
3888
3889 case AF_INET6:
3890 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3891 break;
3892
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003893 case AF_UNSPEC:
3894 break;
3895
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003896 default:
3897 goto invalid;
3898 }
3899
Baptiste Assmann729c9012017-05-22 15:13:10 +02003900 ret = dns_get_ip_from_response(&resolution->response, &s->dns_opts,
Thierry Fournierada34842016-02-17 21:25:09 +01003901 serverip, server_sin_family, &firstip,
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003902 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003903
3904 switch (ret) {
3905 case DNS_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003906 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003907
3908 case DNS_UPD_SRVIP_NOT_FOUND:
3909 goto save_ip;
3910
3911 case DNS_UPD_CNAME:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003912 goto invalid;
3913
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003914 case DNS_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003915 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003916 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003917
Baptiste Assmannfad03182015-10-28 02:03:32 +01003918 case DNS_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003919 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003920 resolution->status = RSLV_STATUS_OTHER;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003921 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003922
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003923 default:
3924 goto invalid;
3925
3926 }
3927
3928 save_ip:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003929 if (nameserver) {
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003930 nameserver->counters->update++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003931 /* save the first ip we found */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003932 chunk_printf(chk, "%s/%s", nameserver->resolvers->id, nameserver->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003933 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003934 else
3935 chunk_printf(chk, "DNS cache");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003936 update_server_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003937
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003938 update_status:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003939 snr_update_srv_status(s, has_no_ip);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003940 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003941
3942 invalid:
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003943 if (nameserver) {
Amaury Denoyellefbd0bc92020-10-05 11:49:46 +02003944 nameserver->counters->invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003945 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003946 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003947 snr_update_srv_status(s, has_no_ip);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003948 return 0;
3949}
3950
3951/*
3952 * Server Name Resolution error management callback
3953 * returns:
3954 * 0 on error
3955 * 1 when no error or safe ignore
Willy Tarreau46b7f532018-08-21 11:54:26 +02003956 *
3957 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003958 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003959int snr_resolution_error_cb(struct dns_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003960{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003961 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003962
Christopher Faulet67957bd2017-09-27 11:00:59 +02003963 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003964 if (!s)
3965 return 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003966 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003967 snr_update_srv_status(s, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003968 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003969 return 1;
3970}
3971
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003972/*
3973 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003974 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003975 * It returns a pointer to the first server found or NULL if <ip> is not yet
3976 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003977 *
3978 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003979 */
3980struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3981{
3982 struct server *tmpsrv;
3983 struct proxy *be;
3984
3985 if (!srv)
3986 return NULL;
3987
3988 be = srv->proxy;
3989 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003990 /* we found the current server is the same, ignore it */
3991 if (srv == tmpsrv)
3992 continue;
3993
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003994 /* We want to compare the IP in the record with the IP of the servers in the
3995 * same backend, only if:
3996 * * DNS resolution is enabled on the server
3997 * * the hostname used for the resolution by our server is the same than the
3998 * one used for the server found in the backend
3999 * * the server found in the backend is not our current server
4000 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004001 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004002 if ((tmpsrv->hostname_dn == NULL) ||
4003 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
4004 (strcmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01004005 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004006 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004007 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004008 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004009
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004010 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01004011 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004012 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004013 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004014 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004015
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004016 /* At this point, we have 2 different servers using the same DNS hostname
4017 * for their respective resolution.
4018 */
4019 if (*ip_family == tmpsrv->addr.ss_family &&
4020 ((tmpsrv->addr.ss_family == AF_INET &&
4021 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
4022 (tmpsrv->addr.ss_family == AF_INET6 &&
4023 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004024 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004025 return tmpsrv;
4026 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004027 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004028 }
4029
Emeric Brune9fd6b52017-11-02 17:20:39 +01004030
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004031 return NULL;
4032}
4033
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004034/* Sets the server's address (srv->addr) from srv->hostname using the libc's
4035 * resolver. This is suited for initial address configuration. Returns 0 on
4036 * success otherwise a non-zero error code. In case of error, *err_code, if
4037 * not NULL, is filled up.
4038 */
4039int srv_set_addr_via_libc(struct server *srv, int *err_code)
4040{
4041 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004042 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01004043 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004044 return 1;
4045 }
4046 return 0;
4047}
4048
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004049/* Set the server's FDQN (->hostname) from <hostname>.
4050 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004051 *
4052 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004053 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004054int srv_set_fqdn(struct server *srv, const char *hostname, int dns_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004055{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004056 struct dns_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004057 char *hostname_dn;
4058 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004059
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02004060 /* Note that the server lock is already held. */
4061 if (!srv->resolvers)
4062 return -1;
4063
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004064 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004065 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004066 /* run time DNS resolution was not active for this server
4067 * and we can't enable it at run time for now.
4068 */
4069 if (!srv->dns_requester)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004070 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004071
4072 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004073 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004074 hostname_dn = trash.area;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004075 hostname_dn_len = dns_str_to_dn_label(hostname, hostname_len + 1,
4076 hostname_dn, trash.size);
4077 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004078 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004079
Christopher Faulet67957bd2017-09-27 11:00:59 +02004080 resolution = srv->dns_requester->resolution;
4081 if (resolution &&
4082 resolution->hostname_dn &&
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004083 strcmp(resolution->hostname_dn, hostname_dn) == 0)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004084 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004085
Christopher Faulet67957bd2017-09-27 11:00:59 +02004086 dns_unlink_resolution(srv->dns_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004087
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004088 free(srv->hostname);
4089 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004090 srv->hostname = strdup(hostname);
4091 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004092 srv->hostname_dn_len = hostname_dn_len;
4093 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004094 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004095
Baptiste Assmann13a92322019-06-07 09:40:55 +02004096 if (srv->flags & SRV_F_NO_RESOLUTION)
4097 goto end;
4098
Olivier Houchard55dcdf42017-11-06 15:15:04 +01004099 if (dns_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004100 goto err;
4101
4102 end:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004103 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004104 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004105 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02004106
4107 err:
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004108 if (!dns_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004109 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02004110 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004111}
4112
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004113/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
4114 * from the state file. This is suited for initial address configuration.
4115 * Returns 0 on success otherwise a non-zero error code. In case of error,
4116 * *err_code, if not NULL, is filled up.
4117 */
4118static int srv_apply_lastaddr(struct server *srv, int *err_code)
4119{
4120 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
4121 if (err_code)
4122 *err_code |= ERR_WARN;
4123 return 1;
4124 }
4125 return 0;
4126}
4127
Willy Tarreau25e51522016-11-04 15:10:17 +01004128/* returns 0 if no error, otherwise a combination of ERR_* flags */
4129static int srv_iterate_initaddr(struct server *srv)
4130{
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004131 char *name = srv->hostname;
Willy Tarreau25e51522016-11-04 15:10:17 +01004132 int return_code = 0;
4133 int err_code;
4134 unsigned int methods;
4135
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004136 /* If no addr and no hostname set, get the name from the DNS SRV request */
4137 if (!name && srv->srvrq)
4138 name = srv->srvrq->name;
4139
Willy Tarreau25e51522016-11-04 15:10:17 +01004140 methods = srv->init_addr_methods;
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004141 if (!methods) {
4142 /* otherwise default to "last,libc" */
Willy Tarreau25e51522016-11-04 15:10:17 +01004143 srv_append_initaddr(&methods, SRV_IADDR_LAST);
4144 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004145 if (srv->resolvers_id) {
4146 /* dns resolution is configured, add "none" to not fail on startup */
4147 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4148 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004149 }
4150
Willy Tarreau3eed10e2016-11-07 21:03:16 +01004151 /* "-dr" : always append "none" so that server addresses resolution
4152 * failures are silently ignored, this is convenient to validate some
4153 * configs out of their environment.
4154 */
4155 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
4156 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4157
Willy Tarreau25e51522016-11-04 15:10:17 +01004158 while (methods) {
4159 err_code = 0;
4160 switch (srv_get_next_initaddr(&methods)) {
4161 case SRV_IADDR_LAST:
4162 if (!srv->lastaddr)
4163 continue;
4164 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004165 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004166 return_code |= err_code;
4167 break;
4168
4169 case SRV_IADDR_LIBC:
4170 if (!srv->hostname)
4171 continue;
4172 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004173 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004174 return_code |= err_code;
4175 break;
4176
Willy Tarreau37ebe122016-11-04 15:17:58 +01004177 case SRV_IADDR_NONE:
4178 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004179 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004180 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004181 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004182 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01004183 return return_code;
4184
Willy Tarreau4310d362016-11-02 15:05:56 +01004185 case SRV_IADDR_IP:
4186 ipcpy(&srv->init_addr, &srv->addr);
4187 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004188 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 +01004189 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau4310d362016-11-02 15:05:56 +01004190 }
Olivier Houchard4e694042017-03-14 20:01:29 +01004191 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01004192
Willy Tarreau25e51522016-11-04 15:10:17 +01004193 default: /* unhandled method */
4194 break;
4195 }
4196 }
4197
4198 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004199 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004200 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau25e51522016-11-04 15:10:17 +01004201 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01004202 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004203 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004204 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004205 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004206
4207 return_code |= ERR_ALERT | ERR_FATAL;
4208 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01004209out:
4210 srv_set_dyncookie(srv);
Thayne McCombs92149f92020-11-20 01:28:26 -07004211 srv_set_addr_desc(srv);
Olivier Houchard4e694042017-03-14 20:01:29 +01004212 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01004213}
4214
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004215/*
4216 * This function parses all backends and all servers within each backend
4217 * and performs servers' addr resolution based on information provided by:
4218 * - configuration file
4219 * - server-state file (states provided by an 'old' haproxy process)
4220 *
4221 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
4222 */
4223int srv_init_addr(void)
4224{
4225 struct proxy *curproxy;
4226 int return_code = 0;
4227
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004228 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004229 while (curproxy) {
4230 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004231
4232 /* servers are in backend only */
Amaury Denoyellee3c41922021-01-06 14:28:50 +01004233 if (!(curproxy->cap & PR_CAP_BE) || curproxy->disabled)
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004234 goto srv_init_addr_next;
4235
Willy Tarreau25e51522016-11-04 15:10:17 +01004236 for (srv = curproxy->srv; srv; srv = srv->next)
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004237 if (srv->hostname || srv->srvrq)
Willy Tarreau3d609a72017-09-06 14:22:45 +02004238 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004239
4240 srv_init_addr_next:
4241 curproxy = curproxy->next;
4242 }
4243
4244 return return_code;
4245}
4246
Willy Tarreau46b7f532018-08-21 11:54:26 +02004247/*
4248 * Must be called with the server lock held.
4249 */
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004250const 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 +02004251{
4252
Willy Tarreau83061a82018-07-13 11:56:34 +02004253 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004254
4255 msg = get_trash_chunk();
4256 chunk_reset(msg);
4257
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004258 if (server->hostname && strcmp(fqdn, server->hostname) == 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004259 chunk_appendf(msg, "no need to change the FDQN");
4260 goto out;
4261 }
4262
4263 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4264 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4265 goto out;
4266 }
4267
4268 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4269 server->proxy->id, server->id, server->hostname, fqdn);
4270
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004271 if (srv_set_fqdn(server, fqdn, dns_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004272 chunk_reset(msg);
4273 chunk_appendf(msg, "could not update %s/%s FQDN",
4274 server->proxy->id, server->id);
4275 goto out;
4276 }
4277
4278 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004279 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004280
4281 out:
4282 if (updater)
4283 chunk_appendf(msg, " by '%s'", updater);
4284 chunk_appendf(msg, "\n");
4285
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004286 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004287}
4288
4289
Willy Tarreau21b069d2016-11-23 17:15:08 +01004290/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4291 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004292 * 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 +01004293 * used for CLI commands requiring a server name.
4294 * Important: the <arg> is modified to remove the '/'.
4295 */
4296struct server *cli_find_server(struct appctx *appctx, char *arg)
4297{
4298 struct proxy *px;
4299 struct server *sv;
4300 char *line;
4301
4302 /* split "backend/server" and make <line> point to server */
4303 for (line = arg; *line; line++)
4304 if (*line == '/') {
4305 *line++ = '\0';
4306 break;
4307 }
4308
4309 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004310 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004311 return NULL;
4312 }
4313
4314 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004315 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004316 return NULL;
4317 }
4318
Willy Tarreauc3914d42020-09-24 08:39:22 +02004319 if (px->disabled) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004320 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004321 return NULL;
4322 }
4323
4324 return sv;
4325}
4326
William Lallemand222baf22016-11-19 02:00:33 +01004327
Willy Tarreau46b7f532018-08-21 11:54:26 +02004328/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004329static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004330{
4331 struct server *sv;
4332 const char *warning;
4333
4334 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4335 return 1;
4336
4337 sv = cli_find_server(appctx, args[2]);
4338 if (!sv)
4339 return 1;
4340
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004341 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02004342
William Lallemand222baf22016-11-19 02:00:33 +01004343 if (strcmp(args[3], "weight") == 0) {
4344 warning = server_parse_weight_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004345 if (warning)
4346 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004347 }
4348 else if (strcmp(args[3], "state") == 0) {
4349 if (strcmp(args[4], "ready") == 0)
4350 srv_adm_set_ready(sv);
4351 else if (strcmp(args[4], "drain") == 0)
4352 srv_adm_set_drain(sv);
4353 else if (strcmp(args[4], "maint") == 0)
4354 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02004355 else
4356 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004357 }
4358 else if (strcmp(args[3], "health") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004359 if (sv->track)
4360 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004361 else if (strcmp(args[4], "up") == 0) {
4362 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004363 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004364 }
4365 else if (strcmp(args[4], "stopping") == 0) {
4366 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004367 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004368 }
4369 else if (strcmp(args[4], "down") == 0) {
4370 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004371 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004372 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004373 else
4374 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004375 }
4376 else if (strcmp(args[3], "agent") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004377 if (!(sv->agent.state & CHK_ST_ENABLED))
4378 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004379 else if (strcmp(args[4], "up") == 0) {
4380 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004381 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004382 }
4383 else if (strcmp(args[4], "down") == 0) {
4384 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004385 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004386 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004387 else
4388 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004389 }
Misiek2da082d2017-01-09 09:40:42 +01004390 else if (strcmp(args[3], "agent-addr") == 0) {
William Dauchy1c921cd2021-02-03 22:30:08 +01004391 struct sockaddr_storage sk;
4392
4393 memset(&sk, 0, sizeof(sk));
Willy Tarreau9d008692019-08-09 11:21:01 +02004394 if (!(sv->agent.state & CHK_ST_ENABLED))
4395 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Dauchy1c921cd2021-02-03 22:30:08 +01004396 else if (str2ip(args[4], &sk))
4397 set_srv_agent_addr(sv, &sk);
4398 else
Willy Tarreau9d008692019-08-09 11:21:01 +02004399 cli_err(appctx, "incorrect addr address given for agent.\n");
Misiek2da082d2017-01-09 09:40:42 +01004400 }
4401 else if (strcmp(args[3], "agent-send") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004402 if (!(sv->agent.state & CHK_ST_ENABLED))
4403 cli_err(appctx, "agent checks are not enabled on this server.\n");
4404 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004405 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004406 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004407 }
4408 }
William Lallemand222baf22016-11-19 02:00:33 +01004409 else if (strcmp(args[3], "check-port") == 0) {
4410 int i = 0;
4411 if (strl2irc(args[4], strlen(args[4]), &i) != 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004412 cli_err(appctx, "'set server <srv> check-port' expects an integer as argument.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004413 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004414 }
4415 if ((i < 0) || (i > 65535)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004416 cli_err(appctx, "provided port is not valid.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004417 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004418 }
4419 /* prevent the update of port to 0 if MAPPORTS are in use */
4420 if ((sv->flags & SRV_F_MAPPORTS) && (i == 0)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004421 cli_err(appctx, "can't unset 'port' since MAPPORTS is in use.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004422 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004423 }
4424 sv->check.port = i;
Willy Tarreau9d008692019-08-09 11:21:01 +02004425 cli_msg(appctx, LOG_NOTICE, "health check port updated.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004426 }
4427 else if (strcmp(args[3], "addr") == 0) {
4428 char *addr = NULL;
4429 char *port = NULL;
4430 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004431 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004432 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004433 }
4434 else {
4435 addr = args[4];
4436 }
4437 if (strcmp(args[5], "port") == 0) {
4438 port = args[6];
4439 }
4440 warning = update_server_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004441 if (warning)
4442 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004443 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
4444 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004445 else if (strcmp(args[3], "fqdn") == 0) {
4446 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004447 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004448 goto out_unlock;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004449 }
Baptiste Assmann13a92322019-06-07 09:40:55 +02004450 /* ensure runtime resolver will process this new fqdn */
4451 if (sv->flags & SRV_F_NO_RESOLUTION) {
4452 sv->flags &= ~SRV_F_NO_RESOLUTION;
4453 }
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004454 warning = update_server_fqdn(sv, args[4], "stats socket command", 0);
Willy Tarreau9d008692019-08-09 11:21:01 +02004455 if (warning)
4456 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004457 }
William Dauchyf6370442020-11-14 19:25:33 +01004458 else if (strcmp(args[3], "ssl") == 0) {
4459#ifdef USE_OPENSSL
4460 if (sv->ssl_ctx.ctx == NULL) {
4461 cli_err(appctx, "'set server <srv> ssl' cannot be set. "
4462 " default-server should define ssl settings\n");
4463 goto out_unlock;
4464 } else if (strcmp(args[4], "on") == 0) {
4465 ssl_sock_set_srv(sv, 1);
4466 } else if (strcmp(args[4], "off") == 0) {
4467 ssl_sock_set_srv(sv, 0);
4468 } else {
4469 cli_err(appctx, "'set server <srv> ssl' expects 'on' or 'off'.\n");
4470 goto out_unlock;
4471 }
4472 srv_cleanup_connections(sv);
4473 cli_msg(appctx, LOG_NOTICE, "server ssl setting updated.\n");
4474#else
4475 cli_msg(appctx, LOG_NOTICE, "server ssl setting not supported.\n");
4476#endif
4477 } else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004478 cli_err(appctx,
4479 "'set server <srv>' only supports 'agent', 'health', 'state',"
William Dauchyf6370442020-11-14 19:25:33 +01004480 " 'weight', 'addr', 'fqdn', 'check-port' and 'ssl'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004481 }
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004482 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004483 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004484 return 1;
4485}
4486
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004487static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004488{
4489 struct stream_interface *si = appctx->owner;
4490 struct proxy *px;
4491 struct server *sv;
4492 char *line;
4493
4494
4495 /* split "backend/server" and make <line> point to server */
4496 for (line = args[2]; *line; line++)
4497 if (*line == '/') {
4498 *line++ = '\0';
4499 break;
4500 }
4501
Willy Tarreau9d008692019-08-09 11:21:01 +02004502 if (!*line)
4503 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004504
Willy Tarreau9d008692019-08-09 11:21:01 +02004505 if (!get_backend_server(args[2], line, &px, &sv))
4506 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004507
4508 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004509 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4510 sv->iweight);
4511 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004512 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004513 return 0;
4514 }
William Lallemand6b160942016-11-22 12:34:35 +01004515 return 1;
4516}
4517
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004518/* Parse a "set weight" command.
4519 *
4520 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004521 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004522static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004523{
4524 struct server *sv;
4525 const char *warning;
4526
4527 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4528 return 1;
4529
4530 sv = cli_find_server(appctx, args[2]);
4531 if (!sv)
4532 return 1;
4533
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004534 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4535
William Lallemand6b160942016-11-22 12:34:35 +01004536 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004537 if (warning)
4538 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004539
4540 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4541
William Lallemand6b160942016-11-22 12:34:35 +01004542 return 1;
4543}
4544
Willy Tarreau46b7f532018-08-21 11:54:26 +02004545/* parse a "set maxconn server" command. It always returns 1.
4546 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004547 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004548 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004549static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004550{
4551 struct server *sv;
4552 const char *warning;
4553
4554 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4555 return 1;
4556
4557 sv = cli_find_server(appctx, args[3]);
4558 if (!sv)
4559 return 1;
4560
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004561 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4562
Willy Tarreaub8026272016-11-23 11:26:56 +01004563 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004564 if (warning)
4565 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004566
4567 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4568
Willy Tarreaub8026272016-11-23 11:26:56 +01004569 return 1;
4570}
William Lallemand6b160942016-11-22 12:34:35 +01004571
Willy Tarreau46b7f532018-08-21 11:54:26 +02004572/* parse a "disable agent" command. It always returns 1.
4573 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004574 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004575 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004576static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004577{
4578 struct server *sv;
4579
4580 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4581 return 1;
4582
4583 sv = cli_find_server(appctx, args[2]);
4584 if (!sv)
4585 return 1;
4586
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004587 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004588 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004589 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004590 return 1;
4591}
4592
Willy Tarreau46b7f532018-08-21 11:54:26 +02004593/* parse a "disable health" command. It always returns 1.
4594 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004595 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004596 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004597static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004598{
4599 struct server *sv;
4600
4601 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4602 return 1;
4603
4604 sv = cli_find_server(appctx, args[2]);
4605 if (!sv)
4606 return 1;
4607
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004608 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004609 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004610 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004611 return 1;
4612}
4613
Willy Tarreau46b7f532018-08-21 11:54:26 +02004614/* parse a "disable server" command. It always returns 1.
4615 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004616 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004617 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004618static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004619{
4620 struct server *sv;
4621
4622 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4623 return 1;
4624
4625 sv = cli_find_server(appctx, args[2]);
4626 if (!sv)
4627 return 1;
4628
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004629 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004630 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004631 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004632 return 1;
4633}
4634
Willy Tarreau46b7f532018-08-21 11:54:26 +02004635/* parse a "enable agent" command. It always returns 1.
4636 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004637 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004638 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004639static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004640{
4641 struct server *sv;
4642
4643 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4644 return 1;
4645
4646 sv = cli_find_server(appctx, args[2]);
4647 if (!sv)
4648 return 1;
4649
Willy Tarreau9d008692019-08-09 11:21:01 +02004650 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4651 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004652
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004653 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004654 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004655 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004656 return 1;
4657}
4658
Willy Tarreau46b7f532018-08-21 11:54:26 +02004659/* parse a "enable health" command. It always returns 1.
4660 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004661 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004662 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004663static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004664{
4665 struct server *sv;
4666
4667 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4668 return 1;
4669
4670 sv = cli_find_server(appctx, args[2]);
4671 if (!sv)
4672 return 1;
4673
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004674 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004675 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004676 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004677 return 1;
4678}
4679
Willy Tarreau46b7f532018-08-21 11:54:26 +02004680/* parse a "enable server" command. It always returns 1.
4681 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004682 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004683 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004684static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004685{
4686 struct server *sv;
4687
4688 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4689 return 1;
4690
4691 sv = cli_find_server(appctx, args[2]);
4692 if (!sv)
4693 return 1;
4694
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004695 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004696 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004697 if (!(sv->flags & SRV_F_COOKIESET)
4698 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4699 sv->cookie)
4700 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004701 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004702 return 1;
4703}
4704
William Lallemand222baf22016-11-19 02:00:33 +01004705/* register cli keywords */
4706static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004707 { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004708 { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004709 { { "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 +01004710 { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004711 { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004712 { { "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 +01004713 { { "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 +01004714 { { "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 +01004715 { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight },
4716 { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight },
4717
William Lallemand222baf22016-11-19 02:00:33 +01004718 {{},}
4719}};
4720
Willy Tarreau0108d902018-11-25 19:14:37 +01004721INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004722
Emeric Brun64cc49c2017-10-03 14:46:45 +02004723/*
4724 * This function applies server's status changes, it is
4725 * is designed to be called asynchronously.
4726 *
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004727 * Must be called with the server lock held. This may also be called at init
4728 * time as the result of parsing the state file, in which case no lock will be
4729 * held, and the server's warmup task can be null.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004730 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004731static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004732{
4733 struct check *check = &s->check;
4734 int xferred;
4735 struct proxy *px = s->proxy;
4736 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4737 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4738 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004739 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004740
Emeric Brun64cc49c2017-10-03 14:46:45 +02004741 /* If currently main is not set we try to apply pending state changes */
4742 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4743 int next_admin;
4744
4745 /* Backup next admin */
4746 next_admin = s->next_admin;
4747
4748 /* restore current admin state */
4749 s->next_admin = s->cur_admin;
4750
4751 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4752 s->last_change = now.tv_sec;
4753 if (s->proxy->lbprm.set_server_status_down)
4754 s->proxy->lbprm.set_server_status_down(s);
4755
4756 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4757 srv_shutdown_streams(s, SF_ERR_DOWN);
4758
4759 /* we might have streams queued on this server and waiting for
4760 * a connection. Those which are redispatchable will be queued
4761 * to another server or to the proxy itself.
4762 */
4763 xferred = pendconn_redistribute(s);
4764
4765 tmptrash = alloc_trash_chunk();
4766 if (tmptrash) {
4767 chunk_printf(tmptrash,
4768 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4769 s->proxy->id, s->id);
4770
Emeric Brun5a133512017-10-19 14:42:30 +02004771 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004772 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004773
4774 /* we don't send an alert if the server was previously paused */
4775 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004776 send_log(s->proxy, log_level, "%s.\n",
4777 tmptrash->area);
4778 send_email_alert(s, log_level, "%s",
4779 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004780 free_trash_chunk(tmptrash);
4781 tmptrash = NULL;
4782 }
4783 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4784 set_backend_down(s->proxy);
4785
4786 s->counters.down_trans++;
4787 }
4788 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4789 s->last_change = now.tv_sec;
4790 if (s->proxy->lbprm.set_server_status_down)
4791 s->proxy->lbprm.set_server_status_down(s);
4792
4793 /* we might have streams queued on this server and waiting for
4794 * a connection. Those which are redispatchable will be queued
4795 * to another server or to the proxy itself.
4796 */
4797 xferred = pendconn_redistribute(s);
4798
4799 tmptrash = alloc_trash_chunk();
4800 if (tmptrash) {
4801 chunk_printf(tmptrash,
4802 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4803 s->proxy->id, s->id);
4804
Emeric Brun5a133512017-10-19 14:42:30 +02004805 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004806
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004807 ha_warning("%s.\n", tmptrash->area);
4808 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4809 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004810 free_trash_chunk(tmptrash);
4811 tmptrash = NULL;
4812 }
4813
4814 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4815 set_backend_down(s->proxy);
4816 }
4817 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4818 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4819 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4820 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4821 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4822 s->proxy->last_change = now.tv_sec;
4823 }
4824
Amaury Denoyellefe2bf092020-10-29 15:59:04 +01004825 if (s->cur_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
Emeric Brun64cc49c2017-10-03 14:46:45 +02004826 s->down_time += now.tv_sec - s->last_change;
4827
4828 s->last_change = now.tv_sec;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004829 if (s->next_state == SRV_ST_STARTING && s->warmup)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004830 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4831
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004832 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004833 /* now propagate the status change to any LB algorithms */
4834 if (px->lbprm.update_server_eweight)
4835 px->lbprm.update_server_eweight(s);
4836 else if (srv_willbe_usable(s)) {
4837 if (px->lbprm.set_server_status_up)
4838 px->lbprm.set_server_status_up(s);
4839 }
4840 else {
4841 if (px->lbprm.set_server_status_down)
4842 px->lbprm.set_server_status_down(s);
4843 }
4844
4845 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4846 * and it's not a backup server and its effective weight is > 0,
4847 * then it can accept new connections, so we shut down all streams
4848 * on all backup servers.
4849 */
4850 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4851 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4852 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4853
4854 /* check if we can handle some connections queued at the proxy. We
4855 * will take as many as we can handle.
4856 */
4857 xferred = pendconn_grab_from_px(s);
4858
4859 tmptrash = alloc_trash_chunk();
4860 if (tmptrash) {
4861 chunk_printf(tmptrash,
4862 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
4863 s->proxy->id, s->id);
4864
Emeric Brun5a133512017-10-19 14:42:30 +02004865 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004866 ha_warning("%s.\n", tmptrash->area);
4867 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4868 tmptrash->area);
4869 send_email_alert(s, LOG_NOTICE, "%s",
4870 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004871 free_trash_chunk(tmptrash);
4872 tmptrash = NULL;
4873 }
4874
4875 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4876 set_backend_down(s->proxy);
4877 }
4878 else if (s->cur_eweight != s->next_eweight) {
4879 /* now propagate the status change to any LB algorithms */
4880 if (px->lbprm.update_server_eweight)
4881 px->lbprm.update_server_eweight(s);
4882 else if (srv_willbe_usable(s)) {
4883 if (px->lbprm.set_server_status_up)
4884 px->lbprm.set_server_status_up(s);
4885 }
4886 else {
4887 if (px->lbprm.set_server_status_down)
4888 px->lbprm.set_server_status_down(s);
4889 }
4890
4891 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4892 set_backend_down(s->proxy);
4893 }
4894
4895 s->next_admin = next_admin;
4896 }
4897
Emeric Brun5a133512017-10-19 14:42:30 +02004898 /* reset operational state change */
4899 *s->op_st_chg.reason = 0;
4900 s->op_st_chg.status = s->op_st_chg.code = -1;
4901 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004902
4903 /* Now we try to apply pending admin changes */
4904
4905 /* Maintenance must also disable health checks */
4906 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
4907 if (s->check.state & CHK_ST_ENABLED) {
4908 s->check.state |= CHK_ST_PAUSED;
4909 check->health = 0;
4910 }
4911
4912 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02004913 tmptrash = alloc_trash_chunk();
4914 if (tmptrash) {
4915 chunk_printf(tmptrash,
4916 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
4917 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4918 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02004919
Olivier Houchard796a2b32017-10-24 17:42:47 +02004920 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02004921
Olivier Houchard796a2b32017-10-24 17:42:47 +02004922 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004923 ha_warning("%s.\n", tmptrash->area);
4924 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4925 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02004926 }
4927 free_trash_chunk(tmptrash);
4928 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004929 }
Emeric Brun8f298292017-12-06 16:47:17 +01004930 /* commit new admin status */
4931
4932 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004933 }
4934 else { /* server was still running */
4935 check->health = 0; /* failure */
4936 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01004937
4938 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004939 if (s->proxy->lbprm.set_server_status_down)
4940 s->proxy->lbprm.set_server_status_down(s);
4941
Emeric Brun64cc49c2017-10-03 14:46:45 +02004942 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4943 srv_shutdown_streams(s, SF_ERR_DOWN);
4944
William Dauchy6318d332020-05-02 21:52:36 +02004945 /* force connection cleanup on the given server */
4946 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004947 /* we might have streams queued on this server and waiting for
4948 * a connection. Those which are redispatchable will be queued
4949 * to another server or to the proxy itself.
4950 */
4951 xferred = pendconn_redistribute(s);
4952
4953 tmptrash = alloc_trash_chunk();
4954 if (tmptrash) {
4955 chunk_printf(tmptrash,
4956 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
4957 s->flags & SRV_F_BACKUP ? "Backup " : "",
4958 s->proxy->id, s->id,
4959 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
4960
4961 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
4962
4963 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004964 ha_warning("%s.\n", tmptrash->area);
4965 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
4966 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004967 }
4968 free_trash_chunk(tmptrash);
4969 tmptrash = NULL;
4970 }
4971 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4972 set_backend_down(s->proxy);
4973
4974 s->counters.down_trans++;
4975 }
4976 }
4977 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
4978 /* OK here we're leaving maintenance, we have many things to check,
4979 * because the server might possibly be coming back up depending on
4980 * its state. In practice, leaving maintenance means that we should
4981 * immediately turn to UP (more or less the slowstart) under the
4982 * following conditions :
4983 * - server is neither checked nor tracked
4984 * - server tracks another server which is not checked
4985 * - server tracks another server which is already up
4986 * Which sums up as something simpler :
4987 * "either the tracking server is up or the server's checks are disabled
4988 * or up". Otherwise we only re-enable health checks. There's a special
4989 * case associated to the stopping state which can be inherited. Note
4990 * that the server might still be in drain mode, which is naturally dealt
4991 * with by the lower level functions.
4992 */
4993
4994 if (s->check.state & CHK_ST_ENABLED) {
4995 s->check.state &= ~CHK_ST_PAUSED;
4996 check->health = check->rise; /* start OK but check immediately */
4997 }
4998
4999 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
5000 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
5001 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
5002 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
5003 s->next_state = SRV_ST_STOPPING;
5004 }
5005 else {
5006 s->next_state = SRV_ST_STARTING;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005007 if (s->slowstart > 0) {
5008 if (s->warmup)
5009 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5010 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005011 else
5012 s->next_state = SRV_ST_RUNNING;
5013 }
5014
5015 }
5016
5017 tmptrash = alloc_trash_chunk();
5018 if (tmptrash) {
5019 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5020 chunk_printf(tmptrash,
5021 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
5022 s->flags & SRV_F_BACKUP ? "Backup " : "",
5023 s->proxy->id, s->id,
5024 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5025 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5026 }
5027 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5028 chunk_printf(tmptrash,
5029 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
5030 s->flags & SRV_F_BACKUP ? "Backup " : "",
5031 s->proxy->id, s->id, s->hostname,
5032 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5033 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5034 }
5035 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5036 chunk_printf(tmptrash,
5037 "%sServer %s/%s is %s/%s (leaving maintenance)",
5038 s->flags & SRV_F_BACKUP ? "Backup " : "",
5039 s->proxy->id, s->id,
5040 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5041 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5042 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005043 ha_warning("%s.\n", tmptrash->area);
5044 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5045 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005046 free_trash_chunk(tmptrash);
5047 tmptrash = NULL;
5048 }
5049
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005050 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005051 /* now propagate the status change to any LB algorithms */
5052 if (px->lbprm.update_server_eweight)
5053 px->lbprm.update_server_eweight(s);
5054 else if (srv_willbe_usable(s)) {
5055 if (px->lbprm.set_server_status_up)
5056 px->lbprm.set_server_status_up(s);
5057 }
5058 else {
5059 if (px->lbprm.set_server_status_down)
5060 px->lbprm.set_server_status_down(s);
5061 }
5062
5063 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5064 set_backend_down(s->proxy);
5065
Willy Tarreau6a78e612018-08-07 10:14:53 +02005066 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5067 * and it's not a backup server and its effective weight is > 0,
5068 * then it can accept new connections, so we shut down all streams
5069 * on all backup servers.
5070 */
5071 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5072 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5073 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5074
5075 /* check if we can handle some connections queued at the proxy. We
5076 * will take as many as we can handle.
5077 */
5078 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005079 }
5080 else if (s->next_admin & SRV_ADMF_MAINT) {
5081 /* remaining in maintenance mode, let's inform precisely about the
5082 * situation.
5083 */
5084 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5085 tmptrash = alloc_trash_chunk();
5086 if (tmptrash) {
5087 chunk_printf(tmptrash,
5088 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5089 s->flags & SRV_F_BACKUP ? "Backup " : "",
5090 s->proxy->id, s->id);
5091
5092 if (s->track) /* normally it's mandatory here */
5093 chunk_appendf(tmptrash, " via %s/%s",
5094 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005095 ha_warning("%s.\n", tmptrash->area);
5096 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5097 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005098 free_trash_chunk(tmptrash);
5099 tmptrash = NULL;
5100 }
5101 }
5102 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5103 tmptrash = alloc_trash_chunk();
5104 if (tmptrash) {
5105 chunk_printf(tmptrash,
5106 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5107 s->flags & SRV_F_BACKUP ? "Backup " : "",
5108 s->proxy->id, s->id, s->hostname);
5109
5110 if (s->track) /* normally it's mandatory here */
5111 chunk_appendf(tmptrash, " via %s/%s",
5112 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005113 ha_warning("%s.\n", tmptrash->area);
5114 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5115 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005116 free_trash_chunk(tmptrash);
5117 tmptrash = NULL;
5118 }
5119 }
5120 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5121 tmptrash = alloc_trash_chunk();
5122 if (tmptrash) {
5123 chunk_printf(tmptrash,
5124 "%sServer %s/%s remains in forced maintenance",
5125 s->flags & SRV_F_BACKUP ? "Backup " : "",
5126 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005127 ha_warning("%s.\n", tmptrash->area);
5128 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5129 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005130 free_trash_chunk(tmptrash);
5131 tmptrash = NULL;
5132 }
5133 }
5134 /* don't report anything when leaving drain mode and remaining in maintenance */
5135
5136 s->cur_admin = s->next_admin;
5137 }
5138
5139 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5140 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5141 /* drain state is applied only if not yet in maint */
5142
5143 s->last_change = now.tv_sec;
5144 if (px->lbprm.set_server_status_down)
5145 px->lbprm.set_server_status_down(s);
5146
5147 /* we might have streams queued on this server and waiting for
5148 * a connection. Those which are redispatchable will be queued
5149 * to another server or to the proxy itself.
5150 */
5151 xferred = pendconn_redistribute(s);
5152
5153 tmptrash = alloc_trash_chunk();
5154 if (tmptrash) {
5155 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5156 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5157 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5158
5159 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5160
5161 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005162 ha_warning("%s.\n", tmptrash->area);
5163 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5164 tmptrash->area);
5165 send_email_alert(s, LOG_NOTICE, "%s",
5166 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005167 }
5168 free_trash_chunk(tmptrash);
5169 tmptrash = NULL;
5170 }
5171
5172 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5173 set_backend_down(s->proxy);
5174 }
5175 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5176 /* OK completely leaving drain mode */
5177 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5178 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5179 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5180 s->proxy->last_change = now.tv_sec;
5181 }
5182
5183 if (s->last_change < now.tv_sec) // ignore negative times
5184 s->down_time += now.tv_sec - s->last_change;
5185 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005186 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005187
5188 tmptrash = alloc_trash_chunk();
5189 if (tmptrash) {
5190 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5191 chunk_printf(tmptrash,
5192 "%sServer %s/%s is %s (leaving forced drain)",
5193 s->flags & SRV_F_BACKUP ? "Backup " : "",
5194 s->proxy->id, s->id,
5195 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5196 }
5197 else {
5198 chunk_printf(tmptrash,
5199 "%sServer %s/%s is %s (leaving drain)",
5200 s->flags & SRV_F_BACKUP ? "Backup " : "",
5201 s->proxy->id, s->id,
5202 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5203 if (s->track) /* normally it's mandatory here */
5204 chunk_appendf(tmptrash, " via %s/%s",
5205 s->track->proxy->id, s->track->id);
5206 }
5207
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005208 ha_warning("%s.\n", tmptrash->area);
5209 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5210 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005211 free_trash_chunk(tmptrash);
5212 tmptrash = NULL;
5213 }
5214
5215 /* now propagate the status change to any LB algorithms */
5216 if (px->lbprm.update_server_eweight)
5217 px->lbprm.update_server_eweight(s);
5218 else if (srv_willbe_usable(s)) {
5219 if (px->lbprm.set_server_status_up)
5220 px->lbprm.set_server_status_up(s);
5221 }
5222 else {
5223 if (px->lbprm.set_server_status_down)
5224 px->lbprm.set_server_status_down(s);
5225 }
5226 }
5227 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5228 /* remaining in drain mode after removing one of its flags */
5229
5230 tmptrash = alloc_trash_chunk();
5231 if (tmptrash) {
5232 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5233 chunk_printf(tmptrash,
5234 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5235 s->flags & SRV_F_BACKUP ? "Backup " : "",
5236 s->proxy->id, s->id);
5237
5238 if (s->track) /* normally it's mandatory here */
5239 chunk_appendf(tmptrash, " via %s/%s",
5240 s->track->proxy->id, s->track->id);
5241 }
5242 else {
5243 chunk_printf(tmptrash,
5244 "%sServer %s/%s remains in forced drain mode",
5245 s->flags & SRV_F_BACKUP ? "Backup " : "",
5246 s->proxy->id, s->id);
5247 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005248 ha_warning("%s.\n", tmptrash->area);
5249 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5250 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005251 free_trash_chunk(tmptrash);
5252 tmptrash = NULL;
5253 }
5254
5255 /* commit new admin status */
5256
5257 s->cur_admin = s->next_admin;
5258 }
5259 }
5260
5261 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005262 *s->adm_st_chg_cause = 0;
5263}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005264
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005265struct task *srv_cleanup_toremove_connections(struct task *task, void *context, unsigned short state)
5266{
5267 struct connection *conn;
5268
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005269 while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns,
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005270 struct connection *, list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005271 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005272 }
5273
5274 return task;
5275}
5276
Olivier Houchardff1d0922020-06-29 20:15:59 +02005277/* Move toremove_nb connections from idle_list to toremove_list, -1 means
5278 * moving them all.
5279 * Returns the number of connections moved.
5280 */
5281static int srv_migrate_conns_to_remove(struct mt_list *idle_list, struct mt_list *toremove_list, int toremove_nb)
5282{
5283 struct mt_list *elt1, elt2;
5284 struct connection *conn;
5285 int i = 0;
5286
5287 mt_list_for_each_entry_safe(conn, idle_list, list, elt1, elt2) {
5288 if (toremove_nb != -1 && i >= toremove_nb)
5289 break;
5290 MT_LIST_DEL_SAFE_NOINIT(elt1);
Willy Tarreaude4db172020-07-10 08:10:29 +02005291 MT_LIST_ADDQ(toremove_list, &conn->list);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005292 i++;
5293 }
5294 return i;
5295}
William Dauchy6318d332020-05-02 21:52:36 +02005296/* cleanup connections for a given server
5297 * might be useful when going on forced maintenance or live changing ip/port
5298 */
William Dauchy707ad322020-05-04 13:52:40 +02005299static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005300{
William Dauchy6318d332020-05-02 21:52:36 +02005301 int did_remove;
5302 int i;
William Dauchy6318d332020-05-02 21:52:36 +02005303
Amaury Denoyelle10d5c312021-01-06 14:28:51 +01005304 /* nothing to do if pool-max-conn is null */
5305 if (!srv->max_idle_conns)
5306 return;
5307
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005308 /* check all threads starting with ours */
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005309 for (i = tid;;) {
William Dauchy6318d332020-05-02 21:52:36 +02005310 did_remove = 0;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005311 if (srv_migrate_conns_to_remove(&srv->idle_conns[i], &idle_conns[i].toremove_conns, -1) > 0)
William Dauchy6318d332020-05-02 21:52:36 +02005312 did_remove = 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005313 if (srv_migrate_conns_to_remove(&srv->safe_conns[i], &idle_conns[i].toremove_conns, -1) > 0)
5314 did_remove = 1;
William Dauchy6318d332020-05-02 21:52:36 +02005315 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005316 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005317
5318 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5319 break;
William Dauchy6318d332020-05-02 21:52:36 +02005320 }
William Dauchy6318d332020-05-02 21:52:36 +02005321}
5322
Willy Tarreau980855b2019-02-07 14:59:29 +01005323struct task *srv_cleanup_idle_connections(struct task *task, void *context, unsigned short state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005324{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005325 struct server *srv;
5326 struct eb32_node *eb;
5327 int i;
5328 unsigned int next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005329
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005330 next_wakeup = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005331 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5332 while (1) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005333 int exceed_conns;
5334 int to_kill;
5335 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005336
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005337 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5338 if (!eb) {
5339 /* we might have reached the end of the tree, typically because
5340 * <now_ms> is in the first half and we're first scanning the last
5341 * half. Let's loop back to the beginning of the tree now.
5342 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005343
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005344 eb = eb32_first(&idle_conn_srv);
5345 if (likely(!eb))
5346 break;
5347 }
5348 if (tick_is_lt(now_ms, eb->key)) {
5349 /* timer not expired yet, revisit it later */
5350 next_wakeup = eb->key;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005351 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005352 }
5353 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005354
5355 /* Calculate how many idle connections we want to kill :
5356 * we want to remove half the difference between the total
5357 * of established connections (used or idle) and the max
5358 * number of used connections.
5359 */
5360 curr_idle = srv->curr_idle_conns;
5361 if (curr_idle == 0)
5362 goto remove;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005363 exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005364 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005365
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005366 srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns) / 2;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005367 if (srv->est_need_conns < srv->max_used_conns)
5368 srv->est_need_conns = srv->max_used_conns;
5369
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005370 srv->max_used_conns = srv->curr_used_conns;
5371
Willy Tarreau18ed7892020-07-02 19:05:30 +02005372 if (exceed_conns <= 0)
5373 goto remove;
5374
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005375 /* check all threads starting with ours */
5376 for (i = tid;;) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005377 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005378 int j;
5379 int did_remove = 0;
5380
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005381 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5382 curr_idle + 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005383
5384 j = srv_migrate_conns_to_remove(&srv->idle_conns[i], &idle_conns[i].toremove_conns, max_conn);
5385 if (j > 0)
5386 did_remove = 1;
5387 if (max_conn - j > 0 &&
5388 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 +01005389 did_remove = 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005390
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005391 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005392 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005393
5394 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5395 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005396 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005397remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005398 eb32_delete(&srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005399
5400 if (srv->curr_idle_conns) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005401 /* There are still more idle connections, add the
5402 * server back in the tree.
5403 */
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005404 srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005405 eb32_insert(&idle_conn_srv, &srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005406 next_wakeup = tick_first(next_wakeup, srv->idle_node.key);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005407 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005408 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005409 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5410
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005411 task->expire = next_wakeup;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005412 return task;
5413}
Olivier Houchard88698d92019-04-16 19:07:22 +02005414
Willy Tarreau76cc6992020-07-01 18:49:24 +02005415/* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */
5416static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx,
5417 struct proxy *defpx, const char *file, int line,
5418 char **err)
5419{
5420 if (too_many_args(1, args, err, NULL))
5421 return -1;
5422
5423 if (strcmp(args[1], "on") == 0)
5424 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
5425 else if (strcmp(args[1], "off") == 0)
5426 global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
5427 else {
5428 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
5429 return -1;
5430 }
5431 return 0;
5432}
5433
Olivier Houchard88698d92019-04-16 19:07:22 +02005434/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5435static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
5436 struct proxy *defpx, const char *file, int line,
5437 char **err)
5438{
5439 int arg = -1;
5440
5441 if (too_many_args(1, args, err, NULL))
5442 return -1;
5443
5444 if (*(args[1]) != 0)
5445 arg = atoi(args[1]);
5446
5447 if (arg < 0 || arg > 100) {
5448 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5449 return -1;
5450 }
5451
5452 if (args[0][10] == 'h')
5453 global.tune.pool_high_ratio = arg;
5454 else
5455 global.tune.pool_low_ratio = arg;
5456 return 0;
5457}
5458
5459/* config keyword parsers */
5460static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau76cc6992020-07-01 18:49:24 +02005461 { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared },
Olivier Houchard88698d92019-04-16 19:07:22 +02005462 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5463 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5464 { 0, NULL, NULL }
5465}};
5466
5467INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5468
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005469/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005470 * Local variables:
5471 * c-indent-level: 8
5472 * c-basic-offset: 8
5473 * End:
5474 */