blob: 2e4c19fe48802fd21183d3029adca63e02f28460 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Server management functions.
3 *
Willy Tarreau21faa912012-10-10 08:27:36 +02004 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +01005 * Copyright 2007-2008 Krzysztof Piotr Oledzki <ole@ans.pl>
Willy Tarreaubaaee002006-06-26 02:48:02 +02006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
Willy Tarreau0a4b0ab2020-06-11 11:22:44 +020014#include <sys/types.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020015#include <netinet/tcp.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020016#include <ctype.h>
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +020017#include <errno.h>
Willy Tarreau272adea2014-03-31 10:39:59 +020018
Willy Tarreau6be78492020-06-05 00:00:29 +020019#include <import/xxhash.h>
20
Willy Tarreaub2551052020-06-09 09:07:15 +020021#include <haproxy/api.h>
Willy Tarreau3f0f82e2020-06-04 19:42:41 +020022#include <haproxy/applet-t.h>
Willy Tarreau49801602020-06-04 22:50:02 +020023#include <haproxy/backend.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020024#include <haproxy/cfgparse.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020025#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020026#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020027#include <haproxy/connection.h>
Willy Tarreau3afc4c42020-06-03 18:23:19 +020028#include <haproxy/dict-t.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020029#include <haproxy/errors.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020030#include <haproxy/global.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020031#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020032#include <haproxy/mailers.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +020033#include <haproxy/namespace.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020034#include <haproxy/port_range.h>
35#include <haproxy/protocol.h>
Willy Tarreaub00a8e32021-05-08 20:18:59 +020036#include <haproxy/proxy.h>
Willy Tarreaua55c4542020-06-04 22:59:39 +020037#include <haproxy/queue.h>
Emeric Brunc9437992021-02-12 19:42:55 +010038#include <haproxy/resolvers.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020039#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020040#include <haproxy/server.h>
William Dauchyf6370442020-11-14 19:25:33 +010041#include <haproxy/ssl_sock.h>
Amaury Denoyellef99f77a2021-03-08 17:13:32 +010042#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020043#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020044#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020045#include <haproxy/task.h>
Willy Tarreau51cd5952020-06-05 12:25:38 +020046#include <haproxy/tcpcheck.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020047#include <haproxy/time.h>
Willy Tarreauba6300e2021-05-08 14:09:40 +020048#include <haproxy/tools.h>
Krzysztof Oledzki85130942007-10-22 16:21:10 +020049
Baptiste Assmannda29fe22019-06-13 13:24:29 +020050
Willy Tarreau3ff577e2018-08-02 11:48:52 +020051static void srv_update_status(struct server *s);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +010052static int srv_apply_lastaddr(struct server *srv, int *err_code);
William Dauchy6318d332020-05-02 21:52:36 +020053static void srv_cleanup_connections(struct server *srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +020054
Amaury Denoyelle587b71e2021-03-10 16:36:02 +010055/* extra keywords used as value for other arguments. They are used as
56 * suggestions for mistyped words.
Willy Tarreau49c2b452021-03-12 09:58:04 +010057 */
Amaury Denoyelle587b71e2021-03-10 16:36:02 +010058static const char *extra_kw_list[] = {
59 "ipv4", "ipv6", "legacy", "octet-count",
Amaury Denoyelle3b89c112021-03-12 16:04:00 +010060 "fail-check", "sudden-death", "mark-down",
Willy Tarreau49c2b452021-03-12 09:58:04 +010061 NULL /* must be last */
62};
63
Willy Tarreau21faa912012-10-10 08:27:36 +020064/* List head of all known server keywords */
65static struct srv_kw_list srv_keywords = {
66 .list = LIST_HEAD_INIT(srv_keywords.list)
67};
Krzysztof Oledzki85130942007-10-22 16:21:10 +020068
Willy Tarreauaf613e82020-06-05 08:40:51 +020069__decl_thread(HA_SPINLOCK_T idle_conn_srv_lock);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010070struct eb_root idle_conn_srv = EB_ROOT;
Willy Tarreau14015b82021-04-10 17:33:15 +020071struct task *idle_conn_task __read_mostly = NULL;
Willy Tarreau198e92a2021-03-05 10:23:32 +010072struct list servers_list = LIST_HEAD_INIT(servers_list);
Olivier Houchard9ea5d362019-02-14 18:29:09 +010073
Frédéric Lécaille7da71292019-05-20 09:47:07 +020074/* The server names dictionary */
Thayne McCombs92149f92020-11-20 01:28:26 -070075struct dict server_key_dict = {
76 .name = "server keys",
Frédéric Lécaille7da71292019-05-20 09:47:07 +020077 .values = EB_ROOT_UNIQUE,
78};
79
Simon Hormana3608442013-11-01 16:46:15 +090080int srv_downtime(const struct server *s)
Willy Tarreau21faa912012-10-10 08:27:36 +020081{
Amaury Denoyellee6ba7912020-10-29 15:59:05 +010082 if ((s->cur_state != SRV_ST_STOPPED) || s->last_change >= now.tv_sec) // ignore negative time
Krzysztof Oledzki85130942007-10-22 16:21:10 +020083 return s->down_time;
84
85 return now.tv_sec - s->last_change + s->down_time;
86}
Willy Tarreaubaaee002006-06-26 02:48:02 +020087
Bhaskar Maddalaa20cb852014-02-03 16:26:46 -050088int srv_lastsession(const struct server *s)
89{
90 if (s->counters.last_sess)
91 return now.tv_sec - s->counters.last_sess;
92
93 return -1;
94}
95
Simon Horman4a741432013-02-23 15:35:38 +090096int srv_getinter(const struct check *check)
Willy Tarreau21faa912012-10-10 08:27:36 +020097{
Simon Horman4a741432013-02-23 15:35:38 +090098 const struct server *s = check->server;
99
Willy Tarreauff5ae352013-12-11 20:36:34 +0100100 if ((check->state & CHK_ST_CONFIGURED) && (check->health == check->rise + check->fall - 1))
Simon Horman4a741432013-02-23 15:35:38 +0900101 return check->inter;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100102
Emeric Brun52a91d32017-08-31 14:41:55 +0200103 if ((s->next_state == SRV_ST_STOPPED) && check->health == 0)
Simon Horman4a741432013-02-23 15:35:38 +0900104 return (check->downinter)?(check->downinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100105
Simon Horman4a741432013-02-23 15:35:38 +0900106 return (check->fastinter)?(check->fastinter):(check->inter);
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100107}
108
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100109/*
110 * Check that we did not get a hash collision.
Willy Tarreau595e7672020-10-20 17:30:08 +0200111 * Unlikely, but it can happen. The server's proxy must be at least
112 * read-locked.
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100113 */
114static inline void srv_check_for_dup_dyncookie(struct server *s)
Olivier Houchard4e694042017-03-14 20:01:29 +0100115{
116 struct proxy *p = s->proxy;
117 struct server *tmpserv;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100118
119 for (tmpserv = p->srv; tmpserv != NULL;
120 tmpserv = tmpserv->next) {
121 if (tmpserv == s)
122 continue;
123 if (tmpserv->next_admin & SRV_ADMF_FMAINT)
124 continue;
125 if (tmpserv->cookie &&
126 strcmp(tmpserv->cookie, s->cookie) == 0) {
127 ha_warning("We generated two equal cookies for two different servers.\n"
128 "Please change the secret key for '%s'.\n",
129 s->proxy->id);
130 }
131 }
132
133}
134
Willy Tarreau46b7f532018-08-21 11:54:26 +0200135/*
Willy Tarreau595e7672020-10-20 17:30:08 +0200136 * Must be called with the server lock held, and will read-lock the proxy.
Willy Tarreau46b7f532018-08-21 11:54:26 +0200137 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100138void srv_set_dyncookie(struct server *s)
139{
140 struct proxy *p = s->proxy;
Olivier Houchard4e694042017-03-14 20:01:29 +0100141 char *tmpbuf;
142 unsigned long long hash_value;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100143 size_t key_len;
Olivier Houchard4e694042017-03-14 20:01:29 +0100144 size_t buffer_len;
145 int addr_len;
146 int port;
147
Willy Tarreau595e7672020-10-20 17:30:08 +0200148 HA_RWLOCK_RDLOCK(PROXY_LOCK, &p->lock);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200149
Olivier Houchard4e694042017-03-14 20:01:29 +0100150 if ((s->flags & SRV_F_COOKIESET) ||
151 !(s->proxy->ck_opts & PR_CK_DYNAMIC) ||
152 s->proxy->dyncookie_key == NULL)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200153 goto out;
Olivier Houchard2cb49eb2017-03-15 15:11:06 +0100154 key_len = strlen(p->dyncookie_key);
Olivier Houchard4e694042017-03-14 20:01:29 +0100155
156 if (s->addr.ss_family != AF_INET &&
157 s->addr.ss_family != AF_INET6)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200158 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100159 /*
160 * Buffer to calculate the cookie value.
161 * The buffer contains the secret key + the server IP address
162 * + the TCP port.
163 */
164 addr_len = (s->addr.ss_family == AF_INET) ? 4 : 16;
165 /*
166 * The TCP port should use only 2 bytes, but is stored in
167 * an unsigned int in struct server, so let's use 4, to be
168 * on the safe side.
169 */
170 buffer_len = key_len + addr_len + 4;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200171 tmpbuf = trash.area;
Olivier Houchard4e694042017-03-14 20:01:29 +0100172 memcpy(tmpbuf, p->dyncookie_key, key_len);
173 memcpy(&(tmpbuf[key_len]),
174 s->addr.ss_family == AF_INET ?
175 (void *)&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr :
176 (void *)&(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr),
177 addr_len);
178 /*
179 * Make sure it's the same across all the load balancers,
180 * no matter their endianness.
181 */
182 port = htonl(s->svc_port);
183 memcpy(&tmpbuf[key_len + addr_len], &port, 4);
184 hash_value = XXH64(tmpbuf, buffer_len, 0);
185 memprintf(&s->cookie, "%016llx", hash_value);
186 if (!s->cookie)
Willy Tarreau5e83d992019-07-30 11:59:34 +0200187 goto out;
Olivier Houchard4e694042017-03-14 20:01:29 +0100188 s->cklen = 16;
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100189
190 /* Don't bother checking if the dyncookie is duplicated if
191 * the server is marked as "disabled", maybe it doesn't have
192 * its real IP yet, but just a place holder.
Olivier Houchard4e694042017-03-14 20:01:29 +0100193 */
Olivier Houcharde9bad0a2018-01-17 17:39:34 +0100194 if (!(s->next_admin & SRV_ADMF_FMAINT))
195 srv_check_for_dup_dyncookie(s);
Willy Tarreau5e83d992019-07-30 11:59:34 +0200196 out:
Willy Tarreau595e7672020-10-20 17:30:08 +0200197 HA_RWLOCK_RDUNLOCK(PROXY_LOCK, &p->lock);
Olivier Houchard4e694042017-03-14 20:01:29 +0100198}
199
Amaury Denoyelle8e99b842021-10-18 14:39:57 +0200200/* Returns true if it's possible to reuse an idle connection from server <srv>
201 * for a websocket stream. This is the case if server is configured to use the
202 * same protocol for both HTTP and websocket streams. This depends on the value
203 * of "proto", "alpn" and "ws" keywords.
204 */
205int srv_check_reuse_ws(struct server *srv)
206{
Amaury Denoyelleea489aa2021-11-25 10:20:19 +0100207#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
208 if (!srv->mux_proto && srv->use_ssl && srv->ssl_ctx.alpn_str) {
209 /* ALPN selection.
210 * Based on the assumption that only "h2" and "http/1.1" token
211 * are used on server ALPN.
212 */
213 const struct ist alpn = ist2(srv->ssl_ctx.alpn_str,
214 srv->ssl_ctx.alpn_len);
215
216 switch (srv->ws) {
217 case SRV_WS_AUTO:
218 /* for auto mode, consider reuse as possible if the
219 * server uses a single protocol ALPN
220 */
221 if (!istchr(alpn, ','))
222 return 1;
223 break;
224
225 case SRV_WS_H2:
226 return isteq(alpn, ist("\x02h2"));
227
228 case SRV_WS_H1:
229 return isteq(alpn, ist("\x08http/1.1"));
230 }
231 }
232 else {
233#endif /* defined(OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation) */
Amaury Denoyelle8e99b842021-10-18 14:39:57 +0200234 /* explicit srv.mux_proto or no ALPN : srv.mux_proto is used
235 * for mux selection.
236 */
237 const struct ist srv_mux = srv->mux_proto ?
238 srv->mux_proto->token : IST_NULL;
239
240 switch (srv->ws) {
241 /* "auto" means use the same protocol : reuse is possible. */
242 case SRV_WS_AUTO:
243 return 1;
244
245 /* "h2" means use h2 for websocket : reuse is possible if
246 * server mux is h2.
247 */
248 case SRV_WS_H2:
249 if (srv->mux_proto && isteq(srv_mux, ist("h2")))
250 return 1;
251 break;
252
253 /* "h1" means use h1 for websocket : reuse is possible if
254 * server mux is h1.
255 */
256 case SRV_WS_H1:
257 if (!srv->mux_proto || isteq(srv_mux, ist("h1")))
258 return 1;
259 break;
260 }
Amaury Denoyelleea489aa2021-11-25 10:20:19 +0100261#if defined(USE_OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation)
Amaury Denoyelle8e99b842021-10-18 14:39:57 +0200262 }
Amaury Denoyelleea489aa2021-11-25 10:20:19 +0100263#endif /* defined(OPENSSL) && defined(TLSEXT_TYPE_application_layer_protocol_negotiation) */
Amaury Denoyelle8e99b842021-10-18 14:39:57 +0200264
265 return 0;
266}
267
268/* Return the proto to used for a websocket stream on <srv> without ALPN. NULL
269 * is a valid value indicating to use the fallback mux.
270 */
271const struct mux_ops *srv_get_ws_proto(struct server *srv)
272{
273 const struct mux_proto_list *mux = NULL;
274
275 switch (srv->ws) {
276 case SRV_WS_AUTO:
277 mux = srv->mux_proto;
278 break;
279
280 case SRV_WS_H1:
281 mux = get_mux_proto(ist("h1"));
282 break;
283
284 case SRV_WS_H2:
285 mux = get_mux_proto(ist("h2"));
286 break;
287 }
288
289 return mux ? mux->mux : NULL;
290}
291
Willy Tarreau21faa912012-10-10 08:27:36 +0200292/*
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +0200293 * Must be called with the server lock held. The server is first removed from
294 * the proxy tree if it was already attached. If <reattach> is true, the server
295 * will then be attached in the proxy tree. The proxy lock is held to
296 * manipulate the tree.
Thayne McCombs92149f92020-11-20 01:28:26 -0700297 */
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +0200298static void srv_set_addr_desc(struct server *s, int reattach)
Thayne McCombs92149f92020-11-20 01:28:26 -0700299{
300 struct proxy *p = s->proxy;
301 char *key;
302
303 key = sa2str(&s->addr, s->svc_port, s->flags & SRV_F_MAPPORTS);
304
305 if (s->addr_node.key) {
Thayne McCombs24da7e12021-01-05 23:10:09 -0700306 if (key && strcmp(key, s->addr_node.key) == 0) {
Thayne McCombs92149f92020-11-20 01:28:26 -0700307 free(key);
308 return;
309 }
310
311 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
312 ebpt_delete(&s->addr_node);
313 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
314
315 free(s->addr_node.key);
316 }
317
318 s->addr_node.key = key;
319
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +0200320 if (reattach) {
321 if (s->addr_node.key) {
322 HA_RWLOCK_WRLOCK(PROXY_LOCK, &p->lock);
323 ebis_insert(&p->used_server_addr, &s->addr_node);
324 HA_RWLOCK_WRUNLOCK(PROXY_LOCK, &p->lock);
325 }
Thayne McCombs24da7e12021-01-05 23:10:09 -0700326 }
Thayne McCombs92149f92020-11-20 01:28:26 -0700327}
328
329/*
Willy Tarreau21faa912012-10-10 08:27:36 +0200330 * Registers the server keyword list <kwl> as a list of valid keywords for next
331 * parsing sessions.
332 */
333void srv_register_keywords(struct srv_kw_list *kwl)
334{
Willy Tarreau2b718102021-04-21 07:32:39 +0200335 LIST_APPEND(&srv_keywords.list, &kwl->list);
Willy Tarreau21faa912012-10-10 08:27:36 +0200336}
337
338/* Return a pointer to the server keyword <kw>, or NULL if not found. If the
339 * keyword is found with a NULL ->parse() function, then an attempt is made to
340 * find one with a valid ->parse() function. This way it is possible to declare
341 * platform-dependant, known keywords as NULL, then only declare them as valid
342 * if some options are met. Note that if the requested keyword contains an
343 * opening parenthesis, everything from this point is ignored.
344 */
345struct srv_kw *srv_find_kw(const char *kw)
346{
347 int index;
348 const char *kwend;
349 struct srv_kw_list *kwl;
350 struct srv_kw *ret = NULL;
351
352 kwend = strchr(kw, '(');
353 if (!kwend)
354 kwend = kw + strlen(kw);
355
356 list_for_each_entry(kwl, &srv_keywords.list, list) {
357 for (index = 0; kwl->kw[index].kw != NULL; index++) {
358 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
359 kwl->kw[index].kw[kwend-kw] == 0) {
360 if (kwl->kw[index].parse)
361 return &kwl->kw[index]; /* found it !*/
362 else
363 ret = &kwl->kw[index]; /* may be OK */
364 }
365 }
366 }
367 return ret;
368}
369
370/* Dumps all registered "server" keywords to the <out> string pointer. The
371 * unsupported keywords are only dumped if their supported form was not
372 * found.
373 */
374void srv_dump_kws(char **out)
375{
376 struct srv_kw_list *kwl;
377 int index;
378
Christopher Faulet784063e2020-05-18 12:14:18 +0200379 if (!out)
380 return;
381
Willy Tarreau21faa912012-10-10 08:27:36 +0200382 *out = NULL;
383 list_for_each_entry(kwl, &srv_keywords.list, list) {
384 for (index = 0; kwl->kw[index].kw != NULL; index++) {
385 if (kwl->kw[index].parse ||
386 srv_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
387 memprintf(out, "%s[%4s] %s%s%s%s\n", *out ? *out : "",
388 kwl->scope,
389 kwl->kw[index].kw,
390 kwl->kw[index].skip ? " <arg>" : "",
391 kwl->kw[index].default_ok ? " [dflt_ok]" : "",
392 kwl->kw[index].parse ? "" : " (not supported)");
393 }
394 }
395 }
Willy Tarreau49c2b452021-03-12 09:58:04 +0100396}
397
398/* Try to find in srv_keyword the word that looks closest to <word> by counting
399 * transitions between letters, digits and other characters. Will return the
400 * best matching word if found, otherwise NULL. An optional array of extra
401 * words to compare may be passed in <extra>, but it must then be terminated
402 * by a NULL entry. If unused it may be NULL.
403 */
404static const char *srv_find_best_kw(const char *word)
405{
406 uint8_t word_sig[1024];
407 uint8_t list_sig[1024];
408 const struct srv_kw_list *kwl;
409 const char *best_ptr = NULL;
410 int dist, best_dist = INT_MAX;
411 const char **extra;
412 int index;
413
414 make_word_fingerprint(word_sig, word);
415 list_for_each_entry(kwl, &srv_keywords.list, list) {
416 for (index = 0; kwl->kw[index].kw != NULL; index++) {
417 make_word_fingerprint(list_sig, kwl->kw[index].kw);
418 dist = word_fingerprint_distance(word_sig, list_sig);
419 if (dist < best_dist) {
420 best_dist = dist;
421 best_ptr = kwl->kw[index].kw;
422 }
423 }
424 }
425
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100426 for (extra = extra_kw_list; *extra; extra++) {
Willy Tarreau49c2b452021-03-12 09:58:04 +0100427 make_word_fingerprint(list_sig, *extra);
428 dist = word_fingerprint_distance(word_sig, list_sig);
429 if (dist < best_dist) {
430 best_dist = dist;
431 best_ptr = *extra;
432 }
Willy Tarreau49c2b452021-03-12 09:58:04 +0100433 }
434
435 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
436 best_ptr = NULL;
437
438 return best_ptr;
Willy Tarreau21faa912012-10-10 08:27:36 +0200439}
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100440
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100441/* Parse the "backup" server keyword */
442static int srv_parse_backup(char **args, int *cur_arg,
443 struct proxy *curproxy, struct server *newsrv, char **err)
444{
445 newsrv->flags |= SRV_F_BACKUP;
446 return 0;
447}
448
Alexander Liu2a54bb72019-05-22 19:44:48 +0800449
Frédéric Lécaille9d1b95b2017-03-15 09:13:33 +0100450/* Parse the "cookie" server keyword */
451static int srv_parse_cookie(char **args, int *cur_arg,
452 struct proxy *curproxy, struct server *newsrv, char **err)
453{
454 char *arg;
455
456 arg = args[*cur_arg + 1];
457 if (!*arg) {
458 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
459 return ERR_ALERT | ERR_FATAL;
460 }
461
462 free(newsrv->cookie);
463 newsrv->cookie = strdup(arg);
464 newsrv->cklen = strlen(arg);
465 newsrv->flags |= SRV_F_COOKIESET;
466 return 0;
467}
468
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100469/* Parse the "disabled" server keyword */
470static int srv_parse_disabled(char **args, int *cur_arg,
471 struct proxy *curproxy, struct server *newsrv, char **err)
472{
Emeric Brun52a91d32017-08-31 14:41:55 +0200473 newsrv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
474 newsrv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100475 newsrv->check.state |= CHK_ST_PAUSED;
476 newsrv->check.health = 0;
477 return 0;
478}
479
480/* Parse the "enabled" server keyword */
481static int srv_parse_enabled(char **args, int *cur_arg,
482 struct proxy *curproxy, struct server *newsrv, char **err)
483{
Emeric Brun52a91d32017-08-31 14:41:55 +0200484 newsrv->next_admin &= ~SRV_ADMF_CMAINT & ~SRV_ADMF_FMAINT;
485 newsrv->next_state = SRV_ST_RUNNING;
Frédéric Lécaille2a0d0612017-03-21 11:53:54 +0100486 newsrv->check.state &= ~CHK_ST_PAUSED;
487 newsrv->check.health = newsrv->check.rise;
488 return 0;
489}
490
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100491/* Parse the "error-limit" server keyword */
492static int srv_parse_error_limit(char **args, int *cur_arg,
493 struct proxy *curproxy, struct server *newsrv, char **err)
494{
495 if (!*args[*cur_arg + 1]) {
496 memprintf(err, "'%s' expects an integer argument.",
497 args[*cur_arg]);
498 return ERR_ALERT | ERR_FATAL;
499 }
500
501 newsrv->consecutive_errors_limit = atoi(args[*cur_arg + 1]);
502
503 if (newsrv->consecutive_errors_limit <= 0) {
504 memprintf(err, "%s has to be > 0.",
505 args[*cur_arg]);
506 return ERR_ALERT | ERR_FATAL;
507 }
508
509 return 0;
510}
511
Amaury Denoyelle69352ec2021-10-18 14:40:29 +0200512/* Parse the "ws" keyword */
513static int srv_parse_ws(char **args, int *cur_arg,
514 struct proxy *curproxy, struct server *newsrv, char **err)
515{
516 if (!args[*cur_arg + 1]) {
517 memprintf(err, "'%s' expects 'auto', 'h1' or 'h2' value", args[*cur_arg]);
518 return ERR_ALERT | ERR_FATAL;
519 }
520
521 if (strcmp(args[*cur_arg + 1], "h1") == 0) {
522 newsrv->ws = SRV_WS_H1;
523 }
524 else if (strcmp(args[*cur_arg + 1], "h2") == 0) {
525 newsrv->ws = SRV_WS_H2;
526 }
527 else if (strcmp(args[*cur_arg + 1], "auto") == 0) {
528 newsrv->ws = SRV_WS_AUTO;
529 }
530 else {
531 memprintf(err, "'%s' has to be 'auto', 'h1' or 'h2'", args[*cur_arg]);
532 return ERR_ALERT | ERR_FATAL;
533 }
534
535
536 return 0;
537}
538
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100539/* Parse the "init-addr" server keyword */
540static int srv_parse_init_addr(char **args, int *cur_arg,
541 struct proxy *curproxy, struct server *newsrv, char **err)
542{
543 char *p, *end;
544 int done;
545 struct sockaddr_storage sa;
546
547 newsrv->init_addr_methods = 0;
548 memset(&newsrv->init_addr, 0, sizeof(newsrv->init_addr));
549
550 for (p = args[*cur_arg + 1]; *p; p = end) {
551 /* cut on next comma */
552 for (end = p; *end && *end != ','; end++);
553 if (*end)
554 *(end++) = 0;
555
556 memset(&sa, 0, sizeof(sa));
557 if (strcmp(p, "libc") == 0) {
558 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LIBC);
559 }
560 else if (strcmp(p, "last") == 0) {
561 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_LAST);
562 }
563 else if (strcmp(p, "none") == 0) {
564 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_NONE);
565 }
566 else if (str2ip2(p, &sa, 0)) {
567 if (is_addr(&newsrv->init_addr)) {
568 memprintf(err, "'%s' : initial address already specified, cannot add '%s'.",
569 args[*cur_arg], p);
570 return ERR_ALERT | ERR_FATAL;
571 }
572 newsrv->init_addr = sa;
573 done = srv_append_initaddr(&newsrv->init_addr_methods, SRV_IADDR_IP);
574 }
575 else {
576 memprintf(err, "'%s' : unknown init-addr method '%s', supported methods are 'libc', 'last', 'none'.",
577 args[*cur_arg], p);
578 return ERR_ALERT | ERR_FATAL;
579 }
580 if (!done) {
581 memprintf(err, "'%s' : too many init-addr methods when trying to add '%s'",
582 args[*cur_arg], p);
583 return ERR_ALERT | ERR_FATAL;
584 }
585 }
586
587 return 0;
588}
589
590/* Parse the "log-proto" server keyword */
591static int srv_parse_log_proto(char **args, int *cur_arg,
592 struct proxy *curproxy, struct server *newsrv, char **err)
593{
594 if (strcmp(args[*cur_arg + 1], "legacy") == 0)
595 newsrv->log_proto = SRV_LOG_PROTO_LEGACY;
596 else if (strcmp(args[*cur_arg + 1], "octet-count") == 0)
597 newsrv->log_proto = SRV_LOG_PROTO_OCTET_COUNTING;
598 else {
599 memprintf(err, "'%s' expects one of 'legacy' or 'octet-count' but got '%s'",
600 args[*cur_arg], args[*cur_arg + 1]);
601 return ERR_ALERT | ERR_FATAL;
602 }
603
604 return 0;
605}
606
607/* Parse the "maxconn" server keyword */
608static int srv_parse_maxconn(char **args, int *cur_arg,
609 struct proxy *curproxy, struct server *newsrv, char **err)
610{
611 newsrv->maxconn = atol(args[*cur_arg + 1]);
612 return 0;
613}
614
615/* Parse the "maxqueue" server keyword */
616static int srv_parse_maxqueue(char **args, int *cur_arg,
617 struct proxy *curproxy, struct server *newsrv, char **err)
618{
619 newsrv->maxqueue = atol(args[*cur_arg + 1]);
620 return 0;
621}
622
623/* Parse the "minconn" server keyword */
624static int srv_parse_minconn(char **args, int *cur_arg,
625 struct proxy *curproxy, struct server *newsrv, char **err)
626{
627 newsrv->minconn = atol(args[*cur_arg + 1]);
628 return 0;
629}
630
Willy Tarreau9c538e02019-01-23 10:21:49 +0100631static int srv_parse_max_reuse(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
632{
633 char *arg;
634
635 arg = args[*cur_arg + 1];
636 if (!*arg) {
637 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
638 return ERR_ALERT | ERR_FATAL;
639 }
640 newsrv->max_reuse = atoi(arg);
641
642 return 0;
643}
644
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100645static 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 +0100646{
647 const char *res;
648 char *arg;
649 unsigned int time;
650
651 arg = args[*cur_arg + 1];
652 if (!*arg) {
653 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
654 return ERR_ALERT | ERR_FATAL;
655 }
656 res = parse_time_err(arg, &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200657 if (res == PARSE_TIME_OVER) {
658 memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)",
659 args[*cur_arg+1], args[*cur_arg]);
660 return ERR_ALERT | ERR_FATAL;
661 }
662 else if (res == PARSE_TIME_UNDER) {
663 memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)",
664 args[*cur_arg+1], args[*cur_arg]);
665 return ERR_ALERT | ERR_FATAL;
666 }
667 else if (res) {
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100668 memprintf(err, "unexpected character '%c' in argument to <%s>.\n",
669 *res, args[*cur_arg]);
670 return ERR_ALERT | ERR_FATAL;
671 }
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100672 newsrv->pool_purge_delay = time;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +0100673
674 return 0;
675}
676
Willy Tarreau2f3f4d32020-07-01 07:43:51 +0200677static int srv_parse_pool_low_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
678{
679 char *arg;
680
681 arg = args[*cur_arg + 1];
682 if (!*arg) {
683 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
684 return ERR_ALERT | ERR_FATAL;
685 }
686
687 newsrv->low_idle_conns = atoi(arg);
688 return 0;
689}
690
Olivier Houchard006e3102018-12-10 18:30:32 +0100691static int srv_parse_pool_max_conn(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
692{
693 char *arg;
694
695 arg = args[*cur_arg + 1];
696 if (!*arg) {
697 memprintf(err, "'%s' expects <value> as argument.\n", args[*cur_arg]);
698 return ERR_ALERT | ERR_FATAL;
699 }
Willy Tarreaucb923d52019-01-23 10:39:27 +0100700
Olivier Houchard006e3102018-12-10 18:30:32 +0100701 newsrv->max_idle_conns = atoi(arg);
Willy Tarreaucb923d52019-01-23 10:39:27 +0100702 if ((int)newsrv->max_idle_conns < -1) {
703 memprintf(err, "'%s' must be >= -1", args[*cur_arg]);
704 return ERR_ALERT | ERR_FATAL;
705 }
Olivier Houchard006e3102018-12-10 18:30:32 +0100706
707 return 0;
708}
709
Willy Tarreaudff55432012-10-10 17:51:05 +0200710/* parse the "id" server keyword */
711static int srv_parse_id(char **args, int *cur_arg, struct proxy *curproxy, struct server *newsrv, char **err)
712{
713 struct eb32_node *node;
714
715 if (!*args[*cur_arg + 1]) {
716 memprintf(err, "'%s' : expects an integer argument", args[*cur_arg]);
717 return ERR_ALERT | ERR_FATAL;
718 }
719
720 newsrv->puid = atol(args[*cur_arg + 1]);
721 newsrv->conf.id.key = newsrv->puid;
722
723 if (newsrv->puid <= 0) {
724 memprintf(err, "'%s' : custom id has to be > 0", args[*cur_arg]);
725 return ERR_ALERT | ERR_FATAL;
726 }
727
728 node = eb32_lookup(&curproxy->conf.used_server_id, newsrv->puid);
729 if (node) {
730 struct server *target = container_of(node, struct server, conf.id);
731 memprintf(err, "'%s' : custom id %d already used at %s:%d ('server %s')",
732 args[*cur_arg], newsrv->puid, target->conf.file, target->conf.line,
733 target->id);
734 return ERR_ALERT | ERR_FATAL;
735 }
736
Baptiste Assmann7cc419a2015-07-07 22:02:20 +0200737 newsrv->flags |= SRV_F_FORCED_ID;
Willy Tarreaudff55432012-10-10 17:51:05 +0200738 return 0;
739}
740
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100741/* Parse the "namespace" server keyword */
742static int srv_parse_namespace(char **args, int *cur_arg,
743 struct proxy *curproxy, struct server *newsrv, char **err)
744{
Willy Tarreaue5733232019-05-22 19:24:06 +0200745#ifdef USE_NS
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100746 char *arg;
747
748 arg = args[*cur_arg + 1];
749 if (!*arg) {
750 memprintf(err, "'%s' : expects <name> as argument", args[*cur_arg]);
751 return ERR_ALERT | ERR_FATAL;
752 }
753
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100754 if (strcmp(arg, "*") == 0) {
Frédéric Lécaille22f41a22017-03-16 17:17:36 +0100755 /* Use the namespace associated with the connection (if present). */
756 newsrv->flags |= SRV_F_USE_NS_FROM_PP;
757 return 0;
758 }
759
760 /*
761 * As this parser may be called several times for the same 'default-server'
762 * object, or for a new 'server' instance deriving from a 'default-server'
763 * one with SRV_F_USE_NS_FROM_PP flag enabled, let's reset it.
764 */
765 newsrv->flags &= ~SRV_F_USE_NS_FROM_PP;
766
767 newsrv->netns = netns_store_lookup(arg, strlen(arg));
768 if (!newsrv->netns)
769 newsrv->netns = netns_store_insert(arg);
770
771 if (!newsrv->netns) {
772 memprintf(err, "Cannot open namespace '%s'", arg);
773 return ERR_ALERT | ERR_FATAL;
774 }
775
776 return 0;
777#else
778 memprintf(err, "'%s': '%s' option not implemented", args[0], args[*cur_arg]);
779 return ERR_ALERT | ERR_FATAL;
780#endif
781}
782
Frédéric Lécaillef5bf9032017-03-10 11:51:05 +0100783/* Parse the "no-backup" server keyword */
784static int srv_parse_no_backup(char **args, int *cur_arg,
785 struct proxy *curproxy, struct server *newsrv, char **err)
786{
787 newsrv->flags &= ~SRV_F_BACKUP;
788 return 0;
789}
790
Frédéric Lécaille25df8902017-03-10 14:04:31 +0100791
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100792/* Disable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200793static inline int srv_disable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100794{
795 srv->pp_opts &= ~flags;
796 return 0;
797}
798
799/* Parse the "no-send-proxy" server keyword */
800static int srv_parse_no_send_proxy(char **args, int *cur_arg,
801 struct proxy *curproxy, struct server *newsrv, char **err)
802{
803 return srv_disable_pp_flags(newsrv, SRV_PP_V1);
804}
805
806/* Parse the "no-send-proxy-v2" server keyword */
807static int srv_parse_no_send_proxy_v2(char **args, int *cur_arg,
808 struct proxy *curproxy, struct server *newsrv, char **err)
809{
810 return srv_disable_pp_flags(newsrv, SRV_PP_V2);
811}
812
Frédéric Lécaille1b9423d2019-07-04 14:19:06 +0200813/* Parse the "no-tfo" server keyword */
814static int srv_parse_no_tfo(char **args, int *cur_arg,
815 struct proxy *curproxy, struct server *newsrv, char **err)
816{
817 newsrv->flags &= ~SRV_F_FASTOPEN;
818 return 0;
819}
820
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +0100821/* Parse the "non-stick" server keyword */
822static int srv_parse_non_stick(char **args, int *cur_arg,
823 struct proxy *curproxy, struct server *newsrv, char **err)
824{
825 newsrv->flags |= SRV_F_NON_STICK;
826 return 0;
827}
828
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100829/* Enable server PROXY protocol flags. */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200830static inline int srv_enable_pp_flags(struct server *srv, unsigned int flags)
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100831{
832 srv->pp_opts |= flags;
833 return 0;
834}
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200835/* parse the "proto" server keyword */
836static int srv_parse_proto(char **args, int *cur_arg,
837 struct proxy *px, struct server *newsrv, char **err)
838{
839 struct ist proto;
840
841 if (!*args[*cur_arg + 1]) {
842 memprintf(err, "'%s' : missing value", args[*cur_arg]);
843 return ERR_ALERT | ERR_FATAL;
844 }
Tim Duesterhusdcf753a2021-03-04 17:31:47 +0100845 proto = ist(args[*cur_arg + 1]);
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200846 newsrv->mux_proto = get_mux_proto(proto);
847 if (!newsrv->mux_proto) {
848 memprintf(err, "'%s' : unknown MUX protocol '%s'", args[*cur_arg], args[*cur_arg+1]);
849 return ERR_ALERT | ERR_FATAL;
850 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +0200851 return 0;
852}
Frédéric Lécaille31045e42017-03-10 16:40:00 +0100853
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100854/* parse the "proxy-v2-options" */
855static int srv_parse_proxy_v2_options(char **args, int *cur_arg,
856 struct proxy *px, struct server *newsrv, char **err)
857{
858 char *p, *n;
859 for (p = args[*cur_arg+1]; p; p = n) {
860 n = strchr(p, ',');
861 if (n)
862 *n++ = '\0';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100863 if (strcmp(p, "ssl") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100864 newsrv->pp_opts |= SRV_PP_V2_SSL;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100865 } else if (strcmp(p, "cert-cn") == 0) {
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100866 newsrv->pp_opts |= SRV_PP_V2_SSL;
867 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100868 } else if (strcmp(p, "cert-key") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100869 newsrv->pp_opts |= SRV_PP_V2_SSL;
870 newsrv->pp_opts |= SRV_PP_V2_SSL_KEY_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100871 } else if (strcmp(p, "cert-sig") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100872 newsrv->pp_opts |= SRV_PP_V2_SSL;
873 newsrv->pp_opts |= SRV_PP_V2_SSL_SIG_ALG;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100874 } else if (strcmp(p, "ssl-cipher") == 0) {
Emmanuel Hocdetfa8d0f12018-02-01 15:53:52 +0100875 newsrv->pp_opts |= SRV_PP_V2_SSL;
876 newsrv->pp_opts |= SRV_PP_V2_SSL_CIPHER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100877 } else if (strcmp(p, "authority") == 0) {
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +0100878 newsrv->pp_opts |= SRV_PP_V2_AUTHORITY;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100879 } else if (strcmp(p, "crc32c") == 0) {
Emmanuel Hocdet4399c752018-02-05 15:26:43 +0100880 newsrv->pp_opts |= SRV_PP_V2_CRC32C;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100881 } else if (strcmp(p, "unique-id") == 0) {
Tim Duesterhuscf6e0c82020-03-13 12:34:24 +0100882 newsrv->pp_opts |= SRV_PP_V2_UNIQUE_ID;
Emmanuel Hocdetf643b802018-02-01 15:20:32 +0100883 } else
884 goto fail;
885 }
886 return 0;
887 fail:
888 if (err)
889 memprintf(err, "'%s' : proxy v2 option not implemented", p);
890 return ERR_ALERT | ERR_FATAL;
891}
892
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100893/* Parse the "observe" server keyword */
894static int srv_parse_observe(char **args, int *cur_arg,
895 struct proxy *curproxy, struct server *newsrv, char **err)
896{
897 char *arg;
898
899 arg = args[*cur_arg + 1];
900 if (!*arg) {
901 memprintf(err, "'%s' expects <mode> as argument.\n", args[*cur_arg]);
902 return ERR_ALERT | ERR_FATAL;
903 }
904
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100905 if (strcmp(arg, "none") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100906 newsrv->observe = HANA_OBS_NONE;
907 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100908 else if (strcmp(arg, "layer4") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100909 newsrv->observe = HANA_OBS_LAYER4;
910 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100911 else if (strcmp(arg, "layer7") == 0) {
Frédéric Lécaille547356e2017-03-15 08:55:39 +0100912 if (curproxy->mode != PR_MODE_HTTP) {
913 memprintf(err, "'%s' can only be used in http proxies.\n", arg);
914 return ERR_ALERT;
915 }
916 newsrv->observe = HANA_OBS_LAYER7;
917 }
918 else {
919 memprintf(err, "'%s' expects one of 'none', 'layer4', 'layer7' "
920 "but got '%s'\n", args[*cur_arg], arg);
921 return ERR_ALERT | ERR_FATAL;
922 }
923
924 return 0;
925}
926
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100927/* Parse the "on-error" server keyword */
928static int srv_parse_on_error(char **args, int *cur_arg,
929 struct proxy *curproxy, struct server *newsrv, char **err)
930{
931 if (strcmp(args[*cur_arg + 1], "fastinter") == 0)
932 newsrv->onerror = HANA_ONERR_FASTINTER;
933 else if (strcmp(args[*cur_arg + 1], "fail-check") == 0)
934 newsrv->onerror = HANA_ONERR_FAILCHK;
935 else if (strcmp(args[*cur_arg + 1], "sudden-death") == 0)
936 newsrv->onerror = HANA_ONERR_SUDDTH;
937 else if (strcmp(args[*cur_arg + 1], "mark-down") == 0)
938 newsrv->onerror = HANA_ONERR_MARKDWN;
939 else {
940 memprintf(err, "'%s' expects one of 'fastinter', "
941 "'fail-check', 'sudden-death' or 'mark-down' but got '%s'",
942 args[*cur_arg], args[*cur_arg + 1]);
943 return ERR_ALERT | ERR_FATAL;
944 }
945
946 return 0;
947}
948
949/* Parse the "on-marked-down" server keyword */
950static int srv_parse_on_marked_down(char **args, int *cur_arg,
951 struct proxy *curproxy, struct server *newsrv, char **err)
952{
953 if (strcmp(args[*cur_arg + 1], "shutdown-sessions") == 0)
954 newsrv->onmarkeddown = HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS;
955 else {
956 memprintf(err, "'%s' expects 'shutdown-sessions' but got '%s'",
957 args[*cur_arg], args[*cur_arg + 1]);
958 return ERR_ALERT | ERR_FATAL;
959 }
960
961 return 0;
962}
963
964/* Parse the "on-marked-up" server keyword */
965static int srv_parse_on_marked_up(char **args, int *cur_arg,
966 struct proxy *curproxy, struct server *newsrv, char **err)
967{
968 if (strcmp(args[*cur_arg + 1], "shutdown-backup-sessions") == 0)
969 newsrv->onmarkedup = HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS;
970 else {
971 memprintf(err, "'%s' expects 'shutdown-backup-sessions' but got '%s'",
972 args[*cur_arg], args[*cur_arg + 1]);
973 return ERR_ALERT | ERR_FATAL;
974 }
975
976 return 0;
977}
978
Frédéric Lécaille16186232017-03-14 16:42:49 +0100979/* Parse the "redir" server keyword */
980static int srv_parse_redir(char **args, int *cur_arg,
981 struct proxy *curproxy, struct server *newsrv, char **err)
982{
983 char *arg;
984
985 arg = args[*cur_arg + 1];
986 if (!*arg) {
987 memprintf(err, "'%s' expects <prefix> as argument.\n", args[*cur_arg]);
988 return ERR_ALERT | ERR_FATAL;
989 }
990
991 free(newsrv->rdr_pfx);
992 newsrv->rdr_pfx = strdup(arg);
993 newsrv->rdr_len = strlen(arg);
994
995 return 0;
996}
997
Amaury Denoyelle587b71e2021-03-10 16:36:02 +0100998/* Parse the "resolvers" server keyword */
999static int srv_parse_resolvers(char **args, int *cur_arg,
1000 struct proxy *curproxy, struct server *newsrv, char **err)
1001{
1002 free(newsrv->resolvers_id);
1003 newsrv->resolvers_id = strdup(args[*cur_arg + 1]);
1004 return 0;
1005}
1006
1007/* Parse the "resolve-net" server keyword */
1008static int srv_parse_resolve_net(char **args, int *cur_arg,
1009 struct proxy *curproxy, struct server *newsrv, char **err)
1010{
1011 char *p, *e;
1012 unsigned char mask;
1013 struct resolv_options *opt;
1014
1015 if (!args[*cur_arg + 1] || args[*cur_arg + 1][0] == '\0') {
1016 memprintf(err, "'%s' expects a list of networks.",
1017 args[*cur_arg]);
1018 return ERR_ALERT | ERR_FATAL;
1019 }
1020
1021 opt = &newsrv->resolv_opts;
1022
1023 /* Split arguments by comma, and convert it from ipv4 or ipv6
1024 * string network in in_addr or in6_addr.
1025 */
1026 p = args[*cur_arg + 1];
1027 e = p;
1028 while (*p != '\0') {
1029 /* If no room available, return error. */
1030 if (opt->pref_net_nb >= SRV_MAX_PREF_NET) {
1031 memprintf(err, "'%s' exceed %d networks.",
1032 args[*cur_arg], SRV_MAX_PREF_NET);
1033 return ERR_ALERT | ERR_FATAL;
1034 }
1035 /* look for end or comma. */
1036 while (*e != ',' && *e != '\0')
1037 e++;
1038 if (*e == ',') {
1039 *e = '\0';
1040 e++;
1041 }
1042 if (str2net(p, 0, &opt->pref_net[opt->pref_net_nb].addr.in4,
1043 &opt->pref_net[opt->pref_net_nb].mask.in4)) {
1044 /* Try to convert input string from ipv4 or ipv6 network. */
1045 opt->pref_net[opt->pref_net_nb].family = AF_INET;
1046 } else if (str62net(p, &opt->pref_net[opt->pref_net_nb].addr.in6,
1047 &mask)) {
1048 /* Try to convert input string from ipv6 network. */
1049 len2mask6(mask, &opt->pref_net[opt->pref_net_nb].mask.in6);
1050 opt->pref_net[opt->pref_net_nb].family = AF_INET6;
1051 } else {
1052 /* All network conversions fail, return error. */
1053 memprintf(err, "'%s' invalid network '%s'.",
1054 args[*cur_arg], p);
1055 return ERR_ALERT | ERR_FATAL;
1056 }
1057 opt->pref_net_nb++;
1058 p = e;
1059 }
1060
1061 return 0;
1062}
1063
1064/* Parse the "resolve-opts" server keyword */
1065static int srv_parse_resolve_opts(char **args, int *cur_arg,
1066 struct proxy *curproxy, struct server *newsrv, char **err)
1067{
1068 char *p, *end;
1069
1070 for (p = args[*cur_arg + 1]; *p; p = end) {
1071 /* cut on next comma */
1072 for (end = p; *end && *end != ','; end++);
1073 if (*end)
1074 *(end++) = 0;
1075
1076 if (strcmp(p, "allow-dup-ip") == 0) {
1077 newsrv->resolv_opts.accept_duplicate_ip = 1;
1078 }
1079 else if (strcmp(p, "ignore-weight") == 0) {
1080 newsrv->resolv_opts.ignore_weight = 1;
1081 }
1082 else if (strcmp(p, "prevent-dup-ip") == 0) {
1083 newsrv->resolv_opts.accept_duplicate_ip = 0;
1084 }
1085 else {
1086 memprintf(err, "'%s' : unknown resolve-opts option '%s', supported methods are 'allow-dup-ip', 'ignore-weight', and 'prevent-dup-ip'.",
1087 args[*cur_arg], p);
1088 return ERR_ALERT | ERR_FATAL;
1089 }
1090 }
1091
1092 return 0;
1093}
1094
1095/* Parse the "resolve-prefer" server keyword */
1096static int srv_parse_resolve_prefer(char **args, int *cur_arg,
1097 struct proxy *curproxy, struct server *newsrv, char **err)
1098{
1099 if (strcmp(args[*cur_arg + 1], "ipv4") == 0)
1100 newsrv->resolv_opts.family_prio = AF_INET;
1101 else if (strcmp(args[*cur_arg + 1], "ipv6") == 0)
1102 newsrv->resolv_opts.family_prio = AF_INET6;
1103 else {
1104 memprintf(err, "'%s' expects either ipv4 or ipv6 as argument.",
1105 args[*cur_arg]);
1106 return ERR_ALERT | ERR_FATAL;
1107 }
1108
1109 return 0;
1110}
1111
Frédéric Lécaille31045e42017-03-10 16:40:00 +01001112/* Parse the "send-proxy" server keyword */
1113static int srv_parse_send_proxy(char **args, int *cur_arg,
1114 struct proxy *curproxy, struct server *newsrv, char **err)
1115{
1116 return srv_enable_pp_flags(newsrv, SRV_PP_V1);
1117}
1118
1119/* Parse the "send-proxy-v2" server keyword */
1120static int srv_parse_send_proxy_v2(char **args, int *cur_arg,
1121 struct proxy *curproxy, struct server *newsrv, char **err)
1122{
1123 return srv_enable_pp_flags(newsrv, SRV_PP_V2);
1124}
1125
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001126/* Parse the "slowstart" server keyword */
1127static int srv_parse_slowstart(char **args, int *cur_arg,
1128 struct proxy *curproxy, struct server *newsrv, char **err)
1129{
1130 /* slowstart is stored in seconds */
1131 unsigned int val;
1132 const char *time_err = parse_time_err(args[*cur_arg + 1], &val, TIME_UNIT_MS);
1133
1134 if (time_err == PARSE_TIME_OVER) {
1135 memprintf(err, "overflow in argument <%s> to <%s> of server %s, maximum value is 2147483647 ms (~24.8 days).",
1136 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1137 return ERR_ALERT | ERR_FATAL;
1138 }
1139 else if (time_err == PARSE_TIME_UNDER) {
1140 memprintf(err, "underflow in argument <%s> to <%s> of server %s, minimum non-null value is 1 ms.",
1141 args[*cur_arg+1], args[*cur_arg], newsrv->id);
1142 return ERR_ALERT | ERR_FATAL;
1143 }
1144 else if (time_err) {
1145 memprintf(err, "unexpected character '%c' in 'slowstart' argument of server %s.",
1146 *time_err, newsrv->id);
1147 return ERR_ALERT | ERR_FATAL;
1148 }
1149 newsrv->slowstart = (val + 999) / 1000;
1150
1151 return 0;
1152}
Frédéric Lécailledba97072017-03-17 15:33:50 +01001153
1154/* Parse the "source" server keyword */
1155static int srv_parse_source(char **args, int *cur_arg,
1156 struct proxy *curproxy, struct server *newsrv, char **err)
1157{
1158 char *errmsg;
1159 int port_low, port_high;
1160 struct sockaddr_storage *sk;
Frédéric Lécailledba97072017-03-17 15:33:50 +01001161
1162 errmsg = NULL;
1163
1164 if (!*args[*cur_arg + 1]) {
1165 memprintf(err, "'%s' expects <addr>[:<port>[-<port>]], and optionally '%s' <addr>, "
1166 "and '%s' <name> as argument.\n", args[*cur_arg], "usesrc", "interface");
1167 goto err;
1168 }
1169
1170 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001171 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1172 &errmsg, NULL, NULL,
1173 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 +01001174 if (!sk) {
1175 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1176 goto err;
1177 }
1178
Frédéric Lécailledba97072017-03-17 15:33:50 +01001179 newsrv->conn_src.opts |= CO_SRC_BIND;
1180 newsrv->conn_src.source_addr = *sk;
1181
1182 if (port_low != port_high) {
1183 int i;
1184
Frédéric Lécailledba97072017-03-17 15:33:50 +01001185 newsrv->conn_src.sport_range = port_range_alloc_range(port_high - port_low + 1);
Remi Tricot-Le Bretondc187912021-05-12 09:44:06 +02001186 if (!newsrv->conn_src.sport_range) {
1187 ha_alert("Server '%s': Out of memory (sport_range)\n", args[0]);
1188 goto err;
1189 }
Frédéric Lécailledba97072017-03-17 15:33:50 +01001190 for (i = 0; i < newsrv->conn_src.sport_range->size; i++)
1191 newsrv->conn_src.sport_range->ports[i] = port_low + i;
1192 }
1193
1194 *cur_arg += 2;
1195 while (*(args[*cur_arg])) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001196 if (strcmp(args[*cur_arg], "usesrc") == 0) { /* address to use outside */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001197#if defined(CONFIG_HAP_TRANSPARENT)
1198 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001199 ha_alert("'usesrc' expects <addr>[:<port>], 'client', 'clientip', "
1200 "or 'hdr_ip(name,#)' as argument.\n");
Frédéric Lécailledba97072017-03-17 15:33:50 +01001201 goto err;
1202 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001203 if (strcmp(args[*cur_arg + 1], "client") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +01001204 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1205 newsrv->conn_src.opts |= CO_SRC_TPROXY_CLI;
1206 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001207 else if (strcmp(args[*cur_arg + 1], "clientip") == 0) {
Frédéric Lécailledba97072017-03-17 15:33:50 +01001208 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1209 newsrv->conn_src.opts |= CO_SRC_TPROXY_CIP;
1210 }
1211 else if (!strncmp(args[*cur_arg + 1], "hdr_ip(", 7)) {
1212 char *name, *end;
1213
1214 name = args[*cur_arg + 1] + 7;
Willy Tarreau90807112020-02-25 08:16:33 +01001215 while (isspace((unsigned char)*name))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001216 name++;
1217
1218 end = name;
Willy Tarreau90807112020-02-25 08:16:33 +01001219 while (*end && !isspace((unsigned char)*end) && *end != ',' && *end != ')')
Frédéric Lécailledba97072017-03-17 15:33:50 +01001220 end++;
1221
1222 newsrv->conn_src.opts &= ~CO_SRC_TPROXY_MASK;
1223 newsrv->conn_src.opts |= CO_SRC_TPROXY_DYN;
1224 free(newsrv->conn_src.bind_hdr_name);
1225 newsrv->conn_src.bind_hdr_name = calloc(1, end - name + 1);
Remi Tricot-Le Bretondc187912021-05-12 09:44:06 +02001226 if (!newsrv->conn_src.bind_hdr_name) {
1227 ha_alert("Server '%s': Out of memory (bind_hdr_name)\n", args[0]);
1228 goto err;
1229 }
Frédéric Lécailledba97072017-03-17 15:33:50 +01001230 newsrv->conn_src.bind_hdr_len = end - name;
1231 memcpy(newsrv->conn_src.bind_hdr_name, name, end - name);
1232 newsrv->conn_src.bind_hdr_name[end - name] = '\0';
1233 newsrv->conn_src.bind_hdr_occ = -1;
1234
1235 /* now look for an occurrence number */
Willy Tarreau90807112020-02-25 08:16:33 +01001236 while (isspace((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001237 end++;
1238 if (*end == ',') {
1239 end++;
1240 name = end;
1241 if (*end == '-')
1242 end++;
Willy Tarreau90807112020-02-25 08:16:33 +01001243 while (isdigit((unsigned char)*end))
Frédéric Lécailledba97072017-03-17 15:33:50 +01001244 end++;
1245 newsrv->conn_src.bind_hdr_occ = strl2ic(name, end - name);
1246 }
1247
1248 if (newsrv->conn_src.bind_hdr_occ < -MAX_HDR_HISTORY) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001249 ha_alert("usesrc hdr_ip(name,num) does not support negative"
1250 " occurrences values smaller than %d.\n", MAX_HDR_HISTORY);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001251 goto err;
1252 }
1253 }
1254 else {
1255 struct sockaddr_storage *sk;
1256 int port1, port2;
1257
1258 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001259 sk = str2sa_range(args[*cur_arg + 1], NULL, &port1, &port2, NULL, NULL,
1260 &errmsg, NULL, NULL,
1261 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_STREAM | PA_O_CONNECT);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001262 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001263 ha_alert("'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001264 goto err;
1265 }
1266
Frédéric Lécailledba97072017-03-17 15:33:50 +01001267 newsrv->conn_src.tproxy_addr = *sk;
1268 newsrv->conn_src.opts |= CO_SRC_TPROXY_ADDR;
1269 }
1270 global.last_checks |= LSTCHK_NETADM;
1271 *cur_arg += 2;
1272 continue;
1273#else /* no TPROXY support */
Christopher Faulet767a84b2017-11-24 16:50:31 +01001274 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 +01001275 goto err;
1276#endif /* defined(CONFIG_HAP_TRANSPARENT) */
1277 } /* "usesrc" */
1278
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001279 if (strcmp(args[*cur_arg], "interface") == 0) { /* specifically bind to this interface */
Frédéric Lécailledba97072017-03-17 15:33:50 +01001280#ifdef SO_BINDTODEVICE
1281 if (!*args[*cur_arg + 1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001282 ha_alert("'%s' : missing interface name.\n", args[0]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001283 goto err;
1284 }
1285 free(newsrv->conn_src.iface_name);
1286 newsrv->conn_src.iface_name = strdup(args[*cur_arg + 1]);
1287 newsrv->conn_src.iface_len = strlen(newsrv->conn_src.iface_name);
1288 global.last_checks |= LSTCHK_NETADM;
1289#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001290 ha_alert("'%s' : '%s' option not implemented.\n", args[0], args[*cur_arg]);
Frédéric Lécailledba97072017-03-17 15:33:50 +01001291 goto err;
1292#endif
1293 *cur_arg += 2;
1294 continue;
1295 }
1296 /* this keyword in not an option of "source" */
1297 break;
1298 } /* while */
1299
1300 return 0;
1301
1302 err:
1303 free(errmsg);
1304 return ERR_ALERT | ERR_FATAL;
1305}
1306
Frédéric Lécaillef9bc1d62017-03-10 15:50:49 +01001307/* Parse the "stick" server keyword */
1308static int srv_parse_stick(char **args, int *cur_arg,
1309 struct proxy *curproxy, struct server *newsrv, char **err)
1310{
1311 newsrv->flags &= ~SRV_F_NON_STICK;
1312 return 0;
1313}
1314
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001315/* Parse the "track" server keyword */
1316static int srv_parse_track(char **args, int *cur_arg,
1317 struct proxy *curproxy, struct server *newsrv, char **err)
1318{
1319 char *arg;
1320
1321 arg = args[*cur_arg + 1];
1322 if (!*arg) {
1323 memprintf(err, "'track' expects [<proxy>/]<server> as argument.\n");
1324 return ERR_ALERT | ERR_FATAL;
1325 }
1326
1327 free(newsrv->trackit);
1328 newsrv->trackit = strdup(arg);
1329
1330 return 0;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001331}
1332
1333/* Parse the "socks4" server keyword */
1334static int srv_parse_socks4(char **args, int *cur_arg,
1335 struct proxy *curproxy, struct server *newsrv, char **err)
1336{
1337 char *errmsg;
1338 int port_low, port_high;
1339 struct sockaddr_storage *sk;
Alexander Liu2a54bb72019-05-22 19:44:48 +08001340
1341 errmsg = NULL;
1342
1343 if (!*args[*cur_arg + 1]) {
1344 memprintf(err, "'%s' expects <addr>:<port> as argument.\n", args[*cur_arg]);
1345 goto err;
1346 }
1347
1348 /* 'sk' is statically allocated (no need to be freed). */
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001349 sk = str2sa_range(args[*cur_arg + 1], NULL, &port_low, &port_high, NULL, NULL,
1350 &errmsg, NULL, NULL,
1351 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_CONNECT);
Alexander Liu2a54bb72019-05-22 19:44:48 +08001352 if (!sk) {
1353 memprintf(err, "'%s %s' : %s\n", args[*cur_arg], args[*cur_arg + 1], errmsg);
1354 goto err;
1355 }
1356
Alexander Liu2a54bb72019-05-22 19:44:48 +08001357 newsrv->flags |= SRV_F_SOCKS4_PROXY;
1358 newsrv->socks4_addr = *sk;
1359
Alexander Liu2a54bb72019-05-22 19:44:48 +08001360 return 0;
1361
1362 err:
1363 free(errmsg);
1364 return ERR_ALERT | ERR_FATAL;
Frédéric Lécaille67e0e612017-03-14 15:21:31 +01001365}
1366
Frédéric Lécailledba97072017-03-17 15:33:50 +01001367
Willy Tarreau034c88c2017-01-23 23:36:45 +01001368/* parse the "tfo" server keyword */
1369static int srv_parse_tfo(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1370{
1371 newsrv->flags |= SRV_F_FASTOPEN;
1372 return 0;
1373}
1374
Amaury Denoyelle587b71e2021-03-10 16:36:02 +01001375/* parse the "usesrc" server keyword */
1376static int srv_parse_usesrc(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1377{
1378 memprintf(err, "'%s' only allowed after a '%s' statement.",
1379 "usesrc", "source");
1380 return ERR_ALERT | ERR_FATAL;
1381}
1382
1383/* parse the "weight" server keyword */
1384static int srv_parse_weight(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
1385{
1386 int w;
1387
1388 w = atol(args[*cur_arg + 1]);
1389 if (w < 0 || w > SRV_UWGHT_MAX) {
1390 memprintf(err, "weight of server %s is not within 0 and %d (%d).",
1391 newsrv->id, SRV_UWGHT_MAX, w);
1392 return ERR_ALERT | ERR_FATAL;
1393 }
1394 newsrv->uweight = newsrv->iweight = w;
1395
1396 return 0;
1397}
1398
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001399/* Shutdown all connections of a server. The caller must pass a termination
Willy Tarreaue7dff022015-04-03 01:14:29 +02001400 * code in <why>, which must be one of SF_ERR_* indicating the reason for the
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001401 * shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001402 *
1403 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001404 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001405void srv_shutdown_streams(struct server *srv, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001406{
Willy Tarreau751153e2021-02-17 13:33:24 +01001407 struct stream *stream;
1408 struct mt_list *elt1, elt2;
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001409 int thr;
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001410
Willy Tarreaud4e78d82021-03-04 10:47:54 +01001411 for (thr = 0; thr < global.nbthread; thr++)
1412 mt_list_for_each_entry_safe(stream, &srv->per_thr[thr].streams, by_srv, elt1, elt2)
1413 if (stream->srv_conn == srv)
1414 stream_shutdown(stream, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001415}
1416
1417/* Shutdown all connections of all backup servers of a proxy. The caller must
Willy Tarreaue7dff022015-04-03 01:14:29 +02001418 * pass a termination code in <why>, which must be one of SF_ERR_* indicating
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001419 * the reason for the shutdown.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001420 *
1421 * Must be called with the server lock held.
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001422 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001423void srv_shutdown_backup_streams(struct proxy *px, int why)
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001424{
1425 struct server *srv;
1426
1427 for (srv = px->srv; srv != NULL; srv = srv->next)
1428 if (srv->flags & SRV_F_BACKUP)
Willy Tarreau87b09662015-04-03 00:22:06 +02001429 srv_shutdown_streams(srv, why);
Willy Tarreau4aac7db2014-05-16 11:48:10 +02001430}
1431
Willy Tarreaubda92272014-05-20 21:55:30 +02001432/* Appends some information to a message string related to a server going UP or
1433 * DOWN. If both <forced> and <reason> are null and the server tracks another
1434 * one, a "via" information will be provided to know where the status came from.
Emeric Brun5a133512017-10-19 14:42:30 +02001435 * If <check> is non-null, an entire string describing the check result will be
1436 * appended after a comma and a space (eg: to report some information from the
1437 * check that changed the state). In the other case, the string will be built
1438 * using the check results stored into the struct server if present.
1439 * If <xferred> is non-negative, some information about requeued sessions are
Willy Tarreaubda92272014-05-20 21:55:30 +02001440 * provided.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001441 *
1442 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001443 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001444void srv_append_status(struct buffer *msg, struct server *s,
1445 struct check *check, int xferred, int forced)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001446{
Emeric Brun5a133512017-10-19 14:42:30 +02001447 short status = s->op_st_chg.status;
1448 short code = s->op_st_chg.code;
1449 long duration = s->op_st_chg.duration;
1450 char *desc = s->op_st_chg.reason;
1451
1452 if (check) {
1453 status = check->status;
1454 code = check->code;
1455 duration = check->duration;
1456 desc = check->desc;
1457 }
1458
1459 if (status != -1) {
1460 chunk_appendf(msg, ", reason: %s", get_check_status_description(status));
1461
1462 if (status >= HCHK_STATUS_L57DATA)
1463 chunk_appendf(msg, ", code: %d", code);
1464
1465 if (desc && *desc) {
Willy Tarreau83061a82018-07-13 11:56:34 +02001466 struct buffer src;
Emeric Brun5a133512017-10-19 14:42:30 +02001467
1468 chunk_appendf(msg, ", info: \"");
1469
1470 chunk_initlen(&src, desc, 0, strlen(desc));
1471 chunk_asciiencode(msg, &src, '"');
1472
1473 chunk_appendf(msg, "\"");
1474 }
1475
1476 if (duration >= 0)
1477 chunk_appendf(msg, ", check duration: %ldms", duration);
1478 }
1479 else if (desc && *desc) {
1480 chunk_appendf(msg, ", %s", desc);
1481 }
1482 else if (!forced && s->track) {
Willy Tarreaubda92272014-05-20 21:55:30 +02001483 chunk_appendf(msg, " via %s/%s", s->track->proxy->id, s->track->id);
Emeric Brun5a133512017-10-19 14:42:30 +02001484 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001485
1486 if (xferred >= 0) {
Emeric Brun52a91d32017-08-31 14:41:55 +02001487 if (s->next_state == SRV_ST_STOPPED)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001488 chunk_appendf(msg, ". %d active and %d backup servers left.%s"
1489 " %d sessions active, %d requeued, %d remaining in queue",
1490 s->proxy->srv_act, s->proxy->srv_bck,
1491 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
1492 s->cur_sess, xferred, s->nbpend);
1493 else
1494 chunk_appendf(msg, ". %d active and %d backup servers online.%s"
1495 " %d sessions requeued, %d total in queue",
1496 s->proxy->srv_act, s->proxy->srv_bck,
1497 (s->proxy->srv_bck && !s->proxy->srv_act) ? " Running on backup." : "",
1498 xferred, s->nbpend);
1499 }
1500}
1501
Emeric Brun5a133512017-10-19 14:42:30 +02001502/* Marks server <s> down, regardless of its checks' statuses. The server is
1503 * registered in a list to postpone the counting of the remaining servers on
1504 * the proxy and transfers queued streams whenever possible to other servers at
1505 * a sync point. Maintenance servers are ignored. It stores the <reason> if
1506 * non-null as the reason for going down or the available data from the check
1507 * struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001508 *
1509 * Must be called with the server lock held.
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001510 */
Emeric Brun5a133512017-10-19 14:42:30 +02001511void srv_set_stopped(struct server *s, const char *reason, struct check *check)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001512{
1513 struct server *srv;
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001514
Emeric Brun64cc49c2017-10-03 14:46:45 +02001515 if ((s->cur_admin & SRV_ADMF_MAINT) || s->next_state == SRV_ST_STOPPED)
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001516 return;
1517
Emeric Brun52a91d32017-08-31 14:41:55 +02001518 s->next_state = SRV_ST_STOPPED;
Emeric Brun5a133512017-10-19 14:42:30 +02001519 *s->op_st_chg.reason = 0;
1520 s->op_st_chg.status = -1;
1521 if (reason) {
1522 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1523 }
1524 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001525 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001526 s->op_st_chg.code = check->code;
1527 s->op_st_chg.status = check->status;
1528 s->op_st_chg.duration = check->duration;
1529 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001530
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001531 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001532 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001533
Emeric Brun9f0b4582017-10-23 14:39:51 +02001534 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001535 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001536 srv_set_stopped(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001537 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001538 }
Willy Tarreaue7d1ef12014-05-20 22:25:12 +02001539}
1540
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001541/* Marks server <s> up regardless of its checks' statuses and provided it isn't
Emeric Brun5a133512017-10-19 14:42:30 +02001542 * in maintenance. The server is registered in a list to postpone the counting
1543 * of the remaining servers on the proxy and tries to grab requests from the
1544 * proxy at a sync point. Maintenance servers are ignored. It stores the
1545 * <reason> if non-null as the reason for going down or the available data
1546 * from the check struct to recompute this reason later.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001547 *
1548 * Must be called with the server lock held.
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001549 */
Emeric Brun5a133512017-10-19 14:42:30 +02001550void srv_set_running(struct server *s, const char *reason, struct check *check)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001551{
1552 struct server *srv;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001553
Emeric Brun64cc49c2017-10-03 14:46:45 +02001554 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001555 return;
1556
Emeric Brun52a91d32017-08-31 14:41:55 +02001557 if (s->next_state == SRV_ST_STARTING || s->next_state == SRV_ST_RUNNING)
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001558 return;
1559
Emeric Brun52a91d32017-08-31 14:41:55 +02001560 s->next_state = SRV_ST_STARTING;
Emeric Brun5a133512017-10-19 14:42:30 +02001561 *s->op_st_chg.reason = 0;
1562 s->op_st_chg.status = -1;
1563 if (reason) {
1564 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1565 }
1566 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001567 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001568 s->op_st_chg.code = check->code;
1569 s->op_st_chg.status = check->status;
1570 s->op_st_chg.duration = check->duration;
1571 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001572
Emeric Brun64cc49c2017-10-03 14:46:45 +02001573 if (s->slowstart <= 0)
1574 s->next_state = SRV_ST_RUNNING;
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001575
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001576 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001577 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001578
Emeric Brun9f0b4582017-10-23 14:39:51 +02001579 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001580 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001581 srv_set_running(srv, NULL, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001582 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001583 }
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001584}
1585
Willy Tarreau8eb77842014-05-21 13:54:57 +02001586/* Marks server <s> stopping regardless of its checks' statuses and provided it
Emeric Brun5a133512017-10-19 14:42:30 +02001587 * isn't in maintenance. The server is registered in a list to postpone the
1588 * counting of the remaining servers on the proxy and tries to grab requests
1589 * from the proxy. Maintenance servers are ignored. It stores the
1590 * <reason> if non-null as the reason for going down or the available data
1591 * from the check struct to recompute this reason later.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001592 * up. Note that it makes use of the trash to build the log strings, so <reason>
1593 * must not be placed there.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001594 *
1595 * Must be called with the server lock held.
Willy Tarreau8eb77842014-05-21 13:54:57 +02001596 */
Emeric Brun5a133512017-10-19 14:42:30 +02001597void srv_set_stopping(struct server *s, const char *reason, struct check *check)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001598{
1599 struct server *srv;
Willy Tarreau8eb77842014-05-21 13:54:57 +02001600
Emeric Brun64cc49c2017-10-03 14:46:45 +02001601 if (s->cur_admin & SRV_ADMF_MAINT)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001602 return;
1603
Emeric Brun52a91d32017-08-31 14:41:55 +02001604 if (s->next_state == SRV_ST_STOPPING)
Willy Tarreau8eb77842014-05-21 13:54:57 +02001605 return;
1606
Emeric Brun52a91d32017-08-31 14:41:55 +02001607 s->next_state = SRV_ST_STOPPING;
Emeric Brun5a133512017-10-19 14:42:30 +02001608 *s->op_st_chg.reason = 0;
1609 s->op_st_chg.status = -1;
1610 if (reason) {
1611 strlcpy2(s->op_st_chg.reason, reason, sizeof(s->op_st_chg.reason));
1612 }
1613 else if (check) {
Willy Tarreau358847f2017-11-20 21:33:21 +01001614 strlcpy2(s->op_st_chg.reason, check->desc, sizeof(s->op_st_chg.reason));
Emeric Brun5a133512017-10-19 14:42:30 +02001615 s->op_st_chg.code = check->code;
1616 s->op_st_chg.status = check->status;
1617 s->op_st_chg.duration = check->duration;
1618 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001619
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001620 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001621 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001622
Emeric Brun9f0b4582017-10-23 14:39:51 +02001623 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001624 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Emeric Brun5a133512017-10-19 14:42:30 +02001625 srv_set_stopping(srv, NULL, NULL);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001626 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001627 }
Willy Tarreau8eb77842014-05-21 13:54:57 +02001628}
Willy Tarreaudbd5e782014-05-20 22:46:35 +02001629
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001630/* Enables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1631 * enforce either maint mode or drain mode. It is not allowed to set more than
1632 * one flag at once. The equivalent "inherited" flag is propagated to all
1633 * tracking servers. Maintenance mode disables health checks (but not agent
1634 * checks). When either the flag is already set or no flag is passed, nothing
Willy Tarreau8b428482016-11-07 15:53:43 +01001635 * is done. If <cause> is non-null, it will be displayed at the end of the log
1636 * lines to justify the state change.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001637 *
1638 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001639 */
Willy Tarreau8b428482016-11-07 15:53:43 +01001640void srv_set_admin_flag(struct server *s, enum srv_admin mode, const char *cause)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001641{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001642 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001643
1644 if (!mode)
1645 return;
1646
1647 /* stop going down as soon as we meet a server already in the same state */
Emeric Brun52a91d32017-08-31 14:41:55 +02001648 if (s->next_admin & mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001649 return;
1650
Emeric Brun52a91d32017-08-31 14:41:55 +02001651 s->next_admin |= mode;
Emeric Brun64cc49c2017-10-03 14:46:45 +02001652 if (cause)
1653 strlcpy2(s->adm_st_chg_cause, cause, sizeof(s->adm_st_chg_cause));
1654
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001655 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001656 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001657
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001658 /* stop going down if the equivalent flag was already present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001659 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & ~mode & SRV_ADMF_MAINT)) ||
1660 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & ~mode & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001661 return;
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001662
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001663 /* compute the inherited flag to propagate */
1664 if (mode & SRV_ADMF_MAINT)
1665 mode = SRV_ADMF_IMAINT;
1666 else if (mode & SRV_ADMF_DRAIN)
1667 mode = SRV_ADMF_IDRAIN;
1668
Emeric Brun9f0b4582017-10-23 14:39:51 +02001669 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001670 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreau8b428482016-11-07 15:53:43 +01001671 srv_set_admin_flag(srv, mode, cause);
Christopher Faulet8d01fd62018-01-24 21:49:41 +01001672 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001673 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001674}
1675
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001676/* Disables admin flag <mode> (among SRV_ADMF_*) on server <s>. This is used to
1677 * stop enforcing either maint mode or drain mode. It is not allowed to set more
1678 * than one flag at once. The equivalent "inherited" flag is propagated to all
1679 * tracking servers. Leaving maintenance mode re-enables health checks. When
1680 * either the flag is already cleared or no flag is passed, nothing is done.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001681 *
1682 * Must be called with the server lock held.
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001683 */
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001684void srv_clr_admin_flag(struct server *s, enum srv_admin mode)
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001685{
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001686 struct server *srv;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001687
1688 if (!mode)
1689 return;
1690
1691 /* stop going down as soon as we see the flag is not there anymore */
Emeric Brun52a91d32017-08-31 14:41:55 +02001692 if (!(s->next_admin & mode))
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001693 return;
1694
Emeric Brun52a91d32017-08-31 14:41:55 +02001695 s->next_admin &= ~mode;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001696
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001697 /* propagate changes */
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001698 srv_update_status(s);
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001699
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001700 /* stop going down if the equivalent flag is still present (forced or inherited) */
Emeric Brun52a91d32017-08-31 14:41:55 +02001701 if (((mode & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) ||
1702 ((mode & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)))
Willy Tarreaueeba36b2018-08-21 08:22:26 +02001703 return;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001704
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001705 if (mode & SRV_ADMF_MAINT)
1706 mode = SRV_ADMF_IMAINT;
1707 else if (mode & SRV_ADMF_DRAIN)
1708 mode = SRV_ADMF_IDRAIN;
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001709
Emeric Brun9f0b4582017-10-23 14:39:51 +02001710 for (srv = s->trackers; srv; srv = srv->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001711 HA_SPIN_LOCK(SERVER_LOCK, &srv->lock);
Willy Tarreaubfc7b7a2014-05-22 16:14:34 +02001712 srv_clr_admin_flag(srv, mode);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001713 HA_SPIN_UNLOCK(SERVER_LOCK, &srv->lock);
Emeric Brun9f0b4582017-10-23 14:39:51 +02001714 }
Willy Tarreaua0066dd2014-05-16 11:25:16 +02001715}
1716
Willy Tarreau757478e2016-11-03 19:22:19 +01001717/* principle: propagate maint and drain to tracking servers. This is useful
1718 * upon startup so that inherited states are correct.
1719 */
1720static void srv_propagate_admin_state(struct server *srv)
1721{
1722 struct server *srv2;
1723
1724 if (!srv->trackers)
1725 return;
1726
1727 for (srv2 = srv->trackers; srv2; srv2 = srv2->tracknext) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001728 HA_SPIN_LOCK(SERVER_LOCK, &srv2->lock);
Emeric Brun52a91d32017-08-31 14:41:55 +02001729 if (srv->next_admin & (SRV_ADMF_MAINT | SRV_ADMF_CMAINT))
Willy Tarreau8b428482016-11-07 15:53:43 +01001730 srv_set_admin_flag(srv2, SRV_ADMF_IMAINT, NULL);
Willy Tarreau757478e2016-11-03 19:22:19 +01001731
Emeric Brun52a91d32017-08-31 14:41:55 +02001732 if (srv->next_admin & SRV_ADMF_DRAIN)
Willy Tarreau8b428482016-11-07 15:53:43 +01001733 srv_set_admin_flag(srv2, SRV_ADMF_IDRAIN, NULL);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001734 HA_SPIN_UNLOCK(SERVER_LOCK, &srv2->lock);
Willy Tarreau757478e2016-11-03 19:22:19 +01001735 }
1736}
1737
1738/* Compute and propagate the admin states for all servers in proxy <px>.
1739 * Only servers *not* tracking another one are considered, because other
1740 * ones will be handled when the server they track is visited.
1741 */
1742void srv_compute_all_admin_states(struct proxy *px)
1743{
1744 struct server *srv;
1745
1746 for (srv = px->srv; srv; srv = srv->next) {
1747 if (srv->track)
1748 continue;
1749 srv_propagate_admin_state(srv);
1750 }
1751}
1752
Willy Tarreaudff55432012-10-10 17:51:05 +02001753/* Note: must not be declared <const> as its list will be overwritten.
1754 * Please take care of keeping this list alphabetically sorted, doing so helps
1755 * all code contributors.
1756 * Optional keywords are also declared with a NULL ->parse() function so that
1757 * the config parser can report an appropriate error when a known keyword was
1758 * not enabled.
Frédéric Lécailledfacd692017-04-16 17:14:14 +02001759 * Note: -1 as ->skip value means that the number of arguments are variable.
Willy Tarreaudff55432012-10-10 17:51:05 +02001760 */
1761static struct srv_kw_list srv_kws = { "ALL", { }, {
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001762 { "backup", srv_parse_backup, 0, 1, 1 }, /* Flag as backup server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001763 { "cookie", srv_parse_cookie, 1, 1, 0 }, /* Assign a cookie to the server */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001764 { "disabled", srv_parse_disabled, 0, 1, 1 }, /* Start the server in 'disabled' state */
1765 { "enabled", srv_parse_enabled, 0, 1, 1 }, /* Start the server in 'enabled' state */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001766 { "error-limit", srv_parse_error_limit, 1, 1, 0 }, /* Configure the consecutive count of check failures to consider a server on error */
Amaury Denoyelle69352ec2021-10-18 14:40:29 +02001767 { "ws", srv_parse_ws, 1, 1, 1 }, /* websocket protocol */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001768 { "id", srv_parse_id, 1, 0, 1 }, /* set id# of server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001769 { "init-addr", srv_parse_init_addr, 1, 1, 0 }, /* */
1770 { "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 +01001771 { "maxconn", srv_parse_maxconn, 1, 1, 1 }, /* Set the max number of concurrent connection */
1772 { "maxqueue", srv_parse_maxqueue, 1, 1, 1 }, /* Set the max number of connection to put in queue */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001773 { "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 +01001774 { "minconn", srv_parse_minconn, 1, 1, 1 }, /* Enable a dynamic maxconn limit */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001775 { "namespace", srv_parse_namespace, 1, 1, 0 }, /* Namespace the server socket belongs to (if supported) */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001776 { "no-backup", srv_parse_no_backup, 0, 1, 1 }, /* Flag as non-backup server */
1777 { "no-send-proxy", srv_parse_no_send_proxy, 0, 1, 1 }, /* Disable use of PROXY V1 protocol */
1778 { "no-send-proxy-v2", srv_parse_no_send_proxy_v2, 0, 1, 1 }, /* Disable use of PROXY V2 protocol */
1779 { "no-tfo", srv_parse_no_tfo, 0, 1, 1 }, /* Disable use of TCP Fast Open */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001780 { "non-stick", srv_parse_non_stick, 0, 1, 0 }, /* Disable stick-table persistence */
1781 { "observe", srv_parse_observe, 1, 1, 0 }, /* Enables health adjusting based on observing communication with the server */
1782 { "on-error", srv_parse_on_error, 1, 1, 0 }, /* Configure the action on check failure */
1783 { "on-marked-down", srv_parse_on_marked_down, 1, 1, 0 }, /* Configure the action when a server is marked down */
1784 { "on-marked-up", srv_parse_on_marked_up, 1, 1, 0 }, /* Configure the action when a server is marked up */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001785 { "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 */
1786 { "pool-max-conn", srv_parse_pool_max_conn, 1, 1, 1 }, /* Set the max number of orphan idle connections, -1 means unlimited */
1787 { "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 +01001788 { "proto", srv_parse_proto, 1, 1, 1 }, /* Set the proto to use for all outgoing connections */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001789 { "proxy-v2-options", srv_parse_proxy_v2_options, 1, 1, 1 }, /* options for send-proxy-v2 */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001790 { "redir", srv_parse_redir, 1, 1, 0 }, /* Enable redirection mode */
Ilya Shipitsinba13f162021-03-19 22:21:44 +05001791 { "resolve-net", srv_parse_resolve_net, 1, 1, 0 }, /* Set the preferred network range for name resolution */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001792 { "resolve-opts", srv_parse_resolve_opts, 1, 1, 0 }, /* Set options for name resolution */
Ilya Shipitsinba13f162021-03-19 22:21:44 +05001793 { "resolve-prefer", srv_parse_resolve_prefer, 1, 1, 0 }, /* Set the preferred family for name resolution */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001794 { "resolvers", srv_parse_resolvers, 1, 1, 0 }, /* Configure the resolver to use for name resolution */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001795 { "send-proxy", srv_parse_send_proxy, 0, 1, 1 }, /* Enforce use of PROXY V1 protocol */
1796 { "send-proxy-v2", srv_parse_send_proxy_v2, 0, 1, 1 }, /* Enforce use of PROXY V2 protocol */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001797 { "slowstart", srv_parse_slowstart, 1, 1, 0 }, /* Set the warm-up timer for a previously failed server */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001798 { "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 +01001799 { "stick", srv_parse_stick, 0, 1, 0 }, /* Enable stick-table persistence */
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001800 { "tfo", srv_parse_tfo, 0, 1, 1 }, /* enable TCP Fast Open of server */
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01001801 { "track", srv_parse_track, 1, 1, 0 }, /* Set the current state of the server, tracking another one */
1802 { "socks4", srv_parse_socks4, 1, 1, 0 }, /* Set the socks4 proxy of the server*/
Amaury Denoyellefc465a52021-03-09 17:36:23 +01001803 { "usesrc", srv_parse_usesrc, 0, 1, 1 }, /* safe-guard against usesrc without preceding <source> keyword */
1804 { "weight", srv_parse_weight, 1, 1, 1 }, /* Set the load-balancing weight */
Willy Tarreaudff55432012-10-10 17:51:05 +02001805 { NULL, NULL, 0 },
1806}};
1807
Willy Tarreau0108d902018-11-25 19:14:37 +01001808INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
Willy Tarreaudff55432012-10-10 17:51:05 +02001809
Willy Tarreau004e0452013-11-21 11:22:01 +01001810/* Recomputes the server's eweight based on its state, uweight, the current time,
Ilya Shipitsinc02a23f2020-05-06 00:53:22 +05001811 * and the proxy's algorithm. To be used after updating sv->uweight. The warmup
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001812 * state is automatically disabled if the time is elapsed. If <must_update> is
1813 * not zero, the update will be propagated immediately.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001814 *
1815 * Must be called with the server lock held.
Willy Tarreau004e0452013-11-21 11:22:01 +01001816 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001817void server_recalc_eweight(struct server *sv, int must_update)
Willy Tarreau004e0452013-11-21 11:22:01 +01001818{
1819 struct proxy *px = sv->proxy;
1820 unsigned w;
1821
1822 if (now.tv_sec < sv->last_change || now.tv_sec >= sv->last_change + sv->slowstart) {
1823 /* go to full throttle if the slowstart interval is reached */
Emeric Brun52a91d32017-08-31 14:41:55 +02001824 if (sv->next_state == SRV_ST_STARTING)
1825 sv->next_state = SRV_ST_RUNNING;
Willy Tarreau004e0452013-11-21 11:22:01 +01001826 }
1827
1828 /* We must take care of not pushing the server to full throttle during slow starts.
1829 * It must also start immediately, at least at the minimal step when leaving maintenance.
1830 */
Emeric Brun52a91d32017-08-31 14:41:55 +02001831 if ((sv->next_state == SRV_ST_STARTING) && (px->lbprm.algo & BE_LB_PROP_DYN))
Willy Tarreau004e0452013-11-21 11:22:01 +01001832 w = (px->lbprm.wdiv * (now.tv_sec - sv->last_change) + sv->slowstart) / sv->slowstart;
1833 else
1834 w = px->lbprm.wdiv;
1835
Emeric Brun52a91d32017-08-31 14:41:55 +02001836 sv->next_eweight = (sv->uweight * w + px->lbprm.wmult - 1) / px->lbprm.wmult;
Willy Tarreau004e0452013-11-21 11:22:01 +01001837
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001838 /* propagate changes only if needed (i.e. not recursively) */
Willy Tarreau49725a02018-08-21 19:54:09 +02001839 if (must_update)
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001840 srv_update_status(sv);
Willy Tarreau004e0452013-11-21 11:22:01 +01001841}
1842
Willy Tarreaubaaee002006-06-26 02:48:02 +02001843/*
Simon Horman7d09b9a2013-02-12 10:45:51 +09001844 * Parses weight_str and configures sv accordingly.
1845 * Returns NULL on success, error message string otherwise.
Willy Tarreau46b7f532018-08-21 11:54:26 +02001846 *
1847 * Must be called with the server lock held.
Simon Horman7d09b9a2013-02-12 10:45:51 +09001848 */
1849const char *server_parse_weight_change_request(struct server *sv,
1850 const char *weight_str)
1851{
1852 struct proxy *px;
Simon Hormanb796afa2013-02-12 10:45:53 +09001853 long int w;
1854 char *end;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001855
1856 px = sv->proxy;
1857
1858 /* if the weight is terminated with '%', it is set relative to
1859 * the initial weight, otherwise it is absolute.
1860 */
1861 if (!*weight_str)
1862 return "Require <weight> or <weight%>.\n";
1863
Simon Hormanb796afa2013-02-12 10:45:53 +09001864 w = strtol(weight_str, &end, 10);
1865 if (end == weight_str)
1866 return "Empty weight string empty or preceded by garbage";
1867 else if (end[0] == '%' && end[1] == '\0') {
Simon Horman58b5d292013-02-12 10:45:52 +09001868 if (w < 0)
Simon Horman7d09b9a2013-02-12 10:45:51 +09001869 return "Relative weight must be positive.\n";
Simon Horman58b5d292013-02-12 10:45:52 +09001870 /* Avoid integer overflow */
1871 if (w > 25600)
1872 w = 25600;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001873 w = sv->iweight * w / 100;
Simon Horman58b5d292013-02-12 10:45:52 +09001874 if (w > 256)
1875 w = 256;
Simon Horman7d09b9a2013-02-12 10:45:51 +09001876 }
1877 else if (w < 0 || w > 256)
1878 return "Absolute weight can only be between 0 and 256 inclusive.\n";
Simon Hormanb796afa2013-02-12 10:45:53 +09001879 else if (end[0] != '\0')
1880 return "Trailing garbage in weight string";
Simon Horman7d09b9a2013-02-12 10:45:51 +09001881
1882 if (w && w != sv->iweight && !(px->lbprm.algo & BE_LB_PROP_DYN))
1883 return "Backend is using a static LB algorithm and only accepts weights '0%' and '100%'.\n";
1884
1885 sv->uweight = w;
Willy Tarreau3ff577e2018-08-02 11:48:52 +02001886 server_recalc_eweight(sv, 1);
Simon Horman7d09b9a2013-02-12 10:45:51 +09001887
1888 return NULL;
1889}
1890
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001891/*
Thierry Fournier09a91782016-02-24 08:25:39 +01001892 * Parses <addr_str> and configures <sv> accordingly. <from> precise
1893 * the source of the change in the associated message log.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001894 * Returns:
1895 * - error string on error
1896 * - NULL on success
Willy Tarreau46b7f532018-08-21 11:54:26 +02001897 *
1898 * Must be called with the server lock held.
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001899 */
1900const char *server_parse_addr_change_request(struct server *sv,
Thierry Fournier09a91782016-02-24 08:25:39 +01001901 const char *addr_str, const char *updater)
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001902{
1903 unsigned char ip[INET6_ADDRSTRLEN];
1904
1905 if (inet_pton(AF_INET6, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001906 srv_update_addr(sv, ip, AF_INET6, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001907 return NULL;
1908 }
1909 if (inet_pton(AF_INET, addr_str, ip)) {
Christopher Faulet69beaa92021-02-16 12:07:47 +01001910 srv_update_addr(sv, ip, AF_INET, updater);
Baptiste Assmann3d8f8312015-04-13 22:54:33 +02001911 return NULL;
1912 }
1913
1914 return "Could not understand IP address format.\n";
1915}
1916
Willy Tarreau46b7f532018-08-21 11:54:26 +02001917/*
1918 * Must be called with the server lock held.
1919 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001920const char *server_parse_maxconn_change_request(struct server *sv,
1921 const char *maxconn_str)
1922{
1923 long int v;
1924 char *end;
1925
1926 if (!*maxconn_str)
1927 return "Require <maxconn>.\n";
1928
1929 v = strtol(maxconn_str, &end, 10);
1930 if (end == maxconn_str)
1931 return "maxconn string empty or preceded by garbage";
1932 else if (end[0] != '\0')
1933 return "Trailing garbage in maxconn string";
1934
1935 if (sv->maxconn == sv->minconn) { // static maxconn
1936 sv->maxconn = sv->minconn = v;
1937 } else { // dynamic maxconn
1938 sv->maxconn = v;
1939 }
1940
Amaury Denoyellecaaafd02021-06-18 11:11:36 +02001941 /* server_parse_maxconn_change_request requires the server lock held.
1942 * Specify it to process_srv_queue to prevent a deadlock.
1943 */
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001944 if (may_dequeue_tasks(sv, sv->proxy))
Amaury Denoyellecaaafd02021-06-18 11:11:36 +02001945 process_srv_queue(sv, 1);
Nenad Merdanovic174dd372016-04-24 23:10:06 +02001946
1947 return NULL;
1948}
1949
William Lallemand71048532021-10-20 13:28:41 +02001950#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001951static struct sample_expr *srv_sni_sample_parse_expr(struct server *srv, struct proxy *px,
1952 const char *file, int linenum, char **err)
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001953{
1954 int idx;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001955 const char *args[] = {
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001956 srv->sni_expr,
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001957 NULL,
1958 };
1959
1960 idx = 0;
Olivier Houchard7d8e6882017-04-20 18:21:17 +02001961 px->conf.args.ctx = ARGC_SRV;
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001962
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001963 return sample_parse_expr((char **)args, &idx, file, linenum, err, &px->conf.args, NULL);
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001964}
1965
1966static int server_parse_sni_expr(struct server *newsrv, struct proxy *px, char **err)
1967{
1968 struct sample_expr *expr;
1969
1970 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 +01001971 if (!expr) {
1972 memprintf(err, "error detected while parsing sni expression : %s", *err);
1973 return ERR_ALERT | ERR_FATAL;
1974 }
1975
1976 if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) {
1977 memprintf(err, "error detected while parsing sni expression : "
1978 " fetch method '%s' extracts information from '%s', "
1979 "none of which is available here.\n",
Frédéric Lécaille759ea982017-03-30 17:32:36 +02001980 newsrv->sni_expr, sample_src_names(expr->fetch->use));
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001981 return ERR_ALERT | ERR_FATAL;
1982 }
1983
1984 px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY);
1985 release_sample_expr(newsrv->ssl_ctx.sni);
1986 newsrv->ssl_ctx.sni = expr;
1987
1988 return 0;
1989}
William Lallemand71048532021-10-20 13:28:41 +02001990#endif
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001991
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001992static 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 +01001993{
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01001994 char *msg = "error encountered while processing ";
1995 char *quote = "'";
1996 char *token = args[cur_arg];
1997
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01001998 if (err && *err) {
1999 indent_msg(err, 2);
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002000 msg = *err;
2001 quote = "";
2002 token = "";
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002003 }
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002004
2005 if (err_code & ERR_WARN && !(err_code & ERR_ALERT))
2006 ha_warning("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
2007 file, linenum, args[0], args[1],
2008 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002009 else
Gaetan Rivet10c4b4a2020-02-11 11:42:38 +01002010 ha_alert("parsing [%s:%d] : '%s %s' : %s%s%s%s.\n",
2011 file, linenum, args[0], args[1],
2012 msg, quote, token, quote);
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01002013}
2014
Christopher Faulet5e5675d2022-08-03 11:21:14 +02002015static void srv_conn_src_sport_range_cpy(struct server *srv, const struct server *src)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002016{
2017 int range_sz;
2018
2019 range_sz = src->conn_src.sport_range->size;
2020 if (range_sz > 0) {
2021 srv->conn_src.sport_range = port_range_alloc_range(range_sz);
2022 if (srv->conn_src.sport_range != NULL) {
2023 int i;
2024
2025 for (i = 0; i < range_sz; i++) {
2026 srv->conn_src.sport_range->ports[i] =
2027 src->conn_src.sport_range->ports[i];
2028 }
2029 }
2030 }
2031}
2032
2033/*
2034 * Copy <src> server connection source settings to <srv> server everything needed.
2035 */
Christopher Faulet5e5675d2022-08-03 11:21:14 +02002036static void srv_conn_src_cpy(struct server *srv, const struct server *src)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002037{
2038 srv->conn_src.opts = src->conn_src.opts;
2039 srv->conn_src.source_addr = src->conn_src.source_addr;
2040
2041 /* Source port range copy. */
2042 if (src->conn_src.sport_range != NULL)
2043 srv_conn_src_sport_range_cpy(srv, src);
2044
2045#ifdef CONFIG_HAP_TRANSPARENT
2046 if (src->conn_src.bind_hdr_name != NULL) {
2047 srv->conn_src.bind_hdr_name = strdup(src->conn_src.bind_hdr_name);
2048 srv->conn_src.bind_hdr_len = strlen(src->conn_src.bind_hdr_name);
2049 }
2050 srv->conn_src.bind_hdr_occ = src->conn_src.bind_hdr_occ;
2051 srv->conn_src.tproxy_addr = src->conn_src.tproxy_addr;
2052#endif
2053 if (src->conn_src.iface_name != NULL)
2054 srv->conn_src.iface_name = strdup(src->conn_src.iface_name);
2055}
2056
2057/*
2058 * Copy <src> server SSL settings to <srv> server allocating
2059 * everything needed.
2060 */
2061#if defined(USE_OPENSSL)
Christopher Faulet5e5675d2022-08-03 11:21:14 +02002062static void srv_ssl_settings_cpy(struct server *srv, const struct server *src)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002063{
Christopher Faulet7cbd1562021-12-01 09:50:41 +01002064 /* <src> is the current proxy's default server and SSL is enabled */
William Lallemand6338b7d2021-12-28 18:47:17 +01002065 BUG_ON(src->ssl_ctx.ctx != NULL); /* the SSL_CTX must never be initialized in a default-server */
2066
Christopher Faulet7cbd1562021-12-01 09:50:41 +01002067 if (src == &srv->proxy->defsrv && src->use_ssl == 1)
2068 srv->flags |= SRV_F_DEFSRV_USE_SSL;
2069
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002070 if (src->ssl_ctx.ca_file != NULL)
2071 srv->ssl_ctx.ca_file = strdup(src->ssl_ctx.ca_file);
2072 if (src->ssl_ctx.crl_file != NULL)
2073 srv->ssl_ctx.crl_file = strdup(src->ssl_ctx.crl_file);
William Lallemand6338b7d2021-12-28 18:47:17 +01002074 if (src->ssl_ctx.client_crt != NULL)
2075 srv->ssl_ctx.client_crt = strdup(src->ssl_ctx.client_crt);
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002076
2077 srv->ssl_ctx.verify = src->ssl_ctx.verify;
2078
Remi Tricot-Le Breton3b0f3e02021-07-13 18:28:22 +02002079
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002080 if (src->ssl_ctx.verify_host != NULL)
2081 srv->ssl_ctx.verify_host = strdup(src->ssl_ctx.verify_host);
2082 if (src->ssl_ctx.ciphers != NULL)
2083 srv->ssl_ctx.ciphers = strdup(src->ssl_ctx.ciphers);
Jerome Magnin2e8d52f2020-04-22 11:40:18 +02002084 if (src->ssl_ctx.options)
2085 srv->ssl_ctx.options = src->ssl_ctx.options;
2086 if (src->ssl_ctx.methods.flags)
2087 srv->ssl_ctx.methods.flags = src->ssl_ctx.methods.flags;
2088 if (src->ssl_ctx.methods.min)
2089 srv->ssl_ctx.methods.min = src->ssl_ctx.methods.min;
2090 if (src->ssl_ctx.methods.max)
2091 srv->ssl_ctx.methods.max = src->ssl_ctx.methods.max;
2092
William Lallemand71048532021-10-20 13:28:41 +02002093#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02002094 if (src->ssl_ctx.ciphersuites != NULL)
2095 srv->ssl_ctx.ciphersuites = strdup(src->ssl_ctx.ciphersuites);
William Lallemand71048532021-10-20 13:28:41 +02002096#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002097 if (src->sni_expr != NULL)
2098 srv->sni_expr = strdup(src->sni_expr);
Olivier Houchardc7566002018-11-20 23:33:50 +01002099
William Lallemand71048532021-10-20 13:28:41 +02002100#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Olivier Houchardc7566002018-11-20 23:33:50 +01002101 if (src->ssl_ctx.alpn_str) {
2102 srv->ssl_ctx.alpn_str = malloc(src->ssl_ctx.alpn_len);
2103 if (srv->ssl_ctx.alpn_str) {
2104 memcpy(srv->ssl_ctx.alpn_str, src->ssl_ctx.alpn_str,
2105 src->ssl_ctx.alpn_len);
2106 srv->ssl_ctx.alpn_len = src->ssl_ctx.alpn_len;
2107 }
2108 }
William Lallemand71048532021-10-20 13:28:41 +02002109#endif
2110#ifdef OPENSSL_NPN_NEGOTIATED
Olivier Houchardc7566002018-11-20 23:33:50 +01002111 if (src->ssl_ctx.npn_str) {
2112 srv->ssl_ctx.npn_str = malloc(src->ssl_ctx.npn_len);
2113 if (srv->ssl_ctx.npn_str) {
2114 memcpy(srv->ssl_ctx.npn_str, src->ssl_ctx.npn_str,
2115 src->ssl_ctx.npn_len);
2116 srv->ssl_ctx.npn_len = src->ssl_ctx.npn_len;
2117 }
2118 }
William Lallemand71048532021-10-20 13:28:41 +02002119#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002120}
2121#endif
2122
2123/*
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002124 * Prepare <srv> for hostname resolution.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002125 * May be safely called with a default server as <src> argument (without hostname).
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002126 * Returns -1 in case of any allocation failure, 0 if not.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002127 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01002128int srv_prepare_for_resolution(struct server *srv, const char *hostname)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002129{
Christopher Faulet67957bd2017-09-27 11:00:59 +02002130 char *hostname_dn;
2131 int hostname_len, hostname_dn_len;
2132
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002133 if (!hostname)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002134 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002135
Christopher Faulet67957bd2017-09-27 11:00:59 +02002136 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002137 hostname_dn = trash.area;
Willy Tarreauc1c765f2021-10-14 07:49:49 +02002138 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len,
Emeric Brund30e9a12020-12-23 18:49:16 +01002139 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002140 if (hostname_dn_len == -1)
2141 goto err;
Baptiste Assmann81ed1a02017-05-03 10:11:44 +02002142
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002143
Christopher Faulet67957bd2017-09-27 11:00:59 +02002144 free(srv->hostname);
2145 free(srv->hostname_dn);
2146 srv->hostname = strdup(hostname);
2147 srv->hostname_dn = strdup(hostname_dn);
2148 srv->hostname_dn_len = hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002149 if (!srv->hostname || !srv->hostname_dn)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002150 goto err;
2151
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002152 return 0;
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002153
2154 err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002155 ha_free(&srv->hostname);
2156 ha_free(&srv->hostname_dn);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02002157 return -1;
2158}
2159
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002160/*
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002161 * Copy <src> server settings to <srv> server allocating
2162 * everything needed.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002163 * This function is not supposed to be called at any time, but only
2164 * during server settings parsing or during server allocations from
2165 * a server template, and just after having calloc()'ed a new server.
2166 * So, <src> may only be a default server (when parsing server settings)
2167 * or a server template (during server allocations from a server template).
2168 * <srv_tmpl> distinguishes these two cases (must be 1 if <srv> is a template,
2169 * 0 if not).
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002170 */
Christopher Faulet29962f72022-08-03 11:28:08 +02002171void srv_settings_cpy(struct server *srv, const struct server *src, int srv_tmpl)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002172{
2173 /* Connection source settings copy */
2174 srv_conn_src_cpy(srv, src);
2175
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002176 if (srv_tmpl) {
2177 srv->addr = src->addr;
2178 srv->svc_port = src->svc_port;
2179 }
2180
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002181 srv->pp_opts = src->pp_opts;
2182 if (src->rdr_pfx != NULL) {
2183 srv->rdr_pfx = strdup(src->rdr_pfx);
2184 srv->rdr_len = src->rdr_len;
2185 }
2186 if (src->cookie != NULL) {
2187 srv->cookie = strdup(src->cookie);
2188 srv->cklen = src->cklen;
2189 }
2190 srv->use_ssl = src->use_ssl;
Willy Tarreau24441082019-12-11 15:43:45 +01002191 srv->check.addr = src->check.addr;
2192 srv->agent.addr = src->agent.addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002193 srv->check.use_ssl = src->check.use_ssl;
2194 srv->check.port = src->check.port;
Olivier Houchard21944012018-12-21 19:42:01 +01002195 srv->check.sni = src->check.sni;
Olivier Houchard92150142018-12-21 19:47:01 +01002196 srv->check.alpn_str = src->check.alpn_str;
Ilya Shipitsin0c50b1e2019-04-30 21:21:28 +05002197 srv->check.alpn_len = src->check.alpn_len;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002198 /* Note: 'flags' field has potentially been already initialized. */
2199 srv->flags |= src->flags;
2200 srv->do_check = src->do_check;
2201 srv->do_agent = src->do_agent;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002202 srv->check.inter = src->check.inter;
2203 srv->check.fastinter = src->check.fastinter;
2204 srv->check.downinter = src->check.downinter;
2205 srv->agent.use_ssl = src->agent.use_ssl;
2206 srv->agent.port = src->agent.port;
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02002207
2208 if (src->agent.tcpcheck_rules) {
2209 srv->agent.tcpcheck_rules = calloc(1, sizeof(*srv->agent.tcpcheck_rules));
2210 if (srv->agent.tcpcheck_rules) {
2211 srv->agent.tcpcheck_rules->flags = src->agent.tcpcheck_rules->flags;
2212 srv->agent.tcpcheck_rules->list = src->agent.tcpcheck_rules->list;
2213 LIST_INIT(&srv->agent.tcpcheck_rules->preset_vars);
2214 dup_tcpcheck_vars(&srv->agent.tcpcheck_rules->preset_vars,
2215 &src->agent.tcpcheck_rules->preset_vars);
2216 }
2217 }
2218
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002219 srv->agent.inter = src->agent.inter;
2220 srv->agent.fastinter = src->agent.fastinter;
2221 srv->agent.downinter = src->agent.downinter;
2222 srv->maxqueue = src->maxqueue;
Amaury Denoyelle8e99b842021-10-18 14:39:57 +02002223 srv->ws = src->ws;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002224 srv->minconn = src->minconn;
2225 srv->maxconn = src->maxconn;
2226 srv->slowstart = src->slowstart;
2227 srv->observe = src->observe;
2228 srv->onerror = src->onerror;
2229 srv->onmarkeddown = src->onmarkeddown;
2230 srv->onmarkedup = src->onmarkedup;
2231 if (src->trackit != NULL)
2232 srv->trackit = strdup(src->trackit);
2233 srv->consecutive_errors_limit = src->consecutive_errors_limit;
2234 srv->uweight = srv->iweight = src->iweight;
2235
2236 srv->check.send_proxy = src->check.send_proxy;
2237 /* health: up, but will fall down at first failure */
2238 srv->check.rise = srv->check.health = src->check.rise;
2239 srv->check.fall = src->check.fall;
2240
2241 /* Here we check if 'disabled' is the default server state */
Emeric Brun52a91d32017-08-31 14:41:55 +02002242 if (src->next_admin & (SRV_ADMF_CMAINT | SRV_ADMF_FMAINT)) {
2243 srv->next_admin |= SRV_ADMF_CMAINT | SRV_ADMF_FMAINT;
2244 srv->next_state = SRV_ST_STOPPED;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002245 srv->check.state |= CHK_ST_PAUSED;
2246 srv->check.health = 0;
2247 }
2248
2249 /* health: up but will fall down at first failure */
2250 srv->agent.rise = srv->agent.health = src->agent.rise;
2251 srv->agent.fall = src->agent.fall;
2252
2253 if (src->resolvers_id != NULL)
2254 srv->resolvers_id = strdup(src->resolvers_id);
Emeric Brun21fbeed2020-12-23 18:01:04 +01002255 srv->resolv_opts.family_prio = src->resolv_opts.family_prio;
2256 srv->resolv_opts.accept_duplicate_ip = src->resolv_opts.accept_duplicate_ip;
2257 srv->resolv_opts.ignore_weight = src->resolv_opts.ignore_weight;
2258 if (srv->resolv_opts.family_prio == AF_UNSPEC)
2259 srv->resolv_opts.family_prio = AF_INET6;
2260 memcpy(srv->resolv_opts.pref_net,
2261 src->resolv_opts.pref_net,
2262 sizeof srv->resolv_opts.pref_net);
2263 srv->resolv_opts.pref_net_nb = src->resolv_opts.pref_net_nb;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002264
2265 srv->init_addr_methods = src->init_addr_methods;
2266 srv->init_addr = src->init_addr;
2267#if defined(USE_OPENSSL)
2268 srv_ssl_settings_cpy(srv, src);
2269#endif
2270#ifdef TCP_USER_TIMEOUT
2271 srv->tcp_ut = src->tcp_ut;
2272#endif
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002273 srv->mux_proto = src->mux_proto;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01002274 srv->pool_purge_delay = src->pool_purge_delay;
Willy Tarreau2f3f4d32020-07-01 07:43:51 +02002275 srv->low_idle_conns = src->low_idle_conns;
Olivier Houchard006e3102018-12-10 18:30:32 +01002276 srv->max_idle_conns = src->max_idle_conns;
Willy Tarreau9c538e02019-01-23 10:21:49 +01002277 srv->max_reuse = src->max_reuse;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02002278
Olivier Houchard8da5f982017-08-04 18:35:36 +02002279 if (srv_tmpl)
2280 srv->srvrq = src->srvrq;
Alexander Liu2a54bb72019-05-22 19:44:48 +08002281
Aurelien DARRAGON9478e5a2023-06-14 09:53:32 +02002282 srv->netns = src->netns;
Alexander Liu2a54bb72019-05-22 19:44:48 +08002283 srv->check.via_socks4 = src->check.via_socks4;
2284 srv->socks4_addr = src->socks4_addr;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002285}
2286
Willy Tarreau198e92a2021-03-05 10:23:32 +01002287/* allocate a server and attach it to the global servers_list. Returns
2288 * the server on success, otherwise NULL.
2289 */
William Lallemand313bfd12018-10-26 14:47:32 +02002290struct server *new_server(struct proxy *proxy)
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002291{
2292 struct server *srv;
2293
2294 srv = calloc(1, sizeof *srv);
2295 if (!srv)
2296 return NULL;
2297
2298 srv->obj_type = OBJ_TYPE_SERVER;
2299 srv->proxy = proxy;
Patrick Hemmer0355dab2018-05-11 12:52:31 -04002300 srv->pendconns = EB_ROOT;
Willy Tarreau2b718102021-04-21 07:32:39 +02002301 LIST_APPEND(&servers_list, &srv->global_list);
Emeric Brun0c4a8a32021-06-11 10:48:45 +02002302 LIST_INIT(&srv->srv_rec_item);
Emeric Brunf9ca5d82021-06-11 10:08:05 +02002303 LIST_INIT(&srv->ip_rec_item);
Christopher Faulet40a007c2017-07-03 15:41:01 +02002304
Emeric Brun52a91d32017-08-31 14:41:55 +02002305 srv->next_state = SRV_ST_RUNNING; /* early server setup */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002306 srv->last_change = now.tv_sec;
2307
Christopher Faulet38290462020-04-21 11:46:40 +02002308 srv->check.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002309 srv->check.status = HCHK_STATUS_INI;
2310 srv->check.server = srv;
Olivier Houchardc98aa1f2019-01-11 18:17:17 +01002311 srv->check.proxy = proxy;
Christopher Faulet5d503fc2020-03-30 20:34:34 +02002312 srv->check.tcpcheck_rules = &proxy->tcpcheck_rules;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002313
Christopher Faulet38290462020-04-21 11:46:40 +02002314 srv->agent.obj_type = OBJ_TYPE_CHECK;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002315 srv->agent.status = HCHK_STATUS_INI;
2316 srv->agent.server = srv;
Willy Tarreau1ba32032019-01-21 07:48:26 +01002317 srv->agent.proxy = proxy;
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002318 srv->xprt = srv->check.xprt = srv->agent.xprt = xprt_get(XPRT_RAW);
Frédéric Lécaillef46c10c2020-11-23 14:29:28 +01002319#if defined(USE_QUIC)
2320 srv->cids = EB_ROOT_UNIQUE;
2321#endif
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002322
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002323 srv->extra_counters = NULL;
William Lallemand3ce6eed2021-02-08 10:43:44 +01002324#ifdef USE_OPENSSL
2325 HA_RWLOCK_INIT(&srv->ssl_ctx.lock);
2326#endif
Amaury Denoyelle7f8f6cb2020-11-10 14:24:31 +01002327
Willy Tarreau975b1552019-06-06 16:25:55 +02002328 /* please don't put default server settings here, they are set in
Willy Tarreau144289b2021-02-12 08:19:01 +01002329 * proxy_preset_defaults().
Willy Tarreau975b1552019-06-06 16:25:55 +02002330 */
Frédéric Lécaille58b207c2017-03-30 14:18:30 +02002331 return srv;
2332}
Frédéric Lécaille759ea982017-03-30 17:32:36 +02002333
Amaury Denoyellee3c55c22021-08-02 15:50:00 +02002334/* Increment the dynamic server refcount. */
Amaury Denoyelle4a699422021-08-25 14:39:53 +02002335void srv_use_dynsrv(struct server *srv)
Amaury Denoyellee3c55c22021-08-02 15:50:00 +02002336{
2337 BUG_ON(!(srv->flags & SRV_F_DYNAMIC));
2338 HA_ATOMIC_INC(&srv->refcount_dynsrv);
2339}
2340
2341/* Decrement the dynamic server refcount. */
2342static uint srv_release_dynsrv(struct server *srv)
2343{
2344 BUG_ON(!(srv->flags & SRV_F_DYNAMIC));
2345 return HA_ATOMIC_SUB_FETCH(&srv->refcount_dynsrv, 1);
2346}
2347
Amaury Denoyelleff836742021-08-09 15:08:54 +02002348/* Deallocate a server <srv> and its member. <srv> must be allocated. For
2349 * dynamic servers, its refcount is decremented first. The free operations are
2350 * conducted only if the refcount is nul, unless the process is stopping.
Amaury Denoyellebbe608a2021-08-25 15:03:46 +02002351 *
2352 * As a convenience, <srv.next> is returned if srv is not NULL. It may be useful
2353 * when calling free_server on the list of servers.
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002354 */
Amaury Denoyellebbe608a2021-08-25 15:03:46 +02002355struct server *free_server(struct server *srv)
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002356{
Amaury Denoyellebbe608a2021-08-25 15:03:46 +02002357 struct server *next = NULL;
2358
2359 next = srv->next;
2360
Amaury Denoyellee3c55c22021-08-02 15:50:00 +02002361 /* For dynamic servers, decrement the reference counter. Only free the
2362 * server when reaching zero.
2363 */
Amaury Denoyelleff836742021-08-09 15:08:54 +02002364 if (likely(!(global.mode & MODE_STOPPING))) {
2365 if (srv->flags & SRV_F_DYNAMIC) {
2366 if (srv_release_dynsrv(srv))
Amaury Denoyellebbe608a2021-08-25 15:03:46 +02002367 goto end;
Amaury Denoyelleff836742021-08-09 15:08:54 +02002368 }
Amaury Denoyellee3c55c22021-08-02 15:50:00 +02002369 }
2370
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002371 task_destroy(srv->warmup);
Christopher Faulet2c0f5272021-06-15 16:17:17 +02002372 task_destroy(srv->srvrq_check);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002373
2374 free(srv->id);
2375 free(srv->cookie);
Aurelien DARRAGON031ccb12023-09-15 00:42:55 +02002376 free(srv->rdr_pfx);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002377 free(srv->hostname);
2378 free(srv->hostname_dn);
2379 free((char*)srv->conf.file);
2380 free(srv->per_thr);
2381 free(srv->curr_idle_thr);
2382 free(srv->resolvers_id);
2383 free(srv->addr_node.key);
Amaury Denoyellefb247942021-04-20 16:48:22 +02002384 free(srv->lb_nodes);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002385
2386 if (srv->use_ssl == 1 || srv->check.use_ssl == 1 || (srv->proxy->options & PR_O_TCPCHK_SSL)) {
2387 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2388 xprt_get(XPRT_SSL)->destroy_srv(srv);
2389 }
2390 HA_SPIN_DESTROY(&srv->lock);
2391
Willy Tarreau2b718102021-04-21 07:32:39 +02002392 LIST_DELETE(&srv->global_list);
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002393
2394 EXTRA_COUNTERS_FREE(srv->extra_counters);
2395
2396 free(srv);
2397 srv = NULL;
Amaury Denoyellebbe608a2021-08-25 15:03:46 +02002398
2399 end:
2400 return next;
Amaury Denoyelle828adf02021-03-16 17:20:15 +01002401}
2402
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002403/*
2404 * Parse as much as possible such a range string argument: low[-high]
2405 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
2406 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
2407 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
2408 * Returns 0 if succeeded, -1 if not.
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002409 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002410static int _srv_parse_tmpl_range(struct server *srv, const char *arg,
2411 int *nb_low, int *nb_high)
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002412{
2413 char *nb_high_arg;
2414
2415 *nb_high = 0;
2416 chunk_printf(&trash, "%s", arg);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002417 *nb_low = atoi(trash.area);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002418
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002419 if ((nb_high_arg = strchr(trash.area, '-'))) {
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002420 *nb_high_arg++ = '\0';
2421 *nb_high = atoi(nb_high_arg);
2422 }
2423 else {
2424 *nb_high += *nb_low;
2425 *nb_low = 1;
2426 }
2427
2428 if (*nb_low < 0 || *nb_high < *nb_low)
2429 return -1;
2430
2431 return 0;
2432}
2433
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002434/* Parse as much as possible such a range string argument: low[-high]
2435 * Set <nb_low> and <nb_high> values so that they may be reused by this loop
2436 * for(int i = nb_low; i <= nb_high; i++)... with nb_low >= 1.
2437 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002438 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002439 * initialize a new server on startup.
2440 *
2441 * Fails if 'low' < 0 or 'high' is present and not higher than 'low'.
2442 * Returns 0 if succeeded, -1 if not.
2443 */
2444static inline void _srv_parse_set_id_from_prefix(struct server *srv,
2445 const char *prefix, int nb)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002446{
2447 chunk_printf(&trash, "%s%d", prefix, nb);
2448 free(srv->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002449 srv->id = strdup(trash.area);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002450}
2451
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002452/* Initialize as much as possible servers from <srv> server template.
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002453 * Note that a server template is a special server with
2454 * a few different parameters than a server which has
2455 * been parsed mostly the same way as a server.
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002456 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002457 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002458 * initialize a new server on startup.
2459 *
Joseph Herlant44466822018-11-15 08:57:51 -08002460 * Returns the number of servers successfully allocated,
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002461 * 'srv' template included.
2462 */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002463static int _srv_parse_tmpl_init(struct server *srv, struct proxy *px)
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002464{
2465 int i;
2466 struct server *newsrv;
2467
2468 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 +02002469 newsrv = new_server(px);
2470 if (!newsrv)
2471 goto err;
2472
Christopher Faulet75bef002020-11-02 22:04:55 +01002473 newsrv->conf.file = strdup(srv->conf.file);
2474 newsrv->conf.line = srv->conf.line;
2475
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002476 srv_settings_cpy(newsrv, srv, 1);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02002477 srv_prepare_for_resolution(newsrv, srv->hostname);
William Lallemand71048532021-10-20 13:28:41 +02002478#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002479 if (newsrv->sni_expr) {
2480 newsrv->ssl_ctx.sni = srv_sni_sample_parse_expr(newsrv, px, NULL, 0, NULL);
2481 if (!newsrv->ssl_ctx.sni)
2482 goto err;
2483 }
William Lallemand71048532021-10-20 13:28:41 +02002484#endif
Emeric Brun0c4a8a32021-06-11 10:48:45 +02002485 /* append to list of servers available to receive an hostname */
Emeric Brun3ecaf532021-06-14 10:02:18 +02002486 if (newsrv->srvrq)
2487 LIST_APPEND(&newsrv->srvrq->attached_servers, &newsrv->srv_rec_item);
Emeric Brun0c4a8a32021-06-11 10:48:45 +02002488
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002489 /* Set this new server ID. */
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002490 _srv_parse_set_id_from_prefix(newsrv, srv->tmpl_info.prefix, i);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002491
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002492 /* Linked backwards first. This will be restablished after parsing. */
2493 newsrv->next = px->srv;
2494 px->srv = newsrv;
2495 }
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002496 _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 +02002497
2498 return i - srv->tmpl_info.nb_low;
2499
2500 err:
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002501 _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 +02002502 if (newsrv) {
William Lallemand71048532021-10-20 13:28:41 +02002503#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002504 release_sample_expr(newsrv->ssl_ctx.sni);
William Lallemand71048532021-10-20 13:28:41 +02002505#endif
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002506 free_check(&newsrv->agent);
2507 free_check(&newsrv->check);
Willy Tarreau2b718102021-04-21 07:32:39 +02002508 LIST_DELETE(&newsrv->global_list);
Frédéric Lécaille72ed4752017-04-14 13:28:00 +02002509 }
2510 free(newsrv);
2511 return i - srv->tmpl_info.nb_low;
2512}
2513
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002514/* Allocate a new server pointed by <srv> and try to parse the first arguments
2515 * in <args> as an address for a server or an address-range for a template or
2516 * nothing for a default-server. <cur_arg> is incremented to the next argument.
2517 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002518 * This function is first intended to be used through parse_server to
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002519 * initialize a new server on startup.
2520 *
2521 * A mask of errors is returned. On a parsing error, ERR_FATAL is set. In case
2522 * of memory exhaustion, ERR_ABORT is set. If the server cannot be allocated,
2523 * <srv> will be set to NULL.
2524 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002525static int _srv_parse_init(struct server **srv, char **args, int *cur_arg,
2526 struct proxy *curproxy,
2527 int parse_flags, char **errmsg)
Willy Tarreau272adea2014-03-31 10:39:59 +02002528{
2529 struct server *newsrv = NULL;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002530 const char *err = NULL;
Willy Tarreau272adea2014-03-31 10:39:59 +02002531 int err_code = 0;
Willy Tarreau07101d52015-09-08 16:16:35 +02002532 char *fqdn = NULL;
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002533 int tmpl_range_low = 0, tmpl_range_high = 0;
Willy Tarreau272adea2014-03-31 10:39:59 +02002534
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002535 *srv = NULL;
2536
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002537 /* There is no mandatory first arguments for default server. */
2538 if (parse_flags & SRV_PARSE_PARSE_ADDR) {
2539 if (parse_flags & SRV_PARSE_TEMPLATE) {
2540 if (!*args[3]) {
2541 /* 'server-template' line number of argument check. */
2542 memprintf(errmsg, "'%s' expects <prefix> <nb | range> <addr>[:<port>] as arguments.",
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002543 args[0]);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002544 err_code |= ERR_ALERT | ERR_FATAL;
2545 goto out;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002546 }
2547
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002548 err = invalid_prefix_char(args[1]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002549 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002550 else {
2551 if (!*args[2]) {
2552 /* 'server' line number of argument check. */
2553 memprintf(errmsg, "'%s' expects <name> and <addr>[:<port>] as arguments.",
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002554 args[0]);
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002555 err_code |= ERR_ALERT | ERR_FATAL;
2556 goto out;
2557 }
2558
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002559 err = invalid_char(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002560 }
2561
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002562 if (err) {
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002563 memprintf(errmsg, "character '%c' is not permitted in %s %s '%s'.",
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002564 *err, args[0], !(parse_flags & SRV_PARSE_TEMPLATE) ? "name" : "prefix", args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002565 err_code |= ERR_ALERT | ERR_FATAL;
2566 goto out;
2567 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002568 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002569
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002570 *cur_arg = 2;
2571 if (parse_flags & SRV_PARSE_TEMPLATE) {
2572 /* Parse server-template <nb | range> arg. */
2573 if (_srv_parse_tmpl_range(newsrv, args[*cur_arg], &tmpl_range_low, &tmpl_range_high) < 0) {
2574 memprintf(errmsg, "Wrong %s number or range arg '%s'.",
2575 args[0], args[*cur_arg]);
2576 err_code |= ERR_ALERT | ERR_FATAL;
2577 goto out;
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002578 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002579 (*cur_arg)++;
2580 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002581
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002582 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
2583 struct sockaddr_storage *sk;
2584 int port1, port2, port;
Willy Tarreau272adea2014-03-31 10:39:59 +02002585
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002586 *srv = newsrv = new_server(curproxy);
2587 if (!newsrv) {
2588 memprintf(errmsg, "out of memory.");
2589 err_code |= ERR_ALERT | ERR_ABORT;
2590 goto out;
2591 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002592
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002593 if (parse_flags & SRV_PARSE_TEMPLATE) {
2594 newsrv->tmpl_info.nb_low = tmpl_range_low;
2595 newsrv->tmpl_info.nb_high = tmpl_range_high;
2596 }
Frédéric Lécailleb82f7422017-04-13 18:24:23 +02002597
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002598 if (parse_flags & SRV_PARSE_DYNAMIC)
2599 newsrv->flags |= SRV_F_DYNAMIC;
2600
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002601 /* Note: for a server template, its id is its prefix.
2602 * This is a temporary id which will be used for server allocations to come
2603 * after parsing.
2604 */
2605 if (!(parse_flags & SRV_PARSE_TEMPLATE))
2606 newsrv->id = strdup(args[1]);
2607 else
2608 newsrv->tmpl_info.prefix = strdup(args[1]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002609
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002610 /* several ways to check the port component :
2611 * - IP => port=+0, relative (IPv4 only)
2612 * - IP: => port=+0, relative
2613 * - IP:N => port=N, absolute
2614 * - IP:+N => port=+N, relative
2615 * - IP:-N => port=-N, relative
2616 */
2617 if (!(parse_flags & SRV_PARSE_PARSE_ADDR))
2618 goto skip_addr;
Frédéric Lécaille355b2032019-01-11 14:06:12 +01002619
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002620 sk = str2sa_range(args[*cur_arg], &port, &port1, &port2, NULL, NULL,
2621 errmsg, NULL, &fqdn,
2622 (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);
2623 if (!sk) {
2624 memprintf(errmsg, "'%s %s' : %s", args[0], args[1], *errmsg);
2625 err_code |= ERR_ALERT | ERR_FATAL;
2626 goto out;
2627 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002628
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002629 if (!port1 || !port2) {
2630 /* no port specified, +offset, -offset */
2631 newsrv->flags |= SRV_F_MAPPORTS;
2632 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002633
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002634 /* save hostname and create associated name resolution */
2635 if (fqdn) {
2636 if (fqdn[0] == '_') { /* SRV record */
2637 /* Check if a SRV request already exists, and if not, create it */
2638 if ((newsrv->srvrq = find_srvrq_by_name(fqdn, curproxy)) == NULL)
2639 newsrv->srvrq = new_resolv_srvrq(newsrv, fqdn);
2640 if (newsrv->srvrq == NULL) {
Christopher Faulet67957bd2017-09-27 11:00:59 +02002641 err_code |= ERR_ALERT | ERR_FATAL;
2642 goto out;
Baptiste Assmann4f91f7e2017-05-03 12:09:54 +02002643 }
Christopher Faulet08736f92021-06-29 20:52:35 +02002644 LIST_APPEND(&newsrv->srvrq->attached_servers, &newsrv->srv_rec_item);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002645 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002646 else if (srv_prepare_for_resolution(newsrv, fqdn) == -1) {
2647 memprintf(errmsg, "Can't create DNS resolution for server '%s'",
2648 newsrv->id);
Willy Tarreau272adea2014-03-31 10:39:59 +02002649 err_code |= ERR_ALERT | ERR_FATAL;
2650 goto out;
2651 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002652 }
Frédéric Lécaille5c3cd972017-03-15 16:36:09 +01002653
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002654 newsrv->addr = *sk;
2655 newsrv->svc_port = port;
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +02002656 /*
2657 * we don't need to lock the server here, because
2658 * we are in the process of initializing.
2659 *
2660 * Note that the server is not attached into the proxy tree if
2661 * this is a dynamic server.
2662 */
2663 srv_set_addr_desc(newsrv, !(parse_flags & SRV_PARSE_DYNAMIC));
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002664
2665 if (!newsrv->srvrq && !newsrv->hostname && !protocol_by_family(newsrv->addr.ss_family)) {
2666 memprintf(errmsg, "Unknown protocol family %d '%s'",
2667 newsrv->addr.ss_family, args[*cur_arg]);
2668 err_code |= ERR_ALERT | ERR_FATAL;
2669 goto out;
Willy Tarreau272adea2014-03-31 10:39:59 +02002670 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002671
2672 (*cur_arg)++;
2673 skip_addr:
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002674 if (!(parse_flags & SRV_PARSE_DYNAMIC)) {
2675 /* Copy default server settings to new server */
2676 srv_settings_cpy(newsrv, &curproxy->defsrv, 0);
2677 } else {
2678 /* Initialize dynamic server weight to 1 */
2679 newsrv->uweight = newsrv->iweight = 1;
2680
2681 /* A dynamic server is disabled on startup */
2682 newsrv->next_admin = SRV_ADMF_FMAINT;
2683 newsrv->next_state = SRV_ST_STOPPED;
2684 server_recalc_eweight(newsrv, 0);
2685 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002686 HA_SPIN_INIT(&newsrv->lock);
2687 }
2688 else {
2689 *srv = newsrv = &curproxy->defsrv;
2690 *cur_arg = 1;
2691 newsrv->resolv_opts.family_prio = AF_INET6;
2692 newsrv->resolv_opts.accept_duplicate_ip = 0;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002693 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002694
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002695 free(fqdn);
2696 return 0;
Willy Tarreau9faebe32019-06-07 19:00:37 +02002697
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002698out:
2699 free(fqdn);
2700 return err_code;
2701}
Willy Tarreau272adea2014-03-31 10:39:59 +02002702
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002703/* Parse the server keyword in <args>.
2704 * <cur_arg> is incremented beyond the keyword optional value. Note that this
2705 * might not be the case if an error is reported.
2706 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002707 * This function is first intended to be used through parse_server to
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002708 * initialize a new server on startup.
2709 *
2710 * A mask of errors is returned. ERR_FATAL is set if the parsing should be
2711 * interrupted.
2712 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002713static int _srv_parse_kw(struct server *srv, char **args, int *cur_arg,
2714 struct proxy *curproxy,
2715 int parse_flags, char **errmsg)
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002716{
2717 int err_code = 0;
2718 struct srv_kw *kw;
2719 const char *best;
Willy Tarreau272adea2014-03-31 10:39:59 +02002720
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002721 kw = srv_find_kw(args[*cur_arg]);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002722 if (!kw) {
2723 best = srv_find_best_kw(args[*cur_arg]);
2724 if (best)
2725 memprintf(errmsg, "unknown keyword '%s'; did you mean '%s' maybe ?",
2726 args[*cur_arg], best);
2727 else
2728 memprintf(errmsg, "unknown keyword '%s'.",
2729 args[*cur_arg]);
Willy Tarreau272adea2014-03-31 10:39:59 +02002730
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002731 return ERR_ALERT | ERR_FATAL;
2732 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002733
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002734 if (!kw->parse) {
2735 memprintf(errmsg, "'%s' option is not implemented in this version (check build options)",
2736 args[*cur_arg]);
2737 err_code = ERR_ALERT | ERR_FATAL;
2738 goto out;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002739 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002740
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002741 if ((parse_flags & SRV_PARSE_DEFAULT_SERVER) && !kw->default_ok) {
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002742 memprintf(errmsg, "'%s' option is not accepted in default-server sections",
2743 args[*cur_arg]);
2744 err_code = ERR_ALERT;
2745 goto out;
2746 }
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002747 else if ((parse_flags & SRV_PARSE_DYNAMIC) && !kw->dynamic_ok) {
2748 memprintf(errmsg, "'%s' option is not accepted for dynamic server",
2749 args[*cur_arg]);
2750 err_code |= ERR_ALERT;
2751 goto out;
2752 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002753
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002754 err_code = kw->parse(args, cur_arg, curproxy, srv, errmsg);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002755
2756out:
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002757 if (kw->skip != -1)
2758 *cur_arg += 1 + kw->skip;
2759
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002760 return err_code;
2761}
2762
William Lallemand71048532021-10-20 13:28:41 +02002763#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002764/* This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002765 * initialize a new server on startup.
2766 */
2767static int _srv_parse_sni_expr_init(char **args, int cur_arg,
2768 struct server *srv, struct proxy *proxy,
2769 char **errmsg)
2770{
2771 int ret;
2772
2773 if (!srv->sni_expr)
2774 return 0;
2775
2776 ret = server_parse_sni_expr(srv, proxy, errmsg);
2777 if (!ret)
2778 return 0;
2779
2780 return ret;
2781}
William Lallemand71048532021-10-20 13:28:41 +02002782#endif
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002783
2784/* Server initializations finalization.
2785 * Initialize health check, agent check and SNI expression if enabled.
2786 * Must not be called for a default server instance.
2787 *
Ilya Shipitsinba13f162021-03-19 22:21:44 +05002788 * This function is first intended to be used through parse_server to
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002789 * initialize a new server on startup.
2790 */
2791static int _srv_parse_finalize(char **args, int cur_arg,
2792 struct server *srv, struct proxy *px,
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002793 int parse_flags, char **errmsg)
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002794{
William Lallemand71048532021-10-20 13:28:41 +02002795#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002796 int ret;
William Lallemand71048532021-10-20 13:28:41 +02002797#endif
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002798
2799 if (srv->do_check && srv->trackit) {
2800 memprintf(errmsg, "unable to enable checks and tracking at the same time!");
2801 return ERR_ALERT | ERR_FATAL;
2802 }
2803
2804 if (srv->do_agent && !srv->agent.port) {
2805 memprintf(errmsg, "server %s does not have agent port. Agent check has been disabled.",
2806 srv->id);
2807 return ERR_ALERT | ERR_FATAL;
2808 }
2809
William Lallemand71048532021-10-20 13:28:41 +02002810#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002811 if ((ret = _srv_parse_sni_expr_init(args, cur_arg, srv, px, errmsg)) != 0)
2812 return ret;
William Lallemand71048532021-10-20 13:28:41 +02002813#endif
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002814
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002815 /* A dynamic server is disabled on startup. It must not be counted as
2816 * an active backend entry.
2817 */
2818 if (!(parse_flags & SRV_PARSE_DYNAMIC)) {
2819 if (srv->flags & SRV_F_BACKUP)
2820 px->srv_bck++;
2821 else
2822 px->srv_act++;
2823 }
2824
Amaury Denoyelle7d27efe2021-03-17 14:25:39 +01002825 srv_lb_commit_status(srv);
2826
2827 return 0;
2828}
2829
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002830int parse_server(const char *file, int linenum, char **args,
2831 struct proxy *curproxy, const struct proxy *defproxy,
2832 int parse_flags)
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002833{
2834 struct server *newsrv = NULL;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002835 char *errmsg = NULL;
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002836 int err_code = 0;
2837
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002838 int cur_arg;
Willy Tarreau272adea2014-03-31 10:39:59 +02002839
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002840 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER) && curproxy == defproxy) {
2841 ha_alert("parsing [%s:%d] : '%s' not allowed in 'defaults' section.\n", file, linenum, args[0]);
2842 err_code |= ERR_ALERT | ERR_FATAL;
2843 goto out;
2844 }
2845 else if (failifnotcap(curproxy, PR_CAP_BE, file, linenum, args[0], NULL)) {
2846 err_code |= ERR_ALERT | ERR_FATAL;
2847 goto out;
2848 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002849
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002850 if ((parse_flags & (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) ==
2851 (SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_PARSE_ADDR)) {
2852 if (!*args[2])
2853 return 0;
2854 }
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002855
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002856 err_code = _srv_parse_init(&newsrv, args, &cur_arg, curproxy,
2857 parse_flags, &errmsg);
2858 if (errmsg) {
2859 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
2860 free(errmsg);
2861 }
Amaury Denoyellecf58dd72021-03-08 16:35:54 +01002862
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002863 /* the servers are linked backwards first */
2864 if (newsrv && !(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
2865 newsrv->next = curproxy->srv;
2866 curproxy->srv = newsrv;
2867 }
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002868
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002869 if (err_code & ERR_CODE)
2870 goto out;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002871
Willy Tarreau091598a2023-11-23 14:28:14 +01002872 if (!newsrv->conf.file) // note: do it only once for default-server
2873 newsrv->conf.file = strdup(file);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002874 newsrv->conf.line = linenum;
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002875
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002876 while (*args[cur_arg]) {
2877 errmsg = NULL;
2878 err_code = _srv_parse_kw(newsrv, args, &cur_arg, curproxy,
2879 parse_flags, &errmsg);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002880
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002881 if (err_code & ERR_ALERT) {
2882 display_parser_err(file, linenum, args, cur_arg, err_code, &errmsg);
2883 free(errmsg);
Amaury Denoyellea8f442e2021-03-08 10:29:33 +01002884 }
Willy Tarreau272adea2014-03-31 10:39:59 +02002885
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002886 if (err_code & ERR_FATAL)
2887 goto out;
2888 }
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002889
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002890 if (!(parse_flags & SRV_PARSE_DEFAULT_SERVER)) {
Amaury Denoyelle76e10e72021-03-08 17:08:01 +01002891 err_code |= _srv_parse_finalize(args, cur_arg, newsrv, curproxy, parse_flags, &errmsg);
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002892 if (err_code) {
2893 display_parser_err(file, linenum, args, cur_arg, err_code, &errmsg);
2894 free(errmsg);
Amaury Denoyelle9394a942021-03-08 11:20:52 +01002895 }
2896
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002897 if (err_code & ERR_FATAL)
2898 goto out;
Willy Tarreau272adea2014-03-31 10:39:59 +02002899 }
Amaury Denoyellecf58dd72021-03-08 16:35:54 +01002900
Amaury Denoyelle30c05372021-03-08 16:36:46 +01002901 if (parse_flags & SRV_PARSE_TEMPLATE)
2902 _srv_parse_tmpl_init(newsrv, curproxy);
2903
Amaury Denoyellef88af882021-06-08 17:00:20 +02002904 /* If the server id is fixed, insert it in the proxy used_id tree.
2905 * This is needed to detect a later duplicate id via srv_parse_id.
2906 *
2907 * If no is specified, a dynamic one is generated in
2908 * check_config_validity.
2909 */
2910 if (newsrv->flags & SRV_F_FORCED_ID)
2911 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
2912
Amaury Denoyelle24abb0c2021-05-07 15:13:51 +02002913 HA_DIAG_WARNING_COND((curproxy->cap & PR_CAP_LB) && !newsrv->uweight,
Amaury Denoyelleda0e7f62021-03-30 10:26:27 +02002914 "parsing [%s:%d] : 'server %s' : configured with weight of 0 will never be selected by load balancing algorithms\n",
2915 file, linenum, newsrv->id);
2916
Willy Tarreau272adea2014-03-31 10:39:59 +02002917 return 0;
2918
2919 out:
Willy Tarreau272adea2014-03-31 10:39:59 +02002920 return err_code;
2921}
2922
Baptiste Assmann19a106d2015-07-08 22:03:56 +02002923/* Returns a pointer to the first server matching either id <id>.
2924 * NULL is returned if no match is found.
2925 * the lookup is performed in the backend <bk>
2926 */
2927struct server *server_find_by_id(struct proxy *bk, int id)
2928{
2929 struct eb32_node *eb32;
2930 struct server *curserver;
2931
2932 if (!bk || (id ==0))
2933 return NULL;
2934
2935 /* <bk> has no backend capabilities, so it can't have a server */
2936 if (!(bk->cap & PR_CAP_BE))
2937 return NULL;
2938
2939 curserver = NULL;
2940
2941 eb32 = eb32_lookup(&bk->conf.used_server_id, id);
2942 if (eb32)
2943 curserver = container_of(eb32, struct server, conf.id);
2944
2945 return curserver;
2946}
2947
2948/* Returns a pointer to the first server matching either name <name>, or id
2949 * if <name> starts with a '#'. NULL is returned if no match is found.
2950 * the lookup is performed in the backend <bk>
2951 */
2952struct server *server_find_by_name(struct proxy *bk, const char *name)
2953{
2954 struct server *curserver;
2955
2956 if (!bk || !name)
2957 return NULL;
2958
2959 /* <bk> has no backend capabilities, so it can't have a server */
2960 if (!(bk->cap & PR_CAP_BE))
2961 return NULL;
2962
2963 curserver = NULL;
2964 if (*name == '#') {
2965 curserver = server_find_by_id(bk, atoi(name + 1));
2966 if (curserver)
2967 return curserver;
2968 }
2969 else {
2970 curserver = bk->srv;
2971
2972 while (curserver && (strcmp(curserver->id, name) != 0))
2973 curserver = curserver->next;
2974
2975 if (curserver)
2976 return curserver;
2977 }
2978
2979 return NULL;
2980}
2981
2982struct server *server_find_best_match(struct proxy *bk, char *name, int id, int *diff)
2983{
2984 struct server *byname;
2985 struct server *byid;
2986
2987 if (!name && !id)
2988 return NULL;
2989
2990 if (diff)
2991 *diff = 0;
2992
2993 byname = byid = NULL;
2994
2995 if (name) {
2996 byname = server_find_by_name(bk, name);
2997 if (byname && (!id || byname->puid == id))
2998 return byname;
2999 }
3000
3001 /* remaining possibilities :
3002 * - name not set
3003 * - name set but not found
3004 * - name found but ID doesn't match
3005 */
3006 if (id) {
3007 byid = server_find_by_id(bk, id);
3008 if (byid) {
3009 if (byname) {
3010 /* use id only if forced by configuration */
3011 if (byid->flags & SRV_F_FORCED_ID) {
3012 if (diff)
3013 *diff |= 2;
3014 return byid;
3015 }
3016 else {
3017 if (diff)
3018 *diff |= 1;
3019 return byname;
3020 }
3021 }
3022
3023 /* remaining possibilities:
3024 * - name not set
3025 * - name set but not found
3026 */
3027 if (name && diff)
3028 *diff |= 2;
3029 return byid;
3030 }
3031
3032 /* id bot found */
3033 if (byname) {
3034 if (diff)
3035 *diff |= 1;
3036 return byname;
3037 }
3038 }
3039
3040 return NULL;
3041}
3042
Simon Horman7d09b9a2013-02-12 10:45:51 +09003043/*
Baptiste Assmann14e40142015-04-14 01:13:07 +02003044 * update a server's current IP address.
3045 * ip is a pointer to the new IP address, whose address family is ip_sin_family.
3046 * ip is in network format.
3047 * updater is a string which contains an information about the requester of the update.
3048 * updater is used if not NULL.
3049 *
3050 * A log line and a stderr warning message is generated based on server's backend options.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003051 *
3052 * Must be called with the server lock held.
Baptiste Assmann14e40142015-04-14 01:13:07 +02003053 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003054int srv_update_addr(struct server *s, void *ip, int ip_sin_family, const char *updater)
Baptiste Assmann14e40142015-04-14 01:13:07 +02003055{
Christopher Fauletd6c6b5f2020-09-08 10:27:24 +02003056 /* save the new IP family & address if necessary */
3057 switch (ip_sin_family) {
3058 case AF_INET:
3059 if (s->addr.ss_family == ip_sin_family &&
3060 !memcmp(ip, &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, 4))
3061 return 0;
3062 break;
3063 case AF_INET6:
3064 if (s->addr.ss_family == ip_sin_family &&
3065 !memcmp(ip, &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, 16))
3066 return 0;
3067 break;
3068 };
3069
Baptiste Assmann14e40142015-04-14 01:13:07 +02003070 /* generates a log line and a warning on stderr */
3071 if (1) {
3072 /* book enough space for both IPv4 and IPv6 */
3073 char oldip[INET6_ADDRSTRLEN];
3074 char newip[INET6_ADDRSTRLEN];
3075
3076 memset(oldip, '\0', INET6_ADDRSTRLEN);
3077 memset(newip, '\0', INET6_ADDRSTRLEN);
3078
3079 /* copy old IP address in a string */
3080 switch (s->addr.ss_family) {
3081 case AF_INET:
3082 inet_ntop(s->addr.ss_family, &((struct sockaddr_in *)&s->addr)->sin_addr, oldip, INET_ADDRSTRLEN);
3083 break;
3084 case AF_INET6:
3085 inet_ntop(s->addr.ss_family, &((struct sockaddr_in6 *)&s->addr)->sin6_addr, oldip, INET6_ADDRSTRLEN);
3086 break;
Christopher Fauletb0b76072020-09-08 10:38:40 +02003087 default:
3088 strcpy(oldip, "(none)");
3089 break;
Baptiste Assmann14e40142015-04-14 01:13:07 +02003090 };
3091
3092 /* copy new IP address in a string */
3093 switch (ip_sin_family) {
3094 case AF_INET:
3095 inet_ntop(ip_sin_family, ip, newip, INET_ADDRSTRLEN);
3096 break;
3097 case AF_INET6:
3098 inet_ntop(ip_sin_family, ip, newip, INET6_ADDRSTRLEN);
3099 break;
3100 };
3101
3102 /* save log line into a buffer */
3103 chunk_printf(&trash, "%s/%s changed its IP from %s to %s by %s",
3104 s->proxy->id, s->id, oldip, newip, updater);
3105
3106 /* write the buffer on stderr */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003107 ha_warning("%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003108
3109 /* send a log */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003110 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003111 }
3112
3113 /* save the new IP family */
3114 s->addr.ss_family = ip_sin_family;
3115 /* save the new IP address */
3116 switch (ip_sin_family) {
3117 case AF_INET:
Willy Tarreaueec1d382016-07-13 11:59:39 +02003118 memcpy(&((struct sockaddr_in *)&s->addr)->sin_addr.s_addr, ip, 4);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003119 break;
3120 case AF_INET6:
3121 memcpy(((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr, ip, 16);
3122 break;
3123 };
Olivier Houchard4e694042017-03-14 20:01:29 +01003124 srv_set_dyncookie(s);
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +02003125 srv_set_addr_desc(s, 1);
Baptiste Assmann14e40142015-04-14 01:13:07 +02003126
3127 return 0;
3128}
3129
William Dauchy7cabc062021-02-11 22:51:24 +01003130/* update agent health check address and port
3131 * addr can be ip4/ip6 or a hostname
3132 * if one error occurs, don't apply anything
3133 * must be called with the server lock held.
3134 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003135const char *srv_update_agent_addr_port(struct server *s, const char *addr, const char *port)
William Dauchy7cabc062021-02-11 22:51:24 +01003136{
3137 struct sockaddr_storage sk;
3138 struct buffer *msg;
3139 int new_port;
3140
3141 msg = get_trash_chunk();
3142 chunk_reset(msg);
3143
3144 if (!(s->agent.state & CHK_ST_ENABLED)) {
3145 chunk_strcat(msg, "agent checks are not enabled on this server");
3146 goto out;
3147 }
3148 if (addr) {
3149 memset(&sk, 0, sizeof(struct sockaddr_storage));
3150 if (str2ip(addr, &sk) == NULL) {
3151 chunk_appendf(msg, "invalid addr '%s'", addr);
3152 goto out;
3153 }
3154 }
3155 if (port) {
3156 if (strl2irc(port, strlen(port), &new_port) != 0) {
3157 chunk_appendf(msg, "provided port is not an integer");
3158 goto out;
3159 }
3160 if (new_port < 0 || new_port > 65535) {
3161 chunk_appendf(msg, "provided port is invalid");
3162 goto out;
3163 }
3164 }
3165out:
3166 if (msg->data)
3167 return msg->area;
3168 else {
3169 if (addr)
3170 set_srv_agent_addr(s, &sk);
3171 if (port)
3172 set_srv_agent_port(s, new_port);
3173 }
3174 return NULL;
3175}
3176
William Dauchyb456e1f2021-02-11 22:51:23 +01003177/* update server health check address and port
3178 * addr must be ip4 or ip6, it won't be resolved
3179 * if one error occurs, don't apply anything
3180 * must be called with the server lock held.
3181 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003182const char *srv_update_check_addr_port(struct server *s, const char *addr, const char *port)
William Dauchyb456e1f2021-02-11 22:51:23 +01003183{
3184 struct sockaddr_storage sk;
3185 struct buffer *msg;
3186 int new_port;
3187
3188 msg = get_trash_chunk();
3189 chunk_reset(msg);
3190
3191 if (!(s->check.state & CHK_ST_ENABLED)) {
3192 chunk_strcat(msg, "health checks are not enabled on this server");
3193 goto out;
3194 }
3195 if (addr) {
3196 memset(&sk, 0, sizeof(struct sockaddr_storage));
3197 if (str2ip2(addr, &sk, 0) == NULL) {
3198 chunk_appendf(msg, "invalid addr '%s'", addr);
3199 goto out;
3200 }
3201 }
3202 if (port) {
3203 if (strl2irc(port, strlen(port), &new_port) != 0) {
3204 chunk_appendf(msg, "provided port is not an integer");
3205 goto out;
3206 }
3207 if (new_port < 0 || new_port > 65535) {
3208 chunk_appendf(msg, "provided port is invalid");
3209 goto out;
3210 }
3211 /* prevent the update of port to 0 if MAPPORTS are in use */
3212 if ((s->flags & SRV_F_MAPPORTS) && new_port == 0) {
3213 chunk_appendf(msg, "can't unset 'port' since MAPPORTS is in use");
3214 goto out;
3215 }
3216 }
3217out:
3218 if (msg->data)
3219 return msg->area;
3220 else {
3221 if (addr)
3222 s->check.addr = sk;
3223 if (port)
3224 s->check.port = new_port;
3225 }
3226 return NULL;
3227}
3228
Baptiste Assmann14e40142015-04-14 01:13:07 +02003229/*
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003230 * This function update a server's addr and port only for AF_INET and AF_INET6 families.
3231 *
3232 * Caller can pass its name through <updater> to get it integrated in the response message
3233 * returned by the function.
3234 *
3235 * The function first does the following, in that order:
3236 * - validates the new addr and/or port
3237 * - checks if an update is required (new IP or port is different than current ones)
3238 * - checks the update is allowed:
3239 * - don't switch from/to a family other than AF_INET4 and AF_INET6
3240 * - allow all changes if no CHECKS are configured
3241 * - if CHECK is configured:
3242 * - if switch to port map (SRV_F_MAPPORTS), ensure health check have their own ports
3243 * - applies required changes to both ADDR and PORT if both 'required' and 'allowed'
3244 * conditions are met
Willy Tarreau46b7f532018-08-21 11:54:26 +02003245 *
3246 * Must be called with the server lock held.
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003247 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003248const char *srv_update_addr_port(struct server *s, const char *addr, const char *port, char *updater)
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003249{
3250 struct sockaddr_storage sa;
3251 int ret, port_change_required;
3252 char current_addr[INET6_ADDRSTRLEN];
David Carlier327298c2016-11-20 10:42:38 +00003253 uint16_t current_port, new_port;
Willy Tarreau83061a82018-07-13 11:56:34 +02003254 struct buffer *msg;
Olivier Houchard4e694042017-03-14 20:01:29 +01003255 int changed = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003256
3257 msg = get_trash_chunk();
3258 chunk_reset(msg);
3259
3260 if (addr) {
3261 memset(&sa, 0, sizeof(struct sockaddr_storage));
3262 if (str2ip2(addr, &sa, 0) == NULL) {
3263 chunk_printf(msg, "Invalid addr '%s'", addr);
3264 goto out;
3265 }
3266
3267 /* changes are allowed on AF_INET* families only */
3268 if ((sa.ss_family != AF_INET) && (sa.ss_family != AF_INET6)) {
3269 chunk_printf(msg, "Update to families other than AF_INET and AF_INET6 supported only through configuration file");
3270 goto out;
3271 }
3272
3273 /* collecting data currently setup */
3274 memset(current_addr, '\0', sizeof(current_addr));
3275 ret = addr_to_str(&s->addr, current_addr, sizeof(current_addr));
3276 /* changes are allowed on AF_INET* families only */
3277 if ((ret != AF_INET) && (ret != AF_INET6)) {
3278 chunk_printf(msg, "Update for the current server address family is only supported through configuration file");
3279 goto out;
3280 }
3281
3282 /* applying ADDR changes if required and allowed
3283 * ipcmp returns 0 when both ADDR are the same
3284 */
3285 if (ipcmp(&s->addr, &sa) == 0) {
3286 chunk_appendf(msg, "no need to change the addr");
3287 goto port;
3288 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003289 ipcpy(&sa, &s->addr);
Olivier Houchard4e694042017-03-14 20:01:29 +01003290 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003291
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003292 /* update report for caller */
3293 chunk_printf(msg, "IP changed from '%s' to '%s'", current_addr, addr);
3294 }
3295
3296 port:
3297 if (port) {
3298 char sign = '\0';
3299 char *endptr;
3300
3301 if (addr)
3302 chunk_appendf(msg, ", ");
3303
3304 /* collecting data currently setup */
Willy Tarreau04276f32017-01-06 17:41:29 +01003305 current_port = s->svc_port;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003306
3307 /* check if PORT change is required */
3308 port_change_required = 0;
3309
3310 sign = *port;
Ryabin Sergey77ee7522017-01-11 19:39:55 +04003311 errno = 0;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003312 new_port = strtol(port, &endptr, 10);
3313 if ((errno != 0) || (port == endptr)) {
3314 chunk_appendf(msg, "problem converting port '%s' to an int", port);
3315 goto out;
3316 }
3317
3318 /* check if caller triggers a port mapped or offset */
3319 if (sign == '-' || (sign == '+')) {
3320 /* check if server currently uses port map */
3321 if (!(s->flags & SRV_F_MAPPORTS)) {
3322 /* switch from fixed port to port map mandatorily triggers
3323 * a port change */
3324 port_change_required = 1;
3325 /* check is configured
3326 * we're switching from a fixed port to a SRV_F_MAPPORTS (mapped) port
3327 * prevent PORT change if check doesn't have it's dedicated port while switching
3328 * to port mapping */
William Dauchy69f118d2021-02-03 22:30:07 +01003329 if (!s->check.port) {
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003330 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.");
3331 goto out;
3332 }
3333 }
3334 /* we're already using port maps */
3335 else {
3336 port_change_required = current_port != new_port;
3337 }
3338 }
3339 /* fixed port */
3340 else {
3341 port_change_required = current_port != new_port;
3342 }
3343
3344 /* applying PORT changes if required and update response message */
3345 if (port_change_required) {
3346 /* apply new port */
Willy Tarreau04276f32017-01-06 17:41:29 +01003347 s->svc_port = new_port;
Olivier Houchard4e694042017-03-14 20:01:29 +01003348 changed = 1;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003349
3350 /* prepare message */
3351 chunk_appendf(msg, "port changed from '");
3352 if (s->flags & SRV_F_MAPPORTS)
3353 chunk_appendf(msg, "+");
3354 chunk_appendf(msg, "%d' to '", current_port);
3355
3356 if (sign == '-') {
3357 s->flags |= SRV_F_MAPPORTS;
3358 chunk_appendf(msg, "%c", sign);
3359 /* just use for result output */
3360 new_port = -new_port;
3361 }
3362 else if (sign == '+') {
3363 s->flags |= SRV_F_MAPPORTS;
3364 chunk_appendf(msg, "%c", sign);
3365 }
3366 else {
3367 s->flags &= ~SRV_F_MAPPORTS;
3368 }
3369
3370 chunk_appendf(msg, "%d'", new_port);
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003371 }
3372 else {
3373 chunk_appendf(msg, "no need to change the port");
3374 }
3375 }
3376
3377out:
William Dauchy6318d332020-05-02 21:52:36 +02003378 if (changed) {
3379 /* force connection cleanup on the given server */
3380 srv_cleanup_connections(s);
Olivier Houchard4e694042017-03-14 20:01:29 +01003381 srv_set_dyncookie(s);
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +02003382 srv_set_addr_desc(s, 1);
William Dauchy6318d332020-05-02 21:52:36 +02003383 }
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003384 if (updater)
3385 chunk_appendf(msg, " by '%s'", updater);
3386 chunk_appendf(msg, "\n");
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003387 return msg->area;
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003388}
3389
Christopher Faulet5efdef22021-03-11 18:03:21 +01003390/*
3391 * update server status based on result of SRV resolution
3392 * returns:
3393 * 0 if server status is updated
3394 * 1 if server status has not changed
3395 *
3396 * Must be called with the server lock held.
3397 */
3398int srvrq_update_srv_status(struct server *s, int has_no_ip)
3399{
3400 if (!s->srvrq)
3401 return 1;
3402
3403 /* since this server has an IP, it can go back in production */
3404 if (has_no_ip == 0) {
3405 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3406 return 1;
3407 }
3408
3409 if (s->next_admin & SRV_ADMF_RMAINT)
3410 return 1;
3411
3412 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "entry removed from SRV record");
3413 return 0;
3414}
Baptiste Assmannd458adc2016-08-02 08:18:55 +02003415
3416/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003417 * update server status based on result of name resolution
3418 * returns:
3419 * 0 if server status is updated
3420 * 1 if server status has not changed
Willy Tarreau46b7f532018-08-21 11:54:26 +02003421 *
3422 * Must be called with the server lock held.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003423 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003424int snr_update_srv_status(struct server *s, int has_no_ip)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003425{
Emeric Brun750fe792020-12-23 16:51:12 +01003426 struct resolvers *resolvers = s->resolvers;
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003427 struct resolv_resolution *resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003428 int exp;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003429
Jerome Magnin012261a2020-07-28 13:38:22 +02003430 /* If resolution is NULL we're dealing with SRV records Additional records */
Christopher Faulet5efdef22021-03-11 18:03:21 +01003431 if (resolution == NULL)
3432 return srvrq_update_srv_status(s, has_no_ip);
Jerome Magnin012261a2020-07-28 13:38:22 +02003433
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003434 switch (resolution->status) {
3435 case RSLV_STATUS_NONE:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003436 /* status when HAProxy has just (re)started.
3437 * Nothing to do, since the task is already automatically started */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003438 break;
3439
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003440 case RSLV_STATUS_VALID:
3441 /*
3442 * resume health checks
3443 * server will be turned back on if health check is safe
3444 */
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003445 if (has_no_ip) {
Emeric Brun52a91d32017-08-31 14:41:55 +02003446 if (s->next_admin & SRV_ADMF_RMAINT)
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003447 return 1;
3448 srv_set_admin_flag(s, SRV_ADMF_RMAINT,
3449 "No IP for server ");
Christopher Faulet67957bd2017-09-27 11:00:59 +02003450 return 0;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003451 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02003452
Emeric Brun52a91d32017-08-31 14:41:55 +02003453 if (!(s->next_admin & SRV_ADMF_RMAINT))
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003454 return 1;
3455 srv_clr_admin_flag(s, SRV_ADMF_RMAINT);
3456 chunk_printf(&trash, "Server %s/%s administratively READY thanks to valid DNS answer",
3457 s->proxy->id, s->id);
3458
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003459 ha_warning("%s.\n", trash.area);
3460 send_log(s->proxy, LOG_NOTICE, "%s.\n", trash.area);
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003461 return 0;
3462
3463 case RSLV_STATUS_NX:
3464 /* stop server if resolution is NX for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003465 exp = tick_add(resolution->last_valid, resolvers->hold.nx);
3466 if (!tick_is_expired(exp, now_ms))
3467 break;
3468
3469 if (s->next_admin & SRV_ADMF_RMAINT)
3470 return 1;
3471 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS NX status");
3472 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003473
3474 case RSLV_STATUS_TIMEOUT:
3475 /* stop server if resolution is TIMEOUT for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003476 exp = tick_add(resolution->last_valid, resolvers->hold.timeout);
3477 if (!tick_is_expired(exp, now_ms))
3478 break;
3479
3480 if (s->next_admin & SRV_ADMF_RMAINT)
3481 return 1;
3482 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS timeout status");
3483 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003484
3485 case RSLV_STATUS_REFUSED:
3486 /* stop server if resolution is REFUSED for a long enough period */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003487 exp = tick_add(resolution->last_valid, resolvers->hold.refused);
3488 if (!tick_is_expired(exp, now_ms))
3489 break;
3490
3491 if (s->next_admin & SRV_ADMF_RMAINT)
3492 return 1;
3493 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "DNS refused status");
3494 return 0;
Baptiste Assmann3b9fe9f2016-11-02 22:58:18 +01003495
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003496 default:
Christopher Faulet67957bd2017-09-27 11:00:59 +02003497 /* stop server if resolution failed for a long enough period */
3498 exp = tick_add(resolution->last_valid, resolvers->hold.other);
3499 if (!tick_is_expired(exp, now_ms))
3500 break;
3501
3502 if (s->next_admin & SRV_ADMF_RMAINT)
3503 return 1;
3504 srv_set_admin_flag(s, SRV_ADMF_RMAINT, "unspecified DNS error");
3505 return 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003506 }
3507
3508 return 1;
3509}
3510
3511/*
3512 * Server Name Resolution valid response callback
3513 * It expects:
3514 * - <nameserver>: the name server which answered the valid response
3515 * - <response>: buffer containing a valid DNS response
3516 * - <response_len>: size of <response>
3517 * It performs the following actions:
3518 * - ignore response if current ip found and server family not met
3519 * - update with first new ip found if family is met and current IP is not found
3520 * returns:
3521 * 0 on error
3522 * 1 when no error or safe ignore
Olivier Houchard28381072017-11-06 17:30:28 +01003523 *
3524 * Must be called with server lock held
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003525 */
Emeric Brun08622d32020-12-23 17:41:43 +01003526int snr_resolution_cb(struct resolv_requester *requester, struct dns_counters *counters)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003527{
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003528 struct server *s = NULL;
Emeric Brun08622d32020-12-23 17:41:43 +01003529 struct resolv_resolution *resolution = NULL;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003530 void *serverip, *firstip;
3531 short server_sin_family, firstip_sin_family;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003532 int ret;
Willy Tarreau83061a82018-07-13 11:56:34 +02003533 struct buffer *chk = get_trash_chunk();
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003534 int has_no_ip = 0;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003535
Christopher Faulet67957bd2017-09-27 11:00:59 +02003536 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003537 if (!s)
3538 return 1;
3539
Christopher Faulet49531e82021-03-10 15:07:27 +01003540 if (s->srvrq) {
Emeric Brun0c4a8a32021-06-11 10:48:45 +02003541 /* If DNS resolution is disabled ignore it.
3542 * This is the case if the server was associated to
3543 * a SRV record and this record is now expired.
Christopher Faulet49531e82021-03-10 15:07:27 +01003544 */
Emeric Brun0c4a8a32021-06-11 10:48:45 +02003545 if (s->flags & SRV_F_NO_RESOLUTION)
Christopher Faulet49531e82021-03-10 15:07:27 +01003546 return 1;
3547 }
3548
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003549 resolution = (s->resolv_requester ? s->resolv_requester->resolution : NULL);
Christopher Faulet49531e82021-03-10 15:07:27 +01003550 if (!resolution)
3551 return 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003552
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003553 /* initializing variables */
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003554 firstip = NULL; /* pointer to the first valid response found */
3555 /* it will be used as the new IP if a change is required */
3556 firstip_sin_family = AF_UNSPEC;
3557 serverip = NULL; /* current server IP address */
3558
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003559 /* initializing server IP pointer */
3560 server_sin_family = s->addr.ss_family;
3561 switch (server_sin_family) {
3562 case AF_INET:
3563 serverip = &((struct sockaddr_in *)&s->addr)->sin_addr.s_addr;
3564 break;
3565
3566 case AF_INET6:
3567 serverip = &((struct sockaddr_in6 *)&s->addr)->sin6_addr.s6_addr;
3568 break;
3569
Willy Tarreau3acfcd12017-01-06 19:18:32 +01003570 case AF_UNSPEC:
3571 break;
3572
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003573 default:
3574 goto invalid;
3575 }
3576
Emeric Brund30e9a12020-12-23 18:49:16 +01003577 ret = resolv_get_ip_from_response(&resolution->response, &s->resolv_opts,
3578 serverip, server_sin_family, &firstip,
3579 &firstip_sin_family, s);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003580
3581 switch (ret) {
Emeric Brun456de772020-12-23 18:17:31 +01003582 case RSLV_UPD_NO:
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003583 goto update_status;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003584
Emeric Brun456de772020-12-23 18:17:31 +01003585 case RSLV_UPD_SRVIP_NOT_FOUND:
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003586 goto save_ip;
3587
Emeric Brun456de772020-12-23 18:17:31 +01003588 case RSLV_UPD_NO_IP_FOUND:
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003589 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003590 goto update_status;
Baptiste Assmann0453a1d2015-09-09 00:51:08 +02003591
Emeric Brun456de772020-12-23 18:17:31 +01003592 case RSLV_UPD_NAME_ERROR:
Baptiste Assmannfad03182015-10-28 02:03:32 +01003593 /* update resolution status to OTHER error type */
Christopher Faulet67957bd2017-09-27 11:00:59 +02003594 resolution->status = RSLV_STATUS_OTHER;
Christopher Fauletb142fb42021-06-24 15:33:52 +02003595 has_no_ip = 1;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003596 goto update_status;
Baptiste Assmannfad03182015-10-28 02:03:32 +01003597
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003598 default:
Christopher Fauletb142fb42021-06-24 15:33:52 +02003599 has_no_ip = 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003600 goto invalid;
3601
3602 }
3603
3604 save_ip:
Emeric Brun50c870e2021-01-04 10:40:46 +01003605 if (counters) {
3606 counters->update++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003607 /* save the first ip we found */
Emeric Brun50c870e2021-01-04 10:40:46 +01003608 chunk_printf(chk, "%s/%s", counters->pid, counters->id);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003609 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003610 else
3611 chunk_printf(chk, "DNS cache");
Christopher Faulet69beaa92021-02-16 12:07:47 +01003612 srv_update_addr(s, firstip, firstip_sin_family, (char *) chk->area);
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003613
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003614 update_status:
Christopher Faulet7c129bb2021-06-24 15:26:03 +02003615 if (!snr_update_srv_status(s, has_no_ip) && has_no_ip)
3616 memset(&s->addr, 0, sizeof(s->addr));
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003617 return 1;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003618
3619 invalid:
Emeric Brun50c870e2021-01-04 10:40:46 +01003620 if (counters) {
3621 counters->invalid++;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003622 goto update_status;
Christopher Faulet3bbd65b2017-09-15 11:55:45 +02003623 }
Christopher Fauletb142fb42021-06-24 15:33:52 +02003624 if (!snr_update_srv_status(s, has_no_ip) && has_no_ip)
3625 memset(&s->addr, 0, sizeof(s->addr));
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003626 return 0;
3627}
3628
3629/*
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003630 * SRV record error management callback
3631 * returns:
Emeric Brun43839d02021-06-10 15:25:25 +02003632 * 0 if we can trash answser items.
3633 * 1 when safely ignored and we must kept answer items
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003634 *
3635 * Grabs the server's lock.
3636 */
3637int srvrq_resolution_error_cb(struct resolv_requester *requester, int error_code)
3638{
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003639 struct resolv_srvrq *srvrq;
3640 struct resolv_resolution *res;
3641 struct resolvers *resolvers;
3642 int exp;
3643
3644 /* SRV records */
3645 srvrq = objt_resolv_srvrq(requester->owner);
3646 if (!srvrq)
Emeric Brun43839d02021-06-10 15:25:25 +02003647 return 0;
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003648
3649 resolvers = srvrq->resolvers;
3650 res = requester->resolution;
3651
3652 switch (res->status) {
3653
3654 case RSLV_STATUS_NX:
3655 /* stop server if resolution is NX for a long enough period */
3656 exp = tick_add(res->last_valid, resolvers->hold.nx);
3657 if (!tick_is_expired(exp, now_ms))
3658 return 1;
3659 break;
3660
3661 case RSLV_STATUS_TIMEOUT:
3662 /* stop server if resolution is TIMEOUT for a long enough period */
3663 exp = tick_add(res->last_valid, resolvers->hold.timeout);
3664 if (!tick_is_expired(exp, now_ms))
3665 return 1;
3666 break;
3667
3668 case RSLV_STATUS_REFUSED:
3669 /* stop server if resolution is REFUSED for a long enough period */
3670 exp = tick_add(res->last_valid, resolvers->hold.refused);
3671 if (!tick_is_expired(exp, now_ms))
3672 return 1;
3673 break;
3674
3675 default:
3676 /* stop server if resolution failed for a long enough period */
3677 exp = tick_add(res->last_valid, resolvers->hold.other);
3678 if (!tick_is_expired(exp, now_ms))
3679 return 1;
3680 }
3681
Emeric Brun0c4a8a32021-06-11 10:48:45 +02003682 /* Remove any associated server ref */
Willy Tarreau33360872021-10-20 14:07:31 +02003683 resolv_detach_from_resolution_answer_items(res, requester);
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003684
Emeric Brun43839d02021-06-10 15:25:25 +02003685 return 0;
Baptiste Assmannb4badf72020-11-19 22:38:33 +01003686}
3687
3688/*
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003689 * Server Name Resolution error management callback
3690 * returns:
Emeric Brun43839d02021-06-10 15:25:25 +02003691 * 0 if we can trash answser items.
3692 * 1 when safely ignored and we must kept answer items
Willy Tarreau46b7f532018-08-21 11:54:26 +02003693 *
3694 * Grabs the server's lock.
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003695 */
Emeric Brun08622d32020-12-23 17:41:43 +01003696int snr_resolution_error_cb(struct resolv_requester *requester, int error_code)
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003697{
Christopher Faulet67957bd2017-09-27 11:00:59 +02003698 struct server *s;
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003699
Christopher Faulet67957bd2017-09-27 11:00:59 +02003700 s = objt_server(requester->owner);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003701 if (!s)
Emeric Brun43839d02021-06-10 15:25:25 +02003702 return 0;
3703
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003704 HA_SPIN_LOCK(SERVER_LOCK, &s->lock);
Emeric Brun43839d02021-06-10 15:25:25 +02003705 if (!snr_update_srv_status(s, 1)) {
Christopher Faulet5130c212021-03-10 20:31:40 +01003706 memset(&s->addr, 0, sizeof(s->addr));
Emeric Brun43839d02021-06-10 15:25:25 +02003707 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Willy Tarreau33360872021-10-20 14:07:31 +02003708 resolv_detach_from_resolution_answer_items(requester->resolution, requester);
Emeric Brun43839d02021-06-10 15:25:25 +02003709 return 0;
3710 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003711 HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock);
Emeric Brun43839d02021-06-10 15:25:25 +02003712
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003713 return 1;
3714}
3715
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003716/*
3717 * Function to check if <ip> is already affected to a server in the backend
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003718 * which owns <srv> and is up.
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003719 * It returns a pointer to the first server found or NULL if <ip> is not yet
3720 * assigned.
Olivier Houchard28381072017-11-06 17:30:28 +01003721 *
3722 * Must be called with server lock held
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003723 */
3724struct server *snr_check_ip_callback(struct server *srv, void *ip, unsigned char *ip_family)
3725{
3726 struct server *tmpsrv;
3727 struct proxy *be;
3728
3729 if (!srv)
3730 return NULL;
3731
3732 be = srv->proxy;
3733 for (tmpsrv = be->srv; tmpsrv; tmpsrv = tmpsrv->next) {
Emeric Brune9fd6b52017-11-02 17:20:39 +01003734 /* we found the current server is the same, ignore it */
3735 if (srv == tmpsrv)
3736 continue;
3737
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003738 /* We want to compare the IP in the record with the IP of the servers in the
3739 * same backend, only if:
3740 * * DNS resolution is enabled on the server
3741 * * the hostname used for the resolution by our server is the same than the
3742 * one used for the server found in the backend
3743 * * the server found in the backend is not our current server
3744 */
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003745 HA_SPIN_LOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003746 if ((tmpsrv->hostname_dn == NULL) ||
3747 (srv->hostname_dn_len != tmpsrv->hostname_dn_len) ||
Christopher Faulet59b29252021-03-16 11:21:04 +01003748 (strcasecmp(srv->hostname_dn, tmpsrv->hostname_dn) != 0) ||
Emeric Brune9fd6b52017-11-02 17:20:39 +01003749 (srv->puid == tmpsrv->puid)) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003750 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003751 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003752 }
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003753
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003754 /* If the server has been taken down, don't consider it */
Emeric Brune9fd6b52017-11-02 17:20:39 +01003755 if (tmpsrv->next_admin & SRV_ADMF_RMAINT) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003756 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003757 continue;
Emeric Brune9fd6b52017-11-02 17:20:39 +01003758 }
Olivier Houcharda8c6db82017-07-06 18:46:47 +02003759
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003760 /* At this point, we have 2 different servers using the same DNS hostname
3761 * for their respective resolution.
3762 */
3763 if (*ip_family == tmpsrv->addr.ss_family &&
3764 ((tmpsrv->addr.ss_family == AF_INET &&
3765 memcmp(ip, &((struct sockaddr_in *)&tmpsrv->addr)->sin_addr, 4) == 0) ||
3766 (tmpsrv->addr.ss_family == AF_INET6 &&
3767 memcmp(ip, &((struct sockaddr_in6 *)&tmpsrv->addr)->sin6_addr, 16) == 0))) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003768 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003769 return tmpsrv;
3770 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003771 HA_SPIN_UNLOCK(SERVER_LOCK, &tmpsrv->lock);
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003772 }
3773
Emeric Brune9fd6b52017-11-02 17:20:39 +01003774
Baptiste Assmannfb7091e2017-05-03 15:43:12 +02003775 return NULL;
3776}
3777
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003778/* Sets the server's address (srv->addr) from srv->hostname using the libc's
3779 * resolver. This is suited for initial address configuration. Returns 0 on
3780 * success otherwise a non-zero error code. In case of error, *err_code, if
3781 * not NULL, is filled up.
3782 */
3783int srv_set_addr_via_libc(struct server *srv, int *err_code)
3784{
3785 if (str2ip2(srv->hostname, &srv->addr, 1) == NULL) {
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003786 if (err_code)
Willy Tarreau465b6e52016-11-07 19:19:22 +01003787 *err_code |= ERR_WARN;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003788 return 1;
3789 }
3790 return 0;
3791}
3792
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003793/* Set the server's FDQN (->hostname) from <hostname>.
3794 * Returns -1 if failed, 0 if not.
Willy Tarreau46b7f532018-08-21 11:54:26 +02003795 *
3796 * Must be called with the server lock held.
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003797 */
Emeric Brun08622d32020-12-23 17:41:43 +01003798int srv_set_fqdn(struct server *srv, const char *hostname, int resolv_locked)
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003799{
Emeric Brun08622d32020-12-23 17:41:43 +01003800 struct resolv_resolution *resolution;
Christopher Faulet67957bd2017-09-27 11:00:59 +02003801 char *hostname_dn;
3802 int hostname_len, hostname_dn_len;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003803
Frédéric Lécaille5afb3cf2018-08-21 15:04:23 +02003804 /* Note that the server lock is already held. */
3805 if (!srv->resolvers)
3806 return -1;
3807
Emeric Brun08622d32020-12-23 17:41:43 +01003808 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003809 HA_SPIN_LOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003810 /* run time DNS/SRV resolution was not active for this server
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003811 * and we can't enable it at run time for now.
3812 */
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003813 if (!srv->resolv_requester && !srv->srvrq)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003814 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003815
3816 chunk_reset(&trash);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003817 hostname_len = strlen(hostname);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003818 hostname_dn = trash.area;
Willy Tarreauc1c765f2021-10-14 07:49:49 +02003819 hostname_dn_len = resolv_str_to_dn_label(hostname, hostname_len,
Emeric Brund30e9a12020-12-23 18:49:16 +01003820 hostname_dn, trash.size);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003821 if (hostname_dn_len == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003822 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003823
Christopher Fauletd83a6df2021-03-12 10:23:05 +01003824 resolution = (srv->resolv_requester ? srv->resolv_requester->resolution : NULL);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003825 if (resolution &&
3826 resolution->hostname_dn &&
Christopher Faulet59b29252021-03-16 11:21:04 +01003827 resolution->hostname_dn_len == hostname_dn_len &&
3828 strcasecmp(resolution->hostname_dn, hostname_dn) == 0)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003829 goto end;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003830
Willy Tarreau33360872021-10-20 14:07:31 +02003831 resolv_unlink_resolution(srv->resolv_requester);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003832
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003833 free(srv->hostname);
3834 free(srv->hostname_dn);
Christopher Faulet67957bd2017-09-27 11:00:59 +02003835 srv->hostname = strdup(hostname);
3836 srv->hostname_dn = strdup(hostname_dn);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003837 srv->hostname_dn_len = hostname_dn_len;
3838 if (!srv->hostname || !srv->hostname_dn)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003839 goto err;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003840
Baptiste Assmann13a92322019-06-07 09:40:55 +02003841 if (srv->flags & SRV_F_NO_RESOLUTION)
3842 goto end;
3843
Emeric Brund30e9a12020-12-23 18:49:16 +01003844 if (resolv_link_resolution(srv, OBJ_TYPE_SERVER, 1) == -1)
Christopher Fauletb2812a62017-10-04 16:17:58 +02003845 goto err;
3846
3847 end:
Emeric Brun08622d32020-12-23 17:41:43 +01003848 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003849 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Baptiste Assmann201c07f2017-05-22 15:17:15 +02003850 return 0;
Christopher Fauletb2812a62017-10-04 16:17:58 +02003851
3852 err:
Emeric Brun08622d32020-12-23 17:41:43 +01003853 if (!resolv_locked)
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003854 HA_SPIN_UNLOCK(DNS_LOCK, &srv->resolvers->lock);
Christopher Fauletb2812a62017-10-04 16:17:58 +02003855 return -1;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003856}
3857
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003858/* Sets the server's address (srv->addr) from srv->lastaddr which was filled
3859 * from the state file. This is suited for initial address configuration.
3860 * Returns 0 on success otherwise a non-zero error code. In case of error,
3861 * *err_code, if not NULL, is filled up.
3862 */
3863static int srv_apply_lastaddr(struct server *srv, int *err_code)
3864{
3865 if (!str2ip2(srv->lastaddr, &srv->addr, 0)) {
3866 if (err_code)
3867 *err_code |= ERR_WARN;
3868 return 1;
3869 }
3870 return 0;
3871}
3872
Willy Tarreau25e51522016-11-04 15:10:17 +01003873/* returns 0 if no error, otherwise a combination of ERR_* flags */
3874static int srv_iterate_initaddr(struct server *srv)
3875{
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003876 char *name = srv->hostname;
Willy Tarreau25e51522016-11-04 15:10:17 +01003877 int return_code = 0;
3878 int err_code;
3879 unsigned int methods;
3880
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003881 /* If no addr and no hostname set, get the name from the DNS SRV request */
3882 if (!name && srv->srvrq)
3883 name = srv->srvrq->name;
3884
Willy Tarreau25e51522016-11-04 15:10:17 +01003885 methods = srv->init_addr_methods;
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003886 if (!methods) {
3887 /* otherwise default to "last,libc" */
Willy Tarreau25e51522016-11-04 15:10:17 +01003888 srv_append_initaddr(&methods, SRV_IADDR_LAST);
3889 srv_append_initaddr(&methods, SRV_IADDR_LIBC);
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003890 if (srv->resolvers_id) {
3891 /* dns resolution is configured, add "none" to not fail on startup */
3892 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3893 }
Willy Tarreau25e51522016-11-04 15:10:17 +01003894 }
3895
Willy Tarreau3eed10e2016-11-07 21:03:16 +01003896 /* "-dr" : always append "none" so that server addresses resolution
3897 * failures are silently ignored, this is convenient to validate some
3898 * configs out of their environment.
3899 */
3900 if (global.tune.options & GTUNE_RESOLVE_DONTFAIL)
3901 srv_append_initaddr(&methods, SRV_IADDR_NONE);
3902
Willy Tarreau25e51522016-11-04 15:10:17 +01003903 while (methods) {
3904 err_code = 0;
3905 switch (srv_get_next_initaddr(&methods)) {
3906 case SRV_IADDR_LAST:
3907 if (!srv->lastaddr)
3908 continue;
3909 if (srv_apply_lastaddr(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003910 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003911 return_code |= err_code;
3912 break;
3913
3914 case SRV_IADDR_LIBC:
3915 if (!srv->hostname)
3916 continue;
3917 if (srv_set_addr_via_libc(srv, &err_code) == 0)
Olivier Houchard4e694042017-03-14 20:01:29 +01003918 goto out;
Willy Tarreau25e51522016-11-04 15:10:17 +01003919 return_code |= err_code;
3920 break;
3921
Willy Tarreau37ebe122016-11-04 15:17:58 +01003922 case SRV_IADDR_NONE:
3923 srv_set_admin_flag(srv, SRV_ADMF_RMAINT, NULL);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003924 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003925 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', disabling server.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003926 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003927 }
Willy Tarreau37ebe122016-11-04 15:17:58 +01003928 return return_code;
3929
Willy Tarreau4310d362016-11-02 15:05:56 +01003930 case SRV_IADDR_IP:
3931 ipcpy(&srv->init_addr, &srv->addr);
3932 if (return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003933 ha_warning("parsing [%s:%d] : 'server %s' : could not resolve address '%s', falling back to configured address.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003934 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau4310d362016-11-02 15:05:56 +01003935 }
Olivier Houchard4e694042017-03-14 20:01:29 +01003936 goto out;
Willy Tarreau4310d362016-11-02 15:05:56 +01003937
Willy Tarreau25e51522016-11-04 15:10:17 +01003938 default: /* unhandled method */
3939 break;
3940 }
3941 }
3942
3943 if (!return_code) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003944 ha_alert("parsing [%s:%d] : 'server %s' : no method found to resolve address '%s'\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003945 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau25e51522016-11-04 15:10:17 +01003946 }
Willy Tarreau465b6e52016-11-07 19:19:22 +01003947 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003948 ha_alert("parsing [%s:%d] : 'server %s' : could not resolve address '%s'.\n",
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003949 srv->conf.file, srv->conf.line, srv->id, name);
Willy Tarreau465b6e52016-11-07 19:19:22 +01003950 }
Willy Tarreau25e51522016-11-04 15:10:17 +01003951
3952 return_code |= ERR_ALERT | ERR_FATAL;
3953 return return_code;
Olivier Houchard4e694042017-03-14 20:01:29 +01003954out:
3955 srv_set_dyncookie(srv);
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +02003956 srv_set_addr_desc(srv, 1);
Olivier Houchard4e694042017-03-14 20:01:29 +01003957 return return_code;
Willy Tarreau25e51522016-11-04 15:10:17 +01003958}
3959
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003960/*
3961 * This function parses all backends and all servers within each backend
3962 * and performs servers' addr resolution based on information provided by:
3963 * - configuration file
3964 * - server-state file (states provided by an 'old' haproxy process)
3965 *
3966 * Returns 0 if no error, otherwise, a combination of ERR_ flags.
3967 */
3968int srv_init_addr(void)
3969{
3970 struct proxy *curproxy;
3971 int return_code = 0;
3972
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003973 curproxy = proxies_list;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003974 while (curproxy) {
3975 struct server *srv;
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003976
3977 /* servers are in backend only */
Amaury Denoyellee3c41922021-01-06 14:28:50 +01003978 if (!(curproxy->cap & PR_CAP_BE) || curproxy->disabled)
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003979 goto srv_init_addr_next;
3980
Willy Tarreau25e51522016-11-04 15:10:17 +01003981 for (srv = curproxy->srv; srv; srv = srv->next)
Christopher Fauletac1c60fd2020-10-26 10:31:17 +01003982 if (srv->hostname || srv->srvrq)
Willy Tarreau3d609a72017-09-06 14:22:45 +02003983 return_code |= srv_iterate_initaddr(srv);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01003984
3985 srv_init_addr_next:
3986 curproxy = curproxy->next;
3987 }
3988
3989 return return_code;
3990}
3991
Willy Tarreau46b7f532018-08-21 11:54:26 +02003992/*
3993 * Must be called with the server lock held.
3994 */
Christopher Faulet69beaa92021-02-16 12:07:47 +01003995const 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 +02003996{
3997
Willy Tarreau83061a82018-07-13 11:56:34 +02003998 struct buffer *msg;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02003999
4000 msg = get_trash_chunk();
4001 chunk_reset(msg);
4002
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01004003 if (server->hostname && strcmp(fqdn, server->hostname) == 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004004 chunk_appendf(msg, "no need to change the FDQN");
4005 goto out;
4006 }
4007
4008 if (strlen(fqdn) > DNS_MAX_NAME_SIZE || invalid_domainchar(fqdn)) {
4009 chunk_appendf(msg, "invalid fqdn '%s'", fqdn);
4010 goto out;
4011 }
4012
4013 chunk_appendf(msg, "%s/%s changed its FQDN from %s to %s",
4014 server->proxy->id, server->id, server->hostname, fqdn);
4015
Emeric Brun08622d32020-12-23 17:41:43 +01004016 if (srv_set_fqdn(server, fqdn, resolv_locked) < 0) {
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004017 chunk_reset(msg);
4018 chunk_appendf(msg, "could not update %s/%s FQDN",
4019 server->proxy->id, server->id);
4020 goto out;
4021 }
4022
4023 /* Flag as FQDN set from stats socket. */
Emeric Brun52a91d32017-08-31 14:41:55 +02004024 server->next_admin |= SRV_ADMF_HMAINT;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004025
4026 out:
4027 if (updater)
4028 chunk_appendf(msg, " by '%s'", updater);
4029 chunk_appendf(msg, "\n");
4030
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004031 return msg->area;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004032}
4033
4034
Willy Tarreau21b069d2016-11-23 17:15:08 +01004035/* Expects to find a backend and a server in <arg> under the form <backend>/<server>,
4036 * and returns the pointer to the server. Otherwise, display adequate error messages
Willy Tarreau3b6e5472016-11-24 15:53:53 +01004037 * 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 +01004038 * used for CLI commands requiring a server name.
4039 * Important: the <arg> is modified to remove the '/'.
4040 */
4041struct server *cli_find_server(struct appctx *appctx, char *arg)
4042{
4043 struct proxy *px;
4044 struct server *sv;
4045 char *line;
4046
4047 /* split "backend/server" and make <line> point to server */
4048 for (line = arg; *line; line++)
4049 if (*line == '/') {
4050 *line++ = '\0';
4051 break;
4052 }
4053
4054 if (!*line || !*arg) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004055 cli_err(appctx, "Require 'backend/server'.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004056 return NULL;
4057 }
4058
4059 if (!get_backend_server(arg, line, &px, &sv)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004060 cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004061 return NULL;
4062 }
4063
Willy Tarreauc3914d42020-09-24 08:39:22 +02004064 if (px->disabled) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004065 cli_err(appctx, "Proxy is disabled.\n");
Willy Tarreau21b069d2016-11-23 17:15:08 +01004066 return NULL;
4067 }
4068
4069 return sv;
4070}
4071
William Lallemand222baf22016-11-19 02:00:33 +01004072
Willy Tarreau46b7f532018-08-21 11:54:26 +02004073/* grabs the server lock */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004074static int cli_parse_set_server(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand222baf22016-11-19 02:00:33 +01004075{
4076 struct server *sv;
4077 const char *warning;
4078
4079 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4080 return 1;
4081
4082 sv = cli_find_server(appctx, args[2]);
4083 if (!sv)
4084 return 1;
4085
4086 if (strcmp(args[3], "weight") == 0) {
Christopher Faulet77df12c2021-06-15 12:01:29 +02004087 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004088 warning = server_parse_weight_change_request(sv, args[4]);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004089 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004090 if (warning)
4091 cli_err(appctx, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004092 }
4093 else if (strcmp(args[3], "state") == 0) {
Christopher Faulet77df12c2021-06-15 12:01:29 +02004094 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004095 if (strcmp(args[4], "ready") == 0)
4096 srv_adm_set_ready(sv);
4097 else if (strcmp(args[4], "drain") == 0)
4098 srv_adm_set_drain(sv);
4099 else if (strcmp(args[4], "maint") == 0)
4100 srv_adm_set_maint(sv);
Willy Tarreau9d008692019-08-09 11:21:01 +02004101 else
4102 cli_err(appctx, "'set server <srv> state' expects 'ready', 'drain' and 'maint'.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004103 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004104 }
4105 else if (strcmp(args[3], "health") == 0) {
Christopher Faulet77df12c2021-06-15 12:01:29 +02004106 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004107 if (sv->track)
4108 cli_err(appctx, "cannot change health on a tracking server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004109 else if (strcmp(args[4], "up") == 0) {
4110 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004111 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004112 }
4113 else if (strcmp(args[4], "stopping") == 0) {
4114 sv->check.health = sv->check.rise + sv->check.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004115 srv_set_stopping(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004116 }
4117 else if (strcmp(args[4], "down") == 0) {
4118 sv->check.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004119 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004120 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004121 else
4122 cli_err(appctx, "'set server <srv> health' expects 'up', 'stopping', or 'down'.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004123 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004124 }
4125 else if (strcmp(args[3], "agent") == 0) {
Christopher Faulet77df12c2021-06-15 12:01:29 +02004126 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004127 if (!(sv->agent.state & CHK_ST_ENABLED))
4128 cli_err(appctx, "agent checks are not enabled on this server.\n");
William Lallemand222baf22016-11-19 02:00:33 +01004129 else if (strcmp(args[4], "up") == 0) {
4130 sv->agent.health = sv->agent.rise + sv->agent.fall - 1;
Emeric Brun5a133512017-10-19 14:42:30 +02004131 srv_set_running(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004132 }
4133 else if (strcmp(args[4], "down") == 0) {
4134 sv->agent.health = 0;
Emeric Brun5a133512017-10-19 14:42:30 +02004135 srv_set_stopped(sv, "changed from CLI", NULL);
William Lallemand222baf22016-11-19 02:00:33 +01004136 }
Willy Tarreau9d008692019-08-09 11:21:01 +02004137 else
4138 cli_err(appctx, "'set server <srv> agent' expects 'up' or 'down'.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004139 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004140 }
Misiek2da082d2017-01-09 09:40:42 +01004141 else if (strcmp(args[3], "agent-addr") == 0) {
William Dauchy7cabc062021-02-11 22:51:24 +01004142 char *addr = NULL;
4143 char *port = NULL;
4144 if (strlen(args[4]) == 0) {
4145 cli_err(appctx, "set server <b>/<s> agent-addr requires"
4146 " an address and optionally a port.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004147 goto out;
William Dauchy7cabc062021-02-11 22:51:24 +01004148 }
4149 addr = args[4];
4150 if (strcmp(args[5], "port") == 0)
4151 port = args[6];
Christopher Faulet77df12c2021-06-15 12:01:29 +02004152 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004153 warning = srv_update_agent_addr_port(sv, addr, port);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004154 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchy7cabc062021-02-11 22:51:24 +01004155 if (warning)
4156 cli_msg(appctx, LOG_WARNING, warning);
4157 }
4158 else if (strcmp(args[3], "agent-port") == 0) {
4159 char *port = NULL;
4160 if (strlen(args[4]) == 0) {
4161 cli_err(appctx, "set server <b>/<s> agent-port requires"
4162 " a port.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004163 goto out;
William Dauchy7cabc062021-02-11 22:51:24 +01004164 }
4165 port = args[4];
Christopher Faulet77df12c2021-06-15 12:01:29 +02004166 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004167 warning = srv_update_agent_addr_port(sv, NULL, port);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004168 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchy7cabc062021-02-11 22:51:24 +01004169 if (warning)
4170 cli_msg(appctx, LOG_WARNING, warning);
Misiek2da082d2017-01-09 09:40:42 +01004171 }
4172 else if (strcmp(args[3], "agent-send") == 0) {
Christopher Faulet88fca372021-06-18 08:47:14 +02004173 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004174 if (!(sv->agent.state & CHK_ST_ENABLED))
4175 cli_err(appctx, "agent checks are not enabled on this server.\n");
4176 else {
Christopher Faulet0ae3d1d2020-04-06 17:54:24 +02004177 if (!set_srv_agent_send(sv, args[4]))
Willy Tarreau9d008692019-08-09 11:21:01 +02004178 cli_err(appctx, "cannot allocate memory for new string.\n");
Misiek2da082d2017-01-09 09:40:42 +01004179 }
Christopher Faulet88fca372021-06-18 08:47:14 +02004180 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Misiek2da082d2017-01-09 09:40:42 +01004181 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004182 else if (strcmp(args[3], "check-addr") == 0) {
4183 char *addr = NULL;
4184 char *port = NULL;
4185 if (strlen(args[4]) == 0) {
4186 cli_err(appctx, "set server <b>/<s> check-addr requires"
4187 " an address and optionally a port.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004188 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004189 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004190 addr = args[4];
4191 if (strcmp(args[5], "port") == 0)
4192 port = args[6];
Christopher Faulet77df12c2021-06-15 12:01:29 +02004193 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004194 warning = srv_update_check_addr_port(sv, addr, port);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004195 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyb456e1f2021-02-11 22:51:23 +01004196 if (warning)
4197 cli_msg(appctx, LOG_WARNING, warning);
4198 }
4199 else if (strcmp(args[3], "check-port") == 0) {
4200 char *port = NULL;
4201 if (strlen(args[4]) == 0) {
4202 cli_err(appctx, "set server <b>/<s> check-port requires"
4203 " a port.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004204 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004205 }
William Dauchyb456e1f2021-02-11 22:51:23 +01004206 port = args[4];
Christopher Faulet77df12c2021-06-15 12:01:29 +02004207 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004208 warning = srv_update_check_addr_port(sv, NULL, port);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004209 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyb456e1f2021-02-11 22:51:23 +01004210 if (warning)
4211 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004212 }
4213 else if (strcmp(args[3], "addr") == 0) {
4214 char *addr = NULL;
4215 char *port = NULL;
4216 if (strlen(args[4]) == 0) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004217 cli_err(appctx, "set server <b>/<s> addr requires an address and optionally a port.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004218 goto out;
William Lallemand222baf22016-11-19 02:00:33 +01004219 }
4220 else {
4221 addr = args[4];
4222 }
4223 if (strcmp(args[5], "port") == 0) {
4224 port = args[6];
4225 }
Christopher Faulet77df12c2021-06-15 12:01:29 +02004226 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet69beaa92021-02-16 12:07:47 +01004227 warning = srv_update_addr_port(sv, addr, port, "stats socket command");
Willy Tarreau9d008692019-08-09 11:21:01 +02004228 if (warning)
4229 cli_msg(appctx, LOG_WARNING, warning);
William Lallemand222baf22016-11-19 02:00:33 +01004230 srv_clr_admin_flag(sv, SRV_ADMF_RMAINT);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004231 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Lallemand222baf22016-11-19 02:00:33 +01004232 }
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004233 else if (strcmp(args[3], "fqdn") == 0) {
4234 if (!*args[4]) {
Willy Tarreau9d008692019-08-09 11:21:01 +02004235 cli_err(appctx, "set server <b>/<s> fqdn requires a FQDN.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004236 goto out;
4237 }
4238 if (!sv->resolvers) {
4239 cli_err(appctx, "set server <b>/<s> fqdn failed because no resolution is configured.\n");
4240 goto out;
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004241 }
Christopher Faulet5b04f462021-06-15 11:37:40 +02004242 if (sv->srvrq) {
4243 cli_err(appctx, "set server <b>/<s> fqdn failed because SRV resolution is configured.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004244 goto out;
Christopher Faulet5b04f462021-06-15 11:37:40 +02004245 }
Christopher Faulet77df12c2021-06-15 12:01:29 +02004246 HA_SPIN_LOCK(DNS_LOCK, &sv->resolvers->lock);
4247 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Baptiste Assmann13a92322019-06-07 09:40:55 +02004248 /* ensure runtime resolver will process this new fqdn */
4249 if (sv->flags & SRV_F_NO_RESOLUTION) {
4250 sv->flags &= ~SRV_F_NO_RESOLUTION;
4251 }
Christopher Faulet77df12c2021-06-15 12:01:29 +02004252 warning = srv_update_fqdn(sv, args[4], "stats socket command", 1);
Christopher Faulet88fca372021-06-18 08:47:14 +02004253 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004254 HA_SPIN_UNLOCK(DNS_LOCK, &sv->resolvers->lock);
Willy Tarreau9d008692019-08-09 11:21:01 +02004255 if (warning)
4256 cli_msg(appctx, LOG_WARNING, warning);
Frédéric Lécailleb418c122017-04-26 11:24:02 +02004257 }
William Dauchyf6370442020-11-14 19:25:33 +01004258 else if (strcmp(args[3], "ssl") == 0) {
4259#ifdef USE_OPENSSL
4260 if (sv->ssl_ctx.ctx == NULL) {
4261 cli_err(appctx, "'set server <srv> ssl' cannot be set. "
4262 " default-server should define ssl settings\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004263 goto out;
4264 }
4265
4266 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4267 if (strcmp(args[4], "on") == 0) {
William Dauchyf6370442020-11-14 19:25:33 +01004268 ssl_sock_set_srv(sv, 1);
4269 } else if (strcmp(args[4], "off") == 0) {
4270 ssl_sock_set_srv(sv, 0);
4271 } else {
Christopher Faulet77df12c2021-06-15 12:01:29 +02004272 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyf6370442020-11-14 19:25:33 +01004273 cli_err(appctx, "'set server <srv> ssl' expects 'on' or 'off'.\n");
Christopher Faulet77df12c2021-06-15 12:01:29 +02004274 goto out;
William Dauchyf6370442020-11-14 19:25:33 +01004275 }
4276 srv_cleanup_connections(sv);
Christopher Faulet77df12c2021-06-15 12:01:29 +02004277 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
William Dauchyf6370442020-11-14 19:25:33 +01004278 cli_msg(appctx, LOG_NOTICE, "server ssl setting updated.\n");
4279#else
4280 cli_msg(appctx, LOG_NOTICE, "server ssl setting not supported.\n");
4281#endif
4282 } else {
Willy Tarreau9d008692019-08-09 11:21:01 +02004283 cli_err(appctx,
William Dauchy3f4ec7d2021-02-15 17:22:16 +01004284 "usage: set server <backend>/<server> "
4285 "addr | agent | agent-addr | agent-port | agent-send | "
4286 "check-addr | check-port | fqdn | health | ssl | "
4287 "state | weight\n");
William Lallemand222baf22016-11-19 02:00:33 +01004288 }
Christopher Faulet77df12c2021-06-15 12:01:29 +02004289 out:
William Lallemand222baf22016-11-19 02:00:33 +01004290 return 1;
4291}
4292
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004293static int cli_parse_get_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004294{
4295 struct stream_interface *si = appctx->owner;
4296 struct proxy *px;
4297 struct server *sv;
4298 char *line;
4299
4300
4301 /* split "backend/server" and make <line> point to server */
4302 for (line = args[2]; *line; line++)
4303 if (*line == '/') {
4304 *line++ = '\0';
4305 break;
4306 }
4307
Willy Tarreau9d008692019-08-09 11:21:01 +02004308 if (!*line)
4309 return cli_err(appctx, "Require 'backend/server'.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004310
Willy Tarreau9d008692019-08-09 11:21:01 +02004311 if (!get_backend_server(args[2], line, &px, &sv))
4312 return cli_err(appctx, px ? "No such server.\n" : "No such backend.\n");
William Lallemand6b160942016-11-22 12:34:35 +01004313
4314 /* return server's effective weight at the moment */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004315 snprintf(trash.area, trash.size, "%d (initial %d)\n", sv->uweight,
4316 sv->iweight);
4317 if (ci_putstr(si_ic(si), trash.area) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01004318 si_rx_room_blk(si);
Christopher Faulet90b5abe2016-12-05 14:25:08 +01004319 return 0;
4320 }
William Lallemand6b160942016-11-22 12:34:35 +01004321 return 1;
4322}
4323
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004324/* Parse a "set weight" command.
4325 *
4326 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004327 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004328static int cli_parse_set_weight(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand6b160942016-11-22 12:34:35 +01004329{
4330 struct server *sv;
4331 const char *warning;
4332
4333 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4334 return 1;
4335
4336 sv = cli_find_server(appctx, args[2]);
4337 if (!sv)
4338 return 1;
4339
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004340 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4341
William Lallemand6b160942016-11-22 12:34:35 +01004342 warning = server_parse_weight_change_request(sv, args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004343 if (warning)
4344 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004345
4346 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4347
William Lallemand6b160942016-11-22 12:34:35 +01004348 return 1;
4349}
4350
Willy Tarreau46b7f532018-08-21 11:54:26 +02004351/* parse a "set maxconn server" command. It always returns 1.
4352 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004353 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004354 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004355static int cli_parse_set_maxconn_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreaub8026272016-11-23 11:26:56 +01004356{
4357 struct server *sv;
4358 const char *warning;
4359
4360 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4361 return 1;
4362
4363 sv = cli_find_server(appctx, args[3]);
4364 if (!sv)
4365 return 1;
4366
Amaury Denoyellecaaafd02021-06-18 11:11:36 +02004367 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
4368
Willy Tarreaub8026272016-11-23 11:26:56 +01004369 warning = server_parse_maxconn_change_request(sv, args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02004370 if (warning)
4371 cli_err(appctx, warning);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004372
Amaury Denoyellecaaafd02021-06-18 11:11:36 +02004373 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
4374
Willy Tarreaub8026272016-11-23 11:26:56 +01004375 return 1;
4376}
William Lallemand6b160942016-11-22 12:34:35 +01004377
Willy Tarreau46b7f532018-08-21 11:54:26 +02004378/* parse a "disable agent" command. It always returns 1.
4379 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004380 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004381 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004382static int cli_parse_disable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004383{
4384 struct server *sv;
4385
4386 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4387 return 1;
4388
4389 sv = cli_find_server(appctx, args[2]);
4390 if (!sv)
4391 return 1;
4392
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004393 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004394 sv->agent.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004395 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004396 return 1;
4397}
4398
Willy Tarreau46b7f532018-08-21 11:54:26 +02004399/* parse a "disable health" command. It always returns 1.
4400 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004401 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004402 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004403static int cli_parse_disable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004404{
4405 struct server *sv;
4406
4407 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4408 return 1;
4409
4410 sv = cli_find_server(appctx, args[2]);
4411 if (!sv)
4412 return 1;
4413
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004414 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004415 sv->check.state &= ~CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004416 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004417 return 1;
4418}
4419
Willy Tarreau46b7f532018-08-21 11:54:26 +02004420/* parse a "disable server" command. It always returns 1.
4421 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004422 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004423 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004424static int cli_parse_disable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004425{
4426 struct server *sv;
4427
4428 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4429 return 1;
4430
4431 sv = cli_find_server(appctx, args[2]);
4432 if (!sv)
4433 return 1;
4434
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004435 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004436 srv_adm_set_maint(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004437 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004438 return 1;
4439}
4440
Willy Tarreau46b7f532018-08-21 11:54:26 +02004441/* parse a "enable agent" command. It always returns 1.
4442 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004443 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004444 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004445static int cli_parse_enable_agent(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004446{
4447 struct server *sv;
4448
4449 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4450 return 1;
4451
4452 sv = cli_find_server(appctx, args[2]);
4453 if (!sv)
4454 return 1;
4455
Willy Tarreau9d008692019-08-09 11:21:01 +02004456 if (!(sv->agent.state & CHK_ST_CONFIGURED))
4457 return cli_err(appctx, "Agent was not configured on this server, cannot enable.\n");
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004458
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004459 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004460 sv->agent.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004461 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau58d9cb72016-11-24 12:56:01 +01004462 return 1;
4463}
4464
Willy Tarreau46b7f532018-08-21 11:54:26 +02004465/* parse a "enable health" command. It always returns 1.
4466 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004467 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004468 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004469static int cli_parse_enable_health(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004470{
4471 struct server *sv;
4472
4473 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4474 return 1;
4475
4476 sv = cli_find_server(appctx, args[2]);
4477 if (!sv)
4478 return 1;
4479
Amaury Denoyellee636a112021-09-21 10:29:09 +02004480 if (!(sv->check.state & CHK_ST_CONFIGURED))
4481 return cli_err(appctx, "Health check was not configured on this server, cannot enable.\n");
4482
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004483 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004484 sv->check.state |= CHK_ST_ENABLED;
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004485 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreau2c04eda2016-11-24 12:51:04 +01004486 return 1;
4487}
4488
Willy Tarreau46b7f532018-08-21 11:54:26 +02004489/* parse a "enable server" command. It always returns 1.
4490 *
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004491 * Grabs the server lock.
Willy Tarreau46b7f532018-08-21 11:54:26 +02004492 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02004493static int cli_parse_enable_server(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauffb4d582016-11-24 12:47:00 +01004494{
4495 struct server *sv;
4496
4497 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4498 return 1;
4499
4500 sv = cli_find_server(appctx, args[2]);
4501 if (!sv)
4502 return 1;
4503
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004504 HA_SPIN_LOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004505 srv_adm_set_ready(sv);
Olivier Houcharde9bad0a2018-01-17 17:39:34 +01004506 if (!(sv->flags & SRV_F_COOKIESET)
4507 && (sv->proxy->ck_opts & PR_CK_DYNAMIC) &&
4508 sv->cookie)
4509 srv_check_for_dup_dyncookie(sv);
Willy Tarreau3bcc2692018-08-21 15:35:31 +02004510 HA_SPIN_UNLOCK(SERVER_LOCK, &sv->lock);
Willy Tarreauffb4d582016-11-24 12:47:00 +01004511 return 1;
4512}
4513
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004514/* Allocates data structure related to load balancing for the server <sv>. It
4515 * is only required for dynamic servers.
4516 *
4517 * At the moment, the server lock is not used as this function is only called
4518 * for a dynamic server not yet registered.
4519 *
4520 * Returns 1 on success, 0 on allocation failure.
4521 */
4522static int srv_alloc_lb(struct server *sv, struct proxy *be)
4523{
4524 int node;
4525
4526 sv->lb_tree = (sv->flags & SRV_F_BACKUP) ?
4527 &be->lbprm.chash.bck : &be->lbprm.chash.act;
4528 sv->lb_nodes_tot = sv->uweight * BE_WEIGHT_SCALE;
4529 sv->lb_nodes_now = 0;
4530
Willy Tarreaudcb121f2021-04-20 11:37:45 +02004531 if (((be->lbprm.algo & (BE_LB_KIND | BE_LB_PARM)) == (BE_LB_KIND_RR | BE_LB_RR_RANDOM)) ||
4532 ((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 +01004533 sv->lb_nodes = calloc(sv->lb_nodes_tot, sizeof(*sv->lb_nodes));
4534
4535 if (!sv->lb_nodes)
4536 return 0;
4537
4538 for (node = 0; node < sv->lb_nodes_tot; node++) {
4539 sv->lb_nodes[node].server = sv;
4540 sv->lb_nodes[node].node.key = full_hash(sv->puid * SRV_EWGHT_RANGE + node);
4541 }
4542 }
4543
4544 return 1;
4545}
4546
4547/* Parse a "add server" command
4548 * Returns 0 if the server has been successfully initialized, 1 on failure.
4549 */
4550static int cli_parse_add_server(char **args, char *payload, struct appctx *appctx, void *private)
4551{
4552 struct proxy *be;
4553 struct server *srv;
4554 char *be_name, *sv_name;
4555 char *errmsg = NULL;
4556 int errcode, argc;
Amaury Denoyelle12173562021-06-09 09:58:47 +02004557 int next_id, i;
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004558 const int parse_flags = SRV_PARSE_DYNAMIC|SRV_PARSE_PARSE_ADDR;
4559
4560 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4561 return 1;
4562
4563 ++args;
4564
4565 sv_name = be_name = args[1];
4566 /* split backend/server arg */
4567 while (*sv_name && *(++sv_name)) {
4568 if (*sv_name == '/') {
4569 *sv_name = '\0';
4570 ++sv_name;
4571 break;
4572 }
4573 }
4574
4575 if (!*sv_name)
4576 return cli_err(appctx, "Require 'backend/server'.");
4577
Amaury Denoyellecece9182021-04-20 17:09:08 +02004578 be = proxy_be_by_name(be_name);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004579 if (!be)
4580 return cli_err(appctx, "No such backend.");
4581
4582 if (!(be->lbprm.algo & BE_LB_PROP_DYN)) {
Amaury Denoyelleeafd7012021-04-29 14:59:42 +02004583 cli_err(appctx, "Backend must use a dynamic load balancing to support dynamic servers.");
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004584 return 1;
4585 }
4586
Amaury Denoyelled50d4bf2021-06-10 15:26:44 +02004587 /* At this point, some operations might not be thread-safe anymore. This
4588 * might be the case for parsing handlers which were designed to run
4589 * only at the starting stage on single-thread mode.
4590 *
4591 * Activate thread isolation to ensure thread-safety.
4592 */
4593 thread_isolate();
4594
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004595 args[1] = sv_name;
4596 errcode = _srv_parse_init(&srv, args, &argc, be, parse_flags, &errmsg);
Amaury Denoyellee3c55c22021-08-02 15:50:00 +02004597 if (srv)
4598 srv_use_dynsrv(srv);
4599
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004600 if (errcode) {
4601 if (errmsg)
4602 cli_dynerr(appctx, errmsg);
4603 goto out;
4604 }
4605
4606 while (*args[argc]) {
4607 errcode = _srv_parse_kw(srv, args, &argc, be, parse_flags, &errmsg);
4608
4609 if (errcode) {
4610 if (errmsg)
4611 cli_dynerr(appctx, errmsg);
4612 goto out;
4613 }
4614 }
4615
4616 _srv_parse_finalize(args, argc, srv, be, parse_flags, &errmsg);
4617 if (errmsg) {
4618 cli_dynerr(appctx, errmsg);
4619 goto out;
4620 }
4621
Amaury Denoyellee9bb7fb2021-06-10 17:34:10 +02004622 /* A dynamic server does not currently support resolution.
4623 *
4624 * Initialize it explicitly to the "none" method to ensure no
4625 * resolution will ever be executed.
4626 */
4627 srv->init_addr_methods = SRV_IADDR_NONE;
4628
Amaury Denoyelle30467232021-03-12 18:03:27 +01004629 if (srv->mux_proto) {
4630 if (!conn_get_best_mux_entry(srv->mux_proto->token, PROTO_SIDE_BE, be->mode)) {
4631 cli_err(appctx, "MUX protocol is not usable for server.");
4632 goto out;
4633 }
4634 }
4635
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004636 srv->per_thr = calloc(global.nbthread, sizeof(*srv->per_thr));
4637 if (!srv->per_thr) {
4638 cli_err(appctx, "failed to allocate per-thread lists for server.");
4639 goto out;
4640 }
4641
4642 for (i = 0; i < global.nbthread; i++) {
4643 srv->per_thr[i].idle_conns = EB_ROOT;
4644 srv->per_thr[i].safe_conns = EB_ROOT;
4645 srv->per_thr[i].avail_conns = EB_ROOT;
4646 MT_LIST_INIT(&srv->per_thr[i].streams);
4647 }
4648
4649 if (srv->max_idle_conns != 0) {
4650 srv->curr_idle_thr = calloc(global.nbthread, sizeof(*srv->curr_idle_thr));
4651 if (!srv->curr_idle_thr) {
4652 cli_err(appctx, "failed to allocate counters for server.");
4653 goto out;
4654 }
4655 }
4656
4657 if (!srv_alloc_lb(srv, be)) {
4658 cli_err(appctx, "Failed to initialize load-balancing data.");
4659 goto out;
4660 }
4661
4662 if (!stats_allocate_proxy_counters_internal(&srv->extra_counters,
4663 COUNTERS_SV,
4664 STATS_PX_CAP_SRV)) {
4665 cli_err(appctx, "failed to allocate extra counters for server.");
4666 goto out;
4667 }
4668
Amaury Denoyelled50d4bf2021-06-10 15:26:44 +02004669 /* Attach the server to the end of the proxy linked list. Note that this
4670 * operation is not thread-safe so this is executed under thread
4671 * isolation.
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004672 *
Amaury Denoyelled50d4bf2021-06-10 15:26:44 +02004673 * If a server with the same name is found, reject the new one.
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004674 */
Amaury Denoyellecece9182021-04-20 17:09:08 +02004675
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004676 /* TODO use a double-linked list for px->srv */
4677 if (be->srv) {
Amaury Denoyellecece9182021-04-20 17:09:08 +02004678 struct server *next = be->srv;
4679
4680 while (1) {
4681 /* check for duplicate server */
4682 if (!strcmp(srv->id, next->id)) {
Amaury Denoyellecece9182021-04-20 17:09:08 +02004683 cli_err(appctx, "Already exists a server with the same name in backend.");
4684 goto out;
4685 }
4686
4687 if (!next->next)
4688 break;
4689
4690 next = next->next;
4691 }
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004692
4693 next->next = srv;
4694 }
4695 else {
4696 srv->next = be->srv;
4697 be->srv = srv;
4698 }
Amaury Denoyellecece9182021-04-20 17:09:08 +02004699
Amaury Denoyelle12173562021-06-09 09:58:47 +02004700 /* generate the server id if not manually specified */
4701 if (!srv->puid) {
4702 next_id = get_next_id(&be->conf.used_server_id, 1);
4703 if (!next_id) {
4704 ha_alert("Cannot attach server : no id left in proxy\n");
4705 goto out;
4706 }
4707
4708 srv->conf.id.key = srv->puid = next_id;
Amaury Denoyelle12173562021-06-09 09:58:47 +02004709 }
Christopher Faulet2ea1aa52021-12-07 18:49:44 +01004710 srv->conf.name.key = srv->id;
Amaury Denoyelle12173562021-06-09 09:58:47 +02004711
4712 /* insert the server in the backend trees */
Amaury Denoyellef88af882021-06-08 17:00:20 +02004713 eb32_insert(&be->conf.used_server_id, &srv->conf.id);
4714 ebis_insert(&be->conf.used_server_name, &srv->conf.name);
Amaury Denoyelle2f70bb52021-06-08 15:19:51 +02004715 ebis_insert(&be->used_server_addr, &srv->addr_node);
Amaury Denoyelle12173562021-06-09 09:58:47 +02004716
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004717 thread_release();
4718
Amaury Denoyelled38e7fa2021-04-20 18:35:19 +02004719 ha_notice("New server %s/%s registered.\n", be->id, srv->id);
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004720 cli_msg(appctx, LOG_INFO, "New server registered.");
4721
4722 return 0;
4723
4724out:
Amaury Denoyelledb130872021-08-04 11:20:05 +02004725 if (srv) {
4726 /* remove the server from the proxy linked list */
4727 if (be->srv == srv) {
4728 be->srv = srv->next;
4729 }
4730 else {
4731 struct server *prev;
4732 for (prev = be->srv; prev && prev->next != srv; prev = prev->next)
4733 ;
4734 if (prev)
4735 prev->next = srv->next;
4736 }
4737
4738 }
4739
Amaury Denoyelled50d4bf2021-06-10 15:26:44 +02004740 thread_release();
Amaury Denoyellef99f77a2021-03-08 17:13:32 +01004741 if (srv)
4742 free_server(srv);
4743 return 1;
4744}
4745
Amaury Denoyellee5580432021-04-15 14:41:20 +02004746/* Parse a "del server" command
4747 * Returns 0 if the server has been successfully initialized, 1 on failure.
4748 */
4749static int cli_parse_delete_server(char **args, char *payload, struct appctx *appctx, void *private)
4750{
4751 struct proxy *be;
4752 struct server *srv;
4753 char *be_name, *sv_name;
4754
4755 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
4756 return 1;
4757
4758 ++args;
4759
4760 sv_name = be_name = args[1];
4761 /* split backend/server arg */
4762 while (*sv_name && *(++sv_name)) {
4763 if (*sv_name == '/') {
4764 *sv_name = '\0';
4765 ++sv_name;
4766 break;
4767 }
4768 }
4769
4770 if (!*sv_name)
4771 return cli_err(appctx, "Require 'backend/server'.");
4772
4773 /* The proxy servers list is currently not protected by a lock so this
4774 * requires thread isolation.
4775 */
4776
4777 /* WARNING there is maybe a potential violation of the thread isolation
4778 * mechanism by the pool allocator. The allocator marks the thread as
4779 * harmless before the allocation, but a processing outside of it could
4780 * relies on a particular server triggered at the same time by a
4781 * 'delete server'. Currently, it is unknown if such case is present in
4782 * the current code. If it happens to be, the thread isolation
4783 * mechanism should be improved, maybe with a differentiation between
4784 * read and read+write safe sections.
4785 */
4786 thread_isolate();
4787
4788 get_backend_server(be_name, sv_name, &be, &srv);
4789 if (!be) {
4790 cli_err(appctx, "No such backend.");
4791 goto out;
4792 }
4793
4794 if (!srv) {
4795 cli_err(appctx, "No such server.");
4796 goto out;
4797 }
4798
4799 if (!(srv->flags & SRV_F_DYNAMIC)) {
4800 cli_err(appctx, "Only servers added at runtime via <add server> CLI cmd can be deleted.");
4801 goto out;
4802 }
4803
4804 /* Only servers in maintenance can be deleted. This ensures that the
4805 * server is not present anymore in the lb structures (through
4806 * lbprm.set_server_status_down).
4807 */
4808 if (!(srv->cur_admin & SRV_ADMF_MAINT)) {
4809 cli_err(appctx, "Only servers in maintenance mode can be deleted.");
4810 goto out;
4811 }
4812
4813 /* Ensure that there is no active/idle/pending connection on the server.
4814 *
4815 * TODO idle connections should not prevent server deletion. A proper
4816 * cleanup function should be implemented to be used here.
4817 */
4818 if (srv->cur_sess || srv->curr_idle_conns ||
4819 !eb_is_empty(&srv->pendconns)) {
4820 cli_err(appctx, "Server still has connections attached to it, cannot remove it.");
4821 goto out;
4822 }
4823
4824 /* TODO remove server for check list once 'check' will be implemented for
4825 * dynamic servers
4826 */
4827
4828 /* detach the server from the proxy linked list
4829 * The proxy servers list is currently not protected by a lock, so this
4830 * requires thread_isolate/release.
4831 */
4832
4833 /* be->srv cannot be empty since we have already found the server with
4834 * get_backend_server */
4835 BUG_ON(!be->srv);
4836 if (be->srv == srv) {
4837 be->srv = srv->next;
4838 }
4839 else {
4840 struct server *next;
Amaury Denoyelled6b4b6d2021-04-21 11:50:26 +02004841 for (next = be->srv; srv != next->next; next = next->next) {
4842 /* srv cannot be not found since we have already found
4843 * it with get_backend_server */
4844 BUG_ON(!next);
4845 }
Amaury Denoyellee5580432021-04-15 14:41:20 +02004846
Amaury Denoyellee5580432021-04-15 14:41:20 +02004847 next->next = srv->next;
4848 }
4849
4850 /* remove srv from addr_node tree */
Amaury Denoyelle40ad9f42021-06-09 16:00:43 +02004851 eb32_delete(&srv->conf.id);
4852 ebpt_delete(&srv->conf.name);
Amaury Denoyellee5580432021-04-15 14:41:20 +02004853 ebpt_delete(&srv->addr_node);
4854
4855 /* remove srv from idle_node tree for idle conn cleanup */
4856 eb32_delete(&srv->idle_node);
4857
4858 thread_release();
4859
4860 ha_notice("Server %s/%s deleted.\n", be->id, srv->id);
4861 free_server(srv);
4862
4863 cli_msg(appctx, LOG_INFO, "Server deleted.");
4864
4865 return 0;
4866
4867out:
4868 thread_release();
4869
4870 return 1;
4871}
4872
William Lallemand222baf22016-11-19 02:00:33 +01004873/* register cli keywords */
4874static struct cli_kw_list cli_kws = {{ },{
Amaury Denoyellec59faa52021-08-03 18:05:37 +02004875 { { "disable", "agent", NULL }, "disable agent : disable agent checks", cli_parse_disable_agent, NULL },
4876 { { "disable", "health", NULL }, "disable health : disable health checks", cli_parse_disable_health, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02004877 { { "disable", "server", NULL }, "disable server (DEPRECATED) : disable a server for maintenance (use 'set server' instead)", cli_parse_disable_server, NULL },
Amaury Denoyellec59faa52021-08-03 18:05:37 +02004878 { { "enable", "agent", NULL }, "enable agent : enable agent checks", cli_parse_enable_agent, NULL },
4879 { { "enable", "health", NULL }, "enable health : enable health checks", cli_parse_enable_health, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02004880 { { "enable", "server", NULL }, "enable server (DEPRECATED) : enable a disabled server (use 'set server' instead)", cli_parse_enable_server, NULL },
4881 { { "set", "maxconn", "server", NULL }, "set maxconn server <bk>/<srv> : change a server's maxconn setting", cli_parse_set_maxconn_server, NULL },
4882 { { "set", "server", NULL }, "set server <bk>/<srv> [opts] : change a server's state, weight, address or ssl", cli_parse_set_server },
4883 { { "get", "weight", NULL }, "get weight <bk>/<srv> : report a server's current weight", cli_parse_get_weight },
4884 { { "set", "weight", NULL }, "set weight <bk>/<srv> (DEPRECATED) : change a server's weight (use 'set server' instead)", cli_parse_set_weight },
4885 { { "add", "server", NULL }, "add server <bk>/<srv> : create a new server (EXPERIMENTAL)", cli_parse_add_server, NULL, NULL, NULL, ACCESS_EXPERIMENTAL },
4886 { { "del", "server", NULL }, "del server <bk>/<srv> : remove a dynamically added server (EXPERIMENTAL)", cli_parse_delete_server, NULL, NULL, NULL, ACCESS_EXPERIMENTAL },
William Lallemand222baf22016-11-19 02:00:33 +01004887 {{},}
4888}};
4889
Willy Tarreau0108d902018-11-25 19:14:37 +01004890INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01004891
Emeric Brun64cc49c2017-10-03 14:46:45 +02004892/*
4893 * This function applies server's status changes, it is
4894 * is designed to be called asynchronously.
4895 *
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004896 * Must be called with the server lock held. This may also be called at init
4897 * time as the result of parsing the state file, in which case no lock will be
4898 * held, and the server's warmup task can be null.
Emeric Brun64cc49c2017-10-03 14:46:45 +02004899 */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004900static void srv_update_status(struct server *s)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004901{
4902 struct check *check = &s->check;
4903 int xferred;
4904 struct proxy *px = s->proxy;
4905 int prev_srv_count = s->proxy->srv_bck + s->proxy->srv_act;
4906 int srv_was_stopping = (s->cur_state == SRV_ST_STOPPING) || (s->cur_admin & SRV_ADMF_DRAIN);
Aurelien DARRAGON37f548d2023-04-18 13:52:27 +02004907 enum srv_state srv_prev_state = s->cur_state;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004908 int log_level;
Willy Tarreau83061a82018-07-13 11:56:34 +02004909 struct buffer *tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02004910
Emeric Brun64cc49c2017-10-03 14:46:45 +02004911 /* If currently main is not set we try to apply pending state changes */
4912 if (!(s->cur_admin & SRV_ADMF_MAINT)) {
4913 int next_admin;
4914
4915 /* Backup next admin */
4916 next_admin = s->next_admin;
4917
4918 /* restore current admin state */
4919 s->next_admin = s->cur_admin;
4920
4921 if ((s->cur_state != SRV_ST_STOPPED) && (s->next_state == SRV_ST_STOPPED)) {
Emeric Brun64cc49c2017-10-03 14:46:45 +02004922 if (s->proxy->lbprm.set_server_status_down)
4923 s->proxy->lbprm.set_server_status_down(s);
4924
4925 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
4926 srv_shutdown_streams(s, SF_ERR_DOWN);
4927
4928 /* we might have streams queued on this server and waiting for
4929 * a connection. Those which are redispatchable will be queued
4930 * to another server or to the proxy itself.
4931 */
4932 xferred = pendconn_redistribute(s);
4933
4934 tmptrash = alloc_trash_chunk();
4935 if (tmptrash) {
4936 chunk_printf(tmptrash,
4937 "%sServer %s/%s is DOWN", s->flags & SRV_F_BACKUP ? "Backup " : "",
4938 s->proxy->id, s->id);
4939
Emeric Brun5a133512017-10-19 14:42:30 +02004940 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004941 ha_warning("%s.\n", tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004942
4943 /* we don't send an alert if the server was previously paused */
4944 log_level = srv_was_stopping ? LOG_NOTICE : LOG_ALERT;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004945 send_log(s->proxy, log_level, "%s.\n",
4946 tmptrash->area);
4947 send_email_alert(s, log_level, "%s",
4948 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004949 free_trash_chunk(tmptrash);
4950 tmptrash = NULL;
4951 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02004952 s->counters.down_trans++;
4953 }
4954 else if ((s->cur_state != SRV_ST_STOPPING) && (s->next_state == SRV_ST_STOPPING)) {
Emeric Brun64cc49c2017-10-03 14:46:45 +02004955 if (s->proxy->lbprm.set_server_status_down)
4956 s->proxy->lbprm.set_server_status_down(s);
4957
4958 /* we might have streams queued on this server and waiting for
4959 * a connection. Those which are redispatchable will be queued
4960 * to another server or to the proxy itself.
4961 */
4962 xferred = pendconn_redistribute(s);
4963
4964 tmptrash = alloc_trash_chunk();
4965 if (tmptrash) {
4966 chunk_printf(tmptrash,
4967 "%sServer %s/%s is stopping", s->flags & SRV_F_BACKUP ? "Backup " : "",
4968 s->proxy->id, s->id);
4969
Emeric Brun5a133512017-10-19 14:42:30 +02004970 srv_append_status(tmptrash, s, NULL, xferred, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004971
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004972 ha_warning("%s.\n", tmptrash->area);
4973 send_log(s->proxy, LOG_NOTICE, "%s.\n",
4974 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004975 free_trash_chunk(tmptrash);
4976 tmptrash = NULL;
4977 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02004978 }
4979 else if (((s->cur_state != SRV_ST_RUNNING) && (s->next_state == SRV_ST_RUNNING))
4980 || ((s->cur_state != SRV_ST_STARTING) && (s->next_state == SRV_ST_STARTING))) {
Emeric Brun64cc49c2017-10-03 14:46:45 +02004981
Willy Tarreau1e690bb2020-10-22 11:30:59 +02004982 if (s->next_state == SRV_ST_STARTING && s->warmup)
Emeric Brun64cc49c2017-10-03 14:46:45 +02004983 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
4984
Willy Tarreau3ff577e2018-08-02 11:48:52 +02004985 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02004986 /* now propagate the status change to any LB algorithms */
4987 if (px->lbprm.update_server_eweight)
4988 px->lbprm.update_server_eweight(s);
4989 else if (srv_willbe_usable(s)) {
4990 if (px->lbprm.set_server_status_up)
4991 px->lbprm.set_server_status_up(s);
4992 }
4993 else {
4994 if (px->lbprm.set_server_status_down)
4995 px->lbprm.set_server_status_down(s);
4996 }
4997
4998 /* If the server is set with "on-marked-up shutdown-backup-sessions",
4999 * and it's not a backup server and its effective weight is > 0,
5000 * then it can accept new connections, so we shut down all streams
5001 * on all backup servers.
5002 */
5003 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5004 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5005 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5006
5007 /* check if we can handle some connections queued at the proxy. We
5008 * will take as many as we can handle.
5009 */
5010 xferred = pendconn_grab_from_px(s);
5011
5012 tmptrash = alloc_trash_chunk();
5013 if (tmptrash) {
5014 chunk_printf(tmptrash,
5015 "%sServer %s/%s is UP", s->flags & SRV_F_BACKUP ? "Backup " : "",
5016 s->proxy->id, s->id);
5017
Emeric Brun5a133512017-10-19 14:42:30 +02005018 srv_append_status(tmptrash, s, NULL, xferred, 0);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005019 ha_warning("%s.\n", tmptrash->area);
5020 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5021 tmptrash->area);
5022 send_email_alert(s, LOG_NOTICE, "%s",
5023 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005024 free_trash_chunk(tmptrash);
5025 tmptrash = NULL;
5026 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005027 }
5028 else if (s->cur_eweight != s->next_eweight) {
5029 /* now propagate the status change to any LB algorithms */
5030 if (px->lbprm.update_server_eweight)
5031 px->lbprm.update_server_eweight(s);
5032 else if (srv_willbe_usable(s)) {
5033 if (px->lbprm.set_server_status_up)
5034 px->lbprm.set_server_status_up(s);
5035 }
5036 else {
5037 if (px->lbprm.set_server_status_down)
5038 px->lbprm.set_server_status_down(s);
5039 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005040 }
5041
5042 s->next_admin = next_admin;
5043 }
5044
Emeric Brun5a133512017-10-19 14:42:30 +02005045 /* reset operational state change */
5046 *s->op_st_chg.reason = 0;
5047 s->op_st_chg.status = s->op_st_chg.code = -1;
5048 s->op_st_chg.duration = 0;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005049
5050 /* Now we try to apply pending admin changes */
5051
5052 /* Maintenance must also disable health checks */
5053 if (!(s->cur_admin & SRV_ADMF_MAINT) && (s->next_admin & SRV_ADMF_MAINT)) {
5054 if (s->check.state & CHK_ST_ENABLED) {
5055 s->check.state |= CHK_ST_PAUSED;
5056 check->health = 0;
5057 }
5058
5059 if (s->cur_state == SRV_ST_STOPPED) { /* server was already down */
Olivier Houchard796a2b32017-10-24 17:42:47 +02005060 tmptrash = alloc_trash_chunk();
5061 if (tmptrash) {
5062 chunk_printf(tmptrash,
5063 "%sServer %s/%s was DOWN and now enters maintenance%s%s%s",
5064 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5065 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
Emeric Brun64cc49c2017-10-03 14:46:45 +02005066
Olivier Houchard796a2b32017-10-24 17:42:47 +02005067 srv_append_status(tmptrash, s, NULL, -1, (s->next_admin & SRV_ADMF_FMAINT));
Emeric Brun64cc49c2017-10-03 14:46:45 +02005068
Olivier Houchard796a2b32017-10-24 17:42:47 +02005069 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005070 ha_warning("%s.\n", tmptrash->area);
5071 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5072 tmptrash->area);
Olivier Houchard796a2b32017-10-24 17:42:47 +02005073 }
5074 free_trash_chunk(tmptrash);
5075 tmptrash = NULL;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005076 }
5077 }
5078 else { /* server was still running */
5079 check->health = 0; /* failure */
Emeric Brune3114802017-12-21 14:42:26 +01005080
5081 s->next_state = SRV_ST_STOPPED;
Emeric Brun64cc49c2017-10-03 14:46:45 +02005082 if (s->proxy->lbprm.set_server_status_down)
5083 s->proxy->lbprm.set_server_status_down(s);
5084
Emeric Brun64cc49c2017-10-03 14:46:45 +02005085 if (s->onmarkeddown & HANA_ONMARKEDDOWN_SHUTDOWNSESSIONS)
5086 srv_shutdown_streams(s, SF_ERR_DOWN);
5087
William Dauchy6318d332020-05-02 21:52:36 +02005088 /* force connection cleanup on the given server */
5089 srv_cleanup_connections(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005090 /* we might have streams queued on this server and waiting for
5091 * a connection. Those which are redispatchable will be queued
5092 * to another server or to the proxy itself.
5093 */
5094 xferred = pendconn_redistribute(s);
5095
5096 tmptrash = alloc_trash_chunk();
5097 if (tmptrash) {
5098 chunk_printf(tmptrash,
5099 "%sServer %s/%s is going DOWN for maintenance%s%s%s",
5100 s->flags & SRV_F_BACKUP ? "Backup " : "",
5101 s->proxy->id, s->id,
5102 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5103
5104 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FMAINT));
5105
5106 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005107 ha_warning("%s.\n", tmptrash->area);
5108 send_log(s->proxy, srv_was_stopping ? LOG_NOTICE : LOG_ALERT, "%s.\n",
5109 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005110 }
5111 free_trash_chunk(tmptrash);
5112 tmptrash = NULL;
5113 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005114 s->counters.down_trans++;
5115 }
5116 }
5117 else if ((s->cur_admin & SRV_ADMF_MAINT) && !(s->next_admin & SRV_ADMF_MAINT)) {
5118 /* OK here we're leaving maintenance, we have many things to check,
5119 * because the server might possibly be coming back up depending on
5120 * its state. In practice, leaving maintenance means that we should
5121 * immediately turn to UP (more or less the slowstart) under the
5122 * following conditions :
5123 * - server is neither checked nor tracked
5124 * - server tracks another server which is not checked
5125 * - server tracks another server which is already up
5126 * Which sums up as something simpler :
5127 * "either the tracking server is up or the server's checks are disabled
5128 * or up". Otherwise we only re-enable health checks. There's a special
5129 * case associated to the stopping state which can be inherited. Note
5130 * that the server might still be in drain mode, which is naturally dealt
5131 * with by the lower level functions.
5132 */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005133 if (s->check.state & CHK_ST_ENABLED) {
5134 s->check.state &= ~CHK_ST_PAUSED;
5135 check->health = check->rise; /* start OK but check immediately */
5136 }
5137
5138 if ((!s->track || s->track->next_state != SRV_ST_STOPPED) &&
5139 (!(s->agent.state & CHK_ST_ENABLED) || (s->agent.health >= s->agent.rise)) &&
5140 (!(s->check.state & CHK_ST_ENABLED) || (s->check.health >= s->check.rise))) {
5141 if (s->track && s->track->next_state == SRV_ST_STOPPING) {
5142 s->next_state = SRV_ST_STOPPING;
5143 }
5144 else {
5145 s->next_state = SRV_ST_STARTING;
Willy Tarreau1e690bb2020-10-22 11:30:59 +02005146 if (s->slowstart > 0) {
5147 if (s->warmup)
5148 task_schedule(s->warmup, tick_add(now_ms, MS_TO_TICKS(MAX(1000, s->slowstart / 20))));
5149 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005150 else
5151 s->next_state = SRV_ST_RUNNING;
5152 }
5153
5154 }
5155
5156 tmptrash = alloc_trash_chunk();
5157 if (tmptrash) {
5158 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5159 chunk_printf(tmptrash,
5160 "%sServer %s/%s is %s/%s (leaving forced maintenance)",
5161 s->flags & SRV_F_BACKUP ? "Backup " : "",
5162 s->proxy->id, s->id,
5163 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5164 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5165 }
5166 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5167 chunk_printf(tmptrash,
5168 "%sServer %s/%s ('%s') is %s/%s (resolves again)",
5169 s->flags & SRV_F_BACKUP ? "Backup " : "",
5170 s->proxy->id, s->id, s->hostname,
5171 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5172 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5173 }
5174 if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5175 chunk_printf(tmptrash,
5176 "%sServer %s/%s is %s/%s (leaving maintenance)",
5177 s->flags & SRV_F_BACKUP ? "Backup " : "",
5178 s->proxy->id, s->id,
5179 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP",
5180 (s->next_admin & SRV_ADMF_DRAIN) ? "DRAIN" : "READY");
5181 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005182 ha_warning("%s.\n", tmptrash->area);
5183 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5184 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005185 free_trash_chunk(tmptrash);
5186 tmptrash = NULL;
5187 }
5188
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005189 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005190 /* now propagate the status change to any LB algorithms */
5191 if (px->lbprm.update_server_eweight)
5192 px->lbprm.update_server_eweight(s);
5193 else if (srv_willbe_usable(s)) {
5194 if (px->lbprm.set_server_status_up)
5195 px->lbprm.set_server_status_up(s);
5196 }
5197 else {
5198 if (px->lbprm.set_server_status_down)
5199 px->lbprm.set_server_status_down(s);
5200 }
5201
Willy Tarreau6a78e612018-08-07 10:14:53 +02005202 /* If the server is set with "on-marked-up shutdown-backup-sessions",
5203 * and it's not a backup server and its effective weight is > 0,
5204 * then it can accept new connections, so we shut down all streams
5205 * on all backup servers.
5206 */
5207 if ((s->onmarkedup & HANA_ONMARKEDUP_SHUTDOWNBACKUPSESSIONS) &&
5208 !(s->flags & SRV_F_BACKUP) && s->next_eweight)
5209 srv_shutdown_backup_streams(s->proxy, SF_ERR_UP);
5210
5211 /* check if we can handle some connections queued at the proxy. We
5212 * will take as many as we can handle.
5213 */
5214 xferred = pendconn_grab_from_px(s);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005215 }
5216 else if (s->next_admin & SRV_ADMF_MAINT) {
5217 /* remaining in maintenance mode, let's inform precisely about the
5218 * situation.
5219 */
5220 if (!(s->next_admin & SRV_ADMF_FMAINT) && (s->cur_admin & SRV_ADMF_FMAINT)) {
5221 tmptrash = alloc_trash_chunk();
5222 if (tmptrash) {
5223 chunk_printf(tmptrash,
5224 "%sServer %s/%s is leaving forced maintenance but remains in maintenance",
5225 s->flags & SRV_F_BACKUP ? "Backup " : "",
5226 s->proxy->id, s->id);
5227
5228 if (s->track) /* normally it's mandatory here */
5229 chunk_appendf(tmptrash, " via %s/%s",
5230 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005231 ha_warning("%s.\n", tmptrash->area);
5232 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5233 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005234 free_trash_chunk(tmptrash);
5235 tmptrash = NULL;
5236 }
5237 }
5238 if (!(s->next_admin & SRV_ADMF_RMAINT) && (s->cur_admin & SRV_ADMF_RMAINT)) {
5239 tmptrash = alloc_trash_chunk();
5240 if (tmptrash) {
5241 chunk_printf(tmptrash,
5242 "%sServer %s/%s ('%s') resolves again but remains in maintenance",
5243 s->flags & SRV_F_BACKUP ? "Backup " : "",
5244 s->proxy->id, s->id, s->hostname);
5245
5246 if (s->track) /* normally it's mandatory here */
5247 chunk_appendf(tmptrash, " via %s/%s",
5248 s->track->proxy->id, s->track->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005249 ha_warning("%s.\n", tmptrash->area);
5250 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5251 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005252 free_trash_chunk(tmptrash);
5253 tmptrash = NULL;
5254 }
5255 }
5256 else if (!(s->next_admin & SRV_ADMF_IMAINT) && (s->cur_admin & SRV_ADMF_IMAINT)) {
5257 tmptrash = alloc_trash_chunk();
5258 if (tmptrash) {
5259 chunk_printf(tmptrash,
5260 "%sServer %s/%s remains in forced maintenance",
5261 s->flags & SRV_F_BACKUP ? "Backup " : "",
5262 s->proxy->id, s->id);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005263 ha_warning("%s.\n", tmptrash->area);
5264 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5265 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005266 free_trash_chunk(tmptrash);
5267 tmptrash = NULL;
5268 }
5269 }
5270 /* don't report anything when leaving drain mode and remaining in maintenance */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005271 }
5272
5273 if (!(s->next_admin & SRV_ADMF_MAINT)) {
5274 if (!(s->cur_admin & SRV_ADMF_DRAIN) && (s->next_admin & SRV_ADMF_DRAIN)) {
5275 /* drain state is applied only if not yet in maint */
5276
Emeric Brun64cc49c2017-10-03 14:46:45 +02005277 if (px->lbprm.set_server_status_down)
5278 px->lbprm.set_server_status_down(s);
5279
5280 /* we might have streams queued on this server and waiting for
5281 * a connection. Those which are redispatchable will be queued
5282 * to another server or to the proxy itself.
5283 */
5284 xferred = pendconn_redistribute(s);
5285
5286 tmptrash = alloc_trash_chunk();
5287 if (tmptrash) {
5288 chunk_printf(tmptrash, "%sServer %s/%s enters drain state%s%s%s",
5289 s->flags & SRV_F_BACKUP ? "Backup " : "", s->proxy->id, s->id,
5290 *(s->adm_st_chg_cause) ? " (" : "", s->adm_st_chg_cause, *(s->adm_st_chg_cause) ? ")" : "");
5291
5292 srv_append_status(tmptrash, s, NULL, xferred, (s->next_admin & SRV_ADMF_FDRAIN));
5293
5294 if (!(global.mode & MODE_STARTING)) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005295 ha_warning("%s.\n", tmptrash->area);
5296 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5297 tmptrash->area);
5298 send_email_alert(s, LOG_NOTICE, "%s",
5299 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005300 }
5301 free_trash_chunk(tmptrash);
5302 tmptrash = NULL;
5303 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005304 }
5305 else if ((s->cur_admin & SRV_ADMF_DRAIN) && !(s->next_admin & SRV_ADMF_DRAIN)) {
5306 /* OK completely leaving drain mode */
Willy Tarreau3ff577e2018-08-02 11:48:52 +02005307 server_recalc_eweight(s, 0);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005308
5309 tmptrash = alloc_trash_chunk();
5310 if (tmptrash) {
Aurelien DARRAGONec4db422023-03-27 10:17:31 +02005311 if (s->cur_admin & SRV_ADMF_FDRAIN) {
Emeric Brun64cc49c2017-10-03 14:46:45 +02005312 chunk_printf(tmptrash,
5313 "%sServer %s/%s is %s (leaving forced drain)",
5314 s->flags & SRV_F_BACKUP ? "Backup " : "",
5315 s->proxy->id, s->id,
5316 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5317 }
5318 else {
5319 chunk_printf(tmptrash,
5320 "%sServer %s/%s is %s (leaving drain)",
5321 s->flags & SRV_F_BACKUP ? "Backup " : "",
5322 s->proxy->id, s->id,
5323 (s->next_state == SRV_ST_STOPPED) ? "DOWN" : "UP");
5324 if (s->track) /* normally it's mandatory here */
5325 chunk_appendf(tmptrash, " via %s/%s",
5326 s->track->proxy->id, s->track->id);
5327 }
5328
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005329 ha_warning("%s.\n", tmptrash->area);
5330 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5331 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005332 free_trash_chunk(tmptrash);
5333 tmptrash = NULL;
5334 }
5335
5336 /* now propagate the status change to any LB algorithms */
5337 if (px->lbprm.update_server_eweight)
5338 px->lbprm.update_server_eweight(s);
5339 else if (srv_willbe_usable(s)) {
5340 if (px->lbprm.set_server_status_up)
5341 px->lbprm.set_server_status_up(s);
5342 }
5343 else {
5344 if (px->lbprm.set_server_status_down)
5345 px->lbprm.set_server_status_down(s);
5346 }
5347 }
5348 else if ((s->next_admin & SRV_ADMF_DRAIN)) {
5349 /* remaining in drain mode after removing one of its flags */
5350
5351 tmptrash = alloc_trash_chunk();
5352 if (tmptrash) {
5353 if (!(s->next_admin & SRV_ADMF_FDRAIN)) {
5354 chunk_printf(tmptrash,
5355 "%sServer %s/%s is leaving forced drain but remains in drain mode",
5356 s->flags & SRV_F_BACKUP ? "Backup " : "",
5357 s->proxy->id, s->id);
5358
5359 if (s->track) /* normally it's mandatory here */
5360 chunk_appendf(tmptrash, " via %s/%s",
5361 s->track->proxy->id, s->track->id);
5362 }
5363 else {
5364 chunk_printf(tmptrash,
5365 "%sServer %s/%s remains in forced drain mode",
5366 s->flags & SRV_F_BACKUP ? "Backup " : "",
5367 s->proxy->id, s->id);
5368 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005369 ha_warning("%s.\n", tmptrash->area);
5370 send_log(s->proxy, LOG_NOTICE, "%s.\n",
5371 tmptrash->area);
Emeric Brun64cc49c2017-10-03 14:46:45 +02005372 free_trash_chunk(tmptrash);
5373 tmptrash = NULL;
5374 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005375 }
5376 }
5377
5378 /* Re-set log strings to empty */
Emeric Brun64cc49c2017-10-03 14:46:45 +02005379 *s->adm_st_chg_cause = 0;
Aurelien DARRAGON674ba672023-04-17 17:45:58 +02005380
5381 /* explicitly commit state changes (even if it was already applied implicitly
5382 * by some lb state change function), so we don't miss anything
5383 */
5384 srv_lb_commit_status(s);
Aurelien DARRAGON9aba5c02023-04-17 15:30:11 +02005385
Aurelien DARRAGON37f548d2023-04-18 13:52:27 +02005386 /* check if server stats must be updated due the the server state change */
5387 if (srv_prev_state != s->cur_state) {
5388 if (srv_prev_state == SRV_ST_STOPPED) {
5389 /* server was down and no longer is */
5390 if (s->last_change < now.tv_sec) // ignore negative times
5391 s->down_time += now.tv_sec - s->last_change;
5392 }
5393 s->last_change = now.tv_sec;
5394 }
5395
Aurelien DARRAGON9aba5c02023-04-17 15:30:11 +02005396 /* check if backend stats must be updated due to the server state change */
5397 if (prev_srv_count && s->proxy->srv_bck == 0 && s->proxy->srv_act == 0)
5398 set_backend_down(s->proxy); /* backend going down */
5399 else if (!prev_srv_count && (s->proxy->srv_bck || s->proxy->srv_act)) {
5400 /* backend was down and is back up again:
5401 * no helper function, updating last_change and backend downtime stats
5402 */
5403 if (s->proxy->last_change < now.tv_sec) // ignore negative times
5404 s->proxy->down_time += now.tv_sec - s->proxy->last_change;
5405 s->proxy->last_change = now.tv_sec;
5406 }
Emeric Brun64cc49c2017-10-03 14:46:45 +02005407}
Emeric Brun64cc49c2017-10-03 14:46:45 +02005408
Willy Tarreau144f84a2021-03-02 16:09:26 +01005409struct task *srv_cleanup_toremove_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005410{
5411 struct connection *conn;
5412
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005413 while ((conn = MT_LIST_POP(&idle_conns[tid].toremove_conns,
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005414 struct connection *, toremove_list)) != NULL) {
Christopher Faulet73c12072019-04-08 11:23:22 +02005415 conn->mux->destroy(conn->ctx);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005416 }
5417
5418 return task;
5419}
5420
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005421/* Move toremove_nb connections from idle_tree to toremove_list, -1 means
Olivier Houchardff1d0922020-06-29 20:15:59 +02005422 * moving them all.
5423 * Returns the number of connections moved.
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005424 *
5425 * Must be called with idle_conns_lock held.
Olivier Houchardff1d0922020-06-29 20:15:59 +02005426 */
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005427static 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 +02005428{
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005429 struct eb_node *node, *next;
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005430 struct conn_hash_node *hash_node;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005431 int i = 0;
5432
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005433 node = eb_first(idle_tree);
5434 while (node) {
5435 next = eb_next(node);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005436 if (toremove_nb != -1 && i >= toremove_nb)
5437 break;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005438
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005439 hash_node = ebmb_entry(node, struct conn_hash_node, node);
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005440 eb_delete(node);
Willy Tarreau2b718102021-04-21 07:32:39 +02005441 MT_LIST_APPEND(toremove_list, &hash_node->conn->toremove_list);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005442 i++;
Amaury Denoyellef232cb32021-01-06 16:14:12 +01005443
5444 node = next;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005445 }
5446 return i;
5447}
William Dauchy6318d332020-05-02 21:52:36 +02005448/* cleanup connections for a given server
5449 * might be useful when going on forced maintenance or live changing ip/port
5450 */
William Dauchy707ad322020-05-04 13:52:40 +02005451static void srv_cleanup_connections(struct server *srv)
William Dauchy6318d332020-05-02 21:52:36 +02005452{
William Dauchy6318d332020-05-02 21:52:36 +02005453 int did_remove;
5454 int i;
William Dauchy6318d332020-05-02 21:52:36 +02005455
Amaury Denoyelle10d5c312021-01-06 14:28:51 +01005456 /* nothing to do if pool-max-conn is null */
5457 if (!srv->max_idle_conns)
5458 return;
5459
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005460 /* check all threads starting with ours */
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005461 for (i = tid;;) {
William Dauchy6318d332020-05-02 21:52:36 +02005462 did_remove = 0;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005463 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005464 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 +02005465 did_remove = 1;
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005466 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 +02005467 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005468 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
William Dauchy6318d332020-05-02 21:52:36 +02005469 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005470 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005471
5472 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5473 break;
William Dauchy6318d332020-05-02 21:52:36 +02005474 }
William Dauchy6318d332020-05-02 21:52:36 +02005475}
5476
Willy Tarreau144f84a2021-03-02 16:09:26 +01005477struct task *srv_cleanup_idle_conns(struct task *task, void *context, unsigned int state)
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005478{
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005479 struct server *srv;
5480 struct eb32_node *eb;
5481 int i;
5482 unsigned int next_wakeup;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005483
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005484 next_wakeup = TICK_ETERNITY;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005485 HA_SPIN_LOCK(OTHER_LOCK, &idle_conn_srv_lock);
5486 while (1) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005487 int exceed_conns;
5488 int to_kill;
5489 int curr_idle;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +01005490
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005491 eb = eb32_lookup_ge(&idle_conn_srv, now_ms - TIMER_LOOK_BACK);
5492 if (!eb) {
5493 /* we might have reached the end of the tree, typically because
5494 * <now_ms> is in the first half and we're first scanning the last
5495 * half. Let's loop back to the beginning of the tree now.
5496 */
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005497
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005498 eb = eb32_first(&idle_conn_srv);
5499 if (likely(!eb))
5500 break;
5501 }
5502 if (tick_is_lt(now_ms, eb->key)) {
5503 /* timer not expired yet, revisit it later */
5504 next_wakeup = eb->key;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005505 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005506 }
5507 srv = eb32_entry(eb, struct server, idle_node);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005508
5509 /* Calculate how many idle connections we want to kill :
5510 * we want to remove half the difference between the total
5511 * of established connections (used or idle) and the max
5512 * number of used connections.
5513 */
5514 curr_idle = srv->curr_idle_conns;
5515 if (curr_idle == 0)
5516 goto remove;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005517 exceed_conns = srv->curr_used_conns + curr_idle - MAX(srv->max_used_conns, srv->est_need_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005518 exceed_conns = to_kill = exceed_conns / 2 + (exceed_conns & 1);
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005519
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005520 srv->est_need_conns = (srv->est_need_conns + srv->max_used_conns) / 2;
Willy Tarreaubdb86bd2020-06-29 15:56:35 +02005521 if (srv->est_need_conns < srv->max_used_conns)
5522 srv->est_need_conns = srv->max_used_conns;
5523
Willy Tarreau41d57422022-11-21 14:32:33 +01005524 HA_ATOMIC_STORE(&srv->max_used_conns, srv->curr_used_conns);
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005525
Willy Tarreau18ed7892020-07-02 19:05:30 +02005526 if (exceed_conns <= 0)
5527 goto remove;
5528
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005529 /* check all threads starting with ours */
5530 for (i = tid;;) {
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005531 int max_conn;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005532 int j;
5533 int did_remove = 0;
5534
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005535 max_conn = (exceed_conns * srv->curr_idle_thr[i]) /
5536 curr_idle + 1;
Olivier Houchardff1d0922020-06-29 20:15:59 +02005537
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005538 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005539 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 +02005540 if (j > 0)
5541 did_remove = 1;
5542 if (max_conn - j > 0 &&
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005543 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 +01005544 did_remove = 1;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005545 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[i].idle_conns_lock);
Olivier Houchardff1d0922020-06-29 20:15:59 +02005546
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005547 if (did_remove)
Willy Tarreau4d82bf52020-06-28 00:19:17 +02005548 task_wakeup(idle_conns[i].cleanup_task, TASK_WOKEN_OTHER);
Willy Tarreauc35bcfc2020-06-29 14:43:16 +02005549
5550 if ((i = ((i + 1 == global.nbthread) ? 0 : i + 1)) == tid)
5551 break;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005552 }
Olivier Houchard079cb9a2020-03-30 00:23:57 +02005553remove:
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005554 eb32_delete(&srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005555
5556 if (srv->curr_idle_conns) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005557 /* There are still more idle connections, add the
5558 * server back in the tree.
5559 */
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005560 srv->idle_node.key = tick_add(srv->pool_purge_delay, now_ms);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005561 eb32_insert(&idle_conn_srv, &srv->idle_node);
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005562 next_wakeup = tick_first(next_wakeup, srv->idle_node.key);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005563 }
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005564 }
Olivier Houchard9ea5d362019-02-14 18:29:09 +01005565 HA_SPIN_UNLOCK(OTHER_LOCK, &idle_conn_srv_lock);
5566
Willy Tarreau21b9ff52020-11-05 09:12:20 +01005567 task->expire = next_wakeup;
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01005568 return task;
5569}
Olivier Houchard88698d92019-04-16 19:07:22 +02005570
Amaury Denoyelle3109ccf2021-04-29 17:30:05 +02005571/* Close remaining idle connections. This functions is designed to be run on
5572 * process shutdown. This guarantees a proper socket shutdown to avoid
5573 * TIME_WAIT state. For a quick operation, only ctrl is closed, xprt stack is
5574 * bypassed.
5575 *
5576 * This function is not thread-safe so it must only be called via a global
5577 * deinit function.
5578 */
5579static void srv_close_idle_conns(struct server *srv)
5580{
5581 struct eb_root **cleaned_tree;
5582 int i;
5583
5584 for (i = 0; i < global.nbthread; ++i) {
5585 struct eb_root *conn_trees[] = {
5586 &srv->per_thr[i].idle_conns,
5587 &srv->per_thr[i].safe_conns,
5588 &srv->per_thr[i].avail_conns,
5589 NULL
5590 };
5591
5592 for (cleaned_tree = conn_trees; *cleaned_tree; ++cleaned_tree) {
5593 while (!eb_is_empty(*cleaned_tree)) {
5594 struct ebmb_node *node = ebmb_first(*cleaned_tree);
5595 struct conn_hash_node *conn_hash_node = ebmb_entry(node, struct conn_hash_node, node);
5596 struct connection *conn = conn_hash_node->conn;
5597
5598 if (conn->ctrl->ctrl_close)
5599 conn->ctrl->ctrl_close(conn);
5600 ebmb_delete(node);
5601 }
5602 }
5603 }
5604}
5605
5606REGISTER_SERVER_DEINIT(srv_close_idle_conns);
5607
Willy Tarreau76cc6992020-07-01 18:49:24 +02005608/* config parser for global "tune.idle-pool.shared", accepts "on" or "off" */
5609static int cfg_parse_idle_pool_shared(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01005610 const struct proxy *defpx, const char *file, int line,
Willy Tarreau76cc6992020-07-01 18:49:24 +02005611 char **err)
5612{
5613 if (too_many_args(1, args, err, NULL))
5614 return -1;
5615
5616 if (strcmp(args[1], "on") == 0)
5617 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
5618 else if (strcmp(args[1], "off") == 0)
5619 global.tune.options &= ~GTUNE_IDLE_POOL_SHARED;
5620 else {
5621 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
5622 return -1;
5623 }
5624 return 0;
5625}
5626
Olivier Houchard88698d92019-04-16 19:07:22 +02005627/* config parser for global "tune.pool-{low,high}-fd-ratio" */
5628static int cfg_parse_pool_fd_ratio(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +01005629 const struct proxy *defpx, const char *file, int line,
Olivier Houchard88698d92019-04-16 19:07:22 +02005630 char **err)
5631{
5632 int arg = -1;
5633
5634 if (too_many_args(1, args, err, NULL))
5635 return -1;
5636
5637 if (*(args[1]) != 0)
5638 arg = atoi(args[1]);
5639
5640 if (arg < 0 || arg > 100) {
5641 memprintf(err, "'%s' expects an integer argument between 0 and 100.", args[0]);
5642 return -1;
5643 }
5644
5645 if (args[0][10] == 'h')
5646 global.tune.pool_high_ratio = arg;
5647 else
5648 global.tune.pool_low_ratio = arg;
5649 return 0;
5650}
5651
5652/* config keyword parsers */
5653static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau76cc6992020-07-01 18:49:24 +02005654 { CFG_GLOBAL, "tune.idle-pool.shared", cfg_parse_idle_pool_shared },
Olivier Houchard88698d92019-04-16 19:07:22 +02005655 { CFG_GLOBAL, "tune.pool-high-fd-ratio", cfg_parse_pool_fd_ratio },
5656 { CFG_GLOBAL, "tune.pool-low-fd-ratio", cfg_parse_pool_fd_ratio },
5657 { 0, NULL, NULL }
5658}};
5659
5660INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
5661
Baptiste Assmanna68ca962015-04-14 01:15:08 +02005662/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02005663 * Local variables:
5664 * c-indent-level: 8
5665 * c-basic-offset: 8
5666 * End:
5667 */