blob: 51ca0cdf3b9dd9447f8486db1984e1dc8aef09e1 [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 Tarreau260f3242021-10-06 18:30:04 +020019#include <import/ebmbtree.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 Tarreau5edca2f2022-05-27 09:25:10 +020040#include <haproxy/sc_strm.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020041#include <haproxy/server.h>
Amaury Denoyellef99f77a2021-03-08 17:13:32 +010042#include <haproxy/stats.h>
Willy Tarreaucb086c62022-05-27 09:47:12 +020043#include <haproxy/stconn.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020044#include <haproxy/stream.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>
Tim Duesterhusd5fc8fc2021-09-11 17:51:13 +020049#include <haproxy/xxhash.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020050
Baptiste Assmannda29fe22019-06-13 13:24:29 +020051
Willy Tarreau3ff577e2018-08-02 11:48:52 +020052static void srv_update_status(struct server *s);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +010053static int srv_apply_lastaddr(struct server *srv, int *err_code);
William Dauchy6318d332020-05-02 21:52:36 +020054static void srv_cleanup_connections(struct server *srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +020055
Amaury Denoyelle587b71e2021-03-10 16:36:02 +010056/* extra keywords used as value for other arguments. They are used as
57 * suggestions for mistyped words.
Willy Tarreau49c2b452021-03-12 09:58:04 +010058 */
Amaury Denoyelle587b71e2021-03-10 16:36:02 +010059static const char *extra_kw_list[] = {
60 "ipv4", "ipv6", "legacy", "octet-count",
Amaury Denoyelle3b89c112021-03-12 16:04:00 +010061 "fail-check", "sudden-death", "mark-down",
Willy Tarreau49c2b452021-03-12 09:58:04 +010062 NULL /* must be last */
63};
64
Willy Tarreau21faa912012-10-10 08:27:36 +020065/* List head of all known server keywords */
Willy Tarreauca1acd62022-03-29 15:02:44 +020066struct srv_kw_list srv_keywords = {
Willy Tarreau21faa912012-10-10 08:27:36 +020067 .list = LIST_HEAD_INIT(srv_keywords.list)
68};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020069
Willy Tarreauaf613e82020-06-05 08:40:51 +020070__decl_thread(HA_SPINLOCK_T idle_conn_srv_lock);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010071struct eb_root idle_conn_srv = EB_ROOT;
Willy Tarreau14015b82021-04-10 17:33:15 +020072struct task *idle_conn_task __read_mostly = NULL;
Willy Tarreau198e92a2021-03-05 10:23:32 +010073struct list servers_list = LIST_HEAD_INIT(servers_list);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010074
Frédéric Lécaille7da71292019-05-20 09:47:07 +020075/* The server names dictionary */
Thayne McCombs92149f92020-11-20 01:28:26 -070076struct dict server_key_dict = {
77 .name = "server keys",
Frédéric Lécaille7da71292019-05-20 09:47:07 +020078 .values = EB_ROOT_UNIQUE,
79};
80
Simon Hormana3608442013-11-01 16:46:15 +090081int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020082{
Amaury Denoyellee6ba7912020-10-29 15:59:05 +010083 if ((s->cur_state != SRV_ST_STOPPED) || s->last_change >= now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020084 return s->down_time;
85
86 return now.tv_sec - s->last_change + s->down_time;
87}
Willy Tarreaubaaee002006-06-26 02:48:02 +020088
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050089int srv_lastsession(const struct server *s)
90{
91 if (s->counters.last_sess)
92 return now.tv_sec - s->counters.last_sess;
93
94 return -1;
95}
96
Simon Horman4a741432013-02-23 15:35:38 +090097int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020098{
Simon Horman4a741432013-02-23 15:35:38 +090099 const struct server *s = check->server;
100
Willy Tarreauff5ae352013-12-11 20:36:34 +0100101 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +0900102 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100103
Emeric Brun52a91d32017-08-31 14:41:55 +0200104 if ((s->next_state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +0900105 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100106
Simon Horman4a741432013-02-23 15:35:38 +0900107 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100108}
109
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100110/*
111 * Check that we did not get a hash collision.
Willy Tarreau595e7672020-10-20 17:30:08 +0200112 * Unlikely, but it can happen. The server's proxy must be at least
113 * read-locked.
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100114 */
115static inline void srv_check_for_dup_dyncookie(struct server *s)
Olivier Houchard4e694042017-03-14 20:01:29 +0100116{
117 struct proxy *p = s->proxy;
118 struct server *tmpserv;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100119
120 for (tmpserv = p->srv; tmpserv != NULL;
121 tmpserv = tmpserv->next) {
122 if (tmpserv == s)
123 continue;
124 if (tmpserv->next_admin & SRV_ADMF_FMAINT)
125 continue;
126 if (tmpserv->cookie &&
127 strcmp(tmpserv->cookie, s->cookie) == 0) {
128 ha_warning("We generated two equal cookies for two different servers.\n"
129 "Please change the secret key for '%s'.\n",
130 s->proxy->id);
131 }
132 }
133
134}
135
Willy Tarreau46b7f532018-08-21 11:54:26 +0200136/*
Willy Tarreau595e7672020-10-20 17:30:08 +0200137 * Must be called with the server lock held, and will read-lock the proxy.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200138 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100139void srv_set_dyncookie(struct server *s)
140{
141 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100142 char *tmpbuf;
143 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100144 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100145 size_t buffer_len;
146 int addr_len;
147 int port;
148
Willy Tarreau595e7672020-10-20 17:30:08 +0200149 HA_RWLOCK_RDLOCK(PROXY_LOCK, &p->lock);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200150
Olivier Houchard4e694042017-03-14 20:01:29 +0100151 if ((s->flags & SRV_F_COOKIESET) ||
152 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
153 s->proxy->dyncookie_key == NULL)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200154 goto out;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100155 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100156
157 if (s->addr.ss_family != AF_INET &&
158 s->addr.ss_family != AF_INET6)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200159 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100160 /*
161 * Buffer to calculate the cookie value.
162 * The buffer contains the secret key + the server IP address
163 * + the TCP port.
164 */
165 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
166 /*
167 * The TCP port should use only 2 bytes, but is stored in
168 * an unsigned int in struct server, so let's use 4, to be
169 * on the safe side.
170 */
171 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200172 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100173 memcpy(tmpbuf, p->dyncookie_key, key_len);
174 memcpy(&(tmpbuf[key_len]),
175 s->addr.ss_family == AF_INET ?
176 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
177 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
178 addr_len);
179 /*
180 * Make sure it's the same across all the load balancers,
181 * no matter their endianness.
182 */
183 port = htonl(s->svc_port);
184 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
185 hash_value = XXH64(tmpbuf, buffer_len, 0);
186 memprintf(&s->cookie, "%016llx", hash_value);
187 if (!s->cookie)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200188 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100189 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100190
191 /* Don't bother checking if the dyncookie is duplicated if
192 * the server is marked as "disabled", maybe it doesn't have
193 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100194 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100195 if (!(s->next_admin & SRV_ADMF_FMAINT))
196 srv_check_for_dup_dyncookie(s);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200197 out:
Willy Tarreau595e7672020-10-20 17:30:08 +0200198 HA_RWLOCK_RDUNLOCK(PROXY_LOCK, &p->lock);
Olivier Houchard4e694042017-03-14 20:01:29 +0100199}
200
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +0200201/* Returns true if it's possible to reuse an idle connection from server <srv>
202 * for a websocket stream. This is the case if server is configured to use the
203 * same protocol for both HTTP and websocket streams. This depends on the value
204 * of "proto", "alpn" and "ws" keywords.
205 */
206int srv_check_reuse_ws(struct server *srv)
207{
208 if (srv->mux_proto || srv->use_ssl != 1 || !srv->ssl_ctx.alpn_str) {
209 /* explicit srv.mux_proto or no ALPN : srv.mux_proto is used
210 * for mux selection.
211 */
212 const struct ist srv_mux = srv->mux_proto ?
213 srv->mux_proto->token : IST_NULL;
214
215 switch (srv->ws) {
216 /* "auto" means use the same protocol : reuse is possible. */
217 case SRV_WS_AUTO:
218 return 1;
219
220 /* "h2" means use h2 for websocket : reuse is possible if
221 * server mux is h2.
222 */
223 case SRV_WS_H2:
224 if (srv->mux_proto && isteq(srv_mux, ist("h2")))
225 return 1;
226 break;
227
228 /* "h1" means use h1 for websocket : reuse is possible if
229 * server mux is h1.
230 */
231 case SRV_WS_H1:
232 if (!srv->mux_proto || isteq(srv_mux, ist("h1")))
233 return 1;
234 break;
235 }
236 }
237 else {
238 /* ALPN selection.
239 * Based on the assumption that only "h2" and "http/1.1" token
240 * are used on server ALPN.
241 */
242 const struct ist alpn = ist2(srv->ssl_ctx.alpn_str,
243 srv->ssl_ctx.alpn_len);
244
245 switch (srv->ws) {
246 case SRV_WS_AUTO:
247 /* for auto mode, consider reuse as possible if the
248 * server uses a single protocol ALPN
249 */
250 if (!istchr(alpn, ','))
251 return 1;
252 break;
253
254 case SRV_WS_H2:
255 return isteq(alpn, ist("\x02h2"));
256
257 case SRV_WS_H1:
258 return isteq(alpn, ist("\x08http/1.1"));
259 }
260 }
261
262 return 0;
263}
264
265/* Return the proto to used for a websocket stream on <srv> without ALPN. NULL
266 * is a valid value indicating to use the fallback mux.
267 */
268const struct mux_ops *srv_get_ws_proto(struct server *srv)
269{
270 const struct mux_proto_list *mux = NULL;
271
272 switch (srv->ws) {
273 case SRV_WS_AUTO:
274 mux = srv->mux_proto;
275 break;
276
277 case SRV_WS_H1:
278 mux = get_mux_proto(ist("h1"));
279 break;
280
281 case SRV_WS_H2:
282 mux = get_mux_proto(ist("h2"));
283 break;
284 }
285
286 return mux ? mux->mux : NULL;
287}
288
Willy Tarreau21faa912012-10-10 08:27:36 +0200289/*
Amaury Denoyelle8ff04342021-06-08 15:19:51 +0200290 * Must be called with the server lock held. The server is first removed from
291 * the proxy tree if it was already attached. If <reattach> is true, the server
292 * will then be attached in the proxy tree. The proxy lock is held to
293 * manipulate the tree.
Thayne McCombs92149f92020-11-20 01:28:26 -0700294 */
Amaury Denoyelle8ff04342021-06-08 15:19:51 +0200295static void srv_set_addr_desc(struct server *s, int reattach)
Thayne McCombs92149f92020-11-20 01:28:26 -0700296{
297 struct proxy *p = s->proxy;
298 char *key;
299
300 key = sa2str(&s->addr, s->svc_port, s->flags & SRV_F_MAPPORTS);
301
302 if (s->addr_node.key) {
Thayne McCombs24da7e12021-01-05 23:10:09 -0700303 if (key && strcmp(key, s->addr_node.key) == 0) {
Thayne McCombs92149f92020-11-20 01:28:26 -0700304 free(key);
305 return;
306 }
307
308 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
309 ebpt_delete(&s->addr_node);
310 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
311
312 free(s->addr_node.key);
313 }
314
315 s->addr_node.key = key;
316
Amaury Denoyelle8ff04342021-06-08 15:19:51 +0200317 if (reattach) {
318 if (s->addr_node.key) {
319 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
320 ebis_insert(&p->used_server_addr, &s->addr_node);
321 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
322 }
Thayne McCombs24da7e12021-01-05 23:10:09 -0700323 }
Thayne McCombs92149f92020-11-20 01:28:26 -0700324}
325
326/*
Willy Tarreau21faa912012-10-10 08:27:36 +0200327 * Registers the server keyword list <kwl> as a list of valid keywords for next
328 * parsing sessions.
329 */
330void srv_register_keywords(struct srv_kw_list *kwl)
331{
Willy Tarreau2b718102021-04-21 07:32:39 +0200332 LIST_APPEND(&srv_keywords.list, &kwl->list);
Willy Tarreau21faa912012-10-10 08:27:36 +0200333}
334
335/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
336 * keyword is found with a NULL ->parse() function, then an attempt is made to
337 * find one with a valid ->parse() function. This way it is possible to declare
338 * platform-dependant, known keywords as NULL, then only declare them as valid
339 * if some options are met. Note that if the requested keyword contains an
340 * opening parenthesis, everything from this point is ignored.
341 */
342struct srv_kw *srv_find_kw(const char *kw)
343{
344 int index;
345 const char *kwend;
346 struct srv_kw_list *kwl;
347 struct srv_kw *ret = NULL;
348
349 kwend = strchr(kw, '(');
350 if (!kwend)
351 kwend = kw + strlen(kw);
352
353 list_for_each_entry(kwl, &srv_keywords.list, list) {
354 for (index = 0; kwl->kw[index].kw != NULL; index++) {
355 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
356 kwl->kw[index].kw[kwend-kw] == 0) {
357 if (kwl->kw[index].parse)
358 return &kwl->kw[index]; /* found it !*/
359 else
360 ret = &kwl->kw[index]; /* may be OK */
361 }
362 }
363 }
364 return ret;
365}
366
367/* Dumps all registered "server" keywords to the <out> string pointer. The
368 * unsupported keywords are only dumped if their supported form was not
369 * found.
370 */
371void srv_dump_kws(char **out)
372{
373 struct srv_kw_list *kwl;
374 int index;
375
Christopher Faulet784063e2020-05-18 12:14:18 +0200376 if (!out)
377 return;
378
Willy Tarreau21faa912012-10-10 08:27:36 +0200379 *out = NULL;
380 list_for_each_entry(kwl, &srv_keywords.list, list) {
381 for (index = 0; kwl->kw[index].kw != NULL; index++) {
382 if (kwl->kw[index].parse ||
383 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
384 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
385 kwl->scope,
386 kwl->kw[index].kw,
387 kwl->kw[index].skip ? " <arg>" : "",
388 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
389 kwl->kw[index].parse ? "" : " (not supported)");
390 }
391 }
392 }
Willy Tarreau49c2b452021-03-12 09:58:04 +0100393}
394
395/* Try to find in srv_keyword the word that looks closest to <word> by counting
396 * transitions between letters, digits and other characters. Will return the
397 * best matching word if found, otherwise NULL. An optional array of extra
398 * words to compare may be passed in <extra>, but it must then be terminated
399 * by a NULL entry. If unused it may be NULL.
400 */
401static const char *srv_find_best_kw(const char *word)
402{
403 uint8_t word_sig[1024];
404 uint8_t list_sig[1024];
405 const struct srv_kw_list *kwl;
406 const char *best_ptr = NULL;
407 int dist, best_dist = INT_MAX;
408 const char **extra;
409 int index;
410
411 make_word_fingerprint(word_sig, word);
412 list_for_each_entry(kwl, &srv_keywords.list, list) {
413 for (index = 0; kwl->kw[index].kw != NULL; index++) {
414 make_word_fingerprint(list_sig, kwl->kw[index].kw);
415 dist = word_fingerprint_distance(word_sig, list_sig);
416 if (dist < best_dist) {
417 best_dist = dist;
418 best_ptr = kwl->kw[index].kw;
419 }
420 }
421 }
422
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100423 for (extra = extra_kw_list; *extra; extra++) {
Willy Tarreau49c2b452021-03-12 09:58:04 +0100424 make_word_fingerprint(list_sig, *extra);
425 dist = word_fingerprint_distance(word_sig, list_sig);
426 if (dist < best_dist) {
427 best_dist = dist;
428 best_ptr = *extra;
429 }
Willy Tarreau49c2b452021-03-12 09:58:04 +0100430 }
431
432 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
433 best_ptr = NULL;
434
435 return best_ptr;
Willy Tarreau21faa912012-10-10 08:27:36 +0200436}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100437
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100438/* Parse the "backup" server keyword */
439static int srv_parse_backup(char **args, int *cur_arg,
440 struct proxy *curproxy, struct server *newsrv, char **err)
441{
442 newsrv->flags |= SRV_F_BACKUP;
443 return 0;
444}
445
Alexander Liu2a54bb72019-05-22 19:44:48 +0800446
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100447/* Parse the "cookie" server keyword */
448static int srv_parse_cookie(char **args, int *cur_arg,
449 struct proxy *curproxy, struct server *newsrv, char **err)
450{
451 char *arg;
452
453 arg = args[*cur_arg + 1];
454 if (!*arg) {
455 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
456 return ERR_ALERT | ERR_FATAL;
457 }
458
459 free(newsrv->cookie);
460 newsrv->cookie = strdup(arg);
461 newsrv->cklen = strlen(arg);
462 newsrv->flags |= SRV_F_COOKIESET;
463 return 0;
464}
465
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100466/* Parse the "disabled" server keyword */
467static int srv_parse_disabled(char **args, int *cur_arg,
468 struct proxy *curproxy, struct server *newsrv, char **err)
469{
Emeric Brun52a91d32017-08-31 14:41:55 +0200470 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
471 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100472 newsrv->check.state |= CHK_ST_PAUSED;
473 newsrv->check.health = 0;
474 return 0;
475}
476
477/* Parse the "enabled" server keyword */
478static int srv_parse_enabled(char **args, int *cur_arg,
479 struct proxy *curproxy, struct server *newsrv, char **err)
480{
Emeric Brun52a91d32017-08-31 14:41:55 +0200481 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
482 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100483 newsrv->check.state &= ~CHK_ST_PAUSED;
484 newsrv->check.health = newsrv->check.rise;
485 return 0;
486}
487
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100488/* Parse the "error-limit" server keyword */
489static int srv_parse_error_limit(char **args, int *cur_arg,
490 struct proxy *curproxy, struct server *newsrv, char **err)
491{
492 if (!*args[*cur_arg + 1]) {
493 memprintf(err, "'%s' expects an integer argument.",
494 args[*cur_arg]);
495 return ERR_ALERT | ERR_FATAL;
496 }
497
498 newsrv->consecutive_errors_limit = atoi(args[*cur_arg + 1]);
499
500 if (newsrv->consecutive_errors_limit <= 0) {
501 memprintf(err, "%s has to be > 0.",
502 args[*cur_arg]);
503 return ERR_ALERT | ERR_FATAL;
504 }
505
506 return 0;
507}
508
Amaury Denoyellef9d59572021-10-18 14:40:29 +0200509/* Parse the "ws" keyword */
510static int srv_parse_ws(char **args, int *cur_arg,
511 struct proxy *curproxy, struct server *newsrv, char **err)
512{
513 if (!args[*cur_arg + 1]) {
514 memprintf(err, "'%s' expects 'auto', 'h1' or 'h2' value", args[*cur_arg]);
515 return ERR_ALERT | ERR_FATAL;
516 }
517
518 if (strcmp(args[*cur_arg + 1], "h1") == 0) {
519 newsrv->ws = SRV_WS_H1;
520 }
521 else if (strcmp(args[*cur_arg + 1], "h2") == 0) {
522 newsrv->ws = SRV_WS_H2;
523 }
524 else if (strcmp(args[*cur_arg + 1], "auto") == 0) {
525 newsrv->ws = SRV_WS_AUTO;
526 }
527 else {
528 memprintf(err, "'%s' has to be 'auto', 'h1' or 'h2'", args[*cur_arg]);
529 return ERR_ALERT | ERR_FATAL;
530 }
531
532
533 return 0;
534}
535
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100536/* Parse the "init-addr" server keyword */
537static int srv_parse_init_addr(char **args, int *cur_arg,
538 struct proxy *curproxy, struct server *newsrv, char **err)
539{
540 char *p, *end;
541 int done;
542 struct sockaddr_storage sa;
543
544 newsrv->init_addr_methods = 0;
545 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
546
547 for (p = args[*cur_arg + 1]; *p; p = end) {
548 /* cut on next comma */
549 for (end = p; *end && *end != ','; end++);
550 if (*end)
551 *(end++) = 0;
552
553 memset(&sa, 0, sizeof(sa));
554 if (strcmp(p, "libc") == 0) {
555 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
556 }
557 else if (strcmp(p, "last") == 0) {
558 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
559 }
560 else if (strcmp(p, "none") == 0) {
561 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
562 }
563 else if (str2ip2(p, &sa, 0)) {
564 if (is_addr(&newsrv->init_addr)) {
565 memprintf(err, "'%s' : initial address already specified, cannot add '%s'.",
566 args[*cur_arg], p);
567 return ERR_ALERT | ERR_FATAL;
568 }
569 newsrv->init_addr = sa;
570 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
571 }
572 else {
573 memprintf(err, "'%s' : unknown init-addr method '%s', supported methods are 'libc', 'last', 'none'.",
574 args[*cur_arg], p);
575 return ERR_ALERT | ERR_FATAL;
576 }
577 if (!done) {
578 memprintf(err, "'%s' : too many init-addr methods when trying to add '%s'",
579 args[*cur_arg], p);
580 return ERR_ALERT | ERR_FATAL;
581 }
582 }
583
584 return 0;
585}
586
587/* Parse the "log-proto" server keyword */
588static int srv_parse_log_proto(char **args, int *cur_arg,
589 struct proxy *curproxy, struct server *newsrv, char **err)
590{
591 if (strcmp(args[*cur_arg + 1], "legacy") == 0)
592 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
593 else if (strcmp(args[*cur_arg + 1], "octet-count") == 0)
594 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
595 else {
596 memprintf(err, "'%s' expects one of 'legacy' or 'octet-count' but got '%s'",
597 args[*cur_arg], args[*cur_arg + 1]);
598 return ERR_ALERT | ERR_FATAL;
599 }
600
601 return 0;
602}
603
604/* Parse the "maxconn" server keyword */
605static int srv_parse_maxconn(char **args, int *cur_arg,
606 struct proxy *curproxy, struct server *newsrv, char **err)
607{
608 newsrv->maxconn = atol(args[*cur_arg + 1]);
609 return 0;
610}
611
612/* Parse the "maxqueue" server keyword */
613static int srv_parse_maxqueue(char **args, int *cur_arg,
614 struct proxy *curproxy, struct server *newsrv, char **err)
615{
616 newsrv->maxqueue = atol(args[*cur_arg + 1]);
617 return 0;
618}
619
620/* Parse the "minconn" server keyword */
621static int srv_parse_minconn(char **args, int *cur_arg,
622 struct proxy *curproxy, struct server *newsrv, char **err)
623{
624 newsrv->minconn = atol(args[*cur_arg + 1]);
625 return 0;
626}
627
Willy Tarreau9c538e02019-01-23 10:21:49 +0100628static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
629{
630 char *arg;
631
632 arg = args[*cur_arg + 1];
633 if (!*arg) {
634 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
635 return ERR_ALERT | ERR_FATAL;
636 }
637 newsrv->max_reuse = atoi(arg);
638
639 return 0;
640}
641
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100642static 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 +0100643{
644 const char *res;
645 char *arg;
646 unsigned int time;
647
648 arg = args[*cur_arg + 1];
649 if (!*arg) {
650 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
651 return ERR_ALERT | ERR_FATAL;
652 }
653 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200654 if (res == PARSE_TIME_OVER) {
655 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
656 args[*cur_arg+1], args[*cur_arg]);
657 return ERR_ALERT | ERR_FATAL;
658 }
659 else if (res == PARSE_TIME_UNDER) {
660 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
661 args[*cur_arg+1], args[*cur_arg]);
662 return ERR_ALERT | ERR_FATAL;
663 }
664 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100665 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
666 *res, args[*cur_arg]);
667 return ERR_ALERT | ERR_FATAL;
668 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100669 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100670
671 return 0;
672}
673
Willy Tarreau2f3f4d32020-07-01 07:43:51 +0200674static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
675{
676 char *arg;
677
678 arg = args[*cur_arg + 1];
679 if (!*arg) {
680 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
681 return ERR_ALERT | ERR_FATAL;
682 }
683
684 newsrv->low_idle_conns = atoi(arg);
685 return 0;
686}
687
Olivier Houchard006e3102018-12-10 18:30:32 +0100688static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
689{
690 char *arg;
691
692 arg = args[*cur_arg + 1];
693 if (!*arg) {
694 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
695 return ERR_ALERT | ERR_FATAL;
696 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100697
Olivier Houchard006e3102018-12-10 18:30:32 +0100698 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100699 if ((int)newsrv->max_idle_conns < -1) {
700 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
701 return ERR_ALERT | ERR_FATAL;
702 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100703
704 return 0;
705}
706
Willy Tarreaudff55432012-10-10 17:51:05 +0200707/* parse the "id" server keyword */
708static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
709{
710 struct eb32_node *node;
711
712 if (!*args[*cur_arg + 1]) {
713 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
714 return ERR_ALERT | ERR_FATAL;
715 }
716
717 newsrv->puid = atol(args[*cur_arg + 1]);
718 newsrv->conf.id.key = newsrv->puid;
719
720 if (newsrv->puid <= 0) {
721 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
722 return ERR_ALERT | ERR_FATAL;
723 }
724
725 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
726 if (node) {
727 struct server *target = container_of(node, struct server, conf.id);
728 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
729 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
730 target->id);
731 return ERR_ALERT | ERR_FATAL;
732 }
733
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200734 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200735 return 0;
736}
737
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100738/* Parse the "namespace" server keyword */
739static int srv_parse_namespace(char **args, int *cur_arg,
740 struct proxy *curproxy, struct server *newsrv, char **err)
741{
Willy Tarreaue5733232019-05-22 19:24:06 +0200742#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100743 char *arg;
744
745 arg = args[*cur_arg + 1];
746 if (!*arg) {
747 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
748 return ERR_ALERT | ERR_FATAL;
749 }
750
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100751 if (strcmp(arg, "*") == 0) {
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100752 /* Use the namespace associated with the connection (if present). */
753 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
754 return 0;
755 }
756
757 /*
758 * As this parser may be called several times for the same 'default-server'
759 * object, or for a new 'server' instance deriving from a 'default-server'
760 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
761 */
762 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
763
764 newsrv->netns = netns_store_lookup(arg, strlen(arg));
765 if (!newsrv->netns)
766 newsrv->netns = netns_store_insert(arg);
767
768 if (!newsrv->netns) {
769 memprintf(err, "Cannot open namespace '%s'", arg);
770 return ERR_ALERT | ERR_FATAL;
771 }
772
773 return 0;
774#else
775 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
776 return ERR_ALERT | ERR_FATAL;
777#endif
778}
779
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100780/* Parse the "no-backup" server keyword */
781static int srv_parse_no_backup(char **args, int *cur_arg,
782 struct proxy *curproxy, struct server *newsrv, char **err)
783{
784 newsrv->flags &= ~SRV_F_BACKUP;
785 return 0;
786}
787
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100788
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100789/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200790static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100791{
792 srv->pp_opts &= ~flags;
793 return 0;
794}
795
796/* Parse the "no-send-proxy" server keyword */
797static int srv_parse_no_send_proxy(char **args, int *cur_arg,
798 struct proxy *curproxy, struct server *newsrv, char **err)
799{
800 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
801}
802
803/* Parse the "no-send-proxy-v2" server keyword */
804static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
805 struct proxy *curproxy, struct server *newsrv, char **err)
806{
807 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
808}
809
Frédéric Lécaille36d15652022-10-17 14:58:19 +0200810/* Parse the "shard" server keyword */
811static int srv_parse_shard(char **args, int *cur_arg,
812 struct proxy *curproxy, struct server *newsrv, char **err)
813{
814 newsrv->shard = atol(args[*cur_arg + 1]);
815 return 0;
816}
817
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200818/* Parse the "no-tfo" server keyword */
819static int srv_parse_no_tfo(char **args, int *cur_arg,
820 struct proxy *curproxy, struct server *newsrv, char **err)
821{
822 newsrv->flags &= ~SRV_F_FASTOPEN;
823 return 0;
824}
825
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100826/* Parse the "non-stick" server keyword */
827static int srv_parse_non_stick(char **args, int *cur_arg,
828 struct proxy *curproxy, struct server *newsrv, char **err)
829{
830 newsrv->flags |= SRV_F_NON_STICK;
831 return 0;
832}
833
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100834/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200835static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100836{
837 srv->pp_opts |= flags;
838 return 0;
839}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200840/* parse the "proto" server keyword */
841static int srv_parse_proto(char **args, int *cur_arg,
842 struct proxy *px, struct server *newsrv, char **err)
843{
844 struct ist proto;
845
846 if (!*args[*cur_arg + 1]) {
847 memprintf(err, "'%s' : missing value", args[*cur_arg]);
848 return ERR_ALERT | ERR_FATAL;
849 }
Tim Duesterhusdcf753a2021-03-04 17:31:47 +0100850 proto = ist(args[*cur_arg + 1]);
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200851 newsrv->mux_proto = get_mux_proto(proto);
852 if (!newsrv->mux_proto) {
853 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
854 return ERR_ALERT | ERR_FATAL;
855 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200856 return 0;
857}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100858
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100859/* parse the "proxy-v2-options" */
860static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
861 struct proxy *px, struct server *newsrv, char **err)
862{
863 char *p, *n;
864 for (p = args[*cur_arg+1]; p; p = n) {
865 n = strchr(p, ',');
866 if (n)
867 *n++ = '\0';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100868 if (strcmp(p, "ssl") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100869 newsrv->pp_opts |= SRV_PP_V2_SSL;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100870 } else if (strcmp(p, "cert-cn") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100871 newsrv->pp_opts |= SRV_PP_V2_SSL;
872 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100873 } else if (strcmp(p, "cert-key") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100874 newsrv->pp_opts |= SRV_PP_V2_SSL;
875 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100876 } else if (strcmp(p, "cert-sig") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100877 newsrv->pp_opts |= SRV_PP_V2_SSL;
878 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100879 } else if (strcmp(p, "ssl-cipher") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100880 newsrv->pp_opts |= SRV_PP_V2_SSL;
881 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100882 } else if (strcmp(p, "authority") == 0) {
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100883 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100884 } else if (strcmp(p, "crc32c") == 0) {
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100885 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100886 } else if (strcmp(p, "unique-id") == 0) {
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100887 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100888 } else
889 goto fail;
890 }
891 return 0;
892 fail:
893 if (err)
894 memprintf(err, "'%s' : proxy v2 option not implemented", p);
895 return ERR_ALERT | ERR_FATAL;
896}
897
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100898/* Parse the "observe" server keyword */
899static int srv_parse_observe(char **args, int *cur_arg,
900 struct proxy *curproxy, struct server *newsrv, char **err)
901{
902 char *arg;
903
904 arg = args[*cur_arg + 1];
905 if (!*arg) {
906 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
907 return ERR_ALERT | ERR_FATAL;
908 }
909
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100910 if (strcmp(arg, "none") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100911 newsrv->observe = HANA_OBS_NONE;
912 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100913 else if (strcmp(arg, "layer4") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100914 newsrv->observe = HANA_OBS_LAYER4;
915 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100916 else if (strcmp(arg, "layer7") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100917 if (curproxy->mode != PR_MODE_HTTP) {
918 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
919 return ERR_ALERT;
920 }
921 newsrv->observe = HANA_OBS_LAYER7;
922 }
923 else {
924 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
925 "but got '%s'\n", args[*cur_arg], arg);
926 return ERR_ALERT | ERR_FATAL;
927 }
928
929 return 0;
930}
931
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100932/* Parse the "on-error" server keyword */
933static int srv_parse_on_error(char **args, int *cur_arg,
934 struct proxy *curproxy, struct server *newsrv, char **err)
935{
936 if (strcmp(args[*cur_arg + 1], "fastinter") == 0)
937 newsrv->onerror = HANA_ONERR_FASTINTER;
938 else if (strcmp(args[*cur_arg + 1], "fail-check") == 0)
939 newsrv->onerror = HANA_ONERR_FAILCHK;
940 else if (strcmp(args[*cur_arg + 1], "sudden-death") == 0)
941 newsrv->onerror = HANA_ONERR_SUDDTH;
942 else if (strcmp(args[*cur_arg + 1], "mark-down") == 0)
943 newsrv->onerror = HANA_ONERR_MARKDWN;
944 else {
945 memprintf(err, "'%s' expects one of 'fastinter', "
946 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'",
947 args[*cur_arg], args[*cur_arg + 1]);
948 return ERR_ALERT | ERR_FATAL;
949 }
950
951 return 0;
952}
953
954/* Parse the "on-marked-down" server keyword */
955static int srv_parse_on_marked_down(char **args, int *cur_arg,
956 struct proxy *curproxy, struct server *newsrv, char **err)
957{
958 if (strcmp(args[*cur_arg + 1], "shutdown-sessions") == 0)
959 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
960 else {
961 memprintf(err, "'%s' expects 'shutdown-sessions' but got '%s'",
962 args[*cur_arg], args[*cur_arg + 1]);
963 return ERR_ALERT | ERR_FATAL;
964 }
965
966 return 0;
967}
968
969/* Parse the "on-marked-up" server keyword */
970static int srv_parse_on_marked_up(char **args, int *cur_arg,
971 struct proxy *curproxy, struct server *newsrv, char **err)
972{
973 if (strcmp(args[*cur_arg + 1], "shutdown-backup-sessions") == 0)
974 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
975 else {
976 memprintf(err, "'%s' expects 'shutdown-backup-sessions' but got '%s'",
977 args[*cur_arg], args[*cur_arg + 1]);
978 return ERR_ALERT | ERR_FATAL;
979 }
980
981 return 0;
982}
983
Frédéric Lécaille16186232017-03-14 16:42:49 +0100984/* Parse the "redir" server keyword */
985static int srv_parse_redir(char **args, int *cur_arg,
986 struct proxy *curproxy, struct server *newsrv, char **err)
987{
988 char *arg;
989
990 arg = args[*cur_arg + 1];
991 if (!*arg) {
992 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
993 return ERR_ALERT | ERR_FATAL;
994 }
995
996 free(newsrv->rdr_pfx);
997 newsrv->rdr_pfx = strdup(arg);
998 newsrv->rdr_len = strlen(arg);
999
1000 return 0;
1001}
1002
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001003/* Parse the "resolvers" server keyword */
1004static int srv_parse_resolvers(char **args, int *cur_arg,
1005 struct proxy *curproxy, struct server *newsrv, char **err)
1006{
1007 free(newsrv->resolvers_id);
1008 newsrv->resolvers_id = strdup(args[*cur_arg + 1]);
1009 return 0;
1010}
1011
1012/* Parse the "resolve-net" server keyword */
1013static int srv_parse_resolve_net(char **args, int *cur_arg,
1014 struct proxy *curproxy, struct server *newsrv, char **err)
1015{
1016 char *p, *e;
1017 unsigned char mask;
1018 struct resolv_options *opt;
1019
1020 if (!args[*cur_arg + 1] || args[*cur_arg + 1][0] == '\0') {
1021 memprintf(err, "'%s' expects a list of networks.",
1022 args[*cur_arg]);
1023 return ERR_ALERT | ERR_FATAL;
1024 }
1025
1026 opt = &newsrv->resolv_opts;
1027
1028 /* Split arguments by comma, and convert it from ipv4 or ipv6
1029 * string network in in_addr or in6_addr.
1030 */
1031 p = args[*cur_arg + 1];
1032 e = p;
1033 while (*p != '\0') {
1034 /* If no room available, return error. */
1035 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
1036 memprintf(err, "'%s' exceed %d networks.",
1037 args[*cur_arg], SRV_MAX_PREF_NET);
1038 return ERR_ALERT | ERR_FATAL;
1039 }
1040 /* look for end or comma. */
1041 while (*e != ',' && *e != '\0')
1042 e++;
1043 if (*e == ',') {
1044 *e = '\0';
1045 e++;
1046 }
1047 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
1048 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
1049 /* Try to convert input string from ipv4 or ipv6 network. */
1050 opt->pref_net[opt->pref_net_nb].family = AF_INET;
1051 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
1052 &mask)) {
1053 /* Try to convert input string from ipv6 network. */
1054 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
1055 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
1056 } else {
1057 /* All network conversions fail, return error. */
1058 memprintf(err, "'%s' invalid network '%s'.",
1059 args[*cur_arg], p);
1060 return ERR_ALERT | ERR_FATAL;
1061 }
1062 opt->pref_net_nb++;
1063 p = e;
1064 }
1065
1066 return 0;
1067}
1068
1069/* Parse the "resolve-opts" server keyword */
1070static int srv_parse_resolve_opts(char **args, int *cur_arg,
1071 struct proxy *curproxy, struct server *newsrv, char **err)
1072{
1073 char *p, *end;
1074
1075 for (p = args[*cur_arg + 1]; *p; p = end) {
1076 /* cut on next comma */
1077 for (end = p; *end && *end != ','; end++);
1078 if (*end)
1079 *(end++) = 0;
1080
1081 if (strcmp(p, "allow-dup-ip") == 0) {
1082 newsrv->resolv_opts.accept_duplicate_ip = 1;
1083 }
1084 else if (strcmp(p, "ignore-weight") == 0) {
1085 newsrv->resolv_opts.ignore_weight = 1;
1086 }
1087 else if (strcmp(p, "prevent-dup-ip") == 0) {
1088 newsrv->resolv_opts.accept_duplicate_ip = 0;
1089 }
1090 else {
1091 memprintf(err, "'%s' : unknown resolve-opts option '%s', supported methods are 'allow-dup-ip', 'ignore-weight', and 'prevent-dup-ip'.",
1092 args[*cur_arg], p);
1093 return ERR_ALERT | ERR_FATAL;
1094 }
1095 }
1096
1097 return 0;
1098}
1099
1100/* Parse the "resolve-prefer" server keyword */
1101static int srv_parse_resolve_prefer(char **args, int *cur_arg,
1102 struct proxy *curproxy, struct server *newsrv, char **err)
1103{
1104 if (strcmp(args[*cur_arg + 1], "ipv4") == 0)
1105 newsrv->resolv_opts.family_prio = AF_INET;
1106 else if (strcmp(args[*cur_arg + 1], "ipv6") == 0)
1107 newsrv->resolv_opts.family_prio = AF_INET6;
1108 else {
1109 memprintf(err, "'%s' expects either ipv4 or ipv6 as argument.",
1110 args[*cur_arg]);
1111 return ERR_ALERT | ERR_FATAL;
1112 }
1113
1114 return 0;
1115}
1116
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001117/* Parse the "send-proxy" server keyword */
1118static int srv_parse_send_proxy(char **args, int *cur_arg,
1119 struct proxy *curproxy, struct server *newsrv, char **err)
1120{
1121 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
1122}
1123
1124/* Parse the "send-proxy-v2" server keyword */
1125static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
1126 struct proxy *curproxy, struct server *newsrv, char **err)
1127{
1128 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
1129}
1130
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001131/* Parse the "slowstart" server keyword */
1132static int srv_parse_slowstart(char **args, int *cur_arg,
1133 struct proxy *curproxy, struct server *newsrv, char **err)
1134{
1135 /* slowstart is stored in seconds */
1136 unsigned int val;
1137 const char *time_err = parse_time_err(args[*cur_arg + 1], &val, TIME_UNIT_MS);
1138
1139 if (time_err == PARSE_TIME_OVER) {
1140 memprintf(err, "overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).",
1141 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1142 return ERR_ALERT | ERR_FATAL;
1143 }
1144 else if (time_err == PARSE_TIME_UNDER) {
1145 memprintf(err, "underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.",
1146 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1147 return ERR_ALERT | ERR_FATAL;
1148 }
1149 else if (time_err) {
1150 memprintf(err, "unexpected character '%c' in 'slowstart' argument of server %s.",
1151 *time_err, newsrv->id);
1152 return ERR_ALERT | ERR_FATAL;
1153 }
1154 newsrv->slowstart = (val + 999) / 1000;
1155
1156 return 0;
1157}
Frédéric Lécailledba97072017-03-17 15:33:50 +01001158
1159/* Parse the "source" server keyword */
1160static int srv_parse_source(char **args, int *cur_arg,
1161 struct proxy *curproxy, struct server *newsrv, char **err)
1162{
1163 char *errmsg;
1164 int port_low, port_high;
1165 struct sockaddr_storage *sk;
Frédéric Lécailledba97072017-03-17 15:33:50 +01001166
1167 errmsg = NULL;
1168
1169 if (!*args[*cur_arg + 1]) {
1170 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
1171 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
1172 goto err;
1173 }
1174
1175 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001176 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1177 &errmsg, NULL, NULL,
1178 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 +01001179 if (!sk) {
1180 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1181 goto err;
1182 }
1183
Frédéric Lécailledba97072017-03-17 15:33:50 +01001184 newsrv->conn_src.opts |= CO_SRC_BIND;
1185 newsrv->conn_src.source_addr = *sk;
1186
1187 if (port_low != port_high) {
1188 int i;
1189
Frédéric Lécailledba97072017-03-17 15:33:50 +01001190 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
Remi Tricot-Le Bretonf1800e62021-05-12 09:44:06 +02001191 if (!newsrv->conn_src.sport_range) {
1192 ha_alert("Server '%s': Out of memory (sport_range)\n", args[0]);
1193 goto err;
1194 }
Frédéric Lécailledba97072017-03-17 15:33:50 +01001195 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
1196 newsrv->conn_src.sport_range->ports[i] = port_low + i;
1197 }
1198
1199 *cur_arg += 2;
1200 while (*(args[*cur_arg])) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001201 if (strcmp(args[*cur_arg], "usesrc") == 0) { /* address to use outside */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001202#if defined(CONFIG_HAP_TRANSPARENT)
1203 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001204 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
1205 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +01001206 goto err;
1207 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001208 if (strcmp(args[*cur_arg + 1], "client") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +01001209 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1210 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
1211 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001212 else if (strcmp(args[*cur_arg + 1], "clientip") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +01001213 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1214 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
1215 }
1216 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
1217 char *name, *end;
1218
1219 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +01001220 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001221 name++;
1222
1223 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +01001224 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +01001225 end++;
1226
1227 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1228 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
1229 free(newsrv->conn_src.bind_hdr_name);
1230 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
Remi Tricot-Le Bretonf1800e62021-05-12 09:44:06 +02001231 if (!newsrv->conn_src.bind_hdr_name) {
1232 ha_alert("Server '%s': Out of memory (bind_hdr_name)\n", args[0]);
1233 goto err;
1234 }
Frédéric Lécailledba97072017-03-17 15:33:50 +01001235 newsrv->conn_src.bind_hdr_len = end - name;
1236 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
1237 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
1238 newsrv->conn_src.bind_hdr_occ = -1;
1239
1240 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +01001241 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001242 end++;
1243 if (*end == ',') {
1244 end++;
1245 name = end;
1246 if (*end == '-')
1247 end++;
Willy Tarreau90807112020-02-25 08:16:33 +01001248 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001249 end++;
1250 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
1251 }
1252
1253 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001254 ha_alert("usesrc hdr_ip(name,num) does not support negative"
1255 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001256 goto err;
1257 }
1258 }
1259 else {
1260 struct sockaddr_storage *sk;
1261 int port1, port2;
1262
1263 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001264 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL,
1265 &errmsg, NULL, NULL,
1266 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001267 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001268 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001269 goto err;
1270 }
1271
Frédéric Lécailledba97072017-03-17 15:33:50 +01001272 newsrv->conn_src.tproxy_addr = *sk;
1273 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
1274 }
1275 global.last_checks |= LSTCHK_NETADM;
1276 *cur_arg += 2;
1277 continue;
1278#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001279 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 +01001280 goto err;
1281#endif /* defined(CONFIG_HAP_TRANSPARENT) */
1282 } /* "usesrc" */
1283
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001284 if (strcmp(args[*cur_arg], "interface") == 0) { /* specifically bind to this interface */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001285#ifdef SO_BINDTODEVICE
1286 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001287 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001288 goto err;
1289 }
1290 free(newsrv->conn_src.iface_name);
1291 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
1292 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
1293 global.last_checks |= LSTCHK_NETADM;
1294#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001295 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001296 goto err;
1297#endif
1298 *cur_arg += 2;
1299 continue;
1300 }
1301 /* this keyword in not an option of "source" */
1302 break;
1303 } /* while */
1304
1305 return 0;
1306
1307 err:
1308 free(errmsg);
1309 return ERR_ALERT | ERR_FATAL;
1310}
1311
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001312/* Parse the "stick" server keyword */
1313static int srv_parse_stick(char **args, int *cur_arg,
1314 struct proxy *curproxy, struct server *newsrv, char **err)
1315{
1316 newsrv->flags &= ~SRV_F_NON_STICK;
1317 return 0;
1318}
1319
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001320/* Parse the "track" server keyword */
1321static int srv_parse_track(char **args, int *cur_arg,
1322 struct proxy *curproxy, struct server *newsrv, char **err)
1323{
1324 char *arg;
1325
1326 arg = args[*cur_arg + 1];
1327 if (!*arg) {
1328 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
1329 return ERR_ALERT | ERR_FATAL;
1330 }
1331
1332 free(newsrv->trackit);
1333 newsrv->trackit = strdup(arg);
1334
1335 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001336}
1337
1338/* Parse the "socks4" server keyword */
1339static int srv_parse_socks4(char **args, int *cur_arg,
1340 struct proxy *curproxy, struct server *newsrv, char **err)
1341{
1342 char *errmsg;
1343 int port_low, port_high;
1344 struct sockaddr_storage *sk;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001345
1346 errmsg = NULL;
1347
1348 if (!*args[*cur_arg + 1]) {
1349 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
1350 goto err;
1351 }
1352
1353 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001354 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1355 &errmsg, NULL, NULL,
1356 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT);
Alexander Liu2a54bb72019-05-22 19:44:48 +08001357 if (!sk) {
1358 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1359 goto err;
1360 }
1361
Alexander Liu2a54bb72019-05-22 19:44:48 +08001362 newsrv->flags |= SRV_F_SOCKS4_PROXY;
1363 newsrv->socks4_addr = *sk;
1364
Alexander Liu2a54bb72019-05-22 19:44:48 +08001365 return 0;
1366
1367 err:
1368 free(errmsg);
1369 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001370}
1371
Frédéric Lécailledba97072017-03-17 15:33:50 +01001372
Willy Tarreau034c88c2017-01-23 23:36:45 +01001373/* parse the "tfo" server keyword */
1374static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1375{
1376 newsrv->flags |= SRV_F_FASTOPEN;
1377 return 0;
1378}
1379
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001380/* parse the "usesrc" server keyword */
1381static int srv_parse_usesrc(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1382{
1383 memprintf(err, "'%s' only allowed after a '%s' statement.",
1384 "usesrc", "source");
1385 return ERR_ALERT | ERR_FATAL;
1386}
1387
1388/* parse the "weight" server keyword */
1389static int srv_parse_weight(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1390{
1391 int w;
1392
1393 w = atol(args[*cur_arg + 1]);
1394 if (w < 0 || w > SRV_UWGHT_MAX) {
1395 memprintf(err, "weight of server %s is not within 0 and %d (%d).",
1396 newsrv->id, SRV_UWGHT_MAX, w);
1397 return ERR_ALERT | ERR_FATAL;
1398 }
1399 newsrv->uweight = newsrv->iweight = w;
1400
1401 return 0;
1402}
1403
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001404/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +02001405 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001406 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001407 *
1408 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001409 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001410void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001411{
Willy Tarreau751153e2021-02-17 13:33:24 +01001412 struct stream *stream;
1413 struct mt_list *elt1, elt2;
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001414 int thr;
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001415
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001416 for (thr = 0; thr < global.nbthread; thr++)
1417 mt_list_for_each_entry_safe(stream, &srv->per_thr[thr].streams, by_srv, elt1, elt2)
1418 if (stream->srv_conn == srv)
1419 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001420}
1421
1422/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +02001423 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001424 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001425 *
1426 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001427 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001428void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001429{
1430 struct server *srv;
1431
1432 for (srv = px->srv; srv != NULL; srv = srv->next)
1433 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +02001434 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001435}
1436
Willy Tarreaubda92272014-05-20 21:55:30 +02001437/* Appends some information to a message string related to a server going UP or
1438 * DOWN. If both <forced> and <reason> are null and the server tracks another
1439 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +02001440 * If <check> is non-null, an entire string describing the check result will be
1441 * appended after a comma and a space (eg: to report some information from the
1442 * check that changed the state). In the other case, the string will be built
1443 * using the check results stored into the struct server if present.
1444 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +02001445 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001446 *
1447 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001448 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001449void srv_append_status(struct buffer *msg, struct server *s,
1450 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001451{
Emeric Brun5a133512017-10-19 14:42:30 +02001452 short status = s->op_st_chg.status;
1453 short code = s->op_st_chg.code;
1454 long duration = s->op_st_chg.duration;
1455 char *desc = s->op_st_chg.reason;
1456
1457 if (check) {
1458 status = check->status;
1459 code = check->code;
1460 duration = check->duration;
1461 desc = check->desc;
1462 }
1463
1464 if (status != -1) {
1465 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
1466
1467 if (status >= HCHK_STATUS_L57DATA)
1468 chunk_appendf(msg, ", code: %d", code);
1469
1470 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +02001471 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +02001472
1473 chunk_appendf(msg, ", info: \"");
1474
1475 chunk_initlen(&src, desc, 0, strlen(desc));
1476 chunk_asciiencode(msg, &src, '"');
1477
1478 chunk_appendf(msg, "\"");
1479 }
1480
1481 if (duration >= 0)
1482 chunk_appendf(msg, ", check duration: %ldms", duration);
1483 }
1484 else if (desc && *desc) {
1485 chunk_appendf(msg, ", %s", desc);
1486 }
1487 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +02001488 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +02001489 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001490
1491 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001492 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001493 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
1494 " %d sessions active, %d requeued, %d remaining in queue",
1495 s->proxy->srv_act, s->proxy->srv_bck,
1496 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
Willy Tarreaua0570452021-06-18 09:30:30 +02001497 s->cur_sess, xferred, s->queue.length);
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001498 else
1499 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
1500 " %d sessions requeued, %d total in queue",
1501 s->proxy->srv_act, s->proxy->srv_bck,
1502 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
Willy Tarreaua0570452021-06-18 09:30:30 +02001503 xferred, s->queue.length);
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001504 }
1505}
1506
Emeric Brun5a133512017-10-19 14:42:30 +02001507/* Marks server <s> down, regardless of its checks' statuses. The server is
1508 * registered in a list to postpone the counting of the remaining servers on
1509 * the proxy and transfers queued streams whenever possible to other servers at
1510 * a sync point. Maintenance servers are ignored. It stores the <reason> if
1511 * non-null as the reason for going down or the available data from the check
1512 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001513 *
1514 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001515 */
Emeric Brun5a133512017-10-19 14:42:30 +02001516void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001517{
1518 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001519
Emeric Brun64cc49c2017-10-03 14:46:45 +02001520 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001521 return;
1522
Emeric Brun52a91d32017-08-31 14:41:55 +02001523 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +02001524 *s->op_st_chg.reason = 0;
1525 s->op_st_chg.status = -1;
1526 if (reason) {
1527 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1528 }
1529 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001530 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001531 s->op_st_chg.code = check->code;
1532 s->op_st_chg.status = check->status;
1533 s->op_st_chg.duration = check->duration;
1534 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001535
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
Emeric Brun9f0b4582017-10-23 14:39:51 +02001539 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001540 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001541 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001542 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001543 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001544}
1545
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001546/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001547 * in maintenance. The server is registered in a list to postpone the counting
1548 * of the remaining servers on the proxy and tries to grab requests from the
1549 * proxy at a sync point. Maintenance servers are ignored. It stores the
1550 * <reason> if non-null as the reason for going down or the available data
1551 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001552 *
1553 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001554 */
Emeric Brun5a133512017-10-19 14:42:30 +02001555void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001556{
1557 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001558
Emeric Brun64cc49c2017-10-03 14:46:45 +02001559 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001560 return;
1561
Emeric Brun52a91d32017-08-31 14:41:55 +02001562 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001563 return;
1564
Emeric Brun52a91d32017-08-31 14:41:55 +02001565 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001566 *s->op_st_chg.reason = 0;
1567 s->op_st_chg.status = -1;
1568 if (reason) {
1569 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1570 }
1571 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001572 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001573 s->op_st_chg.code = check->code;
1574 s->op_st_chg.status = check->status;
1575 s->op_st_chg.duration = check->duration;
1576 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001577
Emeric Brun64cc49c2017-10-03 14:46:45 +02001578 if (s->slowstart <= 0)
1579 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001580
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001581 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001582 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001583
Emeric Brun9f0b4582017-10-23 14:39:51 +02001584 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001585 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001586 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001587 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001588 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001589}
1590
Willy Tarreau8eb77842014-05-21 13:54:57 +02001591/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001592 * isn't in maintenance. The server is registered in a list to postpone the
1593 * counting of the remaining servers on the proxy and tries to grab requests
1594 * from the proxy. Maintenance servers are ignored. It stores the
1595 * <reason> if non-null as the reason for going down or the available data
1596 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001597 * up. Note that it makes use of the trash to build the log strings, so <reason>
1598 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001599 *
1600 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001601 */
Emeric Brun5a133512017-10-19 14:42:30 +02001602void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001603{
1604 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001605
Emeric Brun64cc49c2017-10-03 14:46:45 +02001606 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001607 return;
1608
Emeric Brun52a91d32017-08-31 14:41:55 +02001609 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001610 return;
1611
Emeric Brun52a91d32017-08-31 14:41:55 +02001612 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001613 *s->op_st_chg.reason = 0;
1614 s->op_st_chg.status = -1;
1615 if (reason) {
1616 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1617 }
1618 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001619 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001620 s->op_st_chg.code = check->code;
1621 s->op_st_chg.status = check->status;
1622 s->op_st_chg.duration = check->duration;
1623 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001624
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001625 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001626 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001627
Emeric Brun9f0b4582017-10-23 14:39:51 +02001628 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001629 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001630 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001631 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001632 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001633}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001634
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001635/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1636 * enforce either maint mode or drain mode. It is not allowed to set more than
1637 * one flag at once. The equivalent "inherited" flag is propagated to all
1638 * tracking servers. Maintenance mode disables health checks (but not agent
1639 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001640 * is done. If <cause> is non-null, it will be displayed at the end of the log
1641 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001642 *
1643 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001644 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001645void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001646{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001647 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001648
1649 if (!mode)
1650 return;
1651
1652 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001653 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001654 return;
1655
Emeric Brun52a91d32017-08-31 14:41:55 +02001656 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001657 if (cause)
1658 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1659
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001660 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001661 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001662
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001663 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001664 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1665 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001666 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001667
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001668 /* compute the inherited flag to propagate */
1669 if (mode & SRV_ADMF_MAINT)
1670 mode = SRV_ADMF_IMAINT;
1671 else if (mode & SRV_ADMF_DRAIN)
1672 mode = SRV_ADMF_IDRAIN;
1673
Emeric Brun9f0b4582017-10-23 14:39:51 +02001674 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001675 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001676 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001677 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001678 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001679}
1680
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001681/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1682 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1683 * than one flag at once. The equivalent "inherited" flag is propagated to all
1684 * tracking servers. Leaving maintenance mode re-enables health checks. When
1685 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001686 *
1687 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001688 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001689void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001690{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001691 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001692
1693 if (!mode)
1694 return;
1695
1696 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001697 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001698 return;
1699
Emeric Brun52a91d32017-08-31 14:41:55 +02001700 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001701
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001702 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001703 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001704
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001705 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001706 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1707 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001708 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001709
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001710 if (mode & SRV_ADMF_MAINT)
1711 mode = SRV_ADMF_IMAINT;
1712 else if (mode & SRV_ADMF_DRAIN)
1713 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001714
Emeric Brun9f0b4582017-10-23 14:39:51 +02001715 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001716 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001717 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001718 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001719 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001720}
1721
Willy Tarreau757478e2016-11-03 19:22:19 +01001722/* principle: propagate maint and drain to tracking servers. This is useful
1723 * upon startup so that inherited states are correct.
1724 */
1725static void srv_propagate_admin_state(struct server *srv)
1726{
1727 struct server *srv2;
1728
1729 if (!srv->trackers)
1730 return;
1731
1732 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001733 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001734 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001735 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001736
Emeric Brun52a91d32017-08-31 14:41:55 +02001737 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001738 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001739 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001740 }
1741}
1742
1743/* Compute and propagate the admin states for all servers in proxy <px>.
1744 * Only servers *not* tracking another one are considered, because other
1745 * ones will be handled when the server they track is visited.
1746 */
1747void srv_compute_all_admin_states(struct proxy *px)
1748{
1749 struct server *srv;
1750
1751 for (srv = px->srv; srv; srv = srv->next) {
1752 if (srv->track)
1753 continue;
1754 srv_propagate_admin_state(srv);
1755 }
1756}
1757
Willy Tarreaudff55432012-10-10 17:51:05 +02001758/* Note: must not be declared <const> as its list will be overwritten.
1759 * Please take care of keeping this list alphabetically sorted, doing so helps
1760 * all code contributors.
1761 * Optional keywords are also declared with a NULL ->parse() function so that
1762 * the config parser can report an appropriate error when a known keyword was
1763 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001764 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001765 */
1766static struct srv_kw_list srv_kws = { "ALL", { }, {
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001767 { "backup", srv_parse_backup, 0, 1, 1 }, /* Flag as backup server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001768 { "cookie", srv_parse_cookie, 1, 1, 0 }, /* Assign a cookie to the server */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001769 { "disabled", srv_parse_disabled, 0, 1, 1 }, /* Start the server in 'disabled' state */
1770 { "enabled", srv_parse_enabled, 0, 1, 1 }, /* Start the server in 'enabled' state */
Amaury Denoyelle725f8d22021-09-20 15:16:12 +02001771 { "error-limit", srv_parse_error_limit, 1, 1, 1 }, /* Configure the consecutive count of check failures to consider a server on error */
Amaury Denoyellef9d59572021-10-18 14:40:29 +02001772 { "ws", srv_parse_ws, 1, 1, 1 }, /* websocket protocol */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001773 { "id", srv_parse_id, 1, 0, 1 }, /* set id# of server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001774 { "init-addr", srv_parse_init_addr, 1, 1, 0 }, /* */
1775 { "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 +01001776 { "maxconn", srv_parse_maxconn, 1, 1, 1 }, /* Set the max number of concurrent connection */
1777 { "maxqueue", srv_parse_maxqueue, 1, 1, 1 }, /* Set the max number of connection to put in queue */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001778 { "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 +01001779 { "minconn", srv_parse_minconn, 1, 1, 1 }, /* Enable a dynamic maxconn limit */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001780 { "namespace", srv_parse_namespace, 1, 1, 0 }, /* Namespace the server socket belongs to (if supported) */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001781 { "no-backup", srv_parse_no_backup, 0, 1, 1 }, /* Flag as non-backup server */
1782 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1, 1 }, /* Disable use of PROXY V1 protocol */
1783 { "no-send-proxy-v2", srv_parse_no_send_proxy_v2, 0, 1, 1 }, /* Disable use of PROXY V2 protocol */
1784 { "no-tfo", srv_parse_no_tfo, 0, 1, 1 }, /* Disable use of TCP Fast Open */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001785 { "non-stick", srv_parse_non_stick, 0, 1, 0 }, /* Disable stick-table persistence */
Amaury Denoyelle725f8d22021-09-20 15:16:12 +02001786 { "observe", srv_parse_observe, 1, 1, 1 }, /* Enables health adjusting based on observing communication with the server */
1787 { "on-error", srv_parse_on_error, 1, 1, 1 }, /* Configure the action on check failure */
1788 { "on-marked-down", srv_parse_on_marked_down, 1, 1, 1 }, /* Configure the action when a server is marked down */
1789 { "on-marked-up", srv_parse_on_marked_up, 1, 1, 1 }, /* Configure the action when a server is marked up */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001790 { "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 */
1791 { "pool-max-conn", srv_parse_pool_max_conn, 1, 1, 1 }, /* Set the max number of orphan idle connections, -1 means unlimited */
1792 { "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 +01001793 { "proto", srv_parse_proto, 1, 1, 1 }, /* Set the proto to use for all outgoing connections */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001794 { "proxy-v2-options", srv_parse_proxy_v2_options, 1, 1, 1 }, /* options for send-proxy-v2 */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001795 { "redir", srv_parse_redir, 1, 1, 0 }, /* Enable redirection mode */
Ilya Shipitsinba13f162021-03-19 22:21:44 +05001796 { "resolve-net", srv_parse_resolve_net, 1, 1, 0 }, /* Set the preferred network range for name resolution */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001797 { "resolve-opts", srv_parse_resolve_opts, 1, 1, 0 }, /* Set options for name resolution */
Ilya Shipitsinba13f162021-03-19 22:21:44 +05001798 { "resolve-prefer", srv_parse_resolve_prefer, 1, 1, 0 }, /* Set the preferred family for name resolution */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001799 { "resolvers", srv_parse_resolvers, 1, 1, 0 }, /* Configure the resolver to use for name resolution */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001800 { "send-proxy", srv_parse_send_proxy, 0, 1, 1 }, /* Enforce use of PROXY V1 protocol */
1801 { "send-proxy-v2", srv_parse_send_proxy_v2, 0, 1, 1 }, /* Enforce use of PROXY V2 protocol */
Frédéric Lécaille36d15652022-10-17 14:58:19 +02001802 { "shard", srv_parse_shard, 1, 1, 1 }, /* Server shard (only in peers protocol context) */
Amaury Denoyellecd8a6f22021-09-21 11:51:54 +02001803 { "slowstart", srv_parse_slowstart, 1, 1, 1 }, /* Set the warm-up timer for a previously failed server */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001804 { "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 +01001805 { "stick", srv_parse_stick, 0, 1, 0 }, /* Enable stick-table persistence */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001806 { "tfo", srv_parse_tfo, 0, 1, 1 }, /* enable TCP Fast Open of server */
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02001807 { "track", srv_parse_track, 1, 1, 1 }, /* Set the current state of the server, tracking another one */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001808 { "socks4", srv_parse_socks4, 1, 1, 0 }, /* Set the socks4 proxy of the server*/
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001809 { "usesrc", srv_parse_usesrc, 0, 1, 1 }, /* safe-guard against usesrc without preceding <source> keyword */
1810 { "weight", srv_parse_weight, 1, 1, 1 }, /* Set the load-balancing weight */
Willy Tarreaudff55432012-10-10 17:51:05 +02001811 { NULL, NULL, 0 },
1812}};
1813
Willy Tarreau0108d902018-11-25 19:14:37 +01001814INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001815
Willy Tarreau004e0452013-11-21 11:22:01 +01001816/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001817 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001818 * state is automatically disabled if the time is elapsed. If <must_update> is
1819 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001820 *
1821 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001822 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001823void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001824{
1825 struct proxy *px = sv->proxy;
1826 unsigned w;
1827
1828 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1829 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001830 if (sv->next_state == SRV_ST_STARTING)
1831 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001832 }
1833
1834 /* We must take care of not pushing the server to full throttle during slow starts.
1835 * It must also start immediately, at least at the minimal step when leaving maintenance.
1836 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001837 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001838 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1839 else
1840 w = px->lbprm.wdiv;
1841
Emeric Brun52a91d32017-08-31 14:41:55 +02001842 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001843
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001844 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001845 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001846 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001847}
1848
Willy Tarreaubaaee002006-06-26 02:48:02 +02001849/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001850 * Parses weight_str and configures sv accordingly.
1851 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001852 *
1853 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001854 */
1855const char *server_parse_weight_change_request(struct server *sv,
1856 const char *weight_str)
1857{
1858 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001859 long int w;
1860 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001861
1862 px = sv->proxy;
1863
1864 /* if the weight is terminated with '%', it is set relative to
1865 * the initial weight, otherwise it is absolute.
1866 */
1867 if (!*weight_str)
1868 return "Require <weight> or <weight%>.\n";
1869
Simon Hormanb796afa2013-02-12 10:45:53 +09001870 w = strtol(weight_str, &end, 10);
1871 if (end == weight_str)
1872 return "Empty weight string empty or preceded by garbage";
1873 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001874 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001875 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001876 /* Avoid integer overflow */
1877 if (w > 25600)
1878 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001879 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001880 if (w > 256)
1881 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001882 }
1883 else if (w < 0 || w > 256)
1884 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001885 else if (end[0] != '\0')
1886 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001887
1888 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1889 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1890
1891 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001892 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001893
1894 return NULL;
1895}
1896
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001897/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001898 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1899 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001900 * Returns:
1901 * - error string on error
1902 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001903 *
1904 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001905 */
1906const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001907 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001908{
1909 unsigned char ip[INET6_ADDRSTRLEN];
1910
1911 if (inet_pton(AF_INET6, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001912 srv_update_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001913 return NULL;
1914 }
1915 if (inet_pton(AF_INET, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001916 srv_update_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001917 return NULL;
1918 }
1919
1920 return "Could not understand IP address format.\n";
1921}
1922
Willy Tarreau46b7f532018-08-21 11:54:26 +02001923/*
1924 * Must be called with the server lock held.
1925 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001926const char *server_parse_maxconn_change_request(struct server *sv,
1927 const char *maxconn_str)
1928{
1929 long int v;
1930 char *end;
1931
1932 if (!*maxconn_str)
1933 return "Require <maxconn>.\n";
1934
1935 v = strtol(maxconn_str, &end, 10);
1936 if (end == maxconn_str)
1937 return "maxconn string empty or preceded by garbage";
1938 else if (end[0] != '\0')
1939 return "Trailing garbage in maxconn string";
1940
1941 if (sv->maxconn == sv->minconn) { // static maxconn
1942 sv->maxconn = sv->minconn = v;
1943 } else { // dynamic maxconn
1944 sv->maxconn = v;
1945 }
1946
1947 if (may_dequeue_tasks(sv, sv->proxy))
Willy Tarreau9ab78292021-06-22 18:47:51 +02001948 process_srv_queue(sv);
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001949
1950 return NULL;
1951}
1952
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001953static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1954 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001955{
1956 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001957 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001958 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001959 NULL,
1960 };
1961
1962 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001963 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001964
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001965 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001966}
1967
William Lallemand0d058672022-03-16 15:44:42 +01001968int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001969{
1970 struct sample_expr *expr;
1971
1972 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 +01001973 if (!expr) {
1974 memprintf(err, "error detected while parsing sni expression : %s", *err);
1975 return ERR_ALERT | ERR_FATAL;
1976 }
1977
1978 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1979 memprintf(err, "error detected while parsing sni expression : "
1980 " fetch method '%s' extracts information from '%s', "
Amaury Denoyellec008a632021-05-28 11:01:22 +02001981 "none of which is available here.",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001982 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001983 return ERR_ALERT | ERR_FATAL;
1984 }
1985
1986 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1987 release_sample_expr(newsrv->ssl_ctx.sni);
1988 newsrv->ssl_ctx.sni = expr;
1989
1990 return 0;
1991}
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001992
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001993static 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 +01001994{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001995 char *msg = "error encountered while processing ";
1996 char *quote = "'";
1997 char *token = args[cur_arg];
1998
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001999 if (err && *err) {
2000 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002001 msg = *err;
2002 quote = "";
2003 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002004 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002005
2006 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002007 ha_warning("%s%s%s%s.\n", msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002008 else
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002009 ha_alert("%s%s%s%s.\n", msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002010}
2011
Christopher Faulet0b365e32022-08-03 11:21:14 +02002012static void srv_conn_src_sport_range_cpy(struct server *srv, const struct server *src)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002013{
2014 int range_sz;
2015
2016 range_sz = src->conn_src.sport_range->size;
2017 if (range_sz > 0) {
2018 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
2019 if (srv->conn_src.sport_range != NULL) {
2020 int i;
2021
2022 for (i = 0; i < range_sz; i++) {
2023 srv->conn_src.sport_range->ports[i] =
2024 src->conn_src.sport_range->ports[i];
2025 }
2026 }
2027 }
2028}
2029
2030/*
2031 * Copy <src> server connection source settings to <srv> server everything needed.
2032 */
Christopher Faulet0b365e32022-08-03 11:21:14 +02002033static void srv_conn_src_cpy(struct server *srv, const struct server *src)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002034{
2035 srv->conn_src.opts = src->conn_src.opts;
2036 srv->conn_src.source_addr = src->conn_src.source_addr;
2037
2038 /* Source port range copy. */
2039 if (src->conn_src.sport_range != NULL)
2040 srv_conn_src_sport_range_cpy(srv, src);
2041
2042#ifdef CONFIG_HAP_TRANSPARENT
2043 if (src->conn_src.bind_hdr_name != NULL) {
2044 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
2045 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
2046 }
2047 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
2048 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
2049#endif
2050 if (src->conn_src.iface_name != NULL)
2051 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
2052}
2053
2054/*
2055 * Copy <src> server SSL settings to <srv> server allocating
2056 * everything needed.
2057 */
2058#if defined(USE_OPENSSL)
Christopher Faulet0b365e32022-08-03 11:21:14 +02002059static void srv_ssl_settings_cpy(struct server *srv, const struct server *src)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002060{
Christopher Faulet4ab26792021-12-01 09:50:41 +01002061 /* <src> is the current proxy's default server and SSL is enabled */
William Lallemand2c776f12021-12-28 18:47:17 +01002062 BUG_ON(src->ssl_ctx.ctx != NULL); /* the SSL_CTX must never be initialized in a default-server */
2063
Christopher Faulet4ab26792021-12-01 09:50:41 +01002064 if (src == &srv->proxy->defsrv && src->use_ssl == 1)
2065 srv->flags |= SRV_F_DEFSRV_USE_SSL;
2066
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002067 if (src->ssl_ctx.ca_file != NULL)
2068 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
2069 if (src->ssl_ctx.crl_file != NULL)
2070 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
William Lallemand2c776f12021-12-28 18:47:17 +01002071 if (src->ssl_ctx.client_crt != NULL)
2072 srv->ssl_ctx.client_crt = strdup(src->ssl_ctx.client_crt);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002073
2074 srv->ssl_ctx.verify = src->ssl_ctx.verify;
2075
Remi Tricot-Le Breton0498fa42021-07-13 18:28:22 +02002076
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002077 if (src->ssl_ctx.verify_host != NULL)
2078 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
2079 if (src->ssl_ctx.ciphers != NULL)
2080 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02002081 if (src->ssl_ctx.options)
2082 srv->ssl_ctx.options = src->ssl_ctx.options;
2083 if (src->ssl_ctx.methods.flags)
2084 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
2085 if (src->ssl_ctx.methods.min)
2086 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
2087 if (src->ssl_ctx.methods.max)
2088 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
2089
Dirkjan Bussink415150f2018-09-14 11:14:21 +02002090 if (src->ssl_ctx.ciphersuites != NULL)
2091 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002092 if (src->sni_expr != NULL)
2093 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01002094
Olivier Houchardc7566002018-11-20 23:33:50 +01002095 if (src->ssl_ctx.alpn_str) {
2096 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
2097 if (srv->ssl_ctx.alpn_str) {
2098 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
2099 src->ssl_ctx.alpn_len);
2100 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
2101 }
2102 }
Willy Tarreau80527bc2021-10-06 14:48:37 +02002103
Olivier Houchardc7566002018-11-20 23:33:50 +01002104 if (src->ssl_ctx.npn_str) {
2105 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
2106 if (srv->ssl_ctx.npn_str) {
2107 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
2108 src->ssl_ctx.npn_len);
2109 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
2110 }
2111 }
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002112}
Willy Tarreaua8a72c62021-10-06 11:48:34 +02002113
2114/* Activate ssl on server <s>.
2115 * do nothing if there is no change to apply
2116 *
2117 * Must be called with the server lock held.
2118 */
2119void srv_set_ssl(struct server *s, int use_ssl)
2120{
2121 if (s->use_ssl == use_ssl)
2122 return;
2123
2124 s->use_ssl = use_ssl;
2125 if (s->use_ssl)
2126 s->xprt = xprt_get(XPRT_SSL);
2127 else
William Dauchya087f872022-01-06 16:57:15 +01002128 s->xprt = xprt_get(XPRT_RAW);
Willy Tarreaua8a72c62021-10-06 11:48:34 +02002129}
2130
2131#endif /* USE_OPENSSL */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002132
2133/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002134 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002135 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002136 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002137 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01002138int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002139{
Christopher Faulet67957bd2017-09-27 11:00:59 +02002140 char *hostname_dn;
2141 int hostname_len, hostname_dn_len;
2142
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002143 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002144 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002145
Christopher Faulet67957bd2017-09-27 11:00:59 +02002146 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002147 hostname_dn = trash.area;
Willy Tarreaubf9498a2021-10-14 07:49:49 +02002148 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len,
Emeric Brund30e9a12020-12-23 18:49:16 +01002149 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002150 if (hostname_dn_len == -1)
2151 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002152
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002153
Christopher Faulet67957bd2017-09-27 11:00:59 +02002154 free(srv->hostname);
2155 free(srv->hostname_dn);
2156 srv->hostname = strdup(hostname);
2157 srv->hostname_dn = strdup(hostname_dn);
2158 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002159 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002160 goto err;
2161
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002162 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002163
2164 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002165 ha_free(&srv->hostname);
2166 ha_free(&srv->hostname_dn);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002167 return -1;
2168}
2169
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002170/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002171 * Copy <src> server settings to <srv> server allocating
2172 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002173 * This function is not supposed to be called at any time, but only
2174 * during server settings parsing or during server allocations from
2175 * a server template, and just after having calloc()'ed a new server.
2176 * So, <src> may only be a default server (when parsing server settings)
2177 * or a server template (during server allocations from a server template).
2178 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
2179 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002180 */
Christopher Fauletb32cb9b2022-08-03 11:28:08 +02002181void srv_settings_cpy(struct server *srv, const struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002182{
2183 /* Connection source settings copy */
2184 srv_conn_src_cpy(srv, src);
2185
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002186 if (srv_tmpl) {
2187 srv->addr = src->addr;
2188 srv->svc_port = src->svc_port;
2189 }
2190
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002191 srv->pp_opts = src->pp_opts;
2192 if (src->rdr_pfx != NULL) {
2193 srv->rdr_pfx = strdup(src->rdr_pfx);
2194 srv->rdr_len = src->rdr_len;
2195 }
2196 if (src->cookie != NULL) {
2197 srv->cookie = strdup(src->cookie);
2198 srv->cklen = src->cklen;
2199 }
2200 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01002201 srv->check.addr = src->check.addr;
2202 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002203 srv->check.use_ssl = src->check.use_ssl;
2204 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01002205 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01002206 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05002207 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002208 /* Note: 'flags' field has potentially been already initialized. */
2209 srv->flags |= src->flags;
2210 srv->do_check = src->do_check;
2211 srv->do_agent = src->do_agent;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002212 srv->check.inter = src->check.inter;
2213 srv->check.fastinter = src->check.fastinter;
2214 srv->check.downinter = src->check.downinter;
2215 srv->agent.use_ssl = src->agent.use_ssl;
2216 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002217
2218 if (src->agent.tcpcheck_rules) {
2219 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
2220 if (srv->agent.tcpcheck_rules) {
2221 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
2222 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
2223 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
2224 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
2225 &src->agent.tcpcheck_rules->preset_vars);
2226 }
2227 }
2228
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002229 srv->agent.inter = src->agent.inter;
2230 srv->agent.fastinter = src->agent.fastinter;
2231 srv->agent.downinter = src->agent.downinter;
2232 srv->maxqueue = src->maxqueue;
Amaury Denoyelle9c3251d2021-10-18 14:39:57 +02002233 srv->ws = src->ws;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002234 srv->minconn = src->minconn;
2235 srv->maxconn = src->maxconn;
2236 srv->slowstart = src->slowstart;
2237 srv->observe = src->observe;
2238 srv->onerror = src->onerror;
2239 srv->onmarkeddown = src->onmarkeddown;
2240 srv->onmarkedup = src->onmarkedup;
2241 if (src->trackit != NULL)
2242 srv->trackit = strdup(src->trackit);
2243 srv->consecutive_errors_limit = src->consecutive_errors_limit;
2244 srv->uweight = srv->iweight = src->iweight;
2245
2246 srv->check.send_proxy = src->check.send_proxy;
2247 /* health: up, but will fall down at first failure */
2248 srv->check.rise = srv->check.health = src->check.rise;
2249 srv->check.fall = src->check.fall;
2250
2251 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02002252 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
2253 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
2254 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002255 srv->check.state |= CHK_ST_PAUSED;
2256 srv->check.health = 0;
2257 }
2258
2259 /* health: up but will fall down at first failure */
2260 srv->agent.rise = srv->agent.health = src->agent.rise;
2261 srv->agent.fall = src->agent.fall;
2262
2263 if (src->resolvers_id != NULL)
2264 srv->resolvers_id = strdup(src->resolvers_id);
Emeric Brun21fbeed2020-12-23 18:01:04 +01002265 srv->resolv_opts.family_prio = src->resolv_opts.family_prio;
2266 srv->resolv_opts.accept_duplicate_ip = src->resolv_opts.accept_duplicate_ip;
2267 srv->resolv_opts.ignore_weight = src->resolv_opts.ignore_weight;
2268 if (srv->resolv_opts.family_prio == AF_UNSPEC)
2269 srv->resolv_opts.family_prio = AF_INET6;
2270 memcpy(srv->resolv_opts.pref_net,
2271 src->resolv_opts.pref_net,
2272 sizeof srv->resolv_opts.pref_net);
2273 srv->resolv_opts.pref_net_nb = src->resolv_opts.pref_net_nb;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002274
2275 srv->init_addr_methods = src->init_addr_methods;
2276 srv->init_addr = src->init_addr;
2277#if defined(USE_OPENSSL)
2278 srv_ssl_settings_cpy(srv, src);
2279#endif
2280#ifdef TCP_USER_TIMEOUT
2281 srv->tcp_ut = src->tcp_ut;
2282#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002283 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01002284 srv->pool_purge_delay = src->pool_purge_delay;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02002285 srv->low_idle_conns = src->low_idle_conns;
Olivier Houchard006e3102018-12-10 18:30:32 +01002286 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01002287 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002288
Olivier Houchard8da5f982017-08-04 18:35:36 +02002289 if (srv_tmpl)
2290 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08002291
2292 srv->check.via_socks4 = src->check.via_socks4;
2293 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002294}
2295
Willy Tarreau198e92a2021-03-05 10:23:32 +01002296/* allocate a server and attach it to the global servers_list. Returns
2297 * the server on success, otherwise NULL.
2298 */
William Lallemand313bfd12018-10-26 14:47:32 +02002299struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002300{
2301 struct server *srv;
2302
2303 srv = calloc(1, sizeof *srv);
2304 if (!srv)
2305 return NULL;
2306
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002307 srv_take(srv);
2308
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002309 srv->obj_type = OBJ_TYPE_SERVER;
2310 srv->proxy = proxy;
Willy Tarreaucdc83e02021-06-23 16:11:02 +02002311 queue_init(&srv->queue, proxy, srv);
Willy Tarreau2b718102021-04-21 07:32:39 +02002312 LIST_APPEND(&servers_list, &srv->global_list);
Emeric Brun34067662021-06-11 10:48:45 +02002313 LIST_INIT(&srv->srv_rec_item);
Emeric Brunbd78c912021-06-11 10:08:05 +02002314 LIST_INIT(&srv->ip_rec_item);
Christopher Faulet40a007c2017-07-03 15:41:01 +02002315
Emeric Brun52a91d32017-08-31 14:41:55 +02002316 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002317 srv->last_change = now.tv_sec;
2318
Christopher Faulet38290462020-04-21 11:46:40 +02002319 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002320 srv->check.status = HCHK_STATUS_INI;
2321 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002322 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02002323 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002324
Christopher Faulet38290462020-04-21 11:46:40 +02002325 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002326 srv->agent.status = HCHK_STATUS_INI;
2327 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01002328 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002329 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
Frédéric Lécaillef46c10c2020-11-23 14:29:28 +01002330#if defined(USE_QUIC)
2331 srv->cids = EB_ROOT_UNIQUE;
2332#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002333
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002334 srv->extra_counters = NULL;
William Lallemand3ce6eed2021-02-08 10:43:44 +01002335#ifdef USE_OPENSSL
2336 HA_RWLOCK_INIT(&srv->ssl_ctx.lock);
2337#endif
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002338
Willy Tarreau975b1552019-06-06 16:25:55 +02002339 /* please don't put default server settings here, they are set in
Willy Tarreau144289b2021-02-12 08:19:01 +01002340 * proxy_preset_defaults().
Willy Tarreau975b1552019-06-06 16:25:55 +02002341 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002342 return srv;
2343}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002344
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002345/* Increment the server refcount. */
2346void srv_take(struct server *srv)
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002347{
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002348 HA_ATOMIC_INC(&srv->refcount);
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002349}
2350
Amaury Denoyelle13f2e2c2021-08-09 15:08:54 +02002351/* Deallocate a server <srv> and its member. <srv> must be allocated. For
2352 * dynamic servers, its refcount is decremented first. The free operations are
2353 * conducted only if the refcount is nul, unless the process is stopping.
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002354 *
2355 * As a convenience, <srv.next> is returned if srv is not NULL. It may be useful
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002356 * when calling srv_drop on the list of servers.
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002357 */
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002358struct server *srv_drop(struct server *srv)
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002359{
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002360 struct server *next = NULL;
2361
William Lallemand4c395fc2021-08-20 10:10:15 +02002362 if (!srv)
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002363 goto end;
2364
2365 next = srv->next;
William Lallemand4c395fc2021-08-20 10:10:15 +02002366
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002367 /* For dynamic servers, decrement the reference counter. Only free the
2368 * server when reaching zero.
2369 */
Amaury Denoyelle13f2e2c2021-08-09 15:08:54 +02002370 if (likely(!(global.mode & MODE_STOPPING))) {
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02002371 if (HA_ATOMIC_SUB_FETCH(&srv->refcount, 1))
2372 goto end;
Amaury Denoyelled6b70802021-08-02 15:50:00 +02002373 }
2374
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002375 task_destroy(srv->warmup);
Christopher Fauletdcac4182021-06-15 16:17:17 +02002376 task_destroy(srv->srvrq_check);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002377
2378 free(srv->id);
2379 free(srv->cookie);
2380 free(srv->hostname);
2381 free(srv->hostname_dn);
2382 free((char*)srv->conf.file);
2383 free(srv->per_thr);
Willy Tarreauc21a1872022-11-21 14:14:06 +01002384 free(srv->per_tgrp);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002385 free(srv->curr_idle_thr);
2386 free(srv->resolvers_id);
2387 free(srv->addr_node.key);
Amaury Denoyellefb247942021-04-20 16:48:22 +02002388 free(srv->lb_nodes);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002389
2390 if (srv->use_ssl == 1 || srv->check.use_ssl == 1 || (srv->proxy->options & PR_O_TCPCHK_SSL)) {
2391 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2392 xprt_get(XPRT_SSL)->destroy_srv(srv);
2393 }
2394 HA_SPIN_DESTROY(&srv->lock);
2395
Willy Tarreau2b718102021-04-21 07:32:39 +02002396 LIST_DELETE(&srv->global_list);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002397
2398 EXTRA_COUNTERS_FREE(srv->extra_counters);
2399
Tim Duesterhus025b93e2021-11-04 21:03:52 +01002400 ha_free(&srv);
Amaury Denoyellef5c1e122021-08-25 15:03:46 +02002401
2402 end:
2403 return next;
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002404}
2405
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02002406/* Remove a server <srv> from a tracking list if <srv> is tracking another
2407 * server. No special care is taken if <srv> is tracked itself by another one :
2408 * this situation should be avoided by the caller.
2409 *
2410 * Not thread-safe.
2411 */
2412static void release_server_track(struct server *srv)
2413{
2414 struct server *strack = srv->track;
2415 struct server **base;
2416
2417 if (!strack)
2418 return;
2419
2420 for (base = &strack->trackers; *base; base = &((*base)->tracknext)) {
2421 if (*base == srv) {
2422 *base = srv->tracknext;
2423 return;
2424 }
2425 }
2426
2427 /* srv not found on the tracking list, this should never happen */
2428 BUG_ON(!*base);
2429}
2430
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002431/*
2432 * Parse as much as possible such a range string argument: low[-high]
2433 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
2434 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
2435 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
2436 * Returns 0 if succeeded, -1 if not.
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002437 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002438static int _srv_parse_tmpl_range(struct server *srv, const char *arg,
2439 int *nb_low, int *nb_high)
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002440{
2441 char *nb_high_arg;
2442
2443 *nb_high = 0;
2444 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002445 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002446
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002447 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002448 *nb_high_arg++ = '\0';
2449 *nb_high = atoi(nb_high_arg);
2450 }
2451 else {
2452 *nb_high += *nb_low;
2453 *nb_low = 1;
2454 }
2455
2456 if (*nb_low < 0 || *nb_high < *nb_low)
2457 return -1;
2458
2459 return 0;
2460}
2461
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002462/* Parse as much as possible such a range string argument: low[-high]
2463 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
2464 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
2465 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002466 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002467 * initialize a new server on startup.
2468 *
2469 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
2470 * Returns 0 if succeeded, -1 if not.
2471 */
2472static inline void _srv_parse_set_id_from_prefix(struct server *srv,
2473 const char *prefix, int nb)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002474{
2475 chunk_printf(&trash, "%s%d", prefix, nb);
2476 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002477 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002478}
2479
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002480/* Initialize as much as possible servers from <srv> server template.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002481 * Note that a server template is a special server with
2482 * a few different parameters than a server which has
2483 * been parsed mostly the same way as a server.
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002484 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002485 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002486 * initialize a new server on startup.
2487 *
Joseph Herlant44466822018-11-15 08:57:51 -08002488 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002489 * 'srv' template included.
2490 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002491static int _srv_parse_tmpl_init(struct server *srv, struct proxy *px)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002492{
2493 int i;
2494 struct server *newsrv;
2495
2496 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 +02002497 newsrv = new_server(px);
2498 if (!newsrv)
2499 goto err;
2500
Christopher Faulet75bef002020-11-02 22:04:55 +01002501 newsrv->conf.file = strdup(srv->conf.file);
2502 newsrv->conf.line = srv->conf.line;
2503
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002504 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002505 srv_prepare_for_resolution(newsrv, srv->hostname);
Willy Tarreau80527bc2021-10-06 14:48:37 +02002506
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002507 if (newsrv->sni_expr) {
2508 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
2509 if (!newsrv->ssl_ctx.sni)
2510 goto err;
2511 }
Willy Tarreau80527bc2021-10-06 14:48:37 +02002512
Emeric Brun34067662021-06-11 10:48:45 +02002513 /* append to list of servers available to receive an hostname */
Emeric Bruncaef19e2021-06-14 10:02:18 +02002514 if (newsrv->srvrq)
2515 LIST_APPEND(&newsrv->srvrq->attached_servers, &newsrv->srv_rec_item);
Emeric Brun34067662021-06-11 10:48:45 +02002516
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002517 /* Set this new server ID. */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002518 _srv_parse_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002519
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002520 /* Linked backwards first. This will be restablished after parsing. */
2521 newsrv->next = px->srv;
2522 px->srv = newsrv;
2523 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002524 _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 +02002525
2526 return i - srv->tmpl_info.nb_low;
2527
2528 err:
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002529 _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 +02002530 if (newsrv) {
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002531 release_sample_expr(newsrv->ssl_ctx.sni);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002532 free_check(&newsrv->agent);
2533 free_check(&newsrv->check);
Willy Tarreau2b718102021-04-21 07:32:39 +02002534 LIST_DELETE(&newsrv->global_list);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002535 }
2536 free(newsrv);
2537 return i - srv->tmpl_info.nb_low;
2538}
2539
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002540/* Allocate a new server pointed by <srv> and try to parse the first arguments
2541 * in <args> as an address for a server or an address-range for a template or
2542 * nothing for a default-server. <cur_arg> is incremented to the next argument.
2543 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002544 * This function is first intended to be used through parse_server to
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002545 * initialize a new server on startup.
2546 *
2547 * A mask of errors is returned. On a parsing error, ERR_FATAL is set. In case
2548 * of memory exhaustion, ERR_ABORT is set. If the server cannot be allocated,
2549 * <srv> will be set to NULL.
2550 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002551static int _srv_parse_init(struct server **srv, char **args, int *cur_arg,
2552 struct proxy *curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002553 int parse_flags)
Willy Tarreau272adea2014-03-31 10:39:59 +02002554{
2555 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002556 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002557 int err_code = 0;
Willy Tarreau07101d52015-09-08 16:16:35 +02002558 char *fqdn = NULL;
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002559 int tmpl_range_low = 0, tmpl_range_high = 0;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002560 char *errmsg = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002561
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002562 *srv = NULL;
2563
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002564 /* There is no mandatory first arguments for default server. */
2565 if (parse_flags & SRV_PARSE_PARSE_ADDR) {
2566 if (parse_flags & SRV_PARSE_TEMPLATE) {
2567 if (!*args[3]) {
2568 /* 'server-template' line number of argument check. */
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002569 ha_alert("'%s' expects <prefix> <nb | range> <addr>[:<port>] as arguments.\n",
2570 args[0]);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002571 err_code |= ERR_ALERT | ERR_FATAL;
2572 goto out;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002573 }
2574
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002575 err = invalid_prefix_char(args[1]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002576 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002577 else {
2578 if (!*args[2]) {
2579 /* 'server' line number of argument check. */
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002580 ha_alert("'%s' expects <name> and <addr>[:<port>] as arguments.\n",
2581 args[0]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002582 err_code |= ERR_ALERT | ERR_FATAL;
2583 goto out;
2584 }
2585
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002586 err = invalid_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002587 }
2588
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002589 if (err) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002590 ha_alert("character '%c' is not permitted in %s %s '%s'.\n",
2591 *err, args[0], !(parse_flags & SRV_PARSE_TEMPLATE) ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002592 err_code |= ERR_ALERT | ERR_FATAL;
2593 goto out;
2594 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002595 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002596
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002597 *cur_arg = 2;
2598 if (parse_flags & SRV_PARSE_TEMPLATE) {
2599 /* Parse server-template <nb | range> arg. */
2600 if (_srv_parse_tmpl_range(newsrv, args[*cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002601 ha_alert("Wrong %s number or range arg '%s'.\n",
2602 args[0], args[*cur_arg]);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002603 err_code |= ERR_ALERT | ERR_FATAL;
2604 goto out;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002605 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002606 (*cur_arg)++;
2607 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002608
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002609 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
2610 struct sockaddr_storage *sk;
2611 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002612
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002613 *srv = newsrv = new_server(curproxy);
2614 if (!newsrv) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002615 ha_alert("out of memory.\n");
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002616 err_code |= ERR_ALERT | ERR_ABORT;
2617 goto out;
2618 }
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002619 register_parsing_obj(&newsrv->obj_type);
Willy Tarreau272adea2014-03-31 10:39:59 +02002620
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002621 if (parse_flags & SRV_PARSE_TEMPLATE) {
2622 newsrv->tmpl_info.nb_low = tmpl_range_low;
2623 newsrv->tmpl_info.nb_high = tmpl_range_high;
2624 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002625
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002626 if (parse_flags & SRV_PARSE_DYNAMIC)
2627 newsrv->flags |= SRV_F_DYNAMIC;
2628
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002629 /* Note: for a server template, its id is its prefix.
2630 * This is a temporary id which will be used for server allocations to come
2631 * after parsing.
2632 */
2633 if (!(parse_flags & SRV_PARSE_TEMPLATE))
2634 newsrv->id = strdup(args[1]);
2635 else
2636 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002637
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002638 /* several ways to check the port component :
2639 * - IP => port=+0, relative (IPv4 only)
2640 * - IP: => port=+0, relative
2641 * - IP:N => port=N, absolute
2642 * - IP:+N => port=+N, relative
2643 * - IP:-N => port=-N, relative
2644 */
2645 if (!(parse_flags & SRV_PARSE_PARSE_ADDR))
2646 goto skip_addr;
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002647
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002648 sk = str2sa_range(args[*cur_arg], &port, &port1, &port2, NULL, NULL,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002649 &errmsg, NULL, &fqdn,
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002650 (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);
2651 if (!sk) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002652 ha_alert("%s\n", errmsg);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002653 err_code |= ERR_ALERT | ERR_FATAL;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002654 ha_free(&errmsg);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002655 goto out;
2656 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002657
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002658 if (!port1 || !port2) {
2659 /* no port specified, +offset, -offset */
2660 newsrv->flags |= SRV_F_MAPPORTS;
2661 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002662
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002663 /* save hostname and create associated name resolution */
2664 if (fqdn) {
2665 if (fqdn[0] == '_') { /* SRV record */
2666 /* Check if a SRV request already exists, and if not, create it */
2667 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2668 newsrv->srvrq = new_resolv_srvrq(newsrv, fqdn);
2669 if (newsrv->srvrq == NULL) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002670 err_code |= ERR_ALERT | ERR_FATAL;
2671 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002672 }
Christopher Faulet81ba74a2021-06-29 20:52:35 +02002673 LIST_APPEND(&newsrv->srvrq->attached_servers, &newsrv->srv_rec_item);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002674 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002675 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002676 ha_alert("Can't create DNS resolution for server '%s'\n",
2677 newsrv->id);
Willy Tarreau272adea2014-03-31 10:39:59 +02002678 err_code |= ERR_ALERT | ERR_FATAL;
2679 goto out;
2680 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002681 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002682
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002683 newsrv->addr = *sk;
2684 newsrv->svc_port = port;
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02002685 /*
2686 * we don't need to lock the server here, because
2687 * we are in the process of initializing.
2688 *
2689 * Note that the server is not attached into the proxy tree if
2690 * this is a dynamic server.
2691 */
2692 srv_set_addr_desc(newsrv, !(parse_flags & SRV_PARSE_DYNAMIC));
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002693
Willy Tarreau14e7f292021-10-27 17:41:07 +02002694 if (!newsrv->srvrq && !newsrv->hostname &&
2695 !protocol_lookup(newsrv->addr.ss_family, PROTO_TYPE_STREAM, 0)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002696 ha_alert("Unknown protocol family %d '%s'\n",
2697 newsrv->addr.ss_family, args[*cur_arg]);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002698 err_code |= ERR_ALERT | ERR_FATAL;
2699 goto out;
Willy Tarreau272adea2014-03-31 10:39:59 +02002700 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002701
2702 (*cur_arg)++;
2703 skip_addr:
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002704 if (!(parse_flags & SRV_PARSE_DYNAMIC)) {
2705 /* Copy default server settings to new server */
2706 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
2707 } else {
2708 /* Initialize dynamic server weight to 1 */
2709 newsrv->uweight = newsrv->iweight = 1;
2710
2711 /* A dynamic server is disabled on startup */
2712 newsrv->next_admin = SRV_ADMF_FMAINT;
2713 newsrv->next_state = SRV_ST_STOPPED;
2714 server_recalc_eweight(newsrv, 0);
Amaury Denoyellefca18172021-07-22 16:03:36 +02002715
2716 /* Set default values for checks */
2717 newsrv->check.inter = DEF_CHKINTR;
2718 newsrv->check.rise = DEF_RISETIME;
2719 newsrv->check.fall = DEF_FALLTIME;
2720
2721 newsrv->agent.inter = DEF_CHKINTR;
2722 newsrv->agent.rise = DEF_AGENT_RISETIME;
2723 newsrv->agent.fall = DEF_AGENT_FALLTIME;
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002724 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002725 HA_SPIN_INIT(&newsrv->lock);
2726 }
2727 else {
2728 *srv = newsrv = &curproxy->defsrv;
2729 *cur_arg = 1;
2730 newsrv->resolv_opts.family_prio = AF_INET6;
2731 newsrv->resolv_opts.accept_duplicate_ip = 0;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002732 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002733
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002734 free(fqdn);
2735 return 0;
Willy Tarreau9faebe32019-06-07 19:00:37 +02002736
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002737out:
2738 free(fqdn);
2739 return err_code;
2740}
Willy Tarreau272adea2014-03-31 10:39:59 +02002741
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002742/* Parse the server keyword in <args>.
2743 * <cur_arg> is incremented beyond the keyword optional value. Note that this
2744 * might not be the case if an error is reported.
2745 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002746 * This function is first intended to be used through parse_server to
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002747 * initialize a new server on startup.
2748 *
2749 * A mask of errors is returned. ERR_FATAL is set if the parsing should be
2750 * interrupted.
2751 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002752static int _srv_parse_kw(struct server *srv, char **args, int *cur_arg,
2753 struct proxy *curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002754 int parse_flags)
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002755{
2756 int err_code = 0;
2757 struct srv_kw *kw;
2758 const char *best;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002759 char *errmsg = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002760
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002761 kw = srv_find_kw(args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002762 if (!kw) {
2763 best = srv_find_best_kw(args[*cur_arg]);
2764 if (best)
Willy Tarreau245721b2022-05-31 09:25:34 +02002765 ha_alert("unknown keyword '%s'; did you mean '%s' maybe ?%s\n",
2766 args[*cur_arg], best,
2767 (parse_flags & SRV_PARSE_PARSE_ADDR) ? "" :
2768 " Hint: no address was expected for this server.");
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002769 else
Willy Tarreau245721b2022-05-31 09:25:34 +02002770 ha_alert("unknown keyword '%s'.%s\n", args[*cur_arg],
2771 (parse_flags & SRV_PARSE_PARSE_ADDR) ? "" :
2772 " Hint: no address was expected for this server.");
Willy Tarreau272adea2014-03-31 10:39:59 +02002773
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002774 return ERR_ALERT | ERR_FATAL;
2775 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002776
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002777 if (!kw->parse) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002778 ha_alert("'%s' option is not implemented in this version (check build options)\n",
2779 args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002780 err_code = ERR_ALERT | ERR_FATAL;
2781 goto out;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002782 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002783
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002784 if ((parse_flags & SRV_PARSE_DEFAULT_SERVER) && !kw->default_ok) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002785 ha_alert("'%s' option is not accepted in default-server sections\n",
2786 args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002787 err_code = ERR_ALERT;
2788 goto out;
2789 }
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002790 else if ((parse_flags & SRV_PARSE_DYNAMIC) && !kw->dynamic_ok) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002791 ha_alert("'%s' option is not accepted for dynamic server\n",
2792 args[*cur_arg]);
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002793 err_code |= ERR_ALERT;
2794 goto out;
2795 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002796
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002797 err_code = kw->parse(args, cur_arg, curproxy, srv, &errmsg);
2798 if (err_code) {
2799 display_parser_err(NULL, 0, args, *cur_arg, err_code, &errmsg);
2800 free(errmsg);
2801 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002802
2803out:
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002804 if (kw->skip != -1)
2805 *cur_arg += 1 + kw->skip;
2806
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002807 return err_code;
2808}
2809
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002810/* This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002811 * initialize a new server on startup.
2812 */
2813static int _srv_parse_sni_expr_init(char **args, int cur_arg,
2814 struct server *srv, struct proxy *proxy,
2815 char **errmsg)
2816{
2817 int ret;
2818
2819 if (!srv->sni_expr)
2820 return 0;
2821
2822 ret = server_parse_sni_expr(srv, proxy, errmsg);
2823 if (!ret)
2824 return 0;
2825
2826 return ret;
2827}
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002828
2829/* Server initializations finalization.
2830 * Initialize health check, agent check and SNI expression if enabled.
2831 * Must not be called for a default server instance.
2832 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002833 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002834 * initialize a new server on startup.
2835 */
2836static int _srv_parse_finalize(char **args, int cur_arg,
2837 struct server *srv, struct proxy *px,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002838 int parse_flags)
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002839{
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002840 int ret;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002841 char *errmsg = NULL;
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002842
2843 if (srv->do_check && srv->trackit) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002844 ha_alert("unable to enable checks and tracking at the same time!\n");
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002845 return ERR_ALERT | ERR_FATAL;
2846 }
2847
2848 if (srv->do_agent && !srv->agent.port) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002849 ha_alert("server %s does not have agent port. Agent check has been disabled.\n",
2850 srv->id);
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002851 return ERR_ALERT | ERR_FATAL;
2852 }
2853
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002854 if ((ret = _srv_parse_sni_expr_init(args, cur_arg, srv, px, &errmsg)) != 0) {
2855 if (errmsg) {
2856 ha_alert("%s\n", errmsg);
2857 free(errmsg);
2858 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002859 return ret;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002860 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002861
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002862 /* A dynamic server is disabled on startup. It must not be counted as
2863 * an active backend entry.
2864 */
2865 if (!(parse_flags & SRV_PARSE_DYNAMIC)) {
2866 if (srv->flags & SRV_F_BACKUP)
2867 px->srv_bck++;
2868 else
2869 px->srv_act++;
2870 }
2871
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002872 srv_lb_commit_status(srv);
2873
2874 return 0;
2875}
2876
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002877int parse_server(const char *file, int linenum, char **args,
2878 struct proxy *curproxy, const struct proxy *defproxy,
2879 int parse_flags)
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002880{
2881 struct server *newsrv = NULL;
2882 int err_code = 0;
2883
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002884 int cur_arg;
Willy Tarreau272adea2014-03-31 10:39:59 +02002885
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002886 set_usermsgs_ctx(file, linenum, NULL);
2887
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002888 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER) && curproxy == defproxy) {
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002889 ha_alert("'%s' not allowed in 'defaults' section.\n", args[0]);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002890 err_code |= ERR_ALERT | ERR_FATAL;
2891 goto out;
2892 }
2893 else if (failifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) {
2894 err_code |= ERR_ALERT | ERR_FATAL;
2895 goto out;
2896 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002897
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002898 if ((parse_flags & (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) ==
2899 (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) {
2900 if (!*args[2])
2901 return 0;
2902 }
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002903
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002904 err_code = _srv_parse_init(&newsrv, args, &cur_arg, curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002905 parse_flags);
Amaury Denoyellecf58dd72021-03-08 16:35:54 +01002906
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002907 /* the servers are linked backwards first */
2908 if (newsrv && !(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
2909 newsrv->next = curproxy->srv;
2910 curproxy->srv = newsrv;
2911 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002912
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002913 if (err_code & ERR_CODE)
2914 goto out;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002915
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002916 newsrv->conf.file = strdup(file);
2917 newsrv->conf.line = linenum;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002918
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002919 while (*args[cur_arg]) {
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002920 err_code = _srv_parse_kw(newsrv, args, &cur_arg, curproxy,
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002921 parse_flags);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002922 if (err_code & ERR_FATAL)
2923 goto out;
2924 }
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002925
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002926 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02002927 err_code |= _srv_parse_finalize(args, cur_arg, newsrv, curproxy, parse_flags);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002928 if (err_code & ERR_FATAL)
2929 goto out;
Willy Tarreau272adea2014-03-31 10:39:59 +02002930 }
Amaury Denoyellecf58dd72021-03-08 16:35:54 +01002931
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002932 if (parse_flags & SRV_PARSE_TEMPLATE)
2933 _srv_parse_tmpl_init(newsrv, curproxy);
2934
Amaury Denoyelle1613b4a2021-06-08 17:00:20 +02002935 /* If the server id is fixed, insert it in the proxy used_id tree.
2936 * This is needed to detect a later duplicate id via srv_parse_id.
2937 *
2938 * If no is specified, a dynamic one is generated in
2939 * check_config_validity.
2940 */
2941 if (newsrv->flags & SRV_F_FORCED_ID)
2942 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
2943
Amaury Denoyelle24abb0c2021-05-07 15:13:51 +02002944 HA_DIAG_WARNING_COND((curproxy->cap & PR_CAP_LB) && !newsrv->uweight,
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002945 "configured with weight of 0 will never be selected by load balancing algorithms\n");
Amaury Denoyelleda0e7f62021-03-30 10:26:27 +02002946
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002947 reset_usermsgs_ctx();
Willy Tarreau272adea2014-03-31 10:39:59 +02002948 return 0;
2949
2950 out:
Amaury Denoyelle0fc136c2021-05-28 11:00:18 +02002951 reset_usermsgs_ctx();
Willy Tarreau272adea2014-03-31 10:39:59 +02002952 return err_code;
2953}
2954
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002955/* Returns a pointer to the first server matching either id <id>.
2956 * NULL is returned if no match is found.
2957 * the lookup is performed in the backend <bk>
2958 */
2959struct server *server_find_by_id(struct proxy *bk, int id)
2960{
2961 struct eb32_node *eb32;
2962 struct server *curserver;
2963
2964 if (!bk || (id ==0))
2965 return NULL;
2966
2967 /* <bk> has no backend capabilities, so it can't have a server */
2968 if (!(bk->cap & PR_CAP_BE))
2969 return NULL;
2970
2971 curserver = NULL;
2972
2973 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2974 if (eb32)
2975 curserver = container_of(eb32, struct server, conf.id);
2976
2977 return curserver;
2978}
2979
2980/* Returns a pointer to the first server matching either name <name>, or id
2981 * if <name> starts with a '#'. NULL is returned if no match is found.
2982 * the lookup is performed in the backend <bk>
2983 */
2984struct server *server_find_by_name(struct proxy *bk, const char *name)
2985{
2986 struct server *curserver;
2987
2988 if (!bk || !name)
2989 return NULL;
2990
2991 /* <bk> has no backend capabilities, so it can't have a server */
2992 if (!(bk->cap & PR_CAP_BE))
2993 return NULL;
2994
2995 curserver = NULL;
2996 if (*name == '#') {
2997 curserver = server_find_by_id(bk, atoi(name + 1));
2998 if (curserver)
2999 return curserver;
3000 }
3001 else {
3002 curserver = bk->srv;
3003
3004 while (curserver && (strcmp(curserver->id, name) != 0))
3005 curserver = curserver->next;
3006
3007 if (curserver)
3008 return curserver;
3009 }
3010
3011 return NULL;
3012}
3013
3014struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
3015{
3016 struct server *byname;
3017 struct server *byid;
3018
3019 if (!name && !id)
3020 return NULL;
3021
3022 if (diff)
3023 *diff = 0;
3024
3025 byname = byid = NULL;
3026
3027 if (name) {
3028 byname = server_find_by_name(bk, name);
3029 if (byname && (!id || byname->puid == id))
3030 return byname;
3031 }
3032
3033 /* remaining possibilities :
3034 * - name not set
3035 * - name set but not found
3036 * - name found but ID doesn't match
3037 */
3038 if (id) {
3039 byid = server_find_by_id(bk, id);
3040 if (byid) {
3041 if (byname) {
3042 /* use id only if forced by configuration */
3043 if (byid->flags & SRV_F_FORCED_ID) {
3044 if (diff)
3045 *diff |= 2;
3046 return byid;
3047 }
3048 else {
3049 if (diff)
3050 *diff |= 1;
3051 return byname;
3052 }
3053 }
3054
3055 /* remaining possibilities:
3056 * - name not set
3057 * - name set but not found
3058 */
3059 if (name && diff)
3060 *diff |= 2;
3061 return byid;
3062 }
3063
3064 /* id bot found */
3065 if (byname) {
3066 if (diff)
3067 *diff |= 1;
3068 return byname;
3069 }
3070 }
3071
3072 return NULL;
3073}
3074
Simon Horman7d09b9a2013-02-12 10:45:51 +09003075/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003076 * update a server's current IP address.
3077 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3078 * ip is in network format.
3079 * updater is a string which contains an information about the requester of the update.
3080 * updater is used if not NULL.
3081 *
3082 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003083 *
3084 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003085 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003086int srv_update_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003087{
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +02003088 /* save the new IP family & address if necessary */
3089 switch (ip_sin_family) {
3090 case AF_INET:
3091 if (s->addr.ss_family == ip_sin_family &&
3092 !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4))
3093 return 0;
3094 break;
3095 case AF_INET6:
3096 if (s->addr.ss_family == ip_sin_family &&
3097 !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16))
3098 return 0;
3099 break;
3100 };
3101
Baptiste Assmann14e40142015-04-14 01:13:07 +02003102 /* generates a log line and a warning on stderr */
3103 if (1) {
3104 /* book enough space for both IPv4 and IPv6 */
3105 char oldip[INET6_ADDRSTRLEN];
3106 char newip[INET6_ADDRSTRLEN];
3107
3108 memset(oldip, '\0', INET6_ADDRSTRLEN);
3109 memset(newip, '\0', INET6_ADDRSTRLEN);
3110
3111 /* copy old IP address in a string */
3112 switch (s->addr.ss_family) {
3113 case AF_INET:
3114 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3115 break;
3116 case AF_INET6:
3117 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3118 break;
Christopher Fauletb0b76072020-09-08 10:38:40 +02003119 default:
3120 strcpy(oldip, "(none)");
3121 break;
Baptiste Assmann14e40142015-04-14 01:13:07 +02003122 };
3123
3124 /* copy new IP address in a string */
3125 switch (ip_sin_family) {
3126 case AF_INET:
3127 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3128 break;
3129 case AF_INET6:
3130 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3131 break;
3132 };
3133
3134 /* save log line into a buffer */
3135 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3136 s->proxy->id, s->id, oldip, newip, updater);
3137
3138 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003139 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003140
3141 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003142 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003143 }
3144
3145 /* save the new IP family */
3146 s->addr.ss_family = ip_sin_family;
3147 /* save the new IP address */
3148 switch (ip_sin_family) {
3149 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003150 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003151 break;
3152 case AF_INET6:
3153 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3154 break;
3155 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003156 srv_set_dyncookie(s);
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02003157 srv_set_addr_desc(s, 1);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003158
3159 return 0;
3160}
3161
William Dauchy7cabc062021-02-11 22:51:24 +01003162/* update agent health check address and port
3163 * addr can be ip4/ip6 or a hostname
3164 * if one error occurs, don't apply anything
3165 * must be called with the server lock held.
3166 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003167const char *srv_update_agent_addr_port(struct server *s, const char *addr, const char *port)
William Dauchy7cabc062021-02-11 22:51:24 +01003168{
3169 struct sockaddr_storage sk;
3170 struct buffer *msg;
3171 int new_port;
3172
3173 msg = get_trash_chunk();
3174 chunk_reset(msg);
3175
3176 if (!(s->agent.state & CHK_ST_ENABLED)) {
3177 chunk_strcat(msg, "agent checks are not enabled on this server");
3178 goto out;
3179 }
3180 if (addr) {
3181 memset(&sk, 0, sizeof(struct sockaddr_storage));
3182 if (str2ip(addr, &sk) == NULL) {
3183 chunk_appendf(msg, "invalid addr '%s'", addr);
3184 goto out;
3185 }
3186 }
3187 if (port) {
3188 if (strl2irc(port, strlen(port), &new_port) != 0) {
3189 chunk_appendf(msg, "provided port is not an integer");
3190 goto out;
3191 }
3192 if (new_port < 0 || new_port > 65535) {
3193 chunk_appendf(msg, "provided port is invalid");
3194 goto out;
3195 }
3196 }
3197out:
3198 if (msg->data)
3199 return msg->area;
3200 else {
3201 if (addr)
3202 set_srv_agent_addr(s, &sk);
3203 if (port)
3204 set_srv_agent_port(s, new_port);
3205 }
3206 return NULL;
3207}
3208
William Dauchyb456e1f2021-02-11 22:51:23 +01003209/* update server health check address and port
3210 * addr must be ip4 or ip6, it won't be resolved
3211 * if one error occurs, don't apply anything
3212 * must be called with the server lock held.
3213 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003214const char *srv_update_check_addr_port(struct server *s, const char *addr, const char *port)
William Dauchyb456e1f2021-02-11 22:51:23 +01003215{
3216 struct sockaddr_storage sk;
3217 struct buffer *msg;
3218 int new_port;
3219
3220 msg = get_trash_chunk();
3221 chunk_reset(msg);
3222
3223 if (!(s->check.state & CHK_ST_ENABLED)) {
3224 chunk_strcat(msg, "health checks are not enabled on this server");
3225 goto out;
3226 }
3227 if (addr) {
3228 memset(&sk, 0, sizeof(struct sockaddr_storage));
3229 if (str2ip2(addr, &sk, 0) == NULL) {
3230 chunk_appendf(msg, "invalid addr '%s'", addr);
3231 goto out;
3232 }
3233 }
3234 if (port) {
3235 if (strl2irc(port, strlen(port), &new_port) != 0) {
3236 chunk_appendf(msg, "provided port is not an integer");
3237 goto out;
3238 }
3239 if (new_port < 0 || new_port > 65535) {
3240 chunk_appendf(msg, "provided port is invalid");
3241 goto out;
3242 }
3243 /* prevent the update of port to 0 if MAPPORTS are in use */
3244 if ((s->flags & SRV_F_MAPPORTS) && new_port == 0) {
3245 chunk_appendf(msg, "can't unset 'port' since MAPPORTS is in use");
3246 goto out;
3247 }
3248 }
3249out:
3250 if (msg->data)
3251 return msg->area;
3252 else {
3253 if (addr)
3254 s->check.addr = sk;
3255 if (port)
3256 s->check.port = new_port;
3257 }
3258 return NULL;
3259}
3260
Baptiste Assmann14e40142015-04-14 01:13:07 +02003261/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003262 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3263 *
3264 * Caller can pass its name through <updater> to get it integrated in the response message
3265 * returned by the function.
3266 *
3267 * The function first does the following, in that order:
3268 * - validates the new addr and/or port
3269 * - checks if an update is required (new IP or port is different than current ones)
3270 * - checks the update is allowed:
3271 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3272 * - allow all changes if no CHECKS are configured
3273 * - if CHECK is configured:
3274 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3275 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3276 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003277 *
3278 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003279 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003280const char *srv_update_addr_port(struct server *s, const char *addr, const char *port, char *updater)
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003281{
3282 struct sockaddr_storage sa;
3283 int ret, port_change_required;
3284 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003285 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003286 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003287 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003288
3289 msg = get_trash_chunk();
3290 chunk_reset(msg);
3291
3292 if (addr) {
3293 memset(&sa, 0, sizeof(struct sockaddr_storage));
3294 if (str2ip2(addr, &sa, 0) == NULL) {
3295 chunk_printf(msg, "Invalid addr '%s'", addr);
3296 goto out;
3297 }
3298
3299 /* changes are allowed on AF_INET* families only */
3300 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3301 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3302 goto out;
3303 }
3304
3305 /* collecting data currently setup */
3306 memset(current_addr, '\0', sizeof(current_addr));
3307 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3308 /* changes are allowed on AF_INET* families only */
3309 if ((ret != AF_INET) && (ret != AF_INET6)) {
3310 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3311 goto out;
3312 }
3313
3314 /* applying ADDR changes if required and allowed
3315 * ipcmp returns 0 when both ADDR are the same
3316 */
3317 if (ipcmp(&s->addr, &sa) == 0) {
3318 chunk_appendf(msg, "no need to change the addr");
3319 goto port;
3320 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003321 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003322 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003323
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003324 /* update report for caller */
3325 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3326 }
3327
3328 port:
3329 if (port) {
3330 char sign = '\0';
3331 char *endptr;
3332
3333 if (addr)
3334 chunk_appendf(msg, ", ");
3335
3336 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003337 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003338
3339 /* check if PORT change is required */
3340 port_change_required = 0;
3341
3342 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003343 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003344 new_port = strtol(port, &endptr, 10);
3345 if ((errno != 0) || (port == endptr)) {
3346 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3347 goto out;
3348 }
3349
3350 /* check if caller triggers a port mapped or offset */
3351 if (sign == '-' || (sign == '+')) {
3352 /* check if server currently uses port map */
3353 if (!(s->flags & SRV_F_MAPPORTS)) {
3354 /* switch from fixed port to port map mandatorily triggers
3355 * a port change */
3356 port_change_required = 1;
3357 /* check is configured
3358 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3359 * prevent PORT change if check doesn't have it's dedicated port while switching
3360 * to port mapping */
William Dauchy69f118d2021-02-03 22:30:07 +01003361 if (!s->check.port) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003362 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.");
3363 goto out;
3364 }
3365 }
3366 /* we're already using port maps */
3367 else {
3368 port_change_required = current_port != new_port;
3369 }
3370 }
3371 /* fixed port */
3372 else {
3373 port_change_required = current_port != new_port;
3374 }
3375
3376 /* applying PORT changes if required and update response message */
3377 if (port_change_required) {
3378 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003379 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003380 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003381
3382 /* prepare message */
3383 chunk_appendf(msg, "port changed from '");
3384 if (s->flags & SRV_F_MAPPORTS)
3385 chunk_appendf(msg, "+");
3386 chunk_appendf(msg, "%d' to '", current_port);
3387
3388 if (sign == '-') {
3389 s->flags |= SRV_F_MAPPORTS;
3390 chunk_appendf(msg, "%c", sign);
3391 /* just use for result output */
3392 new_port = -new_port;
3393 }
3394 else if (sign == '+') {
3395 s->flags |= SRV_F_MAPPORTS;
3396 chunk_appendf(msg, "%c", sign);
3397 }
3398 else {
3399 s->flags &= ~SRV_F_MAPPORTS;
3400 }
3401
3402 chunk_appendf(msg, "%d'", new_port);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003403 }
3404 else {
3405 chunk_appendf(msg, "no need to change the port");
3406 }
3407 }
3408
3409out:
William Dauchy6318d332020-05-02 21:52:36 +02003410 if (changed) {
3411 /* force connection cleanup on the given server */
3412 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003413 srv_set_dyncookie(s);
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02003414 srv_set_addr_desc(s, 1);
William Dauchy6318d332020-05-02 21:52:36 +02003415 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003416 if (updater)
3417 chunk_appendf(msg, " by '%s'", updater);
3418 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003419 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003420}
3421
Christopher Faulet5efdef22021-03-11 18:03:21 +01003422/*
3423 * update server status based on result of SRV resolution
3424 * returns:
3425 * 0 if server status is updated
3426 * 1 if server status has not changed
3427 *
3428 * Must be called with the server lock held.
3429 */
3430int srvrq_update_srv_status(struct server *s, int has_no_ip)
3431{
3432 if (!s->srvrq)
3433 return 1;
3434
3435 /* since this server has an IP, it can go back in production */
3436 if (has_no_ip == 0) {
3437 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3438 return 1;
3439 }
3440
3441 if (s->next_admin & SRV_ADMF_RMAINT)
3442 return 1;
3443
3444 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record");
3445 return 0;
3446}
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003447
3448/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003449 * update server status based on result of name resolution
3450 * returns:
3451 * 0 if server status is updated
3452 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003453 *
3454 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003455 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003456int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003457{
Emeric Brun750fe792020-12-23 16:51:12 +01003458 struct resolvers *resolvers = s->resolvers;
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003459 struct resolv_resolution *resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003460 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003461
Jerome Magnin012261a2020-07-28 13:38:22 +02003462 /* If resolution is NULL we're dealing with SRV records Additional records */
Christopher Faulet5efdef22021-03-11 18:03:21 +01003463 if (resolution == NULL)
3464 return srvrq_update_srv_status(s, has_no_ip);
Jerome Magnin012261a2020-07-28 13:38:22 +02003465
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003466 switch (resolution->status) {
3467 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003468 /* status when HAProxy has just (re)started.
3469 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003470 break;
3471
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003472 case RSLV_STATUS_VALID:
3473 /*
3474 * resume health checks
3475 * server will be turned back on if health check is safe
3476 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003477 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003478 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003479 return 1;
3480 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3481 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003482 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003483 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003484
Emeric Brun52a91d32017-08-31 14:41:55 +02003485 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003486 return 1;
3487 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3488 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3489 s->proxy->id, s->id);
3490
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003491 ha_warning("%s.\n", trash.area);
3492 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003493 return 0;
3494
3495 case RSLV_STATUS_NX:
3496 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003497 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3498 if (!tick_is_expired(exp, now_ms))
3499 break;
3500
3501 if (s->next_admin & SRV_ADMF_RMAINT)
3502 return 1;
3503 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3504 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003505
3506 case RSLV_STATUS_TIMEOUT:
3507 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003508 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3509 if (!tick_is_expired(exp, now_ms))
3510 break;
3511
3512 if (s->next_admin & SRV_ADMF_RMAINT)
3513 return 1;
3514 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3515 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003516
3517 case RSLV_STATUS_REFUSED:
3518 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003519 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3520 if (!tick_is_expired(exp, now_ms))
3521 break;
3522
3523 if (s->next_admin & SRV_ADMF_RMAINT)
3524 return 1;
3525 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3526 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003527
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003528 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003529 /* stop server if resolution failed for a long enough period */
3530 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3531 if (!tick_is_expired(exp, now_ms))
3532 break;
3533
3534 if (s->next_admin & SRV_ADMF_RMAINT)
3535 return 1;
3536 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3537 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003538 }
3539
3540 return 1;
3541}
3542
3543/*
3544 * Server Name Resolution valid response callback
3545 * It expects:
3546 * - <nameserver>: the name server which answered the valid response
3547 * - <response>: buffer containing a valid DNS response
3548 * - <response_len>: size of <response>
3549 * It performs the following actions:
3550 * - ignore response if current ip found and server family not met
3551 * - update with first new ip found if family is met and current IP is not found
3552 * returns:
3553 * 0 on error
3554 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003555 *
3556 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003557 */
Emeric Brun08622d32020-12-23 17:41:43 +01003558int snr_resolution_cb(struct resolv_requester *requester, struct dns_counters *counters)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003559{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003560 struct server *s = NULL;
Emeric Brun08622d32020-12-23 17:41:43 +01003561 struct resolv_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003562 void *serverip, *firstip;
3563 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003564 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003565 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003566 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003567
Christopher Faulet67957bd2017-09-27 11:00:59 +02003568 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003569 if (!s)
3570 return 1;
3571
Christopher Faulet49531e82021-03-10 15:07:27 +01003572 if (s->srvrq) {
Emeric Brun34067662021-06-11 10:48:45 +02003573 /* If DNS resolution is disabled ignore it.
3574 * This is the case if the server was associated to
3575 * a SRV record and this record is now expired.
Christopher Faulet49531e82021-03-10 15:07:27 +01003576 */
Emeric Brun34067662021-06-11 10:48:45 +02003577 if (s->flags & SRV_F_NO_RESOLUTION)
Christopher Faulet49531e82021-03-10 15:07:27 +01003578 return 1;
3579 }
3580
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003581 resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet49531e82021-03-10 15:07:27 +01003582 if (!resolution)
3583 return 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003584
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003585 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003586 firstip = NULL; /* pointer to the first valid response found */
3587 /* it will be used as the new IP if a change is required */
3588 firstip_sin_family = AF_UNSPEC;
3589 serverip = NULL; /* current server IP address */
3590
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003591 /* initializing server IP pointer */
3592 server_sin_family = s->addr.ss_family;
3593 switch (server_sin_family) {
3594 case AF_INET:
3595 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3596 break;
3597
3598 case AF_INET6:
3599 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3600 break;
3601
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003602 case AF_UNSPEC:
3603 break;
3604
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003605 default:
3606 goto invalid;
3607 }
3608
Emeric Brund30e9a12020-12-23 18:49:16 +01003609 ret = resolv_get_ip_from_response(&resolution->response, &s->resolv_opts,
3610 serverip, server_sin_family, &firstip,
3611 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003612
3613 switch (ret) {
Emeric Brun456de772020-12-23 18:17:31 +01003614 case RSLV_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003615 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003616
Emeric Brun456de772020-12-23 18:17:31 +01003617 case RSLV_UPD_SRVIP_NOT_FOUND:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003618 goto save_ip;
3619
Emeric Brun456de772020-12-23 18:17:31 +01003620 case RSLV_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003621 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003622 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003623
Emeric Brun456de772020-12-23 18:17:31 +01003624 case RSLV_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003625 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003626 resolution->status = RSLV_STATUS_OTHER;
Christopher Faulet07ecff52021-06-24 15:33:52 +02003627 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003628 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003629
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003630 default:
Christopher Faulet07ecff52021-06-24 15:33:52 +02003631 has_no_ip = 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003632 goto invalid;
3633
3634 }
3635
3636 save_ip:
Emeric Brun50c870e2021-01-04 10:40:46 +01003637 if (counters) {
Emeric Brund174f0e2021-10-29 17:30:41 +02003638 counters->app.resolver.update++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003639 /* save the first ip we found */
Emeric Brun50c870e2021-01-04 10:40:46 +01003640 chunk_printf(chk, "%s/%s", counters->pid, counters->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003641 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003642 else
3643 chunk_printf(chk, "DNS cache");
Christopher Faulet69beaa92021-02-16 12:07:47 +01003644 srv_update_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003645
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003646 update_status:
Christopher Fauleta8ce4972021-06-24 15:26:03 +02003647 if (!snr_update_srv_status(s, has_no_ip) && has_no_ip)
3648 memset(&s->addr, 0, sizeof(s->addr));
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003649 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003650
3651 invalid:
Emeric Brun50c870e2021-01-04 10:40:46 +01003652 if (counters) {
Emeric Brund174f0e2021-10-29 17:30:41 +02003653 counters->app.resolver.invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003654 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003655 }
Christopher Faulet07ecff52021-06-24 15:33:52 +02003656 if (!snr_update_srv_status(s, has_no_ip) && has_no_ip)
3657 memset(&s->addr, 0, sizeof(s->addr));
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003658 return 0;
3659}
3660
3661/*
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003662 * SRV record error management callback
3663 * returns:
Emeric Brun12ca6582021-06-10 15:25:25 +02003664 * 0 if we can trash answser items.
3665 * 1 when safely ignored and we must kept answer items
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003666 *
3667 * Grabs the server's lock.
3668 */
3669int srvrq_resolution_error_cb(struct resolv_requester *requester, int error_code)
3670{
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003671 struct resolv_srvrq *srvrq;
3672 struct resolv_resolution *res;
3673 struct resolvers *resolvers;
3674 int exp;
3675
3676 /* SRV records */
3677 srvrq = objt_resolv_srvrq(requester->owner);
3678 if (!srvrq)
Emeric Brun12ca6582021-06-10 15:25:25 +02003679 return 0;
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003680
3681 resolvers = srvrq->resolvers;
3682 res = requester->resolution;
3683
3684 switch (res->status) {
3685
3686 case RSLV_STATUS_NX:
3687 /* stop server if resolution is NX for a long enough period */
3688 exp = tick_add(res->last_valid, resolvers->hold.nx);
3689 if (!tick_is_expired(exp, now_ms))
3690 return 1;
3691 break;
3692
3693 case RSLV_STATUS_TIMEOUT:
3694 /* stop server if resolution is TIMEOUT for a long enough period */
3695 exp = tick_add(res->last_valid, resolvers->hold.timeout);
3696 if (!tick_is_expired(exp, now_ms))
3697 return 1;
3698 break;
3699
3700 case RSLV_STATUS_REFUSED:
3701 /* stop server if resolution is REFUSED for a long enough period */
3702 exp = tick_add(res->last_valid, resolvers->hold.refused);
3703 if (!tick_is_expired(exp, now_ms))
3704 return 1;
3705 break;
3706
3707 default:
3708 /* stop server if resolution failed for a long enough period */
3709 exp = tick_add(res->last_valid, resolvers->hold.other);
3710 if (!tick_is_expired(exp, now_ms))
3711 return 1;
3712 }
3713
Emeric Brun34067662021-06-11 10:48:45 +02003714 /* Remove any associated server ref */
Willy Tarreau6878f802021-10-20 14:07:31 +02003715 resolv_detach_from_resolution_answer_items(res, requester);
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003716
Emeric Brun12ca6582021-06-10 15:25:25 +02003717 return 0;
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003718}
3719
3720/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003721 * Server Name Resolution error management callback
3722 * returns:
Emeric Brun12ca6582021-06-10 15:25:25 +02003723 * 0 if we can trash answser items.
3724 * 1 when safely ignored and we must kept answer items
Willy Tarreau46b7f532018-08-21 11:54:26 +02003725 *
3726 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003727 */
Emeric Brun08622d32020-12-23 17:41:43 +01003728int snr_resolution_error_cb(struct resolv_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003729{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003730 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003731
Christopher Faulet67957bd2017-09-27 11:00:59 +02003732 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003733 if (!s)
Emeric Brun12ca6582021-06-10 15:25:25 +02003734 return 0;
3735
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003736 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Emeric Brun12ca6582021-06-10 15:25:25 +02003737 if (!snr_update_srv_status(s, 1)) {
Christopher Faulet5130c212021-03-10 20:31:40 +01003738 memset(&s->addr, 0, sizeof(s->addr));
Emeric Brun12ca6582021-06-10 15:25:25 +02003739 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Willy Tarreau6878f802021-10-20 14:07:31 +02003740 resolv_detach_from_resolution_answer_items(requester->resolution, requester);
Emeric Brun12ca6582021-06-10 15:25:25 +02003741 return 0;
3742 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003743 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Emeric Brun12ca6582021-06-10 15:25:25 +02003744
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003745 return 1;
3746}
3747
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003748/*
3749 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003750 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003751 * It returns a pointer to the first server found or NULL if <ip> is not yet
3752 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003753 *
3754 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003755 */
3756struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3757{
3758 struct server *tmpsrv;
3759 struct proxy *be;
3760
3761 if (!srv)
3762 return NULL;
3763
3764 be = srv->proxy;
3765 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003766 /* we found the current server is the same, ignore it */
3767 if (srv == tmpsrv)
3768 continue;
3769
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003770 /* We want to compare the IP in the record with the IP of the servers in the
3771 * same backend, only if:
3772 * * DNS resolution is enabled on the server
3773 * * the hostname used for the resolution by our server is the same than the
3774 * one used for the server found in the backend
3775 * * the server found in the backend is not our current server
3776 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003777 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003778 if ((tmpsrv->hostname_dn == NULL) ||
3779 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
Christopher Faulet59b29252021-03-16 11:21:04 +01003780 (strcasecmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01003781 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003782 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003783 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003784 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003785
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003786 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01003787 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003788 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003789 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003790 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003791
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003792 /* At this point, we have 2 different servers using the same DNS hostname
3793 * for their respective resolution.
3794 */
3795 if (*ip_family == tmpsrv->addr.ss_family &&
3796 ((tmpsrv->addr.ss_family == AF_INET &&
3797 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
3798 (tmpsrv->addr.ss_family == AF_INET6 &&
3799 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003800 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003801 return tmpsrv;
3802 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003803 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003804 }
3805
Emeric Brune9fd6b52017-11-02 17:20:39 +01003806
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003807 return NULL;
3808}
3809
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003810/* Sets the server's address (srv->addr) from srv->hostname using the libc's
3811 * resolver. This is suited for initial address configuration. Returns 0 on
3812 * success otherwise a non-zero error code. In case of error, *err_code, if
3813 * not NULL, is filled up.
3814 */
3815int srv_set_addr_via_libc(struct server *srv, int *err_code)
3816{
3817 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003818 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01003819 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003820 return 1;
3821 }
3822 return 0;
3823}
3824
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003825/* Set the server's FDQN (->hostname) from <hostname>.
3826 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003827 *
3828 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003829 */
Emeric Brun08622d32020-12-23 17:41:43 +01003830int srv_set_fqdn(struct server *srv, const char *hostname, int resolv_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003831{
Emeric Brun08622d32020-12-23 17:41:43 +01003832 struct resolv_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003833 char *hostname_dn;
3834 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003835
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02003836 /* Note that the server lock is already held. */
3837 if (!srv->resolvers)
3838 return -1;
3839
Emeric Brun08622d32020-12-23 17:41:43 +01003840 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003841 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003842 /* run time DNS/SRV resolution was not active for this server
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003843 * and we can't enable it at run time for now.
3844 */
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003845 if (!srv->resolv_requester && !srv->srvrq)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003846 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003847
3848 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003849 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003850 hostname_dn = trash.area;
Willy Tarreaubf9498a2021-10-14 07:49:49 +02003851 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len,
Emeric Brund30e9a12020-12-23 18:49:16 +01003852 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003853 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003854 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003855
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003856 resolution = (srv->resolv_requester ? srv->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003857 if (resolution &&
3858 resolution->hostname_dn &&
Christopher Faulet59b29252021-03-16 11:21:04 +01003859 resolution->hostname_dn_len == hostname_dn_len &&
3860 strcasecmp(resolution->hostname_dn, hostname_dn) == 0)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003861 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003862
Willy Tarreau6878f802021-10-20 14:07:31 +02003863 resolv_unlink_resolution(srv->resolv_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003864
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003865 free(srv->hostname);
3866 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003867 srv->hostname = strdup(hostname);
3868 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003869 srv->hostname_dn_len = hostname_dn_len;
3870 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003871 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003872
Baptiste Assmann13a92322019-06-07 09:40:55 +02003873 if (srv->flags & SRV_F_NO_RESOLUTION)
3874 goto end;
3875
Emeric Brund30e9a12020-12-23 18:49:16 +01003876 if (resolv_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003877 goto err;
3878
3879 end:
Emeric Brun08622d32020-12-23 17:41:43 +01003880 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003881 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003882 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02003883
3884 err:
Emeric Brun08622d32020-12-23 17:41:43 +01003885 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003886 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02003887 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003888}
3889
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003890/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
3891 * from the state file. This is suited for initial address configuration.
3892 * Returns 0 on success otherwise a non-zero error code. In case of error,
3893 * *err_code, if not NULL, is filled up.
3894 */
3895static int srv_apply_lastaddr(struct server *srv, int *err_code)
3896{
3897 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
3898 if (err_code)
3899 *err_code |= ERR_WARN;
3900 return 1;
3901 }
3902 return 0;
3903}
3904
Willy Tarreau25e51522016-11-04 15:10:17 +01003905/* returns 0 if no error, otherwise a combination of ERR_* flags */
3906static int srv_iterate_initaddr(struct server *srv)
3907{
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003908 char *name = srv->hostname;
Willy Tarreau25e51522016-11-04 15:10:17 +01003909 int return_code = 0;
3910 int err_code;
3911 unsigned int methods;
3912
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003913 /* If no addr and no hostname set, get the name from the DNS SRV request */
3914 if (!name && srv->srvrq)
3915 name = srv->srvrq->name;
3916
Willy Tarreau25e51522016-11-04 15:10:17 +01003917 methods = srv->init_addr_methods;
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003918 if (!methods) {
3919 /* otherwise default to "last,libc" */
Willy Tarreau25e51522016-11-04 15:10:17 +01003920 srv_append_initaddr(&methods, SRV_IADDR_LAST);
3921 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003922 if (srv->resolvers_id) {
3923 /* dns resolution is configured, add "none" to not fail on startup */
3924 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3925 }
Willy Tarreau25e51522016-11-04 15:10:17 +01003926 }
3927
Willy Tarreau3eed10e2016-11-07 21:03:16 +01003928 /* "-dr" : always append "none" so that server addresses resolution
3929 * failures are silently ignored, this is convenient to validate some
3930 * configs out of their environment.
3931 */
3932 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
3933 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3934
Willy Tarreau25e51522016-11-04 15:10:17 +01003935 while (methods) {
3936 err_code = 0;
3937 switch (srv_get_next_initaddr(&methods)) {
3938 case SRV_IADDR_LAST:
3939 if (!srv->lastaddr)
3940 continue;
3941 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003942 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003943 return_code |= err_code;
3944 break;
3945
3946 case SRV_IADDR_LIBC:
3947 if (!srv->hostname)
3948 continue;
3949 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003950 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003951 return_code |= err_code;
3952 break;
3953
Willy Tarreau37ebe122016-11-04 15:17:58 +01003954 case SRV_IADDR_NONE:
3955 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003956 if (return_code) {
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02003957 ha_warning("could not resolve address '%s', disabling server.\n",
3958 name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003959 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01003960 return return_code;
3961
Willy Tarreau4310d362016-11-02 15:05:56 +01003962 case SRV_IADDR_IP:
3963 ipcpy(&srv->init_addr, &srv->addr);
3964 if (return_code) {
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02003965 ha_warning("could not resolve address '%s', falling back to configured address.\n",
3966 name);
Willy Tarreau4310d362016-11-02 15:05:56 +01003967 }
Olivier Houchard4e694042017-03-14 20:01:29 +01003968 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01003969
Willy Tarreau25e51522016-11-04 15:10:17 +01003970 default: /* unhandled method */
3971 break;
3972 }
3973 }
3974
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02003975 if (!return_code)
3976 ha_alert("no method found to resolve address '%s'.\n", name);
3977 else
3978 ha_alert("could not resolve address '%s'.\n", name);
Willy Tarreau25e51522016-11-04 15:10:17 +01003979
3980 return_code |= ERR_ALERT | ERR_FATAL;
3981 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01003982out:
3983 srv_set_dyncookie(srv);
Amaury Denoyelle8ff04342021-06-08 15:19:51 +02003984 srv_set_addr_desc(srv, 1);
Olivier Houchard4e694042017-03-14 20:01:29 +01003985 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01003986}
3987
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003988/*
3989 * This function parses all backends and all servers within each backend
3990 * and performs servers' addr resolution based on information provided by:
3991 * - configuration file
3992 * - server-state file (states provided by an 'old' haproxy process)
3993 *
3994 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
3995 */
3996int srv_init_addr(void)
3997{
3998 struct proxy *curproxy;
3999 int return_code = 0;
4000
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004001 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004002 while (curproxy) {
4003 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004004
4005 /* servers are in backend only */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004006 if (!(curproxy->cap & PR_CAP_BE) || (curproxy->flags & (PR_FL_DISABLED|PR_FL_STOPPED)))
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004007 goto srv_init_addr_next;
4008
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02004009 for (srv = curproxy->srv; srv; srv = srv->next) {
4010 set_usermsgs_ctx(srv->conf.file, srv->conf.line, &srv->obj_type);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01004011 if (srv->hostname || srv->srvrq)
Willy Tarreau3d609a72017-09-06 14:22:45 +02004012 return_code |= srv_iterate_initaddr(srv);
Amaury Denoyelle9d0138a2021-05-28 11:01:52 +02004013 reset_usermsgs_ctx();
4014 }
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004015
4016 srv_init_addr_next:
4017 curproxy = curproxy->next;
4018 }
4019
4020 return return_code;
4021}
4022
Willy Tarreau46b7f532018-08-21 11:54:26 +02004023/*
4024 * Must be called with the server lock held.
4025 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01004026const 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 +02004027{
4028
Willy Tarreau83061a82018-07-13 11:56:34 +02004029 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004030
4031 msg = get_trash_chunk();
4032 chunk_reset(msg);
4033
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004034 if (server->hostname && strcmp(fqdn, server->hostname) == 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004035 chunk_appendf(msg, "no need to change the FDQN");
4036 goto out;
4037 }
4038
4039 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4040 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4041 goto out;
4042 }
4043
4044 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4045 server->proxy->id, server->id, server->hostname, fqdn);
4046
Emeric Brun08622d32020-12-23 17:41:43 +01004047 if (srv_set_fqdn(server, fqdn, resolv_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004048 chunk_reset(msg);
4049 chunk_appendf(msg, "could not update %s/%s FQDN",
4050 server->proxy->id, server->id);
4051 goto out;
4052 }
4053
4054 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004055 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004056
4057 out:
4058 if (updater)
4059 chunk_appendf(msg, " by '%s'", updater);
4060 chunk_appendf(msg, "\n");
4061
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004062 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004063}
4064
4065
Willy Tarreau21b069d2016-11-23 17:15:08 +01004066/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4067 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004068 * 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 +01004069 * used for CLI commands requiring a server name.
4070 * Important: the <arg> is modified to remove the '/'.
4071 */
4072struct server *cli_find_server(struct appctx *appctx, char *arg)
4073{
4074 struct proxy *px;
4075 struct server *sv;
4076 char *line;
4077
4078 /* split "backend/server" and make <line> point to server */
4079 for (line = arg; *line; line++)
4080 if (*line == '/') {
4081 *line++ = '\0';
4082 break;
4083 }
4084
4085 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004086 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004087 return NULL;
4088 }
4089
4090 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004091 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004092 return NULL;
4093 }
4094
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004095 if (px->flags & (PR_FL_DISABLED|PR_FL_STOPPED)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004096 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004097 return NULL;
4098 }
4099
4100 return sv;
4101}
4102
William Lallemand222baf22016-11-19 02:00:33 +01004103
Willy Tarreau46b7f532018-08-21 11:54:26 +02004104/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004105static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004106{
4107 struct server *sv;
4108 const char *warning;
4109
4110 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4111 return 1;
4112
4113 sv = cli_find_server(appctx, args[2]);
4114 if (!sv)
4115 return 1;
4116
4117 if (strcmp(args[3], "weight") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004118 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004119 warning = server_parse_weight_change_request(sv, args[4]);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004120 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004121 if (warning)
4122 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004123 }
4124 else if (strcmp(args[3], "state") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004125 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004126 if (strcmp(args[4], "ready") == 0)
4127 srv_adm_set_ready(sv);
4128 else if (strcmp(args[4], "drain") == 0)
4129 srv_adm_set_drain(sv);
4130 else if (strcmp(args[4], "maint") == 0)
4131 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02004132 else
4133 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004134 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004135 }
4136 else if (strcmp(args[3], "health") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004137 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004138 if (sv->track)
4139 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004140 else if (strcmp(args[4], "up") == 0) {
4141 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004142 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004143 }
4144 else if (strcmp(args[4], "stopping") == 0) {
4145 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004146 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004147 }
4148 else if (strcmp(args[4], "down") == 0) {
4149 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004150 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004151 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004152 else
4153 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004154 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004155 }
4156 else if (strcmp(args[3], "agent") == 0) {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004157 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004158 if (!(sv->agent.state & CHK_ST_ENABLED))
4159 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004160 else if (strcmp(args[4], "up") == 0) {
4161 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004162 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004163 }
4164 else if (strcmp(args[4], "down") == 0) {
4165 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004166 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004167 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004168 else
4169 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004170 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004171 }
Misiek2da082d2017-01-09 09:40:42 +01004172 else if (strcmp(args[3], "agent-addr") == 0) {
William Dauchy7cabc062021-02-11 22:51:24 +01004173 char *addr = NULL;
4174 char *port = NULL;
4175 if (strlen(args[4]) == 0) {
4176 cli_err(appctx, "set server <b>/<s> agent-addr requires"
4177 " an address and optionally a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004178 goto out;
William Dauchy7cabc062021-02-11 22:51:24 +01004179 }
4180 addr = args[4];
4181 if (strcmp(args[5], "port") == 0)
4182 port = args[6];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004183 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004184 warning = srv_update_agent_addr_port(sv, addr, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004185 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchy7cabc062021-02-11 22:51:24 +01004186 if (warning)
4187 cli_msg(appctx, LOG_WARNING, warning);
4188 }
4189 else if (strcmp(args[3], "agent-port") == 0) {
4190 char *port = NULL;
4191 if (strlen(args[4]) == 0) {
4192 cli_err(appctx, "set server <b>/<s> agent-port requires"
4193 " a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004194 goto out;
William Dauchy7cabc062021-02-11 22:51:24 +01004195 }
4196 port = args[4];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004197 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004198 warning = srv_update_agent_addr_port(sv, NULL, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004199 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchy7cabc062021-02-11 22:51:24 +01004200 if (warning)
4201 cli_msg(appctx, LOG_WARNING, warning);
Misiek2da082d2017-01-09 09:40:42 +01004202 }
4203 else if (strcmp(args[3], "agent-send") == 0) {
Christopher Faulet0ba54bb2021-06-18 08:47:14 +02004204 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004205 if (!(sv->agent.state & CHK_ST_ENABLED))
4206 cli_err(appctx, "agent checks are not enabled on this server.\n");
4207 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004208 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004209 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004210 }
Christopher Faulet0ba54bb2021-06-18 08:47:14 +02004211 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Misiek2da082d2017-01-09 09:40:42 +01004212 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004213 else if (strcmp(args[3], "check-addr") == 0) {
4214 char *addr = NULL;
4215 char *port = NULL;
4216 if (strlen(args[4]) == 0) {
4217 cli_err(appctx, "set server <b>/<s> check-addr requires"
4218 " an address and optionally a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004219 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004220 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004221 addr = args[4];
4222 if (strcmp(args[5], "port") == 0)
4223 port = args[6];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004224 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004225 warning = srv_update_check_addr_port(sv, addr, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004226 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyb456e1f2021-02-11 22:51:23 +01004227 if (warning)
4228 cli_msg(appctx, LOG_WARNING, warning);
4229 }
4230 else if (strcmp(args[3], "check-port") == 0) {
4231 char *port = NULL;
4232 if (strlen(args[4]) == 0) {
4233 cli_err(appctx, "set server <b>/<s> check-port requires"
4234 " a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004235 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004236 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004237 port = args[4];
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004238 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004239 warning = srv_update_check_addr_port(sv, NULL, port);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004240 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyb456e1f2021-02-11 22:51:23 +01004241 if (warning)
4242 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004243 }
4244 else if (strcmp(args[3], "addr") == 0) {
4245 char *addr = NULL;
4246 char *port = NULL;
4247 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004248 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004249 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004250 }
4251 else {
4252 addr = args[4];
4253 }
4254 if (strcmp(args[5], "port") == 0) {
4255 port = args[6];
4256 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004257 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004258 warning = srv_update_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004259 if (warning)
4260 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004261 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004262 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004263 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004264 else if (strcmp(args[3], "fqdn") == 0) {
4265 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004266 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004267 goto out;
4268 }
4269 if (!sv->resolvers) {
4270 cli_err(appctx, "set server <b>/<s> fqdn failed because no resolution is configured.\n");
4271 goto out;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004272 }
Christopher Fauleta386e782021-06-15 11:37:40 +02004273 if (sv->srvrq) {
4274 cli_err(appctx, "set server <b>/<s> fqdn failed because SRV resolution is configured.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004275 goto out;
Christopher Fauleta386e782021-06-15 11:37:40 +02004276 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004277 HA_SPIN_LOCK(DNS_LOCK, &sv->resolvers->lock);
4278 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Baptiste Assmann13a92322019-06-07 09:40:55 +02004279 /* ensure runtime resolver will process this new fqdn */
4280 if (sv->flags & SRV_F_NO_RESOLUTION) {
4281 sv->flags &= ~SRV_F_NO_RESOLUTION;
4282 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004283 warning = srv_update_fqdn(sv, args[4], "stats socket command", 1);
Christopher Faulet0ba54bb2021-06-18 08:47:14 +02004284 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004285 HA_SPIN_UNLOCK(DNS_LOCK, &sv->resolvers->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004286 if (warning)
4287 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004288 }
William Dauchyf6370442020-11-14 19:25:33 +01004289 else if (strcmp(args[3], "ssl") == 0) {
4290#ifdef USE_OPENSSL
Amaury Denoyelleb89d3d32021-05-19 15:00:54 +02004291 if (sv->flags & SRV_F_DYNAMIC) {
4292 cli_err(appctx, "'set server <srv> ssl' not supported on dynamic servers\n");
4293 goto out;
4294 }
4295
William Dauchyf6370442020-11-14 19:25:33 +01004296 if (sv->ssl_ctx.ctx == NULL) {
4297 cli_err(appctx, "'set server <srv> ssl' cannot be set. "
4298 " default-server should define ssl settings\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004299 goto out;
4300 }
4301
4302 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4303 if (strcmp(args[4], "on") == 0) {
Willy Tarreaua8a72c62021-10-06 11:48:34 +02004304 srv_set_ssl(sv, 1);
William Dauchyf6370442020-11-14 19:25:33 +01004305 } else if (strcmp(args[4], "off") == 0) {
Willy Tarreaua8a72c62021-10-06 11:48:34 +02004306 srv_set_ssl(sv, 0);
William Dauchyf6370442020-11-14 19:25:33 +01004307 } else {
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004308 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyf6370442020-11-14 19:25:33 +01004309 cli_err(appctx, "'set server <srv> ssl' expects 'on' or 'off'.\n");
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004310 goto out;
William Dauchyf6370442020-11-14 19:25:33 +01004311 }
4312 srv_cleanup_connections(sv);
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004313 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyf6370442020-11-14 19:25:33 +01004314 cli_msg(appctx, LOG_NOTICE, "server ssl setting updated.\n");
4315#else
4316 cli_msg(appctx, LOG_NOTICE, "server ssl setting not supported.\n");
4317#endif
4318 } else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004319 cli_err(appctx,
William Dauchy3f4ec7d2021-02-15 17:22:16 +01004320 "usage: set server <backend>/<server> "
4321 "addr | agent | agent-addr | agent-port | agent-send | "
4322 "check-addr | check-port | fqdn | health | ssl | "
4323 "state | weight\n");
William Lallemand222baf22016-11-19 02:00:33 +01004324 }
Christopher Fauletc7b391a2021-06-15 12:01:29 +02004325 out:
William Lallemand222baf22016-11-19 02:00:33 +01004326 return 1;
4327}
4328
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004329static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004330{
William Lallemand6b160942016-11-22 12:34:35 +01004331 struct proxy *px;
4332 struct server *sv;
4333 char *line;
4334
4335
4336 /* split "backend/server" and make <line> point to server */
4337 for (line = args[2]; *line; line++)
4338 if (*line == '/') {
4339 *line++ = '\0';
4340 break;
4341 }
4342
Willy Tarreau9d008692019-08-09 11:21:01 +02004343 if (!*line)
4344 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004345
Willy Tarreau9d008692019-08-09 11:21:01 +02004346 if (!get_backend_server(args[2], line, &px, &sv))
4347 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004348
4349 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004350 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4351 sv->iweight);
Willy Tarreaud0a06d52022-05-18 15:07:19 +02004352 if (applet_putstr(appctx, trash.area) == -1)
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004353 return 0;
William Lallemand6b160942016-11-22 12:34:35 +01004354 return 1;
4355}
4356
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004357/* Parse a "set weight" command.
4358 *
4359 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004360 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004361static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004362{
4363 struct server *sv;
4364 const char *warning;
4365
4366 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4367 return 1;
4368
4369 sv = cli_find_server(appctx, args[2]);
4370 if (!sv)
4371 return 1;
4372
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004373 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4374
William Lallemand6b160942016-11-22 12:34:35 +01004375 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004376 if (warning)
4377 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004378
4379 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4380
William Lallemand6b160942016-11-22 12:34:35 +01004381 return 1;
4382}
4383
Willy Tarreau46b7f532018-08-21 11:54:26 +02004384/* parse a "set maxconn server" command. It always returns 1.
4385 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004386 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004387 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004388static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004389{
4390 struct server *sv;
4391 const char *warning;
4392
4393 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4394 return 1;
4395
4396 sv = cli_find_server(appctx, args[3]);
4397 if (!sv)
4398 return 1;
4399
Amaury Denoyelle02742862021-06-18 11:11:36 +02004400 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4401
Willy Tarreaub8026272016-11-23 11:26:56 +01004402 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004403 if (warning)
4404 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004405
Amaury Denoyelle02742862021-06-18 11:11:36 +02004406 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4407
Willy Tarreaub8026272016-11-23 11:26:56 +01004408 return 1;
4409}
William Lallemand6b160942016-11-22 12:34:35 +01004410
Willy Tarreau46b7f532018-08-21 11:54:26 +02004411/* parse a "disable agent" command. It always returns 1.
4412 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004413 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004414 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004415static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004416{
4417 struct server *sv;
4418
4419 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4420 return 1;
4421
4422 sv = cli_find_server(appctx, args[2]);
4423 if (!sv)
4424 return 1;
4425
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004426 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004427 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004428 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004429 return 1;
4430}
4431
Willy Tarreau46b7f532018-08-21 11:54:26 +02004432/* parse a "disable health" command. It always returns 1.
4433 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004434 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004435 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004436static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004437{
4438 struct server *sv;
4439
4440 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4441 return 1;
4442
4443 sv = cli_find_server(appctx, args[2]);
4444 if (!sv)
4445 return 1;
4446
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004447 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004448 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004449 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004450 return 1;
4451}
4452
Willy Tarreau46b7f532018-08-21 11:54:26 +02004453/* parse a "disable server" command. It always returns 1.
4454 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004455 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004456 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004457static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004458{
4459 struct server *sv;
4460
4461 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4462 return 1;
4463
4464 sv = cli_find_server(appctx, args[2]);
4465 if (!sv)
4466 return 1;
4467
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004468 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004469 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004470 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004471 return 1;
4472}
4473
Willy Tarreau46b7f532018-08-21 11:54:26 +02004474/* parse a "enable agent" command. It always returns 1.
4475 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004476 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004477 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004478static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004479{
4480 struct server *sv;
4481
4482 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4483 return 1;
4484
4485 sv = cli_find_server(appctx, args[2]);
4486 if (!sv)
4487 return 1;
4488
Willy Tarreau9d008692019-08-09 11:21:01 +02004489 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4490 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004491
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004492 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004493 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004494 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004495 return 1;
4496}
4497
Willy Tarreau46b7f532018-08-21 11:54:26 +02004498/* parse a "enable health" command. It always returns 1.
4499 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004500 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004501 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004502static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004503{
4504 struct server *sv;
4505
4506 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4507 return 1;
4508
4509 sv = cli_find_server(appctx, args[2]);
4510 if (!sv)
4511 return 1;
4512
Amaury Denoyelle0f456d52021-09-21 10:29:09 +02004513 if (!(sv->check.state & CHK_ST_CONFIGURED))
4514 return cli_err(appctx, "Health check was not configured on this server, cannot enable.\n");
4515
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004516 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004517 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004518 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004519 return 1;
4520}
4521
Willy Tarreau46b7f532018-08-21 11:54:26 +02004522/* parse a "enable server" command. It always returns 1.
4523 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004524 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004525 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004526static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004527{
4528 struct server *sv;
4529
4530 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4531 return 1;
4532
4533 sv = cli_find_server(appctx, args[2]);
4534 if (!sv)
4535 return 1;
4536
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004537 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004538 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004539 if (!(sv->flags & SRV_F_COOKIESET)
4540 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4541 sv->cookie)
4542 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004543 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004544 return 1;
4545}
4546
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004547/* Allocates data structure related to load balancing for the server <sv>. It
4548 * is only required for dynamic servers.
4549 *
4550 * At the moment, the server lock is not used as this function is only called
4551 * for a dynamic server not yet registered.
4552 *
4553 * Returns 1 on success, 0 on allocation failure.
4554 */
4555static int srv_alloc_lb(struct server *sv, struct proxy *be)
4556{
4557 int node;
4558
4559 sv->lb_tree = (sv->flags & SRV_F_BACKUP) ?
4560 &be->lbprm.chash.bck : &be->lbprm.chash.act;
4561 sv->lb_nodes_tot = sv->uweight * BE_WEIGHT_SCALE;
4562 sv->lb_nodes_now = 0;
4563
Willy Tarreaudcb121f2021-04-20 11:37:45 +02004564 if (((be->lbprm.algo & (BE_LB_KIND | BE_LB_PARM)) == (BE_LB_KIND_RR | BE_LB_RR_RANDOM)) ||
4565 ((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 +01004566 sv->lb_nodes = calloc(sv->lb_nodes_tot, sizeof(*sv->lb_nodes));
4567
4568 if (!sv->lb_nodes)
4569 return 0;
4570
4571 for (node = 0; node < sv->lb_nodes_tot; node++) {
4572 sv->lb_nodes[node].server = sv;
4573 sv->lb_nodes[node].node.key = full_hash(sv->puid * SRV_EWGHT_RANGE + node);
4574 }
4575 }
4576
4577 return 1;
4578}
4579
Amaury Denoyelle29d1ac12021-09-21 11:51:29 +02004580/* updates the server's weight during a warmup stage. Once the final weight is
4581 * reached, the task automatically stops. Note that any server status change
4582 * must have updated s->last_change accordingly.
4583 */
4584static struct task *server_warmup(struct task *t, void *context, unsigned int state)
4585{
4586 struct server *s = context;
4587
4588 /* by default, plan on stopping the task */
4589 t->expire = TICK_ETERNITY;
4590 if ((s->next_admin & SRV_ADMF_MAINT) ||
4591 (s->next_state != SRV_ST_STARTING))
4592 return t;
4593
4594 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
4595
4596 /* recalculate the weights and update the state */
4597 server_recalc_eweight(s, 1);
4598
4599 /* probably that we can refill this server with a bit more connections */
4600 pendconn_grab_from_px(s);
4601
4602 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
4603
4604 /* get back there in 1 second or 1/20th of the slowstart interval,
4605 * whichever is greater, resulting in small 5% steps.
4606 */
4607 if (s->next_state == SRV_ST_STARTING)
4608 t->expire = tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20)));
4609 return t;
4610}
4611
4612/* Allocate the slowstart task if the server is configured with a slowstart
4613 * timer. If server next_state is SRV_ST_STARTING, the task is scheduled.
4614 *
4615 * Returns 0 on success else non-zero.
4616 */
4617static int init_srv_slowstart(struct server *srv)
4618{
4619 struct task *t;
4620
4621 if (srv->slowstart) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004622 if ((t = task_new_anywhere()) == NULL) {
Amaury Denoyelle29d1ac12021-09-21 11:51:29 +02004623 ha_alert("Cannot activate slowstart for server %s/%s: out of memory.\n", srv->proxy->id, srv->id);
4624 return ERR_ALERT | ERR_FATAL;
4625 }
4626
4627 /* We need a warmup task that will be called when the server
4628 * state switches from down to up.
4629 */
4630 srv->warmup = t;
4631 t->process = server_warmup;
4632 t->context = srv;
4633
4634 /* server can be in this state only because of */
4635 if (srv->next_state == SRV_ST_STARTING) {
4636 task_schedule(srv->warmup,
4637 tick_add(now_ms,
4638 MS_TO_TICKS(MAX(1000, (now.tv_sec - srv->last_change)) / 20)));
4639 }
4640 }
4641
4642 return ERR_NONE;
4643}
4644REGISTER_POST_SERVER_CHECK(init_srv_slowstart);
4645
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004646/* Memory allocation and initialization of the per_thr field.
4647 * Returns 0 if the field has been successfully initialized, -1 on failure.
4648 */
4649int srv_init_per_thr(struct server *srv)
4650{
4651 int i;
4652
4653 srv->per_thr = calloc(global.nbthread, sizeof(*srv->per_thr));
Willy Tarreauc21a1872022-11-21 14:14:06 +01004654 srv->per_tgrp = calloc(global.nbtgroups, sizeof(*srv->per_tgrp));
4655 if (!srv->per_thr || !srv->per_tgrp)
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004656 return -1;
4657
4658 for (i = 0; i < global.nbthread; i++) {
4659 srv->per_thr[i].idle_conns = EB_ROOT;
4660 srv->per_thr[i].safe_conns = EB_ROOT;
4661 srv->per_thr[i].avail_conns = EB_ROOT;
4662 MT_LIST_INIT(&srv->per_thr[i].streams);
4663 }
4664
4665 return 0;
4666}
4667
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004668/* Parse a "add server" command
4669 * Returns 0 if the server has been successfully initialized, 1 on failure.
4670 */
4671static int cli_parse_add_server(char **args, char *payload, struct appctx *appctx, void *private)
4672{
4673 struct proxy *be;
4674 struct server *srv;
4675 char *be_name, *sv_name;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004676 int errcode, argc;
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004677 int next_id;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004678 const int parse_flags = SRV_PARSE_DYNAMIC|SRV_PARSE_PARSE_ADDR;
4679
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004680 usermsgs_clr("CLI");
4681
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004682 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4683 return 1;
4684
4685 ++args;
4686
4687 sv_name = be_name = args[1];
4688 /* split backend/server arg */
4689 while (*sv_name && *(++sv_name)) {
4690 if (*sv_name == '/') {
4691 *sv_name = '\0';
4692 ++sv_name;
4693 break;
4694 }
4695 }
4696
4697 if (!*sv_name)
4698 return cli_err(appctx, "Require 'backend/server'.");
4699
Amaury Denoyellecece9182021-04-20 17:09:08 +02004700 be = proxy_be_by_name(be_name);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004701 if (!be)
4702 return cli_err(appctx, "No such backend.");
4703
4704 if (!(be->lbprm.algo & BE_LB_PROP_DYN)) {
Amaury Denoyelleeafd7012021-04-29 14:59:42 +02004705 cli_err(appctx, "Backend must use a dynamic load balancing to support dynamic servers.");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004706 return 1;
4707 }
4708
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004709 /* At this point, some operations might not be thread-safe anymore. This
4710 * might be the case for parsing handlers which were designed to run
4711 * only at the starting stage on single-thread mode.
4712 *
4713 * Activate thread isolation to ensure thread-safety.
4714 */
4715 thread_isolate();
4716
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004717 args[1] = sv_name;
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004718 errcode = _srv_parse_init(&srv, args, &argc, be, parse_flags);
4719 if (errcode)
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004720 goto out;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004721
4722 while (*args[argc]) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004723 errcode = _srv_parse_kw(srv, args, &argc, be, parse_flags);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004724
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004725 if (errcode)
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004726 goto out;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004727 }
4728
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004729 errcode = _srv_parse_finalize(args, argc, srv, be, parse_flags);
4730 if (errcode)
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004731 goto out;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004732
Amaury Denoyelleefbf35c2021-06-10 17:34:10 +02004733 /* A dynamic server does not currently support resolution.
4734 *
4735 * Initialize it explicitly to the "none" method to ensure no
4736 * resolution will ever be executed.
4737 */
4738 srv->init_addr_methods = SRV_IADDR_NONE;
4739
Amaury Denoyelle30467232021-03-12 18:03:27 +01004740 if (srv->mux_proto) {
4741 if (!conn_get_best_mux_entry(srv->mux_proto->token, PROTO_SIDE_BE, be->mode)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004742 ha_alert("MUX protocol is not usable for server.\n");
Amaury Denoyelle30467232021-03-12 18:03:27 +01004743 goto out;
4744 }
4745 }
4746
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004747 if (srv_init_per_thr(srv) == -1) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004748 ha_alert("failed to allocate per-thread lists for server.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004749 goto out;
4750 }
4751
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004752 if (srv->max_idle_conns != 0) {
4753 srv->curr_idle_thr = calloc(global.nbthread, sizeof(*srv->curr_idle_thr));
4754 if (!srv->curr_idle_thr) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004755 ha_alert("failed to allocate counters for server.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004756 goto out;
4757 }
4758 }
4759
4760 if (!srv_alloc_lb(srv, be)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004761 ha_alert("Failed to initialize load-balancing data.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004762 goto out;
4763 }
4764
4765 if (!stats_allocate_proxy_counters_internal(&srv->extra_counters,
4766 COUNTERS_SV,
4767 STATS_PX_CAP_SRV)) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004768 ha_alert("failed to allocate extra counters for server.\n");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004769 goto out;
4770 }
4771
Amaury Denoyelle79b90e82021-09-20 15:15:19 +02004772 if (srv->use_ssl == 1 || (srv->proxy->options & PR_O_TCPCHK_SSL) ||
4773 srv->check.use_ssl == 1) {
Amaury Denoyelle34897d22021-05-19 09:49:41 +02004774 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv) {
4775 if (xprt_get(XPRT_SSL)->prepare_srv(srv))
4776 goto out;
4777 }
4778 }
4779
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02004780 if (srv->trackit) {
4781 if (srv_apply_track(srv, be))
4782 goto out;
4783 }
4784
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004785 /* Init check/agent if configured. The check is manually disabled
4786 * because a dynamic server is started in a disable state. It must be
4787 * manually activated via a "enable health/agent" command.
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004788 */
4789 if (srv->do_check) {
4790 if (init_srv_check(srv))
4791 goto out;
4792
4793 srv->check.state &= ~CHK_ST_ENABLED;
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004794 }
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02004795
4796 if (srv->do_agent) {
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004797 if (init_srv_agent_check(srv))
4798 goto out;
4799
4800 srv->agent.state &= ~CHK_ST_ENABLED;
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004801 }
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004802
Amaury Denoyellecd8a6f22021-09-21 11:51:54 +02004803 /* Init slowstart if needed. */
4804 if (init_srv_slowstart(srv))
4805 goto out;
4806
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004807 /* Attach the server to the end of the proxy linked list. Note that this
4808 * operation is not thread-safe so this is executed under thread
4809 * isolation.
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004810 *
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004811 * If a server with the same name is found, reject the new one.
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004812 */
Amaury Denoyellecece9182021-04-20 17:09:08 +02004813
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004814 /* TODO use a double-linked list for px->srv */
4815 if (be->srv) {
Amaury Denoyellecece9182021-04-20 17:09:08 +02004816 struct server *next = be->srv;
4817
4818 while (1) {
4819 /* check for duplicate server */
Tim Duesterhusc5aa1132021-10-16 17:48:15 +02004820 if (strcmp(srv->id, next->id) == 0) {
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004821 ha_alert("Already exists a server with the same name in backend.\n");
Amaury Denoyellecece9182021-04-20 17:09:08 +02004822 goto out;
4823 }
4824
4825 if (!next->next)
4826 break;
4827
4828 next = next->next;
4829 }
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004830
4831 next->next = srv;
4832 }
4833 else {
4834 srv->next = be->srv;
4835 be->srv = srv;
4836 }
Amaury Denoyellecece9182021-04-20 17:09:08 +02004837
Amaury Denoyelle406aaef2021-06-09 09:58:47 +02004838 /* generate the server id if not manually specified */
4839 if (!srv->puid) {
4840 next_id = get_next_id(&be->conf.used_server_id, 1);
4841 if (!next_id) {
4842 ha_alert("Cannot attach server : no id left in proxy\n");
4843 goto out;
4844 }
4845
4846 srv->conf.id.key = srv->puid = next_id;
Amaury Denoyelle406aaef2021-06-09 09:58:47 +02004847 }
Christopher Faulet70f89482021-12-07 18:49:44 +01004848 srv->conf.name.key = srv->id;
Amaury Denoyelle406aaef2021-06-09 09:58:47 +02004849
4850 /* insert the server in the backend trees */
Amaury Denoyelle1613b4a2021-06-08 17:00:20 +02004851 eb32_insert(&be->conf.used_server_id, &srv->conf.id);
4852 ebis_insert(&be->conf.used_server_name, &srv->conf.name);
Aurelien DARRAGON8d0ff282022-09-16 14:27:53 +02004853 /* addr_node.key could be NULL if FQDN resolution is postponed (ie: add server from cli) */
4854 if (srv->addr_node.key)
4855 ebis_insert(&be->used_server_addr, &srv->addr_node);
Amaury Denoyelle406aaef2021-06-09 09:58:47 +02004856
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004857 thread_release();
4858
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004859 /* Start the check task. The server must be fully initialized.
4860 *
4861 * <srvpos> and <nbcheck> parameters are set to 1 as there should be no
4862 * need to randomly spread the task interval for dynamic servers.
4863 */
4864 if (srv->check.state & CHK_ST_CONFIGURED) {
4865 if (!start_check_task(&srv->check, 0, 1, 1))
4866 ha_alert("System might be unstable, consider to execute a reload");
4867 }
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02004868 if (srv->agent.state & CHK_ST_CONFIGURED) {
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004869 if (!start_check_task(&srv->agent, 0, 1, 1))
4870 ha_alert("System might be unstable, consider to execute a reload");
4871 }
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004872
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004873 ha_notice("New server registered.\n");
Amaury Denoyelle30fc6da2022-11-10 15:16:49 +01004874 cli_umsg(appctx, LOG_INFO);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004875
4876 return 0;
4877
4878out:
Amaury Denoyellebd8dd842021-08-04 11:20:05 +02004879 if (srv) {
4880 if (srv->track)
4881 release_server_track(srv);
4882
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004883 if (srv->check.state & CHK_ST_CONFIGURED)
4884 free_check(&srv->check);
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02004885 if (srv->agent.state & CHK_ST_CONFIGURED)
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004886 free_check(&srv->agent);
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004887
Amaury Denoyellebd8dd842021-08-04 11:20:05 +02004888 /* remove the server from the proxy linked list */
4889 if (be->srv == srv) {
4890 be->srv = srv->next;
4891 }
4892 else {
4893 struct server *prev;
4894 for (prev = be->srv; prev && prev->next != srv; prev = prev->next)
4895 ;
4896 if (prev)
4897 prev->next = srv->next;
4898 }
4899
4900 }
Amaury Denoyelle08be72b2021-07-28 10:06:52 +02004901
Amaury Denoyelle31ddd762021-06-10 15:26:44 +02004902 thread_release();
4903
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004904 if (!usermsgs_empty())
Amaury Denoyelle30fc6da2022-11-10 15:16:49 +01004905 cli_umsgerr(appctx);
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02004906
Amaury Denoyelle08be72b2021-07-28 10:06:52 +02004907 if (srv)
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02004908 srv_drop(srv);
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02004909
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004910 return 1;
4911}
4912
Amaury Denoyellee5580432021-04-15 14:41:20 +02004913/* Parse a "del server" command
4914 * Returns 0 if the server has been successfully initialized, 1 on failure.
4915 */
4916static int cli_parse_delete_server(char **args, char *payload, struct appctx *appctx, void *private)
4917{
4918 struct proxy *be;
4919 struct server *srv;
4920 char *be_name, *sv_name;
4921
4922 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4923 return 1;
4924
4925 ++args;
4926
4927 sv_name = be_name = args[1];
4928 /* split backend/server arg */
4929 while (*sv_name && *(++sv_name)) {
4930 if (*sv_name == '/') {
4931 *sv_name = '\0';
4932 ++sv_name;
4933 break;
4934 }
4935 }
4936
4937 if (!*sv_name)
4938 return cli_err(appctx, "Require 'backend/server'.");
4939
4940 /* The proxy servers list is currently not protected by a lock so this
Willy Tarreauba3ab792021-08-04 14:42:37 +02004941 * requires thread isolation. In addition, any place referencing the
4942 * server about to be deleted would be unsafe after our operation, so
4943 * we must be certain to be alone so that no other thread has even
4944 * started to grab a temporary reference to this server.
Amaury Denoyellee5580432021-04-15 14:41:20 +02004945 */
Willy Tarreauba3ab792021-08-04 14:42:37 +02004946 thread_isolate_full();
Amaury Denoyellee5580432021-04-15 14:41:20 +02004947
4948 get_backend_server(be_name, sv_name, &be, &srv);
4949 if (!be) {
4950 cli_err(appctx, "No such backend.");
4951 goto out;
4952 }
4953
4954 if (!srv) {
4955 cli_err(appctx, "No such server.");
4956 goto out;
4957 }
4958
Amaury Denoyelle14c3c5c2021-08-23 14:10:51 +02004959 if (srv->flags & SRV_F_NON_PURGEABLE) {
4960 cli_err(appctx, "This server cannot be removed at runtime due to other configuration elements pointing to it.");
Amaury Denoyellee5580432021-04-15 14:41:20 +02004961 goto out;
4962 }
4963
4964 /* Only servers in maintenance can be deleted. This ensures that the
4965 * server is not present anymore in the lb structures (through
4966 * lbprm.set_server_status_down).
4967 */
4968 if (!(srv->cur_admin & SRV_ADMF_MAINT)) {
4969 cli_err(appctx, "Only servers in maintenance mode can be deleted.");
4970 goto out;
4971 }
4972
4973 /* Ensure that there is no active/idle/pending connection on the server.
4974 *
4975 * TODO idle connections should not prevent server deletion. A proper
4976 * cleanup function should be implemented to be used here.
4977 */
4978 if (srv->cur_sess || srv->curr_idle_conns ||
Willy Tarreaua0570452021-06-18 09:30:30 +02004979 !eb_is_empty(&srv->queue.head)) {
Amaury Denoyellee5580432021-04-15 14:41:20 +02004980 cli_err(appctx, "Server still has connections attached to it, cannot remove it.");
4981 goto out;
4982 }
4983
Amaury Denoyelle56eb8ed2021-07-13 10:36:03 +02004984 /* remove srv from tracking list */
4985 if (srv->track)
4986 release_server_track(srv);
4987
Amaury Denoyelle2fc4d392021-07-22 16:04:59 +02004988 /* stop the check task if running */
4989 if (srv->check.state & CHK_ST_CONFIGURED)
4990 check_purge(&srv->check);
Amaury Denoyelle3eb42f92021-08-10 16:24:36 +02004991 if (srv->agent.state & CHK_ST_CONFIGURED)
Amaury Denoyelleb65f4ca2021-08-04 11:33:14 +02004992 check_purge(&srv->agent);
Amaury Denoyellee5580432021-04-15 14:41:20 +02004993
4994 /* detach the server from the proxy linked list
4995 * The proxy servers list is currently not protected by a lock, so this
4996 * requires thread_isolate/release.
4997 */
4998
4999 /* be->srv cannot be empty since we have already found the server with
5000 * get_backend_server */
5001 BUG_ON(!be->srv);
5002 if (be->srv == srv) {
5003 be->srv = srv->next;
5004 }
5005 else {
5006 struct server *next;
Amaury Denoyelled6b4b6d2021-04-21 11:50:26 +02005007 for (next = be->srv; srv != next->next; next = next->next) {
5008 /* srv cannot be not found since we have already found
5009 * it with get_backend_server */
5010 BUG_ON(!next);
5011 }
Amaury Denoyellee5580432021-04-15 14:41:20 +02005012
Amaury Denoyellee5580432021-04-15 14:41:20 +02005013 next->next = srv->next;
5014 }
5015
5016 /* remove srv from addr_node tree */
Amaury Denoyelle82d7f772021-06-09 16:00:43 +02005017 eb32_delete(&srv->conf.id);
5018 ebpt_delete(&srv->conf.name);
Aurelien DARRAGON8d0ff282022-09-16 14:27:53 +02005019 if (srv->addr_node.key)
5020 ebpt_delete(&srv->addr_node);
Amaury Denoyellee5580432021-04-15 14:41:20 +02005021
5022 /* remove srv from idle_node tree for idle conn cleanup */
5023 eb32_delete(&srv->idle_node);
5024
5025 thread_release();
5026
Amaury Denoyelle5e560e82021-05-28 16:35:05 +02005027 ha_notice("Server deleted.\n");
Amaury Denoyellebc2ebfa2021-08-25 15:34:53 +02005028 srv_drop(srv);
Amaury Denoyellee5580432021-04-15 14:41:20 +02005029
5030 cli_msg(appctx, LOG_INFO, "Server deleted.");
5031
5032 return 0;
5033
5034out:
5035 thread_release();
5036
5037 return 1;
5038}
5039
William Lallemand222baf22016-11-19 02:00:33 +01005040/* register cli keywords */
5041static struct cli_kw_list cli_kws = {{ },{
Amaury Denoyellec755efd2021-08-03 18:05:37 +02005042 { { "disable", "agent", NULL }, "disable agent : disable agent checks", cli_parse_disable_agent, NULL },
5043 { { "disable", "health", NULL }, "disable health : disable health checks", cli_parse_disable_health, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02005044 { { "disable", "server", NULL }, "disable server (DEPRECATED) : disable a server for maintenance (use 'set server' instead)", cli_parse_disable_server, NULL },
Amaury Denoyellec755efd2021-08-03 18:05:37 +02005045 { { "enable", "agent", NULL }, "enable agent : enable agent checks", cli_parse_enable_agent, NULL },
5046 { { "enable", "health", NULL }, "enable health : enable health checks", cli_parse_enable_health, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02005047 { { "enable", "server", NULL }, "enable server (DEPRECATED) : enable a disabled server (use 'set server' instead)", cli_parse_enable_server, NULL },
5048 { { "set", "maxconn", "server", NULL }, "set maxconn server <bk>/<srv> : change a server's maxconn setting", cli_parse_set_maxconn_server, NULL },
5049 { { "set", "server", NULL }, "set server <bk>/<srv> [opts] : change a server's state, weight, address or ssl", cli_parse_set_server },
5050 { { "get", "weight", NULL }, "get weight <bk>/<srv> : report a server's current weight", cli_parse_get_weight },
5051 { { "set", "weight", NULL }, "set weight <bk>/<srv> (DEPRECATED) : change a server's weight (use 'set server' instead)", cli_parse_set_weight },
Amaury Denoyelle76e8b702022-03-09 15:07:31 +01005052 { { "add", "server", NULL }, "add server <bk>/<srv> : create a new server", cli_parse_add_server, NULL },
5053 { { "del", "server", NULL }, "del server <bk>/<srv> : remove a dynamically added server", cli_parse_delete_server, NULL },
William Lallemand222baf22016-11-19 02:00:33 +01005054 {{},}
5055}};
5056
Willy Tarreau0108d902018-11-25 19:14:37 +01005057INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01005058
Amaury Denoyelle669b6202021-07-13 10:35:23 +02005059/* Prepare a server <srv> to track check status of another one. <srv>.<trackit>
5060 * field is used to retrieve the identifier of the tracked server, either with
5061 * the format "proxy/server" or just "server". <curproxy> must point to the
5062 * backend owning <srv>; if no proxy is specified in <trackit>, it will be used
5063 * to find the tracked server.
5064 *
5065 * Returns 0 if the server track has been activated else non-zero.
5066 *
5067 * Not thread-safe.
5068 */
5069int srv_apply_track(struct server *srv, struct proxy *curproxy)
5070{
5071 struct proxy *px;
5072 struct server *strack, *loop;
5073 char *pname, *sname;
5074
5075 if (!srv->trackit)
5076 return 1;
5077
5078 pname = srv->trackit;
5079 sname = strrchr(pname, '/');
5080
5081 if (sname) {
5082 *sname++ = '\0';
5083 }
5084 else {
5085 sname = pname;
5086 pname = NULL;
5087 }
5088
5089 if (pname) {
5090 px = proxy_be_by_name(pname);
5091 if (!px) {
5092 ha_alert("unable to find required proxy '%s' for tracking.\n",
5093 pname);
5094 return 1;
5095 }
5096 }
5097 else {
5098 px = curproxy;
5099 }
5100
5101 strack = findserver(px, sname);
5102 if (!strack) {
5103 ha_alert("unable to find required server '%s' for tracking.\n",
5104 sname);
5105 return 1;
5106 }
5107
Amaury Denoyelle79f68be2021-07-13 10:35:50 +02005108 if (strack->flags & SRV_F_DYNAMIC) {
5109 ha_alert("unable to use %s/%s for tracking as it is a dynamic server.\n",
5110 px->id, strack->id);
5111 return 1;
5112 }
5113
Amaury Denoyelle669b6202021-07-13 10:35:23 +02005114 if (!strack->do_check && !strack->do_agent && !strack->track &&
5115 !strack->trackit) {
5116 ha_alert("unable to use %s/%s for "
5117 "tracking as it does not have any check nor agent enabled.\n",
5118 px->id, strack->id);
5119 return 1;
5120 }
5121
5122 for (loop = strack->track; loop && loop != srv; loop = loop->track)
5123 ;
5124
5125 if (srv == strack || loop) {
5126 ha_alert("unable to track %s/%s as it "
5127 "belongs to a tracking chain looping back to %s/%s.\n",
5128 px->id, strack->id, px->id,
5129 srv == strack ? strack->id : loop->id);
5130 return 1;
5131 }
5132
5133 if (curproxy != px &&
5134 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
5135 ha_alert("unable to use %s/%s for"
5136 "tracking: disable-on-404 option inconsistency.\n",
5137 px->id, strack->id);
5138 return 1;
5139 }
5140
5141 srv->track = strack;
5142 srv->tracknext = strack->trackers;
5143 strack->trackers = srv;
Amaury Denoyelle06269612021-08-23 14:05:07 +02005144 strack->flags |= SRV_F_NON_PURGEABLE;
Amaury Denoyelle669b6202021-07-13 10:35:23 +02005145
5146 ha_free(&srv->trackit);
5147
5148 return 0;
5149}
5150
Emeric Brun64cc49c2017-10-03 14:46:45 +02005151/*
5152 * This function applies server's status changes, it is
5153 * is designed to be called asynchronously.
5154 *
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005155 * Must be called with the server lock held. This may also be called at init
5156 * time as the result of parsing the state file, in which case no lock will be
5157 * held, and the server's warmup task can be null.
Emeric Brun64cc49c2017-10-03 14:46:45 +02005158 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005159static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02005160{
5161 struct check *check = &s->check;
5162 int xferred;
5163 struct proxy *px = s->proxy;
5164 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
5165 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
5166 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02005167 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005168
Emeric Brun64cc49c2017-10-03 14:46:45 +02005169 /* If currently main is not set we try to apply pending state changes */
5170 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
5171 int next_admin;
5172
5173 /* Backup next admin */
5174 next_admin = s->next_admin;
5175
5176 /* restore current admin state */
5177 s->next_admin = s->cur_admin;
5178
5179 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
5180 s->last_change = now.tv_sec;
5181 if (s->proxy->lbprm.set_server_status_down)
5182 s->proxy->lbprm.set_server_status_down(s);
5183
5184 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
5185 srv_shutdown_streams(s, SF_ERR_DOWN);
5186
5187 /* we might have streams queued on this server and waiting for
5188 * a connection. Those which are redispatchable will be queued
5189 * to another server or to the proxy itself.
5190 */
5191 xferred = pendconn_redistribute(s);
5192
5193 tmptrash = alloc_trash_chunk();
5194 if (tmptrash) {
5195 chunk_printf(tmptrash,
5196 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
5197 s->proxy->id, s->id);
5198
Emeric Brun5a133512017-10-19 14:42:30 +02005199 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005200 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005201
5202 /* we don't send an alert if the server was previously paused */
5203 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005204 send_log(s->proxy, log_level, "%s.\n",
5205 tmptrash->area);
5206 send_email_alert(s, log_level, "%s",
5207 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005208 free_trash_chunk(tmptrash);
5209 tmptrash = NULL;
5210 }
5211 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5212 set_backend_down(s->proxy);
5213
5214 s->counters.down_trans++;
5215 }
5216 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
5217 s->last_change = now.tv_sec;
5218 if (s->proxy->lbprm.set_server_status_down)
5219 s->proxy->lbprm.set_server_status_down(s);
5220
5221 /* we might have streams queued on this server and waiting for
5222 * a connection. Those which are redispatchable will be queued
5223 * to another server or to the proxy itself.
5224 */
5225 xferred = pendconn_redistribute(s);
5226
5227 tmptrash = alloc_trash_chunk();
5228 if (tmptrash) {
5229 chunk_printf(tmptrash,
5230 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
5231 s->proxy->id, s->id);
5232
Emeric Brun5a133512017-10-19 14:42:30 +02005233 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005234
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005235 ha_warning("%s.\n", tmptrash->area);
5236 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5237 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005238 free_trash_chunk(tmptrash);
5239 tmptrash = NULL;
5240 }
5241
5242 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5243 set_backend_down(s->proxy);
5244 }
5245 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
5246 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
5247 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5248 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5249 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5250 s->proxy->last_change = now.tv_sec;
5251 }
5252
Amaury Denoyellefe2bf092020-10-29 15:59:04 +01005253 if (s->cur_state == SRV_ST_STOPPED && s->last_change < now.tv_sec) // ignore negative times
Emeric Brun64cc49c2017-10-03 14:46:45 +02005254 s->down_time += now.tv_sec - s->last_change;
5255
5256 s->last_change = now.tv_sec;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005257 if (s->next_state == SRV_ST_STARTING && s->warmup)
Emeric Brun64cc49c2017-10-03 14:46:45 +02005258 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5259
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005260 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005261 /* now propagate the status change to any LB algorithms */
5262 if (px->lbprm.update_server_eweight)
5263 px->lbprm.update_server_eweight(s);
5264 else if (srv_willbe_usable(s)) {
5265 if (px->lbprm.set_server_status_up)
5266 px->lbprm.set_server_status_up(s);
5267 }
5268 else {
5269 if (px->lbprm.set_server_status_down)
5270 px->lbprm.set_server_status_down(s);
5271 }
5272
5273 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5274 * and it's not a backup server and its effective weight is > 0,
5275 * then it can accept new connections, so we shut down all streams
5276 * on all backup servers.
5277 */
5278 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5279 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5280 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5281
5282 /* check if we can handle some connections queued at the proxy. We
5283 * will take as many as we can handle.
5284 */
5285 xferred = pendconn_grab_from_px(s);
5286
5287 tmptrash = alloc_trash_chunk();
5288 if (tmptrash) {
5289 chunk_printf(tmptrash,
5290 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
5291 s->proxy->id, s->id);
5292
Emeric Brun5a133512017-10-19 14:42:30 +02005293 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005294 ha_warning("%s.\n", tmptrash->area);
5295 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5296 tmptrash->area);
5297 send_email_alert(s, LOG_NOTICE, "%s",
5298 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005299 free_trash_chunk(tmptrash);
5300 tmptrash = NULL;
5301 }
5302
5303 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5304 set_backend_down(s->proxy);
5305 }
5306 else if (s->cur_eweight != s->next_eweight) {
5307 /* now propagate the status change to any LB algorithms */
5308 if (px->lbprm.update_server_eweight)
5309 px->lbprm.update_server_eweight(s);
5310 else if (srv_willbe_usable(s)) {
5311 if (px->lbprm.set_server_status_up)
5312 px->lbprm.set_server_status_up(s);
5313 }
5314 else {
5315 if (px->lbprm.set_server_status_down)
5316 px->lbprm.set_server_status_down(s);
5317 }
5318
5319 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5320 set_backend_down(s->proxy);
5321 }
5322
5323 s->next_admin = next_admin;
5324 }
5325
Emeric Brun5a133512017-10-19 14:42:30 +02005326 /* reset operational state change */
5327 *s->op_st_chg.reason = 0;
5328 s->op_st_chg.status = s->op_st_chg.code = -1;
5329 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005330
5331 /* Now we try to apply pending admin changes */
5332
5333 /* Maintenance must also disable health checks */
5334 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
5335 if (s->check.state & CHK_ST_ENABLED) {
5336 s->check.state |= CHK_ST_PAUSED;
5337 check->health = 0;
5338 }
5339
5340 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02005341 tmptrash = alloc_trash_chunk();
5342 if (tmptrash) {
5343 chunk_printf(tmptrash,
5344 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
5345 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5346 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02005347
Olivier Houchard796a2b32017-10-24 17:42:47 +02005348 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02005349
Olivier Houchard796a2b32017-10-24 17:42:47 +02005350 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005351 ha_warning("%s.\n", tmptrash->area);
5352 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5353 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02005354 }
5355 free_trash_chunk(tmptrash);
5356 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005357 }
Emeric Brun8f298292017-12-06 16:47:17 +01005358 /* commit new admin status */
5359
5360 s->cur_admin = s->next_admin;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005361 }
5362 else { /* server was still running */
5363 check->health = 0; /* failure */
5364 s->last_change = now.tv_sec;
Emeric Brune3114802017-12-21 14:42:26 +01005365
5366 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005367 if (s->proxy->lbprm.set_server_status_down)
5368 s->proxy->lbprm.set_server_status_down(s);
5369
Emeric Brun64cc49c2017-10-03 14:46:45 +02005370 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
5371 srv_shutdown_streams(s, SF_ERR_DOWN);
5372
William Dauchy6318d332020-05-02 21:52:36 +02005373 /* force connection cleanup on the given server */
5374 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005375 /* we might have streams queued on this server and waiting for
5376 * a connection. Those which are redispatchable will be queued
5377 * to another server or to the proxy itself.
5378 */
5379 xferred = pendconn_redistribute(s);
5380
5381 tmptrash = alloc_trash_chunk();
5382 if (tmptrash) {
5383 chunk_printf(tmptrash,
5384 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
5385 s->flags & SRV_F_BACKUP ? "Backup " : "",
5386 s->proxy->id, s->id,
5387 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5388
5389 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
5390
5391 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005392 ha_warning("%s.\n", tmptrash->area);
5393 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
5394 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005395 }
5396 free_trash_chunk(tmptrash);
5397 tmptrash = NULL;
5398 }
5399 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5400 set_backend_down(s->proxy);
5401
5402 s->counters.down_trans++;
5403 }
5404 }
5405 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
5406 /* OK here we're leaving maintenance, we have many things to check,
5407 * because the server might possibly be coming back up depending on
5408 * its state. In practice, leaving maintenance means that we should
5409 * immediately turn to UP (more or less the slowstart) under the
5410 * following conditions :
5411 * - server is neither checked nor tracked
5412 * - server tracks another server which is not checked
5413 * - server tracks another server which is already up
5414 * Which sums up as something simpler :
5415 * "either the tracking server is up or the server's checks are disabled
5416 * or up". Otherwise we only re-enable health checks. There's a special
5417 * case associated to the stopping state which can be inherited. Note
5418 * that the server might still be in drain mode, which is naturally dealt
5419 * with by the lower level functions.
5420 */
5421
5422 if (s->check.state & CHK_ST_ENABLED) {
5423 s->check.state &= ~CHK_ST_PAUSED;
5424 check->health = check->rise; /* start OK but check immediately */
5425 }
5426
5427 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
5428 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
5429 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
5430 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
5431 s->next_state = SRV_ST_STOPPING;
5432 }
5433 else {
Willy Tarreaud332f132021-08-04 19:35:13 +02005434 s->last_change = now.tv_sec;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005435 s->next_state = SRV_ST_STARTING;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005436 if (s->slowstart > 0) {
5437 if (s->warmup)
5438 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5439 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005440 else
5441 s->next_state = SRV_ST_RUNNING;
5442 }
5443
5444 }
5445
5446 tmptrash = alloc_trash_chunk();
5447 if (tmptrash) {
5448 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5449 chunk_printf(tmptrash,
5450 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
5451 s->flags & SRV_F_BACKUP ? "Backup " : "",
5452 s->proxy->id, s->id,
5453 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5454 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5455 }
5456 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5457 chunk_printf(tmptrash,
5458 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
5459 s->flags & SRV_F_BACKUP ? "Backup " : "",
5460 s->proxy->id, s->id, s->hostname,
5461 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5462 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5463 }
5464 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5465 chunk_printf(tmptrash,
5466 "%sServer %s/%s is %s/%s (leaving maintenance)",
5467 s->flags & SRV_F_BACKUP ? "Backup " : "",
5468 s->proxy->id, s->id,
5469 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5470 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5471 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005472 ha_warning("%s.\n", tmptrash->area);
5473 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5474 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005475 free_trash_chunk(tmptrash);
5476 tmptrash = NULL;
5477 }
5478
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005479 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005480 /* now propagate the status change to any LB algorithms */
5481 if (px->lbprm.update_server_eweight)
5482 px->lbprm.update_server_eweight(s);
5483 else if (srv_willbe_usable(s)) {
5484 if (px->lbprm.set_server_status_up)
5485 px->lbprm.set_server_status_up(s);
5486 }
5487 else {
5488 if (px->lbprm.set_server_status_down)
5489 px->lbprm.set_server_status_down(s);
5490 }
5491
5492 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5493 set_backend_down(s->proxy);
Willy Tarreaud332f132021-08-04 19:35:13 +02005494 else if (!prev_srv_count && (s->proxy->srv_bck || s->proxy->srv_act))
5495 s->proxy->last_change = now.tv_sec;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005496
Willy Tarreau6a78e612018-08-07 10:14:53 +02005497 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5498 * and it's not a backup server and its effective weight is > 0,
5499 * then it can accept new connections, so we shut down all streams
5500 * on all backup servers.
5501 */
5502 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5503 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5504 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5505
5506 /* check if we can handle some connections queued at the proxy. We
5507 * will take as many as we can handle.
5508 */
5509 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005510 }
5511 else if (s->next_admin & SRV_ADMF_MAINT) {
5512 /* remaining in maintenance mode, let's inform precisely about the
5513 * situation.
5514 */
5515 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5516 tmptrash = alloc_trash_chunk();
5517 if (tmptrash) {
5518 chunk_printf(tmptrash,
5519 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5520 s->flags & SRV_F_BACKUP ? "Backup " : "",
5521 s->proxy->id, s->id);
5522
5523 if (s->track) /* normally it's mandatory here */
5524 chunk_appendf(tmptrash, " via %s/%s",
5525 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005526 ha_warning("%s.\n", tmptrash->area);
5527 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5528 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005529 free_trash_chunk(tmptrash);
5530 tmptrash = NULL;
5531 }
5532 }
5533 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5534 tmptrash = alloc_trash_chunk();
5535 if (tmptrash) {
5536 chunk_printf(tmptrash,
5537 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5538 s->flags & SRV_F_BACKUP ? "Backup " : "",
5539 s->proxy->id, s->id, s->hostname);
5540
5541 if (s->track) /* normally it's mandatory here */
5542 chunk_appendf(tmptrash, " via %s/%s",
5543 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005544 ha_warning("%s.\n", tmptrash->area);
5545 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5546 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005547 free_trash_chunk(tmptrash);
5548 tmptrash = NULL;
5549 }
5550 }
5551 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5552 tmptrash = alloc_trash_chunk();
5553 if (tmptrash) {
5554 chunk_printf(tmptrash,
5555 "%sServer %s/%s remains in forced maintenance",
5556 s->flags & SRV_F_BACKUP ? "Backup " : "",
5557 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005558 ha_warning("%s.\n", tmptrash->area);
5559 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5560 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005561 free_trash_chunk(tmptrash);
5562 tmptrash = NULL;
5563 }
5564 }
5565 /* don't report anything when leaving drain mode and remaining in maintenance */
5566
5567 s->cur_admin = s->next_admin;
5568 }
5569
5570 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5571 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5572 /* drain state is applied only if not yet in maint */
5573
5574 s->last_change = now.tv_sec;
5575 if (px->lbprm.set_server_status_down)
5576 px->lbprm.set_server_status_down(s);
5577
5578 /* we might have streams queued on this server and waiting for
5579 * a connection. Those which are redispatchable will be queued
5580 * to another server or to the proxy itself.
5581 */
5582 xferred = pendconn_redistribute(s);
5583
5584 tmptrash = alloc_trash_chunk();
5585 if (tmptrash) {
5586 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5587 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5588 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5589
5590 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5591
5592 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005593 ha_warning("%s.\n", tmptrash->area);
5594 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5595 tmptrash->area);
5596 send_email_alert(s, LOG_NOTICE, "%s",
5597 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005598 }
5599 free_trash_chunk(tmptrash);
5600 tmptrash = NULL;
5601 }
5602
5603 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5604 set_backend_down(s->proxy);
5605 }
5606 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5607 /* OK completely leaving drain mode */
5608 if (s->proxy->srv_bck == 0 && s->proxy->srv_act == 0) {
5609 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5610 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5611 s->proxy->last_change = now.tv_sec;
5612 }
5613
5614 if (s->last_change < now.tv_sec) // ignore negative times
5615 s->down_time += now.tv_sec - s->last_change;
5616 s->last_change = now.tv_sec;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005617 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005618
5619 tmptrash = alloc_trash_chunk();
5620 if (tmptrash) {
5621 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5622 chunk_printf(tmptrash,
5623 "%sServer %s/%s is %s (leaving forced drain)",
5624 s->flags & SRV_F_BACKUP ? "Backup " : "",
5625 s->proxy->id, s->id,
5626 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5627 }
5628 else {
5629 chunk_printf(tmptrash,
5630 "%sServer %s/%s is %s (leaving drain)",
5631 s->flags & SRV_F_BACKUP ? "Backup " : "",
5632 s->proxy->id, s->id,
5633 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5634 if (s->track) /* normally it's mandatory here */
5635 chunk_appendf(tmptrash, " via %s/%s",
5636 s->track->proxy->id, s->track->id);
5637 }
5638
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005639 ha_warning("%s.\n", tmptrash->area);
5640 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5641 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005642 free_trash_chunk(tmptrash);
5643 tmptrash = NULL;
5644 }
5645
5646 /* now propagate the status change to any LB algorithms */
5647 if (px->lbprm.update_server_eweight)
5648 px->lbprm.update_server_eweight(s);
5649 else if (srv_willbe_usable(s)) {
5650 if (px->lbprm.set_server_status_up)
5651 px->lbprm.set_server_status_up(s);
5652 }
5653 else {
5654 if (px->lbprm.set_server_status_down)
5655 px->lbprm.set_server_status_down(s);
5656 }
5657 }
5658 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5659 /* remaining in drain mode after removing one of its flags */
5660
5661 tmptrash = alloc_trash_chunk();
5662 if (tmptrash) {
5663 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5664 chunk_printf(tmptrash,
5665 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5666 s->flags & SRV_F_BACKUP ? "Backup " : "",
5667 s->proxy->id, s->id);
5668
5669 if (s->track) /* normally it's mandatory here */
5670 chunk_appendf(tmptrash, " via %s/%s",
5671 s->track->proxy->id, s->track->id);
5672 }
5673 else {
5674 chunk_printf(tmptrash,
5675 "%sServer %s/%s remains in forced drain mode",
5676 s->flags & SRV_F_BACKUP ? "Backup " : "",
5677 s->proxy->id, s->id);
5678 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005679 ha_warning("%s.\n", tmptrash->area);
5680 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5681 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005682 free_trash_chunk(tmptrash);
5683 tmptrash = NULL;
5684 }
5685
5686 /* commit new admin status */
5687
5688 s->cur_admin = s->next_admin;
5689 }
5690 }
5691
5692 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005693 *s->adm_st_chg_cause = 0;
5694}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005695
Willy Tarreau144f84a2021-03-02 16:09:26 +01005696struct task *srv_cleanup_toremove_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005697{
5698 struct connection *conn;
5699
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005700 while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns,
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005701 struct connection *, toremove_list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005702 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005703 }
5704
5705 return task;
5706}
5707
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005708/* Move toremove_nb connections from idle_tree to toremove_list, -1 means
Olivier Houchardff1d0922020-06-29 20:15:59 +02005709 * moving them all.
5710 * Returns the number of connections moved.
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005711 *
5712 * Must be called with idle_conns_lock held.
Olivier Houchardff1d0922020-06-29 20:15:59 +02005713 */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005714static 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 +02005715{
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005716 struct eb_node *node, *next;
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005717 struct conn_hash_node *hash_node;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005718 int i = 0;
5719
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005720 node = eb_first(idle_tree);
5721 while (node) {
5722 next = eb_next(node);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005723 if (toremove_nb != -1 && i >= toremove_nb)
5724 break;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005725
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005726 hash_node = ebmb_entry(node, struct conn_hash_node, node);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005727 eb_delete(node);
Willy Tarreau2b718102021-04-21 07:32:39 +02005728 MT_LIST_APPEND(toremove_list, &hash_node->conn->toremove_list);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005729 i++;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005730
5731 node = next;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005732 }
5733 return i;
5734}
William Dauchy6318d332020-05-02 21:52:36 +02005735/* cleanup connections for a given server
5736 * might be useful when going on forced maintenance or live changing ip/port
5737 */
William Dauchy707ad322020-05-04 13:52:40 +02005738static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005739{
William Dauchy6318d332020-05-02 21:52:36 +02005740 int did_remove;
5741 int i;
William Dauchy6318d332020-05-02 21:52:36 +02005742
Amaury Denoyelle10d5c312021-01-06 14:28:51 +01005743 /* nothing to do if pool-max-conn is null */
5744 if (!srv->max_idle_conns)
5745 return;
5746
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005747 /* check all threads starting with ours */
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005748 for (i = tid;;) {
William Dauchy6318d332020-05-02 21:52:36 +02005749 did_remove = 0;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005750 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005751 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 +02005752 did_remove = 1;
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005753 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 +02005754 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005755 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
William Dauchy6318d332020-05-02 21:52:36 +02005756 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005757 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005758
5759 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5760 break;
William Dauchy6318d332020-05-02 21:52:36 +02005761 }
Willy Tarreau260f3242021-10-06 18:30:04 +02005762}
5763
5764/* removes an idle conn after updating the server idle conns counters */
5765void srv_release_conn(struct server *srv, struct connection *conn)
5766{
5767 if (conn->flags & CO_FL_LIST_MASK) {
5768 /* The connection is currently in the server's idle list, so tell it
5769 * there's one less connection available in that list.
5770 */
5771 _HA_ATOMIC_DEC(&srv->curr_idle_conns);
5772 _HA_ATOMIC_DEC(conn->flags & CO_FL_SAFE_LIST ? &srv->curr_safe_nb : &srv->curr_idle_nb);
5773 _HA_ATOMIC_DEC(&srv->curr_idle_thr[tid]);
5774 }
5775 else {
5776 /* The connection is not private and not in any server's idle
5777 * list, so decrement the current number of used connections
5778 */
5779 _HA_ATOMIC_DEC(&srv->curr_used_conns);
5780 }
5781
5782 /* Remove the connection from any tree (safe, idle or available) */
5783 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5784 conn_delete_from_tree(&conn->hash_node->node);
5785 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5786}
5787
5788/* retrieve a connection from its <hash> in <tree>
5789 * returns NULL if no connection found
5790 */
5791struct connection *srv_lookup_conn(struct eb_root *tree, uint64_t hash)
5792{
Willy Tarreau85223482022-09-29 20:32:43 +02005793 struct eb64_node *node = NULL;
Willy Tarreau260f3242021-10-06 18:30:04 +02005794 struct connection *conn = NULL;
5795 struct conn_hash_node *hash_node = NULL;
5796
Willy Tarreau85223482022-09-29 20:32:43 +02005797 node = eb64_lookup(tree, hash);
Willy Tarreau260f3242021-10-06 18:30:04 +02005798 if (node) {
5799 hash_node = ebmb_entry(node, struct conn_hash_node, node);
5800 conn = hash_node->conn;
5801 }
5802
5803 return conn;
5804}
5805
5806/* retrieve the next connection sharing the same hash as <conn>
5807 * returns NULL if no connection found
5808 */
5809struct connection *srv_lookup_conn_next(struct connection *conn)
5810{
Willy Tarreau85223482022-09-29 20:32:43 +02005811 struct eb64_node *node = NULL;
Willy Tarreau260f3242021-10-06 18:30:04 +02005812 struct connection *next_conn = NULL;
5813 struct conn_hash_node *hash_node = NULL;
5814
Willy Tarreau85223482022-09-29 20:32:43 +02005815 node = eb64_next_dup(&conn->hash_node->node);
Willy Tarreau260f3242021-10-06 18:30:04 +02005816 if (node) {
Willy Tarreau85223482022-09-29 20:32:43 +02005817 hash_node = eb64_entry(node, struct conn_hash_node, node);
Willy Tarreau260f3242021-10-06 18:30:04 +02005818 next_conn = hash_node->conn;
5819 }
5820
5821 return next_conn;
5822}
5823
5824/* This adds an idle connection to the server's list if the connection is
5825 * reusable, not held by any owner anymore, but still has available streams.
5826 */
5827int srv_add_to_idle_list(struct server *srv, struct connection *conn, int is_safe)
5828{
5829 /* we try to keep the connection in the server's idle list
5830 * if we don't have too many FD in use, and if the number of
5831 * idle+current conns is lower than what was observed before
5832 * last purge, or if we already don't have idle conns for the
5833 * current thread and we don't exceed last count by global.nbthread.
5834 */
5835 if (!(conn->flags & CO_FL_PRIVATE) &&
5836 srv && srv->pool_purge_delay > 0 &&
5837 ((srv->proxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR) &&
5838 ha_used_fds < global.tune.pool_high_count &&
5839 (srv->max_idle_conns == -1 || srv->max_idle_conns > srv->curr_idle_conns) &&
5840 ((eb_is_empty(&srv->per_thr[tid].safe_conns) &&
5841 (is_safe || eb_is_empty(&srv->per_thr[tid].idle_conns))) ||
5842 (ha_used_fds < global.tune.pool_low_count &&
5843 (srv->curr_used_conns + srv->curr_idle_conns <=
5844 MAX(srv->curr_used_conns, srv->est_need_conns) + srv->low_idle_conns))) &&
5845 !conn->mux->used_streams(conn) && conn->mux->avail_streams(conn)) {
5846 int retadd;
5847
5848 retadd = _HA_ATOMIC_ADD_FETCH(&srv->curr_idle_conns, 1);
5849 if (retadd > srv->max_idle_conns) {
5850 _HA_ATOMIC_DEC(&srv->curr_idle_conns);
5851 return 0;
5852 }
5853 _HA_ATOMIC_DEC(&srv->curr_used_conns);
5854
5855 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5856 conn_delete_from_tree(&conn->hash_node->node);
5857
5858 if (is_safe) {
5859 conn->flags = (conn->flags & ~CO_FL_LIST_MASK) | CO_FL_SAFE_LIST;
Willy Tarreau85223482022-09-29 20:32:43 +02005860 eb64_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node);
Willy Tarreau260f3242021-10-06 18:30:04 +02005861 _HA_ATOMIC_INC(&srv->curr_safe_nb);
5862 } else {
5863 conn->flags = (conn->flags & ~CO_FL_LIST_MASK) | CO_FL_IDLE_LIST;
Willy Tarreau85223482022-09-29 20:32:43 +02005864 eb64_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node);
Willy Tarreau260f3242021-10-06 18:30:04 +02005865 _HA_ATOMIC_INC(&srv->curr_idle_nb);
5866 }
5867 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5868 _HA_ATOMIC_INC(&srv->curr_idle_thr[tid]);
5869
5870 __ha_barrier_full();
5871 if ((volatile void *)srv->idle_node.node.leaf_p == NULL) {
5872 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5873 if ((volatile void *)srv->idle_node.node.leaf_p == NULL) {
5874 srv->idle_node.key = tick_add(srv->pool_purge_delay,
5875 now_ms);
5876 eb32_insert(&idle_conn_srv, &srv->idle_node);
5877 if (!task_in_wq(idle_conn_task) && !
5878 task_in_rq(idle_conn_task)) {
5879 task_schedule(idle_conn_task,
5880 srv->idle_node.key);
5881 }
5882
5883 }
5884 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5885 }
5886 return 1;
5887 }
5888 return 0;
William Dauchy6318d332020-05-02 21:52:36 +02005889}
5890
Willy Tarreau144f84a2021-03-02 16:09:26 +01005891struct task *srv_cleanup_idle_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005892{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005893 struct server *srv;
5894 struct eb32_node *eb;
5895 int i;
5896 unsigned int next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005897
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005898 next_wakeup = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005899 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5900 while (1) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005901 int exceed_conns;
5902 int to_kill;
5903 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005904
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005905 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5906 if (!eb) {
5907 /* we might have reached the end of the tree, typically because
5908 * <now_ms> is in the first half and we're first scanning the last
5909 * half. Let's loop back to the beginning of the tree now.
5910 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005911
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005912 eb = eb32_first(&idle_conn_srv);
5913 if (likely(!eb))
5914 break;
5915 }
5916 if (tick_is_lt(now_ms, eb->key)) {
5917 /* timer not expired yet, revisit it later */
5918 next_wakeup = eb->key;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005919 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005920 }
5921 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005922
5923 /* Calculate how many idle connections we want to kill :
5924 * we want to remove half the difference between the total
5925 * of established connections (used or idle) and the max
5926 * number of used connections.
5927 */
5928 curr_idle = srv->curr_idle_conns;
5929 if (curr_idle == 0)
5930 goto remove;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005931 exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005932 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005933
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005934 srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns) / 2;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005935 if (srv->est_need_conns < srv->max_used_conns)
5936 srv->est_need_conns = srv->max_used_conns;
5937
Willy Tarreau9dc231a2022-11-21 14:32:33 +01005938 HA_ATOMIC_STORE(&srv->max_used_conns, srv->curr_used_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005939
Willy Tarreau18ed7892020-07-02 19:05:30 +02005940 if (exceed_conns <= 0)
5941 goto remove;
5942
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005943 /* check all threads starting with ours */
5944 for (i = tid;;) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005945 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005946 int j;
5947 int did_remove = 0;
5948
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005949 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5950 curr_idle + 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005951
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005952 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005953 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 +02005954 if (j > 0)
5955 did_remove = 1;
5956 if (max_conn - j > 0 &&
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005957 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 +01005958 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005959 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005960
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005961 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005962 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005963
5964 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5965 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005966 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005967remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005968 eb32_delete(&srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005969
5970 if (srv->curr_idle_conns) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005971 /* There are still more idle connections, add the
5972 * server back in the tree.
5973 */
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005974 srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005975 eb32_insert(&idle_conn_srv, &srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005976 next_wakeup = tick_first(next_wakeup, srv->idle_node.key);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005977 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005978 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005979 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5980
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005981 task->expire = next_wakeup;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005982 return task;
5983}
Olivier Houchard88698d92019-04-16 19:07:22 +02005984
Amaury Denoyelle3109ccf2021-04-29 17:30:05 +02005985/* Close remaining idle connections. This functions is designed to be run on
5986 * process shutdown. This guarantees a proper socket shutdown to avoid
5987 * TIME_WAIT state. For a quick operation, only ctrl is closed, xprt stack is
5988 * bypassed.
5989 *
5990 * This function is not thread-safe so it must only be called via a global
5991 * deinit function.
5992 */
5993static void srv_close_idle_conns(struct server *srv)
5994{
5995 struct eb_root **cleaned_tree;
5996 int i;
5997
5998 for (i = 0; i < global.nbthread; ++i) {
5999 struct eb_root *conn_trees[] = {
6000 &srv->per_thr[i].idle_conns,
6001 &srv->per_thr[i].safe_conns,
6002 &srv->per_thr[i].avail_conns,
6003 NULL
6004 };
6005
6006 for (cleaned_tree = conn_trees; *cleaned_tree; ++cleaned_tree) {
6007 while (!eb_is_empty(*cleaned_tree)) {
6008 struct ebmb_node *node = ebmb_first(*cleaned_tree);
6009 struct conn_hash_node *conn_hash_node = ebmb_entry(node, struct conn_hash_node, node);
6010 struct connection *conn = conn_hash_node->conn;
6011
6012 if (conn->ctrl->ctrl_close)
6013 conn->ctrl->ctrl_close(conn);
6014 ebmb_delete(node);
6015 }
6016 }
6017 }
6018}
6019
6020REGISTER_SERVER_DEINIT(srv_close_idle_conns);
6021
Willy Tarreau76cc6992020-07-01 18:49:24 +02006022/* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */
6023static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006024 const struct proxy *defpx, const char *file, int line,
Willy Tarreau76cc6992020-07-01 18:49:24 +02006025 char **err)
6026{
6027 if (too_many_args(1, args, err, NULL))
6028 return -1;
6029
6030 if (strcmp(args[1], "on") == 0)
6031 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
6032 else if (strcmp(args[1], "off") == 0)
6033 global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
6034 else {
6035 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
6036 return -1;
6037 }
6038 return 0;
6039}
6040
Olivier Houchard88698d92019-04-16 19:07:22 +02006041/* config parser for global "tune.pool-{low,high}-fd-ratio" */
6042static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01006043 const struct proxy *defpx, const char *file, int line,
Olivier Houchard88698d92019-04-16 19:07:22 +02006044 char **err)
6045{
6046 int arg = -1;
6047
6048 if (too_many_args(1, args, err, NULL))
6049 return -1;
6050
6051 if (*(args[1]) != 0)
6052 arg = atoi(args[1]);
6053
6054 if (arg < 0 || arg > 100) {
6055 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
6056 return -1;
6057 }
6058
6059 if (args[0][10] == 'h')
6060 global.tune.pool_high_ratio = arg;
6061 else
6062 global.tune.pool_low_ratio = arg;
6063 return 0;
6064}
6065
6066/* config keyword parsers */
6067static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau76cc6992020-07-01 18:49:24 +02006068 { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared },
Olivier Houchard88698d92019-04-16 19:07:22 +02006069 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
6070 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
6071 { 0, NULL, NULL }
6072}};
6073
6074INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
6075
Baptiste Assmanna68ca962015-04-14 01:15:08 +02006076/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02006077 * Local variables:
6078 * c-indent-level: 8
6079 * c-basic-offset: 8
6080 * End:
6081 */