blob: b9f39158d144030b797f66b8a696c832c7b58357 [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 Tarreau6be78492020-06-05 00:00:29 +020019#include <import/xxhash.h>
20
Willy Tarreaub2551052020-06-09 09:07:15 +020021#include <haproxy/api.h>
Willy Tarreau3f0f82e2020-06-04 19:42:41 +020022#include <haproxy/applet-t.h>
Willy Tarreau49801602020-06-04 22:50:02 +020023#include <haproxy/backend.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020024#include <haproxy/cfgparse.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020025#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020026#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020027#include <haproxy/connection.h>
Willy Tarreau3afc4c42020-06-03 18:23:19 +020028#include <haproxy/dict-t.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020029#include <haproxy/errors.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020030#include <haproxy/global.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020031#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020032#include <haproxy/mailers.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +020033#include <haproxy/namespace.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020034#include <haproxy/port_range.h>
35#include <haproxy/protocol.h>
Willy Tarreaub00a8e32021-05-08 20:18:59 +020036#include <haproxy/proxy.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>
Amaury Denoyellef99f77a2021-03-08 17:13:32 +010042#include <haproxy/stats.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>
Willy Tarreauba6300e2021-05-08 14:09:40 +020048#include <haproxy/tools.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020049
Baptiste Assmannda29fe22019-06-13 13:24:29 +020050
Willy Tarreau3ff577e2018-08-02 11:48:52 +020051static void srv_update_status(struct server *s);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +010052static int srv_apply_lastaddr(struct server *srv, int *err_code);
William Dauchy6318d332020-05-02 21:52:36 +020053static void srv_cleanup_connections(struct server *srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +020054
Amaury Denoyelle587b71e2021-03-10 16:36:02 +010055/* extra keywords used as value for other arguments. They are used as
56 * suggestions for mistyped words.
Willy Tarreau49c2b452021-03-12 09:58:04 +010057 */
Amaury Denoyelle587b71e2021-03-10 16:36:02 +010058static const char *extra_kw_list[] = {
59 "ipv4", "ipv6", "legacy", "octet-count",
Amaury Denoyelle3b89c112021-03-12 16:04:00 +010060 "fail-check", "sudden-death", "mark-down",
Willy Tarreau49c2b452021-03-12 09:58:04 +010061 NULL /* must be last */
62};
63
Willy Tarreau21faa912012-10-10 08:27:36 +020064/* List head of all known server keywords */
65static struct srv_kw_list srv_keywords = {
66 .list = LIST_HEAD_INIT(srv_keywords.list)
67};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020068
Willy Tarreauaf613e82020-06-05 08:40:51 +020069__decl_thread(HA_SPINLOCK_T idle_conn_srv_lock);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010070struct eb_root idle_conn_srv = EB_ROOT;
Willy Tarreau14015b82021-04-10 17:33:15 +020071struct task *idle_conn_task __read_mostly = NULL;
Willy Tarreau198e92a2021-03-05 10:23:32 +010072struct list servers_list = LIST_HEAD_INIT(servers_list);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010073
Frédéric Lécaille7da71292019-05-20 09:47:07 +020074/* The server names dictionary */
Thayne McCombs92149f92020-11-20 01:28:26 -070075struct dict server_key_dict = {
76 .name = "server keys",
Frédéric Lécaille7da71292019-05-20 09:47:07 +020077 .values = EB_ROOT_UNIQUE,
78};
79
Simon Hormana3608442013-11-01 16:46:15 +090080int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020081{
Amaury Denoyellee6ba7912020-10-29 15:59:05 +010082 if ((s->cur_state != SRV_ST_STOPPED) || s->last_change >= now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020083 return s->down_time;
84
85 return now.tv_sec - s->last_change + s->down_time;
86}
Willy Tarreaubaaee002006-06-26 02:48:02 +020087
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050088int srv_lastsession(const struct server *s)
89{
90 if (s->counters.last_sess)
91 return now.tv_sec - s->counters.last_sess;
92
93 return -1;
94}
95
Simon Horman4a741432013-02-23 15:35:38 +090096int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020097{
Simon Horman4a741432013-02-23 15:35:38 +090098 const struct server *s = check->server;
99
Willy Tarreauff5ae352013-12-11 20:36:34 +0100100 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +0900101 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100102
Emeric Brun52a91d32017-08-31 14:41:55 +0200103 if ((s->next_state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +0900104 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100105
Simon Horman4a741432013-02-23 15:35:38 +0900106 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100107}
108
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100109/*
110 * Check that we did not get a hash collision.
Willy Tarreau595e7672020-10-20 17:30:08 +0200111 * Unlikely, but it can happen. The server's proxy must be at least
112 * read-locked.
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100113 */
114static inline void srv_check_for_dup_dyncookie(struct server *s)
Olivier Houchard4e694042017-03-14 20:01:29 +0100115{
116 struct proxy *p = s->proxy;
117 struct server *tmpserv;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100118
119 for (tmpserv = p->srv; tmpserv != NULL;
120 tmpserv = tmpserv->next) {
121 if (tmpserv == s)
122 continue;
123 if (tmpserv->next_admin & SRV_ADMF_FMAINT)
124 continue;
125 if (tmpserv->cookie &&
126 strcmp(tmpserv->cookie, s->cookie) == 0) {
127 ha_warning("We generated two equal cookies for two different servers.\n"
128 "Please change the secret key for '%s'.\n",
129 s->proxy->id);
130 }
131 }
132
133}
134
Willy Tarreau46b7f532018-08-21 11:54:26 +0200135/*
Willy Tarreau595e7672020-10-20 17:30:08 +0200136 * Must be called with the server lock held, and will read-lock the proxy.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200137 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100138void srv_set_dyncookie(struct server *s)
139{
140 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100141 char *tmpbuf;
142 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100143 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100144 size_t buffer_len;
145 int addr_len;
146 int port;
147
Willy Tarreau595e7672020-10-20 17:30:08 +0200148 HA_RWLOCK_RDLOCK(PROXY_LOCK, &p->lock);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200149
Olivier Houchard4e694042017-03-14 20:01:29 +0100150 if ((s->flags & SRV_F_COOKIESET) ||
151 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
152 s->proxy->dyncookie_key == NULL)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200153 goto out;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100154 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100155
156 if (s->addr.ss_family != AF_INET &&
157 s->addr.ss_family != AF_INET6)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200158 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100159 /*
160 * Buffer to calculate the cookie value.
161 * The buffer contains the secret key + the server IP address
162 * + the TCP port.
163 */
164 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
165 /*
166 * The TCP port should use only 2 bytes, but is stored in
167 * an unsigned int in struct server, so let's use 4, to be
168 * on the safe side.
169 */
170 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200171 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100172 memcpy(tmpbuf, p->dyncookie_key, key_len);
173 memcpy(&(tmpbuf[key_len]),
174 s->addr.ss_family == AF_INET ?
175 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
176 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
177 addr_len);
178 /*
179 * Make sure it's the same across all the load balancers,
180 * no matter their endianness.
181 */
182 port = htonl(s->svc_port);
183 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
184 hash_value = XXH64(tmpbuf, buffer_len, 0);
185 memprintf(&s->cookie, "%016llx", hash_value);
186 if (!s->cookie)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200187 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100188 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100189
190 /* Don't bother checking if the dyncookie is duplicated if
191 * the server is marked as "disabled", maybe it doesn't have
192 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100193 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100194 if (!(s->next_admin & SRV_ADMF_FMAINT))
195 srv_check_for_dup_dyncookie(s);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200196 out:
Willy Tarreau595e7672020-10-20 17:30:08 +0200197 HA_RWLOCK_RDUNLOCK(PROXY_LOCK, &p->lock);
Olivier Houchard4e694042017-03-14 20:01:29 +0100198}
199
Willy Tarreau21faa912012-10-10 08:27:36 +0200200/*
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +0200201 * Must be called with the server lock held. The server is first removed from
202 * the proxy tree if it was already attached. If <reattach> is true, the server
203 * will then be attached in the proxy tree. The proxy lock is held to
204 * manipulate the tree.
Thayne McCombs92149f92020-11-20 01:28:26 -0700205 */
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +0200206static void srv_set_addr_desc(struct server *s, int reattach)
Thayne McCombs92149f92020-11-20 01:28:26 -0700207{
208 struct proxy *p = s->proxy;
209 char *key;
210
211 key = sa2str(&s->addr, s->svc_port, s->flags & SRV_F_MAPPORTS);
212
213 if (s->addr_node.key) {
Thayne McCombs24da7e12021-01-05 23:10:09 -0700214 if (key && strcmp(key, s->addr_node.key) == 0) {
Thayne McCombs92149f92020-11-20 01:28:26 -0700215 free(key);
216 return;
217 }
218
219 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
220 ebpt_delete(&s->addr_node);
221 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
222
223 free(s->addr_node.key);
224 }
225
226 s->addr_node.key = key;
227
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +0200228 if (reattach) {
229 if (s->addr_node.key) {
230 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
231 ebis_insert(&p->used_server_addr, &s->addr_node);
232 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
233 }
Thayne McCombs24da7e12021-01-05 23:10:09 -0700234 }
Thayne McCombs92149f92020-11-20 01:28:26 -0700235}
236
237/*
Willy Tarreau21faa912012-10-10 08:27:36 +0200238 * Registers the server keyword list <kwl> as a list of valid keywords for next
239 * parsing sessions.
240 */
241void srv_register_keywords(struct srv_kw_list *kwl)
242{
Willy Tarreau2b718102021-04-21 07:32:39 +0200243 LIST_APPEND(&srv_keywords.list, &kwl->list);
Willy Tarreau21faa912012-10-10 08:27:36 +0200244}
245
246/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
247 * keyword is found with a NULL ->parse() function, then an attempt is made to
248 * find one with a valid ->parse() function. This way it is possible to declare
249 * platform-dependant, known keywords as NULL, then only declare them as valid
250 * if some options are met. Note that if the requested keyword contains an
251 * opening parenthesis, everything from this point is ignored.
252 */
253struct srv_kw *srv_find_kw(const char *kw)
254{
255 int index;
256 const char *kwend;
257 struct srv_kw_list *kwl;
258 struct srv_kw *ret = NULL;
259
260 kwend = strchr(kw, '(');
261 if (!kwend)
262 kwend = kw + strlen(kw);
263
264 list_for_each_entry(kwl, &srv_keywords.list, list) {
265 for (index = 0; kwl->kw[index].kw != NULL; index++) {
266 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
267 kwl->kw[index].kw[kwend-kw] == 0) {
268 if (kwl->kw[index].parse)
269 return &kwl->kw[index]; /* found it !*/
270 else
271 ret = &kwl->kw[index]; /* may be OK */
272 }
273 }
274 }
275 return ret;
276}
277
278/* Dumps all registered "server" keywords to the <out> string pointer. The
279 * unsupported keywords are only dumped if their supported form was not
280 * found.
281 */
282void srv_dump_kws(char **out)
283{
284 struct srv_kw_list *kwl;
285 int index;
286
Christopher Faulet784063e2020-05-18 12:14:18 +0200287 if (!out)
288 return;
289
Willy Tarreau21faa912012-10-10 08:27:36 +0200290 *out = NULL;
291 list_for_each_entry(kwl, &srv_keywords.list, list) {
292 for (index = 0; kwl->kw[index].kw != NULL; index++) {
293 if (kwl->kw[index].parse ||
294 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
295 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
296 kwl->scope,
297 kwl->kw[index].kw,
298 kwl->kw[index].skip ? " <arg>" : "",
299 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
300 kwl->kw[index].parse ? "" : " (not supported)");
301 }
302 }
303 }
Willy Tarreau49c2b452021-03-12 09:58:04 +0100304}
305
306/* Try to find in srv_keyword the word that looks closest to <word> by counting
307 * transitions between letters, digits and other characters. Will return the
308 * best matching word if found, otherwise NULL. An optional array of extra
309 * words to compare may be passed in <extra>, but it must then be terminated
310 * by a NULL entry. If unused it may be NULL.
311 */
312static const char *srv_find_best_kw(const char *word)
313{
314 uint8_t word_sig[1024];
315 uint8_t list_sig[1024];
316 const struct srv_kw_list *kwl;
317 const char *best_ptr = NULL;
318 int dist, best_dist = INT_MAX;
319 const char **extra;
320 int index;
321
322 make_word_fingerprint(word_sig, word);
323 list_for_each_entry(kwl, &srv_keywords.list, list) {
324 for (index = 0; kwl->kw[index].kw != NULL; index++) {
325 make_word_fingerprint(list_sig, kwl->kw[index].kw);
326 dist = word_fingerprint_distance(word_sig, list_sig);
327 if (dist < best_dist) {
328 best_dist = dist;
329 best_ptr = kwl->kw[index].kw;
330 }
331 }
332 }
333
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100334 for (extra = extra_kw_list; *extra; extra++) {
Willy Tarreau49c2b452021-03-12 09:58:04 +0100335 make_word_fingerprint(list_sig, *extra);
336 dist = word_fingerprint_distance(word_sig, list_sig);
337 if (dist < best_dist) {
338 best_dist = dist;
339 best_ptr = *extra;
340 }
Willy Tarreau49c2b452021-03-12 09:58:04 +0100341 }
342
343 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
344 best_ptr = NULL;
345
346 return best_ptr;
Willy Tarreau21faa912012-10-10 08:27:36 +0200347}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100348
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100349/* Parse the "backup" server keyword */
350static int srv_parse_backup(char **args, int *cur_arg,
351 struct proxy *curproxy, struct server *newsrv, char **err)
352{
353 newsrv->flags |= SRV_F_BACKUP;
354 return 0;
355}
356
Alexander Liu2a54bb72019-05-22 19:44:48 +0800357
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100358/* Parse the "cookie" server keyword */
359static int srv_parse_cookie(char **args, int *cur_arg,
360 struct proxy *curproxy, struct server *newsrv, char **err)
361{
362 char *arg;
363
364 arg = args[*cur_arg + 1];
365 if (!*arg) {
366 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
367 return ERR_ALERT | ERR_FATAL;
368 }
369
370 free(newsrv->cookie);
371 newsrv->cookie = strdup(arg);
372 newsrv->cklen = strlen(arg);
373 newsrv->flags |= SRV_F_COOKIESET;
374 return 0;
375}
376
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100377/* Parse the "disabled" server keyword */
378static int srv_parse_disabled(char **args, int *cur_arg,
379 struct proxy *curproxy, struct server *newsrv, char **err)
380{
Emeric Brun52a91d32017-08-31 14:41:55 +0200381 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
382 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100383 newsrv->check.state |= CHK_ST_PAUSED;
384 newsrv->check.health = 0;
385 return 0;
386}
387
388/* Parse the "enabled" server keyword */
389static int srv_parse_enabled(char **args, int *cur_arg,
390 struct proxy *curproxy, struct server *newsrv, char **err)
391{
Emeric Brun52a91d32017-08-31 14:41:55 +0200392 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
393 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100394 newsrv->check.state &= ~CHK_ST_PAUSED;
395 newsrv->check.health = newsrv->check.rise;
396 return 0;
397}
398
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100399/* Parse the "error-limit" server keyword */
400static int srv_parse_error_limit(char **args, int *cur_arg,
401 struct proxy *curproxy, struct server *newsrv, char **err)
402{
403 if (!*args[*cur_arg + 1]) {
404 memprintf(err, "'%s' expects an integer argument.",
405 args[*cur_arg]);
406 return ERR_ALERT | ERR_FATAL;
407 }
408
409 newsrv->consecutive_errors_limit = atoi(args[*cur_arg + 1]);
410
411 if (newsrv->consecutive_errors_limit <= 0) {
412 memprintf(err, "%s has to be > 0.",
413 args[*cur_arg]);
414 return ERR_ALERT | ERR_FATAL;
415 }
416
417 return 0;
418}
419
420/* Parse the "init-addr" server keyword */
421static int srv_parse_init_addr(char **args, int *cur_arg,
422 struct proxy *curproxy, struct server *newsrv, char **err)
423{
424 char *p, *end;
425 int done;
426 struct sockaddr_storage sa;
427
428 newsrv->init_addr_methods = 0;
429 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
430
431 for (p = args[*cur_arg + 1]; *p; p = end) {
432 /* cut on next comma */
433 for (end = p; *end && *end != ','; end++);
434 if (*end)
435 *(end++) = 0;
436
437 memset(&sa, 0, sizeof(sa));
438 if (strcmp(p, "libc") == 0) {
439 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
440 }
441 else if (strcmp(p, "last") == 0) {
442 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
443 }
444 else if (strcmp(p, "none") == 0) {
445 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
446 }
447 else if (str2ip2(p, &sa, 0)) {
448 if (is_addr(&newsrv->init_addr)) {
449 memprintf(err, "'%s' : initial address already specified, cannot add '%s'.",
450 args[*cur_arg], p);
451 return ERR_ALERT | ERR_FATAL;
452 }
453 newsrv->init_addr = sa;
454 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
455 }
456 else {
457 memprintf(err, "'%s' : unknown init-addr method '%s', supported methods are 'libc', 'last', 'none'.",
458 args[*cur_arg], p);
459 return ERR_ALERT | ERR_FATAL;
460 }
461 if (!done) {
462 memprintf(err, "'%s' : too many init-addr methods when trying to add '%s'",
463 args[*cur_arg], p);
464 return ERR_ALERT | ERR_FATAL;
465 }
466 }
467
468 return 0;
469}
470
471/* Parse the "log-proto" server keyword */
472static int srv_parse_log_proto(char **args, int *cur_arg,
473 struct proxy *curproxy, struct server *newsrv, char **err)
474{
475 if (strcmp(args[*cur_arg + 1], "legacy") == 0)
476 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
477 else if (strcmp(args[*cur_arg + 1], "octet-count") == 0)
478 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
479 else {
480 memprintf(err, "'%s' expects one of 'legacy' or 'octet-count' but got '%s'",
481 args[*cur_arg], args[*cur_arg + 1]);
482 return ERR_ALERT | ERR_FATAL;
483 }
484
485 return 0;
486}
487
488/* Parse the "maxconn" server keyword */
489static int srv_parse_maxconn(char **args, int *cur_arg,
490 struct proxy *curproxy, struct server *newsrv, char **err)
491{
492 newsrv->maxconn = atol(args[*cur_arg + 1]);
493 return 0;
494}
495
496/* Parse the "maxqueue" server keyword */
497static int srv_parse_maxqueue(char **args, int *cur_arg,
498 struct proxy *curproxy, struct server *newsrv, char **err)
499{
500 newsrv->maxqueue = atol(args[*cur_arg + 1]);
501 return 0;
502}
503
504/* Parse the "minconn" server keyword */
505static int srv_parse_minconn(char **args, int *cur_arg,
506 struct proxy *curproxy, struct server *newsrv, char **err)
507{
508 newsrv->minconn = atol(args[*cur_arg + 1]);
509 return 0;
510}
511
Willy Tarreau9c538e02019-01-23 10:21:49 +0100512static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
513{
514 char *arg;
515
516 arg = args[*cur_arg + 1];
517 if (!*arg) {
518 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
519 return ERR_ALERT | ERR_FATAL;
520 }
521 newsrv->max_reuse = atoi(arg);
522
523 return 0;
524}
525
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100526static 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 +0100527{
528 const char *res;
529 char *arg;
530 unsigned int time;
531
532 arg = args[*cur_arg + 1];
533 if (!*arg) {
534 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
535 return ERR_ALERT | ERR_FATAL;
536 }
537 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200538 if (res == PARSE_TIME_OVER) {
539 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
540 args[*cur_arg+1], args[*cur_arg]);
541 return ERR_ALERT | ERR_FATAL;
542 }
543 else if (res == PARSE_TIME_UNDER) {
544 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
545 args[*cur_arg+1], args[*cur_arg]);
546 return ERR_ALERT | ERR_FATAL;
547 }
548 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100549 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
550 *res, args[*cur_arg]);
551 return ERR_ALERT | ERR_FATAL;
552 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100553 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100554
555 return 0;
556}
557
Willy Tarreau2f3f4d32020-07-01 07:43:51 +0200558static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
559{
560 char *arg;
561
562 arg = args[*cur_arg + 1];
563 if (!*arg) {
564 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
565 return ERR_ALERT | ERR_FATAL;
566 }
567
568 newsrv->low_idle_conns = atoi(arg);
569 return 0;
570}
571
Olivier Houchard006e3102018-12-10 18:30:32 +0100572static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
573{
574 char *arg;
575
576 arg = args[*cur_arg + 1];
577 if (!*arg) {
578 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
579 return ERR_ALERT | ERR_FATAL;
580 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100581
Olivier Houchard006e3102018-12-10 18:30:32 +0100582 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100583 if ((int)newsrv->max_idle_conns < -1) {
584 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
585 return ERR_ALERT | ERR_FATAL;
586 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100587
588 return 0;
589}
590
Willy Tarreaudff55432012-10-10 17:51:05 +0200591/* parse the "id" server keyword */
592static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
593{
594 struct eb32_node *node;
595
596 if (!*args[*cur_arg + 1]) {
597 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
598 return ERR_ALERT | ERR_FATAL;
599 }
600
601 newsrv->puid = atol(args[*cur_arg + 1]);
602 newsrv->conf.id.key = newsrv->puid;
603
604 if (newsrv->puid <= 0) {
605 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
606 return ERR_ALERT | ERR_FATAL;
607 }
608
609 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
610 if (node) {
611 struct server *target = container_of(node, struct server, conf.id);
612 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
613 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
614 target->id);
615 return ERR_ALERT | ERR_FATAL;
616 }
617
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200618 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200619 return 0;
620}
621
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100622/* Parse the "namespace" server keyword */
623static int srv_parse_namespace(char **args, int *cur_arg,
624 struct proxy *curproxy, struct server *newsrv, char **err)
625{
Willy Tarreaue5733232019-05-22 19:24:06 +0200626#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100627 char *arg;
628
629 arg = args[*cur_arg + 1];
630 if (!*arg) {
631 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
632 return ERR_ALERT | ERR_FATAL;
633 }
634
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100635 if (strcmp(arg, "*") == 0) {
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100636 /* Use the namespace associated with the connection (if present). */
637 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
638 return 0;
639 }
640
641 /*
642 * As this parser may be called several times for the same 'default-server'
643 * object, or for a new 'server' instance deriving from a 'default-server'
644 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
645 */
646 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
647
648 newsrv->netns = netns_store_lookup(arg, strlen(arg));
649 if (!newsrv->netns)
650 newsrv->netns = netns_store_insert(arg);
651
652 if (!newsrv->netns) {
653 memprintf(err, "Cannot open namespace '%s'", arg);
654 return ERR_ALERT | ERR_FATAL;
655 }
656
657 return 0;
658#else
659 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
660 return ERR_ALERT | ERR_FATAL;
661#endif
662}
663
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100664/* Parse the "no-backup" server keyword */
665static int srv_parse_no_backup(char **args, int *cur_arg,
666 struct proxy *curproxy, struct server *newsrv, char **err)
667{
668 newsrv->flags &= ~SRV_F_BACKUP;
669 return 0;
670}
671
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100672
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100673/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200674static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100675{
676 srv->pp_opts &= ~flags;
677 return 0;
678}
679
680/* Parse the "no-send-proxy" server keyword */
681static int srv_parse_no_send_proxy(char **args, int *cur_arg,
682 struct proxy *curproxy, struct server *newsrv, char **err)
683{
684 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
685}
686
687/* Parse the "no-send-proxy-v2" server keyword */
688static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
689 struct proxy *curproxy, struct server *newsrv, char **err)
690{
691 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
692}
693
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200694/* Parse the "no-tfo" server keyword */
695static int srv_parse_no_tfo(char **args, int *cur_arg,
696 struct proxy *curproxy, struct server *newsrv, char **err)
697{
698 newsrv->flags &= ~SRV_F_FASTOPEN;
699 return 0;
700}
701
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100702/* Parse the "non-stick" server keyword */
703static int srv_parse_non_stick(char **args, int *cur_arg,
704 struct proxy *curproxy, struct server *newsrv, char **err)
705{
706 newsrv->flags |= SRV_F_NON_STICK;
707 return 0;
708}
709
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100710/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200711static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100712{
713 srv->pp_opts |= flags;
714 return 0;
715}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200716/* parse the "proto" server keyword */
717static int srv_parse_proto(char **args, int *cur_arg,
718 struct proxy *px, struct server *newsrv, char **err)
719{
720 struct ist proto;
721
722 if (!*args[*cur_arg + 1]) {
723 memprintf(err, "'%s' : missing value", args[*cur_arg]);
724 return ERR_ALERT | ERR_FATAL;
725 }
Tim Duesterhusdcf753a2021-03-04 17:31:47 +0100726 proto = ist(args[*cur_arg + 1]);
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200727 newsrv->mux_proto = get_mux_proto(proto);
728 if (!newsrv->mux_proto) {
729 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
730 return ERR_ALERT | ERR_FATAL;
731 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200732 return 0;
733}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100734
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100735/* parse the "proxy-v2-options" */
736static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
737 struct proxy *px, struct server *newsrv, char **err)
738{
739 char *p, *n;
740 for (p = args[*cur_arg+1]; p; p = n) {
741 n = strchr(p, ',');
742 if (n)
743 *n++ = '\0';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100744 if (strcmp(p, "ssl") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100745 newsrv->pp_opts |= SRV_PP_V2_SSL;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100746 } else if (strcmp(p, "cert-cn") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100747 newsrv->pp_opts |= SRV_PP_V2_SSL;
748 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100749 } else if (strcmp(p, "cert-key") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100750 newsrv->pp_opts |= SRV_PP_V2_SSL;
751 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100752 } else if (strcmp(p, "cert-sig") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100753 newsrv->pp_opts |= SRV_PP_V2_SSL;
754 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100755 } else if (strcmp(p, "ssl-cipher") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100756 newsrv->pp_opts |= SRV_PP_V2_SSL;
757 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100758 } else if (strcmp(p, "authority") == 0) {
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100759 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100760 } else if (strcmp(p, "crc32c") == 0) {
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100761 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100762 } else if (strcmp(p, "unique-id") == 0) {
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100763 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100764 } else
765 goto fail;
766 }
767 return 0;
768 fail:
769 if (err)
770 memprintf(err, "'%s' : proxy v2 option not implemented", p);
771 return ERR_ALERT | ERR_FATAL;
772}
773
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100774/* Parse the "observe" server keyword */
775static int srv_parse_observe(char **args, int *cur_arg,
776 struct proxy *curproxy, struct server *newsrv, char **err)
777{
778 char *arg;
779
780 arg = args[*cur_arg + 1];
781 if (!*arg) {
782 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
783 return ERR_ALERT | ERR_FATAL;
784 }
785
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100786 if (strcmp(arg, "none") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100787 newsrv->observe = HANA_OBS_NONE;
788 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100789 else if (strcmp(arg, "layer4") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100790 newsrv->observe = HANA_OBS_LAYER4;
791 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100792 else if (strcmp(arg, "layer7") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100793 if (curproxy->mode != PR_MODE_HTTP) {
794 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
795 return ERR_ALERT;
796 }
797 newsrv->observe = HANA_OBS_LAYER7;
798 }
799 else {
800 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
801 "but got '%s'\n", args[*cur_arg], arg);
802 return ERR_ALERT | ERR_FATAL;
803 }
804
805 return 0;
806}
807
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100808/* Parse the "on-error" server keyword */
809static int srv_parse_on_error(char **args, int *cur_arg,
810 struct proxy *curproxy, struct server *newsrv, char **err)
811{
812 if (strcmp(args[*cur_arg + 1], "fastinter") == 0)
813 newsrv->onerror = HANA_ONERR_FASTINTER;
814 else if (strcmp(args[*cur_arg + 1], "fail-check") == 0)
815 newsrv->onerror = HANA_ONERR_FAILCHK;
816 else if (strcmp(args[*cur_arg + 1], "sudden-death") == 0)
817 newsrv->onerror = HANA_ONERR_SUDDTH;
818 else if (strcmp(args[*cur_arg + 1], "mark-down") == 0)
819 newsrv->onerror = HANA_ONERR_MARKDWN;
820 else {
821 memprintf(err, "'%s' expects one of 'fastinter', "
822 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'",
823 args[*cur_arg], args[*cur_arg + 1]);
824 return ERR_ALERT | ERR_FATAL;
825 }
826
827 return 0;
828}
829
830/* Parse the "on-marked-down" server keyword */
831static int srv_parse_on_marked_down(char **args, int *cur_arg,
832 struct proxy *curproxy, struct server *newsrv, char **err)
833{
834 if (strcmp(args[*cur_arg + 1], "shutdown-sessions") == 0)
835 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
836 else {
837 memprintf(err, "'%s' expects 'shutdown-sessions' but got '%s'",
838 args[*cur_arg], args[*cur_arg + 1]);
839 return ERR_ALERT | ERR_FATAL;
840 }
841
842 return 0;
843}
844
845/* Parse the "on-marked-up" server keyword */
846static int srv_parse_on_marked_up(char **args, int *cur_arg,
847 struct proxy *curproxy, struct server *newsrv, char **err)
848{
849 if (strcmp(args[*cur_arg + 1], "shutdown-backup-sessions") == 0)
850 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
851 else {
852 memprintf(err, "'%s' expects 'shutdown-backup-sessions' but got '%s'",
853 args[*cur_arg], args[*cur_arg + 1]);
854 return ERR_ALERT | ERR_FATAL;
855 }
856
857 return 0;
858}
859
Frédéric Lécaille16186232017-03-14 16:42:49 +0100860/* Parse the "redir" server keyword */
861static int srv_parse_redir(char **args, int *cur_arg,
862 struct proxy *curproxy, struct server *newsrv, char **err)
863{
864 char *arg;
865
866 arg = args[*cur_arg + 1];
867 if (!*arg) {
868 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
869 return ERR_ALERT | ERR_FATAL;
870 }
871
872 free(newsrv->rdr_pfx);
873 newsrv->rdr_pfx = strdup(arg);
874 newsrv->rdr_len = strlen(arg);
875
876 return 0;
877}
878
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100879/* Parse the "resolvers" server keyword */
880static int srv_parse_resolvers(char **args, int *cur_arg,
881 struct proxy *curproxy, struct server *newsrv, char **err)
882{
883 free(newsrv->resolvers_id);
884 newsrv->resolvers_id = strdup(args[*cur_arg + 1]);
885 return 0;
886}
887
888/* Parse the "resolve-net" server keyword */
889static int srv_parse_resolve_net(char **args, int *cur_arg,
890 struct proxy *curproxy, struct server *newsrv, char **err)
891{
892 char *p, *e;
893 unsigned char mask;
894 struct resolv_options *opt;
895
896 if (!args[*cur_arg + 1] || args[*cur_arg + 1][0] == '\0') {
897 memprintf(err, "'%s' expects a list of networks.",
898 args[*cur_arg]);
899 return ERR_ALERT | ERR_FATAL;
900 }
901
902 opt = &newsrv->resolv_opts;
903
904 /* Split arguments by comma, and convert it from ipv4 or ipv6
905 * string network in in_addr or in6_addr.
906 */
907 p = args[*cur_arg + 1];
908 e = p;
909 while (*p != '\0') {
910 /* If no room available, return error. */
911 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
912 memprintf(err, "'%s' exceed %d networks.",
913 args[*cur_arg], SRV_MAX_PREF_NET);
914 return ERR_ALERT | ERR_FATAL;
915 }
916 /* look for end or comma. */
917 while (*e != ',' && *e != '\0')
918 e++;
919 if (*e == ',') {
920 *e = '\0';
921 e++;
922 }
923 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
924 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
925 /* Try to convert input string from ipv4 or ipv6 network. */
926 opt->pref_net[opt->pref_net_nb].family = AF_INET;
927 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
928 &mask)) {
929 /* Try to convert input string from ipv6 network. */
930 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
931 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
932 } else {
933 /* All network conversions fail, return error. */
934 memprintf(err, "'%s' invalid network '%s'.",
935 args[*cur_arg], p);
936 return ERR_ALERT | ERR_FATAL;
937 }
938 opt->pref_net_nb++;
939 p = e;
940 }
941
942 return 0;
943}
944
945/* Parse the "resolve-opts" server keyword */
946static int srv_parse_resolve_opts(char **args, int *cur_arg,
947 struct proxy *curproxy, struct server *newsrv, char **err)
948{
949 char *p, *end;
950
951 for (p = args[*cur_arg + 1]; *p; p = end) {
952 /* cut on next comma */
953 for (end = p; *end && *end != ','; end++);
954 if (*end)
955 *(end++) = 0;
956
957 if (strcmp(p, "allow-dup-ip") == 0) {
958 newsrv->resolv_opts.accept_duplicate_ip = 1;
959 }
960 else if (strcmp(p, "ignore-weight") == 0) {
961 newsrv->resolv_opts.ignore_weight = 1;
962 }
963 else if (strcmp(p, "prevent-dup-ip") == 0) {
964 newsrv->resolv_opts.accept_duplicate_ip = 0;
965 }
966 else {
967 memprintf(err, "'%s' : unknown resolve-opts option '%s', supported methods are 'allow-dup-ip', 'ignore-weight', and 'prevent-dup-ip'.",
968 args[*cur_arg], p);
969 return ERR_ALERT | ERR_FATAL;
970 }
971 }
972
973 return 0;
974}
975
976/* Parse the "resolve-prefer" server keyword */
977static int srv_parse_resolve_prefer(char **args, int *cur_arg,
978 struct proxy *curproxy, struct server *newsrv, char **err)
979{
980 if (strcmp(args[*cur_arg + 1], "ipv4") == 0)
981 newsrv->resolv_opts.family_prio = AF_INET;
982 else if (strcmp(args[*cur_arg + 1], "ipv6") == 0)
983 newsrv->resolv_opts.family_prio = AF_INET6;
984 else {
985 memprintf(err, "'%s' expects either ipv4 or ipv6 as argument.",
986 args[*cur_arg]);
987 return ERR_ALERT | ERR_FATAL;
988 }
989
990 return 0;
991}
992
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100993/* Parse the "send-proxy" server keyword */
994static int srv_parse_send_proxy(char **args, int *cur_arg,
995 struct proxy *curproxy, struct server *newsrv, char **err)
996{
997 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
998}
999
1000/* Parse the "send-proxy-v2" server keyword */
1001static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
1002 struct proxy *curproxy, struct server *newsrv, char **err)
1003{
1004 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
1005}
1006
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001007/* Parse the "slowstart" server keyword */
1008static int srv_parse_slowstart(char **args, int *cur_arg,
1009 struct proxy *curproxy, struct server *newsrv, char **err)
1010{
1011 /* slowstart is stored in seconds */
1012 unsigned int val;
1013 const char *time_err = parse_time_err(args[*cur_arg + 1], &val, TIME_UNIT_MS);
1014
1015 if (time_err == PARSE_TIME_OVER) {
1016 memprintf(err, "overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).",
1017 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1018 return ERR_ALERT | ERR_FATAL;
1019 }
1020 else if (time_err == PARSE_TIME_UNDER) {
1021 memprintf(err, "underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.",
1022 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1023 return ERR_ALERT | ERR_FATAL;
1024 }
1025 else if (time_err) {
1026 memprintf(err, "unexpected character '%c' in 'slowstart' argument of server %s.",
1027 *time_err, newsrv->id);
1028 return ERR_ALERT | ERR_FATAL;
1029 }
1030 newsrv->slowstart = (val + 999) / 1000;
1031
1032 return 0;
1033}
Frédéric Lécailledba97072017-03-17 15:33:50 +01001034
1035/* Parse the "source" server keyword */
1036static int srv_parse_source(char **args, int *cur_arg,
1037 struct proxy *curproxy, struct server *newsrv, char **err)
1038{
1039 char *errmsg;
1040 int port_low, port_high;
1041 struct sockaddr_storage *sk;
Frédéric Lécailledba97072017-03-17 15:33:50 +01001042
1043 errmsg = NULL;
1044
1045 if (!*args[*cur_arg + 1]) {
1046 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
1047 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
1048 goto err;
1049 }
1050
1051 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001052 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1053 &errmsg, NULL, NULL,
1054 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 +01001055 if (!sk) {
1056 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1057 goto err;
1058 }
1059
Frédéric Lécailledba97072017-03-17 15:33:50 +01001060 newsrv->conn_src.opts |= CO_SRC_BIND;
1061 newsrv->conn_src.source_addr = *sk;
1062
1063 if (port_low != port_high) {
1064 int i;
1065
Frédéric Lécailledba97072017-03-17 15:33:50 +01001066 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
Remi Tricot-Le Bretondc187912021-05-12 09:44:06 +02001067 if (!newsrv->conn_src.sport_range) {
1068 ha_alert("Server '%s': Out of memory (sport_range)\n", args[0]);
1069 goto err;
1070 }
Frédéric Lécailledba97072017-03-17 15:33:50 +01001071 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
1072 newsrv->conn_src.sport_range->ports[i] = port_low + i;
1073 }
1074
1075 *cur_arg += 2;
1076 while (*(args[*cur_arg])) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001077 if (strcmp(args[*cur_arg], "usesrc") == 0) { /* address to use outside */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001078#if defined(CONFIG_HAP_TRANSPARENT)
1079 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001080 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
1081 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +01001082 goto err;
1083 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001084 if (strcmp(args[*cur_arg + 1], "client") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +01001085 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1086 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
1087 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001088 else if (strcmp(args[*cur_arg + 1], "clientip") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +01001089 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1090 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
1091 }
1092 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
1093 char *name, *end;
1094
1095 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +01001096 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001097 name++;
1098
1099 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +01001100 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +01001101 end++;
1102
1103 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1104 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
1105 free(newsrv->conn_src.bind_hdr_name);
1106 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
Remi Tricot-Le Bretondc187912021-05-12 09:44:06 +02001107 if (!newsrv->conn_src.bind_hdr_name) {
1108 ha_alert("Server '%s': Out of memory (bind_hdr_name)\n", args[0]);
1109 goto err;
1110 }
Frédéric Lécailledba97072017-03-17 15:33:50 +01001111 newsrv->conn_src.bind_hdr_len = end - name;
1112 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
1113 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
1114 newsrv->conn_src.bind_hdr_occ = -1;
1115
1116 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +01001117 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001118 end++;
1119 if (*end == ',') {
1120 end++;
1121 name = end;
1122 if (*end == '-')
1123 end++;
Willy Tarreau90807112020-02-25 08:16:33 +01001124 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001125 end++;
1126 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
1127 }
1128
1129 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001130 ha_alert("usesrc hdr_ip(name,num) does not support negative"
1131 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001132 goto err;
1133 }
1134 }
1135 else {
1136 struct sockaddr_storage *sk;
1137 int port1, port2;
1138
1139 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001140 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL,
1141 &errmsg, NULL, NULL,
1142 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001143 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001144 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001145 goto err;
1146 }
1147
Frédéric Lécailledba97072017-03-17 15:33:50 +01001148 newsrv->conn_src.tproxy_addr = *sk;
1149 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
1150 }
1151 global.last_checks |= LSTCHK_NETADM;
1152 *cur_arg += 2;
1153 continue;
1154#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001155 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 +01001156 goto err;
1157#endif /* defined(CONFIG_HAP_TRANSPARENT) */
1158 } /* "usesrc" */
1159
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001160 if (strcmp(args[*cur_arg], "interface") == 0) { /* specifically bind to this interface */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001161#ifdef SO_BINDTODEVICE
1162 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001163 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001164 goto err;
1165 }
1166 free(newsrv->conn_src.iface_name);
1167 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
1168 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
1169 global.last_checks |= LSTCHK_NETADM;
1170#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001171 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001172 goto err;
1173#endif
1174 *cur_arg += 2;
1175 continue;
1176 }
1177 /* this keyword in not an option of "source" */
1178 break;
1179 } /* while */
1180
1181 return 0;
1182
1183 err:
1184 free(errmsg);
1185 return ERR_ALERT | ERR_FATAL;
1186}
1187
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001188/* Parse the "stick" server keyword */
1189static int srv_parse_stick(char **args, int *cur_arg,
1190 struct proxy *curproxy, struct server *newsrv, char **err)
1191{
1192 newsrv->flags &= ~SRV_F_NON_STICK;
1193 return 0;
1194}
1195
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001196/* Parse the "track" server keyword */
1197static int srv_parse_track(char **args, int *cur_arg,
1198 struct proxy *curproxy, struct server *newsrv, char **err)
1199{
1200 char *arg;
1201
1202 arg = args[*cur_arg + 1];
1203 if (!*arg) {
1204 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
1205 return ERR_ALERT | ERR_FATAL;
1206 }
1207
1208 free(newsrv->trackit);
1209 newsrv->trackit = strdup(arg);
1210
1211 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001212}
1213
1214/* Parse the "socks4" server keyword */
1215static int srv_parse_socks4(char **args, int *cur_arg,
1216 struct proxy *curproxy, struct server *newsrv, char **err)
1217{
1218 char *errmsg;
1219 int port_low, port_high;
1220 struct sockaddr_storage *sk;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001221
1222 errmsg = NULL;
1223
1224 if (!*args[*cur_arg + 1]) {
1225 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
1226 goto err;
1227 }
1228
1229 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001230 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1231 &errmsg, NULL, NULL,
1232 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT);
Alexander Liu2a54bb72019-05-22 19:44:48 +08001233 if (!sk) {
1234 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1235 goto err;
1236 }
1237
Alexander Liu2a54bb72019-05-22 19:44:48 +08001238 newsrv->flags |= SRV_F_SOCKS4_PROXY;
1239 newsrv->socks4_addr = *sk;
1240
Alexander Liu2a54bb72019-05-22 19:44:48 +08001241 return 0;
1242
1243 err:
1244 free(errmsg);
1245 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001246}
1247
Frédéric Lécailledba97072017-03-17 15:33:50 +01001248
Willy Tarreau034c88c2017-01-23 23:36:45 +01001249/* parse the "tfo" server keyword */
1250static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1251{
1252 newsrv->flags |= SRV_F_FASTOPEN;
1253 return 0;
1254}
1255
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001256/* parse the "usesrc" server keyword */
1257static int srv_parse_usesrc(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1258{
1259 memprintf(err, "'%s' only allowed after a '%s' statement.",
1260 "usesrc", "source");
1261 return ERR_ALERT | ERR_FATAL;
1262}
1263
1264/* parse the "weight" server keyword */
1265static int srv_parse_weight(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1266{
1267 int w;
1268
1269 w = atol(args[*cur_arg + 1]);
1270 if (w < 0 || w > SRV_UWGHT_MAX) {
1271 memprintf(err, "weight of server %s is not within 0 and %d (%d).",
1272 newsrv->id, SRV_UWGHT_MAX, w);
1273 return ERR_ALERT | ERR_FATAL;
1274 }
1275 newsrv->uweight = newsrv->iweight = w;
1276
1277 return 0;
1278}
1279
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001280/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +02001281 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001282 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001283 *
1284 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001285 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001286void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001287{
Willy Tarreau751153e2021-02-17 13:33:24 +01001288 struct stream *stream;
1289 struct mt_list *elt1, elt2;
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001290 int thr;
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001291
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001292 for (thr = 0; thr < global.nbthread; thr++)
1293 mt_list_for_each_entry_safe(stream, &srv->per_thr[thr].streams, by_srv, elt1, elt2)
1294 if (stream->srv_conn == srv)
1295 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001296}
1297
1298/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +02001299 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001300 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001301 *
1302 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001303 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001304void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001305{
1306 struct server *srv;
1307
1308 for (srv = px->srv; srv != NULL; srv = srv->next)
1309 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +02001310 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001311}
1312
Willy Tarreaubda92272014-05-20 21:55:30 +02001313/* Appends some information to a message string related to a server going UP or
1314 * DOWN. If both <forced> and <reason> are null and the server tracks another
1315 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +02001316 * If <check> is non-null, an entire string describing the check result will be
1317 * appended after a comma and a space (eg: to report some information from the
1318 * check that changed the state). In the other case, the string will be built
1319 * using the check results stored into the struct server if present.
1320 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +02001321 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001322 *
1323 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001324 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001325void srv_append_status(struct buffer *msg, struct server *s,
1326 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001327{
Emeric Brun5a133512017-10-19 14:42:30 +02001328 short status = s->op_st_chg.status;
1329 short code = s->op_st_chg.code;
1330 long duration = s->op_st_chg.duration;
1331 char *desc = s->op_st_chg.reason;
1332
1333 if (check) {
1334 status = check->status;
1335 code = check->code;
1336 duration = check->duration;
1337 desc = check->desc;
1338 }
1339
1340 if (status != -1) {
1341 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
1342
1343 if (status >= HCHK_STATUS_L57DATA)
1344 chunk_appendf(msg, ", code: %d", code);
1345
1346 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +02001347 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +02001348
1349 chunk_appendf(msg, ", info: \"");
1350
1351 chunk_initlen(&src, desc, 0, strlen(desc));
1352 chunk_asciiencode(msg, &src, '"');
1353
1354 chunk_appendf(msg, "\"");
1355 }
1356
1357 if (duration >= 0)
1358 chunk_appendf(msg, ", check duration: %ldms", duration);
1359 }
1360 else if (desc && *desc) {
1361 chunk_appendf(msg, ", %s", desc);
1362 }
1363 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +02001364 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +02001365 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001366
1367 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001368 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001369 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
1370 " %d sessions active, %d requeued, %d remaining in queue",
1371 s->proxy->srv_act, s->proxy->srv_bck,
1372 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
1373 s->cur_sess, xferred, s->nbpend);
1374 else
1375 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
1376 " %d sessions requeued, %d total in queue",
1377 s->proxy->srv_act, s->proxy->srv_bck,
1378 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
1379 xferred, s->nbpend);
1380 }
1381}
1382
Emeric Brun5a133512017-10-19 14:42:30 +02001383/* Marks server <s> down, regardless of its checks' statuses. The server is
1384 * registered in a list to postpone the counting of the remaining servers on
1385 * the proxy and transfers queued streams whenever possible to other servers at
1386 * a sync point. Maintenance servers are ignored. It stores the <reason> if
1387 * non-null as the reason for going down or the available data from the check
1388 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001389 *
1390 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001391 */
Emeric Brun5a133512017-10-19 14:42:30 +02001392void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001393{
1394 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001395
Emeric Brun64cc49c2017-10-03 14:46:45 +02001396 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001397 return;
1398
Emeric Brun52a91d32017-08-31 14:41:55 +02001399 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +02001400 *s->op_st_chg.reason = 0;
1401 s->op_st_chg.status = -1;
1402 if (reason) {
1403 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1404 }
1405 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001406 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001407 s->op_st_chg.code = check->code;
1408 s->op_st_chg.status = check->status;
1409 s->op_st_chg.duration = check->duration;
1410 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001411
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001412 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001413 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001414
Emeric Brun9f0b4582017-10-23 14:39:51 +02001415 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001416 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001417 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001418 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001419 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001420}
1421
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001422/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001423 * in maintenance. The server is registered in a list to postpone the counting
1424 * of the remaining servers on the proxy and tries to grab requests from the
1425 * proxy at a sync point. Maintenance servers are ignored. It stores the
1426 * <reason> if non-null as the reason for going down or the available data
1427 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001428 *
1429 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001430 */
Emeric Brun5a133512017-10-19 14:42:30 +02001431void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001432{
1433 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001434
Emeric Brun64cc49c2017-10-03 14:46:45 +02001435 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001436 return;
1437
Emeric Brun52a91d32017-08-31 14:41:55 +02001438 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001439 return;
1440
Emeric Brun52a91d32017-08-31 14:41:55 +02001441 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001442 *s->op_st_chg.reason = 0;
1443 s->op_st_chg.status = -1;
1444 if (reason) {
1445 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1446 }
1447 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001448 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001449 s->op_st_chg.code = check->code;
1450 s->op_st_chg.status = check->status;
1451 s->op_st_chg.duration = check->duration;
1452 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001453
Emeric Brun64cc49c2017-10-03 14:46:45 +02001454 if (s->slowstart <= 0)
1455 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001456
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001457 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001458 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001459
Emeric Brun9f0b4582017-10-23 14:39:51 +02001460 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001461 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001462 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001463 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001464 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001465}
1466
Willy Tarreau8eb77842014-05-21 13:54:57 +02001467/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001468 * isn't in maintenance. The server is registered in a list to postpone the
1469 * counting of the remaining servers on the proxy and tries to grab requests
1470 * from the proxy. Maintenance servers are ignored. It stores the
1471 * <reason> if non-null as the reason for going down or the available data
1472 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001473 * up. Note that it makes use of the trash to build the log strings, so <reason>
1474 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001475 *
1476 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001477 */
Emeric Brun5a133512017-10-19 14:42:30 +02001478void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001479{
1480 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001481
Emeric Brun64cc49c2017-10-03 14:46:45 +02001482 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001483 return;
1484
Emeric Brun52a91d32017-08-31 14:41:55 +02001485 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001486 return;
1487
Emeric Brun52a91d32017-08-31 14:41:55 +02001488 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001489 *s->op_st_chg.reason = 0;
1490 s->op_st_chg.status = -1;
1491 if (reason) {
1492 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1493 }
1494 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001495 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001496 s->op_st_chg.code = check->code;
1497 s->op_st_chg.status = check->status;
1498 s->op_st_chg.duration = check->duration;
1499 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001500
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001501 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001502 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001503
Emeric Brun9f0b4582017-10-23 14:39:51 +02001504 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001505 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001506 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001507 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001508 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001509}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001510
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001511/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1512 * enforce either maint mode or drain mode. It is not allowed to set more than
1513 * one flag at once. The equivalent "inherited" flag is propagated to all
1514 * tracking servers. Maintenance mode disables health checks (but not agent
1515 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001516 * is done. If <cause> is non-null, it will be displayed at the end of the log
1517 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001518 *
1519 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001520 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001521void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001522{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001523 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001524
1525 if (!mode)
1526 return;
1527
1528 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001529 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001530 return;
1531
Emeric Brun52a91d32017-08-31 14:41:55 +02001532 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001533 if (cause)
1534 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1535
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001536 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001537 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001538
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001539 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001540 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1541 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001542 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001543
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001544 /* compute the inherited flag to propagate */
1545 if (mode & SRV_ADMF_MAINT)
1546 mode = SRV_ADMF_IMAINT;
1547 else if (mode & SRV_ADMF_DRAIN)
1548 mode = SRV_ADMF_IDRAIN;
1549
Emeric Brun9f0b4582017-10-23 14:39:51 +02001550 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001551 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001552 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001553 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001554 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001555}
1556
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001557/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1558 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1559 * than one flag at once. The equivalent "inherited" flag is propagated to all
1560 * tracking servers. Leaving maintenance mode re-enables health checks. When
1561 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001562 *
1563 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001564 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001565void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001566{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001567 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001568
1569 if (!mode)
1570 return;
1571
1572 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001573 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001574 return;
1575
Emeric Brun52a91d32017-08-31 14:41:55 +02001576 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001577
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001578 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001579 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001580
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001581 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001582 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1583 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001584 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001585
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001586 if (mode & SRV_ADMF_MAINT)
1587 mode = SRV_ADMF_IMAINT;
1588 else if (mode & SRV_ADMF_DRAIN)
1589 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001590
Emeric Brun9f0b4582017-10-23 14:39:51 +02001591 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001592 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001593 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001594 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001595 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001596}
1597
Willy Tarreau757478e2016-11-03 19:22:19 +01001598/* principle: propagate maint and drain to tracking servers. This is useful
1599 * upon startup so that inherited states are correct.
1600 */
1601static void srv_propagate_admin_state(struct server *srv)
1602{
1603 struct server *srv2;
1604
1605 if (!srv->trackers)
1606 return;
1607
1608 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001609 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001610 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001611 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001612
Emeric Brun52a91d32017-08-31 14:41:55 +02001613 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001614 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001615 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001616 }
1617}
1618
1619/* Compute and propagate the admin states for all servers in proxy <px>.
1620 * Only servers *not* tracking another one are considered, because other
1621 * ones will be handled when the server they track is visited.
1622 */
1623void srv_compute_all_admin_states(struct proxy *px)
1624{
1625 struct server *srv;
1626
1627 for (srv = px->srv; srv; srv = srv->next) {
1628 if (srv->track)
1629 continue;
1630 srv_propagate_admin_state(srv);
1631 }
1632}
1633
Willy Tarreaudff55432012-10-10 17:51:05 +02001634/* Note: must not be declared <const> as its list will be overwritten.
1635 * Please take care of keeping this list alphabetically sorted, doing so helps
1636 * all code contributors.
1637 * Optional keywords are also declared with a NULL ->parse() function so that
1638 * the config parser can report an appropriate error when a known keyword was
1639 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001640 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001641 */
1642static struct srv_kw_list srv_kws = { "ALL", { }, {
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001643 { "backup", srv_parse_backup, 0, 1, 1 }, /* Flag as backup server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001644 { "cookie", srv_parse_cookie, 1, 1, 0 }, /* Assign a cookie to the server */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001645 { "disabled", srv_parse_disabled, 0, 1, 1 }, /* Start the server in 'disabled' state */
1646 { "enabled", srv_parse_enabled, 0, 1, 1 }, /* Start the server in 'enabled' state */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001647 { "error-limit", srv_parse_error_limit, 1, 1, 0 }, /* Configure the consecutive count of check failures to consider a server on error */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001648 { "id", srv_parse_id, 1, 0, 1 }, /* set id# of server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001649 { "init-addr", srv_parse_init_addr, 1, 1, 0 }, /* */
1650 { "log-proto", srv_parse_log_proto, 1, 1, 0 }, /* Set the protocol for event messages, only relevant in a ring section */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001651 { "maxconn", srv_parse_maxconn, 1, 1, 1 }, /* Set the max number of concurrent connection */
1652 { "maxqueue", srv_parse_maxqueue, 1, 1, 1 }, /* Set the max number of connection to put in queue */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001653 { "max-reuse", srv_parse_max_reuse, 1, 1, 0 }, /* Set the max number of requests on a connection, -1 means unlimited */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001654 { "minconn", srv_parse_minconn, 1, 1, 1 }, /* Enable a dynamic maxconn limit */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001655 { "namespace", srv_parse_namespace, 1, 1, 0 }, /* Namespace the server socket belongs to (if supported) */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001656 { "no-backup", srv_parse_no_backup, 0, 1, 1 }, /* Flag as non-backup server */
1657 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1, 1 }, /* Disable use of PROXY V1 protocol */
1658 { "no-send-proxy-v2", srv_parse_no_send_proxy_v2, 0, 1, 1 }, /* Disable use of PROXY V2 protocol */
1659 { "no-tfo", srv_parse_no_tfo, 0, 1, 1 }, /* Disable use of TCP Fast Open */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001660 { "non-stick", srv_parse_non_stick, 0, 1, 0 }, /* Disable stick-table persistence */
1661 { "observe", srv_parse_observe, 1, 1, 0 }, /* Enables health adjusting based on observing communication with the server */
1662 { "on-error", srv_parse_on_error, 1, 1, 0 }, /* Configure the action on check failure */
1663 { "on-marked-down", srv_parse_on_marked_down, 1, 1, 0 }, /* Configure the action when a server is marked down */
1664 { "on-marked-up", srv_parse_on_marked_up, 1, 1, 0 }, /* Configure the action when a server is marked up */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001665 { "pool-low-conn", srv_parse_pool_low_conn, 1, 1, 1 }, /* Set the min number of orphan idle connecbefore being allowed to pick from other threads */
1666 { "pool-max-conn", srv_parse_pool_max_conn, 1, 1, 1 }, /* Set the max number of orphan idle connections, -1 means unlimited */
1667 { "pool-purge-delay", srv_parse_pool_purge_delay, 1, 1, 1 }, /* Set the time before we destroy orphan idle connections, defaults to 1s */
Amaury Denoyelle30467232021-03-12 18:03:27 +01001668 { "proto", srv_parse_proto, 1, 1, 1 }, /* Set the proto to use for all outgoing connections */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001669 { "proxy-v2-options", srv_parse_proxy_v2_options, 1, 1, 1 }, /* options for send-proxy-v2 */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001670 { "redir", srv_parse_redir, 1, 1, 0 }, /* Enable redirection mode */
Ilya Shipitsinba13f162021-03-19 22:21:44 +05001671 { "resolve-net", srv_parse_resolve_net, 1, 1, 0 }, /* Set the preferred network range for name resolution */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001672 { "resolve-opts", srv_parse_resolve_opts, 1, 1, 0 }, /* Set options for name resolution */
Ilya Shipitsinba13f162021-03-19 22:21:44 +05001673 { "resolve-prefer", srv_parse_resolve_prefer, 1, 1, 0 }, /* Set the preferred family for name resolution */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001674 { "resolvers", srv_parse_resolvers, 1, 1, 0 }, /* Configure the resolver to use for name resolution */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001675 { "send-proxy", srv_parse_send_proxy, 0, 1, 1 }, /* Enforce use of PROXY V1 protocol */
1676 { "send-proxy-v2", srv_parse_send_proxy_v2, 0, 1, 1 }, /* Enforce use of PROXY V2 protocol */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001677 { "slowstart", srv_parse_slowstart, 1, 1, 0 }, /* Set the warm-up timer for a previously failed server */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001678 { "source", srv_parse_source, -1, 1, 1 }, /* Set the source address to be used to connect to the server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001679 { "stick", srv_parse_stick, 0, 1, 0 }, /* Enable stick-table persistence */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001680 { "tfo", srv_parse_tfo, 0, 1, 1 }, /* enable TCP Fast Open of server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001681 { "track", srv_parse_track, 1, 1, 0 }, /* Set the current state of the server, tracking another one */
1682 { "socks4", srv_parse_socks4, 1, 1, 0 }, /* Set the socks4 proxy of the server*/
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001683 { "usesrc", srv_parse_usesrc, 0, 1, 1 }, /* safe-guard against usesrc without preceding <source> keyword */
1684 { "weight", srv_parse_weight, 1, 1, 1 }, /* Set the load-balancing weight */
Willy Tarreaudff55432012-10-10 17:51:05 +02001685 { NULL, NULL, 0 },
1686}};
1687
Willy Tarreau0108d902018-11-25 19:14:37 +01001688INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001689
Willy Tarreau004e0452013-11-21 11:22:01 +01001690/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001691 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001692 * state is automatically disabled if the time is elapsed. If <must_update> is
1693 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001694 *
1695 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001696 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001697void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001698{
1699 struct proxy *px = sv->proxy;
1700 unsigned w;
1701
1702 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1703 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001704 if (sv->next_state == SRV_ST_STARTING)
1705 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001706 }
1707
1708 /* We must take care of not pushing the server to full throttle during slow starts.
1709 * It must also start immediately, at least at the minimal step when leaving maintenance.
1710 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001711 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001712 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1713 else
1714 w = px->lbprm.wdiv;
1715
Emeric Brun52a91d32017-08-31 14:41:55 +02001716 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001717
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001718 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001719 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001720 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001721}
1722
Willy Tarreaubaaee002006-06-26 02:48:02 +02001723/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001724 * Parses weight_str and configures sv accordingly.
1725 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001726 *
1727 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001728 */
1729const char *server_parse_weight_change_request(struct server *sv,
1730 const char *weight_str)
1731{
1732 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001733 long int w;
1734 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001735
1736 px = sv->proxy;
1737
1738 /* if the weight is terminated with '%', it is set relative to
1739 * the initial weight, otherwise it is absolute.
1740 */
1741 if (!*weight_str)
1742 return "Require <weight> or <weight%>.\n";
1743
Simon Hormanb796afa2013-02-12 10:45:53 +09001744 w = strtol(weight_str, &end, 10);
1745 if (end == weight_str)
1746 return "Empty weight string empty or preceded by garbage";
1747 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001748 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001749 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001750 /* Avoid integer overflow */
1751 if (w > 25600)
1752 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001753 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001754 if (w > 256)
1755 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001756 }
1757 else if (w < 0 || w > 256)
1758 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001759 else if (end[0] != '\0')
1760 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001761
1762 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1763 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1764
1765 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001766 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001767
1768 return NULL;
1769}
1770
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001771/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001772 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1773 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001774 * Returns:
1775 * - error string on error
1776 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001777 *
1778 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001779 */
1780const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001781 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001782{
1783 unsigned char ip[INET6_ADDRSTRLEN];
1784
1785 if (inet_pton(AF_INET6, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001786 srv_update_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001787 return NULL;
1788 }
1789 if (inet_pton(AF_INET, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001790 srv_update_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001791 return NULL;
1792 }
1793
1794 return "Could not understand IP address format.\n";
1795}
1796
Willy Tarreau46b7f532018-08-21 11:54:26 +02001797/*
1798 * Must be called with the server lock held.
1799 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001800const char *server_parse_maxconn_change_request(struct server *sv,
1801 const char *maxconn_str)
1802{
1803 long int v;
1804 char *end;
1805
1806 if (!*maxconn_str)
1807 return "Require <maxconn>.\n";
1808
1809 v = strtol(maxconn_str, &end, 10);
1810 if (end == maxconn_str)
1811 return "maxconn string empty or preceded by garbage";
1812 else if (end[0] != '\0')
1813 return "Trailing garbage in maxconn string";
1814
1815 if (sv->maxconn == sv->minconn) { // static maxconn
1816 sv->maxconn = sv->minconn = v;
1817 } else { // dynamic maxconn
1818 sv->maxconn = v;
1819 }
1820
Amaury Denoyellecaaafd02021-06-18 11:11:36 +02001821 /* server_parse_maxconn_change_request requires the server lock held.
1822 * Specify it to process_srv_queue to prevent a deadlock.
1823 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001824 if (may_dequeue_tasks(sv, sv->proxy))
Amaury Denoyellecaaafd02021-06-18 11:11:36 +02001825 process_srv_queue(sv, 1);
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001826
1827 return NULL;
1828}
1829
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001830#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001831static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1832 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001833{
1834 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001835 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001836 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001837 NULL,
1838 };
1839
1840 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001841 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001842
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001843 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001844}
1845
1846static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1847{
1848 struct sample_expr *expr;
1849
1850 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 +01001851 if (!expr) {
1852 memprintf(err, "error detected while parsing sni expression : %s", *err);
1853 return ERR_ALERT | ERR_FATAL;
1854 }
1855
1856 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1857 memprintf(err, "error detected while parsing sni expression : "
1858 " fetch method '%s' extracts information from '%s', "
1859 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001860 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001861 return ERR_ALERT | ERR_FATAL;
1862 }
1863
1864 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1865 release_sample_expr(newsrv->ssl_ctx.sni);
1866 newsrv->ssl_ctx.sni = expr;
1867
1868 return 0;
1869}
1870#endif
1871
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001872static 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 +01001873{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001874 char *msg = "error encountered while processing ";
1875 char *quote = "'";
1876 char *token = args[cur_arg];
1877
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001878 if (err && *err) {
1879 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001880 msg = *err;
1881 quote = "";
1882 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001883 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001884
1885 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
1886 ha_warning("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1887 file, linenum, args[0], args[1],
1888 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001889 else
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001890 ha_alert("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
1891 file, linenum, args[0], args[1],
1892 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001893}
1894
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001895static void srv_conn_src_sport_range_cpy(struct server *srv,
1896 struct server *src)
1897{
1898 int range_sz;
1899
1900 range_sz = src->conn_src.sport_range->size;
1901 if (range_sz > 0) {
1902 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
1903 if (srv->conn_src.sport_range != NULL) {
1904 int i;
1905
1906 for (i = 0; i < range_sz; i++) {
1907 srv->conn_src.sport_range->ports[i] =
1908 src->conn_src.sport_range->ports[i];
1909 }
1910 }
1911 }
1912}
1913
1914/*
1915 * Copy <src> server connection source settings to <srv> server everything needed.
1916 */
1917static void srv_conn_src_cpy(struct server *srv, struct server *src)
1918{
1919 srv->conn_src.opts = src->conn_src.opts;
1920 srv->conn_src.source_addr = src->conn_src.source_addr;
1921
1922 /* Source port range copy. */
1923 if (src->conn_src.sport_range != NULL)
1924 srv_conn_src_sport_range_cpy(srv, src);
1925
1926#ifdef CONFIG_HAP_TRANSPARENT
1927 if (src->conn_src.bind_hdr_name != NULL) {
1928 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
1929 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
1930 }
1931 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
1932 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
1933#endif
1934 if (src->conn_src.iface_name != NULL)
1935 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
1936}
1937
1938/*
1939 * Copy <src> server SSL settings to <srv> server allocating
1940 * everything needed.
1941 */
1942#if defined(USE_OPENSSL)
1943static void srv_ssl_settings_cpy(struct server *srv, struct server *src)
1944{
1945 if (src->ssl_ctx.ca_file != NULL)
1946 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
1947 if (src->ssl_ctx.crl_file != NULL)
1948 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001949
1950 srv->ssl_ctx.verify = src->ssl_ctx.verify;
1951
Remi Tricot-Le Breton3b0f3e02021-07-13 18:28:22 +02001952 srv->ssl_ctx.ctx = src->ssl_ctx.ctx;
1953
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001954 if (src->ssl_ctx.verify_host != NULL)
1955 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
1956 if (src->ssl_ctx.ciphers != NULL)
1957 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02001958 if (src->ssl_ctx.options)
1959 srv->ssl_ctx.options = src->ssl_ctx.options;
1960 if (src->ssl_ctx.methods.flags)
1961 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
1962 if (src->ssl_ctx.methods.min)
1963 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
1964 if (src->ssl_ctx.methods.max)
1965 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
1966
Ilya Shipitsin2aa4b3a2021-01-07 11:55:45 +05001967#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02001968 if (src->ssl_ctx.ciphersuites != NULL)
1969 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
1970#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001971 if (src->sni_expr != NULL)
1972 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01001973
1974#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
1975 if (src->ssl_ctx.alpn_str) {
1976 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
1977 if (srv->ssl_ctx.alpn_str) {
1978 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
1979 src->ssl_ctx.alpn_len);
1980 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
1981 }
1982 }
1983#endif
1984#ifdef OPENSSL_NPN_NEGOTIATED
1985 if (src->ssl_ctx.npn_str) {
1986 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
1987 if (srv->ssl_ctx.npn_str) {
1988 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
1989 src->ssl_ctx.npn_len);
1990 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
1991 }
1992 }
1993#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02001994}
1995#endif
1996
1997/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001998 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02001999 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002000 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002001 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01002002int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002003{
Christopher Faulet67957bd2017-09-27 11:00:59 +02002004 char *hostname_dn;
2005 int hostname_len, hostname_dn_len;
2006
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002007 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002008 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002009
Christopher Faulet67957bd2017-09-27 11:00:59 +02002010 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002011 hostname_dn = trash.area;
Emeric Brund30e9a12020-12-23 18:49:16 +01002012 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len + 1,
2013 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002014 if (hostname_dn_len == -1)
2015 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002016
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002017
Christopher Faulet67957bd2017-09-27 11:00:59 +02002018 free(srv->hostname);
2019 free(srv->hostname_dn);
2020 srv->hostname = strdup(hostname);
2021 srv->hostname_dn = strdup(hostname_dn);
2022 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002023 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002024 goto err;
2025
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002026 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002027
2028 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002029 ha_free(&srv->hostname);
2030 ha_free(&srv->hostname_dn);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002031 return -1;
2032}
2033
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002034/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002035 * Copy <src> server settings to <srv> server allocating
2036 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002037 * This function is not supposed to be called at any time, but only
2038 * during server settings parsing or during server allocations from
2039 * a server template, and just after having calloc()'ed a new server.
2040 * So, <src> may only be a default server (when parsing server settings)
2041 * or a server template (during server allocations from a server template).
2042 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
2043 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002044 */
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002045static void srv_settings_cpy(struct server *srv, struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002046{
2047 /* Connection source settings copy */
2048 srv_conn_src_cpy(srv, src);
2049
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002050 if (srv_tmpl) {
2051 srv->addr = src->addr;
2052 srv->svc_port = src->svc_port;
2053 }
2054
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002055 srv->pp_opts = src->pp_opts;
2056 if (src->rdr_pfx != NULL) {
2057 srv->rdr_pfx = strdup(src->rdr_pfx);
2058 srv->rdr_len = src->rdr_len;
2059 }
2060 if (src->cookie != NULL) {
2061 srv->cookie = strdup(src->cookie);
2062 srv->cklen = src->cklen;
2063 }
2064 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01002065 srv->check.addr = src->check.addr;
2066 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002067 srv->check.use_ssl = src->check.use_ssl;
2068 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01002069 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01002070 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05002071 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002072 /* Note: 'flags' field has potentially been already initialized. */
2073 srv->flags |= src->flags;
2074 srv->do_check = src->do_check;
2075 srv->do_agent = src->do_agent;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002076 srv->check.inter = src->check.inter;
2077 srv->check.fastinter = src->check.fastinter;
2078 srv->check.downinter = src->check.downinter;
2079 srv->agent.use_ssl = src->agent.use_ssl;
2080 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002081
2082 if (src->agent.tcpcheck_rules) {
2083 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
2084 if (srv->agent.tcpcheck_rules) {
2085 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
2086 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
2087 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
2088 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
2089 &src->agent.tcpcheck_rules->preset_vars);
2090 }
2091 }
2092
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002093 srv->agent.inter = src->agent.inter;
2094 srv->agent.fastinter = src->agent.fastinter;
2095 srv->agent.downinter = src->agent.downinter;
2096 srv->maxqueue = src->maxqueue;
2097 srv->minconn = src->minconn;
2098 srv->maxconn = src->maxconn;
2099 srv->slowstart = src->slowstart;
2100 srv->observe = src->observe;
2101 srv->onerror = src->onerror;
2102 srv->onmarkeddown = src->onmarkeddown;
2103 srv->onmarkedup = src->onmarkedup;
2104 if (src->trackit != NULL)
2105 srv->trackit = strdup(src->trackit);
2106 srv->consecutive_errors_limit = src->consecutive_errors_limit;
2107 srv->uweight = srv->iweight = src->iweight;
2108
2109 srv->check.send_proxy = src->check.send_proxy;
2110 /* health: up, but will fall down at first failure */
2111 srv->check.rise = srv->check.health = src->check.rise;
2112 srv->check.fall = src->check.fall;
2113
2114 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02002115 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
2116 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
2117 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002118 srv->check.state |= CHK_ST_PAUSED;
2119 srv->check.health = 0;
2120 }
2121
2122 /* health: up but will fall down at first failure */
2123 srv->agent.rise = srv->agent.health = src->agent.rise;
2124 srv->agent.fall = src->agent.fall;
2125
2126 if (src->resolvers_id != NULL)
2127 srv->resolvers_id = strdup(src->resolvers_id);
Emeric Brun21fbeed2020-12-23 18:01:04 +01002128 srv->resolv_opts.family_prio = src->resolv_opts.family_prio;
2129 srv->resolv_opts.accept_duplicate_ip = src->resolv_opts.accept_duplicate_ip;
2130 srv->resolv_opts.ignore_weight = src->resolv_opts.ignore_weight;
2131 if (srv->resolv_opts.family_prio == AF_UNSPEC)
2132 srv->resolv_opts.family_prio = AF_INET6;
2133 memcpy(srv->resolv_opts.pref_net,
2134 src->resolv_opts.pref_net,
2135 sizeof srv->resolv_opts.pref_net);
2136 srv->resolv_opts.pref_net_nb = src->resolv_opts.pref_net_nb;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002137
2138 srv->init_addr_methods = src->init_addr_methods;
2139 srv->init_addr = src->init_addr;
2140#if defined(USE_OPENSSL)
2141 srv_ssl_settings_cpy(srv, src);
2142#endif
2143#ifdef TCP_USER_TIMEOUT
2144 srv->tcp_ut = src->tcp_ut;
2145#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002146 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01002147 srv->pool_purge_delay = src->pool_purge_delay;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02002148 srv->low_idle_conns = src->low_idle_conns;
Olivier Houchard006e3102018-12-10 18:30:32 +01002149 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01002150 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002151
Olivier Houchard8da5f982017-08-04 18:35:36 +02002152 if (srv_tmpl)
2153 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08002154
2155 srv->check.via_socks4 = src->check.via_socks4;
2156 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002157}
2158
Willy Tarreau198e92a2021-03-05 10:23:32 +01002159/* allocate a server and attach it to the global servers_list. Returns
2160 * the server on success, otherwise NULL.
2161 */
William Lallemand313bfd12018-10-26 14:47:32 +02002162struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002163{
2164 struct server *srv;
2165
2166 srv = calloc(1, sizeof *srv);
2167 if (!srv)
2168 return NULL;
2169
2170 srv->obj_type = OBJ_TYPE_SERVER;
2171 srv->proxy = proxy;
Patrick Hemmer0355dab2018-05-11 12:52:31 -04002172 srv->pendconns = EB_ROOT;
Willy Tarreau2b718102021-04-21 07:32:39 +02002173 LIST_APPEND(&servers_list, &srv->global_list);
Emeric Brun0c4a8a32021-06-11 10:48:45 +02002174 LIST_INIT(&srv->srv_rec_item);
Emeric Brunf9ca5d82021-06-11 10:08:05 +02002175 LIST_INIT(&srv->ip_rec_item);
Christopher Faulet40a007c2017-07-03 15:41:01 +02002176
Emeric Brun52a91d32017-08-31 14:41:55 +02002177 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002178 srv->last_change = now.tv_sec;
2179
Christopher Faulet38290462020-04-21 11:46:40 +02002180 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002181 srv->check.status = HCHK_STATUS_INI;
2182 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002183 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02002184 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002185
Christopher Faulet38290462020-04-21 11:46:40 +02002186 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002187 srv->agent.status = HCHK_STATUS_INI;
2188 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01002189 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002190 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
Frédéric Lécaillef46c10c2020-11-23 14:29:28 +01002191#if defined(USE_QUIC)
2192 srv->cids = EB_ROOT_UNIQUE;
2193#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002194
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002195 srv->extra_counters = NULL;
William Lallemand3ce6eed2021-02-08 10:43:44 +01002196#ifdef USE_OPENSSL
2197 HA_RWLOCK_INIT(&srv->ssl_ctx.lock);
2198#endif
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002199
Willy Tarreau975b1552019-06-06 16:25:55 +02002200 /* please don't put default server settings here, they are set in
Willy Tarreau144289b2021-02-12 08:19:01 +01002201 * proxy_preset_defaults().
Willy Tarreau975b1552019-06-06 16:25:55 +02002202 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002203 return srv;
2204}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002205
Amaury Denoyellee3c55c22021-08-02 15:50:00 +02002206/* Increment the dynamic server refcount. */
2207static void srv_use_dynsrv(struct server *srv)
2208{
2209 BUG_ON(!(srv->flags & SRV_F_DYNAMIC));
2210 HA_ATOMIC_INC(&srv->refcount_dynsrv);
2211}
2212
2213/* Decrement the dynamic server refcount. */
2214static uint srv_release_dynsrv(struct server *srv)
2215{
2216 BUG_ON(!(srv->flags & SRV_F_DYNAMIC));
2217 return HA_ATOMIC_SUB_FETCH(&srv->refcount_dynsrv, 1);
2218}
2219
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002220/* Deallocate a server <srv> and its member. <srv> must be allocated.
2221 */
2222void free_server(struct server *srv)
2223{
Amaury Denoyellee3c55c22021-08-02 15:50:00 +02002224 /* For dynamic servers, decrement the reference counter. Only free the
2225 * server when reaching zero.
2226 */
2227 if (srv->flags & SRV_F_DYNAMIC) {
2228 if (srv_release_dynsrv(srv))
2229 return;
2230 }
2231
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002232 task_destroy(srv->warmup);
Christopher Faulet2c0f5272021-06-15 16:17:17 +02002233 task_destroy(srv->srvrq_check);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002234
2235 free(srv->id);
2236 free(srv->cookie);
2237 free(srv->hostname);
2238 free(srv->hostname_dn);
2239 free((char*)srv->conf.file);
2240 free(srv->per_thr);
2241 free(srv->curr_idle_thr);
2242 free(srv->resolvers_id);
2243 free(srv->addr_node.key);
Amaury Denoyellefb247942021-04-20 16:48:22 +02002244 free(srv->lb_nodes);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002245
2246 if (srv->use_ssl == 1 || srv->check.use_ssl == 1 || (srv->proxy->options & PR_O_TCPCHK_SSL)) {
2247 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2248 xprt_get(XPRT_SSL)->destroy_srv(srv);
2249 }
2250 HA_SPIN_DESTROY(&srv->lock);
2251
Willy Tarreau2b718102021-04-21 07:32:39 +02002252 LIST_DELETE(&srv->global_list);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002253
2254 EXTRA_COUNTERS_FREE(srv->extra_counters);
2255
2256 free(srv);
2257 srv = NULL;
2258}
2259
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002260/*
2261 * Parse as much as possible such a range string argument: low[-high]
2262 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
2263 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
2264 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
2265 * Returns 0 if succeeded, -1 if not.
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002266 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002267static int _srv_parse_tmpl_range(struct server *srv, const char *arg,
2268 int *nb_low, int *nb_high)
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002269{
2270 char *nb_high_arg;
2271
2272 *nb_high = 0;
2273 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002274 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002275
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002276 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002277 *nb_high_arg++ = '\0';
2278 *nb_high = atoi(nb_high_arg);
2279 }
2280 else {
2281 *nb_high += *nb_low;
2282 *nb_low = 1;
2283 }
2284
2285 if (*nb_low < 0 || *nb_high < *nb_low)
2286 return -1;
2287
2288 return 0;
2289}
2290
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002291/* Parse as much as possible such a range string argument: low[-high]
2292 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
2293 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
2294 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002295 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002296 * initialize a new server on startup.
2297 *
2298 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
2299 * Returns 0 if succeeded, -1 if not.
2300 */
2301static inline void _srv_parse_set_id_from_prefix(struct server *srv,
2302 const char *prefix, int nb)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002303{
2304 chunk_printf(&trash, "%s%d", prefix, nb);
2305 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002306 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002307}
2308
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002309/* Initialize as much as possible servers from <srv> server template.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002310 * Note that a server template is a special server with
2311 * a few different parameters than a server which has
2312 * been parsed mostly the same way as a server.
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002313 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002314 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002315 * initialize a new server on startup.
2316 *
Joseph Herlant44466822018-11-15 08:57:51 -08002317 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002318 * 'srv' template included.
2319 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002320static int _srv_parse_tmpl_init(struct server *srv, struct proxy *px)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002321{
2322 int i;
2323 struct server *newsrv;
2324
2325 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 +02002326 newsrv = new_server(px);
2327 if (!newsrv)
2328 goto err;
2329
Christopher Faulet75bef002020-11-02 22:04:55 +01002330 newsrv->conf.file = strdup(srv->conf.file);
2331 newsrv->conf.line = srv->conf.line;
2332
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002333 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002334 srv_prepare_for_resolution(newsrv, srv->hostname);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002335#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
2336 if (newsrv->sni_expr) {
2337 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
2338 if (!newsrv->ssl_ctx.sni)
2339 goto err;
2340 }
2341#endif
Emeric Brun0c4a8a32021-06-11 10:48:45 +02002342 /* append to list of servers available to receive an hostname */
Emeric Brun3ecaf532021-06-14 10:02:18 +02002343 if (newsrv->srvrq)
2344 LIST_APPEND(&newsrv->srvrq->attached_servers, &newsrv->srv_rec_item);
Emeric Brun0c4a8a32021-06-11 10:48:45 +02002345
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002346 /* Set this new server ID. */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002347 _srv_parse_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002348
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002349 /* Linked backwards first. This will be restablished after parsing. */
2350 newsrv->next = px->srv;
2351 px->srv = newsrv;
2352 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002353 _srv_parse_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002354
2355 return i - srv->tmpl_info.nb_low;
2356
2357 err:
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002358 _srv_parse_set_id_from_prefix(srv, srv->tmpl_info.prefix, srv->tmpl_info.nb_low);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002359 if (newsrv) {
2360#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
2361 release_sample_expr(newsrv->ssl_ctx.sni);
2362#endif
2363 free_check(&newsrv->agent);
2364 free_check(&newsrv->check);
Willy Tarreau2b718102021-04-21 07:32:39 +02002365 LIST_DELETE(&newsrv->global_list);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002366 }
2367 free(newsrv);
2368 return i - srv->tmpl_info.nb_low;
2369}
2370
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002371/* Allocate a new server pointed by <srv> and try to parse the first arguments
2372 * in <args> as an address for a server or an address-range for a template or
2373 * nothing for a default-server. <cur_arg> is incremented to the next argument.
2374 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002375 * This function is first intended to be used through parse_server to
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002376 * initialize a new server on startup.
2377 *
2378 * A mask of errors is returned. On a parsing error, ERR_FATAL is set. In case
2379 * of memory exhaustion, ERR_ABORT is set. If the server cannot be allocated,
2380 * <srv> will be set to NULL.
2381 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002382static int _srv_parse_init(struct server **srv, char **args, int *cur_arg,
2383 struct proxy *curproxy,
2384 int parse_flags, char **errmsg)
Willy Tarreau272adea2014-03-31 10:39:59 +02002385{
2386 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002387 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002388 int err_code = 0;
Willy Tarreau07101d52015-09-08 16:16:35 +02002389 char *fqdn = NULL;
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002390 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002391
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002392 *srv = NULL;
2393
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002394 /* There is no mandatory first arguments for default server. */
2395 if (parse_flags & SRV_PARSE_PARSE_ADDR) {
2396 if (parse_flags & SRV_PARSE_TEMPLATE) {
2397 if (!*args[3]) {
2398 /* 'server-template' line number of argument check. */
2399 memprintf(errmsg, "'%s' expects <prefix> <nb | range> <addr>[:<port>] as arguments.",
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002400 args[0]);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002401 err_code |= ERR_ALERT | ERR_FATAL;
2402 goto out;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002403 }
2404
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002405 err = invalid_prefix_char(args[1]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002406 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002407 else {
2408 if (!*args[2]) {
2409 /* 'server' line number of argument check. */
2410 memprintf(errmsg, "'%s' expects <name> and <addr>[:<port>] as arguments.",
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002411 args[0]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002412 err_code |= ERR_ALERT | ERR_FATAL;
2413 goto out;
2414 }
2415
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002416 err = invalid_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002417 }
2418
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002419 if (err) {
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002420 memprintf(errmsg, "character '%c' is not permitted in %s %s '%s'.",
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002421 *err, args[0], !(parse_flags & SRV_PARSE_TEMPLATE) ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002422 err_code |= ERR_ALERT | ERR_FATAL;
2423 goto out;
2424 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002425 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002426
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002427 *cur_arg = 2;
2428 if (parse_flags & SRV_PARSE_TEMPLATE) {
2429 /* Parse server-template <nb | range> arg. */
2430 if (_srv_parse_tmpl_range(newsrv, args[*cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
2431 memprintf(errmsg, "Wrong %s number or range arg '%s'.",
2432 args[0], args[*cur_arg]);
2433 err_code |= ERR_ALERT | ERR_FATAL;
2434 goto out;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002435 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002436 (*cur_arg)++;
2437 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002438
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002439 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
2440 struct sockaddr_storage *sk;
2441 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002442
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002443 *srv = newsrv = new_server(curproxy);
2444 if (!newsrv) {
2445 memprintf(errmsg, "out of memory.");
2446 err_code |= ERR_ALERT | ERR_ABORT;
2447 goto out;
2448 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002449
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002450 if (parse_flags & SRV_PARSE_TEMPLATE) {
2451 newsrv->tmpl_info.nb_low = tmpl_range_low;
2452 newsrv->tmpl_info.nb_high = tmpl_range_high;
2453 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002454
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002455 if (parse_flags & SRV_PARSE_DYNAMIC)
2456 newsrv->flags |= SRV_F_DYNAMIC;
2457
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002458 /* Note: for a server template, its id is its prefix.
2459 * This is a temporary id which will be used for server allocations to come
2460 * after parsing.
2461 */
2462 if (!(parse_flags & SRV_PARSE_TEMPLATE))
2463 newsrv->id = strdup(args[1]);
2464 else
2465 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002466
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002467 /* several ways to check the port component :
2468 * - IP => port=+0, relative (IPv4 only)
2469 * - IP: => port=+0, relative
2470 * - IP:N => port=N, absolute
2471 * - IP:+N => port=+N, relative
2472 * - IP:-N => port=-N, relative
2473 */
2474 if (!(parse_flags & SRV_PARSE_PARSE_ADDR))
2475 goto skip_addr;
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002476
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002477 sk = str2sa_range(args[*cur_arg], &port, &port1, &port2, NULL, NULL,
2478 errmsg, NULL, &fqdn,
2479 (parse_flags & SRV_PARSE_INITIAL_RESOLVE ? PA_O_RESOLVE : 0) | PA_O_PORT_OK | PA_O_PORT_OFS | PA_O_STREAM | PA_O_XPRT | PA_O_CONNECT);
2480 if (!sk) {
2481 memprintf(errmsg, "'%s %s' : %s", args[0], args[1], *errmsg);
2482 err_code |= ERR_ALERT | ERR_FATAL;
2483 goto out;
2484 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002485
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002486 if (!port1 || !port2) {
2487 /* no port specified, +offset, -offset */
2488 newsrv->flags |= SRV_F_MAPPORTS;
2489 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002490
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002491 /* save hostname and create associated name resolution */
2492 if (fqdn) {
2493 if (fqdn[0] == '_') { /* SRV record */
2494 /* Check if a SRV request already exists, and if not, create it */
2495 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2496 newsrv->srvrq = new_resolv_srvrq(newsrv, fqdn);
2497 if (newsrv->srvrq == NULL) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002498 err_code |= ERR_ALERT | ERR_FATAL;
2499 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002500 }
Christopher Faulet08736f92021-06-29 20:52:35 +02002501 LIST_APPEND(&newsrv->srvrq->attached_servers, &newsrv->srv_rec_item);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002502 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002503 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
2504 memprintf(errmsg, "Can't create DNS resolution for server '%s'",
2505 newsrv->id);
Willy Tarreau272adea2014-03-31 10:39:59 +02002506 err_code |= ERR_ALERT | ERR_FATAL;
2507 goto out;
2508 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002509 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002510
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002511 newsrv->addr = *sk;
2512 newsrv->svc_port = port;
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +02002513 /*
2514 * we don't need to lock the server here, because
2515 * we are in the process of initializing.
2516 *
2517 * Note that the server is not attached into the proxy tree if
2518 * this is a dynamic server.
2519 */
2520 srv_set_addr_desc(newsrv, !(parse_flags & SRV_PARSE_DYNAMIC));
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002521
2522 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
2523 memprintf(errmsg, "Unknown protocol family %d '%s'",
2524 newsrv->addr.ss_family, args[*cur_arg]);
2525 err_code |= ERR_ALERT | ERR_FATAL;
2526 goto out;
Willy Tarreau272adea2014-03-31 10:39:59 +02002527 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002528
2529 (*cur_arg)++;
2530 skip_addr:
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002531 if (!(parse_flags & SRV_PARSE_DYNAMIC)) {
2532 /* Copy default server settings to new server */
2533 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
2534 } else {
2535 /* Initialize dynamic server weight to 1 */
2536 newsrv->uweight = newsrv->iweight = 1;
2537
2538 /* A dynamic server is disabled on startup */
2539 newsrv->next_admin = SRV_ADMF_FMAINT;
2540 newsrv->next_state = SRV_ST_STOPPED;
2541 server_recalc_eweight(newsrv, 0);
2542 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002543 HA_SPIN_INIT(&newsrv->lock);
2544 }
2545 else {
2546 *srv = newsrv = &curproxy->defsrv;
2547 *cur_arg = 1;
2548 newsrv->resolv_opts.family_prio = AF_INET6;
2549 newsrv->resolv_opts.accept_duplicate_ip = 0;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002550 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002551
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002552 free(fqdn);
2553 return 0;
Willy Tarreau9faebe32019-06-07 19:00:37 +02002554
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002555out:
2556 free(fqdn);
2557 return err_code;
2558}
Willy Tarreau272adea2014-03-31 10:39:59 +02002559
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002560/* Parse the server keyword in <args>.
2561 * <cur_arg> is incremented beyond the keyword optional value. Note that this
2562 * might not be the case if an error is reported.
2563 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002564 * This function is first intended to be used through parse_server to
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002565 * initialize a new server on startup.
2566 *
2567 * A mask of errors is returned. ERR_FATAL is set if the parsing should be
2568 * interrupted.
2569 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002570static int _srv_parse_kw(struct server *srv, char **args, int *cur_arg,
2571 struct proxy *curproxy,
2572 int parse_flags, char **errmsg)
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002573{
2574 int err_code = 0;
2575 struct srv_kw *kw;
2576 const char *best;
Willy Tarreau272adea2014-03-31 10:39:59 +02002577
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002578 kw = srv_find_kw(args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002579 if (!kw) {
2580 best = srv_find_best_kw(args[*cur_arg]);
2581 if (best)
2582 memprintf(errmsg, "unknown keyword '%s'; did you mean '%s' maybe ?",
2583 args[*cur_arg], best);
2584 else
2585 memprintf(errmsg, "unknown keyword '%s'.",
2586 args[*cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002587
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002588 return ERR_ALERT | ERR_FATAL;
2589 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002590
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002591 if (!kw->parse) {
2592 memprintf(errmsg, "'%s' option is not implemented in this version (check build options)",
2593 args[*cur_arg]);
2594 err_code = ERR_ALERT | ERR_FATAL;
2595 goto out;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002596 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002597
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002598 if ((parse_flags & SRV_PARSE_DEFAULT_SERVER) && !kw->default_ok) {
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002599 memprintf(errmsg, "'%s' option is not accepted in default-server sections",
2600 args[*cur_arg]);
2601 err_code = ERR_ALERT;
2602 goto out;
2603 }
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002604 else if ((parse_flags & SRV_PARSE_DYNAMIC) && !kw->dynamic_ok) {
2605 memprintf(errmsg, "'%s' option is not accepted for dynamic server",
2606 args[*cur_arg]);
2607 err_code |= ERR_ALERT;
2608 goto out;
2609 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002610
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002611 err_code = kw->parse(args, cur_arg, curproxy, srv, errmsg);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002612
2613out:
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002614 if (kw->skip != -1)
2615 *cur_arg += 1 + kw->skip;
2616
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002617 return err_code;
2618}
2619
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002620#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002621/* This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002622 * initialize a new server on startup.
2623 */
2624static int _srv_parse_sni_expr_init(char **args, int cur_arg,
2625 struct server *srv, struct proxy *proxy,
2626 char **errmsg)
2627{
2628 int ret;
2629
2630 if (!srv->sni_expr)
2631 return 0;
2632
2633 ret = server_parse_sni_expr(srv, proxy, errmsg);
2634 if (!ret)
2635 return 0;
2636
2637 return ret;
2638}
2639#endif
2640
2641/* Server initializations finalization.
2642 * Initialize health check, agent check and SNI expression if enabled.
2643 * Must not be called for a default server instance.
2644 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002645 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002646 * initialize a new server on startup.
2647 */
2648static int _srv_parse_finalize(char **args, int cur_arg,
2649 struct server *srv, struct proxy *px,
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002650 int parse_flags, char **errmsg)
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002651{
2652#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
2653 int ret;
2654#endif
2655
2656 if (srv->do_check && srv->trackit) {
2657 memprintf(errmsg, "unable to enable checks and tracking at the same time!");
2658 return ERR_ALERT | ERR_FATAL;
2659 }
2660
2661 if (srv->do_agent && !srv->agent.port) {
2662 memprintf(errmsg, "server %s does not have agent port. Agent check has been disabled.",
2663 srv->id);
2664 return ERR_ALERT | ERR_FATAL;
2665 }
2666
2667#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
2668 if ((ret = _srv_parse_sni_expr_init(args, cur_arg, srv, px, errmsg)) != 0)
2669 return ret;
2670#endif
2671
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002672 /* A dynamic server is disabled on startup. It must not be counted as
2673 * an active backend entry.
2674 */
2675 if (!(parse_flags & SRV_PARSE_DYNAMIC)) {
2676 if (srv->flags & SRV_F_BACKUP)
2677 px->srv_bck++;
2678 else
2679 px->srv_act++;
2680 }
2681
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002682 srv_lb_commit_status(srv);
2683
2684 return 0;
2685}
2686
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002687int parse_server(const char *file, int linenum, char **args,
2688 struct proxy *curproxy, const struct proxy *defproxy,
2689 int parse_flags)
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002690{
2691 struct server *newsrv = NULL;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002692 char *errmsg = NULL;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002693 int err_code = 0;
2694
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002695 int cur_arg;
Willy Tarreau272adea2014-03-31 10:39:59 +02002696
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002697 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER) && curproxy == defproxy) {
2698 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
2699 err_code |= ERR_ALERT | ERR_FATAL;
2700 goto out;
2701 }
2702 else if (failifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) {
2703 err_code |= ERR_ALERT | ERR_FATAL;
2704 goto out;
2705 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002706
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002707 if ((parse_flags & (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) ==
2708 (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) {
2709 if (!*args[2])
2710 return 0;
2711 }
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002712
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002713 err_code = _srv_parse_init(&newsrv, args, &cur_arg, curproxy,
2714 parse_flags, &errmsg);
2715 if (errmsg) {
2716 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
2717 free(errmsg);
2718 }
Amaury Denoyellecf58dd72021-03-08 16:35:54 +01002719
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002720 /* the servers are linked backwards first */
2721 if (newsrv && !(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
2722 newsrv->next = curproxy->srv;
2723 curproxy->srv = newsrv;
2724 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002725
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002726 if (err_code & ERR_CODE)
2727 goto out;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002728
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002729 newsrv->conf.file = strdup(file);
2730 newsrv->conf.line = linenum;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002731
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002732 while (*args[cur_arg]) {
2733 errmsg = NULL;
2734 err_code = _srv_parse_kw(newsrv, args, &cur_arg, curproxy,
2735 parse_flags, &errmsg);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002736
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002737 if (err_code & ERR_ALERT) {
2738 display_parser_err(file, linenum, args, cur_arg, err_code, &errmsg);
2739 free(errmsg);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002740 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002741
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002742 if (err_code & ERR_FATAL)
2743 goto out;
2744 }
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002745
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002746 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002747 err_code |= _srv_parse_finalize(args, cur_arg, newsrv, curproxy, parse_flags, &errmsg);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002748 if (err_code) {
2749 display_parser_err(file, linenum, args, cur_arg, err_code, &errmsg);
2750 free(errmsg);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002751 }
2752
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002753 if (err_code & ERR_FATAL)
2754 goto out;
Willy Tarreau272adea2014-03-31 10:39:59 +02002755 }
Amaury Denoyellecf58dd72021-03-08 16:35:54 +01002756
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002757 if (parse_flags & SRV_PARSE_TEMPLATE)
2758 _srv_parse_tmpl_init(newsrv, curproxy);
2759
Amaury Denoyellef88af882021-06-08 17:00:20 +02002760 /* If the server id is fixed, insert it in the proxy used_id tree.
2761 * This is needed to detect a later duplicate id via srv_parse_id.
2762 *
2763 * If no is specified, a dynamic one is generated in
2764 * check_config_validity.
2765 */
2766 if (newsrv->flags & SRV_F_FORCED_ID)
2767 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
2768
Amaury Denoyelle24abb0c2021-05-07 15:13:51 +02002769 HA_DIAG_WARNING_COND((curproxy->cap & PR_CAP_LB) && !newsrv->uweight,
Amaury Denoyelleda0e7f62021-03-30 10:26:27 +02002770 "parsing [%s:%d] : 'server %s' : configured with weight of 0 will never be selected by load balancing algorithms\n",
2771 file, linenum, newsrv->id);
2772
Willy Tarreau272adea2014-03-31 10:39:59 +02002773 return 0;
2774
2775 out:
Willy Tarreau272adea2014-03-31 10:39:59 +02002776 return err_code;
2777}
2778
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002779/* Returns a pointer to the first server matching either id <id>.
2780 * NULL is returned if no match is found.
2781 * the lookup is performed in the backend <bk>
2782 */
2783struct server *server_find_by_id(struct proxy *bk, int id)
2784{
2785 struct eb32_node *eb32;
2786 struct server *curserver;
2787
2788 if (!bk || (id ==0))
2789 return NULL;
2790
2791 /* <bk> has no backend capabilities, so it can't have a server */
2792 if (!(bk->cap & PR_CAP_BE))
2793 return NULL;
2794
2795 curserver = NULL;
2796
2797 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2798 if (eb32)
2799 curserver = container_of(eb32, struct server, conf.id);
2800
2801 return curserver;
2802}
2803
2804/* Returns a pointer to the first server matching either name <name>, or id
2805 * if <name> starts with a '#'. NULL is returned if no match is found.
2806 * the lookup is performed in the backend <bk>
2807 */
2808struct server *server_find_by_name(struct proxy *bk, const char *name)
2809{
2810 struct server *curserver;
2811
2812 if (!bk || !name)
2813 return NULL;
2814
2815 /* <bk> has no backend capabilities, so it can't have a server */
2816 if (!(bk->cap & PR_CAP_BE))
2817 return NULL;
2818
2819 curserver = NULL;
2820 if (*name == '#') {
2821 curserver = server_find_by_id(bk, atoi(name + 1));
2822 if (curserver)
2823 return curserver;
2824 }
2825 else {
2826 curserver = bk->srv;
2827
2828 while (curserver && (strcmp(curserver->id, name) != 0))
2829 curserver = curserver->next;
2830
2831 if (curserver)
2832 return curserver;
2833 }
2834
2835 return NULL;
2836}
2837
2838struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2839{
2840 struct server *byname;
2841 struct server *byid;
2842
2843 if (!name && !id)
2844 return NULL;
2845
2846 if (diff)
2847 *diff = 0;
2848
2849 byname = byid = NULL;
2850
2851 if (name) {
2852 byname = server_find_by_name(bk, name);
2853 if (byname && (!id || byname->puid == id))
2854 return byname;
2855 }
2856
2857 /* remaining possibilities :
2858 * - name not set
2859 * - name set but not found
2860 * - name found but ID doesn't match
2861 */
2862 if (id) {
2863 byid = server_find_by_id(bk, id);
2864 if (byid) {
2865 if (byname) {
2866 /* use id only if forced by configuration */
2867 if (byid->flags & SRV_F_FORCED_ID) {
2868 if (diff)
2869 *diff |= 2;
2870 return byid;
2871 }
2872 else {
2873 if (diff)
2874 *diff |= 1;
2875 return byname;
2876 }
2877 }
2878
2879 /* remaining possibilities:
2880 * - name not set
2881 * - name set but not found
2882 */
2883 if (name && diff)
2884 *diff |= 2;
2885 return byid;
2886 }
2887
2888 /* id bot found */
2889 if (byname) {
2890 if (diff)
2891 *diff |= 1;
2892 return byname;
2893 }
2894 }
2895
2896 return NULL;
2897}
2898
Simon Horman7d09b9a2013-02-12 10:45:51 +09002899/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02002900 * update a server's current IP address.
2901 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
2902 * ip is in network format.
2903 * updater is a string which contains an information about the requester of the update.
2904 * updater is used if not NULL.
2905 *
2906 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02002907 *
2908 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02002909 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01002910int srv_update_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02002911{
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +02002912 /* save the new IP family & address if necessary */
2913 switch (ip_sin_family) {
2914 case AF_INET:
2915 if (s->addr.ss_family == ip_sin_family &&
2916 !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4))
2917 return 0;
2918 break;
2919 case AF_INET6:
2920 if (s->addr.ss_family == ip_sin_family &&
2921 !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16))
2922 return 0;
2923 break;
2924 };
2925
Baptiste Assmann14e40142015-04-14 01:13:07 +02002926 /* generates a log line and a warning on stderr */
2927 if (1) {
2928 /* book enough space for both IPv4 and IPv6 */
2929 char oldip[INET6_ADDRSTRLEN];
2930 char newip[INET6_ADDRSTRLEN];
2931
2932 memset(oldip, '\0', INET6_ADDRSTRLEN);
2933 memset(newip, '\0', INET6_ADDRSTRLEN);
2934
2935 /* copy old IP address in a string */
2936 switch (s->addr.ss_family) {
2937 case AF_INET:
2938 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
2939 break;
2940 case AF_INET6:
2941 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
2942 break;
Christopher Fauletb0b76072020-09-08 10:38:40 +02002943 default:
2944 strcpy(oldip, "(none)");
2945 break;
Baptiste Assmann14e40142015-04-14 01:13:07 +02002946 };
2947
2948 /* copy new IP address in a string */
2949 switch (ip_sin_family) {
2950 case AF_INET:
2951 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
2952 break;
2953 case AF_INET6:
2954 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
2955 break;
2956 };
2957
2958 /* save log line into a buffer */
2959 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
2960 s->proxy->id, s->id, oldip, newip, updater);
2961
2962 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002963 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02002964
2965 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002966 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02002967 }
2968
2969 /* save the new IP family */
2970 s->addr.ss_family = ip_sin_family;
2971 /* save the new IP address */
2972 switch (ip_sin_family) {
2973 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02002974 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02002975 break;
2976 case AF_INET6:
2977 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
2978 break;
2979 };
Olivier Houchard4e694042017-03-14 20:01:29 +01002980 srv_set_dyncookie(s);
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +02002981 srv_set_addr_desc(s, 1);
Baptiste Assmann14e40142015-04-14 01:13:07 +02002982
2983 return 0;
2984}
2985
William Dauchy7cabc062021-02-11 22:51:24 +01002986/* update agent health check address and port
2987 * addr can be ip4/ip6 or a hostname
2988 * if one error occurs, don't apply anything
2989 * must be called with the server lock held.
2990 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01002991const char *srv_update_agent_addr_port(struct server *s, const char *addr, const char *port)
William Dauchy7cabc062021-02-11 22:51:24 +01002992{
2993 struct sockaddr_storage sk;
2994 struct buffer *msg;
2995 int new_port;
2996
2997 msg = get_trash_chunk();
2998 chunk_reset(msg);
2999
3000 if (!(s->agent.state & CHK_ST_ENABLED)) {
3001 chunk_strcat(msg, "agent checks are not enabled on this server");
3002 goto out;
3003 }
3004 if (addr) {
3005 memset(&sk, 0, sizeof(struct sockaddr_storage));
3006 if (str2ip(addr, &sk) == NULL) {
3007 chunk_appendf(msg, "invalid addr '%s'", addr);
3008 goto out;
3009 }
3010 }
3011 if (port) {
3012 if (strl2irc(port, strlen(port), &new_port) != 0) {
3013 chunk_appendf(msg, "provided port is not an integer");
3014 goto out;
3015 }
3016 if (new_port < 0 || new_port > 65535) {
3017 chunk_appendf(msg, "provided port is invalid");
3018 goto out;
3019 }
3020 }
3021out:
3022 if (msg->data)
3023 return msg->area;
3024 else {
3025 if (addr)
3026 set_srv_agent_addr(s, &sk);
3027 if (port)
3028 set_srv_agent_port(s, new_port);
3029 }
3030 return NULL;
3031}
3032
William Dauchyb456e1f2021-02-11 22:51:23 +01003033/* update server health check address and port
3034 * addr must be ip4 or ip6, it won't be resolved
3035 * if one error occurs, don't apply anything
3036 * must be called with the server lock held.
3037 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003038const char *srv_update_check_addr_port(struct server *s, const char *addr, const char *port)
William Dauchyb456e1f2021-02-11 22:51:23 +01003039{
3040 struct sockaddr_storage sk;
3041 struct buffer *msg;
3042 int new_port;
3043
3044 msg = get_trash_chunk();
3045 chunk_reset(msg);
3046
3047 if (!(s->check.state & CHK_ST_ENABLED)) {
3048 chunk_strcat(msg, "health checks are not enabled on this server");
3049 goto out;
3050 }
3051 if (addr) {
3052 memset(&sk, 0, sizeof(struct sockaddr_storage));
3053 if (str2ip2(addr, &sk, 0) == NULL) {
3054 chunk_appendf(msg, "invalid addr '%s'", addr);
3055 goto out;
3056 }
3057 }
3058 if (port) {
3059 if (strl2irc(port, strlen(port), &new_port) != 0) {
3060 chunk_appendf(msg, "provided port is not an integer");
3061 goto out;
3062 }
3063 if (new_port < 0 || new_port > 65535) {
3064 chunk_appendf(msg, "provided port is invalid");
3065 goto out;
3066 }
3067 /* prevent the update of port to 0 if MAPPORTS are in use */
3068 if ((s->flags & SRV_F_MAPPORTS) && new_port == 0) {
3069 chunk_appendf(msg, "can't unset 'port' since MAPPORTS is in use");
3070 goto out;
3071 }
3072 }
3073out:
3074 if (msg->data)
3075 return msg->area;
3076 else {
3077 if (addr)
3078 s->check.addr = sk;
3079 if (port)
3080 s->check.port = new_port;
3081 }
3082 return NULL;
3083}
3084
Baptiste Assmann14e40142015-04-14 01:13:07 +02003085/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003086 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3087 *
3088 * Caller can pass its name through <updater> to get it integrated in the response message
3089 * returned by the function.
3090 *
3091 * The function first does the following, in that order:
3092 * - validates the new addr and/or port
3093 * - checks if an update is required (new IP or port is different than current ones)
3094 * - checks the update is allowed:
3095 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3096 * - allow all changes if no CHECKS are configured
3097 * - if CHECK is configured:
3098 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3099 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3100 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003101 *
3102 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003103 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003104const char *srv_update_addr_port(struct server *s, const char *addr, const char *port, char *updater)
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003105{
3106 struct sockaddr_storage sa;
3107 int ret, port_change_required;
3108 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003109 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003110 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003111 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003112
3113 msg = get_trash_chunk();
3114 chunk_reset(msg);
3115
3116 if (addr) {
3117 memset(&sa, 0, sizeof(struct sockaddr_storage));
3118 if (str2ip2(addr, &sa, 0) == NULL) {
3119 chunk_printf(msg, "Invalid addr '%s'", addr);
3120 goto out;
3121 }
3122
3123 /* changes are allowed on AF_INET* families only */
3124 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3125 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3126 goto out;
3127 }
3128
3129 /* collecting data currently setup */
3130 memset(current_addr, '\0', sizeof(current_addr));
3131 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3132 /* changes are allowed on AF_INET* families only */
3133 if ((ret != AF_INET) && (ret != AF_INET6)) {
3134 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3135 goto out;
3136 }
3137
3138 /* applying ADDR changes if required and allowed
3139 * ipcmp returns 0 when both ADDR are the same
3140 */
3141 if (ipcmp(&s->addr, &sa) == 0) {
3142 chunk_appendf(msg, "no need to change the addr");
3143 goto port;
3144 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003145 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003146 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003147
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003148 /* update report for caller */
3149 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3150 }
3151
3152 port:
3153 if (port) {
3154 char sign = '\0';
3155 char *endptr;
3156
3157 if (addr)
3158 chunk_appendf(msg, ", ");
3159
3160 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003161 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003162
3163 /* check if PORT change is required */
3164 port_change_required = 0;
3165
3166 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003167 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003168 new_port = strtol(port, &endptr, 10);
3169 if ((errno != 0) || (port == endptr)) {
3170 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3171 goto out;
3172 }
3173
3174 /* check if caller triggers a port mapped or offset */
3175 if (sign == '-' || (sign == '+')) {
3176 /* check if server currently uses port map */
3177 if (!(s->flags & SRV_F_MAPPORTS)) {
3178 /* switch from fixed port to port map mandatorily triggers
3179 * a port change */
3180 port_change_required = 1;
3181 /* check is configured
3182 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3183 * prevent PORT change if check doesn't have it's dedicated port while switching
3184 * to port mapping */
William Dauchy69f118d2021-02-03 22:30:07 +01003185 if (!s->check.port) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003186 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.");
3187 goto out;
3188 }
3189 }
3190 /* we're already using port maps */
3191 else {
3192 port_change_required = current_port != new_port;
3193 }
3194 }
3195 /* fixed port */
3196 else {
3197 port_change_required = current_port != new_port;
3198 }
3199
3200 /* applying PORT changes if required and update response message */
3201 if (port_change_required) {
3202 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003203 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003204 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003205
3206 /* prepare message */
3207 chunk_appendf(msg, "port changed from '");
3208 if (s->flags & SRV_F_MAPPORTS)
3209 chunk_appendf(msg, "+");
3210 chunk_appendf(msg, "%d' to '", current_port);
3211
3212 if (sign == '-') {
3213 s->flags |= SRV_F_MAPPORTS;
3214 chunk_appendf(msg, "%c", sign);
3215 /* just use for result output */
3216 new_port = -new_port;
3217 }
3218 else if (sign == '+') {
3219 s->flags |= SRV_F_MAPPORTS;
3220 chunk_appendf(msg, "%c", sign);
3221 }
3222 else {
3223 s->flags &= ~SRV_F_MAPPORTS;
3224 }
3225
3226 chunk_appendf(msg, "%d'", new_port);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003227 }
3228 else {
3229 chunk_appendf(msg, "no need to change the port");
3230 }
3231 }
3232
3233out:
William Dauchy6318d332020-05-02 21:52:36 +02003234 if (changed) {
3235 /* force connection cleanup on the given server */
3236 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003237 srv_set_dyncookie(s);
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +02003238 srv_set_addr_desc(s, 1);
William Dauchy6318d332020-05-02 21:52:36 +02003239 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003240 if (updater)
3241 chunk_appendf(msg, " by '%s'", updater);
3242 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003243 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003244}
3245
Christopher Faulet5efdef22021-03-11 18:03:21 +01003246/*
3247 * update server status based on result of SRV resolution
3248 * returns:
3249 * 0 if server status is updated
3250 * 1 if server status has not changed
3251 *
3252 * Must be called with the server lock held.
3253 */
3254int srvrq_update_srv_status(struct server *s, int has_no_ip)
3255{
3256 if (!s->srvrq)
3257 return 1;
3258
3259 /* since this server has an IP, it can go back in production */
3260 if (has_no_ip == 0) {
3261 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3262 return 1;
3263 }
3264
3265 if (s->next_admin & SRV_ADMF_RMAINT)
3266 return 1;
3267
3268 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record");
3269 return 0;
3270}
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003271
3272/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003273 * update server status based on result of name resolution
3274 * returns:
3275 * 0 if server status is updated
3276 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003277 *
3278 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003279 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003280int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003281{
Emeric Brun750fe792020-12-23 16:51:12 +01003282 struct resolvers *resolvers = s->resolvers;
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003283 struct resolv_resolution *resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003284 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003285
Jerome Magnin012261a2020-07-28 13:38:22 +02003286 /* If resolution is NULL we're dealing with SRV records Additional records */
Christopher Faulet5efdef22021-03-11 18:03:21 +01003287 if (resolution == NULL)
3288 return srvrq_update_srv_status(s, has_no_ip);
Jerome Magnin012261a2020-07-28 13:38:22 +02003289
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003290 switch (resolution->status) {
3291 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003292 /* status when HAProxy has just (re)started.
3293 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003294 break;
3295
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003296 case RSLV_STATUS_VALID:
3297 /*
3298 * resume health checks
3299 * server will be turned back on if health check is safe
3300 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003301 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003302 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003303 return 1;
3304 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3305 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003306 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003307 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003308
Emeric Brun52a91d32017-08-31 14:41:55 +02003309 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003310 return 1;
3311 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3312 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3313 s->proxy->id, s->id);
3314
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003315 ha_warning("%s.\n", trash.area);
3316 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003317 return 0;
3318
3319 case RSLV_STATUS_NX:
3320 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003321 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3322 if (!tick_is_expired(exp, now_ms))
3323 break;
3324
3325 if (s->next_admin & SRV_ADMF_RMAINT)
3326 return 1;
3327 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3328 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003329
3330 case RSLV_STATUS_TIMEOUT:
3331 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003332 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3333 if (!tick_is_expired(exp, now_ms))
3334 break;
3335
3336 if (s->next_admin & SRV_ADMF_RMAINT)
3337 return 1;
3338 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3339 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003340
3341 case RSLV_STATUS_REFUSED:
3342 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003343 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3344 if (!tick_is_expired(exp, now_ms))
3345 break;
3346
3347 if (s->next_admin & SRV_ADMF_RMAINT)
3348 return 1;
3349 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3350 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003351
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003352 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003353 /* stop server if resolution failed for a long enough period */
3354 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3355 if (!tick_is_expired(exp, now_ms))
3356 break;
3357
3358 if (s->next_admin & SRV_ADMF_RMAINT)
3359 return 1;
3360 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3361 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003362 }
3363
3364 return 1;
3365}
3366
3367/*
3368 * Server Name Resolution valid response callback
3369 * It expects:
3370 * - <nameserver>: the name server which answered the valid response
3371 * - <response>: buffer containing a valid DNS response
3372 * - <response_len>: size of <response>
3373 * It performs the following actions:
3374 * - ignore response if current ip found and server family not met
3375 * - update with first new ip found if family is met and current IP is not found
3376 * returns:
3377 * 0 on error
3378 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003379 *
3380 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003381 */
Emeric Brun08622d32020-12-23 17:41:43 +01003382int snr_resolution_cb(struct resolv_requester *requester, struct dns_counters *counters)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003383{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003384 struct server *s = NULL;
Emeric Brun08622d32020-12-23 17:41:43 +01003385 struct resolv_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003386 void *serverip, *firstip;
3387 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003388 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003389 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003390 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003391
Christopher Faulet67957bd2017-09-27 11:00:59 +02003392 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003393 if (!s)
3394 return 1;
3395
Christopher Faulet49531e82021-03-10 15:07:27 +01003396 if (s->srvrq) {
Emeric Brun0c4a8a32021-06-11 10:48:45 +02003397 /* If DNS resolution is disabled ignore it.
3398 * This is the case if the server was associated to
3399 * a SRV record and this record is now expired.
Christopher Faulet49531e82021-03-10 15:07:27 +01003400 */
Emeric Brun0c4a8a32021-06-11 10:48:45 +02003401 if (s->flags & SRV_F_NO_RESOLUTION)
Christopher Faulet49531e82021-03-10 15:07:27 +01003402 return 1;
3403 }
3404
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003405 resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet49531e82021-03-10 15:07:27 +01003406 if (!resolution)
3407 return 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003408
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003409 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003410 firstip = NULL; /* pointer to the first valid response found */
3411 /* it will be used as the new IP if a change is required */
3412 firstip_sin_family = AF_UNSPEC;
3413 serverip = NULL; /* current server IP address */
3414
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003415 /* initializing server IP pointer */
3416 server_sin_family = s->addr.ss_family;
3417 switch (server_sin_family) {
3418 case AF_INET:
3419 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3420 break;
3421
3422 case AF_INET6:
3423 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3424 break;
3425
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003426 case AF_UNSPEC:
3427 break;
3428
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003429 default:
3430 goto invalid;
3431 }
3432
Emeric Brund30e9a12020-12-23 18:49:16 +01003433 ret = resolv_get_ip_from_response(&resolution->response, &s->resolv_opts,
3434 serverip, server_sin_family, &firstip,
3435 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003436
3437 switch (ret) {
Emeric Brun456de772020-12-23 18:17:31 +01003438 case RSLV_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003439 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003440
Emeric Brun456de772020-12-23 18:17:31 +01003441 case RSLV_UPD_SRVIP_NOT_FOUND:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003442 goto save_ip;
3443
Emeric Brun456de772020-12-23 18:17:31 +01003444 case RSLV_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003445 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003446 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003447
Emeric Brun456de772020-12-23 18:17:31 +01003448 case RSLV_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003449 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003450 resolution->status = RSLV_STATUS_OTHER;
Christopher Fauletb142fb42021-06-24 15:33:52 +02003451 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003452 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003453
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003454 default:
Christopher Fauletb142fb42021-06-24 15:33:52 +02003455 has_no_ip = 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003456 goto invalid;
3457
3458 }
3459
3460 save_ip:
Emeric Brun50c870e2021-01-04 10:40:46 +01003461 if (counters) {
3462 counters->update++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003463 /* save the first ip we found */
Emeric Brun50c870e2021-01-04 10:40:46 +01003464 chunk_printf(chk, "%s/%s", counters->pid, counters->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003465 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003466 else
3467 chunk_printf(chk, "DNS cache");
Christopher Faulet69beaa92021-02-16 12:07:47 +01003468 srv_update_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003469
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003470 update_status:
Christopher Faulet7c129bb2021-06-24 15:26:03 +02003471 if (!snr_update_srv_status(s, has_no_ip) && has_no_ip)
3472 memset(&s->addr, 0, sizeof(s->addr));
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003473 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003474
3475 invalid:
Emeric Brun50c870e2021-01-04 10:40:46 +01003476 if (counters) {
3477 counters->invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003478 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003479 }
Christopher Fauletb142fb42021-06-24 15:33:52 +02003480 if (!snr_update_srv_status(s, has_no_ip) && has_no_ip)
3481 memset(&s->addr, 0, sizeof(s->addr));
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003482 return 0;
3483}
3484
3485/*
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003486 * SRV record error management callback
3487 * returns:
Emeric Brun43839d02021-06-10 15:25:25 +02003488 * 0 if we can trash answser items.
3489 * 1 when safely ignored and we must kept answer items
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003490 *
3491 * Grabs the server's lock.
3492 */
3493int srvrq_resolution_error_cb(struct resolv_requester *requester, int error_code)
3494{
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003495 struct resolv_srvrq *srvrq;
3496 struct resolv_resolution *res;
3497 struct resolvers *resolvers;
3498 int exp;
3499
3500 /* SRV records */
3501 srvrq = objt_resolv_srvrq(requester->owner);
3502 if (!srvrq)
Emeric Brun43839d02021-06-10 15:25:25 +02003503 return 0;
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003504
3505 resolvers = srvrq->resolvers;
3506 res = requester->resolution;
3507
3508 switch (res->status) {
3509
3510 case RSLV_STATUS_NX:
3511 /* stop server if resolution is NX for a long enough period */
3512 exp = tick_add(res->last_valid, resolvers->hold.nx);
3513 if (!tick_is_expired(exp, now_ms))
3514 return 1;
3515 break;
3516
3517 case RSLV_STATUS_TIMEOUT:
3518 /* stop server if resolution is TIMEOUT for a long enough period */
3519 exp = tick_add(res->last_valid, resolvers->hold.timeout);
3520 if (!tick_is_expired(exp, now_ms))
3521 return 1;
3522 break;
3523
3524 case RSLV_STATUS_REFUSED:
3525 /* stop server if resolution is REFUSED for a long enough period */
3526 exp = tick_add(res->last_valid, resolvers->hold.refused);
3527 if (!tick_is_expired(exp, now_ms))
3528 return 1;
3529 break;
3530
3531 default:
3532 /* stop server if resolution failed for a long enough period */
3533 exp = tick_add(res->last_valid, resolvers->hold.other);
3534 if (!tick_is_expired(exp, now_ms))
3535 return 1;
3536 }
3537
Emeric Brun0c4a8a32021-06-11 10:48:45 +02003538 /* Remove any associated server ref */
3539 resolv_detach_from_resolution_answer_items(res, requester, 1);
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003540
Emeric Brun43839d02021-06-10 15:25:25 +02003541 return 0;
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003542}
3543
3544/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003545 * Server Name Resolution error management callback
3546 * returns:
Emeric Brun43839d02021-06-10 15:25:25 +02003547 * 0 if we can trash answser items.
3548 * 1 when safely ignored and we must kept answer items
Willy Tarreau46b7f532018-08-21 11:54:26 +02003549 *
3550 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003551 */
Emeric Brun08622d32020-12-23 17:41:43 +01003552int snr_resolution_error_cb(struct resolv_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003553{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003554 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003555
Christopher Faulet67957bd2017-09-27 11:00:59 +02003556 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003557 if (!s)
Emeric Brun43839d02021-06-10 15:25:25 +02003558 return 0;
3559
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003560 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Emeric Brun43839d02021-06-10 15:25:25 +02003561 if (!snr_update_srv_status(s, 1)) {
Christopher Faulet5130c212021-03-10 20:31:40 +01003562 memset(&s->addr, 0, sizeof(s->addr));
Emeric Brun43839d02021-06-10 15:25:25 +02003563 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Emeric Brun0c4a8a32021-06-11 10:48:45 +02003564 resolv_detach_from_resolution_answer_items(requester->resolution, requester, 1);
Emeric Brun43839d02021-06-10 15:25:25 +02003565 return 0;
3566 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003567 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Emeric Brun43839d02021-06-10 15:25:25 +02003568
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003569 return 1;
3570}
3571
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003572/*
3573 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003574 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003575 * It returns a pointer to the first server found or NULL if <ip> is not yet
3576 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003577 *
3578 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003579 */
3580struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3581{
3582 struct server *tmpsrv;
3583 struct proxy *be;
3584
3585 if (!srv)
3586 return NULL;
3587
3588 be = srv->proxy;
3589 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003590 /* we found the current server is the same, ignore it */
3591 if (srv == tmpsrv)
3592 continue;
3593
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003594 /* We want to compare the IP in the record with the IP of the servers in the
3595 * same backend, only if:
3596 * * DNS resolution is enabled on the server
3597 * * the hostname used for the resolution by our server is the same than the
3598 * one used for the server found in the backend
3599 * * the server found in the backend is not our current server
3600 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003601 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003602 if ((tmpsrv->hostname_dn == NULL) ||
3603 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
Christopher Faulet59b29252021-03-16 11:21:04 +01003604 (strcasecmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01003605 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003606 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003607 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003608 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003609
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003610 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01003611 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003612 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003613 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003614 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003615
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003616 /* At this point, we have 2 different servers using the same DNS hostname
3617 * for their respective resolution.
3618 */
3619 if (*ip_family == tmpsrv->addr.ss_family &&
3620 ((tmpsrv->addr.ss_family == AF_INET &&
3621 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
3622 (tmpsrv->addr.ss_family == AF_INET6 &&
3623 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003624 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003625 return tmpsrv;
3626 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003627 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003628 }
3629
Emeric Brune9fd6b52017-11-02 17:20:39 +01003630
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003631 return NULL;
3632}
3633
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003634/* Sets the server's address (srv->addr) from srv->hostname using the libc's
3635 * resolver. This is suited for initial address configuration. Returns 0 on
3636 * success otherwise a non-zero error code. In case of error, *err_code, if
3637 * not NULL, is filled up.
3638 */
3639int srv_set_addr_via_libc(struct server *srv, int *err_code)
3640{
3641 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003642 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01003643 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003644 return 1;
3645 }
3646 return 0;
3647}
3648
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003649/* Set the server's FDQN (->hostname) from <hostname>.
3650 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003651 *
3652 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003653 */
Emeric Brun08622d32020-12-23 17:41:43 +01003654int srv_set_fqdn(struct server *srv, const char *hostname, int resolv_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003655{
Emeric Brun08622d32020-12-23 17:41:43 +01003656 struct resolv_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003657 char *hostname_dn;
3658 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003659
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02003660 /* Note that the server lock is already held. */
3661 if (!srv->resolvers)
3662 return -1;
3663
Emeric Brun08622d32020-12-23 17:41:43 +01003664 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003665 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003666 /* run time DNS/SRV resolution was not active for this server
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003667 * and we can't enable it at run time for now.
3668 */
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003669 if (!srv->resolv_requester && !srv->srvrq)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003670 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003671
3672 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003673 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003674 hostname_dn = trash.area;
Emeric Brund30e9a12020-12-23 18:49:16 +01003675 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len + 1,
3676 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003677 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003678 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003679
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003680 resolution = (srv->resolv_requester ? srv->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003681 if (resolution &&
3682 resolution->hostname_dn &&
Christopher Faulet59b29252021-03-16 11:21:04 +01003683 resolution->hostname_dn_len == hostname_dn_len &&
3684 strcasecmp(resolution->hostname_dn, hostname_dn) == 0)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003685 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003686
Christopher Faulet0efc0992021-03-11 18:09:53 +01003687 resolv_unlink_resolution(srv->resolv_requester, 0);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003688
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003689 free(srv->hostname);
3690 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003691 srv->hostname = strdup(hostname);
3692 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003693 srv->hostname_dn_len = hostname_dn_len;
3694 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003695 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003696
Baptiste Assmann13a92322019-06-07 09:40:55 +02003697 if (srv->flags & SRV_F_NO_RESOLUTION)
3698 goto end;
3699
Emeric Brund30e9a12020-12-23 18:49:16 +01003700 if (resolv_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003701 goto err;
3702
3703 end:
Emeric Brun08622d32020-12-23 17:41:43 +01003704 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003705 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003706 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02003707
3708 err:
Emeric Brun08622d32020-12-23 17:41:43 +01003709 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003710 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02003711 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003712}
3713
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003714/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
3715 * from the state file. This is suited for initial address configuration.
3716 * Returns 0 on success otherwise a non-zero error code. In case of error,
3717 * *err_code, if not NULL, is filled up.
3718 */
3719static int srv_apply_lastaddr(struct server *srv, int *err_code)
3720{
3721 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
3722 if (err_code)
3723 *err_code |= ERR_WARN;
3724 return 1;
3725 }
3726 return 0;
3727}
3728
Willy Tarreau25e51522016-11-04 15:10:17 +01003729/* returns 0 if no error, otherwise a combination of ERR_* flags */
3730static int srv_iterate_initaddr(struct server *srv)
3731{
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003732 char *name = srv->hostname;
Willy Tarreau25e51522016-11-04 15:10:17 +01003733 int return_code = 0;
3734 int err_code;
3735 unsigned int methods;
3736
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003737 /* If no addr and no hostname set, get the name from the DNS SRV request */
3738 if (!name && srv->srvrq)
3739 name = srv->srvrq->name;
3740
Willy Tarreau25e51522016-11-04 15:10:17 +01003741 methods = srv->init_addr_methods;
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003742 if (!methods) {
3743 /* otherwise default to "last,libc" */
Willy Tarreau25e51522016-11-04 15:10:17 +01003744 srv_append_initaddr(&methods, SRV_IADDR_LAST);
3745 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003746 if (srv->resolvers_id) {
3747 /* dns resolution is configured, add "none" to not fail on startup */
3748 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3749 }
Willy Tarreau25e51522016-11-04 15:10:17 +01003750 }
3751
Willy Tarreau3eed10e2016-11-07 21:03:16 +01003752 /* "-dr" : always append "none" so that server addresses resolution
3753 * failures are silently ignored, this is convenient to validate some
3754 * configs out of their environment.
3755 */
3756 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
3757 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3758
Willy Tarreau25e51522016-11-04 15:10:17 +01003759 while (methods) {
3760 err_code = 0;
3761 switch (srv_get_next_initaddr(&methods)) {
3762 case SRV_IADDR_LAST:
3763 if (!srv->lastaddr)
3764 continue;
3765 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003766 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003767 return_code |= err_code;
3768 break;
3769
3770 case SRV_IADDR_LIBC:
3771 if (!srv->hostname)
3772 continue;
3773 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003774 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003775 return_code |= err_code;
3776 break;
3777
Willy Tarreau37ebe122016-11-04 15:17:58 +01003778 case SRV_IADDR_NONE:
3779 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003780 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003781 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003782 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003783 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01003784 return return_code;
3785
Willy Tarreau4310d362016-11-02 15:05:56 +01003786 case SRV_IADDR_IP:
3787 ipcpy(&srv->init_addr, &srv->addr);
3788 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003789 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 +01003790 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau4310d362016-11-02 15:05:56 +01003791 }
Olivier Houchard4e694042017-03-14 20:01:29 +01003792 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01003793
Willy Tarreau25e51522016-11-04 15:10:17 +01003794 default: /* unhandled method */
3795 break;
3796 }
3797 }
3798
3799 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003800 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003801 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau25e51522016-11-04 15:10:17 +01003802 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01003803 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003804 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003805 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003806 }
Willy Tarreau25e51522016-11-04 15:10:17 +01003807
3808 return_code |= ERR_ALERT | ERR_FATAL;
3809 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01003810out:
3811 srv_set_dyncookie(srv);
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +02003812 srv_set_addr_desc(srv, 1);
Olivier Houchard4e694042017-03-14 20:01:29 +01003813 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01003814}
3815
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003816/*
3817 * This function parses all backends and all servers within each backend
3818 * and performs servers' addr resolution based on information provided by:
3819 * - configuration file
3820 * - server-state file (states provided by an 'old' haproxy process)
3821 *
3822 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
3823 */
3824int srv_init_addr(void)
3825{
3826 struct proxy *curproxy;
3827 int return_code = 0;
3828
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003829 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003830 while (curproxy) {
3831 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003832
3833 /* servers are in backend only */
Amaury Denoyellee3c41922021-01-06 14:28:50 +01003834 if (!(curproxy->cap & PR_CAP_BE) || curproxy->disabled)
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003835 goto srv_init_addr_next;
3836
Willy Tarreau25e51522016-11-04 15:10:17 +01003837 for (srv = curproxy->srv; srv; srv = srv->next)
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003838 if (srv->hostname || srv->srvrq)
Willy Tarreau3d609a72017-09-06 14:22:45 +02003839 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003840
3841 srv_init_addr_next:
3842 curproxy = curproxy->next;
3843 }
3844
3845 return return_code;
3846}
3847
Willy Tarreau46b7f532018-08-21 11:54:26 +02003848/*
3849 * Must be called with the server lock held.
3850 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003851const char *srv_update_fqdn(struct server *server, const char *fqdn, const char *updater, int resolv_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003852{
3853
Willy Tarreau83061a82018-07-13 11:56:34 +02003854 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003855
3856 msg = get_trash_chunk();
3857 chunk_reset(msg);
3858
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003859 if (server->hostname && strcmp(fqdn, server->hostname) == 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003860 chunk_appendf(msg, "no need to change the FDQN");
3861 goto out;
3862 }
3863
3864 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
3865 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
3866 goto out;
3867 }
3868
3869 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
3870 server->proxy->id, server->id, server->hostname, fqdn);
3871
Emeric Brun08622d32020-12-23 17:41:43 +01003872 if (srv_set_fqdn(server, fqdn, resolv_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003873 chunk_reset(msg);
3874 chunk_appendf(msg, "could not update %s/%s FQDN",
3875 server->proxy->id, server->id);
3876 goto out;
3877 }
3878
3879 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02003880 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003881
3882 out:
3883 if (updater)
3884 chunk_appendf(msg, " by '%s'", updater);
3885 chunk_appendf(msg, "\n");
3886
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003887 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003888}
3889
3890
Willy Tarreau21b069d2016-11-23 17:15:08 +01003891/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
3892 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01003893 * 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 +01003894 * used for CLI commands requiring a server name.
3895 * Important: the <arg> is modified to remove the '/'.
3896 */
3897struct server *cli_find_server(struct appctx *appctx, char *arg)
3898{
3899 struct proxy *px;
3900 struct server *sv;
3901 char *line;
3902
3903 /* split "backend/server" and make <line> point to server */
3904 for (line = arg; *line; line++)
3905 if (*line == '/') {
3906 *line++ = '\0';
3907 break;
3908 }
3909
3910 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02003911 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01003912 return NULL;
3913 }
3914
3915 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02003916 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01003917 return NULL;
3918 }
3919
Willy Tarreauc3914d42020-09-24 08:39:22 +02003920 if (px->disabled) {
Willy Tarreau9d008692019-08-09 11:21:01 +02003921 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01003922 return NULL;
3923 }
3924
3925 return sv;
3926}
3927
William Lallemand222baf22016-11-19 02:00:33 +01003928
Willy Tarreau46b7f532018-08-21 11:54:26 +02003929/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02003930static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01003931{
3932 struct server *sv;
3933 const char *warning;
3934
3935 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
3936 return 1;
3937
3938 sv = cli_find_server(appctx, args[2]);
3939 if (!sv)
3940 return 1;
3941
3942 if (strcmp(args[3], "weight") == 0) {
Christopher Faulet77df12c2021-06-15 12:01:29 +02003943 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01003944 warning = server_parse_weight_change_request(sv, args[4]);
Christopher Faulet77df12c2021-06-15 12:01:29 +02003945 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02003946 if (warning)
3947 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01003948 }
3949 else if (strcmp(args[3], "state") == 0) {
Christopher Faulet77df12c2021-06-15 12:01:29 +02003950 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01003951 if (strcmp(args[4], "ready") == 0)
3952 srv_adm_set_ready(sv);
3953 else if (strcmp(args[4], "drain") == 0)
3954 srv_adm_set_drain(sv);
3955 else if (strcmp(args[4], "maint") == 0)
3956 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02003957 else
3958 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02003959 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01003960 }
3961 else if (strcmp(args[3], "health") == 0) {
Christopher Faulet77df12c2021-06-15 12:01:29 +02003962 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02003963 if (sv->track)
3964 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01003965 else if (strcmp(args[4], "up") == 0) {
3966 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02003967 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01003968 }
3969 else if (strcmp(args[4], "stopping") == 0) {
3970 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02003971 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01003972 }
3973 else if (strcmp(args[4], "down") == 0) {
3974 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02003975 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01003976 }
Willy Tarreau9d008692019-08-09 11:21:01 +02003977 else
3978 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02003979 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01003980 }
3981 else if (strcmp(args[3], "agent") == 0) {
Christopher Faulet77df12c2021-06-15 12:01:29 +02003982 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02003983 if (!(sv->agent.state & CHK_ST_ENABLED))
3984 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01003985 else if (strcmp(args[4], "up") == 0) {
3986 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02003987 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01003988 }
3989 else if (strcmp(args[4], "down") == 0) {
3990 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02003991 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01003992 }
Willy Tarreau9d008692019-08-09 11:21:01 +02003993 else
3994 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02003995 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01003996 }
Misiek2da082d2017-01-09 09:40:42 +01003997 else if (strcmp(args[3], "agent-addr") == 0) {
William Dauchy7cabc062021-02-11 22:51:24 +01003998 char *addr = NULL;
3999 char *port = NULL;
4000 if (strlen(args[4]) == 0) {
4001 cli_err(appctx, "set server <b>/<s> agent-addr requires"
4002 " an address and optionally a port.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004003 goto out;
William Dauchy7cabc062021-02-11 22:51:24 +01004004 }
4005 addr = args[4];
4006 if (strcmp(args[5], "port") == 0)
4007 port = args[6];
Christopher Faulet77df12c2021-06-15 12:01:29 +02004008 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004009 warning = srv_update_agent_addr_port(sv, addr, port);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004010 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchy7cabc062021-02-11 22:51:24 +01004011 if (warning)
4012 cli_msg(appctx, LOG_WARNING, warning);
4013 }
4014 else if (strcmp(args[3], "agent-port") == 0) {
4015 char *port = NULL;
4016 if (strlen(args[4]) == 0) {
4017 cli_err(appctx, "set server <b>/<s> agent-port requires"
4018 " a port.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004019 goto out;
William Dauchy7cabc062021-02-11 22:51:24 +01004020 }
4021 port = args[4];
Christopher Faulet77df12c2021-06-15 12:01:29 +02004022 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004023 warning = srv_update_agent_addr_port(sv, NULL, port);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004024 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchy7cabc062021-02-11 22:51:24 +01004025 if (warning)
4026 cli_msg(appctx, LOG_WARNING, warning);
Misiek2da082d2017-01-09 09:40:42 +01004027 }
4028 else if (strcmp(args[3], "agent-send") == 0) {
Christopher Faulet88fca372021-06-18 08:47:14 +02004029 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004030 if (!(sv->agent.state & CHK_ST_ENABLED))
4031 cli_err(appctx, "agent checks are not enabled on this server.\n");
4032 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004033 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004034 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004035 }
Christopher Faulet88fca372021-06-18 08:47:14 +02004036 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Misiek2da082d2017-01-09 09:40:42 +01004037 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004038 else if (strcmp(args[3], "check-addr") == 0) {
4039 char *addr = NULL;
4040 char *port = NULL;
4041 if (strlen(args[4]) == 0) {
4042 cli_err(appctx, "set server <b>/<s> check-addr requires"
4043 " an address and optionally a port.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004044 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004045 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004046 addr = args[4];
4047 if (strcmp(args[5], "port") == 0)
4048 port = args[6];
Christopher Faulet77df12c2021-06-15 12:01:29 +02004049 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004050 warning = srv_update_check_addr_port(sv, addr, port);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004051 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyb456e1f2021-02-11 22:51:23 +01004052 if (warning)
4053 cli_msg(appctx, LOG_WARNING, warning);
4054 }
4055 else if (strcmp(args[3], "check-port") == 0) {
4056 char *port = NULL;
4057 if (strlen(args[4]) == 0) {
4058 cli_err(appctx, "set server <b>/<s> check-port requires"
4059 " a port.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004060 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004061 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004062 port = args[4];
Christopher Faulet77df12c2021-06-15 12:01:29 +02004063 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004064 warning = srv_update_check_addr_port(sv, NULL, port);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004065 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyb456e1f2021-02-11 22:51:23 +01004066 if (warning)
4067 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004068 }
4069 else if (strcmp(args[3], "addr") == 0) {
4070 char *addr = NULL;
4071 char *port = NULL;
4072 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004073 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004074 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004075 }
4076 else {
4077 addr = args[4];
4078 }
4079 if (strcmp(args[5], "port") == 0) {
4080 port = args[6];
4081 }
Christopher Faulet77df12c2021-06-15 12:01:29 +02004082 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004083 warning = srv_update_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004084 if (warning)
4085 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004086 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004087 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004088 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004089 else if (strcmp(args[3], "fqdn") == 0) {
4090 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004091 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004092 goto out;
4093 }
4094 if (!sv->resolvers) {
4095 cli_err(appctx, "set server <b>/<s> fqdn failed because no resolution is configured.\n");
4096 goto out;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004097 }
Christopher Faulet5b04f462021-06-15 11:37:40 +02004098 if (sv->srvrq) {
4099 cli_err(appctx, "set server <b>/<s> fqdn failed because SRV resolution is configured.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004100 goto out;
Christopher Faulet5b04f462021-06-15 11:37:40 +02004101 }
Christopher Faulet77df12c2021-06-15 12:01:29 +02004102 HA_SPIN_LOCK(DNS_LOCK, &sv->resolvers->lock);
4103 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Baptiste Assmann13a92322019-06-07 09:40:55 +02004104 /* ensure runtime resolver will process this new fqdn */
4105 if (sv->flags & SRV_F_NO_RESOLUTION) {
4106 sv->flags &= ~SRV_F_NO_RESOLUTION;
4107 }
Christopher Faulet77df12c2021-06-15 12:01:29 +02004108 warning = srv_update_fqdn(sv, args[4], "stats socket command", 1);
Christopher Faulet88fca372021-06-18 08:47:14 +02004109 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004110 HA_SPIN_UNLOCK(DNS_LOCK, &sv->resolvers->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004111 if (warning)
4112 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004113 }
William Dauchyf6370442020-11-14 19:25:33 +01004114 else if (strcmp(args[3], "ssl") == 0) {
4115#ifdef USE_OPENSSL
4116 if (sv->ssl_ctx.ctx == NULL) {
4117 cli_err(appctx, "'set server <srv> ssl' cannot be set. "
4118 " default-server should define ssl settings\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004119 goto out;
4120 }
4121
4122 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4123 if (strcmp(args[4], "on") == 0) {
William Dauchyf6370442020-11-14 19:25:33 +01004124 ssl_sock_set_srv(sv, 1);
4125 } else if (strcmp(args[4], "off") == 0) {
4126 ssl_sock_set_srv(sv, 0);
4127 } else {
Christopher Faulet77df12c2021-06-15 12:01:29 +02004128 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyf6370442020-11-14 19:25:33 +01004129 cli_err(appctx, "'set server <srv> ssl' expects 'on' or 'off'.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004130 goto out;
William Dauchyf6370442020-11-14 19:25:33 +01004131 }
4132 srv_cleanup_connections(sv);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004133 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyf6370442020-11-14 19:25:33 +01004134 cli_msg(appctx, LOG_NOTICE, "server ssl setting updated.\n");
4135#else
4136 cli_msg(appctx, LOG_NOTICE, "server ssl setting not supported.\n");
4137#endif
4138 } else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004139 cli_err(appctx,
William Dauchy3f4ec7d2021-02-15 17:22:16 +01004140 "usage: set server <backend>/<server> "
4141 "addr | agent | agent-addr | agent-port | agent-send | "
4142 "check-addr | check-port | fqdn | health | ssl | "
4143 "state | weight\n");
William Lallemand222baf22016-11-19 02:00:33 +01004144 }
Christopher Faulet77df12c2021-06-15 12:01:29 +02004145 out:
William Lallemand222baf22016-11-19 02:00:33 +01004146 return 1;
4147}
4148
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004149static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004150{
4151 struct stream_interface *si = appctx->owner;
4152 struct proxy *px;
4153 struct server *sv;
4154 char *line;
4155
4156
4157 /* split "backend/server" and make <line> point to server */
4158 for (line = args[2]; *line; line++)
4159 if (*line == '/') {
4160 *line++ = '\0';
4161 break;
4162 }
4163
Willy Tarreau9d008692019-08-09 11:21:01 +02004164 if (!*line)
4165 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004166
Willy Tarreau9d008692019-08-09 11:21:01 +02004167 if (!get_backend_server(args[2], line, &px, &sv))
4168 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004169
4170 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004171 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4172 sv->iweight);
4173 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004174 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004175 return 0;
4176 }
William Lallemand6b160942016-11-22 12:34:35 +01004177 return 1;
4178}
4179
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004180/* Parse a "set weight" command.
4181 *
4182 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004183 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004184static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004185{
4186 struct server *sv;
4187 const char *warning;
4188
4189 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4190 return 1;
4191
4192 sv = cli_find_server(appctx, args[2]);
4193 if (!sv)
4194 return 1;
4195
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004196 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4197
William Lallemand6b160942016-11-22 12:34:35 +01004198 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004199 if (warning)
4200 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004201
4202 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4203
William Lallemand6b160942016-11-22 12:34:35 +01004204 return 1;
4205}
4206
Willy Tarreau46b7f532018-08-21 11:54:26 +02004207/* parse a "set maxconn server" command. It always returns 1.
4208 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004209 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004210 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004211static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004212{
4213 struct server *sv;
4214 const char *warning;
4215
4216 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4217 return 1;
4218
4219 sv = cli_find_server(appctx, args[3]);
4220 if (!sv)
4221 return 1;
4222
Amaury Denoyellecaaafd02021-06-18 11:11:36 +02004223 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4224
Willy Tarreaub8026272016-11-23 11:26:56 +01004225 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004226 if (warning)
4227 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004228
Amaury Denoyellecaaafd02021-06-18 11:11:36 +02004229 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4230
Willy Tarreaub8026272016-11-23 11:26:56 +01004231 return 1;
4232}
William Lallemand6b160942016-11-22 12:34:35 +01004233
Willy Tarreau46b7f532018-08-21 11:54:26 +02004234/* parse a "disable agent" command. It always returns 1.
4235 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004236 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004237 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004238static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004239{
4240 struct server *sv;
4241
4242 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4243 return 1;
4244
4245 sv = cli_find_server(appctx, args[2]);
4246 if (!sv)
4247 return 1;
4248
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004249 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004250 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004251 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004252 return 1;
4253}
4254
Willy Tarreau46b7f532018-08-21 11:54:26 +02004255/* parse a "disable health" command. It always returns 1.
4256 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004257 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004258 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004259static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004260{
4261 struct server *sv;
4262
4263 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4264 return 1;
4265
4266 sv = cli_find_server(appctx, args[2]);
4267 if (!sv)
4268 return 1;
4269
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004270 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004271 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004272 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004273 return 1;
4274}
4275
Willy Tarreau46b7f532018-08-21 11:54:26 +02004276/* parse a "disable server" command. It always returns 1.
4277 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004278 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004279 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004280static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004281{
4282 struct server *sv;
4283
4284 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4285 return 1;
4286
4287 sv = cli_find_server(appctx, args[2]);
4288 if (!sv)
4289 return 1;
4290
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004291 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004292 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004293 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004294 return 1;
4295}
4296
Willy Tarreau46b7f532018-08-21 11:54:26 +02004297/* parse a "enable agent" command. It always returns 1.
4298 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004299 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004300 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004301static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004302{
4303 struct server *sv;
4304
4305 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4306 return 1;
4307
4308 sv = cli_find_server(appctx, args[2]);
4309 if (!sv)
4310 return 1;
4311
Willy Tarreau9d008692019-08-09 11:21:01 +02004312 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4313 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004314
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004315 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004316 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004317 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004318 return 1;
4319}
4320
Willy Tarreau46b7f532018-08-21 11:54:26 +02004321/* parse a "enable health" command. It always returns 1.
4322 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004323 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004324 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004325static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004326{
4327 struct server *sv;
4328
4329 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4330 return 1;
4331
4332 sv = cli_find_server(appctx, args[2]);
4333 if (!sv)
4334 return 1;
4335
Amaury Denoyellee636a112021-09-21 10:29:09 +02004336 if (!(sv->check.state & CHK_ST_CONFIGURED))
4337 return cli_err(appctx, "Health check was not configured on this server, cannot enable.\n");
4338
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004339 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004340 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004341 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004342 return 1;
4343}
4344
Willy Tarreau46b7f532018-08-21 11:54:26 +02004345/* parse a "enable server" command. It always returns 1.
4346 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004347 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004348 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004349static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004350{
4351 struct server *sv;
4352
4353 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4354 return 1;
4355
4356 sv = cli_find_server(appctx, args[2]);
4357 if (!sv)
4358 return 1;
4359
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004360 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004361 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004362 if (!(sv->flags & SRV_F_COOKIESET)
4363 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4364 sv->cookie)
4365 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004366 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004367 return 1;
4368}
4369
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004370/* Allocates data structure related to load balancing for the server <sv>. It
4371 * is only required for dynamic servers.
4372 *
4373 * At the moment, the server lock is not used as this function is only called
4374 * for a dynamic server not yet registered.
4375 *
4376 * Returns 1 on success, 0 on allocation failure.
4377 */
4378static int srv_alloc_lb(struct server *sv, struct proxy *be)
4379{
4380 int node;
4381
4382 sv->lb_tree = (sv->flags & SRV_F_BACKUP) ?
4383 &be->lbprm.chash.bck : &be->lbprm.chash.act;
4384 sv->lb_nodes_tot = sv->uweight * BE_WEIGHT_SCALE;
4385 sv->lb_nodes_now = 0;
4386
Willy Tarreaudcb121f2021-04-20 11:37:45 +02004387 if (((be->lbprm.algo & (BE_LB_KIND | BE_LB_PARM)) == (BE_LB_KIND_RR | BE_LB_RR_RANDOM)) ||
4388 ((be->lbprm.algo & (BE_LB_KIND | BE_LB_HASH_TYPE)) == (BE_LB_KIND_HI | BE_LB_HASH_CONS))) {
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004389 sv->lb_nodes = calloc(sv->lb_nodes_tot, sizeof(*sv->lb_nodes));
4390
4391 if (!sv->lb_nodes)
4392 return 0;
4393
4394 for (node = 0; node < sv->lb_nodes_tot; node++) {
4395 sv->lb_nodes[node].server = sv;
4396 sv->lb_nodes[node].node.key = full_hash(sv->puid * SRV_EWGHT_RANGE + node);
4397 }
4398 }
4399
4400 return 1;
4401}
4402
4403/* Parse a "add server" command
4404 * Returns 0 if the server has been successfully initialized, 1 on failure.
4405 */
4406static int cli_parse_add_server(char **args, char *payload, struct appctx *appctx, void *private)
4407{
4408 struct proxy *be;
4409 struct server *srv;
4410 char *be_name, *sv_name;
4411 char *errmsg = NULL;
4412 int errcode, argc;
Amaury Denoyelle12173562021-06-09 09:58:47 +02004413 int next_id, i;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004414 const int parse_flags = SRV_PARSE_DYNAMIC|SRV_PARSE_PARSE_ADDR;
4415
4416 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4417 return 1;
4418
4419 ++args;
4420
4421 sv_name = be_name = args[1];
4422 /* split backend/server arg */
4423 while (*sv_name && *(++sv_name)) {
4424 if (*sv_name == '/') {
4425 *sv_name = '\0';
4426 ++sv_name;
4427 break;
4428 }
4429 }
4430
4431 if (!*sv_name)
4432 return cli_err(appctx, "Require 'backend/server'.");
4433
Amaury Denoyellecece9182021-04-20 17:09:08 +02004434 be = proxy_be_by_name(be_name);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004435 if (!be)
4436 return cli_err(appctx, "No such backend.");
4437
4438 if (!(be->lbprm.algo & BE_LB_PROP_DYN)) {
Amaury Denoyelleeafd7012021-04-29 14:59:42 +02004439 cli_err(appctx, "Backend must use a dynamic load balancing to support dynamic servers.");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004440 return 1;
4441 }
4442
Amaury Denoyelled50d4bf2021-06-10 15:26:44 +02004443 /* At this point, some operations might not be thread-safe anymore. This
4444 * might be the case for parsing handlers which were designed to run
4445 * only at the starting stage on single-thread mode.
4446 *
4447 * Activate thread isolation to ensure thread-safety.
4448 */
4449 thread_isolate();
4450
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004451 args[1] = sv_name;
4452 errcode = _srv_parse_init(&srv, args, &argc, be, parse_flags, &errmsg);
Amaury Denoyellee3c55c22021-08-02 15:50:00 +02004453 if (srv)
4454 srv_use_dynsrv(srv);
4455
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004456 if (errcode) {
4457 if (errmsg)
4458 cli_dynerr(appctx, errmsg);
4459 goto out;
4460 }
4461
4462 while (*args[argc]) {
4463 errcode = _srv_parse_kw(srv, args, &argc, be, parse_flags, &errmsg);
4464
4465 if (errcode) {
4466 if (errmsg)
4467 cli_dynerr(appctx, errmsg);
4468 goto out;
4469 }
4470 }
4471
4472 _srv_parse_finalize(args, argc, srv, be, parse_flags, &errmsg);
4473 if (errmsg) {
4474 cli_dynerr(appctx, errmsg);
4475 goto out;
4476 }
4477
Amaury Denoyellee9bb7fb2021-06-10 17:34:10 +02004478 /* A dynamic server does not currently support resolution.
4479 *
4480 * Initialize it explicitly to the "none" method to ensure no
4481 * resolution will ever be executed.
4482 */
4483 srv->init_addr_methods = SRV_IADDR_NONE;
4484
Amaury Denoyelle30467232021-03-12 18:03:27 +01004485 if (srv->mux_proto) {
4486 if (!conn_get_best_mux_entry(srv->mux_proto->token, PROTO_SIDE_BE, be->mode)) {
4487 cli_err(appctx, "MUX protocol is not usable for server.");
4488 goto out;
4489 }
4490 }
4491
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004492 srv->per_thr = calloc(global.nbthread, sizeof(*srv->per_thr));
4493 if (!srv->per_thr) {
4494 cli_err(appctx, "failed to allocate per-thread lists for server.");
4495 goto out;
4496 }
4497
4498 for (i = 0; i < global.nbthread; i++) {
4499 srv->per_thr[i].idle_conns = EB_ROOT;
4500 srv->per_thr[i].safe_conns = EB_ROOT;
4501 srv->per_thr[i].avail_conns = EB_ROOT;
4502 MT_LIST_INIT(&srv->per_thr[i].streams);
4503 }
4504
4505 if (srv->max_idle_conns != 0) {
4506 srv->curr_idle_thr = calloc(global.nbthread, sizeof(*srv->curr_idle_thr));
4507 if (!srv->curr_idle_thr) {
4508 cli_err(appctx, "failed to allocate counters for server.");
4509 goto out;
4510 }
4511 }
4512
4513 if (!srv_alloc_lb(srv, be)) {
4514 cli_err(appctx, "Failed to initialize load-balancing data.");
4515 goto out;
4516 }
4517
4518 if (!stats_allocate_proxy_counters_internal(&srv->extra_counters,
4519 COUNTERS_SV,
4520 STATS_PX_CAP_SRV)) {
4521 cli_err(appctx, "failed to allocate extra counters for server.");
4522 goto out;
4523 }
4524
Amaury Denoyelled50d4bf2021-06-10 15:26:44 +02004525 /* Attach the server to the end of the proxy linked list. Note that this
4526 * operation is not thread-safe so this is executed under thread
4527 * isolation.
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004528 *
Amaury Denoyelled50d4bf2021-06-10 15:26:44 +02004529 * If a server with the same name is found, reject the new one.
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004530 */
Amaury Denoyellecece9182021-04-20 17:09:08 +02004531
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004532 /* TODO use a double-linked list for px->srv */
4533 if (be->srv) {
Amaury Denoyellecece9182021-04-20 17:09:08 +02004534 struct server *next = be->srv;
4535
4536 while (1) {
4537 /* check for duplicate server */
4538 if (!strcmp(srv->id, next->id)) {
Amaury Denoyellecece9182021-04-20 17:09:08 +02004539 cli_err(appctx, "Already exists a server with the same name in backend.");
4540 goto out;
4541 }
4542
4543 if (!next->next)
4544 break;
4545
4546 next = next->next;
4547 }
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004548
4549 next->next = srv;
4550 }
4551 else {
4552 srv->next = be->srv;
4553 be->srv = srv;
4554 }
Amaury Denoyellecece9182021-04-20 17:09:08 +02004555
Amaury Denoyelle12173562021-06-09 09:58:47 +02004556 /* generate the server id if not manually specified */
4557 if (!srv->puid) {
4558 next_id = get_next_id(&be->conf.used_server_id, 1);
4559 if (!next_id) {
4560 ha_alert("Cannot attach server : no id left in proxy\n");
4561 goto out;
4562 }
4563
4564 srv->conf.id.key = srv->puid = next_id;
4565 srv->conf.name.key = srv->id;
4566 }
4567
4568 /* insert the server in the backend trees */
Amaury Denoyellef88af882021-06-08 17:00:20 +02004569 eb32_insert(&be->conf.used_server_id, &srv->conf.id);
4570 ebis_insert(&be->conf.used_server_name, &srv->conf.name);
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +02004571 ebis_insert(&be->used_server_addr, &srv->addr_node);
Amaury Denoyelle12173562021-06-09 09:58:47 +02004572
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004573 thread_release();
4574
Amaury Denoyelled38e7fa2021-04-20 18:35:19 +02004575 ha_notice("New server %s/%s registered.\n", be->id, srv->id);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004576 cli_msg(appctx, LOG_INFO, "New server registered.");
4577
4578 return 0;
4579
4580out:
Amaury Denoyelledb130872021-08-04 11:20:05 +02004581 if (srv) {
4582 /* remove the server from the proxy linked list */
4583 if (be->srv == srv) {
4584 be->srv = srv->next;
4585 }
4586 else {
4587 struct server *prev;
4588 for (prev = be->srv; prev && prev->next != srv; prev = prev->next)
4589 ;
4590 if (prev)
4591 prev->next = srv->next;
4592 }
4593
4594 }
4595
Amaury Denoyelled50d4bf2021-06-10 15:26:44 +02004596 thread_release();
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004597 if (srv)
4598 free_server(srv);
4599 return 1;
4600}
4601
Amaury Denoyellee5580432021-04-15 14:41:20 +02004602/* Parse a "del server" command
4603 * Returns 0 if the server has been successfully initialized, 1 on failure.
4604 */
4605static int cli_parse_delete_server(char **args, char *payload, struct appctx *appctx, void *private)
4606{
4607 struct proxy *be;
4608 struct server *srv;
4609 char *be_name, *sv_name;
4610
4611 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4612 return 1;
4613
4614 ++args;
4615
4616 sv_name = be_name = args[1];
4617 /* split backend/server arg */
4618 while (*sv_name && *(++sv_name)) {
4619 if (*sv_name == '/') {
4620 *sv_name = '\0';
4621 ++sv_name;
4622 break;
4623 }
4624 }
4625
4626 if (!*sv_name)
4627 return cli_err(appctx, "Require 'backend/server'.");
4628
4629 /* The proxy servers list is currently not protected by a lock so this
4630 * requires thread isolation.
4631 */
4632
4633 /* WARNING there is maybe a potential violation of the thread isolation
4634 * mechanism by the pool allocator. The allocator marks the thread as
4635 * harmless before the allocation, but a processing outside of it could
4636 * relies on a particular server triggered at the same time by a
4637 * 'delete server'. Currently, it is unknown if such case is present in
4638 * the current code. If it happens to be, the thread isolation
4639 * mechanism should be improved, maybe with a differentiation between
4640 * read and read+write safe sections.
4641 */
4642 thread_isolate();
4643
4644 get_backend_server(be_name, sv_name, &be, &srv);
4645 if (!be) {
4646 cli_err(appctx, "No such backend.");
4647 goto out;
4648 }
4649
4650 if (!srv) {
4651 cli_err(appctx, "No such server.");
4652 goto out;
4653 }
4654
4655 if (!(srv->flags & SRV_F_DYNAMIC)) {
4656 cli_err(appctx, "Only servers added at runtime via <add server> CLI cmd can be deleted.");
4657 goto out;
4658 }
4659
4660 /* Only servers in maintenance can be deleted. This ensures that the
4661 * server is not present anymore in the lb structures (through
4662 * lbprm.set_server_status_down).
4663 */
4664 if (!(srv->cur_admin & SRV_ADMF_MAINT)) {
4665 cli_err(appctx, "Only servers in maintenance mode can be deleted.");
4666 goto out;
4667 }
4668
4669 /* Ensure that there is no active/idle/pending connection on the server.
4670 *
4671 * TODO idle connections should not prevent server deletion. A proper
4672 * cleanup function should be implemented to be used here.
4673 */
4674 if (srv->cur_sess || srv->curr_idle_conns ||
4675 !eb_is_empty(&srv->pendconns)) {
4676 cli_err(appctx, "Server still has connections attached to it, cannot remove it.");
4677 goto out;
4678 }
4679
4680 /* TODO remove server for check list once 'check' will be implemented for
4681 * dynamic servers
4682 */
4683
4684 /* detach the server from the proxy linked list
4685 * The proxy servers list is currently not protected by a lock, so this
4686 * requires thread_isolate/release.
4687 */
4688
4689 /* be->srv cannot be empty since we have already found the server with
4690 * get_backend_server */
4691 BUG_ON(!be->srv);
4692 if (be->srv == srv) {
4693 be->srv = srv->next;
4694 }
4695 else {
4696 struct server *next;
Amaury Denoyelled6b4b6d2021-04-21 11:50:26 +02004697 for (next = be->srv; srv != next->next; next = next->next) {
4698 /* srv cannot be not found since we have already found
4699 * it with get_backend_server */
4700 BUG_ON(!next);
4701 }
Amaury Denoyellee5580432021-04-15 14:41:20 +02004702
Amaury Denoyellee5580432021-04-15 14:41:20 +02004703 next->next = srv->next;
4704 }
4705
4706 /* remove srv from addr_node tree */
Amaury Denoyelle40ad9f42021-06-09 16:00:43 +02004707 eb32_delete(&srv->conf.id);
4708 ebpt_delete(&srv->conf.name);
Amaury Denoyellee5580432021-04-15 14:41:20 +02004709 ebpt_delete(&srv->addr_node);
4710
4711 /* remove srv from idle_node tree for idle conn cleanup */
4712 eb32_delete(&srv->idle_node);
4713
4714 thread_release();
4715
4716 ha_notice("Server %s/%s deleted.\n", be->id, srv->id);
4717 free_server(srv);
4718
4719 cli_msg(appctx, LOG_INFO, "Server deleted.");
4720
4721 return 0;
4722
4723out:
4724 thread_release();
4725
4726 return 1;
4727}
4728
William Lallemand222baf22016-11-19 02:00:33 +01004729/* register cli keywords */
4730static struct cli_kw_list cli_kws = {{ },{
Amaury Denoyellec59faa52021-08-03 18:05:37 +02004731 { { "disable", "agent", NULL }, "disable agent : disable agent checks", cli_parse_disable_agent, NULL },
4732 { { "disable", "health", NULL }, "disable health : disable health checks", cli_parse_disable_health, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02004733 { { "disable", "server", NULL }, "disable server (DEPRECATED) : disable a server for maintenance (use 'set server' instead)", cli_parse_disable_server, NULL },
Amaury Denoyellec59faa52021-08-03 18:05:37 +02004734 { { "enable", "agent", NULL }, "enable agent : enable agent checks", cli_parse_enable_agent, NULL },
4735 { { "enable", "health", NULL }, "enable health : enable health checks", cli_parse_enable_health, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02004736 { { "enable", "server", NULL }, "enable server (DEPRECATED) : enable a disabled server (use 'set server' instead)", cli_parse_enable_server, NULL },
4737 { { "set", "maxconn", "server", NULL }, "set maxconn server <bk>/<srv> : change a server's maxconn setting", cli_parse_set_maxconn_server, NULL },
4738 { { "set", "server", NULL }, "set server <bk>/<srv> [opts] : change a server's state, weight, address or ssl", cli_parse_set_server },
4739 { { "get", "weight", NULL }, "get weight <bk>/<srv> : report a server's current weight", cli_parse_get_weight },
4740 { { "set", "weight", NULL }, "set weight <bk>/<srv> (DEPRECATED) : change a server's weight (use 'set server' instead)", cli_parse_set_weight },
4741 { { "add", "server", NULL }, "add server <bk>/<srv> : create a new server (EXPERIMENTAL)", cli_parse_add_server, NULL, NULL, NULL, ACCESS_EXPERIMENTAL },
4742 { { "del", "server", NULL }, "del server <bk>/<srv> : remove a dynamically added server (EXPERIMENTAL)", cli_parse_delete_server, NULL, NULL, NULL, ACCESS_EXPERIMENTAL },
William Lallemand222baf22016-11-19 02:00:33 +01004743 {{},}
4744}};
4745
Willy Tarreau0108d902018-11-25 19:14:37 +01004746INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004747
Emeric Brun64cc49c2017-10-03 14:46:45 +02004748/*
4749 * This function applies server's status changes, it is
4750 * is designed to be called asynchronously.
4751 *
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004752 * Must be called with the server lock held. This may also be called at init
4753 * time as the result of parsing the state file, in which case no lock will be
4754 * held, and the server's warmup task can be null.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004755 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004756static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004757{
4758 struct check *check = &s->check;
4759 int xferred;
4760 struct proxy *px = s->proxy;
4761 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4762 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
4763 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004764 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004765
Emeric Brun64cc49c2017-10-03 14:46:45 +02004766 /* If currently main is not set we try to apply pending state changes */
4767 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4768 int next_admin;
4769
4770 /* Backup next admin */
4771 next_admin = s->next_admin;
4772
4773 /* restore current admin state */
4774 s->next_admin = s->cur_admin;
4775
4776 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
4777 s->last_change = now.tv_sec;
4778 if (s->proxy->lbprm.set_server_status_down)
4779 s->proxy->lbprm.set_server_status_down(s);
4780
4781 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4782 srv_shutdown_streams(s, SF_ERR_DOWN);
4783
4784 /* we might have streams queued on this server and waiting for
4785 * a connection. Those which are redispatchable will be queued
4786 * to another server or to the proxy itself.
4787 */
4788 xferred = pendconn_redistribute(s);
4789
4790 tmptrash = alloc_trash_chunk();
4791 if (tmptrash) {
4792 chunk_printf(tmptrash,
4793 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4794 s->proxy->id, s->id);
4795
Emeric Brun5a133512017-10-19 14:42:30 +02004796 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004797 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004798
4799 /* we don't send an alert if the server was previously paused */
4800 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004801 send_log(s->proxy, log_level, "%s.\n",
4802 tmptrash->area);
4803 send_email_alert(s, log_level, "%s",
4804 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004805 free_trash_chunk(tmptrash);
4806 tmptrash = NULL;
4807 }
4808 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4809 set_backend_down(s->proxy);
4810
4811 s->counters.down_trans++;
4812 }
4813 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
4814 s->last_change = now.tv_sec;
4815 if (s->proxy->lbprm.set_server_status_down)
4816 s->proxy->lbprm.set_server_status_down(s);
4817
4818 /* we might have streams queued on this server and waiting for
4819 * a connection. Those which are redispatchable will be queued
4820 * to another server or to the proxy itself.
4821 */
4822 xferred = pendconn_redistribute(s);
4823
4824 tmptrash = alloc_trash_chunk();
4825 if (tmptrash) {
4826 chunk_printf(tmptrash,
4827 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4828 s->proxy->id, s->id);
4829
Emeric Brun5a133512017-10-19 14:42:30 +02004830 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004831
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004832 ha_warning("%s.\n", tmptrash->area);
4833 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4834 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004835 free_trash_chunk(tmptrash);
4836 tmptrash = NULL;
4837 }
4838
4839 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4840 set_backend_down(s->proxy);
4841 }
4842 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4843 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
4844 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
4845 if (s->proxy->last_change < now.tv_sec) // ignore negative times
4846 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
4847 s->proxy->last_change = now.tv_sec;
4848 }
4849
Amaury Denoyellefe2bf092020-10-29 15:59:04 +01004850 if (s->cur_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
Emeric Brun64cc49c2017-10-03 14:46:45 +02004851 s->down_time += now.tv_sec - s->last_change;
4852
4853 s->last_change = now.tv_sec;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004854 if (s->next_state == SRV_ST_STARTING && s->warmup)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004855 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4856
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004857 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004858 /* now propagate the status change to any LB algorithms */
4859 if (px->lbprm.update_server_eweight)
4860 px->lbprm.update_server_eweight(s);
4861 else if (srv_willbe_usable(s)) {
4862 if (px->lbprm.set_server_status_up)
4863 px->lbprm.set_server_status_up(s);
4864 }
4865 else {
4866 if (px->lbprm.set_server_status_down)
4867 px->lbprm.set_server_status_down(s);
4868 }
4869
4870 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4871 * and it's not a backup server and its effective weight is > 0,
4872 * then it can accept new connections, so we shut down all streams
4873 * on all backup servers.
4874 */
4875 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
4876 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
4877 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
4878
4879 /* check if we can handle some connections queued at the proxy. We
4880 * will take as many as we can handle.
4881 */
4882 xferred = pendconn_grab_from_px(s);
4883
4884 tmptrash = alloc_trash_chunk();
4885 if (tmptrash) {
4886 chunk_printf(tmptrash,
4887 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
4888 s->proxy->id, s->id);
4889
Emeric Brun5a133512017-10-19 14:42:30 +02004890 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004891 ha_warning("%s.\n", tmptrash->area);
4892 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4893 tmptrash->area);
4894 send_email_alert(s, LOG_NOTICE, "%s",
4895 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004896 free_trash_chunk(tmptrash);
4897 tmptrash = NULL;
4898 }
4899
4900 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4901 set_backend_down(s->proxy);
4902 }
4903 else if (s->cur_eweight != s->next_eweight) {
4904 /* now propagate the status change to any LB algorithms */
4905 if (px->lbprm.update_server_eweight)
4906 px->lbprm.update_server_eweight(s);
4907 else if (srv_willbe_usable(s)) {
4908 if (px->lbprm.set_server_status_up)
4909 px->lbprm.set_server_status_up(s);
4910 }
4911 else {
4912 if (px->lbprm.set_server_status_down)
4913 px->lbprm.set_server_status_down(s);
4914 }
4915
4916 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4917 set_backend_down(s->proxy);
4918 }
4919
4920 s->next_admin = next_admin;
4921 }
4922
Emeric Brun5a133512017-10-19 14:42:30 +02004923 /* reset operational state change */
4924 *s->op_st_chg.reason = 0;
4925 s->op_st_chg.status = s->op_st_chg.code = -1;
4926 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004927
4928 /* Now we try to apply pending admin changes */
4929
4930 /* Maintenance must also disable health checks */
4931 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
4932 if (s->check.state & CHK_ST_ENABLED) {
4933 s->check.state |= CHK_ST_PAUSED;
4934 check->health = 0;
4935 }
4936
4937 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02004938 tmptrash = alloc_trash_chunk();
4939 if (tmptrash) {
4940 chunk_printf(tmptrash,
4941 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
4942 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
4943 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02004944
Olivier Houchard796a2b32017-10-24 17:42:47 +02004945 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02004946
Olivier Houchard796a2b32017-10-24 17:42:47 +02004947 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004948 ha_warning("%s.\n", tmptrash->area);
4949 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4950 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02004951 }
4952 free_trash_chunk(tmptrash);
4953 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004954 }
Emeric Brun8f298292017-12-06 16:47:17 +01004955 /* commit new admin status */
4956
4957 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004958 }
4959 else { /* server was still running */
4960 check->health = 0; /* failure */
4961 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01004962
4963 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004964 if (s->proxy->lbprm.set_server_status_down)
4965 s->proxy->lbprm.set_server_status_down(s);
4966
Emeric Brun64cc49c2017-10-03 14:46:45 +02004967 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4968 srv_shutdown_streams(s, SF_ERR_DOWN);
4969
William Dauchy6318d332020-05-02 21:52:36 +02004970 /* force connection cleanup on the given server */
4971 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004972 /* we might have streams queued on this server and waiting for
4973 * a connection. Those which are redispatchable will be queued
4974 * to another server or to the proxy itself.
4975 */
4976 xferred = pendconn_redistribute(s);
4977
4978 tmptrash = alloc_trash_chunk();
4979 if (tmptrash) {
4980 chunk_printf(tmptrash,
4981 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
4982 s->flags & SRV_F_BACKUP ? "Backup " : "",
4983 s->proxy->id, s->id,
4984 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
4985
4986 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
4987
4988 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004989 ha_warning("%s.\n", tmptrash->area);
4990 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
4991 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004992 }
4993 free_trash_chunk(tmptrash);
4994 tmptrash = NULL;
4995 }
4996 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
4997 set_backend_down(s->proxy);
4998
4999 s->counters.down_trans++;
5000 }
5001 }
5002 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
5003 /* OK here we're leaving maintenance, we have many things to check,
5004 * because the server might possibly be coming back up depending on
5005 * its state. In practice, leaving maintenance means that we should
5006 * immediately turn to UP (more or less the slowstart) under the
5007 * following conditions :
5008 * - server is neither checked nor tracked
5009 * - server tracks another server which is not checked
5010 * - server tracks another server which is already up
5011 * Which sums up as something simpler :
5012 * "either the tracking server is up or the server's checks are disabled
5013 * or up". Otherwise we only re-enable health checks. There's a special
5014 * case associated to the stopping state which can be inherited. Note
5015 * that the server might still be in drain mode, which is naturally dealt
5016 * with by the lower level functions.
5017 */
5018
5019 if (s->check.state & CHK_ST_ENABLED) {
5020 s->check.state &= ~CHK_ST_PAUSED;
5021 check->health = check->rise; /* start OK but check immediately */
5022 }
5023
5024 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
5025 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
5026 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
5027 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
5028 s->next_state = SRV_ST_STOPPING;
5029 }
5030 else {
Willy Tarreauf79c4cf2021-08-04 19:35:13 +02005031 s->last_change = now.tv_sec;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005032 s->next_state = SRV_ST_STARTING;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005033 if (s->slowstart > 0) {
5034 if (s->warmup)
5035 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5036 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005037 else
5038 s->next_state = SRV_ST_RUNNING;
5039 }
5040
5041 }
5042
5043 tmptrash = alloc_trash_chunk();
5044 if (tmptrash) {
5045 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5046 chunk_printf(tmptrash,
5047 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
5048 s->flags & SRV_F_BACKUP ? "Backup " : "",
5049 s->proxy->id, s->id,
5050 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5051 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5052 }
5053 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5054 chunk_printf(tmptrash,
5055 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
5056 s->flags & SRV_F_BACKUP ? "Backup " : "",
5057 s->proxy->id, s->id, s->hostname,
5058 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5059 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5060 }
5061 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5062 chunk_printf(tmptrash,
5063 "%sServer %s/%s is %s/%s (leaving maintenance)",
5064 s->flags & SRV_F_BACKUP ? "Backup " : "",
5065 s->proxy->id, s->id,
5066 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5067 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5068 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005069 ha_warning("%s.\n", tmptrash->area);
5070 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5071 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005072 free_trash_chunk(tmptrash);
5073 tmptrash = NULL;
5074 }
5075
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005076 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005077 /* now propagate the status change to any LB algorithms */
5078 if (px->lbprm.update_server_eweight)
5079 px->lbprm.update_server_eweight(s);
5080 else if (srv_willbe_usable(s)) {
5081 if (px->lbprm.set_server_status_up)
5082 px->lbprm.set_server_status_up(s);
5083 }
5084 else {
5085 if (px->lbprm.set_server_status_down)
5086 px->lbprm.set_server_status_down(s);
5087 }
5088
5089 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5090 set_backend_down(s->proxy);
Willy Tarreauf79c4cf2021-08-04 19:35:13 +02005091 else if (!prev_srv_count && (s->proxy->srv_bck || s->proxy->srv_act))
5092 s->proxy->last_change = now.tv_sec;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005093
Willy Tarreau6a78e612018-08-07 10:14:53 +02005094 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5095 * and it's not a backup server and its effective weight is > 0,
5096 * then it can accept new connections, so we shut down all streams
5097 * on all backup servers.
5098 */
5099 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5100 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5101 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5102
5103 /* check if we can handle some connections queued at the proxy. We
5104 * will take as many as we can handle.
5105 */
5106 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005107 }
5108 else if (s->next_admin & SRV_ADMF_MAINT) {
5109 /* remaining in maintenance mode, let's inform precisely about the
5110 * situation.
5111 */
5112 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5113 tmptrash = alloc_trash_chunk();
5114 if (tmptrash) {
5115 chunk_printf(tmptrash,
5116 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5117 s->flags & SRV_F_BACKUP ? "Backup " : "",
5118 s->proxy->id, s->id);
5119
5120 if (s->track) /* normally it's mandatory here */
5121 chunk_appendf(tmptrash, " via %s/%s",
5122 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005123 ha_warning("%s.\n", tmptrash->area);
5124 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5125 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005126 free_trash_chunk(tmptrash);
5127 tmptrash = NULL;
5128 }
5129 }
5130 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5131 tmptrash = alloc_trash_chunk();
5132 if (tmptrash) {
5133 chunk_printf(tmptrash,
5134 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5135 s->flags & SRV_F_BACKUP ? "Backup " : "",
5136 s->proxy->id, s->id, s->hostname);
5137
5138 if (s->track) /* normally it's mandatory here */
5139 chunk_appendf(tmptrash, " via %s/%s",
5140 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005141 ha_warning("%s.\n", tmptrash->area);
5142 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5143 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005144 free_trash_chunk(tmptrash);
5145 tmptrash = NULL;
5146 }
5147 }
5148 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5149 tmptrash = alloc_trash_chunk();
5150 if (tmptrash) {
5151 chunk_printf(tmptrash,
5152 "%sServer %s/%s remains in forced maintenance",
5153 s->flags & SRV_F_BACKUP ? "Backup " : "",
5154 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005155 ha_warning("%s.\n", tmptrash->area);
5156 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5157 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005158 free_trash_chunk(tmptrash);
5159 tmptrash = NULL;
5160 }
5161 }
5162 /* don't report anything when leaving drain mode and remaining in maintenance */
5163
5164 s->cur_admin = s->next_admin;
5165 }
5166
5167 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5168 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5169 /* drain state is applied only if not yet in maint */
5170
5171 s->last_change = now.tv_sec;
5172 if (px->lbprm.set_server_status_down)
5173 px->lbprm.set_server_status_down(s);
5174
5175 /* we might have streams queued on this server and waiting for
5176 * a connection. Those which are redispatchable will be queued
5177 * to another server or to the proxy itself.
5178 */
5179 xferred = pendconn_redistribute(s);
5180
5181 tmptrash = alloc_trash_chunk();
5182 if (tmptrash) {
5183 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5184 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5185 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5186
5187 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5188
5189 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005190 ha_warning("%s.\n", tmptrash->area);
5191 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5192 tmptrash->area);
5193 send_email_alert(s, LOG_NOTICE, "%s",
5194 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005195 }
5196 free_trash_chunk(tmptrash);
5197 tmptrash = NULL;
5198 }
5199
5200 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5201 set_backend_down(s->proxy);
5202 }
5203 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5204 /* OK completely leaving drain mode */
5205 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5206 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5207 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5208 s->proxy->last_change = now.tv_sec;
5209 }
5210
5211 if (s->last_change < now.tv_sec) // ignore negative times
5212 s->down_time += now.tv_sec - s->last_change;
5213 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005214 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005215
5216 tmptrash = alloc_trash_chunk();
5217 if (tmptrash) {
5218 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5219 chunk_printf(tmptrash,
5220 "%sServer %s/%s is %s (leaving forced drain)",
5221 s->flags & SRV_F_BACKUP ? "Backup " : "",
5222 s->proxy->id, s->id,
5223 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5224 }
5225 else {
5226 chunk_printf(tmptrash,
5227 "%sServer %s/%s is %s (leaving drain)",
5228 s->flags & SRV_F_BACKUP ? "Backup " : "",
5229 s->proxy->id, s->id,
5230 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5231 if (s->track) /* normally it's mandatory here */
5232 chunk_appendf(tmptrash, " via %s/%s",
5233 s->track->proxy->id, s->track->id);
5234 }
5235
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005236 ha_warning("%s.\n", tmptrash->area);
5237 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5238 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005239 free_trash_chunk(tmptrash);
5240 tmptrash = NULL;
5241 }
5242
5243 /* now propagate the status change to any LB algorithms */
5244 if (px->lbprm.update_server_eweight)
5245 px->lbprm.update_server_eweight(s);
5246 else if (srv_willbe_usable(s)) {
5247 if (px->lbprm.set_server_status_up)
5248 px->lbprm.set_server_status_up(s);
5249 }
5250 else {
5251 if (px->lbprm.set_server_status_down)
5252 px->lbprm.set_server_status_down(s);
5253 }
5254 }
5255 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5256 /* remaining in drain mode after removing one of its flags */
5257
5258 tmptrash = alloc_trash_chunk();
5259 if (tmptrash) {
5260 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5261 chunk_printf(tmptrash,
5262 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5263 s->flags & SRV_F_BACKUP ? "Backup " : "",
5264 s->proxy->id, s->id);
5265
5266 if (s->track) /* normally it's mandatory here */
5267 chunk_appendf(tmptrash, " via %s/%s",
5268 s->track->proxy->id, s->track->id);
5269 }
5270 else {
5271 chunk_printf(tmptrash,
5272 "%sServer %s/%s remains in forced drain mode",
5273 s->flags & SRV_F_BACKUP ? "Backup " : "",
5274 s->proxy->id, s->id);
5275 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005276 ha_warning("%s.\n", tmptrash->area);
5277 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5278 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005279 free_trash_chunk(tmptrash);
5280 tmptrash = NULL;
5281 }
5282
5283 /* commit new admin status */
5284
5285 s->cur_admin = s->next_admin;
5286 }
5287 }
5288
5289 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005290 *s->adm_st_chg_cause = 0;
5291}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005292
Willy Tarreau144f84a2021-03-02 16:09:26 +01005293struct task *srv_cleanup_toremove_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005294{
5295 struct connection *conn;
5296
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005297 while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns,
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005298 struct connection *, toremove_list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005299 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005300 }
5301
5302 return task;
5303}
5304
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005305/* Move toremove_nb connections from idle_tree to toremove_list, -1 means
Olivier Houchardff1d0922020-06-29 20:15:59 +02005306 * moving them all.
5307 * Returns the number of connections moved.
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005308 *
5309 * Must be called with idle_conns_lock held.
Olivier Houchardff1d0922020-06-29 20:15:59 +02005310 */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005311static 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 +02005312{
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005313 struct eb_node *node, *next;
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005314 struct conn_hash_node *hash_node;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005315 int i = 0;
5316
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005317 node = eb_first(idle_tree);
5318 while (node) {
5319 next = eb_next(node);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005320 if (toremove_nb != -1 && i >= toremove_nb)
5321 break;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005322
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005323 hash_node = ebmb_entry(node, struct conn_hash_node, node);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005324 eb_delete(node);
Willy Tarreau2b718102021-04-21 07:32:39 +02005325 MT_LIST_APPEND(toremove_list, &hash_node->conn->toremove_list);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005326 i++;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005327
5328 node = next;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005329 }
5330 return i;
5331}
William Dauchy6318d332020-05-02 21:52:36 +02005332/* cleanup connections for a given server
5333 * might be useful when going on forced maintenance or live changing ip/port
5334 */
William Dauchy707ad322020-05-04 13:52:40 +02005335static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005336{
William Dauchy6318d332020-05-02 21:52:36 +02005337 int did_remove;
5338 int i;
William Dauchy6318d332020-05-02 21:52:36 +02005339
Amaury Denoyelle10d5c312021-01-06 14:28:51 +01005340 /* nothing to do if pool-max-conn is null */
5341 if (!srv->max_idle_conns)
5342 return;
5343
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005344 /* check all threads starting with ours */
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005345 for (i = tid;;) {
William Dauchy6318d332020-05-02 21:52:36 +02005346 did_remove = 0;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005347 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005348 if (srv_migrate_conns_to_remove(&srv->per_thr[i].idle_conns, &idle_conns[i].toremove_conns, -1) > 0)
William Dauchy6318d332020-05-02 21:52:36 +02005349 did_remove = 1;
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005350 if (srv_migrate_conns_to_remove(&srv->per_thr[i].safe_conns, &idle_conns[i].toremove_conns, -1) > 0)
Olivier Houchardff1d0922020-06-29 20:15:59 +02005351 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005352 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
William Dauchy6318d332020-05-02 21:52:36 +02005353 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005354 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005355
5356 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5357 break;
William Dauchy6318d332020-05-02 21:52:36 +02005358 }
William Dauchy6318d332020-05-02 21:52:36 +02005359}
5360
Willy Tarreau144f84a2021-03-02 16:09:26 +01005361struct task *srv_cleanup_idle_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005362{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005363 struct server *srv;
5364 struct eb32_node *eb;
5365 int i;
5366 unsigned int next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005367
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005368 next_wakeup = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005369 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5370 while (1) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005371 int exceed_conns;
5372 int to_kill;
5373 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005374
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005375 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5376 if (!eb) {
5377 /* we might have reached the end of the tree, typically because
5378 * <now_ms> is in the first half and we're first scanning the last
5379 * half. Let's loop back to the beginning of the tree now.
5380 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005381
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005382 eb = eb32_first(&idle_conn_srv);
5383 if (likely(!eb))
5384 break;
5385 }
5386 if (tick_is_lt(now_ms, eb->key)) {
5387 /* timer not expired yet, revisit it later */
5388 next_wakeup = eb->key;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005389 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005390 }
5391 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005392
5393 /* Calculate how many idle connections we want to kill :
5394 * we want to remove half the difference between the total
5395 * of established connections (used or idle) and the max
5396 * number of used connections.
5397 */
5398 curr_idle = srv->curr_idle_conns;
5399 if (curr_idle == 0)
5400 goto remove;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005401 exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005402 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005403
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005404 srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns) / 2;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005405 if (srv->est_need_conns < srv->max_used_conns)
5406 srv->est_need_conns = srv->max_used_conns;
5407
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005408 srv->max_used_conns = srv->curr_used_conns;
5409
Willy Tarreau18ed7892020-07-02 19:05:30 +02005410 if (exceed_conns <= 0)
5411 goto remove;
5412
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005413 /* check all threads starting with ours */
5414 for (i = tid;;) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005415 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005416 int j;
5417 int did_remove = 0;
5418
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005419 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5420 curr_idle + 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005421
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005422 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005423 j = srv_migrate_conns_to_remove(&srv->per_thr[i].idle_conns, &idle_conns[i].toremove_conns, max_conn);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005424 if (j > 0)
5425 did_remove = 1;
5426 if (max_conn - j > 0 &&
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005427 srv_migrate_conns_to_remove(&srv->per_thr[i].safe_conns, &idle_conns[i].toremove_conns, max_conn - j) > 0)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005428 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005429 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005430
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005431 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005432 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005433
5434 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5435 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005436 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005437remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005438 eb32_delete(&srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005439
5440 if (srv->curr_idle_conns) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005441 /* There are still more idle connections, add the
5442 * server back in the tree.
5443 */
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005444 srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005445 eb32_insert(&idle_conn_srv, &srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005446 next_wakeup = tick_first(next_wakeup, srv->idle_node.key);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005447 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005448 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005449 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5450
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005451 task->expire = next_wakeup;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005452 return task;
5453}
Olivier Houchard88698d92019-04-16 19:07:22 +02005454
Amaury Denoyelle3109ccf2021-04-29 17:30:05 +02005455/* Close remaining idle connections. This functions is designed to be run on
5456 * process shutdown. This guarantees a proper socket shutdown to avoid
5457 * TIME_WAIT state. For a quick operation, only ctrl is closed, xprt stack is
5458 * bypassed.
5459 *
5460 * This function is not thread-safe so it must only be called via a global
5461 * deinit function.
5462 */
5463static void srv_close_idle_conns(struct server *srv)
5464{
5465 struct eb_root **cleaned_tree;
5466 int i;
5467
5468 for (i = 0; i < global.nbthread; ++i) {
5469 struct eb_root *conn_trees[] = {
5470 &srv->per_thr[i].idle_conns,
5471 &srv->per_thr[i].safe_conns,
5472 &srv->per_thr[i].avail_conns,
5473 NULL
5474 };
5475
5476 for (cleaned_tree = conn_trees; *cleaned_tree; ++cleaned_tree) {
5477 while (!eb_is_empty(*cleaned_tree)) {
5478 struct ebmb_node *node = ebmb_first(*cleaned_tree);
5479 struct conn_hash_node *conn_hash_node = ebmb_entry(node, struct conn_hash_node, node);
5480 struct connection *conn = conn_hash_node->conn;
5481
5482 if (conn->ctrl->ctrl_close)
5483 conn->ctrl->ctrl_close(conn);
5484 ebmb_delete(node);
5485 }
5486 }
5487 }
5488}
5489
5490REGISTER_SERVER_DEINIT(srv_close_idle_conns);
5491
Willy Tarreau76cc6992020-07-01 18:49:24 +02005492/* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */
5493static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01005494 const struct proxy *defpx, const char *file, int line,
Willy Tarreau76cc6992020-07-01 18:49:24 +02005495 char **err)
5496{
5497 if (too_many_args(1, args, err, NULL))
5498 return -1;
5499
5500 if (strcmp(args[1], "on") == 0)
5501 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
5502 else if (strcmp(args[1], "off") == 0)
5503 global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
5504 else {
5505 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
5506 return -1;
5507 }
5508 return 0;
5509}
5510
Olivier Houchard88698d92019-04-16 19:07:22 +02005511/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5512static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01005513 const struct proxy *defpx, const char *file, int line,
Olivier Houchard88698d92019-04-16 19:07:22 +02005514 char **err)
5515{
5516 int arg = -1;
5517
5518 if (too_many_args(1, args, err, NULL))
5519 return -1;
5520
5521 if (*(args[1]) != 0)
5522 arg = atoi(args[1]);
5523
5524 if (arg < 0 || arg > 100) {
5525 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5526 return -1;
5527 }
5528
5529 if (args[0][10] == 'h')
5530 global.tune.pool_high_ratio = arg;
5531 else
5532 global.tune.pool_low_ratio = arg;
5533 return 0;
5534}
5535
5536/* config keyword parsers */
5537static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau76cc6992020-07-01 18:49:24 +02005538 { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared },
Olivier Houchard88698d92019-04-16 19:07:22 +02005539 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5540 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5541 { 0, NULL, NULL }
5542}};
5543
5544INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5545
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005546/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005547 * Local variables:
5548 * c-indent-level: 8
5549 * c-basic-offset: 8
5550 * End:
5551 */