blob: b9fa115b9ddf042497dd03188e5df65a24c5cfe0 [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 Tarreau8d366972020-05-27 16:10:29 +020030#include <haproxy/errors.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020031#include <haproxy/global.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020032#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020033#include <haproxy/mailers.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +020034#include <haproxy/namespace.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020035#include <haproxy/port_range.h>
36#include <haproxy/protocol.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020037#include <haproxy/queue.h>
Emeric Brunc9437992021-02-12 19:42:55 +010038#include <haproxy/resolvers.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);
Emeric Brun08622d32020-12-23 17:41:43 +010053static int srv_set_fqdn(struct server *srv, const char *fqdn, int resolv_locked);
Christopher Faulet2a031ec2021-02-12 19:02:21 +010054static int srv_state_parse_line(char *buf, const int version, char **params);
Baptiste Assmannda29fe22019-06-13 13:24:29 +020055static int srv_state_get_version(FILE *f);
William Dauchy6318d332020-05-02 21:52:36 +020056static void srv_cleanup_connections(struct server *srv);
William Dauchyb456e1f2021-02-11 22:51:23 +010057static const char *update_server_check_addr_port(struct server *s, const char *addr,
58 const char *port);
William Dauchy7cabc062021-02-11 22:51:24 +010059static const char *update_server_agent_addr_port(struct server *s, const char *addr,
60 const char *port);
Willy Tarreaubaaee002006-06-26 02:48:02 +020061
Willy Tarreau21faa912012-10-10 08:27:36 +020062/* List head of all known server keywords */
63static struct srv_kw_list srv_keywords = {
64 .list = LIST_HEAD_INIT(srv_keywords.list)
65};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020066
Willy Tarreauaf613e82020-06-05 08:40:51 +020067__decl_thread(HA_SPINLOCK_T idle_conn_srv_lock);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010068struct eb_root idle_conn_srv = EB_ROOT;
69struct task *idle_conn_task = NULL;
Olivier Houchard9ea5d362019-02-14 18:29:09 +010070
Frédéric Lécaille7da71292019-05-20 09:47:07 +020071/* The server names dictionary */
Thayne McCombs92149f92020-11-20 01:28:26 -070072struct dict server_key_dict = {
73 .name = "server keys",
Frédéric Lécaille7da71292019-05-20 09:47:07 +020074 .values = EB_ROOT_UNIQUE,
75};
76
Simon Hormana3608442013-11-01 16:46:15 +090077int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020078{
Amaury Denoyellee6ba7912020-10-29 15:59:05 +010079 if ((s->cur_state != SRV_ST_STOPPED) || s->last_change >= now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020080 return s->down_time;
81
82 return now.tv_sec - s->last_change + s->down_time;
83}
Willy Tarreaubaaee002006-06-26 02:48:02 +020084
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050085int srv_lastsession(const struct server *s)
86{
87 if (s->counters.last_sess)
88 return now.tv_sec - s->counters.last_sess;
89
90 return -1;
91}
92
Simon Horman4a741432013-02-23 15:35:38 +090093int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020094{
Simon Horman4a741432013-02-23 15:35:38 +090095 const struct server *s = check->server;
96
Willy Tarreauff5ae352013-12-11 20:36:34 +010097 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +090098 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +010099
Emeric Brun52a91d32017-08-31 14:41:55 +0200100 if ((s->next_state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +0900101 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100102
Simon Horman4a741432013-02-23 15:35:38 +0900103 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100104}
105
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100106/*
107 * Check that we did not get a hash collision.
Willy Tarreau595e7672020-10-20 17:30:08 +0200108 * Unlikely, but it can happen. The server's proxy must be at least
109 * read-locked.
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100110 */
111static inline void srv_check_for_dup_dyncookie(struct server *s)
Olivier Houchard4e694042017-03-14 20:01:29 +0100112{
113 struct proxy *p = s->proxy;
114 struct server *tmpserv;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100115
116 for (tmpserv = p->srv; tmpserv != NULL;
117 tmpserv = tmpserv->next) {
118 if (tmpserv == s)
119 continue;
120 if (tmpserv->next_admin & SRV_ADMF_FMAINT)
121 continue;
122 if (tmpserv->cookie &&
123 strcmp(tmpserv->cookie, s->cookie) == 0) {
124 ha_warning("We generated two equal cookies for two different servers.\n"
125 "Please change the secret key for '%s'.\n",
126 s->proxy->id);
127 }
128 }
129
130}
131
Willy Tarreau46b7f532018-08-21 11:54:26 +0200132/*
Willy Tarreau595e7672020-10-20 17:30:08 +0200133 * Must be called with the server lock held, and will read-lock the proxy.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200134 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100135void srv_set_dyncookie(struct server *s)
136{
137 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100138 char *tmpbuf;
139 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100140 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100141 size_t buffer_len;
142 int addr_len;
143 int port;
144
Willy Tarreau595e7672020-10-20 17:30:08 +0200145 HA_RWLOCK_RDLOCK(PROXY_LOCK, &p->lock);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200146
Olivier Houchard4e694042017-03-14 20:01:29 +0100147 if ((s->flags & SRV_F_COOKIESET) ||
148 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
149 s->proxy->dyncookie_key == NULL)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200150 goto out;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100151 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100152
153 if (s->addr.ss_family != AF_INET &&
154 s->addr.ss_family != AF_INET6)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200155 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100156 /*
157 * Buffer to calculate the cookie value.
158 * The buffer contains the secret key + the server IP address
159 * + the TCP port.
160 */
161 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
162 /*
163 * The TCP port should use only 2 bytes, but is stored in
164 * an unsigned int in struct server, so let's use 4, to be
165 * on the safe side.
166 */
167 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200168 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100169 memcpy(tmpbuf, p->dyncookie_key, key_len);
170 memcpy(&(tmpbuf[key_len]),
171 s->addr.ss_family == AF_INET ?
172 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
173 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
174 addr_len);
175 /*
176 * Make sure it's the same across all the load balancers,
177 * no matter their endianness.
178 */
179 port = htonl(s->svc_port);
180 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
181 hash_value = XXH64(tmpbuf, buffer_len, 0);
182 memprintf(&s->cookie, "%016llx", hash_value);
183 if (!s->cookie)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200184 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100185 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100186
187 /* Don't bother checking if the dyncookie is duplicated if
188 * the server is marked as "disabled", maybe it doesn't have
189 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100190 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100191 if (!(s->next_admin & SRV_ADMF_FMAINT))
192 srv_check_for_dup_dyncookie(s);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200193 out:
Willy Tarreau595e7672020-10-20 17:30:08 +0200194 HA_RWLOCK_RDUNLOCK(PROXY_LOCK, &p->lock);
Olivier Houchard4e694042017-03-14 20:01:29 +0100195}
196
Willy Tarreau21faa912012-10-10 08:27:36 +0200197/*
Thayne McCombs92149f92020-11-20 01:28:26 -0700198 * Must be called with the server lock held, and will write-lock the proxy.
199 */
200static void srv_set_addr_desc(struct server *s)
201{
202 struct proxy *p = s->proxy;
203 char *key;
204
205 key = sa2str(&s->addr, s->svc_port, s->flags & SRV_F_MAPPORTS);
206
207 if (s->addr_node.key) {
Thayne McCombs24da7e12021-01-05 23:10:09 -0700208 if (key && strcmp(key, s->addr_node.key) == 0) {
Thayne McCombs92149f92020-11-20 01:28:26 -0700209 free(key);
210 return;
211 }
212
213 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
214 ebpt_delete(&s->addr_node);
215 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
216
217 free(s->addr_node.key);
218 }
219
220 s->addr_node.key = key;
221
Thayne McCombs24da7e12021-01-05 23:10:09 -0700222 if (s->addr_node.key) {
223 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
224 ebis_insert(&p->used_server_addr, &s->addr_node);
225 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
226 }
Thayne McCombs92149f92020-11-20 01:28:26 -0700227}
228
229/*
Willy Tarreau21faa912012-10-10 08:27:36 +0200230 * Registers the server keyword list <kwl> as a list of valid keywords for next
231 * parsing sessions.
232 */
233void srv_register_keywords(struct srv_kw_list *kwl)
234{
235 LIST_ADDQ(&srv_keywords.list, &kwl->list);
236}
237
238/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
239 * keyword is found with a NULL ->parse() function, then an attempt is made to
240 * find one with a valid ->parse() function. This way it is possible to declare
241 * platform-dependant, known keywords as NULL, then only declare them as valid
242 * if some options are met. Note that if the requested keyword contains an
243 * opening parenthesis, everything from this point is ignored.
244 */
245struct srv_kw *srv_find_kw(const char *kw)
246{
247 int index;
248 const char *kwend;
249 struct srv_kw_list *kwl;
250 struct srv_kw *ret = NULL;
251
252 kwend = strchr(kw, '(');
253 if (!kwend)
254 kwend = kw + strlen(kw);
255
256 list_for_each_entry(kwl, &srv_keywords.list, list) {
257 for (index = 0; kwl->kw[index].kw != NULL; index++) {
258 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
259 kwl->kw[index].kw[kwend-kw] == 0) {
260 if (kwl->kw[index].parse)
261 return &kwl->kw[index]; /* found it !*/
262 else
263 ret = &kwl->kw[index]; /* may be OK */
264 }
265 }
266 }
267 return ret;
268}
269
270/* Dumps all registered "server" keywords to the <out> string pointer. The
271 * unsupported keywords are only dumped if their supported form was not
272 * found.
273 */
274void srv_dump_kws(char **out)
275{
276 struct srv_kw_list *kwl;
277 int index;
278
Christopher Faulet784063e2020-05-18 12:14:18 +0200279 if (!out)
280 return;
281
Willy Tarreau21faa912012-10-10 08:27:36 +0200282 *out = NULL;
283 list_for_each_entry(kwl, &srv_keywords.list, list) {
284 for (index = 0; kwl->kw[index].kw != NULL; index++) {
285 if (kwl->kw[index].parse ||
286 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
287 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
288 kwl->scope,
289 kwl->kw[index].kw,
290 kwl->kw[index].skip ? " <arg>" : "",
291 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
292 kwl->kw[index].parse ? "" : " (not supported)");
293 }
294 }
295 }
296}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100297
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100298/* Parse the "backup" server keyword */
299static int srv_parse_backup(char **args, int *cur_arg,
300 struct proxy *curproxy, struct server *newsrv, char **err)
301{
302 newsrv->flags |= SRV_F_BACKUP;
303 return 0;
304}
305
Alexander Liu2a54bb72019-05-22 19:44:48 +0800306
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100307/* Parse the "cookie" server keyword */
308static int srv_parse_cookie(char **args, int *cur_arg,
309 struct proxy *curproxy, struct server *newsrv, char **err)
310{
311 char *arg;
312
313 arg = args[*cur_arg + 1];
314 if (!*arg) {
315 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
316 return ERR_ALERT | ERR_FATAL;
317 }
318
319 free(newsrv->cookie);
320 newsrv->cookie = strdup(arg);
321 newsrv->cklen = strlen(arg);
322 newsrv->flags |= SRV_F_COOKIESET;
323 return 0;
324}
325
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100326/* Parse the "disabled" server keyword */
327static int srv_parse_disabled(char **args, int *cur_arg,
328 struct proxy *curproxy, struct server *newsrv, char **err)
329{
Emeric Brun52a91d32017-08-31 14:41:55 +0200330 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
331 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100332 newsrv->check.state |= CHK_ST_PAUSED;
333 newsrv->check.health = 0;
334 return 0;
335}
336
337/* Parse the "enabled" server keyword */
338static int srv_parse_enabled(char **args, int *cur_arg,
339 struct proxy *curproxy, struct server *newsrv, char **err)
340{
Emeric Brun52a91d32017-08-31 14:41:55 +0200341 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
342 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100343 newsrv->check.state &= ~CHK_ST_PAUSED;
344 newsrv->check.health = newsrv->check.rise;
345 return 0;
346}
347
Willy Tarreau9c538e02019-01-23 10:21:49 +0100348static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
349{
350 char *arg;
351
352 arg = args[*cur_arg + 1];
353 if (!*arg) {
354 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
355 return ERR_ALERT | ERR_FATAL;
356 }
357 newsrv->max_reuse = atoi(arg);
358
359 return 0;
360}
361
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100362static 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 +0100363{
364 const char *res;
365 char *arg;
366 unsigned int time;
367
368 arg = args[*cur_arg + 1];
369 if (!*arg) {
370 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
371 return ERR_ALERT | ERR_FATAL;
372 }
373 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200374 if (res == PARSE_TIME_OVER) {
375 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
376 args[*cur_arg+1], args[*cur_arg]);
377 return ERR_ALERT | ERR_FATAL;
378 }
379 else if (res == PARSE_TIME_UNDER) {
380 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
381 args[*cur_arg+1], args[*cur_arg]);
382 return ERR_ALERT | ERR_FATAL;
383 }
384 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100385 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
386 *res, args[*cur_arg]);
387 return ERR_ALERT | ERR_FATAL;
388 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100389 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100390
391 return 0;
392}
393
Willy Tarreau2f3f4d32020-07-01 07:43:51 +0200394static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
395{
396 char *arg;
397
398 arg = args[*cur_arg + 1];
399 if (!*arg) {
400 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
401 return ERR_ALERT | ERR_FATAL;
402 }
403
404 newsrv->low_idle_conns = atoi(arg);
405 return 0;
406}
407
Olivier Houchard006e3102018-12-10 18:30:32 +0100408static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
409{
410 char *arg;
411
412 arg = args[*cur_arg + 1];
413 if (!*arg) {
414 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
415 return ERR_ALERT | ERR_FATAL;
416 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100417
Olivier Houchard006e3102018-12-10 18:30:32 +0100418 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100419 if ((int)newsrv->max_idle_conns < -1) {
420 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
421 return ERR_ALERT | ERR_FATAL;
422 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100423
424 return 0;
425}
426
Willy Tarreaudff55432012-10-10 17:51:05 +0200427/* parse the "id" server keyword */
428static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
429{
430 struct eb32_node *node;
431
432 if (!*args[*cur_arg + 1]) {
433 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
434 return ERR_ALERT | ERR_FATAL;
435 }
436
437 newsrv->puid = atol(args[*cur_arg + 1]);
438 newsrv->conf.id.key = newsrv->puid;
439
440 if (newsrv->puid <= 0) {
441 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
442 return ERR_ALERT | ERR_FATAL;
443 }
444
445 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
446 if (node) {
447 struct server *target = container_of(node, struct server, conf.id);
448 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
449 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
450 target->id);
451 return ERR_ALERT | ERR_FATAL;
452 }
453
454 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200455 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200456 return 0;
457}
458
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100459/* Parse the "namespace" server keyword */
460static int srv_parse_namespace(char **args, int *cur_arg,
461 struct proxy *curproxy, struct server *newsrv, char **err)
462{
Willy Tarreaue5733232019-05-22 19:24:06 +0200463#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100464 char *arg;
465
466 arg = args[*cur_arg + 1];
467 if (!*arg) {
468 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
469 return ERR_ALERT | ERR_FATAL;
470 }
471
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100472 if (strcmp(arg, "*") == 0) {
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100473 /* Use the namespace associated with the connection (if present). */
474 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
475 return 0;
476 }
477
478 /*
479 * As this parser may be called several times for the same 'default-server'
480 * object, or for a new 'server' instance deriving from a 'default-server'
481 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
482 */
483 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
484
485 newsrv->netns = netns_store_lookup(arg, strlen(arg));
486 if (!newsrv->netns)
487 newsrv->netns = netns_store_insert(arg);
488
489 if (!newsrv->netns) {
490 memprintf(err, "Cannot open namespace '%s'", arg);
491 return ERR_ALERT | ERR_FATAL;
492 }
493
494 return 0;
495#else
496 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
497 return ERR_ALERT | ERR_FATAL;
498#endif
499}
500
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100501/* Parse the "no-backup" server keyword */
502static int srv_parse_no_backup(char **args, int *cur_arg,
503 struct proxy *curproxy, struct server *newsrv, char **err)
504{
505 newsrv->flags &= ~SRV_F_BACKUP;
506 return 0;
507}
508
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100509
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100510/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200511static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100512{
513 srv->pp_opts &= ~flags;
514 return 0;
515}
516
517/* Parse the "no-send-proxy" server keyword */
518static int srv_parse_no_send_proxy(char **args, int *cur_arg,
519 struct proxy *curproxy, struct server *newsrv, char **err)
520{
521 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
522}
523
524/* Parse the "no-send-proxy-v2" server keyword */
525static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
526 struct proxy *curproxy, struct server *newsrv, char **err)
527{
528 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
529}
530
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200531/* Parse the "no-tfo" server keyword */
532static int srv_parse_no_tfo(char **args, int *cur_arg,
533 struct proxy *curproxy, struct server *newsrv, char **err)
534{
535 newsrv->flags &= ~SRV_F_FASTOPEN;
536 return 0;
537}
538
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100539/* Parse the "non-stick" server keyword */
540static int srv_parse_non_stick(char **args, int *cur_arg,
541 struct proxy *curproxy, struct server *newsrv, char **err)
542{
543 newsrv->flags |= SRV_F_NON_STICK;
544 return 0;
545}
546
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100547/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200548static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100549{
550 srv->pp_opts |= flags;
551 return 0;
552}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200553/* parse the "proto" server keyword */
554static int srv_parse_proto(char **args, int *cur_arg,
555 struct proxy *px, struct server *newsrv, char **err)
556{
557 struct ist proto;
558
559 if (!*args[*cur_arg + 1]) {
560 memprintf(err, "'%s' : missing value", args[*cur_arg]);
561 return ERR_ALERT | ERR_FATAL;
562 }
563 proto = ist2(args[*cur_arg + 1], strlen(args[*cur_arg + 1]));
564 newsrv->mux_proto = get_mux_proto(proto);
565 if (!newsrv->mux_proto) {
566 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
567 return ERR_ALERT | ERR_FATAL;
568 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200569 return 0;
570}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100571
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100572/* parse the "proxy-v2-options" */
573static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
574 struct proxy *px, struct server *newsrv, char **err)
575{
576 char *p, *n;
577 for (p = args[*cur_arg+1]; p; p = n) {
578 n = strchr(p, ',');
579 if (n)
580 *n++ = '\0';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100581 if (strcmp(p, "ssl") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100582 newsrv->pp_opts |= SRV_PP_V2_SSL;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100583 } else if (strcmp(p, "cert-cn") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100584 newsrv->pp_opts |= SRV_PP_V2_SSL;
585 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100586 } else if (strcmp(p, "cert-key") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100587 newsrv->pp_opts |= SRV_PP_V2_SSL;
588 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100589 } else if (strcmp(p, "cert-sig") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100590 newsrv->pp_opts |= SRV_PP_V2_SSL;
591 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100592 } else if (strcmp(p, "ssl-cipher") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100593 newsrv->pp_opts |= SRV_PP_V2_SSL;
594 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100595 } else if (strcmp(p, "authority") == 0) {
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100596 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100597 } else if (strcmp(p, "crc32c") == 0) {
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100598 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100599 } else if (strcmp(p, "unique-id") == 0) {
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100600 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100601 } else
602 goto fail;
603 }
604 return 0;
605 fail:
606 if (err)
607 memprintf(err, "'%s' : proxy v2 option not implemented", p);
608 return ERR_ALERT | ERR_FATAL;
609}
610
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100611/* Parse the "observe" server keyword */
612static int srv_parse_observe(char **args, int *cur_arg,
613 struct proxy *curproxy, struct server *newsrv, char **err)
614{
615 char *arg;
616
617 arg = args[*cur_arg + 1];
618 if (!*arg) {
619 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
620 return ERR_ALERT | ERR_FATAL;
621 }
622
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100623 if (strcmp(arg, "none") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100624 newsrv->observe = HANA_OBS_NONE;
625 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100626 else if (strcmp(arg, "layer4") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100627 newsrv->observe = HANA_OBS_LAYER4;
628 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100629 else if (strcmp(arg, "layer7") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100630 if (curproxy->mode != PR_MODE_HTTP) {
631 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
632 return ERR_ALERT;
633 }
634 newsrv->observe = HANA_OBS_LAYER7;
635 }
636 else {
637 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
638 "but got '%s'\n", args[*cur_arg], arg);
639 return ERR_ALERT | ERR_FATAL;
640 }
641
642 return 0;
643}
644
Frédéric Lécaille16186232017-03-14 16:42:49 +0100645/* Parse the "redir" server keyword */
646static int srv_parse_redir(char **args, int *cur_arg,
647 struct proxy *curproxy, struct server *newsrv, char **err)
648{
649 char *arg;
650
651 arg = args[*cur_arg + 1];
652 if (!*arg) {
653 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
654 return ERR_ALERT | ERR_FATAL;
655 }
656
657 free(newsrv->rdr_pfx);
658 newsrv->rdr_pfx = strdup(arg);
659 newsrv->rdr_len = strlen(arg);
660
661 return 0;
662}
663
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100664/* Parse the "send-proxy" server keyword */
665static int srv_parse_send_proxy(char **args, int *cur_arg,
666 struct proxy *curproxy, struct server *newsrv, char **err)
667{
668 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
669}
670
671/* Parse the "send-proxy-v2" server keyword */
672static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
673 struct proxy *curproxy, struct server *newsrv, char **err)
674{
675 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
676}
677
Frédéric Lécailledba97072017-03-17 15:33:50 +0100678
679/* Parse the "source" server keyword */
680static int srv_parse_source(char **args, int *cur_arg,
681 struct proxy *curproxy, struct server *newsrv, char **err)
682{
683 char *errmsg;
684 int port_low, port_high;
685 struct sockaddr_storage *sk;
Frédéric Lécailledba97072017-03-17 15:33:50 +0100686
687 errmsg = NULL;
688
689 if (!*args[*cur_arg + 1]) {
690 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
691 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
692 goto err;
693 }
694
695 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200696 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
697 &errmsg, NULL, NULL,
698 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 +0100699 if (!sk) {
700 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
701 goto err;
702 }
703
Frédéric Lécailledba97072017-03-17 15:33:50 +0100704 newsrv->conn_src.opts |= CO_SRC_BIND;
705 newsrv->conn_src.source_addr = *sk;
706
707 if (port_low != port_high) {
708 int i;
709
Frédéric Lécailledba97072017-03-17 15:33:50 +0100710 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
711 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
712 newsrv->conn_src.sport_range->ports[i] = port_low + i;
713 }
714
715 *cur_arg += 2;
716 while (*(args[*cur_arg])) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100717 if (strcmp(args[*cur_arg], "usesrc") == 0) { /* address to use outside */
Frédéric Lécailledba97072017-03-17 15:33:50 +0100718#if defined(CONFIG_HAP_TRANSPARENT)
719 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100720 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
721 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +0100722 goto err;
723 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100724 if (strcmp(args[*cur_arg + 1], "client") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +0100725 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
726 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
727 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100728 else if (strcmp(args[*cur_arg + 1], "clientip") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +0100729 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
730 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
731 }
732 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
733 char *name, *end;
734
735 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +0100736 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100737 name++;
738
739 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +0100740 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +0100741 end++;
742
743 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
744 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
745 free(newsrv->conn_src.bind_hdr_name);
746 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
747 newsrv->conn_src.bind_hdr_len = end - name;
748 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
749 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
750 newsrv->conn_src.bind_hdr_occ = -1;
751
752 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +0100753 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100754 end++;
755 if (*end == ',') {
756 end++;
757 name = end;
758 if (*end == '-')
759 end++;
Willy Tarreau90807112020-02-25 08:16:33 +0100760 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +0100761 end++;
762 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
763 }
764
765 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100766 ha_alert("usesrc hdr_ip(name,num) does not support negative"
767 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100768 goto err;
769 }
770 }
771 else {
772 struct sockaddr_storage *sk;
773 int port1, port2;
774
775 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200776 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL,
777 &errmsg, NULL, NULL,
778 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100779 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100780 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100781 goto err;
782 }
783
Frédéric Lécailledba97072017-03-17 15:33:50 +0100784 newsrv->conn_src.tproxy_addr = *sk;
785 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
786 }
787 global.last_checks |= LSTCHK_NETADM;
788 *cur_arg += 2;
789 continue;
790#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100791 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 +0100792 goto err;
793#endif /* defined(CONFIG_HAP_TRANSPARENT) */
794 } /* "usesrc" */
795
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100796 if (strcmp(args[*cur_arg], "interface") == 0) { /* specifically bind to this interface */
Frédéric Lécailledba97072017-03-17 15:33:50 +0100797#ifdef SO_BINDTODEVICE
798 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100799 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100800 goto err;
801 }
802 free(newsrv->conn_src.iface_name);
803 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
804 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
805 global.last_checks |= LSTCHK_NETADM;
806#else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100807 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +0100808 goto err;
809#endif
810 *cur_arg += 2;
811 continue;
812 }
813 /* this keyword in not an option of "source" */
814 break;
815 } /* while */
816
817 return 0;
818
819 err:
820 free(errmsg);
821 return ERR_ALERT | ERR_FATAL;
822}
823
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100824/* Parse the "stick" server keyword */
825static int srv_parse_stick(char **args, int *cur_arg,
826 struct proxy *curproxy, struct server *newsrv, char **err)
827{
828 newsrv->flags &= ~SRV_F_NON_STICK;
829 return 0;
830}
831
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100832/* Parse the "track" server keyword */
833static int srv_parse_track(char **args, int *cur_arg,
834 struct proxy *curproxy, struct server *newsrv, char **err)
835{
836 char *arg;
837
838 arg = args[*cur_arg + 1];
839 if (!*arg) {
840 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
841 return ERR_ALERT | ERR_FATAL;
842 }
843
844 free(newsrv->trackit);
845 newsrv->trackit = strdup(arg);
846
847 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800848}
849
850/* Parse the "socks4" server keyword */
851static int srv_parse_socks4(char **args, int *cur_arg,
852 struct proxy *curproxy, struct server *newsrv, char **err)
853{
854 char *errmsg;
855 int port_low, port_high;
856 struct sockaddr_storage *sk;
Alexander Liu2a54bb72019-05-22 19:44:48 +0800857
858 errmsg = NULL;
859
860 if (!*args[*cur_arg + 1]) {
861 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
862 goto err;
863 }
864
865 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +0200866 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
867 &errmsg, NULL, NULL,
868 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT);
Alexander Liu2a54bb72019-05-22 19:44:48 +0800869 if (!sk) {
870 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
871 goto err;
872 }
873
Alexander Liu2a54bb72019-05-22 19:44:48 +0800874 newsrv->flags |= SRV_F_SOCKS4_PROXY;
875 newsrv->socks4_addr = *sk;
876
Alexander Liu2a54bb72019-05-22 19:44:48 +0800877 return 0;
878
879 err:
880 free(errmsg);
881 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +0100882}
883
Frédéric Lécailledba97072017-03-17 15:33:50 +0100884
Willy Tarreau034c88c2017-01-23 23:36:45 +0100885/* parse the "tfo" server keyword */
886static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
887{
888 newsrv->flags |= SRV_F_FASTOPEN;
889 return 0;
890}
891
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200892/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +0200893 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200894 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200895 *
896 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200897 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200898void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200899{
Willy Tarreau751153e2021-02-17 13:33:24 +0100900 struct stream *stream;
901 struct mt_list *elt1, elt2;
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200902
Willy Tarreau751153e2021-02-17 13:33:24 +0100903 mt_list_for_each_entry_safe(stream, &srv->actconns, by_srv, elt1, elt2)
Willy Tarreau87b09662015-04-03 00:22:06 +0200904 if (stream->srv_conn == srv)
905 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200906}
907
908/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +0200909 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200910 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200911 *
912 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200913 */
Willy Tarreau87b09662015-04-03 00:22:06 +0200914void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200915{
916 struct server *srv;
917
918 for (srv = px->srv; srv != NULL; srv = srv->next)
919 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +0200920 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +0200921}
922
Willy Tarreaubda92272014-05-20 21:55:30 +0200923/* Appends some information to a message string related to a server going UP or
924 * DOWN. If both <forced> and <reason> are null and the server tracks another
925 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +0200926 * If <check> is non-null, an entire string describing the check result will be
927 * appended after a comma and a space (eg: to report some information from the
928 * check that changed the state). In the other case, the string will be built
929 * using the check results stored into the struct server if present.
930 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +0200931 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200932 *
933 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200934 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200935void srv_append_status(struct buffer *msg, struct server *s,
936 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200937{
Emeric Brun5a133512017-10-19 14:42:30 +0200938 short status = s->op_st_chg.status;
939 short code = s->op_st_chg.code;
940 long duration = s->op_st_chg.duration;
941 char *desc = s->op_st_chg.reason;
942
943 if (check) {
944 status = check->status;
945 code = check->code;
946 duration = check->duration;
947 desc = check->desc;
948 }
949
950 if (status != -1) {
951 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
952
953 if (status >= HCHK_STATUS_L57DATA)
954 chunk_appendf(msg, ", code: %d", code);
955
956 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +0200957 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +0200958
959 chunk_appendf(msg, ", info: \"");
960
961 chunk_initlen(&src, desc, 0, strlen(desc));
962 chunk_asciiencode(msg, &src, '"');
963
964 chunk_appendf(msg, "\"");
965 }
966
967 if (duration >= 0)
968 chunk_appendf(msg, ", check duration: %ldms", duration);
969 }
970 else if (desc && *desc) {
971 chunk_appendf(msg, ", %s", desc);
972 }
973 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +0200974 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +0200975 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200976
977 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +0200978 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +0200979 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
980 " %d sessions active, %d requeued, %d remaining in queue",
981 s->proxy->srv_act, s->proxy->srv_bck,
982 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
983 s->cur_sess, xferred, s->nbpend);
984 else
985 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
986 " %d sessions requeued, %d total in queue",
987 s->proxy->srv_act, s->proxy->srv_bck,
988 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
989 xferred, s->nbpend);
990 }
991}
992
Emeric Brun5a133512017-10-19 14:42:30 +0200993/* Marks server <s> down, regardless of its checks' statuses. The server is
994 * registered in a list to postpone the counting of the remaining servers on
995 * the proxy and transfers queued streams whenever possible to other servers at
996 * a sync point. Maintenance servers are ignored. It stores the <reason> if
997 * non-null as the reason for going down or the available data from the check
998 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200999 *
1000 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001001 */
Emeric Brun5a133512017-10-19 14:42:30 +02001002void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001003{
1004 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001005
Emeric Brun64cc49c2017-10-03 14:46:45 +02001006 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001007 return;
1008
Emeric Brun52a91d32017-08-31 14:41:55 +02001009 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +02001010 *s->op_st_chg.reason = 0;
1011 s->op_st_chg.status = -1;
1012 if (reason) {
1013 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1014 }
1015 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001016 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001017 s->op_st_chg.code = check->code;
1018 s->op_st_chg.status = check->status;
1019 s->op_st_chg.duration = check->duration;
1020 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001021
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001022 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001023 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001024
Emeric Brun9f0b4582017-10-23 14:39:51 +02001025 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001026 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001027 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001028 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001029 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001030}
1031
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001032/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001033 * in maintenance. The server is registered in a list to postpone the counting
1034 * of the remaining servers on the proxy and tries to grab requests from the
1035 * proxy at a sync point. Maintenance servers are ignored. It stores the
1036 * <reason> if non-null as the reason for going down or the available data
1037 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001038 *
1039 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001040 */
Emeric Brun5a133512017-10-19 14:42:30 +02001041void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001042{
1043 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001044
Emeric Brun64cc49c2017-10-03 14:46:45 +02001045 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001046 return;
1047
Emeric Brun52a91d32017-08-31 14:41:55 +02001048 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001049 return;
1050
Emeric Brun52a91d32017-08-31 14:41:55 +02001051 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001052 *s->op_st_chg.reason = 0;
1053 s->op_st_chg.status = -1;
1054 if (reason) {
1055 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1056 }
1057 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001058 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001059 s->op_st_chg.code = check->code;
1060 s->op_st_chg.status = check->status;
1061 s->op_st_chg.duration = check->duration;
1062 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001063
Emeric Brun64cc49c2017-10-03 14:46:45 +02001064 if (s->slowstart <= 0)
1065 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001066
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001067 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001068 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001069
Emeric Brun9f0b4582017-10-23 14:39:51 +02001070 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001071 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001072 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001073 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001074 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001075}
1076
Willy Tarreau8eb77842014-05-21 13:54:57 +02001077/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001078 * isn't in maintenance. The server is registered in a list to postpone the
1079 * counting of the remaining servers on the proxy and tries to grab requests
1080 * from the proxy. Maintenance servers are ignored. It stores the
1081 * <reason> if non-null as the reason for going down or the available data
1082 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001083 * up. Note that it makes use of the trash to build the log strings, so <reason>
1084 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001085 *
1086 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001087 */
Emeric Brun5a133512017-10-19 14:42:30 +02001088void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001089{
1090 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001091
Emeric Brun64cc49c2017-10-03 14:46:45 +02001092 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001093 return;
1094
Emeric Brun52a91d32017-08-31 14:41:55 +02001095 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001096 return;
1097
Emeric Brun52a91d32017-08-31 14:41:55 +02001098 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001099 *s->op_st_chg.reason = 0;
1100 s->op_st_chg.status = -1;
1101 if (reason) {
1102 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1103 }
1104 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001105 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001106 s->op_st_chg.code = check->code;
1107 s->op_st_chg.status = check->status;
1108 s->op_st_chg.duration = check->duration;
1109 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001110
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001111 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001112 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001113
Emeric Brun9f0b4582017-10-23 14:39:51 +02001114 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001115 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001116 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001117 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001118 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001119}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001120
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001121/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1122 * enforce either maint mode or drain mode. It is not allowed to set more than
1123 * one flag at once. The equivalent "inherited" flag is propagated to all
1124 * tracking servers. Maintenance mode disables health checks (but not agent
1125 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001126 * is done. If <cause> is non-null, it will be displayed at the end of the log
1127 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001128 *
1129 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001130 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001131void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001132{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001133 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001134
1135 if (!mode)
1136 return;
1137
1138 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001139 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001140 return;
1141
Emeric Brun52a91d32017-08-31 14:41:55 +02001142 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001143 if (cause)
1144 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1145
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001146 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001147 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001148
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001149 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001150 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1151 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001152 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001153
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001154 /* compute the inherited flag to propagate */
1155 if (mode & SRV_ADMF_MAINT)
1156 mode = SRV_ADMF_IMAINT;
1157 else if (mode & SRV_ADMF_DRAIN)
1158 mode = SRV_ADMF_IDRAIN;
1159
Emeric Brun9f0b4582017-10-23 14:39:51 +02001160 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001161 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001162 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001163 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001164 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001165}
1166
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001167/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1168 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1169 * than one flag at once. The equivalent "inherited" flag is propagated to all
1170 * tracking servers. Leaving maintenance mode re-enables health checks. When
1171 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001172 *
1173 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001174 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001175void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001176{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001177 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001178
1179 if (!mode)
1180 return;
1181
1182 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001183 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001184 return;
1185
Emeric Brun52a91d32017-08-31 14:41:55 +02001186 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001187
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001188 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001189 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001190
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001191 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001192 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1193 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001194 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001195
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001196 if (mode & SRV_ADMF_MAINT)
1197 mode = SRV_ADMF_IMAINT;
1198 else if (mode & SRV_ADMF_DRAIN)
1199 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001200
Emeric Brun9f0b4582017-10-23 14:39:51 +02001201 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001202 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001203 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001204 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001205 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001206}
1207
Willy Tarreau757478e2016-11-03 19:22:19 +01001208/* principle: propagate maint and drain to tracking servers. This is useful
1209 * upon startup so that inherited states are correct.
1210 */
1211static void srv_propagate_admin_state(struct server *srv)
1212{
1213 struct server *srv2;
1214
1215 if (!srv->trackers)
1216 return;
1217
1218 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001219 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001220 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001221 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001222
Emeric Brun52a91d32017-08-31 14:41:55 +02001223 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001224 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001225 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001226 }
1227}
1228
1229/* Compute and propagate the admin states for all servers in proxy <px>.
1230 * Only servers *not* tracking another one are considered, because other
1231 * ones will be handled when the server they track is visited.
1232 */
1233void srv_compute_all_admin_states(struct proxy *px)
1234{
1235 struct server *srv;
1236
1237 for (srv = px->srv; srv; srv = srv->next) {
1238 if (srv->track)
1239 continue;
1240 srv_propagate_admin_state(srv);
1241 }
1242}
1243
Willy Tarreaudff55432012-10-10 17:51:05 +02001244/* Note: must not be declared <const> as its list will be overwritten.
1245 * Please take care of keeping this list alphabetically sorted, doing so helps
1246 * all code contributors.
1247 * Optional keywords are also declared with a NULL ->parse() function so that
1248 * the config parser can report an appropriate error when a known keyword was
1249 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001250 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001251 */
1252static struct srv_kw_list srv_kws = { "ALL", { }, {
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001253 { "backup", srv_parse_backup, 0, 1 }, /* Flag as backup server */
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +01001254 { "cookie", srv_parse_cookie, 1, 1 }, /* Assign a cookie to the server */
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +01001255 { "disabled", srv_parse_disabled, 0, 1 }, /* Start the server in 'disabled' state */
1256 { "enabled", srv_parse_enabled, 0, 1 }, /* Start the server in 'enabled' state */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001257 { "id", srv_parse_id, 1, 0 }, /* set id# of server */
Willy Tarreau9c538e02019-01-23 10:21:49 +01001258 { "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 +01001259 { "namespace", srv_parse_namespace, 1, 1 }, /* Namespace the server socket belongs to (if supported) */
Frédéric Lécaille1502cfd2017-03-10 15:36:14 +01001260 { "no-backup", srv_parse_no_backup, 0, 1 }, /* Flag as non-backup server */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001261 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1 }, /* Disable use of PROXY V1 protocol */
1262 { "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 +02001263 { "no-tfo", srv_parse_no_tfo, 0, 1 }, /* Disable use of TCP Fast Open */
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001264 { "non-stick", srv_parse_non_stick, 0, 1 }, /* Disable stick-table persistence */
Frédéric Lécaille547356e2017-03-15 08:55:39 +01001265 { "observe", srv_parse_observe, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001266 { "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 +01001267 { "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 +01001268 { "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 +02001269 { "proto", srv_parse_proto, 1, 1 }, /* Set the proto to use for all outgoing connections */
Emmanuel Hocdetf643b802018-02-01 15:20:32 +01001270 { "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 +01001271 { "redir", srv_parse_redir, 1, 1 }, /* Enable redirection mode */
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001272 { "send-proxy", srv_parse_send_proxy, 0, 1 }, /* Enforce use of PROXY V1 protocol */
1273 { "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 +02001274 { "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 +01001275 { "stick", srv_parse_stick, 0, 1 }, /* Enable stick-table persistence */
Olivier Houchard8d82db72019-07-04 13:34:10 +02001276 { "tfo", srv_parse_tfo, 0, 1 }, /* enable TCP Fast Open of server */
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001277 { "track", srv_parse_track, 1, 1 }, /* Set the current state of the server, tracking another one */
Alexander Liu2a54bb72019-05-22 19:44:48 +08001278 { "socks4", srv_parse_socks4, 1, 1 }, /* Set the socks4 proxy of the server*/
Willy Tarreaudff55432012-10-10 17:51:05 +02001279 { NULL, NULL, 0 },
1280}};
1281
Willy Tarreau0108d902018-11-25 19:14:37 +01001282INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001283
Willy Tarreau004e0452013-11-21 11:22:01 +01001284/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001285 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001286 * state is automatically disabled if the time is elapsed. If <must_update> is
1287 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001288 *
1289 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001290 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001291void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001292{
1293 struct proxy *px = sv->proxy;
1294 unsigned w;
1295
1296 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1297 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001298 if (sv->next_state == SRV_ST_STARTING)
1299 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001300 }
1301
1302 /* We must take care of not pushing the server to full throttle during slow starts.
1303 * It must also start immediately, at least at the minimal step when leaving maintenance.
1304 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001305 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001306 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1307 else
1308 w = px->lbprm.wdiv;
1309
Emeric Brun52a91d32017-08-31 14:41:55 +02001310 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001311
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001312 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001313 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001314 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001315}
1316
Willy Tarreaubaaee002006-06-26 02:48:02 +02001317/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001318 * Parses weight_str and configures sv accordingly.
1319 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001320 *
1321 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001322 */
1323const char *server_parse_weight_change_request(struct server *sv,
1324 const char *weight_str)
1325{
1326 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001327 long int w;
1328 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001329
1330 px = sv->proxy;
1331
1332 /* if the weight is terminated with '%', it is set relative to
1333 * the initial weight, otherwise it is absolute.
1334 */
1335 if (!*weight_str)
1336 return "Require <weight> or <weight%>.\n";
1337
Simon Hormanb796afa2013-02-12 10:45:53 +09001338 w = strtol(weight_str, &end, 10);
1339 if (end == weight_str)
1340 return "Empty weight string empty or preceded by garbage";
1341 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001342 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001343 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001344 /* Avoid integer overflow */
1345 if (w > 25600)
1346 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001347 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001348 if (w > 256)
1349 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001350 }
1351 else if (w < 0 || w > 256)
1352 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001353 else if (end[0] != '\0')
1354 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001355
1356 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1357 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1358
1359 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001360 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001361
1362 return NULL;
1363}
1364
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001365/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001366 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1367 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001368 * Returns:
1369 * - error string on error
1370 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001371 *
1372 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001373 */
1374const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001375 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001376{
1377 unsigned char ip[INET6_ADDRSTRLEN];
1378
1379 if (inet_pton(AF_INET6, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001380 update_server_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001381 return NULL;
1382 }
1383 if (inet_pton(AF_INET, addr_str, ip)) {
Thierry Fournier09a91782016-02-24 08:25:39 +01001384 update_server_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001385 return NULL;
1386 }
1387
1388 return "Could not understand IP address format.\n";
1389}
1390
Willy Tarreau46b7f532018-08-21 11:54:26 +02001391/*
1392 * Must be called with the server lock held.
1393 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001394const char *server_parse_maxconn_change_request(struct server *sv,
1395 const char *maxconn_str)
1396{
1397 long int v;
1398 char *end;
1399
1400 if (!*maxconn_str)
1401 return "Require <maxconn>.\n";
1402
1403 v = strtol(maxconn_str, &end, 10);
1404 if (end == maxconn_str)
1405 return "maxconn string empty or preceded by garbage";
1406 else if (end[0] != '\0')
1407 return "Trailing garbage in maxconn string";
1408
1409 if (sv->maxconn == sv->minconn) { // static maxconn
1410 sv->maxconn = sv->minconn = v;
1411 } else { // dynamic maxconn
1412 sv->maxconn = v;
1413 }
1414
1415 if (may_dequeue_tasks(sv, sv->proxy))
1416 process_srv_queue(sv);
1417
1418 return NULL;
1419}
1420
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001421#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001422static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1423 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001424{
1425 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001426 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001427 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001428 NULL,
1429 };
1430
1431 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001432 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001433
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001434 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001435}
1436
1437static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1438{
1439 struct sample_expr *expr;
1440
1441 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 +01001442 if (!expr) {
1443 memprintf(err, "error detected while parsing sni expression : %s", *err);
1444 return ERR_ALERT | ERR_FATAL;
1445 }
1446
1447 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1448 memprintf(err, "error detected while parsing sni expression : "
1449 " fetch method '%s' extracts information from '%s', "
1450 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001451 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001452 return ERR_ALERT | ERR_FATAL;
1453 }
1454
1455 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1456 release_sample_expr(newsrv->ssl_ctx.sni);
1457 newsrv->ssl_ctx.sni = expr;
1458
1459 return 0;
1460}
1461#endif
1462
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001463static 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 +01001464{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001465 char *msg = "error encountered while processing ";
1466 char *quote = "'";
1467 char *token = args[cur_arg];
1468
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001469 if (err && *err) {
1470 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001471 msg = *err;
1472 quote = "";
1473 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001474 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001475
1476 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
1477 ha_warning("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1478 file, linenum, args[0], args[1],
1479 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001480 else
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001481 ha_alert("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1482 file, linenum, args[0], args[1],
1483 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001484}
1485
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001486static void srv_conn_src_sport_range_cpy(struct server *srv,
1487 struct server *src)
1488{
1489 int range_sz;
1490
1491 range_sz = src->conn_src.sport_range->size;
1492 if (range_sz > 0) {
1493 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1494 if (srv->conn_src.sport_range != NULL) {
1495 int i;
1496
1497 for (i = 0; i < range_sz; i++) {
1498 srv->conn_src.sport_range->ports[i] =
1499 src->conn_src.sport_range->ports[i];
1500 }
1501 }
1502 }
1503}
1504
1505/*
1506 * Copy <src> server connection source settings to <srv> server everything needed.
1507 */
1508static void srv_conn_src_cpy(struct server *srv, struct server *src)
1509{
1510 srv->conn_src.opts = src->conn_src.opts;
1511 srv->conn_src.source_addr = src->conn_src.source_addr;
1512
1513 /* Source port range copy. */
1514 if (src->conn_src.sport_range != NULL)
1515 srv_conn_src_sport_range_cpy(srv, src);
1516
1517#ifdef CONFIG_HAP_TRANSPARENT
1518 if (src->conn_src.bind_hdr_name != NULL) {
1519 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1520 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1521 }
1522 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1523 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1524#endif
1525 if (src->conn_src.iface_name != NULL)
1526 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1527}
1528
1529/*
1530 * Copy <src> server SSL settings to <srv> server allocating
1531 * everything needed.
1532 */
1533#if defined(USE_OPENSSL)
1534static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1535{
1536 if (src->ssl_ctx.ca_file != NULL)
1537 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1538 if (src->ssl_ctx.crl_file != NULL)
1539 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001540
1541 srv->ssl_ctx.verify = src->ssl_ctx.verify;
1542
1543 if (src->ssl_ctx.verify_host != NULL)
1544 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
1545 if (src->ssl_ctx.ciphers != NULL)
1546 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02001547 if (src->ssl_ctx.options)
1548 srv->ssl_ctx.options = src->ssl_ctx.options;
1549 if (src->ssl_ctx.methods.flags)
1550 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
1551 if (src->ssl_ctx.methods.min)
1552 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
1553 if (src->ssl_ctx.methods.max)
1554 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
1555
Ilya Shipitsin2aa4b3a2021-01-07 11:55:45 +05001556#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02001557 if (src->ssl_ctx.ciphersuites != NULL)
1558 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
1559#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001560 if (src->sni_expr != NULL)
1561 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01001562
1563#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
1564 if (src->ssl_ctx.alpn_str) {
1565 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
1566 if (srv->ssl_ctx.alpn_str) {
1567 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
1568 src->ssl_ctx.alpn_len);
1569 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
1570 }
1571 }
1572#endif
1573#ifdef OPENSSL_NPN_NEGOTIATED
1574 if (src->ssl_ctx.npn_str) {
1575 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
1576 if (srv->ssl_ctx.npn_str) {
1577 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
1578 src->ssl_ctx.npn_len);
1579 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
1580 }
1581 }
1582#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001583}
1584#endif
1585
1586/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001587 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001588 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001589 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001590 */
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001591static int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001592{
Christopher Faulet67957bd2017-09-27 11:00:59 +02001593 char *hostname_dn;
1594 int hostname_len, hostname_dn_len;
1595
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001596 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001597 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001598
Christopher Faulet67957bd2017-09-27 11:00:59 +02001599 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001600 hostname_dn = trash.area;
Emeric Brund30e9a12020-12-23 18:49:16 +01001601 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len + 1,
1602 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001603 if (hostname_dn_len == -1)
1604 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02001605
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001606
Christopher Faulet67957bd2017-09-27 11:00:59 +02001607 free(srv->hostname);
1608 free(srv->hostname_dn);
1609 srv->hostname = strdup(hostname);
1610 srv->hostname_dn = strdup(hostname_dn);
1611 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001612 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001613 goto err;
1614
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001615 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001616
1617 err:
Christopher Faulet67957bd2017-09-27 11:00:59 +02001618 free(srv->hostname); srv->hostname = NULL;
1619 free(srv->hostname_dn); srv->hostname_dn = NULL;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02001620 return -1;
1621}
1622
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001623/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001624 * Copy <src> server settings to <srv> server allocating
1625 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001626 * This function is not supposed to be called at any time, but only
1627 * during server settings parsing or during server allocations from
1628 * a server template, and just after having calloc()'ed a new server.
1629 * So, <src> may only be a default server (when parsing server settings)
1630 * or a server template (during server allocations from a server template).
1631 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
1632 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001633 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001634static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001635{
1636 /* Connection source settings copy */
1637 srv_conn_src_cpy(srv, src);
1638
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001639 if (srv_tmpl) {
1640 srv->addr = src->addr;
1641 srv->svc_port = src->svc_port;
1642 }
1643
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001644 srv->pp_opts = src->pp_opts;
1645 if (src->rdr_pfx != NULL) {
1646 srv->rdr_pfx = strdup(src->rdr_pfx);
1647 srv->rdr_len = src->rdr_len;
1648 }
1649 if (src->cookie != NULL) {
1650 srv->cookie = strdup(src->cookie);
1651 srv->cklen = src->cklen;
1652 }
1653 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01001654 srv->check.addr = src->check.addr;
1655 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001656 srv->check.use_ssl = src->check.use_ssl;
1657 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01001658 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01001659 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05001660 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001661 /* Note: 'flags' field has potentially been already initialized. */
1662 srv->flags |= src->flags;
1663 srv->do_check = src->do_check;
1664 srv->do_agent = src->do_agent;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001665 srv->check.inter = src->check.inter;
1666 srv->check.fastinter = src->check.fastinter;
1667 srv->check.downinter = src->check.downinter;
1668 srv->agent.use_ssl = src->agent.use_ssl;
1669 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02001670
1671 if (src->agent.tcpcheck_rules) {
1672 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
1673 if (srv->agent.tcpcheck_rules) {
1674 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
1675 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
1676 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
1677 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
1678 &src->agent.tcpcheck_rules->preset_vars);
1679 }
1680 }
1681
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001682 srv->agent.inter = src->agent.inter;
1683 srv->agent.fastinter = src->agent.fastinter;
1684 srv->agent.downinter = src->agent.downinter;
1685 srv->maxqueue = src->maxqueue;
1686 srv->minconn = src->minconn;
1687 srv->maxconn = src->maxconn;
1688 srv->slowstart = src->slowstart;
1689 srv->observe = src->observe;
1690 srv->onerror = src->onerror;
1691 srv->onmarkeddown = src->onmarkeddown;
1692 srv->onmarkedup = src->onmarkedup;
1693 if (src->trackit != NULL)
1694 srv->trackit = strdup(src->trackit);
1695 srv->consecutive_errors_limit = src->consecutive_errors_limit;
1696 srv->uweight = srv->iweight = src->iweight;
1697
1698 srv->check.send_proxy = src->check.send_proxy;
1699 /* health: up, but will fall down at first failure */
1700 srv->check.rise = srv->check.health = src->check.rise;
1701 srv->check.fall = src->check.fall;
1702
1703 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001704 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
1705 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
1706 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001707 srv->check.state |= CHK_ST_PAUSED;
1708 srv->check.health = 0;
1709 }
1710
1711 /* health: up but will fall down at first failure */
1712 srv->agent.rise = srv->agent.health = src->agent.rise;
1713 srv->agent.fall = src->agent.fall;
1714
1715 if (src->resolvers_id != NULL)
1716 srv->resolvers_id = strdup(src->resolvers_id);
Emeric Brun21fbeed2020-12-23 18:01:04 +01001717 srv->resolv_opts.family_prio = src->resolv_opts.family_prio;
1718 srv->resolv_opts.accept_duplicate_ip = src->resolv_opts.accept_duplicate_ip;
1719 srv->resolv_opts.ignore_weight = src->resolv_opts.ignore_weight;
1720 if (srv->resolv_opts.family_prio == AF_UNSPEC)
1721 srv->resolv_opts.family_prio = AF_INET6;
1722 memcpy(srv->resolv_opts.pref_net,
1723 src->resolv_opts.pref_net,
1724 sizeof srv->resolv_opts.pref_net);
1725 srv->resolv_opts.pref_net_nb = src->resolv_opts.pref_net_nb;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001726
1727 srv->init_addr_methods = src->init_addr_methods;
1728 srv->init_addr = src->init_addr;
1729#if defined(USE_OPENSSL)
1730 srv_ssl_settings_cpy(srv, src);
1731#endif
1732#ifdef TCP_USER_TIMEOUT
1733 srv->tcp_ut = src->tcp_ut;
1734#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001735 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01001736 srv->pool_purge_delay = src->pool_purge_delay;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02001737 srv->low_idle_conns = src->low_idle_conns;
Olivier Houchard006e3102018-12-10 18:30:32 +01001738 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01001739 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02001740
Olivier Houchard8da5f982017-08-04 18:35:36 +02001741 if (srv_tmpl)
1742 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001743
1744 srv->check.via_socks4 = src->check.via_socks4;
1745 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001746}
1747
William Lallemand313bfd12018-10-26 14:47:32 +02001748struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001749{
1750 struct server *srv;
1751
1752 srv = calloc(1, sizeof *srv);
1753 if (!srv)
1754 return NULL;
1755
1756 srv->obj_type = OBJ_TYPE_SERVER;
1757 srv->proxy = proxy;
Willy Tarreau751153e2021-02-17 13:33:24 +01001758 MT_LIST_INIT(&srv->actconns);
Patrick Hemmer0355dab2018-05-11 12:52:31 -04001759 srv->pendconns = EB_ROOT;
Christopher Faulet40a007c2017-07-03 15:41:01 +02001760
Emeric Brun52a91d32017-08-31 14:41:55 +02001761 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001762 srv->last_change = now.tv_sec;
1763
Christopher Faulet38290462020-04-21 11:46:40 +02001764 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001765 srv->check.status = HCHK_STATUS_INI;
1766 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01001767 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02001768 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001769
Christopher Faulet38290462020-04-21 11:46:40 +02001770 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001771 srv->agent.status = HCHK_STATUS_INI;
1772 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01001773 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001774 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
Frédéric Lécaillef46c10c2020-11-23 14:29:28 +01001775#if defined(USE_QUIC)
1776 srv->cids = EB_ROOT_UNIQUE;
1777#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001778
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01001779 srv->extra_counters = NULL;
William Lallemand3ce6eed2021-02-08 10:43:44 +01001780#ifdef USE_OPENSSL
1781 HA_RWLOCK_INIT(&srv->ssl_ctx.lock);
1782#endif
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01001783
Willy Tarreau975b1552019-06-06 16:25:55 +02001784 /* please don't put default server settings here, they are set in
Willy Tarreau144289b2021-02-12 08:19:01 +01001785 * proxy_preset_defaults().
Willy Tarreau975b1552019-06-06 16:25:55 +02001786 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001787 return srv;
1788}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001789
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001790#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1791static int server_sni_expr_init(const char *file, int linenum, char **args, int cur_arg,
1792 struct server *srv, struct proxy *proxy)
1793{
1794 int ret;
1795 char *err = NULL;
1796
1797 if (!srv->sni_expr)
1798 return 0;
1799
1800 ret = server_parse_sni_expr(srv, proxy, &err);
1801 if (!ret)
1802 return 0;
1803
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001804 display_parser_err(file, linenum, args, cur_arg, ret, &err);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001805 free(err);
1806
1807 return ret;
1808}
1809#endif
1810
1811/*
1812 * Server initializations finalization.
1813 * Initialize health check, agent check and SNI expression if enabled.
1814 * Must not be called for a default server instance.
1815 */
1816static int server_finalize_init(const char *file, int linenum, char **args, int cur_arg,
1817 struct server *srv, struct proxy *px)
1818{
Christopher Fauletb3b53522020-04-27 11:17:10 +02001819#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001820 int ret;
Christopher Fauletb3b53522020-04-27 11:17:10 +02001821#endif
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001822
Christopher Faulet8892e5d2020-03-26 19:48:20 +01001823 if (srv->do_check && srv->trackit) {
1824 ha_alert("parsing [%s:%d]: unable to enable checks and tracking at the same time!\n",
1825 file, linenum);
1826 return ERR_ALERT | ERR_FATAL;
1827 }
1828
1829 if (srv->do_agent && !srv->agent.port) {
1830 ha_alert("parsing [%s:%d] : server %s does not have agent port. Agent check has been disabled.\n",
1831 file, linenum, srv->id);
1832 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001833 }
1834
1835#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1836 if ((ret = server_sni_expr_init(file, linenum, args, cur_arg, srv, px)) != 0)
1837 return ret;
1838#endif
1839
1840 if (srv->flags & SRV_F_BACKUP)
1841 px->srv_bck++;
1842 else
1843 px->srv_act++;
1844 srv_lb_commit_status(srv);
1845
1846 return 0;
1847}
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001848
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001849/*
1850 * Parse as much as possible such a range string argument: low[-high]
1851 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
1852 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
1853 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
1854 * Returns 0 if succeeded, -1 if not.
1855 */
1856static int srv_tmpl_parse_range(struct server *srv, const char *arg, int *nb_low, int *nb_high)
1857{
1858 char *nb_high_arg;
1859
1860 *nb_high = 0;
1861 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001862 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001863
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001864 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001865 *nb_high_arg++ = '\0';
1866 *nb_high = atoi(nb_high_arg);
1867 }
1868 else {
1869 *nb_high += *nb_low;
1870 *nb_low = 1;
1871 }
1872
1873 if (*nb_low < 0 || *nb_high < *nb_low)
1874 return -1;
1875
1876 return 0;
1877}
1878
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001879static inline void srv_set_id_from_prefix(struct server *srv, const char *prefix, int nb)
1880{
1881 chunk_printf(&trash, "%s%d", prefix, nb);
1882 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001883 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001884}
1885
1886/*
1887 * Initialize as much as possible servers from <srv> server template.
1888 * Note that a server template is a special server with
1889 * a few different parameters than a server which has
1890 * been parsed mostly the same way as a server.
Joseph Herlant44466822018-11-15 08:57:51 -08001891 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001892 * 'srv' template included.
1893 */
1894static int server_template_init(struct server *srv, struct proxy *px)
1895{
1896 int i;
1897 struct server *newsrv;
1898
1899 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 +02001900 newsrv = new_server(px);
1901 if (!newsrv)
1902 goto err;
1903
Christopher Faulet75bef002020-11-02 22:04:55 +01001904 newsrv->conf.file = strdup(srv->conf.file);
1905 newsrv->conf.line = srv->conf.line;
1906
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001907 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001908 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001909#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1910 if (newsrv->sni_expr) {
1911 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
1912 if (!newsrv->ssl_ctx.sni)
1913 goto err;
1914 }
1915#endif
1916 /* Set this new server ID. */
1917 srv_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
1918
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001919 /* Linked backwards first. This will be restablished after parsing. */
1920 newsrv->next = px->srv;
1921 px->srv = newsrv;
1922 }
1923 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1924
1925 return i - srv->tmpl_info.nb_low;
1926
1927 err:
1928 srv_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
1929 if (newsrv) {
1930#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
1931 release_sample_expr(newsrv->ssl_ctx.sni);
1932#endif
1933 free_check(&newsrv->agent);
1934 free_check(&newsrv->check);
1935 }
1936 free(newsrv);
1937 return i - srv->tmpl_info.nb_low;
1938}
1939
Emeric Brund3db3842020-07-21 16:54:36 +02001940int parse_server(const char *file, int linenum, char **args, struct proxy *curproxy,
Willy Tarreaubb8669a2021-02-12 12:15:05 +01001941 const struct proxy *defproxy, int parse_addr, int in_peers_section, int initial_resolve)
Willy Tarreau272adea2014-03-31 10:39:59 +02001942{
1943 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001944 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001945 char *errmsg = NULL;
1946 int err_code = 0;
1947 unsigned val;
Willy Tarreau07101d52015-09-08 16:16:35 +02001948 char *fqdn = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02001949
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001950 if (strcmp(args[0], "server") == 0 ||
1951 strcmp(args[0], "peer") == 0 ||
1952 strcmp(args[0], "default-server") == 0 ||
1953 strcmp(args[0], "server-template") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02001954 int cur_arg;
Frédéric Lécaille6e0843c2017-03-21 16:39:15 +01001955 int defsrv = (*args[0] == 'd');
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001956 int srv = !defsrv && (*args[0] == 'p' || strcmp(args[0], "server") == 0);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001957 int srv_tmpl = !defsrv && !srv;
1958 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02001959
1960 if (!defsrv && curproxy == defproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001961 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001962 err_code |= ERR_ALERT | ERR_FATAL;
1963 goto out;
1964 }
Christopher Faulete3bdc812021-01-13 13:14:13 +01001965 else if (failifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) {
1966 err_code |= ERR_ALERT | ERR_FATAL;
1967 goto out;
1968 }
Willy Tarreau272adea2014-03-31 10:39:59 +02001969
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001970 /* There is no mandatory first arguments for default server. */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01001971 if (srv && parse_addr) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001972 if (!*args[2]) {
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +02001973 if (in_peers_section) {
1974 return 0;
1975 }
1976 else {
1977 /* 'server' line number of argument check. */
1978 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1979 file, linenum, args[0]);
1980 err_code |= ERR_ALERT | ERR_FATAL;
1981 goto out;
1982 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001983 }
1984
1985 err = invalid_char(args[1]);
1986 }
1987 else if (srv_tmpl) {
1988 if (!*args[3]) {
1989 /* 'server-template' line number of argument check. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001990 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 +02001991 file, linenum, args[0]);
1992 err_code |= ERR_ALERT | ERR_FATAL;
1993 goto out;
1994 }
1995
1996 err = invalid_prefix_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02001997 }
1998
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02001999 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002000 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 +02002001 file, linenum, *err, args[0], srv ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002002 err_code |= ERR_ALERT | ERR_FATAL;
2003 goto out;
2004 }
2005
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002006 cur_arg = 2;
2007 if (srv_tmpl) {
2008 /* Parse server-template <nb | range> arg. */
2009 if (srv_tmpl_parse_range(newsrv, args[cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002010 ha_alert("parsing [%s:%d] : Wrong %s number or range arg '%s'.\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002011 file, linenum, args[0], args[cur_arg]);
2012 err_code |= ERR_ALERT | ERR_FATAL;
2013 goto out;
2014 }
2015 cur_arg++;
2016 }
2017
Willy Tarreau272adea2014-03-31 10:39:59 +02002018 if (!defsrv) {
2019 struct sockaddr_storage *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002020 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002021
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002022 newsrv = new_server(curproxy);
2023 if (!newsrv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002024 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Willy Tarreau272adea2014-03-31 10:39:59 +02002025 err_code |= ERR_ALERT | ERR_ABORT;
2026 goto out;
2027 }
2028
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002029 if (srv_tmpl) {
2030 newsrv->tmpl_info.nb_low = tmpl_range_low;
2031 newsrv->tmpl_info.nb_high = tmpl_range_high;
2032 }
2033
Willy Tarreau272adea2014-03-31 10:39:59 +02002034 /* the servers are linked backwards first */
2035 newsrv->next = curproxy->srv;
2036 curproxy->srv = newsrv;
Willy Tarreau272adea2014-03-31 10:39:59 +02002037 newsrv->conf.file = strdup(file);
2038 newsrv->conf.line = linenum;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002039 /* Note: for a server template, its id is its prefix.
2040 * This is a temporary id which will be used for server allocations to come
2041 * after parsing.
2042 */
2043 if (srv)
2044 newsrv->id = strdup(args[1]);
2045 else
2046 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002047
2048 /* several ways to check the port component :
2049 * - IP => port=+0, relative (IPv4 only)
2050 * - IP: => port=+0, relative
2051 * - IP:N => port=N, absolute
2052 * - IP:+N => port=+N, relative
2053 * - IP:-N => port=-N, relative
2054 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002055 if (!parse_addr)
2056 goto skip_addr;
2057
Willy Tarreau65ec4e32020-09-16 19:17:08 +02002058 sk = str2sa_range(args[cur_arg], &port, &port1, &port2, NULL, NULL,
2059 &errmsg, NULL, &fqdn,
2060 (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 +02002061 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002062 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau272adea2014-03-31 10:39:59 +02002063 err_code |= ERR_ALERT | ERR_FATAL;
2064 goto out;
2065 }
2066
Willy Tarreau272adea2014-03-31 10:39:59 +02002067 if (!port1 || !port2) {
2068 /* no port specified, +offset, -offset */
Willy Tarreauc93cd162014-05-13 15:54:22 +02002069 newsrv->flags |= SRV_F_MAPPORTS;
Willy Tarreau272adea2014-03-31 10:39:59 +02002070 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002071
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002072 /* save hostname and create associated name resolution */
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002073 if (fqdn) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002074 if (fqdn[0] == '_') { /* SRV record */
Olivier Houchard8da5f982017-08-04 18:35:36 +02002075 /* Check if a SRV request already exists, and if not, create it */
Christopher Faulet67957bd2017-09-27 11:00:59 +02002076 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
Emeric Brun08622d32020-12-23 17:41:43 +01002077 newsrv->srvrq = new_resolv_srvrq(newsrv, fqdn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002078 if (newsrv->srvrq == NULL) {
Olivier Houchard8da5f982017-08-04 18:35:36 +02002079 err_code |= ERR_ALERT | ERR_FATAL;
2080 goto out;
Christopher Faulet67957bd2017-09-27 11:00:59 +02002081 }
2082 }
2083 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002084 ha_alert("parsing [%s:%d] : Can't create DNS resolution for server '%s'\n",
Christopher Faulet67957bd2017-09-27 11:00:59 +02002085 file, linenum, newsrv->id);
2086 err_code |= ERR_ALERT | ERR_FATAL;
2087 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002088 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002089 }
2090
Willy Tarreau272adea2014-03-31 10:39:59 +02002091 newsrv->addr = *sk;
Willy Tarreau6ecb10a2017-01-06 18:36:06 +01002092 newsrv->svc_port = port;
Thayne McCombs92149f92020-11-20 01:28:26 -07002093 // we don't need to lock the server here, because
2094 // we are in the process of initializing
2095 srv_set_addr_desc(newsrv);
Willy Tarreau272adea2014-03-31 10:39:59 +02002096
Olivier Houchard8da5f982017-08-04 18:35:36 +02002097 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002098 ha_alert("parsing [%s:%d] : Unknown protocol family %d '%s'\n",
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002099 file, linenum, newsrv->addr.ss_family, args[cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002100 err_code |= ERR_ALERT | ERR_FATAL;
2101 goto out;
2102 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002103
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002104 cur_arg++;
2105 skip_addr:
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002106 /* Copy default server settings to new server settings. */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002107 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002108 HA_SPIN_INIT(&newsrv->lock);
Willy Tarreau272adea2014-03-31 10:39:59 +02002109 } else {
2110 newsrv = &curproxy->defsrv;
2111 cur_arg = 1;
Emeric Brun21fbeed2020-12-23 18:01:04 +01002112 newsrv->resolv_opts.family_prio = AF_INET6;
2113 newsrv->resolv_opts.accept_duplicate_ip = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002114 }
2115
2116 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002117 if (strcmp(args[cur_arg], "init-addr") == 0) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002118 char *p, *end;
2119 int done;
Willy Tarreau4310d362016-11-02 15:05:56 +01002120 struct sockaddr_storage sa;
Baptiste Assmann25938272016-09-21 20:26:16 +02002121
2122 newsrv->init_addr_methods = 0;
2123 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
2124
2125 for (p = args[cur_arg + 1]; *p; p = end) {
2126 /* cut on next comma */
2127 for (end = p; *end && *end != ','; end++);
2128 if (*end)
2129 *(end++) = 0;
2130
Willy Tarreau4310d362016-11-02 15:05:56 +01002131 memset(&sa, 0, sizeof(sa));
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002132 if (strcmp(p, "libc") == 0) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002133 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
2134 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002135 else if (strcmp(p, "last") == 0) {
Baptiste Assmann25938272016-09-21 20:26:16 +02002136 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
2137 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002138 else if (strcmp(p, "none") == 0) {
Willy Tarreau37ebe122016-11-04 15:17:58 +01002139 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
2140 }
Willy Tarreau4310d362016-11-02 15:05:56 +01002141 else if (str2ip2(p, &sa, 0)) {
2142 if (is_addr(&newsrv->init_addr)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002143 ha_alert("parsing [%s:%d]: '%s' : initial address already specified, cannot add '%s'.\n",
Willy Tarreau4310d362016-11-02 15:05:56 +01002144 file, linenum, args[cur_arg], p);
2145 err_code |= ERR_ALERT | ERR_FATAL;
2146 goto out;
2147 }
2148 newsrv->init_addr = sa;
2149 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
2150 }
Baptiste Assmann25938272016-09-21 20:26:16 +02002151 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002152 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 +02002153 file, linenum, args[cur_arg], p);
2154 err_code |= ERR_ALERT | ERR_FATAL;
2155 goto out;
2156 }
2157 if (!done) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002158 ha_alert("parsing [%s:%d]: '%s' : too many init-addr methods when trying to add '%s'\n",
Baptiste Assmann25938272016-09-21 20:26:16 +02002159 file, linenum, args[cur_arg], p);
2160 err_code |= ERR_ALERT | ERR_FATAL;
2161 goto out;
2162 }
2163 }
2164 cur_arg += 2;
2165 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002166 else if (strcmp(args[cur_arg], "resolvers") == 0) {
Frédéric Lécailledaa2fe62017-04-20 12:17:50 +02002167 free(newsrv->resolvers_id);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002168 newsrv->resolvers_id = strdup(args[cur_arg + 1]);
2169 cur_arg += 2;
2170 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002171 else if (strcmp(args[cur_arg], "resolve-opts") == 0) {
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002172 char *p, *end;
2173
2174 for (p = args[cur_arg + 1]; *p; p = end) {
2175 /* cut on next comma */
2176 for (end = p; *end && *end != ','; end++);
2177 if (*end)
2178 *(end++) = 0;
2179
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002180 if (strcmp(p, "allow-dup-ip") == 0) {
Emeric Brun21fbeed2020-12-23 18:01:04 +01002181 newsrv->resolv_opts.accept_duplicate_ip = 1;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002182 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002183 else if (strcmp(p, "ignore-weight") == 0) {
Emeric Brun21fbeed2020-12-23 18:01:04 +01002184 newsrv->resolv_opts.ignore_weight = 1;
Daniel Corbettf8716912019-11-17 09:48:56 -05002185 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002186 else if (strcmp(p, "prevent-dup-ip") == 0) {
Emeric Brun21fbeed2020-12-23 18:01:04 +01002187 newsrv->resolv_opts.accept_duplicate_ip = 0;
Baptiste Assmann8e2d9432018-06-22 15:04:43 +02002188 }
2189 else {
Daniel Corbettf8716912019-11-17 09:48:56 -05002190 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 +02002191 file, linenum, args[cur_arg], p);
2192 err_code |= ERR_ALERT | ERR_FATAL;
2193 goto out;
2194 }
2195 }
2196
2197 cur_arg += 2;
2198 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002199 else if (strcmp(args[cur_arg], "resolve-prefer") == 0) {
2200 if (strcmp(args[cur_arg + 1], "ipv4") == 0)
Emeric Brun21fbeed2020-12-23 18:01:04 +01002201 newsrv->resolv_opts.family_prio = AF_INET;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002202 else if (strcmp(args[cur_arg + 1], "ipv6") == 0)
Emeric Brun21fbeed2020-12-23 18:01:04 +01002203 newsrv->resolv_opts.family_prio = AF_INET6;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002204 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002205 ha_alert("parsing [%s:%d]: '%s' expects either ipv4 or ipv6 as argument.\n",
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002206 file, linenum, args[cur_arg]);
2207 err_code |= ERR_ALERT | ERR_FATAL;
2208 goto out;
2209 }
2210 cur_arg += 2;
2211 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002212 else if (strcmp(args[cur_arg], "resolve-net") == 0) {
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002213 char *p, *e;
2214 unsigned char mask;
Emeric Brun21fbeed2020-12-23 18:01:04 +01002215 struct resolv_options *opt;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002216
2217 if (!args[cur_arg + 1] || args[cur_arg + 1][0] == '\0') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002218 ha_alert("parsing [%s:%d]: '%s' expects a list of networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002219 file, linenum, args[cur_arg]);
2220 err_code |= ERR_ALERT | ERR_FATAL;
2221 goto out;
2222 }
2223
Emeric Brun21fbeed2020-12-23 18:01:04 +01002224 opt = &newsrv->resolv_opts;
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002225
2226 /* Split arguments by comma, and convert it from ipv4 or ipv6
2227 * string network in in_addr or in6_addr.
2228 */
2229 p = args[cur_arg + 1];
2230 e = p;
2231 while (*p != '\0') {
Joseph Herlant44466822018-11-15 08:57:51 -08002232 /* If no room available, return error. */
David Carlierd10025c2016-04-08 10:26:44 +01002233 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002234 ha_alert("parsing [%s:%d]: '%s' exceed %d networks.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002235 file, linenum, args[cur_arg], SRV_MAX_PREF_NET);
2236 err_code |= ERR_ALERT | ERR_FATAL;
2237 goto out;
2238 }
2239 /* look for end or comma. */
2240 while (*e != ',' && *e != '\0')
2241 e++;
2242 if (*e == ',') {
2243 *e = '\0';
2244 e++;
2245 }
2246 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
2247 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
2248 /* Try to convert input string from ipv4 or ipv6 network. */
2249 opt->pref_net[opt->pref_net_nb].family = AF_INET;
2250 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
2251 &mask)) {
2252 /* Try to convert input string from ipv6 network. */
2253 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
2254 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
2255 } else {
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05002256 /* All network conversions fail, return error. */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002257 ha_alert("parsing [%s:%d]: '%s': invalid network '%s'.\n",
Thierry Fournierac88cfe2016-02-17 22:05:30 +01002258 file, linenum, args[cur_arg], p);
2259 err_code |= ERR_ALERT | ERR_FATAL;
2260 goto out;
2261 }
2262 opt->pref_net_nb++;
2263 p = e;
2264 }
2265
2266 cur_arg += 2;
2267 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002268 else if (strcmp(args[cur_arg], "weight") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002269 int w;
2270 w = atol(args[cur_arg + 1]);
2271 if (w < 0 || w > SRV_UWGHT_MAX) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002272 ha_alert("parsing [%s:%d] : weight of server %s is not within 0 and %d (%d).\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002273 file, linenum, newsrv->id, SRV_UWGHT_MAX, w);
2274 err_code |= ERR_ALERT | ERR_FATAL;
2275 goto out;
2276 }
2277 newsrv->uweight = newsrv->iweight = w;
2278 cur_arg += 2;
2279 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002280 else if (strcmp(args[cur_arg], "log-proto") == 0) {
2281 if (strcmp(args[cur_arg + 1], "legacy") == 0)
Emeric Brun97556472020-05-30 01:42:45 +02002282 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002283 else if (strcmp(args[cur_arg + 1], "octet-count") == 0)
Emeric Brun97556472020-05-30 01:42:45 +02002284 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
2285 else {
2286 ha_alert("parsing [%s:%d]: '%s' expects one of 'legacy' or "
2287 "'octet-count' but got '%s'\n",
2288 file, linenum, args[cur_arg], args[cur_arg + 1]);
2289 err_code |= ERR_ALERT | ERR_FATAL;
2290 goto out;
2291 }
2292 cur_arg += 2;
2293 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002294 else if (strcmp(args[cur_arg], "minconn") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002295 newsrv->minconn = atol(args[cur_arg + 1]);
2296 cur_arg += 2;
2297 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002298 else if (strcmp(args[cur_arg], "maxconn") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002299 newsrv->maxconn = atol(args[cur_arg + 1]);
2300 cur_arg += 2;
2301 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002302 else if (strcmp(args[cur_arg], "maxqueue") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002303 newsrv->maxqueue = atol(args[cur_arg + 1]);
2304 cur_arg += 2;
2305 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002306 else if (strcmp(args[cur_arg], "slowstart") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002307 /* slowstart is stored in seconds */
2308 const char *err = parse_time_err(args[cur_arg + 1], &val, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02002309
2310 if (err == PARSE_TIME_OVER) {
2311 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).\n",
2312 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2313 err_code |= ERR_ALERT | ERR_FATAL;
2314 goto out;
2315 }
2316 else if (err == PARSE_TIME_UNDER) {
2317 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.\n",
2318 file, linenum, args[cur_arg+1], args[cur_arg], newsrv->id);
2319 err_code |= ERR_ALERT | ERR_FATAL;
2320 goto out;
2321 }
2322 else if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002323 ha_alert("parsing [%s:%d] : unexpected character '%c' in 'slowstart' argument of server %s.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002324 file, linenum, *err, newsrv->id);
2325 err_code |= ERR_ALERT | ERR_FATAL;
2326 goto out;
2327 }
2328 newsrv->slowstart = (val + 999) / 1000;
2329 cur_arg += 2;
2330 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002331 else if (strcmp(args[cur_arg], "on-error") == 0) {
2332 if (strcmp(args[cur_arg + 1], "fastinter") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002333 newsrv->onerror = HANA_ONERR_FASTINTER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002334 else if (strcmp(args[cur_arg + 1], "fail-check") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002335 newsrv->onerror = HANA_ONERR_FAILCHK;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002336 else if (strcmp(args[cur_arg + 1], "sudden-death") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002337 newsrv->onerror = HANA_ONERR_SUDDTH;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002338 else if (strcmp(args[cur_arg + 1], "mark-down") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002339 newsrv->onerror = HANA_ONERR_MARKDWN;
2340 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002341 ha_alert("parsing [%s:%d]: '%s' expects one of 'fastinter', "
Willy Tarreau272adea2014-03-31 10:39:59 +02002342 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'\n",
2343 file, linenum, args[cur_arg], args[cur_arg + 1]);
2344 err_code |= ERR_ALERT | ERR_FATAL;
2345 goto out;
2346 }
2347
2348 cur_arg += 2;
2349 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002350 else if (strcmp(args[cur_arg], "on-marked-down") == 0) {
2351 if (strcmp(args[cur_arg + 1], "shutdown-sessions") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002352 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
2353 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002354 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002355 file, linenum, args[cur_arg], args[cur_arg + 1]);
2356 err_code |= ERR_ALERT | ERR_FATAL;
2357 goto out;
2358 }
2359
2360 cur_arg += 2;
2361 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002362 else if (strcmp(args[cur_arg], "on-marked-up") == 0) {
2363 if (strcmp(args[cur_arg + 1], "shutdown-backup-sessions") == 0)
Willy Tarreau272adea2014-03-31 10:39:59 +02002364 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
2365 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002366 ha_alert("parsing [%s:%d]: '%s' expects 'shutdown-backup-sessions' but got '%s'\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002367 file, linenum, args[cur_arg], args[cur_arg + 1]);
2368 err_code |= ERR_ALERT | ERR_FATAL;
2369 goto out;
2370 }
2371
2372 cur_arg += 2;
2373 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002374 else if (strcmp(args[cur_arg], "error-limit") == 0) {
Willy Tarreau272adea2014-03-31 10:39:59 +02002375 if (!*args[cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002376 ha_alert("parsing [%s:%d]: '%s' expects an integer argument.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002377 file, linenum, args[cur_arg]);
2378 err_code |= ERR_ALERT | ERR_FATAL;
2379 goto out;
2380 }
2381
2382 newsrv->consecutive_errors_limit = atoi(args[cur_arg + 1]);
2383
2384 if (newsrv->consecutive_errors_limit <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002385 ha_alert("parsing [%s:%d]: %s has to be > 0.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002386 file, linenum, args[cur_arg]);
2387 err_code |= ERR_ALERT | ERR_FATAL;
2388 goto out;
2389 }
2390 cur_arg += 2;
2391 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002392 else if (strcmp(args[cur_arg], "usesrc") == 0) { /* address to use outside: needs "source" first */
Christopher Faulet767a84b2017-11-24 16:50:31 +01002393 ha_alert("parsing [%s:%d] : '%s' only allowed after a '%s' statement.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002394 file, linenum, "usesrc", "source");
2395 err_code |= ERR_ALERT | ERR_FATAL;
2396 goto out;
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002397 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002398 else {
2399 static int srv_dumped;
2400 struct srv_kw *kw;
2401 char *err;
2402
2403 kw = srv_find_kw(args[cur_arg]);
2404 if (kw) {
2405 char *err = NULL;
2406 int code;
2407
2408 if (!kw->parse) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002409 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 +02002410 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002411 if (kw->skip != -1)
2412 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002413 err_code |= ERR_ALERT | ERR_FATAL;
2414 goto out;
2415 }
2416
2417 if (defsrv && !kw->default_ok) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002418 ha_alert("parsing [%s:%d] : '%s %s' : '%s' option is not accepted in default-server sections.\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002419 file, linenum, args[0], args[1], args[cur_arg]);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002420 if (kw->skip != -1)
2421 cur_arg += 1 + kw->skip ;
Willy Tarreau272adea2014-03-31 10:39:59 +02002422 err_code |= ERR_ALERT;
2423 continue;
2424 }
2425
2426 code = kw->parse(args, &cur_arg, curproxy, newsrv, &err);
2427 err_code |= code;
2428
2429 if (code) {
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002430 display_parser_err(file, linenum, args, cur_arg, code, &err);
Willy Tarreau272adea2014-03-31 10:39:59 +02002431 if (code & ERR_FATAL) {
2432 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002433 if (kw->skip != -1)
2434 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002435 goto out;
2436 }
2437 }
2438 free(err);
Frédéric Lécailledfacd692017-04-16 17:14:14 +02002439 if (kw->skip != -1)
2440 cur_arg += 1 + kw->skip;
Willy Tarreau272adea2014-03-31 10:39:59 +02002441 continue;
2442 }
2443
2444 err = NULL;
2445 if (!srv_dumped) {
2446 srv_dump_kws(&err);
2447 indent_msg(&err, 4);
2448 srv_dumped = 1;
2449 }
2450
Christopher Faulet767a84b2017-11-24 16:50:31 +01002451 ha_alert("parsing [%s:%d] : '%s %s' unknown keyword '%s'.%s%s\n",
Willy Tarreau272adea2014-03-31 10:39:59 +02002452 file, linenum, args[0], args[1], args[cur_arg],
2453 err ? " Registered keywords :" : "", err ? err : "");
2454 free(err);
2455
2456 err_code |= ERR_ALERT | ERR_FATAL;
2457 goto out;
2458 }
2459 }
2460
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002461 if (!defsrv)
2462 err_code |= server_finalize_init(file, linenum, args, cur_arg, newsrv, curproxy);
2463 if (err_code & ERR_FATAL)
2464 goto out;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002465 if (srv_tmpl)
2466 server_template_init(newsrv, curproxy);
Willy Tarreau272adea2014-03-31 10:39:59 +02002467 }
Willy Tarreau07101d52015-09-08 16:16:35 +02002468 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002469 return 0;
2470
2471 out:
Willy Tarreau07101d52015-09-08 16:16:35 +02002472 free(fqdn);
Willy Tarreau272adea2014-03-31 10:39:59 +02002473 free(errmsg);
2474 return err_code;
2475}
2476
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002477/* Returns a pointer to the first server matching either id <id>.
2478 * NULL is returned if no match is found.
2479 * the lookup is performed in the backend <bk>
2480 */
2481struct server *server_find_by_id(struct proxy *bk, int id)
2482{
2483 struct eb32_node *eb32;
2484 struct server *curserver;
2485
2486 if (!bk || (id ==0))
2487 return NULL;
2488
2489 /* <bk> has no backend capabilities, so it can't have a server */
2490 if (!(bk->cap & PR_CAP_BE))
2491 return NULL;
2492
2493 curserver = NULL;
2494
2495 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2496 if (eb32)
2497 curserver = container_of(eb32, struct server, conf.id);
2498
2499 return curserver;
2500}
2501
2502/* Returns a pointer to the first server matching either name <name>, or id
2503 * if <name> starts with a '#'. NULL is returned if no match is found.
2504 * the lookup is performed in the backend <bk>
2505 */
2506struct server *server_find_by_name(struct proxy *bk, const char *name)
2507{
2508 struct server *curserver;
2509
2510 if (!bk || !name)
2511 return NULL;
2512
2513 /* <bk> has no backend capabilities, so it can't have a server */
2514 if (!(bk->cap & PR_CAP_BE))
2515 return NULL;
2516
2517 curserver = NULL;
2518 if (*name == '#') {
2519 curserver = server_find_by_id(bk, atoi(name + 1));
2520 if (curserver)
2521 return curserver;
2522 }
2523 else {
2524 curserver = bk->srv;
2525
2526 while (curserver && (strcmp(curserver->id, name) != 0))
2527 curserver = curserver->next;
2528
2529 if (curserver)
2530 return curserver;
2531 }
2532
2533 return NULL;
2534}
2535
2536struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2537{
2538 struct server *byname;
2539 struct server *byid;
2540
2541 if (!name && !id)
2542 return NULL;
2543
2544 if (diff)
2545 *diff = 0;
2546
2547 byname = byid = NULL;
2548
2549 if (name) {
2550 byname = server_find_by_name(bk, name);
2551 if (byname && (!id || byname->puid == id))
2552 return byname;
2553 }
2554
2555 /* remaining possibilities :
2556 * - name not set
2557 * - name set but not found
2558 * - name found but ID doesn't match
2559 */
2560 if (id) {
2561 byid = server_find_by_id(bk, id);
2562 if (byid) {
2563 if (byname) {
2564 /* use id only if forced by configuration */
2565 if (byid->flags & SRV_F_FORCED_ID) {
2566 if (diff)
2567 *diff |= 2;
2568 return byid;
2569 }
2570 else {
2571 if (diff)
2572 *diff |= 1;
2573 return byname;
2574 }
2575 }
2576
2577 /* remaining possibilities:
2578 * - name not set
2579 * - name set but not found
2580 */
2581 if (name && diff)
2582 *diff |= 2;
2583 return byid;
2584 }
2585
2586 /* id bot found */
2587 if (byname) {
2588 if (diff)
2589 *diff |= 1;
2590 return byname;
2591 }
2592 }
2593
2594 return NULL;
2595}
2596
Willy Tarreau46b7f532018-08-21 11:54:26 +02002597/* Update a server state using the parameters available in the params list.
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002598 * The caller must provide a supported version
Willy Tarreau46b7f532018-08-21 11:54:26 +02002599 * Grabs the server lock during operation.
2600 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002601static void srv_update_state(struct server *srv, int version, char **params)
2602{
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002603 char *p;
Willy Tarreau83061a82018-07-13 11:56:34 +02002604 struct buffer *msg;
William Dauchyd1a7b852021-02-11 22:51:26 +01002605 const char *warning;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002606
2607 /* fields since version 1
2608 * and common to all other upcoming versions
2609 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002610 enum srv_state srv_op_state;
2611 enum srv_admin srv_admin_state;
2612 unsigned srv_uweight, srv_iweight;
2613 unsigned long srv_last_time_change;
2614 short srv_check_status;
2615 enum chk_result srv_check_result;
2616 int srv_check_health;
2617 int srv_check_state, srv_agent_state;
2618 int bk_f_forced_id;
2619 int srv_f_forced_id;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002620 int fqdn_set_by_cli;
2621 const char *fqdn;
William Dauchyd1a7b852021-02-11 22:51:26 +01002622 const char *port_st;
William Dauchyfe03e7d2021-02-03 22:30:06 +01002623 unsigned int port_svc;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002624 char *srvrecord;
William Dauchyd1a7b852021-02-11 22:51:26 +01002625 char *addr;
William Dauchyddc7ce92021-02-11 22:51:27 +01002626 int partial_apply = 0;
William Dauchyf6370442020-11-14 19:25:33 +01002627#ifdef USE_OPENSSL
2628 int use_ssl;
2629#endif
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002630
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002631 fqdn = NULL;
William Dauchyd1a7b852021-02-11 22:51:26 +01002632 port_svc = 0;
2633 msg = alloc_trash_chunk();
2634 if (!msg)
2635 goto end;
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002636
William Dauchy63e6cba2021-02-11 22:51:25 +01002637 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002638
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002639 /* Only version 1 supported for now, don't check it. Fields are :
2640 * srv_addr: params[0]
2641 * srv_op_state: params[1]
2642 * srv_admin_state: params[2]
2643 * srv_uweight: params[3]
2644 * srv_iweight: params[4]
2645 * srv_last_time_change: params[5]
2646 * srv_check_status: params[6]
2647 * srv_check_result: params[7]
2648 * srv_check_health: params[8]
2649 * srv_check_state: params[9]
2650 * srv_agent_state: params[10]
2651 * bk_f_forced_id: params[11]
2652 * srv_f_forced_id: params[12]
2653 * srv_fqdn: params[13]
2654 * srv_port: params[14]
2655 * srvrecord: params[15]
2656 * srv_use_ssl: params[16]
2657 * srv_check_port: params[17]
2658 * srv_check_addr: params[18]
2659 * srv_agent_addr: params[19]
2660 * srv_agent_port: params[20]
2661 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002662
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002663 /* validating srv_op_state */
2664 p = NULL;
2665 errno = 0;
2666 srv_op_state = strtol(params[1], &p, 10);
2667 if ((p == params[1]) || errno == EINVAL || errno == ERANGE ||
2668 (srv_op_state != SRV_ST_STOPPED &&
2669 srv_op_state != SRV_ST_STARTING &&
2670 srv_op_state != SRV_ST_RUNNING &&
2671 srv_op_state != SRV_ST_STOPPING)) {
2672 chunk_appendf(msg, ", invalid srv_op_state value '%s'", params[1]);
2673 }
Willy Tarreau757478e2016-11-03 19:22:19 +01002674
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002675 /* validating srv_admin_state */
2676 p = NULL;
2677 errno = 0;
2678 srv_admin_state = strtol(params[2], &p, 10);
2679 fqdn_set_by_cli = !!(srv_admin_state & SRV_ADMF_HMAINT);
Willy Tarreau757478e2016-11-03 19:22:19 +01002680
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002681 /* inherited statuses will be recomputed later.
2682 * Also disable SRV_ADMF_HMAINT flag (set from stats socket fqdn).
2683 */
2684 srv_admin_state &= ~SRV_ADMF_IDRAIN & ~SRV_ADMF_IMAINT & ~SRV_ADMF_HMAINT & ~SRV_ADMF_RMAINT;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002685
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002686 if ((p == params[2]) || errno == EINVAL || errno == ERANGE ||
2687 (srv_admin_state != 0 &&
2688 srv_admin_state != SRV_ADMF_FMAINT &&
2689 srv_admin_state != SRV_ADMF_CMAINT &&
2690 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT) &&
2691 srv_admin_state != (SRV_ADMF_CMAINT | SRV_ADMF_FDRAIN) &&
2692 srv_admin_state != SRV_ADMF_FDRAIN)) {
2693 chunk_appendf(msg, ", invalid srv_admin_state value '%s'", params[2]);
2694 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002695
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002696 /* validating srv_uweight */
2697 p = NULL;
2698 errno = 0;
2699 srv_uweight = strtol(params[3], &p, 10);
2700 if ((p == params[3]) || errno == EINVAL || errno == ERANGE || (srv_uweight > SRV_UWGHT_MAX))
2701 chunk_appendf(msg, ", invalid srv_uweight value '%s'", params[3]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002702
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002703 /* validating srv_iweight */
2704 p = NULL;
2705 errno = 0;
2706 srv_iweight = strtol(params[4], &p, 10);
2707 if ((p == params[4]) || errno == EINVAL || errno == ERANGE || (srv_iweight > SRV_UWGHT_MAX))
2708 chunk_appendf(msg, ", invalid srv_iweight value '%s'", params[4]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002709
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002710 /* validating srv_last_time_change */
2711 p = NULL;
2712 errno = 0;
2713 srv_last_time_change = strtol(params[5], &p, 10);
2714 if ((p == params[5]) || errno == EINVAL || errno == ERANGE)
2715 chunk_appendf(msg, ", invalid srv_last_time_change value '%s'", params[5]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002716
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002717 /* validating srv_check_status */
2718 p = NULL;
2719 errno = 0;
2720 srv_check_status = strtol(params[6], &p, 10);
2721 if (p == params[6] || errno == EINVAL || errno == ERANGE ||
2722 (srv_check_status >= HCHK_STATUS_SIZE))
2723 chunk_appendf(msg, ", invalid srv_check_status value '%s'", params[6]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002724
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002725 /* validating srv_check_result */
2726 p = NULL;
2727 errno = 0;
2728 srv_check_result = strtol(params[7], &p, 10);
2729 if ((p == params[7]) || errno == EINVAL || errno == ERANGE ||
2730 (srv_check_result != CHK_RES_UNKNOWN &&
2731 srv_check_result != CHK_RES_NEUTRAL &&
2732 srv_check_result != CHK_RES_FAILED &&
2733 srv_check_result != CHK_RES_PASSED &&
2734 srv_check_result != CHK_RES_CONDPASS)) {
2735 chunk_appendf(msg, ", invalid srv_check_result value '%s'", params[7]);
2736 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002737
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002738 /* validating srv_check_health */
2739 p = NULL;
2740 errno = 0;
2741 srv_check_health = strtol(params[8], &p, 10);
2742 if (p == params[8] || errno == EINVAL || errno == ERANGE)
2743 chunk_appendf(msg, ", invalid srv_check_health value '%s'", params[8]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002744
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002745 /* validating srv_check_state */
2746 p = NULL;
2747 errno = 0;
2748 srv_check_state = strtol(params[9], &p, 10);
2749 if (p == params[9] || errno == EINVAL || errno == ERANGE ||
2750 (srv_check_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2751 chunk_appendf(msg, ", invalid srv_check_state value '%s'", params[9]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002752
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002753 /* validating srv_agent_state */
2754 p = NULL;
2755 errno = 0;
2756 srv_agent_state = strtol(params[10], &p, 10);
2757 if (p == params[10] || errno == EINVAL || errno == ERANGE ||
2758 (srv_agent_state & ~(CHK_ST_INPROGRESS | CHK_ST_CONFIGURED | CHK_ST_ENABLED | CHK_ST_PAUSED | CHK_ST_AGENT)))
2759 chunk_appendf(msg, ", invalid srv_agent_state value '%s'", params[10]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002760
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002761 /* validating bk_f_forced_id */
2762 p = NULL;
2763 errno = 0;
2764 bk_f_forced_id = strtol(params[11], &p, 10);
2765 if (p == params[11] || errno == EINVAL || errno == ERANGE || !((bk_f_forced_id == 0) || (bk_f_forced_id == 1)))
2766 chunk_appendf(msg, ", invalid bk_f_forced_id value '%s'", params[11]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002767
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002768 /* validating srv_f_forced_id */
2769 p = NULL;
2770 errno = 0;
2771 srv_f_forced_id = strtol(params[12], &p, 10);
2772 if (p == params[12] || errno == EINVAL || errno == ERANGE || !((srv_f_forced_id == 0) || (srv_f_forced_id == 1)))
2773 chunk_appendf(msg, ", invalid srv_f_forced_id value '%s'", params[12]);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002774
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002775 /* validating srv_fqdn */
2776 fqdn = params[13];
2777 if (fqdn && *fqdn == '-')
2778 fqdn = NULL;
2779 if (fqdn && (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn))) {
2780 chunk_appendf(msg, ", invalid srv_fqdn value '%s'", params[13]);
2781 fqdn = NULL;
2782 }
Frédéric Lécaille31694712017-08-01 08:47:19 +02002783
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002784 port_st = params[14];
2785 if (port_st) {
2786 port_svc = strl2uic(port_st, strlen(port_st));
2787 if (port_svc > USHRT_MAX) {
2788 chunk_appendf(msg, ", invalid srv_port value '%s'", port_st);
2789 port_st = NULL;
William Dauchy63e6cba2021-02-11 22:51:25 +01002790 }
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002791 }
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002792
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002793 /* SRV record
2794 * NOTE: in HAProxy, SRV records must start with an underscore '_'
William Dauchy63e6cba2021-02-11 22:51:25 +01002795 */
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002796 srvrecord = params[15];
2797 if (srvrecord && *srvrecord != '_')
2798 srvrecord = NULL;
William Dauchyf6370442020-11-14 19:25:33 +01002799
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002800 /* don't apply anything if one error has been detected */
2801 if (msg->data)
2802 goto out;
2803 partial_apply = 1;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002804
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002805 /* recover operational state and apply it to this server
2806 * and all servers tracking this one */
2807 srv->check.health = srv_check_health;
2808 switch (srv_op_state) {
2809 case SRV_ST_STOPPED:
2810 srv->check.health = 0;
2811 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
2812 break;
2813 case SRV_ST_STARTING:
2814 /* If rise == 1 there is no STARTING state, let's switch to
2815 * RUNNING
2816 */
2817 if (srv->check.rise == 1) {
William Dauchy63e6cba2021-02-11 22:51:25 +01002818 srv->check.health = srv->check.rise + srv->check.fall - 1;
2819 srv_set_running(srv, "", NULL);
2820 break;
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002821 }
2822 if (srv->check.health < 1 || srv->check.health >= srv->check.rise)
2823 srv->check.health = srv->check.rise - 1;
2824 srv->next_state = srv_op_state;
2825 break;
2826 case SRV_ST_STOPPING:
2827 /* If fall == 1 there is no STOPPING state, let's switch to
2828 * STOPPED
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002829 */
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002830 if (srv->check.fall == 1) {
2831 srv->check.health = 0;
2832 srv_set_stopped(srv, "changed from server-state after a reload", NULL);
2833 break;
2834 }
2835 if (srv->check.health < srv->check.rise ||
2836 srv->check.health > srv->check.rise + srv->check.fall - 2)
2837 srv->check.health = srv->check.rise;
2838 srv_set_stopping(srv, "changed from server-state after a reload", NULL);
2839 break;
2840 case SRV_ST_RUNNING:
2841 srv->check.health = srv->check.rise + srv->check.fall - 1;
2842 srv_set_running(srv, "", NULL);
2843 break;
2844 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002845
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002846 /* When applying server state, the following rules apply:
2847 * - in case of a configuration change, we apply the setting from the new
2848 * configuration, regardless of old running state
2849 * - if no configuration change, we apply old running state only if old running
2850 * state is different from new configuration state
2851 */
2852 /* configuration has changed */
2853 if ((srv_admin_state & SRV_ADMF_CMAINT) != (srv->next_admin & SRV_ADMF_CMAINT)) {
2854 if (srv->next_admin & SRV_ADMF_CMAINT)
2855 srv_adm_set_maint(srv);
2856 else
2857 srv_adm_set_ready(srv);
2858 }
2859 /* configuration is the same, let's compate old running state and new conf state */
2860 else {
2861 if (srv_admin_state & SRV_ADMF_FMAINT && !(srv->next_admin & SRV_ADMF_CMAINT))
2862 srv_adm_set_maint(srv);
2863 else if (!(srv_admin_state & SRV_ADMF_FMAINT) && (srv->next_admin & SRV_ADMF_CMAINT))
2864 srv_adm_set_ready(srv);
2865 }
2866 /* apply drain mode if server is currently enabled */
2867 if (!(srv->next_admin & SRV_ADMF_FMAINT) && (srv_admin_state & SRV_ADMF_FDRAIN)) {
2868 /* The SRV_ADMF_FDRAIN flag is inherited when srv->iweight is 0
2869 * (srv->iweight is the weight set up in configuration).
2870 * There are two possible reasons for FDRAIN to have been present :
2871 * - previous config weight was zero
2872 * - "set server b/s drain" was sent to the CLI
2873 *
2874 * In the first case, we simply want to drop this drain state
2875 * if the new weight is not zero anymore, meaning the administrator
2876 * has intentionally turned the weight back to a positive value to
2877 * enable the server again after an operation. In the second case,
2878 * the drain state was forced on the CLI regardless of the config's
2879 * weight so we don't want a change to the config weight to lose this
2880 * status. What this means is :
2881 * - if previous weight was 0 and new one is >0, drop the DRAIN state.
2882 * - if the previous weight was >0, keep it.
William Dauchy63e6cba2021-02-11 22:51:25 +01002883 */
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002884 if (srv_iweight > 0 || srv->iweight == 0)
2885 srv_adm_set_drain(srv);
2886 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002887
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002888 srv->last_change = date.tv_sec - srv_last_time_change;
2889 srv->check.status = srv_check_status;
2890 srv->check.result = srv_check_result;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002891
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002892 /* Only case we want to apply is removing ENABLED flag which could have been
2893 * done by the "disable health" command over the stats socket
2894 */
2895 if ((srv->check.state & CHK_ST_CONFIGURED) &&
2896 (srv_check_state & CHK_ST_CONFIGURED) &&
2897 !(srv_check_state & CHK_ST_ENABLED))
2898 srv->check.state &= ~CHK_ST_ENABLED;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002899
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002900 /* Only case we want to apply is removing ENABLED flag which could have been
2901 * done by the "disable agent" command over the stats socket
2902 */
2903 if ((srv->agent.state & CHK_ST_CONFIGURED) &&
2904 (srv_agent_state & CHK_ST_CONFIGURED) &&
2905 !(srv_agent_state & CHK_ST_ENABLED))
2906 srv->agent.state &= ~CHK_ST_ENABLED;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002907
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002908 /* We want to apply the previous 'running' weight (srv_uweight) only if there
2909 * was no change in the configuration: both previous and new iweight are equals
2910 *
2911 * It means that a configuration file change has precedence over a unix socket change
2912 * for server's weight
2913 *
2914 * by default, HAProxy applies the following weight when parsing the configuration
2915 * srv->uweight = srv->iweight
2916 */
2917 if (srv_iweight == srv->iweight) {
2918 srv->uweight = srv_uweight;
2919 }
2920 server_recalc_eweight(srv, 1);
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002921
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002922 /* load server IP address */
2923 if (strcmp(params[0], "-") != 0)
2924 srv->lastaddr = strdup(params[0]);
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002925
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002926 if (fqdn && srv->hostname) {
2927 if (strcmp(srv->hostname, fqdn) == 0) {
2928 /* Here we reset the 'set from stats socket FQDN' flag
2929 * to support such transitions:
2930 * Let's say initial FQDN value is foo1 (in configuration file).
2931 * - FQDN changed from stats socket, from foo1 to foo2 value,
2932 * - FQDN changed again from file configuration (with the same previous value
2933 set from stats socket, from foo1 to foo2 value),
2934 * - reload for any other reason than a FQDN modification,
2935 * the configuration file FQDN matches the fqdn server state file value.
2936 * So we must reset the 'set from stats socket FQDN' flag to be consistent with
2937 * any further FQDN modification.
2938 */
2939 srv->next_admin &= ~SRV_ADMF_HMAINT;
2940 }
2941 else {
2942 /* If the FDQN has been changed from stats socket,
2943 * apply fqdn state file value (which is the value set
2944 * from stats socket).
2945 * Also ensure the runtime resolver will process this resolution.
2946 */
2947 if (fqdn_set_by_cli) {
2948 srv_set_fqdn(srv, fqdn, 0);
2949 srv->flags &= ~SRV_F_NO_RESOLUTION;
2950 srv->next_admin |= SRV_ADMF_HMAINT;
William Dauchy63e6cba2021-02-11 22:51:25 +01002951 }
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002952 }
2953 }
2954 /* If all the conditions below are validated, this means
2955 * we're evaluating a server managed by SRV resolution
2956 */
2957 else if (fqdn && !srv->hostname && srvrecord) {
2958 int res;
Baptiste Assmann6d0f38f2018-07-02 17:00:54 +02002959
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002960 /* we can't apply previous state if SRV record has changed */
2961 if (srv->srvrq && strcmp(srv->srvrq->name, srvrecord) != 0) {
2962 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);
2963 goto out;
2964 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002965
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002966 /* create or find a SRV resolution for this srv record */
2967 if (srv->srvrq == NULL && (srv->srvrq = find_srvrq_by_name(srvrecord, srv->proxy)) == NULL)
2968 srv->srvrq = new_resolv_srvrq(srv, srvrecord);
2969 if (srv->srvrq == NULL) {
2970 chunk_appendf(msg, ", can't create or find SRV resolution '%s' for server '%s'", srvrecord, srv->id);
2971 goto out;
William Dauchy63e6cba2021-02-11 22:51:25 +01002972 }
2973
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002974 /* prepare DNS resolution for this server */
2975 res = srv_prepare_for_resolution(srv, fqdn);
2976 if (res == -1) {
2977 chunk_appendf(msg, ", can't allocate memory for DNS resolution for server '%s'", srv->id);
2978 goto out;
2979 }
William Dauchyfe03e7d2021-02-03 22:30:06 +01002980
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002981 /* Unset SRV_F_MAPPORTS for SRV records.
2982 * SRV_F_MAPPORTS is unfortunately set by parse_server()
2983 * because no ports are provided in the configuration file.
2984 * This is because HAProxy will use the port found into the SRV record.
William Dauchy63e6cba2021-02-11 22:51:25 +01002985 */
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002986 srv->flags &= ~SRV_F_MAPPORTS;
2987 }
2988
2989 if (port_st)
2990 srv->svc_port = port_svc;
2991
William Dauchyf6370442020-11-14 19:25:33 +01002992
Christopher Fauletea2cdf52021-02-19 12:10:36 +01002993 if (params[16]) {
William Dauchyf6370442020-11-14 19:25:33 +01002994#ifdef USE_OPENSSL
William Dauchy63e6cba2021-02-11 22:51:25 +01002995 use_ssl = strtol(params[16], &p, 10);
William Dauchyf6370442020-11-14 19:25:33 +01002996
William Dauchy63e6cba2021-02-11 22:51:25 +01002997 /* configure ssl if connection has been initiated at startup */
2998 if (srv->ssl_ctx.ctx != NULL)
2999 ssl_sock_set_srv(srv, use_ssl);
3000#endif
Christopher Fauletea2cdf52021-02-19 12:10:36 +01003001 }
3002
3003 port_st = NULL;
3004 if (params[17] && strcmp(params[17], "0") != 0)
3005 port_st = params[17];
3006 addr = NULL;
3007 if (params[18] && strcmp(params[18], "-") != 0)
3008 addr = params[18];
3009 if (addr || port_st) {
3010 warning = update_server_check_addr_port(srv, addr, port_st);
3011 if (warning) {
3012 chunk_appendf(msg, ", %s", warning);
3013 goto out;
William Dauchyd1a7b852021-02-11 22:51:26 +01003014 }
Christopher Fauletea2cdf52021-02-19 12:10:36 +01003015 }
Frédéric Lécaille31694712017-08-01 08:47:19 +02003016
Christopher Fauletea2cdf52021-02-19 12:10:36 +01003017 port_st = NULL;
3018 if (params[20] && strcmp(params[20], "0") != 0)
3019 port_st = params[20];
3020 addr = NULL;
3021 if (params[19] && strcmp(params[19], "-") != 0)
3022 addr = params[19];
3023 if (addr || port_st) {
3024 warning = update_server_agent_addr_port(srv, addr, port_st);
3025 if (warning) {
3026 chunk_appendf(msg, ", %s", warning);
3027 goto out;
William Dauchyd1a7b852021-02-11 22:51:26 +01003028 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003029 }
3030
3031 out:
William Dauchy63e6cba2021-02-11 22:51:25 +01003032 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003033 if (msg->data) {
William Dauchyddc7ce92021-02-11 22:51:27 +01003034 if (partial_apply == 1)
3035 ha_warning("server-state partially applied for server '%s/%s'%s\n",
3036 srv->proxy->id, srv->id, msg->area);
3037 else
3038 ha_warning("server-state application failed for server '%s/%s'%s\n",
3039 srv->proxy->id, srv->id, msg->area);
Baptiste Assmann0821bb92016-01-21 00:20:50 +01003040 }
William Dauchyd1a7b852021-02-11 22:51:26 +01003041 end:
3042 free_trash_chunk(msg);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003043}
3044
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003045
3046/*
3047 * read next line from file <f> and return the server state version if one found.
3048 * If no version is found, then 0 is returned
3049 * Note that this should be the first read on <f>
3050 */
3051static int srv_state_get_version(FILE *f) {
Christopher Faulet8a14b732021-02-15 16:24:10 +01003052 char mybuf[SRV_STATE_LINE_MAXLEN];
3053 char *endptr;
3054 long int vsn;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003055
3056 /* first character of first line of the file must contain the version of the export */
Christopher Faulet8a14b732021-02-15 16:24:10 +01003057 if (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f) == NULL)
3058 return 0;
3059
3060 vsn = strtol(mybuf, &endptr, 10);
3061 if (endptr == mybuf || *endptr != '\n') {
3062 /* Empty or truncated line */
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003063 return 0;
3064 }
3065
Christopher Faulet8a14b732021-02-15 16:24:10 +01003066 if (vsn < SRV_STATE_FILE_VERSION_MIN || vsn > SRV_STATE_FILE_VERSION_MAX) {
3067 /* Wrong version number */
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003068 return 0;
Christopher Faulet8a14b732021-02-15 16:24:10 +01003069 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003070
Christopher Faulet8a14b732021-02-15 16:24:10 +01003071 return vsn;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003072}
3073
3074
3075/*
3076 * parses server state line stored in <buf> and supposedly in version <version>.
Christopher Faulet2a031ec2021-02-12 19:02:21 +01003077 * Set <params> accordingly on success. It returns 1 on success, 0 if the line
3078 * must be ignored and -1 on error.
Christopher Fauletea2cdf52021-02-19 12:10:36 +01003079 * The caller must provide a supported version
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003080 */
Christopher Faulet2a031ec2021-02-12 19:02:21 +01003081static int srv_state_parse_line(char *buf, const int version, char **params)
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003082{
Christopher Faulet2a031ec2021-02-12 19:02:21 +01003083 int buflen, arg, ret;
Christopher Faulet0bf268e2021-02-12 18:49:31 +01003084 char *cur;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003085
3086 buflen = strlen(buf);
3087 cur = buf;
Christopher Faulet0bf268e2021-02-12 18:49:31 +01003088 ret = 1; /* be optimistic and pretend a success */
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003089
Christopher Faulet0bf268e2021-02-12 18:49:31 +01003090 /* we need at least one character (the newline) and a non-truncated line */
3091 if (buflen == 0 || buf[buflen - 1] != '\n') {
3092 ret = -1;
3093 goto out;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003094 }
3095
Christopher Faulet0bf268e2021-02-12 18:49:31 +01003096 /* skip blank characters at the beginning of the line */
3097 while (isblank((unsigned char)*cur))
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003098 ++cur;
3099
Christopher Faulet0bf268e2021-02-12 18:49:31 +01003100 /* ignore empty or commented lines */
3101 if (!*cur || *cur == '\n' || *cur == '#') {
3102 ret = 0;
3103 goto out;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003104 }
3105
Christopher Faulet0bf268e2021-02-12 18:49:31 +01003106 /* Removes trailing '\n' to ease parsing */
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003107 buf[buflen - 1] = '\0';
3108
Christopher Faulet2a031ec2021-02-12 19:02:21 +01003109 /* we're now ready to move the line into <params> */
Christopher Faulet06cd2562021-02-19 16:47:11 +01003110 memset(params, 0, SRV_STATE_FILE_MAX_FIELDS * sizeof(*params));
Christopher Faulet868a5752021-02-19 16:57:20 +01003111 arg = 0;
Christopher Faulet0bf268e2021-02-12 18:49:31 +01003112 while (*cur) {
3113 /* first of all, stop if there are too many fields */
3114 if (arg >= SRV_STATE_FILE_MAX_FIELDS)
3115 break;
3116
3117 /* then skip leading spaces */
3118 while (*cur && isblank((unsigned char)*cur)) {
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003119 ++cur;
Christopher Faulet868a5752021-02-19 16:57:20 +01003120 if (!*cur)
Christopher Faulet0bf268e2021-02-12 18:49:31 +01003121 break;
Christopher Faulet868a5752021-02-19 16:57:20 +01003122 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003123
Christopher Faulet2a031ec2021-02-12 19:02:21 +01003124 /*
3125 * idx:
3126 * be_id: params[0]
3127 * be_name: params[1]
3128 * srv_id: params[2]
3129 * srv_name: params[3]
3130 * v1
3131 * srv_addr: params[4]
3132 * srv_op_state: params[5]
3133 * srv_admin_state: params[6]
3134 * srv_uweight: params[7]
3135 * srv_iweight: params[8]
3136 * srv_last_time_change: params[9]
3137 * srv_check_status: params[10]
3138 * srv_check_result: params[11]
3139 * srv_check_health: params[12]
3140 * srv_check_state: params[13]
3141 * srv_agent_state: params[14]
3142 * bk_f_forced_id: params[15]
3143 * srv_f_forced_id: params[16]
3144 * srv_fqdn: params[17]
3145 * srv_port: params[18]
3146 * srvrecord: params[19]
Christopher Fauletea2cdf52021-02-19 12:10:36 +01003147 *
Christopher Faulet2a031ec2021-02-12 19:02:21 +01003148 * srv_use_ssl: params[20] (optional field)
3149 * srv_check_port: params[21] (optional field)
3150 * srv_check_addr: params[22] (optional field)
3151 * srv_agent_addr: params[23] (optional field)
3152 * srv_agent_port: params[24] (optional field)
3153 *
Christopher Faulet868a5752021-02-19 16:57:20 +01003154 */
Christopher Fauletea2cdf52021-02-19 12:10:36 +01003155 params[arg++] = cur;
Christopher Faulet868a5752021-02-19 16:57:20 +01003156
Christopher Faulet0bf268e2021-02-12 18:49:31 +01003157 /* look for the end of the current field */
3158 while (*cur && !isblank((unsigned char)*cur)) {
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003159 ++cur;
Christopher Faulet868a5752021-02-19 16:57:20 +01003160 if (!*cur)
Christopher Faulet0bf268e2021-02-12 18:49:31 +01003161 break;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003162 }
Christopher Faulet0bf268e2021-02-12 18:49:31 +01003163
3164 /* otherwise, cut the field and move to the next one */
Christopher Faulet868a5752021-02-19 16:57:20 +01003165 *cur++ = '\0';
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003166 }
3167
Christopher Faulet0bf268e2021-02-12 18:49:31 +01003168 /* if the number of fields does not match the version, then return an error */
Christopher Fauletea2cdf52021-02-19 12:10:36 +01003169 if (version == 1 &&
Christopher Faulet28d78762021-02-20 12:15:22 +01003170 (arg < SRV_STATE_FILE_MIN_FIELDS_VERSION_1 ||
3171 arg > SRV_STATE_FILE_MAX_FIELDS_VERSION_1))
Christopher Faulet0bf268e2021-02-12 18:49:31 +01003172 ret = -1;
3173
3174 out:
3175 return ret;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003176}
3177
Christopher Faulet131b07b2021-02-12 19:59:21 +01003178/* Helper function to get the server-state file path.
3179 * If <filename> starts with a '/', it is considered as an absolute path. In
3180 * this case or if <global.server_state_base> is not set, <filename> only is
3181 * considered. Otherwise, the <global.server_state_base> is concatenated to
3182 * <filename> to produce the file path and copied to <dst_path>. in both cases,
3183 * the result must not exceeds <maxpathlen>.
3184 *
3185 * The len is returned on success or -1 if the path is too long. On error, the
3186 * caller must not rely on <dst_path>.
3187 */
3188static inline int srv_state_get_filepath(char *dst_path, int maxpathlen, const char *filename)
3189{
3190 char *sep = (global.server_state_base[strlen(global.server_state_base)-1] != '/' ? "/": "");
3191 int len = 0;
3192
3193 /* create the globalfilepath variable */
3194 if (*filename == '/' || !global.server_state_base) {
3195 /* absolute path or no base directory provided */
3196 len = strlen(filename);
3197 if (len < maxpathlen)
3198 strcpy(dst_path, global.server_state_file);
3199 }
3200 else {
3201 /* concat base directory and global server-state file */
3202 len = snprintf(dst_path, maxpathlen, "%s%s%s", global.server_state_base, sep, filename);
3203 }
3204 return (len < maxpathlen ? len: -1);
3205}
3206
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003207
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003208/* This function parses all the proxies and only take care of the backends (since we're looking for server)
3209 * For each proxy, it does the following:
3210 * - opens its server state file (either one or local one)
3211 * - read whole file, line by line
3212 * - analyse each line to check if it matches our current backend:
3213 * - backend name matches
3214 * - backend id matches if id is forced and name doesn't match
3215 * - if the server pointed by the line is found, then state is applied
3216 *
3217 * If the running backend uuid or id differs from the state file, then HAProxy reports
3218 * a warning.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003219 *
3220 * Grabs the server's lock via srv_update_state().
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003221 */
3222void apply_server_state(void)
3223{
Christopher Faulet8b4b6a02021-02-15 16:53:51 +01003224 /* tree where global state_file is loaded */
3225 struct eb_root global_state_tree = EB_ROOT_UNIQUE;
Christopher Faulet131b07b2021-02-12 19:59:21 +01003226 struct proxy *curproxy;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003227 struct server *srv;
Christopher Faulet6d87c582021-02-15 17:09:33 +01003228 struct server_state_line *st_line;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003229 struct ebmb_node *node, *next_node;
Christopher Faulet131b07b2021-02-12 19:59:21 +01003230 FILE *f;
3231 char *params[SRV_STATE_FILE_MAX_FIELDS] = {0};
3232 char mybuf[SRV_STATE_LINE_MAXLEN];
3233 char file[MAXPATHLEN];
3234 int local_vsn, global_vsn, len;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003235
Christopher Faulet131b07b2021-02-12 19:59:21 +01003236 global_vsn = 0; /* no global file */
3237 if (!global.server_state_file)
3238 goto no_globalfile;
3239 len = srv_state_get_filepath(file, MAXPATHLEN, global.server_state_file);
3240 if (len == -1) {
3241 ha_warning("config: Can't load global server state file: file too long.\n");
3242 goto no_globalfile;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003243 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003244
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003245 /* Load global server state in a tree */
Christopher Faulet131b07b2021-02-12 19:59:21 +01003246 errno = 0;
3247 f = fopen(file, "r");
3248 if (!f) {
3249 ha_warning("config: Can't open global server state file '%s': %s\n", file, strerror(errno));
3250 goto no_globalfile;
3251 }
Christopher Faulet0bf268e2021-02-12 18:49:31 +01003252
Christopher Faulet131b07b2021-02-12 19:59:21 +01003253 global_vsn = srv_state_get_version(f);
3254 if (global_vsn == 0) {
3255 ha_warning("config: Can't get version of the global server state file '%s'.\n",
3256 file);
3257 goto close_globalfile;
3258 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003259
Christopher Faulet131b07b2021-02-12 19:59:21 +01003260 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3261 char *line;
3262 int ret;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003263
Christopher Faulet131b07b2021-02-12 19:59:21 +01003264 /* Duplicate line before parsing */
3265 line = strdup(mybuf);
3266 if (line == NULL)
3267 continue;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003268
Christopher Faulet131b07b2021-02-12 19:59:21 +01003269 ret = srv_state_parse_line(mybuf, global_vsn, params);
3270 if (ret <= 0)
3271 goto nextline;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003272
Christopher Faulet131b07b2021-02-12 19:59:21 +01003273 /* key : "be_name srv_name */
3274 chunk_printf(&trash, "%s %s", params[1], params[3]);
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003275
3276 /* store line in tree */
Christopher Faulet6d87c582021-02-15 17:09:33 +01003277 st_line = calloc(1, sizeof(*st_line) + trash.data + 1);
3278 if (st_line == NULL) {
Christopher Faulet131b07b2021-02-12 19:59:21 +01003279 goto nextline;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003280 }
Christopher Faulet6d87c582021-02-15 17:09:33 +01003281 memcpy(st_line->node.key, trash.area, trash.data + 1);
Christopher Faulet8b4b6a02021-02-15 16:53:51 +01003282 if (ebst_insert(&global_state_tree, &st_line->node) != &st_line->node) {
Christopher Faulet131b07b2021-02-12 19:59:21 +01003283 /* this is a duplicate key, probably a hand-crafted file,
3284 * drop it!
3285 */
Christopher Faulet6d87c582021-02-15 17:09:33 +01003286 free(st_line);
Christopher Faulet131b07b2021-02-12 19:59:21 +01003287 goto nextline;
3288 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003289
Christopher Faulet131b07b2021-02-12 19:59:21 +01003290 /* save line */
Christopher Faulet6d87c582021-02-15 17:09:33 +01003291 st_line->line = line;
Christopher Faulet131b07b2021-02-12 19:59:21 +01003292 line = NULL;
3293 nextline:
3294 /* free up memory in case of error during the processing of the line */
3295 free(line);
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003296 }
Christopher Faulet131b07b2021-02-12 19:59:21 +01003297 close_globalfile:
3298 fclose(f);
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003299
Christopher Faulet131b07b2021-02-12 19:59:21 +01003300 no_globalfile:
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003301 /* parse all proxies and load states form tree (global file) or from local file */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003302 for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003303 /* servers are only in backends */
3304 if (!(curproxy->cap & PR_CAP_BE))
Christopher Faulet131b07b2021-02-12 19:59:21 +01003305 continue; /* next proxy */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003306
Christopher Faulet131b07b2021-02-12 19:59:21 +01003307 /* No server-state file for this proxy */
3308 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_NONE)
3309 continue; /* next proxy */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003310
Christopher Faulet131b07b2021-02-12 19:59:21 +01003311 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_GLOBAL) {
3312 /* when global file is used, we get data from the tree
3313 * Note that in such case we don't check backend name neither uuid.
3314 * Backend name can't be wrong since it's used as a key to retrieve the server state
3315 * line from the tree.
3316 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003317
Christopher Faulet131b07b2021-02-12 19:59:21 +01003318 /* there was an error while generating global server state file path */
3319 if (global_vsn == 0)
3320 continue; /* next proxy */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003321
Christopher Faulet131b07b2021-02-12 19:59:21 +01003322 for (srv = curproxy->srv; srv; srv = srv->next) {
Christopher Faulet0bf268e2021-02-12 18:49:31 +01003323 int ret;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003324
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003325 chunk_printf(&trash, "%s %s", curproxy->id, srv->id);
Christopher Faulet8b4b6a02021-02-15 16:53:51 +01003326 node = ebst_lookup(&global_state_tree, trash.area);
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003327 if (!node)
Christopher Faulet131b07b2021-02-12 19:59:21 +01003328 continue; /* next server */
Christopher Faulet6d87c582021-02-15 17:09:33 +01003329 st_line = ebmb_entry(node, typeof(*st_line), node);
3330 strcpy(mybuf, st_line->line); /* st_line->line is always small enough */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003331
Christopher Faulet131b07b2021-02-12 19:59:21 +01003332 ret = srv_state_parse_line(mybuf, global_vsn, params);
Christopher Faulet0bf268e2021-02-12 18:49:31 +01003333 if (ret <= 0)
Christopher Faulet131b07b2021-02-12 19:59:21 +01003334 continue; /* next server */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003335
Christopher Faulet131b07b2021-02-12 19:59:21 +01003336 srv_update_state(srv, global_vsn, params+4);
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003337 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003338
Christopher Faulet131b07b2021-02-12 19:59:21 +01003339 continue; /* next proxy */
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003340 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003341
Christopher Faulet131b07b2021-02-12 19:59:21 +01003342 /*
3343 * Here we load a local server state-file
3344 */
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003345
Christopher Faulet131b07b2021-02-12 19:59:21 +01003346 /* create file variable */
3347 len = srv_state_get_filepath(file, MAXPATHLEN, curproxy->server_state_file_name);
3348 if (len == -1) {
3349 ha_warning("Proxy '%s': Can't load local server state file: file too long.\n", curproxy->id);
3350 continue; /* next proxy */
3351 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003352
Christopher Faulet131b07b2021-02-12 19:59:21 +01003353 /* Load local server state in a tree */
3354 errno = 0;
3355 f = fopen(file, "r");
3356 if (!f) {
3357 ha_warning("Proxy '%s': Can't open server state file '%s': %s.\n",
3358 curproxy->id, file, strerror(errno));
3359 continue; /* next proxy */
3360 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003361
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003362
Christopher Faulet131b07b2021-02-12 19:59:21 +01003363 /* first character of first line of the file must contain the version of the export */
3364 local_vsn = srv_state_get_version(f);
3365 if (local_vsn == 0) {
3366 ha_warning("Proxy '%s': Can't get version of the server state file '%s'.\n",
3367 curproxy->id, file);
3368 goto close_localfile;
3369 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003370
Christopher Faulet131b07b2021-02-12 19:59:21 +01003371 while (fgets(mybuf, SRV_STATE_LINE_MAXLEN, f)) {
3372 int bk_f_forced_id, check_id, check_name, ret;
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003373
Christopher Faulet131b07b2021-02-12 19:59:21 +01003374 ret = srv_state_parse_line(mybuf, local_vsn, params);
3375 if (ret <= 0)
3376 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003377
Christopher Faulet131b07b2021-02-12 19:59:21 +01003378 bk_f_forced_id = (atoi(params[15]) & PR_O_FORCED_ID);
3379 check_id = (atoi(params[0]) == curproxy->uuid);
3380 check_name = (strcmp(curproxy->id, params[1]) == 0);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003381
Christopher Faulet131b07b2021-02-12 19:59:21 +01003382 /* if backend can't be found, let's continue */
3383 if (!check_id && !check_name)
3384 continue;
3385 else if (!check_id && check_name) {
3386 ha_warning("Proxy '%s': backend ID mismatch: from server state file: '%s', from running config '%d'\n",
3387 curproxy->id, params[0], curproxy->uuid);
3388 send_log(curproxy, LOG_NOTICE, "backend ID mismatch: from server state file: '%s', from running config '%d'\n",
3389 params[0], curproxy->uuid);
3390 }
3391 else if (check_id && !check_name) {
3392 ha_warning("Proxy '%s': backend name mismatch: from server state file: '%s', from running config '%s'\n",
3393 curproxy->id, params[1], curproxy->id);
3394 send_log(curproxy, LOG_NOTICE, "backend name mismatch: from server state file: '%s', from running config '%s'\n",
3395 params[1], curproxy->id);
3396 /* if name doesn't match, we still want to update curproxy if the backend id
3397 * was forced in previous the previous configuration */
3398 if (!bk_f_forced_id)
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003399 continue;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003400 }
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003401
Christopher Faulet131b07b2021-02-12 19:59:21 +01003402 /* look for the server by its name: param[3] */
3403 srv = server_find_best_match(curproxy, params[3], 0, NULL);
3404 if (!srv) {
3405 /* if no server found, then warning and continue with next line */
3406 ha_warning("Proxy '%s': can't find server '%s' in backend '%s'\n",
3407 curproxy->id, params[3], params[1]);
3408 send_log(curproxy, LOG_NOTICE, "can't find server '%s' in backend '%s'\n",
3409 params[3], params[1]);
3410 continue;
3411 }
Ilya Shipitsindc6e8a92020-07-16 02:02:40 +05003412
Christopher Faulet131b07b2021-02-12 19:59:21 +01003413 /* now we can proceed with server's state update */
3414 srv_update_state(srv, local_vsn, params+4);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003415 }
Christopher Faulet131b07b2021-02-12 19:59:21 +01003416
3417 close_localfile:
3418 fclose(f);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003419 }
Baptiste Assmannda29fe22019-06-13 13:24:29 +02003420
Christopher Faulet8b4b6a02021-02-15 16:53:51 +01003421 node = ebmb_first(&global_state_tree);
Christopher Faulet131b07b2021-02-12 19:59:21 +01003422 while (node) {
Christopher Faulet6d87c582021-02-15 17:09:33 +01003423 st_line = ebmb_entry(node, typeof(*st_line), node);
Christopher Faulet131b07b2021-02-12 19:59:21 +01003424 next_node = ebmb_next(node);
3425 ebmb_delete(node);
Christopher Faulet6d87c582021-02-15 17:09:33 +01003426 free(st_line->line);
3427 free(st_line);
Christopher Faulet131b07b2021-02-12 19:59:21 +01003428 node = next_node;
3429 }
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003430}
3431
Simon Horman7d09b9a2013-02-12 10:45:51 +09003432/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003433 * update a server's current IP address.
3434 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3435 * ip is in network format.
3436 * updater is a string which contains an information about the requester of the update.
3437 * updater is used if not NULL.
3438 *
3439 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003440 *
3441 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003442 */
Thierry Fournierd35b7a62016-02-24 08:23:22 +01003443int update_server_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003444{
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +02003445 /* save the new IP family & address if necessary */
3446 switch (ip_sin_family) {
3447 case AF_INET:
3448 if (s->addr.ss_family == ip_sin_family &&
3449 !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4))
3450 return 0;
3451 break;
3452 case AF_INET6:
3453 if (s->addr.ss_family == ip_sin_family &&
3454 !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16))
3455 return 0;
3456 break;
3457 };
3458
Baptiste Assmann14e40142015-04-14 01:13:07 +02003459 /* generates a log line and a warning on stderr */
3460 if (1) {
3461 /* book enough space for both IPv4 and IPv6 */
3462 char oldip[INET6_ADDRSTRLEN];
3463 char newip[INET6_ADDRSTRLEN];
3464
3465 memset(oldip, '\0', INET6_ADDRSTRLEN);
3466 memset(newip, '\0', INET6_ADDRSTRLEN);
3467
3468 /* copy old IP address in a string */
3469 switch (s->addr.ss_family) {
3470 case AF_INET:
3471 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3472 break;
3473 case AF_INET6:
3474 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3475 break;
Christopher Fauletb0b76072020-09-08 10:38:40 +02003476 default:
3477 strcpy(oldip, "(none)");
3478 break;
Baptiste Assmann14e40142015-04-14 01:13:07 +02003479 };
3480
3481 /* copy new IP address in a string */
3482 switch (ip_sin_family) {
3483 case AF_INET:
3484 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3485 break;
3486 case AF_INET6:
3487 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3488 break;
3489 };
3490
3491 /* save log line into a buffer */
3492 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3493 s->proxy->id, s->id, oldip, newip, updater);
3494
3495 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003496 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003497
3498 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003499 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003500 }
3501
3502 /* save the new IP family */
3503 s->addr.ss_family = ip_sin_family;
3504 /* save the new IP address */
3505 switch (ip_sin_family) {
3506 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003507 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003508 break;
3509 case AF_INET6:
3510 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3511 break;
3512 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003513 srv_set_dyncookie(s);
Thayne McCombs92149f92020-11-20 01:28:26 -07003514 srv_set_addr_desc(s);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003515
3516 return 0;
3517}
3518
William Dauchy7cabc062021-02-11 22:51:24 +01003519/* update agent health check address and port
3520 * addr can be ip4/ip6 or a hostname
3521 * if one error occurs, don't apply anything
3522 * must be called with the server lock held.
3523 */
3524static const char *update_server_agent_addr_port(struct server *s, const char *addr,
3525 const char *port)
3526{
3527 struct sockaddr_storage sk;
3528 struct buffer *msg;
3529 int new_port;
3530
3531 msg = get_trash_chunk();
3532 chunk_reset(msg);
3533
3534 if (!(s->agent.state & CHK_ST_ENABLED)) {
3535 chunk_strcat(msg, "agent checks are not enabled on this server");
3536 goto out;
3537 }
3538 if (addr) {
3539 memset(&sk, 0, sizeof(struct sockaddr_storage));
3540 if (str2ip(addr, &sk) == NULL) {
3541 chunk_appendf(msg, "invalid addr '%s'", addr);
3542 goto out;
3543 }
3544 }
3545 if (port) {
3546 if (strl2irc(port, strlen(port), &new_port) != 0) {
3547 chunk_appendf(msg, "provided port is not an integer");
3548 goto out;
3549 }
3550 if (new_port < 0 || new_port > 65535) {
3551 chunk_appendf(msg, "provided port is invalid");
3552 goto out;
3553 }
3554 }
3555out:
3556 if (msg->data)
3557 return msg->area;
3558 else {
3559 if (addr)
3560 set_srv_agent_addr(s, &sk);
3561 if (port)
3562 set_srv_agent_port(s, new_port);
3563 }
3564 return NULL;
3565}
3566
William Dauchyb456e1f2021-02-11 22:51:23 +01003567/* update server health check address and port
3568 * addr must be ip4 or ip6, it won't be resolved
3569 * if one error occurs, don't apply anything
3570 * must be called with the server lock held.
3571 */
3572static const char *update_server_check_addr_port(struct server *s, const char *addr,
3573 const char *port)
3574{
3575 struct sockaddr_storage sk;
3576 struct buffer *msg;
3577 int new_port;
3578
3579 msg = get_trash_chunk();
3580 chunk_reset(msg);
3581
3582 if (!(s->check.state & CHK_ST_ENABLED)) {
3583 chunk_strcat(msg, "health checks are not enabled on this server");
3584 goto out;
3585 }
3586 if (addr) {
3587 memset(&sk, 0, sizeof(struct sockaddr_storage));
3588 if (str2ip2(addr, &sk, 0) == NULL) {
3589 chunk_appendf(msg, "invalid addr '%s'", addr);
3590 goto out;
3591 }
3592 }
3593 if (port) {
3594 if (strl2irc(port, strlen(port), &new_port) != 0) {
3595 chunk_appendf(msg, "provided port is not an integer");
3596 goto out;
3597 }
3598 if (new_port < 0 || new_port > 65535) {
3599 chunk_appendf(msg, "provided port is invalid");
3600 goto out;
3601 }
3602 /* prevent the update of port to 0 if MAPPORTS are in use */
3603 if ((s->flags & SRV_F_MAPPORTS) && new_port == 0) {
3604 chunk_appendf(msg, "can't unset 'port' since MAPPORTS is in use");
3605 goto out;
3606 }
3607 }
3608out:
3609 if (msg->data)
3610 return msg->area;
3611 else {
3612 if (addr)
3613 s->check.addr = sk;
3614 if (port)
3615 s->check.port = new_port;
3616 }
3617 return NULL;
3618}
3619
Baptiste Assmann14e40142015-04-14 01:13:07 +02003620/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003621 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3622 *
3623 * Caller can pass its name through <updater> to get it integrated in the response message
3624 * returned by the function.
3625 *
3626 * The function first does the following, in that order:
3627 * - validates the new addr and/or port
3628 * - checks if an update is required (new IP or port is different than current ones)
3629 * - checks the update is allowed:
3630 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3631 * - allow all changes if no CHECKS are configured
3632 * - if CHECK is configured:
3633 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3634 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3635 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003636 *
3637 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003638 */
3639const char *update_server_addr_port(struct server *s, const char *addr, const char *port, char *updater)
3640{
3641 struct sockaddr_storage sa;
3642 int ret, port_change_required;
3643 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003644 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003645 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003646 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003647
3648 msg = get_trash_chunk();
3649 chunk_reset(msg);
3650
3651 if (addr) {
3652 memset(&sa, 0, sizeof(struct sockaddr_storage));
3653 if (str2ip2(addr, &sa, 0) == NULL) {
3654 chunk_printf(msg, "Invalid addr '%s'", addr);
3655 goto out;
3656 }
3657
3658 /* changes are allowed on AF_INET* families only */
3659 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3660 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3661 goto out;
3662 }
3663
3664 /* collecting data currently setup */
3665 memset(current_addr, '\0', sizeof(current_addr));
3666 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3667 /* changes are allowed on AF_INET* families only */
3668 if ((ret != AF_INET) && (ret != AF_INET6)) {
3669 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3670 goto out;
3671 }
3672
3673 /* applying ADDR changes if required and allowed
3674 * ipcmp returns 0 when both ADDR are the same
3675 */
3676 if (ipcmp(&s->addr, &sa) == 0) {
3677 chunk_appendf(msg, "no need to change the addr");
3678 goto port;
3679 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003680 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003681 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003682
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003683 /* update report for caller */
3684 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3685 }
3686
3687 port:
3688 if (port) {
3689 char sign = '\0';
3690 char *endptr;
3691
3692 if (addr)
3693 chunk_appendf(msg, ", ");
3694
3695 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003696 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003697
3698 /* check if PORT change is required */
3699 port_change_required = 0;
3700
3701 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003702 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003703 new_port = strtol(port, &endptr, 10);
3704 if ((errno != 0) || (port == endptr)) {
3705 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3706 goto out;
3707 }
3708
3709 /* check if caller triggers a port mapped or offset */
3710 if (sign == '-' || (sign == '+')) {
3711 /* check if server currently uses port map */
3712 if (!(s->flags & SRV_F_MAPPORTS)) {
3713 /* switch from fixed port to port map mandatorily triggers
3714 * a port change */
3715 port_change_required = 1;
3716 /* check is configured
3717 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3718 * prevent PORT change if check doesn't have it's dedicated port while switching
3719 * to port mapping */
William Dauchy69f118d2021-02-03 22:30:07 +01003720 if (!s->check.port) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003721 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.");
3722 goto out;
3723 }
3724 }
3725 /* we're already using port maps */
3726 else {
3727 port_change_required = current_port != new_port;
3728 }
3729 }
3730 /* fixed port */
3731 else {
3732 port_change_required = current_port != new_port;
3733 }
3734
3735 /* applying PORT changes if required and update response message */
3736 if (port_change_required) {
3737 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003738 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003739 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003740
3741 /* prepare message */
3742 chunk_appendf(msg, "port changed from '");
3743 if (s->flags & SRV_F_MAPPORTS)
3744 chunk_appendf(msg, "+");
3745 chunk_appendf(msg, "%d' to '", current_port);
3746
3747 if (sign == '-') {
3748 s->flags |= SRV_F_MAPPORTS;
3749 chunk_appendf(msg, "%c", sign);
3750 /* just use for result output */
3751 new_port = -new_port;
3752 }
3753 else if (sign == '+') {
3754 s->flags |= SRV_F_MAPPORTS;
3755 chunk_appendf(msg, "%c", sign);
3756 }
3757 else {
3758 s->flags &= ~SRV_F_MAPPORTS;
3759 }
3760
3761 chunk_appendf(msg, "%d'", new_port);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003762 }
3763 else {
3764 chunk_appendf(msg, "no need to change the port");
3765 }
3766 }
3767
3768out:
William Dauchy6318d332020-05-02 21:52:36 +02003769 if (changed) {
3770 /* force connection cleanup on the given server */
3771 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003772 srv_set_dyncookie(s);
Thayne McCombs92149f92020-11-20 01:28:26 -07003773 srv_set_addr_desc(s);
William Dauchy6318d332020-05-02 21:52:36 +02003774 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003775 if (updater)
3776 chunk_appendf(msg, " by '%s'", updater);
3777 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003778 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003779}
3780
3781
3782/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003783 * update server status based on result of name resolution
3784 * returns:
3785 * 0 if server status is updated
3786 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003787 *
3788 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003789 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003790int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003791{
Emeric Brun750fe792020-12-23 16:51:12 +01003792 struct resolvers *resolvers = s->resolvers;
Emeric Brun08622d32020-12-23 17:41:43 +01003793 struct resolv_resolution *resolution = s->resolv_requester->resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003794 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003795
Jerome Magnin012261a2020-07-28 13:38:22 +02003796 /* If resolution is NULL we're dealing with SRV records Additional records */
3797 if (resolution == NULL) {
Baptiste Assmann87138c32020-08-04 10:57:21 +02003798 /* since this server has an IP, it can go back in production */
3799 if (has_no_ip == 0) {
3800 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3801 return 1;
3802 }
3803
Jerome Magnin012261a2020-07-28 13:38:22 +02003804 if (s->next_admin & SRV_ADMF_RMAINT)
3805 return 1;
3806
3807 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record");
3808 return 0;
3809 }
3810
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003811 switch (resolution->status) {
3812 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003813 /* status when HAProxy has just (re)started.
3814 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003815 break;
3816
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003817 case RSLV_STATUS_VALID:
3818 /*
3819 * resume health checks
3820 * server will be turned back on if health check is safe
3821 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003822 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003823 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003824 return 1;
3825 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3826 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003827 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003828 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003829
Emeric Brun52a91d32017-08-31 14:41:55 +02003830 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003831 return 1;
3832 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3833 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3834 s->proxy->id, s->id);
3835
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003836 ha_warning("%s.\n", trash.area);
3837 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003838 return 0;
3839
3840 case RSLV_STATUS_NX:
3841 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003842 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3843 if (!tick_is_expired(exp, now_ms))
3844 break;
3845
3846 if (s->next_admin & SRV_ADMF_RMAINT)
3847 return 1;
3848 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3849 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003850
3851 case RSLV_STATUS_TIMEOUT:
3852 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003853 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3854 if (!tick_is_expired(exp, now_ms))
3855 break;
3856
3857 if (s->next_admin & SRV_ADMF_RMAINT)
3858 return 1;
3859 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3860 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003861
3862 case RSLV_STATUS_REFUSED:
3863 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003864 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3865 if (!tick_is_expired(exp, now_ms))
3866 break;
3867
3868 if (s->next_admin & SRV_ADMF_RMAINT)
3869 return 1;
3870 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3871 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003872
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003873 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003874 /* stop server if resolution failed for a long enough period */
3875 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3876 if (!tick_is_expired(exp, now_ms))
3877 break;
3878
3879 if (s->next_admin & SRV_ADMF_RMAINT)
3880 return 1;
3881 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3882 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003883 }
3884
3885 return 1;
3886}
3887
3888/*
3889 * Server Name Resolution valid response callback
3890 * It expects:
3891 * - <nameserver>: the name server which answered the valid response
3892 * - <response>: buffer containing a valid DNS response
3893 * - <response_len>: size of <response>
3894 * It performs the following actions:
3895 * - ignore response if current ip found and server family not met
3896 * - update with first new ip found if family is met and current IP is not found
3897 * returns:
3898 * 0 on error
3899 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003900 *
3901 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003902 */
Emeric Brun08622d32020-12-23 17:41:43 +01003903int snr_resolution_cb(struct resolv_requester *requester, struct dns_counters *counters)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003904{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003905 struct server *s = NULL;
Emeric Brun08622d32020-12-23 17:41:43 +01003906 struct resolv_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003907 void *serverip, *firstip;
3908 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003909 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003910 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003911 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003912
Christopher Faulet67957bd2017-09-27 11:00:59 +02003913 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003914 if (!s)
3915 return 1;
3916
Emeric Brun08622d32020-12-23 17:41:43 +01003917 resolution = s->resolv_requester->resolution;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003918
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003919 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003920 firstip = NULL; /* pointer to the first valid response found */
3921 /* it will be used as the new IP if a change is required */
3922 firstip_sin_family = AF_UNSPEC;
3923 serverip = NULL; /* current server IP address */
3924
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003925 /* initializing server IP pointer */
3926 server_sin_family = s->addr.ss_family;
3927 switch (server_sin_family) {
3928 case AF_INET:
3929 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3930 break;
3931
3932 case AF_INET6:
3933 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3934 break;
3935
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003936 case AF_UNSPEC:
3937 break;
3938
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003939 default:
3940 goto invalid;
3941 }
3942
Emeric Brund30e9a12020-12-23 18:49:16 +01003943 ret = resolv_get_ip_from_response(&resolution->response, &s->resolv_opts,
3944 serverip, server_sin_family, &firstip,
3945 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003946
3947 switch (ret) {
Emeric Brun456de772020-12-23 18:17:31 +01003948 case RSLV_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003949 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003950
Emeric Brun456de772020-12-23 18:17:31 +01003951 case RSLV_UPD_SRVIP_NOT_FOUND:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003952 goto save_ip;
3953
Emeric Brun456de772020-12-23 18:17:31 +01003954 case RSLV_UPD_CNAME:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003955 goto invalid;
3956
Emeric Brun456de772020-12-23 18:17:31 +01003957 case RSLV_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003958 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003959 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003960
Emeric Brun456de772020-12-23 18:17:31 +01003961 case RSLV_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003962 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003963 resolution->status = RSLV_STATUS_OTHER;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003964 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003965
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003966 default:
3967 goto invalid;
3968
3969 }
3970
3971 save_ip:
Emeric Brun50c870e2021-01-04 10:40:46 +01003972 if (counters) {
3973 counters->update++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003974 /* save the first ip we found */
Emeric Brun50c870e2021-01-04 10:40:46 +01003975 chunk_printf(chk, "%s/%s", counters->pid, counters->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003976 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003977 else
3978 chunk_printf(chk, "DNS cache");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003979 update_server_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003980
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003981 update_status:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003982 snr_update_srv_status(s, has_no_ip);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003983 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003984
3985 invalid:
Emeric Brun50c870e2021-01-04 10:40:46 +01003986 if (counters) {
3987 counters->invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003988 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003989 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003990 snr_update_srv_status(s, has_no_ip);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003991 return 0;
3992}
3993
3994/*
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003995 * SRV record error management callback
3996 * returns:
3997 * 0 on error
3998 * 1 when no error or safe ignore
3999 *
4000 * Grabs the server's lock.
4001 */
4002int srvrq_resolution_error_cb(struct resolv_requester *requester, int error_code)
4003{
4004 struct server *s;
4005 struct resolv_srvrq *srvrq;
4006 struct resolv_resolution *res;
4007 struct resolvers *resolvers;
4008 int exp;
4009
4010 /* SRV records */
4011 srvrq = objt_resolv_srvrq(requester->owner);
4012 if (!srvrq)
4013 return 1;
4014
4015 resolvers = srvrq->resolvers;
4016 res = requester->resolution;
4017
4018 switch (res->status) {
4019
4020 case RSLV_STATUS_NX:
4021 /* stop server if resolution is NX for a long enough period */
4022 exp = tick_add(res->last_valid, resolvers->hold.nx);
4023 if (!tick_is_expired(exp, now_ms))
4024 return 1;
4025 break;
4026
4027 case RSLV_STATUS_TIMEOUT:
4028 /* stop server if resolution is TIMEOUT for a long enough period */
4029 exp = tick_add(res->last_valid, resolvers->hold.timeout);
4030 if (!tick_is_expired(exp, now_ms))
4031 return 1;
4032 break;
4033
4034 case RSLV_STATUS_REFUSED:
4035 /* stop server if resolution is REFUSED for a long enough period */
4036 exp = tick_add(res->last_valid, resolvers->hold.refused);
4037 if (!tick_is_expired(exp, now_ms))
4038 return 1;
4039 break;
4040
4041 default:
4042 /* stop server if resolution failed for a long enough period */
4043 exp = tick_add(res->last_valid, resolvers->hold.other);
4044 if (!tick_is_expired(exp, now_ms))
4045 return 1;
4046 }
4047
4048 /* Remove any associated server */
4049 for (s = srvrq->proxy->srv; s != NULL; s = s->next) {
4050 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
4051 if (s->srvrq == srvrq) {
4052 snr_update_srv_status(s, 1);
4053 free(s->hostname);
4054 free(s->hostname_dn);
4055 s->hostname = NULL;
4056 s->hostname_dn = NULL;
4057 s->hostname_dn_len = 0;
Christopher Faulet52d4d302021-02-23 12:24:09 +01004058 memset(&s->addr, 0, sizeof(s->addr));
4059 s->svc_port = 0;
Baptiste Assmannb4badf72020-11-19 22:38:33 +01004060 resolv_unlink_resolution(s->resolv_requester);
4061 }
4062 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
4063 }
4064
4065 return 1;
4066}
4067
4068/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004069 * Server Name Resolution error management callback
4070 * returns:
4071 * 0 on error
4072 * 1 when no error or safe ignore
Willy Tarreau46b7f532018-08-21 11:54:26 +02004073 *
4074 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004075 */
Emeric Brun08622d32020-12-23 17:41:43 +01004076int snr_resolution_error_cb(struct resolv_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004077{
Christopher Faulet67957bd2017-09-27 11:00:59 +02004078 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004079
Christopher Faulet67957bd2017-09-27 11:00:59 +02004080 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004081 if (!s)
4082 return 1;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004083 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004084 snr_update_srv_status(s, 0);
Christopher Fauletd127ffa2021-02-23 12:33:17 +01004085 memset(&s->addr, 0, sizeof(s->addr));
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004086 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02004087 return 1;
4088}
4089
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004090/*
4091 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004092 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004093 * It returns a pointer to the first server found or NULL if <ip> is not yet
4094 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01004095 *
4096 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004097 */
4098struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
4099{
4100 struct server *tmpsrv;
4101 struct proxy *be;
4102
4103 if (!srv)
4104 return NULL;
4105
4106 be = srv->proxy;
4107 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01004108 /* we found the current server is the same, ignore it */
4109 if (srv == tmpsrv)
4110 continue;
4111
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004112 /* We want to compare the IP in the record with the IP of the servers in the
4113 * same backend, only if:
4114 * * DNS resolution is enabled on the server
4115 * * the hostname used for the resolution by our server is the same than the
4116 * one used for the server found in the backend
4117 * * the server found in the backend is not our current server
4118 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004119 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004120 if ((tmpsrv->hostname_dn == NULL) ||
4121 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
4122 (strcmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01004123 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004124 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004125 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004126 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004127
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004128 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01004129 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004130 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004131 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01004132 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02004133
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004134 /* At this point, we have 2 different servers using the same DNS hostname
4135 * for their respective resolution.
4136 */
4137 if (*ip_family == tmpsrv->addr.ss_family &&
4138 ((tmpsrv->addr.ss_family == AF_INET &&
4139 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
4140 (tmpsrv->addr.ss_family == AF_INET6 &&
4141 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004142 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004143 return tmpsrv;
4144 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004145 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004146 }
4147
Emeric Brune9fd6b52017-11-02 17:20:39 +01004148
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02004149 return NULL;
4150}
4151
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004152/* Sets the server's address (srv->addr) from srv->hostname using the libc's
4153 * resolver. This is suited for initial address configuration. Returns 0 on
4154 * success otherwise a non-zero error code. In case of error, *err_code, if
4155 * not NULL, is filled up.
4156 */
4157int srv_set_addr_via_libc(struct server *srv, int *err_code)
4158{
4159 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004160 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01004161 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004162 return 1;
4163 }
4164 return 0;
4165}
4166
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004167/* Set the server's FDQN (->hostname) from <hostname>.
4168 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004169 *
4170 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004171 */
Emeric Brun08622d32020-12-23 17:41:43 +01004172int srv_set_fqdn(struct server *srv, const char *hostname, int resolv_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004173{
Emeric Brun08622d32020-12-23 17:41:43 +01004174 struct resolv_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004175 char *hostname_dn;
4176 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004177
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02004178 /* Note that the server lock is already held. */
4179 if (!srv->resolvers)
4180 return -1;
4181
Emeric Brun08622d32020-12-23 17:41:43 +01004182 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004183 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004184 /* run time DNS resolution was not active for this server
4185 * and we can't enable it at run time for now.
4186 */
Emeric Brun08622d32020-12-23 17:41:43 +01004187 if (!srv->resolv_requester)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004188 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004189
4190 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004191 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004192 hostname_dn = trash.area;
Emeric Brund30e9a12020-12-23 18:49:16 +01004193 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len + 1,
4194 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004195 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004196 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004197
Emeric Brun08622d32020-12-23 17:41:43 +01004198 resolution = srv->resolv_requester->resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02004199 if (resolution &&
4200 resolution->hostname_dn &&
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004201 strcmp(resolution->hostname_dn, hostname_dn) == 0)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004202 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004203
Emeric Brund30e9a12020-12-23 18:49:16 +01004204 resolv_unlink_resolution(srv->resolv_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004205
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004206 free(srv->hostname);
4207 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02004208 srv->hostname = strdup(hostname);
4209 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004210 srv->hostname_dn_len = hostname_dn_len;
4211 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004212 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004213
Baptiste Assmann13a92322019-06-07 09:40:55 +02004214 if (srv->flags & SRV_F_NO_RESOLUTION)
4215 goto end;
4216
Emeric Brund30e9a12020-12-23 18:49:16 +01004217 if (resolv_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02004218 goto err;
4219
4220 end:
Emeric Brun08622d32020-12-23 17:41:43 +01004221 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004222 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02004223 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02004224
4225 err:
Emeric Brun08622d32020-12-23 17:41:43 +01004226 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004227 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02004228 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004229}
4230
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004231/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
4232 * from the state file. This is suited for initial address configuration.
4233 * Returns 0 on success otherwise a non-zero error code. In case of error,
4234 * *err_code, if not NULL, is filled up.
4235 */
4236static int srv_apply_lastaddr(struct server *srv, int *err_code)
4237{
4238 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
4239 if (err_code)
4240 *err_code |= ERR_WARN;
4241 return 1;
4242 }
4243 return 0;
4244}
4245
Willy Tarreau25e51522016-11-04 15:10:17 +01004246/* returns 0 if no error, otherwise a combination of ERR_* flags */
4247static int srv_iterate_initaddr(struct server *srv)
4248{
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004249 char *name = srv->hostname;
Willy Tarreau25e51522016-11-04 15:10:17 +01004250 int return_code = 0;
4251 int err_code;
4252 unsigned int methods;
4253
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004254 /* If no addr and no hostname set, get the name from the DNS SRV request */
4255 if (!name && srv->srvrq)
4256 name = srv->srvrq->name;
4257
Willy Tarreau25e51522016-11-04 15:10:17 +01004258 methods = srv->init_addr_methods;
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004259 if (!methods) {
4260 /* otherwise default to "last,libc" */
Willy Tarreau25e51522016-11-04 15:10:17 +01004261 srv_append_initaddr(&methods, SRV_IADDR_LAST);
4262 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004263 if (srv->resolvers_id) {
4264 /* dns resolution is configured, add "none" to not fail on startup */
4265 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4266 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004267 }
4268
Willy Tarreau3eed10e2016-11-07 21:03:16 +01004269 /* "-dr" : always append "none" so that server addresses resolution
4270 * failures are silently ignored, this is convenient to validate some
4271 * configs out of their environment.
4272 */
4273 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
4274 srv_append_initaddr(&methods, SRV_IADDR_NONE);
4275
Willy Tarreau25e51522016-11-04 15:10:17 +01004276 while (methods) {
4277 err_code = 0;
4278 switch (srv_get_next_initaddr(&methods)) {
4279 case SRV_IADDR_LAST:
4280 if (!srv->lastaddr)
4281 continue;
4282 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004283 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004284 return_code |= err_code;
4285 break;
4286
4287 case SRV_IADDR_LIBC:
4288 if (!srv->hostname)
4289 continue;
4290 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01004291 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01004292 return_code |= err_code;
4293 break;
4294
Willy Tarreau37ebe122016-11-04 15:17:58 +01004295 case SRV_IADDR_NONE:
4296 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004297 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004298 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004299 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004300 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01004301 return return_code;
4302
Willy Tarreau4310d362016-11-02 15:05:56 +01004303 case SRV_IADDR_IP:
4304 ipcpy(&srv->init_addr, &srv->addr);
4305 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004306 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 +01004307 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau4310d362016-11-02 15:05:56 +01004308 }
Olivier Houchard4e694042017-03-14 20:01:29 +01004309 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01004310
Willy Tarreau25e51522016-11-04 15:10:17 +01004311 default: /* unhandled method */
4312 break;
4313 }
4314 }
4315
4316 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004317 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004318 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau25e51522016-11-04 15:10:17 +01004319 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01004320 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004321 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004322 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01004323 }
Willy Tarreau25e51522016-11-04 15:10:17 +01004324
4325 return_code |= ERR_ALERT | ERR_FATAL;
4326 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01004327out:
4328 srv_set_dyncookie(srv);
Thayne McCombs92149f92020-11-20 01:28:26 -07004329 srv_set_addr_desc(srv);
Olivier Houchard4e694042017-03-14 20:01:29 +01004330 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01004331}
4332
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004333/*
4334 * This function parses all backends and all servers within each backend
4335 * and performs servers' addr resolution based on information provided by:
4336 * - configuration file
4337 * - server-state file (states provided by an 'old' haproxy process)
4338 *
4339 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
4340 */
4341int srv_init_addr(void)
4342{
4343 struct proxy *curproxy;
4344 int return_code = 0;
4345
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004346 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004347 while (curproxy) {
4348 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004349
4350 /* servers are in backend only */
Amaury Denoyellee3c41922021-01-06 14:28:50 +01004351 if (!(curproxy->cap & PR_CAP_BE) || curproxy->disabled)
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004352 goto srv_init_addr_next;
4353
Willy Tarreau25e51522016-11-04 15:10:17 +01004354 for (srv = curproxy->srv; srv; srv = srv->next)
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004355 if (srv->hostname || srv->srvrq)
Willy Tarreau3d609a72017-09-06 14:22:45 +02004356 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004357
4358 srv_init_addr_next:
4359 curproxy = curproxy->next;
4360 }
4361
4362 return return_code;
4363}
4364
Willy Tarreau46b7f532018-08-21 11:54:26 +02004365/*
4366 * Must be called with the server lock held.
4367 */
Emeric Brun08622d32020-12-23 17:41:43 +01004368const char *update_server_fqdn(struct server *server, const char *fqdn, const char *updater, int resolv_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004369{
4370
Willy Tarreau83061a82018-07-13 11:56:34 +02004371 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004372
4373 msg = get_trash_chunk();
4374 chunk_reset(msg);
4375
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004376 if (server->hostname && strcmp(fqdn, server->hostname) == 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004377 chunk_appendf(msg, "no need to change the FDQN");
4378 goto out;
4379 }
4380
4381 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4382 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4383 goto out;
4384 }
4385
4386 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4387 server->proxy->id, server->id, server->hostname, fqdn);
4388
Emeric Brun08622d32020-12-23 17:41:43 +01004389 if (srv_set_fqdn(server, fqdn, resolv_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004390 chunk_reset(msg);
4391 chunk_appendf(msg, "could not update %s/%s FQDN",
4392 server->proxy->id, server->id);
4393 goto out;
4394 }
4395
4396 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004397 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004398
4399 out:
4400 if (updater)
4401 chunk_appendf(msg, " by '%s'", updater);
4402 chunk_appendf(msg, "\n");
4403
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004404 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004405}
4406
4407
Willy Tarreau21b069d2016-11-23 17:15:08 +01004408/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4409 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004410 * 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 +01004411 * used for CLI commands requiring a server name.
4412 * Important: the <arg> is modified to remove the '/'.
4413 */
4414struct server *cli_find_server(struct appctx *appctx, char *arg)
4415{
4416 struct proxy *px;
4417 struct server *sv;
4418 char *line;
4419
4420 /* split "backend/server" and make <line> point to server */
4421 for (line = arg; *line; line++)
4422 if (*line == '/') {
4423 *line++ = '\0';
4424 break;
4425 }
4426
4427 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004428 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004429 return NULL;
4430 }
4431
4432 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004433 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004434 return NULL;
4435 }
4436
Willy Tarreauc3914d42020-09-24 08:39:22 +02004437 if (px->disabled) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004438 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004439 return NULL;
4440 }
4441
4442 return sv;
4443}
4444
William Lallemand222baf22016-11-19 02:00:33 +01004445
Willy Tarreau46b7f532018-08-21 11:54:26 +02004446/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004447static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004448{
4449 struct server *sv;
4450 const char *warning;
4451
4452 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4453 return 1;
4454
4455 sv = cli_find_server(appctx, args[2]);
4456 if (!sv)
4457 return 1;
4458
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004459 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02004460
William Lallemand222baf22016-11-19 02:00:33 +01004461 if (strcmp(args[3], "weight") == 0) {
4462 warning = server_parse_weight_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004463 if (warning)
4464 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004465 }
4466 else if (strcmp(args[3], "state") == 0) {
4467 if (strcmp(args[4], "ready") == 0)
4468 srv_adm_set_ready(sv);
4469 else if (strcmp(args[4], "drain") == 0)
4470 srv_adm_set_drain(sv);
4471 else if (strcmp(args[4], "maint") == 0)
4472 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02004473 else
4474 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004475 }
4476 else if (strcmp(args[3], "health") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004477 if (sv->track)
4478 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004479 else if (strcmp(args[4], "up") == 0) {
4480 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004481 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004482 }
4483 else if (strcmp(args[4], "stopping") == 0) {
4484 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004485 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004486 }
4487 else if (strcmp(args[4], "down") == 0) {
4488 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004489 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004490 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004491 else
4492 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004493 }
4494 else if (strcmp(args[3], "agent") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004495 if (!(sv->agent.state & CHK_ST_ENABLED))
4496 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004497 else if (strcmp(args[4], "up") == 0) {
4498 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004499 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004500 }
4501 else if (strcmp(args[4], "down") == 0) {
4502 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004503 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004504 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004505 else
4506 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004507 }
Misiek2da082d2017-01-09 09:40:42 +01004508 else if (strcmp(args[3], "agent-addr") == 0) {
William Dauchy7cabc062021-02-11 22:51:24 +01004509 char *addr = NULL;
4510 char *port = NULL;
4511 if (strlen(args[4]) == 0) {
4512 cli_err(appctx, "set server <b>/<s> agent-addr requires"
4513 " an address and optionally a port.\n");
4514 goto out_unlock;
4515 }
4516 addr = args[4];
4517 if (strcmp(args[5], "port") == 0)
4518 port = args[6];
4519 warning = update_server_agent_addr_port(sv, addr, port);
4520 if (warning)
4521 cli_msg(appctx, LOG_WARNING, warning);
4522 }
4523 else if (strcmp(args[3], "agent-port") == 0) {
4524 char *port = NULL;
4525 if (strlen(args[4]) == 0) {
4526 cli_err(appctx, "set server <b>/<s> agent-port requires"
4527 " a port.\n");
4528 goto out_unlock;
4529 }
4530 port = args[4];
4531 warning = update_server_agent_addr_port(sv, NULL, port);
4532 if (warning)
4533 cli_msg(appctx, LOG_WARNING, warning);
Misiek2da082d2017-01-09 09:40:42 +01004534 }
4535 else if (strcmp(args[3], "agent-send") == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004536 if (!(sv->agent.state & CHK_ST_ENABLED))
4537 cli_err(appctx, "agent checks are not enabled on this server.\n");
4538 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004539 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004540 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004541 }
4542 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004543 else if (strcmp(args[3], "check-addr") == 0) {
4544 char *addr = NULL;
4545 char *port = NULL;
4546 if (strlen(args[4]) == 0) {
4547 cli_err(appctx, "set server <b>/<s> check-addr requires"
4548 " an address and optionally a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004549 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004550 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004551 addr = args[4];
4552 if (strcmp(args[5], "port") == 0)
4553 port = args[6];
4554 warning = update_server_check_addr_port(sv, addr, port);
4555 if (warning)
4556 cli_msg(appctx, LOG_WARNING, warning);
4557 }
4558 else if (strcmp(args[3], "check-port") == 0) {
4559 char *port = NULL;
4560 if (strlen(args[4]) == 0) {
4561 cli_err(appctx, "set server <b>/<s> check-port requires"
4562 " a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004563 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004564 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004565 port = args[4];
4566 warning = update_server_check_addr_port(sv, NULL, port);
4567 if (warning)
4568 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004569 }
4570 else if (strcmp(args[3], "addr") == 0) {
4571 char *addr = NULL;
4572 char *port = NULL;
4573 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004574 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004575 goto out_unlock;
William Lallemand222baf22016-11-19 02:00:33 +01004576 }
4577 else {
4578 addr = args[4];
4579 }
4580 if (strcmp(args[5], "port") == 0) {
4581 port = args[6];
4582 }
4583 warning = update_server_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004584 if (warning)
4585 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004586 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
4587 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004588 else if (strcmp(args[3], "fqdn") == 0) {
4589 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004590 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004591 goto out_unlock;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004592 }
Baptiste Assmann13a92322019-06-07 09:40:55 +02004593 /* ensure runtime resolver will process this new fqdn */
4594 if (sv->flags & SRV_F_NO_RESOLUTION) {
4595 sv->flags &= ~SRV_F_NO_RESOLUTION;
4596 }
Olivier Houchardd16bfe62017-10-31 15:21:19 +01004597 warning = update_server_fqdn(sv, args[4], "stats socket command", 0);
Willy Tarreau9d008692019-08-09 11:21:01 +02004598 if (warning)
4599 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004600 }
William Dauchyf6370442020-11-14 19:25:33 +01004601 else if (strcmp(args[3], "ssl") == 0) {
4602#ifdef USE_OPENSSL
4603 if (sv->ssl_ctx.ctx == NULL) {
4604 cli_err(appctx, "'set server <srv> ssl' cannot be set. "
4605 " default-server should define ssl settings\n");
4606 goto out_unlock;
4607 } else if (strcmp(args[4], "on") == 0) {
4608 ssl_sock_set_srv(sv, 1);
4609 } else if (strcmp(args[4], "off") == 0) {
4610 ssl_sock_set_srv(sv, 0);
4611 } else {
4612 cli_err(appctx, "'set server <srv> ssl' expects 'on' or 'off'.\n");
4613 goto out_unlock;
4614 }
4615 srv_cleanup_connections(sv);
4616 cli_msg(appctx, LOG_NOTICE, "server ssl setting updated.\n");
4617#else
4618 cli_msg(appctx, LOG_NOTICE, "server ssl setting not supported.\n");
4619#endif
4620 } else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004621 cli_err(appctx,
William Dauchy3f4ec7d2021-02-15 17:22:16 +01004622 "usage: set server <backend>/<server> "
4623 "addr | agent | agent-addr | agent-port | agent-send | "
4624 "check-addr | check-port | fqdn | health | ssl | "
4625 "state | weight\n");
William Lallemand222baf22016-11-19 02:00:33 +01004626 }
Willy Tarreau6ce38f32017-11-05 10:19:23 +01004627 out_unlock:
Christopher Faulet2a944ee2017-11-07 10:42:54 +01004628 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004629 return 1;
4630}
4631
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004632static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004633{
4634 struct stream_interface *si = appctx->owner;
4635 struct proxy *px;
4636 struct server *sv;
4637 char *line;
4638
4639
4640 /* split "backend/server" and make <line> point to server */
4641 for (line = args[2]; *line; line++)
4642 if (*line == '/') {
4643 *line++ = '\0';
4644 break;
4645 }
4646
Willy Tarreau9d008692019-08-09 11:21:01 +02004647 if (!*line)
4648 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004649
Willy Tarreau9d008692019-08-09 11:21:01 +02004650 if (!get_backend_server(args[2], line, &px, &sv))
4651 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004652
4653 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004654 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4655 sv->iweight);
4656 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004657 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004658 return 0;
4659 }
William Lallemand6b160942016-11-22 12:34:35 +01004660 return 1;
4661}
4662
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004663/* Parse a "set weight" command.
4664 *
4665 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004666 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004667static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004668{
4669 struct server *sv;
4670 const char *warning;
4671
4672 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4673 return 1;
4674
4675 sv = cli_find_server(appctx, args[2]);
4676 if (!sv)
4677 return 1;
4678
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004679 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4680
William Lallemand6b160942016-11-22 12:34:35 +01004681 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004682 if (warning)
4683 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004684
4685 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4686
William Lallemand6b160942016-11-22 12:34:35 +01004687 return 1;
4688}
4689
Willy Tarreau46b7f532018-08-21 11:54:26 +02004690/* parse a "set maxconn server" command. It always returns 1.
4691 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004692 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004693 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004694static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004695{
4696 struct server *sv;
4697 const char *warning;
4698
4699 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4700 return 1;
4701
4702 sv = cli_find_server(appctx, args[3]);
4703 if (!sv)
4704 return 1;
4705
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004706 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4707
Willy Tarreaub8026272016-11-23 11:26:56 +01004708 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004709 if (warning)
4710 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004711
4712 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4713
Willy Tarreaub8026272016-11-23 11:26:56 +01004714 return 1;
4715}
William Lallemand6b160942016-11-22 12:34:35 +01004716
Willy Tarreau46b7f532018-08-21 11:54:26 +02004717/* parse a "disable agent" command. It always returns 1.
4718 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004719 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004720 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004721static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004722{
4723 struct server *sv;
4724
4725 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4726 return 1;
4727
4728 sv = cli_find_server(appctx, args[2]);
4729 if (!sv)
4730 return 1;
4731
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004732 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004733 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004734 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004735 return 1;
4736}
4737
Willy Tarreau46b7f532018-08-21 11:54:26 +02004738/* parse a "disable health" command. It always returns 1.
4739 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004740 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004741 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004742static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004743{
4744 struct server *sv;
4745
4746 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4747 return 1;
4748
4749 sv = cli_find_server(appctx, args[2]);
4750 if (!sv)
4751 return 1;
4752
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004753 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004754 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004755 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004756 return 1;
4757}
4758
Willy Tarreau46b7f532018-08-21 11:54:26 +02004759/* parse a "disable server" command. It always returns 1.
4760 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004761 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004762 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004763static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004764{
4765 struct server *sv;
4766
4767 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4768 return 1;
4769
4770 sv = cli_find_server(appctx, args[2]);
4771 if (!sv)
4772 return 1;
4773
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004774 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004775 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004776 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004777 return 1;
4778}
4779
Willy Tarreau46b7f532018-08-21 11:54:26 +02004780/* parse a "enable agent" command. It always returns 1.
4781 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004782 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004783 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004784static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004785{
4786 struct server *sv;
4787
4788 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4789 return 1;
4790
4791 sv = cli_find_server(appctx, args[2]);
4792 if (!sv)
4793 return 1;
4794
Willy Tarreau9d008692019-08-09 11:21:01 +02004795 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4796 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004797
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004798 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004799 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004800 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004801 return 1;
4802}
4803
Willy Tarreau46b7f532018-08-21 11:54:26 +02004804/* parse a "enable health" command. It always returns 1.
4805 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004806 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004807 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004808static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004809{
4810 struct server *sv;
4811
4812 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4813 return 1;
4814
4815 sv = cli_find_server(appctx, args[2]);
4816 if (!sv)
4817 return 1;
4818
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004819 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004820 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004821 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004822 return 1;
4823}
4824
Willy Tarreau46b7f532018-08-21 11:54:26 +02004825/* parse a "enable server" command. It always returns 1.
4826 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004827 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004828 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004829static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004830{
4831 struct server *sv;
4832
4833 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4834 return 1;
4835
4836 sv = cli_find_server(appctx, args[2]);
4837 if (!sv)
4838 return 1;
4839
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004840 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004841 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004842 if (!(sv->flags & SRV_F_COOKIESET)
4843 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4844 sv->cookie)
4845 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004846 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004847 return 1;
4848}
4849
William Lallemand222baf22016-11-19 02:00:33 +01004850/* register cli keywords */
4851static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004852 { { "disable", "agent", NULL }, "disable agent : disable agent checks (use 'set server' instead)", cli_parse_disable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004853 { { "disable", "health", NULL }, "disable health : disable health checks (use 'set server' instead)", cli_parse_disable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004854 { { "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 +01004855 { { "enable", "agent", NULL }, "enable agent : enable agent checks (use 'set server' instead)", cli_parse_enable_agent, NULL },
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004856 { { "enable", "health", NULL }, "enable health : enable health checks (use 'set server' instead)", cli_parse_enable_health, NULL },
Willy Tarreauffb4d582016-11-24 12:47:00 +01004857 { { "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 +01004858 { { "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 +01004859 { { "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 +01004860 { { "get", "weight", NULL }, "get weight : report a server's current weight", cli_parse_get_weight },
4861 { { "set", "weight", NULL }, "set weight : change a server's weight (deprecated)", cli_parse_set_weight },
4862
William Lallemand222baf22016-11-19 02:00:33 +01004863 {{},}
4864}};
4865
Willy Tarreau0108d902018-11-25 19:14:37 +01004866INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004867
Emeric Brun64cc49c2017-10-03 14:46:45 +02004868/*
4869 * This function applies server's status changes, it is
4870 * is designed to be called asynchronously.
4871 *
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004872 * Must be called with the server lock held. This may also be called at init
4873 * time as the result of parsing the state file, in which case no lock will be
4874 * held, and the server's warmup task can be null.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004875 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004876static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004877{
4878 struct check *check = &s->check;
4879 int xferred;
4880 struct proxy *px = s->proxy;
4881 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4882 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4883 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004884 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004885
Emeric Brun64cc49c2017-10-03 14:46:45 +02004886 /* If currently main is not set we try to apply pending state changes */
4887 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4888 int next_admin;
4889
4890 /* Backup next admin */
4891 next_admin = s->next_admin;
4892
4893 /* restore current admin state */
4894 s->next_admin = s->cur_admin;
4895
4896 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4897 s->last_change = now.tv_sec;
4898 if (s->proxy->lbprm.set_server_status_down)
4899 s->proxy->lbprm.set_server_status_down(s);
4900
4901 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4902 srv_shutdown_streams(s, SF_ERR_DOWN);
4903
4904 /* we might have streams queued on this server and waiting for
4905 * a connection. Those which are redispatchable will be queued
4906 * to another server or to the proxy itself.
4907 */
4908 xferred = pendconn_redistribute(s);
4909
4910 tmptrash = alloc_trash_chunk();
4911 if (tmptrash) {
4912 chunk_printf(tmptrash,
4913 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4914 s->proxy->id, s->id);
4915
Emeric Brun5a133512017-10-19 14:42:30 +02004916 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004917 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004918
4919 /* we don't send an alert if the server was previously paused */
4920 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004921 send_log(s->proxy, log_level, "%s.\n",
4922 tmptrash->area);
4923 send_email_alert(s, log_level, "%s",
4924 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004925 free_trash_chunk(tmptrash);
4926 tmptrash = NULL;
4927 }
4928 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4929 set_backend_down(s->proxy);
4930
4931 s->counters.down_trans++;
4932 }
4933 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4934 s->last_change = now.tv_sec;
4935 if (s->proxy->lbprm.set_server_status_down)
4936 s->proxy->lbprm.set_server_status_down(s);
4937
4938 /* we might have streams queued on this server and waiting for
4939 * a connection. Those which are redispatchable will be queued
4940 * to another server or to the proxy itself.
4941 */
4942 xferred = pendconn_redistribute(s);
4943
4944 tmptrash = alloc_trash_chunk();
4945 if (tmptrash) {
4946 chunk_printf(tmptrash,
4947 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4948 s->proxy->id, s->id);
4949
Emeric Brun5a133512017-10-19 14:42:30 +02004950 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004951
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004952 ha_warning("%s.\n", tmptrash->area);
4953 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4954 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004955 free_trash_chunk(tmptrash);
4956 tmptrash = NULL;
4957 }
4958
4959 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4960 set_backend_down(s->proxy);
4961 }
4962 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4963 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4964 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4965 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4966 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4967 s->proxy->last_change = now.tv_sec;
4968 }
4969
Amaury Denoyellefe2bf092020-10-29 15:59:04 +01004970 if (s->cur_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
Emeric Brun64cc49c2017-10-03 14:46:45 +02004971 s->down_time += now.tv_sec - s->last_change;
4972
4973 s->last_change = now.tv_sec;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004974 if (s->next_state == SRV_ST_STARTING && s->warmup)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004975 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4976
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004977 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004978 /* now propagate the status change to any LB algorithms */
4979 if (px->lbprm.update_server_eweight)
4980 px->lbprm.update_server_eweight(s);
4981 else if (srv_willbe_usable(s)) {
4982 if (px->lbprm.set_server_status_up)
4983 px->lbprm.set_server_status_up(s);
4984 }
4985 else {
4986 if (px->lbprm.set_server_status_down)
4987 px->lbprm.set_server_status_down(s);
4988 }
4989
4990 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4991 * and it's not a backup server and its effective weight is > 0,
4992 * then it can accept new connections, so we shut down all streams
4993 * on all backup servers.
4994 */
4995 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4996 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4997 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4998
4999 /* check if we can handle some connections queued at the proxy. We
5000 * will take as many as we can handle.
5001 */
5002 xferred = pendconn_grab_from_px(s);
5003
5004 tmptrash = alloc_trash_chunk();
5005 if (tmptrash) {
5006 chunk_printf(tmptrash,
5007 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
5008 s->proxy->id, s->id);
5009
Emeric Brun5a133512017-10-19 14:42:30 +02005010 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005011 ha_warning("%s.\n", tmptrash->area);
5012 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5013 tmptrash->area);
5014 send_email_alert(s, LOG_NOTICE, "%s",
5015 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005016 free_trash_chunk(tmptrash);
5017 tmptrash = NULL;
5018 }
5019
5020 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5021 set_backend_down(s->proxy);
5022 }
5023 else if (s->cur_eweight != s->next_eweight) {
5024 /* now propagate the status change to any LB algorithms */
5025 if (px->lbprm.update_server_eweight)
5026 px->lbprm.update_server_eweight(s);
5027 else if (srv_willbe_usable(s)) {
5028 if (px->lbprm.set_server_status_up)
5029 px->lbprm.set_server_status_up(s);
5030 }
5031 else {
5032 if (px->lbprm.set_server_status_down)
5033 px->lbprm.set_server_status_down(s);
5034 }
5035
5036 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5037 set_backend_down(s->proxy);
5038 }
5039
5040 s->next_admin = next_admin;
5041 }
5042
Emeric Brun5a133512017-10-19 14:42:30 +02005043 /* reset operational state change */
5044 *s->op_st_chg.reason = 0;
5045 s->op_st_chg.status = s->op_st_chg.code = -1;
5046 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005047
5048 /* Now we try to apply pending admin changes */
5049
5050 /* Maintenance must also disable health checks */
5051 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
5052 if (s->check.state & CHK_ST_ENABLED) {
5053 s->check.state |= CHK_ST_PAUSED;
5054 check->health = 0;
5055 }
5056
5057 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02005058 tmptrash = alloc_trash_chunk();
5059 if (tmptrash) {
5060 chunk_printf(tmptrash,
5061 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
5062 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5063 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02005064
Olivier Houchard796a2b32017-10-24 17:42:47 +02005065 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02005066
Olivier Houchard796a2b32017-10-24 17:42:47 +02005067 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005068 ha_warning("%s.\n", tmptrash->area);
5069 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5070 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02005071 }
5072 free_trash_chunk(tmptrash);
5073 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005074 }
Emeric Brun8f298292017-12-06 16:47:17 +01005075 /* commit new admin status */
5076
5077 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005078 }
5079 else { /* server was still running */
5080 check->health = 0; /* failure */
5081 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01005082
5083 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005084 if (s->proxy->lbprm.set_server_status_down)
5085 s->proxy->lbprm.set_server_status_down(s);
5086
Emeric Brun64cc49c2017-10-03 14:46:45 +02005087 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
5088 srv_shutdown_streams(s, SF_ERR_DOWN);
5089
William Dauchy6318d332020-05-02 21:52:36 +02005090 /* force connection cleanup on the given server */
5091 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005092 /* we might have streams queued on this server and waiting for
5093 * a connection. Those which are redispatchable will be queued
5094 * to another server or to the proxy itself.
5095 */
5096 xferred = pendconn_redistribute(s);
5097
5098 tmptrash = alloc_trash_chunk();
5099 if (tmptrash) {
5100 chunk_printf(tmptrash,
5101 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
5102 s->flags & SRV_F_BACKUP ? "Backup " : "",
5103 s->proxy->id, s->id,
5104 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5105
5106 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
5107
5108 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005109 ha_warning("%s.\n", tmptrash->area);
5110 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
5111 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005112 }
5113 free_trash_chunk(tmptrash);
5114 tmptrash = NULL;
5115 }
5116 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5117 set_backend_down(s->proxy);
5118
5119 s->counters.down_trans++;
5120 }
5121 }
5122 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
5123 /* OK here we're leaving maintenance, we have many things to check,
5124 * because the server might possibly be coming back up depending on
5125 * its state. In practice, leaving maintenance means that we should
5126 * immediately turn to UP (more or less the slowstart) under the
5127 * following conditions :
5128 * - server is neither checked nor tracked
5129 * - server tracks another server which is not checked
5130 * - server tracks another server which is already up
5131 * Which sums up as something simpler :
5132 * "either the tracking server is up or the server's checks are disabled
5133 * or up". Otherwise we only re-enable health checks. There's a special
5134 * case associated to the stopping state which can be inherited. Note
5135 * that the server might still be in drain mode, which is naturally dealt
5136 * with by the lower level functions.
5137 */
5138
5139 if (s->check.state & CHK_ST_ENABLED) {
5140 s->check.state &= ~CHK_ST_PAUSED;
5141 check->health = check->rise; /* start OK but check immediately */
5142 }
5143
5144 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
5145 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
5146 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
5147 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
5148 s->next_state = SRV_ST_STOPPING;
5149 }
5150 else {
5151 s->next_state = SRV_ST_STARTING;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005152 if (s->slowstart > 0) {
5153 if (s->warmup)
5154 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5155 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005156 else
5157 s->next_state = SRV_ST_RUNNING;
5158 }
5159
5160 }
5161
5162 tmptrash = alloc_trash_chunk();
5163 if (tmptrash) {
5164 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5165 chunk_printf(tmptrash,
5166 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
5167 s->flags & SRV_F_BACKUP ? "Backup " : "",
5168 s->proxy->id, s->id,
5169 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5170 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5171 }
5172 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5173 chunk_printf(tmptrash,
5174 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
5175 s->flags & SRV_F_BACKUP ? "Backup " : "",
5176 s->proxy->id, s->id, s->hostname,
5177 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5178 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5179 }
5180 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5181 chunk_printf(tmptrash,
5182 "%sServer %s/%s is %s/%s (leaving maintenance)",
5183 s->flags & SRV_F_BACKUP ? "Backup " : "",
5184 s->proxy->id, s->id,
5185 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5186 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5187 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005188 ha_warning("%s.\n", tmptrash->area);
5189 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5190 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005191 free_trash_chunk(tmptrash);
5192 tmptrash = NULL;
5193 }
5194
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005195 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005196 /* now propagate the status change to any LB algorithms */
5197 if (px->lbprm.update_server_eweight)
5198 px->lbprm.update_server_eweight(s);
5199 else if (srv_willbe_usable(s)) {
5200 if (px->lbprm.set_server_status_up)
5201 px->lbprm.set_server_status_up(s);
5202 }
5203 else {
5204 if (px->lbprm.set_server_status_down)
5205 px->lbprm.set_server_status_down(s);
5206 }
5207
5208 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5209 set_backend_down(s->proxy);
5210
Willy Tarreau6a78e612018-08-07 10:14:53 +02005211 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5212 * and it's not a backup server and its effective weight is > 0,
5213 * then it can accept new connections, so we shut down all streams
5214 * on all backup servers.
5215 */
5216 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5217 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5218 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5219
5220 /* check if we can handle some connections queued at the proxy. We
5221 * will take as many as we can handle.
5222 */
5223 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005224 }
5225 else if (s->next_admin & SRV_ADMF_MAINT) {
5226 /* remaining in maintenance mode, let's inform precisely about the
5227 * situation.
5228 */
5229 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5230 tmptrash = alloc_trash_chunk();
5231 if (tmptrash) {
5232 chunk_printf(tmptrash,
5233 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5234 s->flags & SRV_F_BACKUP ? "Backup " : "",
5235 s->proxy->id, s->id);
5236
5237 if (s->track) /* normally it's mandatory here */
5238 chunk_appendf(tmptrash, " via %s/%s",
5239 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005240 ha_warning("%s.\n", tmptrash->area);
5241 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5242 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005243 free_trash_chunk(tmptrash);
5244 tmptrash = NULL;
5245 }
5246 }
5247 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5248 tmptrash = alloc_trash_chunk();
5249 if (tmptrash) {
5250 chunk_printf(tmptrash,
5251 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5252 s->flags & SRV_F_BACKUP ? "Backup " : "",
5253 s->proxy->id, s->id, s->hostname);
5254
5255 if (s->track) /* normally it's mandatory here */
5256 chunk_appendf(tmptrash, " via %s/%s",
5257 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005258 ha_warning("%s.\n", tmptrash->area);
5259 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5260 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005261 free_trash_chunk(tmptrash);
5262 tmptrash = NULL;
5263 }
5264 }
5265 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5266 tmptrash = alloc_trash_chunk();
5267 if (tmptrash) {
5268 chunk_printf(tmptrash,
5269 "%sServer %s/%s remains in forced maintenance",
5270 s->flags & SRV_F_BACKUP ? "Backup " : "",
5271 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005272 ha_warning("%s.\n", tmptrash->area);
5273 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5274 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005275 free_trash_chunk(tmptrash);
5276 tmptrash = NULL;
5277 }
5278 }
5279 /* don't report anything when leaving drain mode and remaining in maintenance */
5280
5281 s->cur_admin = s->next_admin;
5282 }
5283
5284 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5285 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5286 /* drain state is applied only if not yet in maint */
5287
5288 s->last_change = now.tv_sec;
5289 if (px->lbprm.set_server_status_down)
5290 px->lbprm.set_server_status_down(s);
5291
5292 /* we might have streams queued on this server and waiting for
5293 * a connection. Those which are redispatchable will be queued
5294 * to another server or to the proxy itself.
5295 */
5296 xferred = pendconn_redistribute(s);
5297
5298 tmptrash = alloc_trash_chunk();
5299 if (tmptrash) {
5300 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5301 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5302 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5303
5304 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5305
5306 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005307 ha_warning("%s.\n", tmptrash->area);
5308 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5309 tmptrash->area);
5310 send_email_alert(s, LOG_NOTICE, "%s",
5311 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005312 }
5313 free_trash_chunk(tmptrash);
5314 tmptrash = NULL;
5315 }
5316
5317 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5318 set_backend_down(s->proxy);
5319 }
5320 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5321 /* OK completely leaving drain mode */
5322 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5323 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5324 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5325 s->proxy->last_change = now.tv_sec;
5326 }
5327
5328 if (s->last_change < now.tv_sec) // ignore negative times
5329 s->down_time += now.tv_sec - s->last_change;
5330 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005331 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005332
5333 tmptrash = alloc_trash_chunk();
5334 if (tmptrash) {
5335 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5336 chunk_printf(tmptrash,
5337 "%sServer %s/%s is %s (leaving forced drain)",
5338 s->flags & SRV_F_BACKUP ? "Backup " : "",
5339 s->proxy->id, s->id,
5340 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5341 }
5342 else {
5343 chunk_printf(tmptrash,
5344 "%sServer %s/%s is %s (leaving drain)",
5345 s->flags & SRV_F_BACKUP ? "Backup " : "",
5346 s->proxy->id, s->id,
5347 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5348 if (s->track) /* normally it's mandatory here */
5349 chunk_appendf(tmptrash, " via %s/%s",
5350 s->track->proxy->id, s->track->id);
5351 }
5352
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005353 ha_warning("%s.\n", tmptrash->area);
5354 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5355 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005356 free_trash_chunk(tmptrash);
5357 tmptrash = NULL;
5358 }
5359
5360 /* now propagate the status change to any LB algorithms */
5361 if (px->lbprm.update_server_eweight)
5362 px->lbprm.update_server_eweight(s);
5363 else if (srv_willbe_usable(s)) {
5364 if (px->lbprm.set_server_status_up)
5365 px->lbprm.set_server_status_up(s);
5366 }
5367 else {
5368 if (px->lbprm.set_server_status_down)
5369 px->lbprm.set_server_status_down(s);
5370 }
5371 }
5372 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5373 /* remaining in drain mode after removing one of its flags */
5374
5375 tmptrash = alloc_trash_chunk();
5376 if (tmptrash) {
5377 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5378 chunk_printf(tmptrash,
5379 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5380 s->flags & SRV_F_BACKUP ? "Backup " : "",
5381 s->proxy->id, s->id);
5382
5383 if (s->track) /* normally it's mandatory here */
5384 chunk_appendf(tmptrash, " via %s/%s",
5385 s->track->proxy->id, s->track->id);
5386 }
5387 else {
5388 chunk_printf(tmptrash,
5389 "%sServer %s/%s remains in forced drain mode",
5390 s->flags & SRV_F_BACKUP ? "Backup " : "",
5391 s->proxy->id, s->id);
5392 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005393 ha_warning("%s.\n", tmptrash->area);
5394 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5395 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005396 free_trash_chunk(tmptrash);
5397 tmptrash = NULL;
5398 }
5399
5400 /* commit new admin status */
5401
5402 s->cur_admin = s->next_admin;
5403 }
5404 }
5405
5406 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005407 *s->adm_st_chg_cause = 0;
5408}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005409
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005410struct task *srv_cleanup_toremove_connections(struct task *task, void *context, unsigned short state)
5411{
5412 struct connection *conn;
5413
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005414 while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns,
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005415 struct connection *, toremove_list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005416 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005417 }
5418
5419 return task;
5420}
5421
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005422/* Move toremove_nb connections from idle_tree to toremove_list, -1 means
Olivier Houchardff1d0922020-06-29 20:15:59 +02005423 * moving them all.
5424 * Returns the number of connections moved.
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005425 *
5426 * Must be called with idle_conns_lock held.
Olivier Houchardff1d0922020-06-29 20:15:59 +02005427 */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005428static int srv_migrate_conns_to_remove(struct eb_root *idle_tree, struct mt_list *toremove_list, int toremove_nb)
Olivier Houchardff1d0922020-06-29 20:15:59 +02005429{
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005430 struct eb_node *node, *next;
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005431 struct conn_hash_node *hash_node;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005432 int i = 0;
5433
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005434 node = eb_first(idle_tree);
5435 while (node) {
5436 next = eb_next(node);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005437 if (toremove_nb != -1 && i >= toremove_nb)
5438 break;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005439
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005440 hash_node = ebmb_entry(node, struct conn_hash_node, node);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005441 eb_delete(node);
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005442 MT_LIST_ADDQ(toremove_list, &hash_node->conn->toremove_list);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005443 i++;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005444
5445 node = next;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005446 }
5447 return i;
5448}
William Dauchy6318d332020-05-02 21:52:36 +02005449/* cleanup connections for a given server
5450 * might be useful when going on forced maintenance or live changing ip/port
5451 */
William Dauchy707ad322020-05-04 13:52:40 +02005452static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005453{
William Dauchy6318d332020-05-02 21:52:36 +02005454 int did_remove;
5455 int i;
William Dauchy6318d332020-05-02 21:52:36 +02005456
Amaury Denoyelle10d5c312021-01-06 14:28:51 +01005457 /* nothing to do if pool-max-conn is null */
5458 if (!srv->max_idle_conns)
5459 return;
5460
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005461 /* check all threads starting with ours */
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005462 for (i = tid;;) {
William Dauchy6318d332020-05-02 21:52:36 +02005463 did_remove = 0;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005464 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005465 if (srv_migrate_conns_to_remove(&srv->idle_conns_tree[i], &idle_conns[i].toremove_conns, -1) > 0)
William Dauchy6318d332020-05-02 21:52:36 +02005466 did_remove = 1;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005467 if (srv_migrate_conns_to_remove(&srv->safe_conns_tree[i], &idle_conns[i].toremove_conns, -1) > 0)
Olivier Houchardff1d0922020-06-29 20:15:59 +02005468 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005469 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
William Dauchy6318d332020-05-02 21:52:36 +02005470 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005471 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005472
5473 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5474 break;
William Dauchy6318d332020-05-02 21:52:36 +02005475 }
William Dauchy6318d332020-05-02 21:52:36 +02005476}
5477
Willy Tarreau980855b2019-02-07 14:59:29 +01005478struct task *srv_cleanup_idle_connections(struct task *task, void *context, unsigned short state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005479{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005480 struct server *srv;
5481 struct eb32_node *eb;
5482 int i;
5483 unsigned int next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005484
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005485 next_wakeup = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005486 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5487 while (1) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005488 int exceed_conns;
5489 int to_kill;
5490 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005491
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005492 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5493 if (!eb) {
5494 /* we might have reached the end of the tree, typically because
5495 * <now_ms> is in the first half and we're first scanning the last
5496 * half. Let's loop back to the beginning of the tree now.
5497 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005498
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005499 eb = eb32_first(&idle_conn_srv);
5500 if (likely(!eb))
5501 break;
5502 }
5503 if (tick_is_lt(now_ms, eb->key)) {
5504 /* timer not expired yet, revisit it later */
5505 next_wakeup = eb->key;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005506 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005507 }
5508 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005509
5510 /* Calculate how many idle connections we want to kill :
5511 * we want to remove half the difference between the total
5512 * of established connections (used or idle) and the max
5513 * number of used connections.
5514 */
5515 curr_idle = srv->curr_idle_conns;
5516 if (curr_idle == 0)
5517 goto remove;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005518 exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005519 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005520
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005521 srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns) / 2;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005522 if (srv->est_need_conns < srv->max_used_conns)
5523 srv->est_need_conns = srv->max_used_conns;
5524
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005525 srv->max_used_conns = srv->curr_used_conns;
5526
Willy Tarreau18ed7892020-07-02 19:05:30 +02005527 if (exceed_conns <= 0)
5528 goto remove;
5529
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005530 /* check all threads starting with ours */
5531 for (i = tid;;) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005532 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005533 int j;
5534 int did_remove = 0;
5535
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005536 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5537 curr_idle + 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005538
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005539 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005540 j = srv_migrate_conns_to_remove(&srv->idle_conns_tree[i], &idle_conns[i].toremove_conns, max_conn);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005541 if (j > 0)
5542 did_remove = 1;
5543 if (max_conn - j > 0 &&
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005544 srv_migrate_conns_to_remove(&srv->safe_conns_tree[i], &idle_conns[i].toremove_conns, max_conn - j) > 0)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005545 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005546 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005547
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005548 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005549 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005550
5551 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5552 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005553 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005554remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005555 eb32_delete(&srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005556
5557 if (srv->curr_idle_conns) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005558 /* There are still more idle connections, add the
5559 * server back in the tree.
5560 */
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005561 srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005562 eb32_insert(&idle_conn_srv, &srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005563 next_wakeup = tick_first(next_wakeup, srv->idle_node.key);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005564 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005565 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005566 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5567
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005568 task->expire = next_wakeup;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005569 return task;
5570}
Olivier Houchard88698d92019-04-16 19:07:22 +02005571
Willy Tarreau76cc6992020-07-01 18:49:24 +02005572/* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */
5573static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx,
5574 struct proxy *defpx, const char *file, int line,
5575 char **err)
5576{
5577 if (too_many_args(1, args, err, NULL))
5578 return -1;
5579
5580 if (strcmp(args[1], "on") == 0)
5581 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
5582 else if (strcmp(args[1], "off") == 0)
5583 global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
5584 else {
5585 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
5586 return -1;
5587 }
5588 return 0;
5589}
5590
Olivier Houchard88698d92019-04-16 19:07:22 +02005591/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5592static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
5593 struct proxy *defpx, const char *file, int line,
5594 char **err)
5595{
5596 int arg = -1;
5597
5598 if (too_many_args(1, args, err, NULL))
5599 return -1;
5600
5601 if (*(args[1]) != 0)
5602 arg = atoi(args[1]);
5603
5604 if (arg < 0 || arg > 100) {
5605 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5606 return -1;
5607 }
5608
5609 if (args[0][10] == 'h')
5610 global.tune.pool_high_ratio = arg;
5611 else
5612 global.tune.pool_low_ratio = arg;
5613 return 0;
5614}
5615
5616/* config keyword parsers */
5617static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau76cc6992020-07-01 18:49:24 +02005618 { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared },
Olivier Houchard88698d92019-04-16 19:07:22 +02005619 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5620 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5621 { 0, NULL, NULL }
5622}};
5623
5624INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5625
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005626/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005627 * Local variables:
5628 * c-indent-level: 8
5629 * c-basic-offset: 8
5630 * End:
5631 */